From 53424691ecddcc8983a5eb5280ec65d471a049b2 Mon Sep 17 00:00:00 2001 From: celian_ringwald Date: Wed, 14 Sep 2022 17:58:10 +0200 Subject: [PATCH 01/54] Manage REST API answer link shape --- .../dbpedia/extraction/nif/LinkExtractor.java | 133 ++++++++++++------ 1 file changed, 87 insertions(+), 46 deletions(-) mode change 100644 => 100755 core/src/main/java/org/dbpedia/extraction/nif/LinkExtractor.java diff --git a/core/src/main/java/org/dbpedia/extraction/nif/LinkExtractor.java b/core/src/main/java/org/dbpedia/extraction/nif/LinkExtractor.java old mode 100644 new mode 100755 index 04b71fc08a..07f5a814de --- a/core/src/main/java/org/dbpedia/extraction/nif/LinkExtractor.java +++ b/core/src/main/java/org/dbpedia/extraction/nif/LinkExtractor.java @@ -39,11 +39,14 @@ public LinkExtractor(NifExtractorContext context) { public void head(Node node, int depth) { - if(skipLevel>=0) + if(skipLevel>=0){ return; + } + - if(paragraph == null) - paragraph = new Paragraph(0, "", "p"); + if(paragraph == null) { + paragraph = new Paragraph(0, "", "p"); + } //ignore all content inside invisible tags if(invisible || node.attr("style").matches(".*display\\s*:\\s*none.*")) { invisible = true; @@ -52,6 +55,7 @@ public void head(Node node, int depth) { if(node.nodeName().equals("#text")) { String tempText = node.toString(); + //replace no-break spaces because unescape doesn't deal with them tempText = StringEscapeUtils.unescapeHtml4(tempText); tempText = org.dbpedia.extraction.util.StringUtils.escape(tempText, replaceChars()); @@ -59,6 +63,7 @@ public void head(Node node, int depth) { //this text node is the content of an element: make a new nif:Word if(inLink) { + if(!tempText.trim().startsWith(this.context.wikipediaTemplateString + ":")) //not! { tempLink.setLinkText(tempText); @@ -70,11 +75,15 @@ public void head(Node node, int depth) { errors.add("found Template in resource: " + this.context.resource + ": " + tempText); return; } + } else paragraph.addText(tempText); - } else if(node.nodeName().equals("a")) { + } + + else if(node.nodeName().equals("a")) { + String link = node.attr("href"); //TODO central string management /** @@ -84,41 +93,62 @@ public void head(Node node, int depth) { * see Schopenhauer: https://en.wikipedia.org/w/api.php?uselang=en&format=xml&action=parse&prop=text&pageid=17340400 */ String linkPrefix = "/wiki/"; - // standard wikilinks - if (link.contains(linkPrefix) && !link.contains(":")) { - tempLink = new Link(); - String uri = cleanLink(node.attr("href"), false); - setUri(uri); - - //simple example of Help:IPA - // [ˈaɐ̯tʊɐ̯ ˈʃoːpn̩haʊ̯ɐ] - } else if (link.contains(linkPrefix) && link.contains(":")) { - /** - * TODO buggy - * Cleans up child nodes: difficult example - * /ˈʃpənh.ər/ - */ - if (!node.childNodes().isEmpty()) { - if (node.childNode(0).nodeName().equals("#text") && - node.childNode(0).toString().contains(":") && - !node.childNode(0).toString().contains("http")) { - tempLink = new Link(); - String uri = cleanLink(node.attr("href"), false); - setUri(uri); - } - } else { - skipLevel = depth; - } - //TODO add example - } else if (node.attr("class").equals("external text")) { - //don't skip external links - tempLink = new Link(); - String uri = cleanLink(node.attr("href"), true); - setUri(uri); - - } else { - skipLevel = depth; - } + // SPECIAL CASE FOR RESTAPI PARSING + + if(node.hasAttr("rel")){ + + String relType = node.attr("rel"); + if(relType.equals("mw:WikiLink")){ + + tempLink = new Link(); + String uri = cleanLink(node.attr("href"), false); + setUri(uri); + + + } else if (relType.equals("mw:ExtLink")) { + tempLink = new Link(); + String uri = cleanLink(node.attr("href"), true); + setUri(uri); + } + }else{ + // standard wikilinks + if (link.contains(linkPrefix) && !link.contains(":")) { + tempLink = new Link(); + String uri = cleanLink(node.attr("href"), false); + setUri(uri); + + //simple example of Help:IPA + // [ˈaɐ̯tʊɐ̯ ˈʃoːpn̩haʊ̯ɐ] + } else if (link.contains(linkPrefix) && link.contains(":")) { + /** + * TODO buggy + * Cleans up child nodes: difficult example + * /ˈʃpənh.ər/ + */ + if (!node.childNodes().isEmpty()) { + if (node.childNode(0).nodeName().equals("#text") && + node.childNode(0).toString().contains(":") && + !node.childNode(0).toString().contains("http")) { + tempLink = new Link(); + String uri = cleanLink(node.attr("href"), false); + setUri(uri); + } + } else { + skipLevel = depth; + } + //TODO add example + } else if (node.attr("class").equals("external text")) { + //don't skip external links + tempLink = new Link(); + String uri = cleanLink(node.attr("href"), true); + setUri(uri); + + } else { + skipLevel = depth; + } + } + + } else if(node.nodeName().equals("p")) { if(paragraph != null) { addParagraph("p"); @@ -136,6 +166,7 @@ public void head(Node node, int depth) { skipLevel = depth; } else if(node.nodeName().equals("span")) { //denote notes + if(node.attr("class").contains("notebegin")) addParagraph("note"); @@ -159,13 +190,21 @@ private void setUri(String uri) { private String cleanLink(String uri, boolean external) { if(!external) { + + String linkPrefix = "/wiki/"; + String linkPrefix2= "./"; + if(uri.contains(linkPrefix)){ + uri=uri.substring(uri.indexOf("?title=")+7); + } else if (uri.contains(linkPrefix2)) { + uri=uri.substring(uri.indexOf("?title=")+3); + } //TODO central string management if(!this.context.language.equals("en")) { - - uri="http://"+this.context.language+".dbpedia.org/resource/"+uri.substring(uri.indexOf("?title=")+7); + uri="http://"+this.context.language+".dbpedia.org/resource/"+uri; - } else { - uri="http://dbpedia.org/resource/"+uri.substring(uri.indexOf("?title=")+7); + } + else { + uri="http://dbpedia.org/resource/"+uri; } uri = uri.replace("&action=edit&redlink=1", ""); @@ -183,14 +222,15 @@ private String cleanLink(String uri, boolean external) { e.printStackTrace(); } } - return UriUtils.uriToDbpediaIri(uri).toString(); } public void tail(Node node, int depth) { - + + if(skipLevel>0) { if(skipLevel==depth) { + skipLevel = -1; return; } else { @@ -198,7 +238,7 @@ public void tail(Node node, int depth) { } } - if(node.nodeName().equals("a")&&inLink) { + if(node.nodeName().equals("a") && inLink) { inLink = false; paragraph.addLink(tempLink); tempLink = new Link(); @@ -210,6 +250,7 @@ else if(node.nodeName().equals("p") && paragraph != null) { addParagraph("p"); } else if(node.nodeName().equals("sup") && inSup) { + inSup = false; } else if(node.nodeName().matches("h\\d")) { From 7174c71cc9e246e5dcb758056dabe952df825240 Mon Sep 17 00:00:00 2001 From: celian_ringwald Date: Wed, 14 Sep 2022 18:06:21 +0200 Subject: [PATCH 02/54] Not cleaning HTML before getJsoupDoc and clean it inside for managing HTML entities --- .../extraction/nif/HtmlNifExtractor.scala | 30 ++++++++++++++----- 1 file changed, 23 insertions(+), 7 deletions(-) mode change 100644 => 100755 core/src/main/scala/org/dbpedia/extraction/nif/HtmlNifExtractor.scala diff --git a/core/src/main/scala/org/dbpedia/extraction/nif/HtmlNifExtractor.scala b/core/src/main/scala/org/dbpedia/extraction/nif/HtmlNifExtractor.scala old mode 100644 new mode 100755 index c886538d6f..90e70ae151 --- a/core/src/main/scala/org/dbpedia/extraction/nif/HtmlNifExtractor.scala +++ b/core/src/main/scala/org/dbpedia/extraction/nif/HtmlNifExtractor.scala @@ -61,28 +61,36 @@ abstract class HtmlNifExtractor(nifContextIri: String, language: String, nifPara var context = "" var offset = 0 + val quads = for(section <- sections) yield { extractTextFromHtml(section, new NifExtractorContext(language, subjectIri, templateString)) match { case Success(extractionResults) => { sectionMap.put(section, extractionResults) sectionMap.put(extractionResults, extractionResults) + if (context.length != 0) { context = context + "\n\n" offset += 2 } + var quads = if(nifParameters.abstractsOnly) Seq() else makeStructureElements(extractionResults, nifContextIri, graphIri, offset) + offset += extractionResults.getExtractedLength context += extractionResults.getExtractedText //collect additional triples quads ++= extendSectionTriples(extractionResults, graphIri, subjectIri) + + //forward exceptions extractionResults.errors.foreach(exceptionHandle(_, RecordSeverity.Warning, null)) + + quads } case Failure(e) => { @@ -143,6 +151,7 @@ abstract class HtmlNifExtractor(nifContextIri: String, language: String, nifPara triples += nifStructure(p.getSectionIri(), RdfNamespace.NIF.append("nextSection"), sectionUri, sourceUrl, null) case None => } + section.getTop match{ case Some(p) => triples += nifStructure(sectionUri, RdfNamespace.NIF.append("superString"), p.getSectionIri(), sourceUrl, null) @@ -159,12 +168,17 @@ abstract class HtmlNifExtractor(nifContextIri: String, language: String, nifPara triples += nifStructure(contextUri, RdfNamespace.NIF.append("lastSection"), sectionUri, sourceUrl, null) } else{ - triples += nifStructure(sectionUri, RdfNamespace.NIF.append("superString"), section.getTop.get.getSectionIri(), sourceUrl, null) - triples += nifStructure(section.getTop.get.getSectionIri(), RdfNamespace.NIF.append("hasSection"), sectionUri, sourceUrl, null) - if (section.prev.isEmpty) - triples += nifStructure(section.getTop.get.getSectionIri(), RdfNamespace.NIF.append("firstSection"), sectionUri, sourceUrl, null) - if (section.next.isEmpty) - triples += nifStructure(section.getTop.get.getSectionIri(), RdfNamespace.NIF.append("lastSection"), sectionUri, sourceUrl, null) + // ADDED THIS TEST BECAUSE WHEN THIS IS A PAGE END IT CAUSES PROBLEMS (top not empty but no getTop) + if(section.getTop != None) { + triples += nifStructure(sectionUri, RdfNamespace.NIF.append("superString"), section.getTop.get.getSectionIri(), sourceUrl, null) + triples += nifStructure(section.getTop.get.getSectionIri(), RdfNamespace.NIF.append("hasSection"), sectionUri, sourceUrl, null) + if (section.prev.isEmpty) + triples += nifStructure(section.getTop.get.getSectionIri(), RdfNamespace.NIF.append("firstSection"), sectionUri, sourceUrl, null) + if (section.next.isEmpty) + triples += nifStructure(section.getTop.get.getSectionIri(), RdfNamespace.NIF.append("lastSection"), sectionUri, sourceUrl, null) + } + + } //further specifying paragraphs of every section @@ -341,7 +355,9 @@ abstract class HtmlNifExtractor(nifContextIri: String, language: String, nifPara } protected def getJsoupDoc(html: String): Document = { - val doc = Jsoup.parse(html.replaceAll("\n", "")) + + var html_clean=cleanHtml(html) + val doc = Jsoup.parse( html_clean) //delete queries for(query <- cssSelectorConfigMap.removeElements) From d00cf7ac8974a9d61a2afb3812c1085aaadc47f8 Mon Sep 17 00:00:00 2001 From: celian_ringwald Date: Wed, 14 Sep 2022 18:09:46 +0200 Subject: [PATCH 03/54] Create a WikipediaNifExtractor extension for REST API answer --- .../nif/WikipediaNifExtractorRest.scala | 137 ++++++++++++++++++ 1 file changed, 137 insertions(+) create mode 100755 core/src/main/scala/org/dbpedia/extraction/nif/WikipediaNifExtractorRest.scala diff --git a/core/src/main/scala/org/dbpedia/extraction/nif/WikipediaNifExtractorRest.scala b/core/src/main/scala/org/dbpedia/extraction/nif/WikipediaNifExtractorRest.scala new file mode 100755 index 0000000000..41c8491dff --- /dev/null +++ b/core/src/main/scala/org/dbpedia/extraction/nif/WikipediaNifExtractorRest.scala @@ -0,0 +1,137 @@ +package org.dbpedia.extraction.nif + +import org.dbpedia.extraction.config.Config +import org.dbpedia.extraction.ontology.Ontology +import org.dbpedia.extraction.util.Language +import org.dbpedia.extraction.wikiparser.WikiPage +import org.jsoup.nodes.{Document, Element, Node} +import scala.collection.convert.decorateAsScala._ +import scala.collection.mutable +import scala.collection.mutable.ListBuffer +import scala.language.reflectiveCalls + +/** + * Created by Chile on 1/19/2017. + */ +class WikipediaNifExtractorRest( + context : { + def ontology : Ontology + def language : Language + def configFile : Config + }, + wikiPage: WikiPage + ) + extends WikipediaNifExtractor ( context ,wikiPage) { + + + /** + * subtracts the relevant text + * @param html + * @return list of sections + */ + override def getRelevantParagraphs (html: String): mutable.ListBuffer[PageSection] = { + + val tocMap = new mutable.ListBuffer[PageSection]() + val doc: Document = getJsoupDoc(html) + + var nodes = doc.select("body").first.childNodes.asScala + + val currentSection = new ListBuffer[Int]() //keeps track of section number + currentSection.append(0) //initialize on abstract section + + def getSection(current_nodes : scala.collection.mutable.Buffer[Node]) : Unit = { + //look for the next tag + + var subnodes = current_nodes.head.childNodes().asScala + subnodes = subnodes.dropWhile(current_nodes => !current_nodes.nodeName().matches("h\\d") && !current_nodes.nodeName().matches("section")) + var process_end=false + while (subnodes.nonEmpty && !process_end) { + if (subnodes.head.nodeName().matches("h\\d")) { + val title = subnodes.headOption + process_end=super.isWikiPageEnd(subnodes.head) + + title match { + + case Some(t) if super.isWikiNextTitle(t) && !process_end=> + + //calculate the section number by looking at the

to

tags + val depth = Integer.parseInt(t.asInstanceOf[org.jsoup.nodes.Element].tagName().substring(1)) - 1 + if (currentSection.size < depth) //first subsection + currentSection.append(1) + else { + //delete last entries depending on the depth difference to the last section + val del = currentSection.size - depth + 1 + val zw = currentSection(currentSection.size - del) + currentSection.remove(currentSection.size - del, del) + //if its just another section of the same level -> add one + if (currentSection.size == depth - 1) + currentSection.append(zw + 1) + } + + subnodes = subnodes.drop(1) + + val section = new PageSection( + //previous section (if on same depth level + prev = currentSection.last match { + case x: Int if x > 1 => tocMap.lastOption + case _ => None + }, + //super section + top = tocMap.find(x => currentSection.size > 1 && x.ref == currentSection.slice(0, currentSection.size - 1).map(n => "." + n.toString).foldRight("")(_ + _).substring(1)), + next = None, + sub = None, + id = t.attr("id"), + title = t.asInstanceOf[Element].text(), + //merge section numbers separated by a dot + ref = currentSection.map(n => "." + n.toString).foldRight("")(_ + _).substring(1), + tableCount = 0, + equationCount = 0, + //take all following tags until you hit another title or end of content + content = Seq(t) ++ subnodes.takeWhile(node => !node.nodeName().matches("h\\d") && !node.nodeName().matches("section")) + ) + + tocMap.append(section) + case None => process_end=true + case _ => process_end=true + } + } else if (subnodes.head.nodeName().matches("section")) { + getSection(subnodes) + subnodes = subnodes.drop(1) + } + + subnodes = subnodes.dropWhile(node => !node.nodeName().matches("h\\d") && !node.nodeName().matches("section")) + } + + } + + + val abstract_sect=doc.select("body").select("section").first.childNodes.asScala //get first section + val ab = abstract_sect.filter(node => node.nodeName() == "p") //move cursor to abstract + + nodes = nodes.drop(1) + + tocMap.append(new PageSection( //save abstract (abstract = section 0) + prev = None, + top = None, + next = None, + sub = None, + id = "abstract", + title = "abstract", + ref = currentSection.map(n => "." + n.toString).foldRight("")(_+_).substring(1), + tableCount=0, + equationCount = 0, + content = ab + )) + + if(!abstractsOnly) { + while (nodes.nonEmpty) { + getSection(nodes) + nodes = nodes.drop(1) + } + } + tocMap + } + + + +} From 89c6d5c926edf47159d889bc2ea2fd4d40fe2738 Mon Sep 17 00:00:00 2001 From: celian_ringwald Date: Wed, 14 Sep 2022 18:12:07 +0200 Subject: [PATCH 04/54] change connector --- .../extraction/mappings/PlainAbstractExtractor.scala | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) mode change 100644 => 100755 core/src/main/scala/org/dbpedia/extraction/mappings/PlainAbstractExtractor.scala diff --git a/core/src/main/scala/org/dbpedia/extraction/mappings/PlainAbstractExtractor.scala b/core/src/main/scala/org/dbpedia/extraction/mappings/PlainAbstractExtractor.scala old mode 100644 new mode 100755 index 59cf57d029..87acba9558 --- a/core/src/main/scala/org/dbpedia/extraction/mappings/PlainAbstractExtractor.scala +++ b/core/src/main/scala/org/dbpedia/extraction/mappings/PlainAbstractExtractor.scala @@ -7,7 +7,7 @@ import org.dbpedia.extraction.config.provenance.DBpediaDatasets import org.dbpedia.extraction.ontology.Ontology import org.dbpedia.extraction.transform.{Quad, QuadBuilder} import org.dbpedia.extraction.util.abstracts.AbstractUtils -import org.dbpedia.extraction.util.{Language, MediaWikiConnector, WikiUtil} +import org.dbpedia.extraction.util.{Language, MediawikiConnectorConfigured} import org.dbpedia.extraction.wikiparser._ import scala.language.reflectiveCalls @@ -63,7 +63,6 @@ extends WikiPageExtractor override val datasets = Set(DBpediaDatasets.LongAbstracts, DBpediaDatasets.ShortAbstracts) - private val mwConnector = new MediaWikiConnector(context.configFile.mediawikiConnection, context.configFile.abstractParameters.abstractTags.split(",")) override def extract(pageNode : WikiPage, subjectUri: String): Seq[Quad] = { @@ -79,7 +78,8 @@ extends WikiPageExtractor //val abstractWikiText = getAbstractWikiText(pageNode) // if(abstractWikiText == "") return Seq.empty - //Retrieve page text + + val mwConnector = new MediawikiConnectorConfigured(context.configFile.mediawikiConnection, context.configFile.abstractParameters.abstractTags.split(",")) val text = mwConnector.retrievePage(pageNode.title, apiParametersFormat, pageNode.isRetry) match { case Some(t) => PlainAbstractExtractor.postProcessExtractedHtml(pageNode.title, replacePatterns(t)) case None => return Seq.empty From 6461bce83ecffb36be431868e6a4664606d87a5e Mon Sep 17 00:00:00 2001 From: celian_ringwald Date: Wed, 14 Sep 2022 18:13:06 +0200 Subject: [PATCH 05/54] add possibility to choose connector --- .../extraction/mappings/NifExtractor.scala | 30 ++++++++++++------- 1 file changed, 20 insertions(+), 10 deletions(-) mode change 100644 => 100755 core/src/main/scala/org/dbpedia/extraction/mappings/NifExtractor.scala diff --git a/core/src/main/scala/org/dbpedia/extraction/mappings/NifExtractor.scala b/core/src/main/scala/org/dbpedia/extraction/mappings/NifExtractor.scala old mode 100644 new mode 100755 index 28e7b533db..5d84fe96cc --- a/core/src/main/scala/org/dbpedia/extraction/mappings/NifExtractor.scala +++ b/core/src/main/scala/org/dbpedia/extraction/mappings/NifExtractor.scala @@ -3,10 +3,10 @@ package org.dbpedia.extraction.mappings import org.dbpedia.extraction.annotations.ExtractorAnnotation import org.dbpedia.extraction.config.Config import org.dbpedia.extraction.config.provenance.DBpediaDatasets -import org.dbpedia.extraction.nif.WikipediaNifExtractor +import org.dbpedia.extraction.nif.{WikipediaNifExtractorRest, WikipediaNifExtractor} import org.dbpedia.extraction.ontology.Ontology import org.dbpedia.extraction.transform.Quad -import org.dbpedia.extraction.util.{Language, MediaWikiConnector} +import org.dbpedia.extraction.util.{Language, MediawikiConnectorConfigured, MediaWikiConnectorRest} import org.dbpedia.extraction.wikiparser._ import scala.language.reflectiveCalls @@ -41,12 +41,11 @@ class NifExtractor( protected val writeLinkAnchors: Boolean = context.configFile.nifParameters.writeLinkAnchor protected val writeStrings: Boolean = context.configFile.nifParameters.writeAnchor protected val shortAbstractLength: Int = context.configFile.abstractParameters.shortAbstractMinLength - + protected val abstractsOnly : Boolean = context.configFile.nifParameters.abstractsOnly protected val dbpediaVersion: String = context.configFile.dbPediaVersion override val datasets = Set(DBpediaDatasets.NifContext,DBpediaDatasets.NifPageStructure,DBpediaDatasets.NifTextLinks,DBpediaDatasets.LongAbstracts, DBpediaDatasets.ShortAbstracts, DBpediaDatasets.RawTables, DBpediaDatasets.Equations) - private val mwConnector = new MediaWikiConnector(context.configFile.mediawikiConnection, context.configFile.nifParameters.nifTags.split(",")) override def extract(pageNode : WikiPage, subjectUri : String): Seq[Quad] = { @@ -56,13 +55,24 @@ class NifExtractor( //Don't extract abstracts from redirect and disambiguation pages if(pageNode.isRedirect || pageNode.isDisambiguation) return Seq.empty - //Retrieve page text - val html = mwConnector.retrievePage(pageNode.title, apiParametersFormat, pageNode.isRetry) match{ - case Some(t) => NifExtractor.postProcessExtractedHtml(pageNode.title, t) - case None => return Seq.empty - } + var html = "" + val mwcType = context.configFile.mediawikiConnection.apiType - new WikipediaNifExtractor(context, pageNode).extractNif(html)(err => pageNode.addExtractionRecord(err)) + if (mwcType == "rest") { + val mwConnector = new MediaWikiConnectorRest(context.configFile.mediawikiConnection, context.configFile.nifParameters.nifTags.split(",")) + html = mwConnector.retrievePage(pageNode.title, apiParametersFormat, pageNode.isRetry) match { + case Some(t) => NifExtractor.postProcessExtractedHtml(pageNode.title, t) + case None => return Seq.empty + } + new WikipediaNifExtractorRest(context, pageNode).extractNif(html)(err => pageNode.addExtractionRecord(err)) + } else { + val mwConnector = new MediawikiConnectorConfigured(context.configFile.mediawikiConnection, context.configFile.nifParameters.nifTags.split(",")) + html = mwConnector.retrievePage(pageNode.title, apiParametersFormat, pageNode.isRetry) match { + case Some(t) => NifExtractor.postProcessExtractedHtml(pageNode.title, t) + case None => return Seq.empty + } + new WikipediaNifExtractor(context, pageNode).extractNif(html)(err => pageNode.addExtractionRecord(err)) + } } } From 9cdeb792ff2cfbfce2429dd44bad4f318c58c1e1 Mon Sep 17 00:00:00 2001 From: celian_ringwald Date: Wed, 14 Sep 2022 18:14:00 +0200 Subject: [PATCH 06/54] deprecate class --- .../scala/org/dbpedia/extraction/util/MediaWikiConnector.scala | 1 + 1 file changed, 1 insertion(+) mode change 100644 => 100755 core/src/main/scala/org/dbpedia/extraction/util/MediaWikiConnector.scala diff --git a/core/src/main/scala/org/dbpedia/extraction/util/MediaWikiConnector.scala b/core/src/main/scala/org/dbpedia/extraction/util/MediaWikiConnector.scala old mode 100644 new mode 100755 index 68e903c239..23d619e96e --- a/core/src/main/scala/org/dbpedia/extraction/util/MediaWikiConnector.scala +++ b/core/src/main/scala/org/dbpedia/extraction/util/MediaWikiConnector.scala @@ -17,6 +17,7 @@ import org.slf4j.LoggerFactory * @param connectionConfig - Collection of parameters necessary for API requests (see Config.scala) * @param xmlPath - An array of XML tag names leading from the root (usually 'api') to the intended content of the response XML (depending on the request query used) */ +@deprecated("replaced by MediaWikiConnectorAbstract classes", "2022-09") class MediaWikiConnector(connectionConfig: MediaWikiConnection, xmlPath: Seq[String]) { protected val log = LoggerFactory.getLogger(classOf[MediaWikiConnector]) From 29329c02d2e5342c0d751d973e186bc814cb6837 Mon Sep 17 00:00:00 2001 From: celian_ringwald Date: Wed, 14 Sep 2022 18:15:15 +0200 Subject: [PATCH 07/54] Create a MediaWikiConnector Abstract class for gathering common params --- .../util/MediaWikiConnectorAbstract.scala | 78 +++++++++++++++++++ 1 file changed, 78 insertions(+) create mode 100755 core/src/main/scala/org/dbpedia/extraction/util/MediaWikiConnectorAbstract.scala diff --git a/core/src/main/scala/org/dbpedia/extraction/util/MediaWikiConnectorAbstract.scala b/core/src/main/scala/org/dbpedia/extraction/util/MediaWikiConnectorAbstract.scala new file mode 100755 index 0000000000..f6037bed90 --- /dev/null +++ b/core/src/main/scala/org/dbpedia/extraction/util/MediaWikiConnectorAbstract.scala @@ -0,0 +1,78 @@ +package org.dbpedia.extraction.util + +import org.dbpedia.extraction.config.Config.MediaWikiConnection +import org.dbpedia.extraction.wikiparser.WikiTitle +import org.dbpedia.util.text.html.{HtmlCoder, XmlCodes} +import org.slf4j.LoggerFactory + +import java.io.{InputStream, OutputStreamWriter} +import java.net.{HttpURLConnection, URL} +import java.time.temporal.ChronoUnit +import scala.util.{Failure, Success, Try} + +/** + * The Mediawiki API connector + * @param connectionConfig - Collection of parameters necessary for API requests (see Config.scala) + * @param xmlPath - An array of XML tag names leading from the root (usually 'api') to the intended content of the response XML (depending on the request query used) + */ +abstract class MediaWikiConnectorAbstract(connectionConfig: MediaWikiConnection, xmlPath: Seq[String]) { + + protected val log = LoggerFactory.getLogger(classOf[MediaWikiConnectorAbstract]) + //protected def apiUrl: URL = new URL(connectionConfig.apiUrl) + //require(Try{apiUrl.openConnection().connect()} match {case Success(x)=> true case Failure(e) => false}, "can not connect to the apiUrl") + + protected val maxRetries: Int = connectionConfig.maxRetries + require(maxRetries <= 10 && maxRetries > 0, "maxRetries has to be in the interval of [1,10]") + + protected val retryAfter: Boolean = connectionConfig.retryafter + /** timeout for connection to web server, milliseconds */ + protected val connectMs: Int = connectionConfig.connectMs + require(connectMs > 200, "connectMs shall be more than 200 ms!") + + /** timeout for result from web server, milliseconds */ + protected val readMs: Int = connectionConfig.readMs + require(readMs > 1000, "readMs shall be more than 1000 ms!") + + /** sleep between retries, milliseconds, multiplied by CPU load */ + protected val sleepFactorMs: Int = connectionConfig.sleepFactor + require(sleepFactorMs > 200, "sleepFactorMs shall be more than 200 ms!") + + //protected val xmlPath = connectionConfig.abstractTags.split(",").map(_.trim) + + private val osBean = java.lang.management.ManagementFactory.getOperatingSystemMXBean + private val availableProcessors = osBean.getAvailableProcessors + + protected val CHARACTERS_TO_ESCAPE = List( + (";", "%3B"), + ("/", "%2F"), + ("?", "%3F"), + (":", "%3A"), + ("@", "%40"), + ("&", "%26"), + ("=", "%3D"), + ("+", "%2B"), + (",", "%2C"), + ("$", "%24") + ) + /** + * Retrieves a Wikipedia page. + * + * @param pageTitle The encoded title of the page + * @return The page as an Option + */ + def retrievePage(pageTitle : WikiTitle, apiParameterString: String, isRetry: Boolean = false) : Option[String] + + def decodeHtml(text: String): Try[String] = { + val coder = new HtmlCoder(XmlCodes.NONE) + Try(coder.code(text)) + } + + /** + * Get the parsed and cleaned abstract text from the MediaWiki instance input stream. + * It returns + * ABSTRACT_TEXT + * /// ABSTRACT_TEXT + */ + protected def readInAbstract(inputStream : InputStream) : Try[String] + +} From 06202d5aff369e405e85fb2b121c0c175299753c Mon Sep 17 00:00:00 2001 From: celian_ringwald Date: Wed, 14 Sep 2022 18:16:24 +0200 Subject: [PATCH 08/54] Create a new connector for the REST API --- .../util/MediawikiConnectorConfigured.scala | 227 ++++++++++++++++++ 1 file changed, 227 insertions(+) create mode 100755 core/src/main/scala/org/dbpedia/extraction/util/MediawikiConnectorConfigured.scala diff --git a/core/src/main/scala/org/dbpedia/extraction/util/MediawikiConnectorConfigured.scala b/core/src/main/scala/org/dbpedia/extraction/util/MediawikiConnectorConfigured.scala new file mode 100755 index 0000000000..a697663e02 --- /dev/null +++ b/core/src/main/scala/org/dbpedia/extraction/util/MediawikiConnectorConfigured.scala @@ -0,0 +1,227 @@ +package org.dbpedia.extraction.util + +import org.dbpedia.extraction.config.Config.MediaWikiConnection +import org.dbpedia.extraction.wikiparser.WikiTitle + +import java.io.{InputStream, OutputStreamWriter} +import java.net.{HttpURLConnection, URL} +import java.time.temporal.ChronoUnit +import java.util.zip._ +import scala.math.pow +import javax.xml.ws.WebServiceException +import scala.io.Source +import scala.util.{Failure, Success, Try} +import scala.collection.JavaConverters._ +/** + * The Mediawiki API connector + * @param connectionConfig - Collection of parameters necessary for API requests (see Config.scala) + * @param xmlPath - An array of XML tag names leading from the root (usually 'api') to the intended content of the response XML (depending on the request query used) + */ +class MediawikiConnectorConfigured(connectionConfig: MediaWikiConnection, xmlPath: Seq[String]) extends MediaWikiConnectorAbstract(connectionConfig, xmlPath ){ + + protected val userAgent: String = connectionConfig.useragent + require(userAgent != "" , "userAgent must be declared !") + protected val gzipCall: Boolean = connectionConfig.gzip + protected val maxLag: Int = connectionConfig.maxlag + private val osBean = java.lang.management.ManagementFactory.getOperatingSystemMXBean + private val availableProcessors = osBean.getAvailableProcessors + + /** + * Retrieves a Wikipedia page. + * + * @param pageTitle The encoded title of the page + * @return The page as an Option + */ + override def retrievePage(pageTitle : WikiTitle, apiParameterString: String, isRetry: Boolean = false) : Option[String] = + { + val retryFactor = if(isRetry) 2 else 1 + var waiting_time = sleepFactorMs + var Success_parsing = false + var currentMaxLag= maxLag + var gzipok = true + var parsed_answer: Try[String] = null + //replaces {{lang}} with the language + val apiUrl: URL = new URL(connectionConfig.apiUrl.replace("{{LANG}}",pageTitle.language.wikiCode)) + + // The encoded title may contain some URI-escaped characters (e.g. "5%25-Klausel"), + // so we can't use URLEncoder.encode(). But "&" is not escaped, so we do this here. + // TODO: test this in detail!!! there may be other characters that need to be escaped. + // TODO central string management + var titleParam = pageTitle.encodedWithNamespace + this.CHARACTERS_TO_ESCAPE foreach { + case (search, replacement) => titleParam = titleParam.replace(search, replacement); + } + + + + for(counter <- 1 to maxRetries) + { + // Fill parameters + var parameters = "uselang=" + pageTitle.language.wikiCode + + parameters += (pageTitle.id match { + case Some(id) if apiParameterString.contains("%d") => + apiParameterString.replace("&page=%s", "").format(id) + case _ => apiParameterString.replaceAll("&pageid=[^&]+", "").format(titleParam) + }) + //parameters += apiParameterString.replaceAll("&pageid=[^&]+", "").format(titleParam) + parameters += "&maxlag=" + currentMaxLag + // NEED TO BE ABLE TO MANAGE parsing + //parameters += "&redirects=1" + + + val conn = apiUrl.openConnection + val start = java.time.LocalTime.now() + conn.setDoOutput(true) + conn.setConnectTimeout(retryFactor * connectMs) + conn.setReadTimeout(retryFactor * readMs) + conn.setRequestProperty("User-Agent",userAgent) + if ( gzipCall ) conn.setRequestProperty("Accept-Encoding","gzip") + + println(s"mediawikiurl: $apiUrl?$parameters") + val writer = new OutputStreamWriter(conn.getOutputStream) + writer.write(parameters) + writer.flush() + writer.close() + var answer_header = conn.getHeaderFields(); + var answer_clean = answer_header.asScala.filterKeys(_ != null); + + // UNCOMMENT FOR LOG + /* var mapper = new ObjectMapper() + mapper.registerModule(DefaultScalaModule) + mapper.configure(SerializationFeature.WRITE_NULL_MAP_VALUES, false) + + + answer_clean += ("parameters" -> util.Arrays.asList(parameters) ) + answer_clean += ("url" -> util.Arrays.asList(apiUrl.toString) ) + answer_clean += ("titleParam" -> util.Arrays.asList(titleParam.toString) ) + answer_clean += ("status" -> util.Arrays.asList(conn.getHeaderField(null))) + + var jsonString = mapper.writeValueAsString(answer_clean); + + log2.info(jsonString)*/ + + if(conn.getHeaderField(null).contains("HTTP/1.1 200 OK") ){ + var inputStream = conn.getInputStream + // IF GZIP + if ( gzipCall ){ + try { + inputStream = new GZIPInputStream(inputStream) + }catch { + case x:ZipException =>{ + gzipok = false + } + } + } + val end = java.time.LocalTime.now() + conn match { + case connection: HttpURLConnection => { + log.debug("Request type: "+ connection.getRequestMethod + "; URL: " + connection.getURL + + "; Parameters: " + parameters +"; HTTP code: "+ connection.getHeaderField(null) + + "; Request time: "+start+"; Response time: " + end + "; Time needed: " + + start.until(end, ChronoUnit.MILLIS)) + } + case _ => + } + + // Read answer + parsed_answer = readInAbstract(inputStream) + Success_parsing = parsed_answer match { + case Success(str) => true + case Failure(e) => false + } + + + } + if(!Success_parsing){ + println("ERROR DURING PARSING" ) + + var sleepMs = sleepFactorMs + if (retryAfter && answer_clean.contains("retry-after") ){ + println("GIVEN RETRY-AFTER > "+ answer_clean("retry-after").get(0)) + waiting_time = Integer.parseInt(answer_clean("retry-after").get(0)) * 1000 + + // exponential backoff test + sleepMs = pow(waiting_time, counter).toInt + //println("WITH EXPONENTIAL BACK OFF" + counter) + //println("Sleeping time double >>>>>>>>>>>" + pow(waiting_time, counter)) + //println("Sleeping time int >>>>>>>>>>>" + sleepMs) + if (currentMaxLag < 15) { + // INCREMENT MaxLag + currentMaxLag = currentMaxLag + 1 + //println("> INCREASE MAX LAG : " + currentMaxLag) + } + if (counter < maxRetries) + Thread.sleep(sleepMs) + else + throw new Exception("Timeout error retrieving abstract of " + pageTitle + " in " + counter + " tries.") + } + + + }else{ + + + //println(s"mediawikiurl: $apiUrl?$parameters") + return parsed_answer match { + case Success(str) => Option(str) + case Failure(e) => throw e + } + } + + } + throw new Exception("Could not retrieve abstract after " + maxRetries + " tries for page: " + pageTitle.encoded) + + } + + + + /** + * Get the parsed and cleaned abstract text from the MediaWiki instance input stream. + * It returns + * ABSTRACT_TEXT + * /// ABSTRACT_TEXT + */ + override def readInAbstract(inputStream : InputStream) : Try[String] = + { + // for XML format + var xmlAnswer = Source.fromInputStream(inputStream, "UTF-8").getLines().mkString("") + //var text = XML.loadString(xmlAnswer).asInstanceOf[NodeSeq] + + //test for errors + val pattern = "(]+info=\")([^\\\"]+)".r + if(xmlAnswer.contains("error code=")) { + return Failure(new WebServiceException(pattern.findFirstMatchIn(xmlAnswer) match { + case Some(m) => m.group(2) + case None => "An unknown exception occurred while retrieving the source XML from the mediawiki API." + })) + } + + + // REDIRECT CASE + // Implemented but usefull ? + //xmlAnswer = xmlAnswer.replaceAll("", "") + /*if (xmlAnswer.contains("" ) && xmlAnswer.contains("")) { + val indexBegin = xmlAnswer.indexOf("") + val indexEnd = xmlAnswer.indexOf("", indexBegin + "".length()) + xmlAnswer=xmlAnswer.substring(0, indexBegin)+xmlAnswer.substring(indexEnd + 1, xmlAnswer.length()) + }*/ + + //get rid of surrounding tags + // I limited the regex and I added here a second replace because some pages like the following returned malformed triples : + // "xml version=\"1.0\"?>123Movies, GoMovies, GoStream, MeMovies or 123movieshub was a network of file streaming websites operating from Vietnam which allowed users to watch films for free. It was called the world's \"most popular illegal site\" by the Motion Picture Association of America (MPAA) in March 2018, before being shut down a few weeks later on foot of a criminal investigation by the Vietnamese authorities. As of July 2022, the network is still active via clone sites."@en + + xmlAnswer = xmlAnswer.replaceFirst("""<\?xml version=\"\d.\d\"\?>""", "").replaceFirst("""xml version=\"\d.\d\"\?>""","") + + for (child <- xmlPath) { + if (xmlAnswer.contains("<" + child) && xmlAnswer.contains("]*>", "") + xmlAnswer = xmlAnswer.substring(0, xmlAnswer.lastIndexOf("")) + } + else + return Failure(new WebServiceException("The response from the mediawiki API does not contain the expected XML path: " + xmlPath)) + } + + decodeHtml(xmlAnswer.trim) + } + +} From 053f0abee26d8f580fc07733c9afeab559e10527 Mon Sep 17 00:00:00 2001 From: celian_ringwald Date: Wed, 14 Sep 2022 18:16:45 +0200 Subject: [PATCH 09/54] Create a new connector for the REST API --- .../util/MediaWikiConnectorRest.scala | 156 ++++++++++++++++++ 1 file changed, 156 insertions(+) create mode 100755 core/src/main/scala/org/dbpedia/extraction/util/MediaWikiConnectorRest.scala diff --git a/core/src/main/scala/org/dbpedia/extraction/util/MediaWikiConnectorRest.scala b/core/src/main/scala/org/dbpedia/extraction/util/MediaWikiConnectorRest.scala new file mode 100755 index 0000000000..c8cfddb00a --- /dev/null +++ b/core/src/main/scala/org/dbpedia/extraction/util/MediaWikiConnectorRest.scala @@ -0,0 +1,156 @@ +package org.dbpedia.extraction.util + +import org.dbpedia.extraction.config.Config.MediaWikiConnection +import org.dbpedia.extraction.wikiparser.WikiTitle +import java.io.InputStream +import java.net.{HttpURLConnection, URL} +import java.time.temporal.ChronoUnit +import scala.collection.JavaConverters._ +import scala.math.pow +import javax.xml.ws.WebServiceException +import scala.io.Source +import scala.util.{Failure, Success, Try} + +/** + * The Mediawiki API connector + * @param connectionConfig - Collection of parameters necessary for API requests (see Config.scala) + * @param xmlPath - An array of XML tag names leading from the root (usually 'api') to the intended content of the response XML (depending on the request query used) + */ +class MediaWikiConnectorRest(connectionConfig: MediaWikiConnection, xmlPath: Seq[String]) extends MediaWikiConnectorAbstract(connectionConfig, xmlPath ) { + + protected val apiAccept: String = connectionConfig.accept + protected val apiCharset: String = connectionConfig.charset + protected val apiProfile: String = connectionConfig.profile + protected val userAgent: String = connectionConfig.useragent + + + /** + * Retrieves a Wikipedia page. + * + * @param pageTitle The encoded title of the page + * @return The page as an Option + */ + override def retrievePage(pageTitle: WikiTitle, apiParameterString: String, isRetry: Boolean = false): Option[String] = { + val retryFactor = if (isRetry) 2 else 1 + var Success_parsing = false + var parsed_answer: Try[String] = null + var waiting_time = sleepFactorMs + + + //val apiUrl: URL = new URL(connectionConfig.apiUrl.replace("{{LANG}}",pageTitle.language.wikiCode)) + // The encoded title may contain some URI-escaped characters (e.g. "5%25-Klausel"), + // so we can't use URLEncoder.encode(). But "&" is not escaped, so we do this here. + // TODO: test this in detail!!! there may be other characters that need to be escaped. + // TODO central string management + var titleParam = pageTitle.encodedWithNamespace + this.CHARACTERS_TO_ESCAPE foreach { + case (search, replacement) => titleParam = titleParam.replace(search, replacement); + } + //replaces {{lang}} with the language + val url: String = connectionConfig.apiUrl.replace("{{LANG}}", pageTitle.language.wikiCode) + + val parameters = "redirect=true" + val apiUrl: URL = new URL(url.concat(titleParam).concat("?"+parameters)) + + + + println(s"mediawikiurl: $apiUrl") + + + for (counter <- 1 to maxRetries) { + + val conn = apiUrl.openConnection + conn.setDoOutput(true) // POST REQUEST to verify + + val start = java.time.LocalTime.now() + + conn.setConnectTimeout(retryFactor * connectMs) + conn.setReadTimeout(retryFactor * readMs) + conn.setRequestProperty("accept", apiAccept) + conn.setRequestProperty("charset", apiCharset) + conn.setRequestProperty("profile", apiProfile) + conn.setRequestProperty("Accept-Language", pageTitle.language.wikiCode) + conn.setRequestProperty("User-Agent", userAgent) + + val inputStream = conn.getInputStream + val answer_header = conn.getHeaderFields() + val answer_clean = answer_header.asScala.filterKeys(_ != null) + + if(conn.getHeaderField(null).contains("HTTP/1.1 200 OK") ){ + + + val end = java.time.LocalTime.now() + conn match { + case connection: HttpURLConnection => + log.debug("Request type: " + connection.getRequestMethod + "; URL: " + connection.getURL + + "; Parameters: " + parameters + "; HTTP code: " + connection.getHeaderField(null) + + "; Request time: " + start + "; Response time: " + end + "; Time needed: " + + start.until(end, ChronoUnit.MILLIS)) + case _ => + } + // Read answer + parsed_answer = readInAbstract(inputStream) + Success_parsing = parsed_answer match { + case Success(str) => true + case Failure(_) => false + } + } + if(!Success_parsing){ + var sleepMs = sleepFactorMs + if (retryAfter && answer_clean.contains("retry-after")) { + //println("GIVEN RETRY-AFTER > "+ answer_clean("retry-after").get(0)) + waiting_time = Integer.parseInt(answer_clean("retry-after").get(0)) * 1000 + + // exponential backoff test + sleepMs = pow(waiting_time, counter).toInt + //println("WITH EXPONENTIAL BACK OFF" + counter) + //println("Sleeping time double >>>>>>>>>>>" + pow(waiting_time, counter)) + //println("Sleeping time int >>>>>>>>>>>" + sleepMs) + + } + if (counter < maxRetries) + Thread.sleep(sleepMs) + else + throw new Exception("Timeout error retrieving abstract of " + pageTitle + " in " + counter + " tries.") + } else { + + + //println(s"mediawikiurl: $apiUrl?$parameters") + return parsed_answer match { + case Success(str) => Option(str) + case Failure(e) => throw e + } + } + + } + throw new Exception("Could not retrieve abstract after " + maxRetries + " tries for page: " + pageTitle.encoded) + } + + + /** + * Get the parsed and cleaned abstract text from the MediaWiki instance input stream. + * It returns + * ABSTRACT_TEXT + * /// ABSTRACT_TEXT + */ + override def readInAbstract(inputStream: InputStream): Try[String] = { + // for XML format + try{ + val htmlAnswer = Source.fromInputStream(inputStream, "UTF-8").getLines().mkString("") + //var text = XML.loadString(xmlAnswer).asInstanceOf[NodeSeq] + + //test for errors + val pattern = "(]+info=\")([^\\\"]+)".r + if (htmlAnswer.contains("error code=")) { + return Failure(new WebServiceException(pattern.findFirstMatchIn(htmlAnswer) match { + case Some(m) => m.group(2) + case None => "An unknown exception occurred while retrieving the source XML from the mediawiki API." + })) + } + + Success(htmlAnswer) + } + + + } +} \ No newline at end of file From 205087569211318072dab55a1132ca248e1e9314 Mon Sep 17 00:00:00 2001 From: celian_ringwald Date: Wed, 14 Sep 2022 18:18:04 +0200 Subject: [PATCH 10/54] script for creating custom dump sample --- dump/src/test/bash/create_custom_sample.sh | 88 ++++++++++++++++++++++ 1 file changed, 88 insertions(+) create mode 100755 dump/src/test/bash/create_custom_sample.sh diff --git a/dump/src/test/bash/create_custom_sample.sh b/dump/src/test/bash/create_custom_sample.sh new file mode 100755 index 0000000000..9732af85e3 --- /dev/null +++ b/dump/src/test/bash/create_custom_sample.sh @@ -0,0 +1,88 @@ +#!/bin/sh +lang=""; +n=1000; +date_archive=$(date -d "$(date +%Y-%m-01) -1 day" +%Y-%m); +sort="desc" +while getopts l:d:n:s: flag +do + case "${flag}" in + l) lang=${OPTARG};; + d) date_archive=${OPTARG};; + n) n=${OPTARG};; + s) sort=${OPTARG};; + esac +done +echo "=========================" +echo "lang: $lang"; +echo "date: $date_archive"; +echo "n: $n"; +echo "sort: $sort"; +echo "=========================" + + +clickstream_data="clickstream_data_${lang}_${date_archive}" +if [ -f "$clickstream_data" ] +then + echo "File found" +else + echo "File not found" + clickstream_url="https://dumps.wikimedia.org/other/clickstream/"; + content=$(curl -L "$clickstream_url$date_archive/") + links=$( echo $content | grep -Po '(?<=href=")[^"]*'); + toextract=""; + substr="-${lang}wiki-" + echo $substr + for link in ${links[@]}; do + echo $link + if [[ $link =~ "-${lang}wiki-" ]];then + toextract="$clickstream_url$date_archive/$link"; + fi + done + + if [[ $toextract == "" ]]; then + echo "Lang not found in clickstream"; + exit 1; + fi + + echo ">>>> DOWNLOAD $toextract and save it" + + wget -O "${clickstream_data}.gz" $toextract; + gzip -d "${clickstream_data}.gz" +fi + + +echo ">>>> COMPUTE SUM OF CLICKS" +declare -A dict +while IFS= read -r line; do + IFS=$'\t'; arrIN=($line); unset IFS; + key=${arrIN[1]} + val=${arrIN[3]} + if [[ ${key} != *"List"* ]];then + if [[ ${#dict[${key}]} -eq 0 ]] ;then + dict[${key}]=$(($val)); + else + dict[${key}]=$((${dict[${key}]}+$val)); + fi + fi +done < $clickstream_data + +echo ">>>> SORT IT AND SAVE TEMP" +if [[ $sort == "desc" ]]; then + for page in "${!dict[@]}" + do + echo "$page ${dict[$page]}" + done | sort -rn -k2 | head -n "$n" | cut -d ' ' -f 1 >> temp.txt; +else + for page in "${!dict[@]}" + do + echo "$page ${dict[$page]}" + done | sort -n -k2 | head -n "$n" | cut -d ' ' -f 1 >> temp.txt; +fi + + +echo ">>>>> SAVE FINAL FILE : uri_sample_${lang}_${sort}_${n}.lst" +while IFS= read -r line;do + echo "https://$lang.wikipedia.org/wiki/$line" >> "uri_sample_${lang}_${sort}_${n}.lst" +done < "temp.txt" + +rm -rf temp.txt From 7ad20ae7f0898c66b9a4eb067220ff6fb6ddc0c3 Mon Sep 17 00:00:00 2001 From: celian_ringwald Date: Wed, 14 Sep 2022 18:18:54 +0200 Subject: [PATCH 11/54] script for generating Minidump from uri list generated by create_custom_sample.sh --- .../test/bash/createMinidump_custom_sample.sh | 85 +++++++++++++++++++ 1 file changed, 85 insertions(+) create mode 100755 dump/src/test/bash/createMinidump_custom_sample.sh diff --git a/dump/src/test/bash/createMinidump_custom_sample.sh b/dump/src/test/bash/createMinidump_custom_sample.sh new file mode 100755 index 0000000000..81cc513de5 --- /dev/null +++ b/dump/src/test/bash/createMinidump_custom_sample.sh @@ -0,0 +1,85 @@ +#!/bin/sh +file="uris.lst" +while getopts f: flag +do + case "${flag}" in + f) file=${OPTARG};; + esac +done +echo "=========================" +echo "file: $file"; +echo "=========================" + +fileUPDT=minidump_file_used.txt; +if [ -f "$fileUPDT" ] +then + rm -f $fileUPDT +fi + +# sort the file +LC_ALL=C sort -u -o $file $file + +SHACL=`rapper -i turtle ../resources/shacl-tests/* | cut -d ' ' -f1 | grep '^<' | sed 's/.*#//;s/^//' | sort -u | wc -l` + +echo "# Minidump Overview + +This readme is generated upon creation of the minidump by running \`./createMinidump.sh\` [code](https://github.com/dbpedia/extraction-framework/blob/master/dump/src/test/bash/createMinidump.sh). + +## SHACL Tests +Total: $SHACL + +TODO match shacl to URIs with a SPARQL query + +" > minidump-overview.md + +echo " +## Included Articles + +" > minidump-overview.md +for i in `cat $file` ; do + echo "* $i">> minidump-overview.md +done + + +# detect languages +LANG=`sed 's|^https://||;s|\.wikipedia.org.*||' $file | sort -u` + + + +for l in ${LANG} ; do + echo "LANGUAGE $l" + PAGES=`grep "$l.wikipedia.org" $file | sed 's|wikipedia.org/wiki/|wikipedia.org/wiki/Special:Export/|' ` + # copy header + mkdir -p "../resources/minidumps/"$l + TARGET="../resources/minidumps/"$l"/wiki.xml" + echo "TARGET: $TARGET" + cp head.xml "$TARGET" + # process pages + for p in ${PAGES}; do + echo "PAGE: $p" + + ## Sanitize page name for avoiding none results + p_uri=$(basename $p) + p_uri_clean=$( echo $p_uri |jq -Rr @uri ) + p_sanitized=$(echo "$p" | sed "s/$p_uri/$p_uri_clean/") + + echo "PAGE p_sanitized : $p_sanitized" + + echo "" >> "$TARGET" + + echo "" >> $TARGET + curl --progress-bar -L $p_sanitized \ + | xmlstarlet sel -N x="http://www.mediawiki.org/xml/export-0.10/" -t -c "//x:page" \ + | tail -n+2 >> $TARGET + echo "" >> "$TARGET" + done + echo "\n" >> $TARGET + cat "$TARGET" | lbzip2 > "$TARGET.bz2" + rm $TARGET + +done + +echo "$file" > ${fileUPDT}; +# curl $FIRST > $TMPFOLDER/main2.xml +#xmlstarlet sel -N x="http://www.mediawiki.org/xml/export-0.10/" -t -c "//page" main2.xml +# xmlstarlet ed -N x="http://www.mediawiki.org/xml/export-0.10/" --subnode "/x:mediawiki/x:siteinfo" --type elem -n "newsubnode" -v "" head.xml From f55d803544006cc13443c78f25c4516656a06792 Mon Sep 17 00:00:00 2001 From: celian_ringwald Date: Wed, 14 Sep 2022 18:19:18 +0200 Subject: [PATCH 12/54] script for creating uri list randomly from id list --- .../createSampleRandomFromPageIDdataset.sh | 23 +++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100755 dump/src/test/bash/createSampleRandomFromPageIDdataset.sh diff --git a/dump/src/test/bash/createSampleRandomFromPageIDdataset.sh b/dump/src/test/bash/createSampleRandomFromPageIDdataset.sh new file mode 100755 index 0000000000..018753c2a6 --- /dev/null +++ b/dump/src/test/bash/createSampleRandomFromPageIDdataset.sh @@ -0,0 +1,23 @@ +#!/bin/sh +n=10; +file="page_lang=ro_ids.ttl" +lang="ro" +while getopts n:l:f: flag +do + case "${flag}" in + n) n=${OPTARG};; + l) lang=${OPTARG};; + f) file=${OPTARG};; + + esac +done + + +echo "=========================" +echo "n: $n"; +echo "file: $file"; +echo "=========================" + +grep -v "resource\/\w*\:" $file > temp.txt +shuf -n $n temp.txt | grep -oP " <" | sed "s/> uri_sample_random_${lang}_${n}.lst +#rm -f temp.txt \ No newline at end of file From f7686ecffb8a6b1d4db92fb914f058d9ca870241 Mon Sep 17 00:00:00 2001 From: celian_ringwald Date: Wed, 14 Sep 2022 18:20:26 +0200 Subject: [PATCH 13/54] adapt property files to new possible APIS --- .../extraction.nif.abstracts.properties | 26 ++++++++++++++++--- 1 file changed, 22 insertions(+), 4 deletions(-) mode change 100644 => 100755 dump/src/test/resources/extraction-configs/extraction.nif.abstracts.properties diff --git a/dump/src/test/resources/extraction-configs/extraction.nif.abstracts.properties b/dump/src/test/resources/extraction-configs/extraction.nif.abstracts.properties old mode 100644 new mode 100755 index 1083e6db10..8827843c62 --- a/dump/src/test/resources/extraction-configs/extraction.nif.abstracts.properties +++ b/dump/src/test/resources/extraction-configs/extraction.nif.abstracts.properties @@ -30,13 +30,15 @@ require-download-complete=false # List of languages or article count ranges, e.g. 'en,de,fr' or '10000-20000' or '10000-', or '@mappings' # NOTE sync with minidumps #languages=af,als,am,an,arz,ast,azb,ba,bar,bat-smg,bpy,br,bs,bug,cdo,ce,ceb,ckb,cv,fo,fy,gd,he,hsb,ht,ia,ilo,io,is,jv,ka,kn,ku,ky,la,lb,li,lmo,mai,mg,min,ml,mn,mr,mrj,ms,mt,my,mzn,nah,nap,nds,ne,new,nn,no,oc,or,os,pa,pms,pnb,qu,sa,sah,scn,sco,sh,si,simple,sq,su,sw,ta,te,tg,th,tl,tt,uz,vec,wa,xmf,yo,zh-min-nan,zh-yue -languages=en,fr,de,nl,ro +#languages=af,als,am,an,arz,ast,azb,ba,bar,bat-smg,bpy,br,bs,bug,cdo,ce,ceb,ckb,cv,fo,fy,gd,he,hsb,ht,ia,ilo,io,is,jv,ka,kn,ku,ky,la,lb,li,lmo,mai,mg,min,ml,mn,mr,mrj,ms,mt,my,mzn,nah,nap,nds,ne,new,nn,no,oc,or,os,pa,pms,pnb,qu,sa,sah,scn,sco,sh,si,simple,sq,su,sw,ta,te,tg,th,tl,tt,uz,vec,wa,xmf,yo,zh-min-nan,zh-yue +languages=fr + # default namespaces: Main, File, Category, Template # we only want abstracts for articles -> only main namespace namespaces=Main # extractor class names starting with "." are prefixed by "org.dbpedia.extraction.mappings" - +# Change to NifExtractor for extracting Nif texts extractors=.HtmlAbstractExtractor remove-broken-brackets-html-abstracts=true # if ontology and mapping files are not given or do not exist, download info from mappings.dbpedia.org @@ -64,11 +66,27 @@ format.ttl.bz2=turtle-triples;uri-policy.iri #the following parameters are for the mediawiki api connection used in nif and abstract extraction -mwc-apiUrl=https://{{LANG}}.wikipedia.org/w/api.php + +mwc-apiMWCUrl=https://{{LANG}}.wikipedia.org/w/api.php +mwc-apiRestUrl=https://{{LANG}}.wikipedia.org/api/rest_v1/page/html/ +mwc-apiLocalUrl=http://localhost:8080/api.php +# chose "rest", "mwc" or "local" +mwc-type=rest +# MWC params mwc-maxRetries=5 mwc-connectMs=4000 mwc-readMs=30000 mwc-sleepFactor=2000 +# MWC rest params +mwc-maxlag=3 +mwc-useragent=(https://dbpedia.org/; dbpedia@infai.org) DIEF +mwc-gzip=true +mwc-retryafter=true +# CONFIG OF REST API +mwc-accept=text/html +mwc-charset=utf-8 +mwc-profile=https://www.mediawiki.org/wiki/Specs/HTML/2.1.0 + #parameters specific for the abstract extraction abstract-query=&format=xml&action=query&prop=extracts&exintro=&explaintext=&titles=%s @@ -83,7 +101,7 @@ short-abstract-min-length=200 #parameters specific to the nif extraction #only extract abstract (not the whole page) -nif-extract-abstract-only=false +nif-extract-abstract-only=true #the request query string nif-query=&format=xml&action=parse&prop=text&page=%s&pageid=%d #the xml path of the response From 782214b00d9f16e0a7f328d0bce108f7806b2e75 Mon Sep 17 00:00:00 2001 From: celian_ringwald Date: Wed, 14 Sep 2022 18:21:01 +0200 Subject: [PATCH 14/54] add new param for MWC api --- .../extraction.plain.abstracts.properties | 17 ++++++++++++++--- 1 file changed, 14 insertions(+), 3 deletions(-) mode change 100644 => 100755 dump/src/test/resources/extraction-configs/extraction.plain.abstracts.properties diff --git a/dump/src/test/resources/extraction-configs/extraction.plain.abstracts.properties b/dump/src/test/resources/extraction-configs/extraction.plain.abstracts.properties old mode 100644 new mode 100755 index d865cb4c45..54995ca013 --- a/dump/src/test/resources/extraction-configs/extraction.plain.abstracts.properties +++ b/dump/src/test/resources/extraction-configs/extraction.plain.abstracts.properties @@ -30,7 +30,8 @@ require-download-complete=false # List of languages or article count ranges, e.g. 'en,de,fr' or '10000-20000' or '10000-', or '@mappings' # NOTE sync with minidumps #languages=af,als,am,an,arz,ast,azb,ba,bar,bat-smg,bpy,br,bs,bug,cdo,ce,ceb,ckb,cv,fo,fy,gd,he,hsb,ht,ia,ilo,io,is,jv,ka,kn,ku,ky,la,lb,li,lmo,mai,mg,min,ml,mn,mr,mrj,ms,mt,my,mzn,nah,nap,nds,ne,new,nn,no,oc,or,os,pa,pms,pnb,qu,sa,sah,scn,sco,sh,si,simple,sq,su,sw,ta,te,tg,th,tl,tt,uz,vec,wa,xmf,yo,zh-min-nan,zh-yue -languages=en + +languages=ro # default namespaces: Main, File, Category, Template # we only want abstracts for articles -> only main namespace namespaces=Main @@ -64,11 +65,21 @@ format.ttl.bz2=turtle-triples;uri-policy.iri #the following parameters are for the mediawiki api connection used in nif and abstract extraction -mwc-apiUrl=https://{{LANG}}.wikipedia.org/w/api.php +mwc-apiRestUrl=https://{{LANG}}.wikipedia.org/api/rest_v1/page/html/ +mwc-apiLocalUrl=http://localhost:8080/api.php +# chose "mwc" or "local" +mwc-type=mwc +# MWC params mwc-maxRetries=5 mwc-connectMs=4000 mwc-readMs=30000 mwc-sleepFactor=2000 +# MWC rest params +mwc-maxlag=3 +mwc-useragent=(https://dbpedia.org/; dbpedia@infai.org) DIEF +mwc-gzip=true +mwc-retryafter=true + #parameters specific for the abstract extraction abstract-query=&format=xml&action=query&prop=extracts&exintro=&explaintext=&titles=%s @@ -83,7 +94,7 @@ short-abstract-min-length=200 #parameters specific to the nif extraction #only extract abstract (not the whole page) -nif-extract-abstract-only=false +nif-extract-abstract-only=true #the request query string nif-query=&format=xml&action=parse&prop=text&page=%s&pageid=%d #the xml path of the response From 984b5d441b3e0679a21725e46c91e392f37e2d74 Mon Sep 17 00:00:00 2001 From: celian_ringwald Date: Wed, 14 Sep 2022 18:21:49 +0200 Subject: [PATCH 15/54] new Test for abstract benchmark --- .../extraction/dump/ExtractionTestAbstract.md | 16 ++ .../dump/ExtractionTestAbstract.scala | 162 ++++++++++++++++++ 2 files changed, 178 insertions(+) create mode 100755 dump/src/test/scala/org/dbpedia/extraction/dump/ExtractionTestAbstract.md create mode 100755 dump/src/test/scala/org/dbpedia/extraction/dump/ExtractionTestAbstract.scala diff --git a/dump/src/test/scala/org/dbpedia/extraction/dump/ExtractionTestAbstract.md b/dump/src/test/scala/org/dbpedia/extraction/dump/ExtractionTestAbstract.md new file mode 100755 index 0000000000..7ee80cbe84 --- /dev/null +++ b/dump/src/test/scala/org/dbpedia/extraction/dump/ExtractionTestAbstract.md @@ -0,0 +1,16 @@ +# ExtractionTestAbstract + +designed for testing abstracts extractors +## Before all + +* Delete tag @DoNotDiscover of ExtractionTestAbstract +* add the tag @DoNotDiscover to other test class + +## Procedure : +* first clean your target directory with ``` mvn clean ``` in the root directory of DIEF +* go to bash scripts via ``` cd /dump/src/test/bash ``` +* OPTIONAL : creating a new Wikipedia minidump sample with ``` bash create_custom_sample.sh -n $numberOfPage -l $lang -d $optionalDate ``` +* process sample of Wikipedia pages ``` bash Minidump_custom_sample.sh -f $filename/lst ``` +* Update your extraction language parameter regarding of your minidump sample in [extraction.nif.abstracts.properties](https://github.com/datalogism/extraction-framework/blob/gsoc-celian/dump/src/test/resources/extraction-configs/extraction.nif.abstracts.properties) and in [extraction.plain.abstracts.properties](https://github.com/datalogism/extraction-framework/blob/gsoc-celian/dump/src/test/resources/extraction-configs/extraction.plain.abstracts.properties) +* Change the name of your log in the [**ExtractionTestAbstract.scala**](https://github.com/datalogism/extraction-framework/blob/gsoc-celian/dump/src/test/scala/org/dbpedia/extraction/dump/ExtractionTestAbstract.scala) file +* rebuild the app with ``` mvn install ``` or just test it with ``` mvn test -Dtest="ExtractionTestAbstract2" ``` diff --git a/dump/src/test/scala/org/dbpedia/extraction/dump/ExtractionTestAbstract.scala b/dump/src/test/scala/org/dbpedia/extraction/dump/ExtractionTestAbstract.scala new file mode 100755 index 0000000000..2e6ae5cd63 --- /dev/null +++ b/dump/src/test/scala/org/dbpedia/extraction/dump/ExtractionTestAbstract.scala @@ -0,0 +1,162 @@ +package org.dbpedia.extraction.dump +import scala.io.Source +import java.io.{BufferedWriter, File, FileWriter} +import java.util.concurrent.ConcurrentLinkedQueue +import org.apache.commons.io.FileUtils +import org.dbpedia.extraction.config.Config +import org.dbpedia.extraction.dump.TestConfig.{ date, mappingsConfig, minidumpDir, nifAbstractConfig, plainAbstractConfig} +import org.dbpedia.extraction.dump.extract.ConfigLoader +import org.dbpedia.extraction.dump.tags.ExtractionTestTag +import org.scalatest.{BeforeAndAfterAll, DoNotDiscover, FunSuite} +import com.fasterxml.jackson.module.scala.DefaultScalaModule +import com.fasterxml.jackson.databind.ObjectMapper +import java.nio.file.{Files, Paths} +import scala.concurrent.Future + + +@DoNotDiscover +class ExtractionTestAbstract extends FunSuite with BeforeAndAfterAll { + println(""" __ ____ _ __ ______ __ + | / |/ (_)___ (_)___/ /_ ______ ___ ____ /_ __/__ _____/ /______ + | / /|_/ / / __ \/ / __ / / / / __ `__ \/ __ \ / / / _ \/ ___/ __/ ___/ + | / / / / / / / / / /_/ / /_/ / / / / / / /_/ / / / / __(__ ) /_(__ ) + |/_/ /_/_/_/ /_/_/\__,_/\__,_/_/ /_/ /_/ .___/ /_/ \___/____/\__/____/ + | /_/ ABSTRACTS""".replace("\r", "").stripMargin) + + override def beforeAll() { + minidumpDir.listFiles().foreach(f => { + val wikiMasque = f.getName + "wiki" + val targetDir = new File(mappingsConfig.dumpDir, s"$wikiMasque/$date/") + // create directories + targetDir.mkdirs() + FileUtils.copyFile( + new File(f + "/wiki.xml.bz2"), + new File(targetDir, s"$wikiMasque-$date-pages-articles-multistream.xml.bz2") + ) + }) + } + + + + +test("extract html abstract datasets", ExtractionTestTag) { + Utils.renameAbstractsDatasetFiles("html") + println(">>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> html abstract begin") + val jobsRunning1 = new ConcurrentLinkedQueue[Future[Unit]]() + val extractRes = extract(nifAbstractConfig, jobsRunning1) + writeTestResult("MWC_ro_html_rest_only",extractRes) + println("> html abstract end") + + } + + +/*test("extract plain abstract datasets", ExtractionTestTag) { + println(">>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> Plain abstract begin") + Utils.renameAbstractsDatasetFiles("plain") + val jobsRunning2 = new ConcurrentLinkedQueue[Future[Unit]]() + val extractRes2=extract(plainAbstractConfig, jobsRunning2) + writeTestResult("MWC_ro_plain_only",extractRes2) + println("> Plain abstract end") + }*/ + + def writeTestResult(fileName : String, content: Array[Map[String,String]]): Unit ={ + val today = java.time.LocalDate.now.toString + val urisListUsed="../dump/src/test/bash/minidump_file_used.txt" + var fileName2="" + val mapper = new ObjectMapper() + mapper.registerModule(DefaultScalaModule) + val json = mapper.writeValueAsString(content) + + val targetDir = new File("../dump/test_logs/") + // create directories + targetDir.mkdirs() + + if( Files.exists(Paths.get(urisListUsed))){ + + val Urifile = Source.fromFile(urisListUsed) + val fileContents = Urifile.getLines.mkString + Urifile.close() + + fileName2="../dump/test_logs/"+fileName+"_"+fileContents+"_"+today+".log" + + }else{ + fileName2="../dump/test_logs/"+fileName+"_"+"base-list"+today+".log" + + } + val file = new File(fileName2) + val bw = new BufferedWriter(new FileWriter(file)) + bw.write(json) + bw.close() + } + + def extract(config: Config, jobsRunning: ConcurrentLinkedQueue[Future[Unit]]): Array[Map[String,String]] ={ + println(">>>>>>>>> EXTRACT - BEGIN") + var mapResults = Array[Map[String,String]]() + val configLoader = new ConfigLoader(config) + + val parallelProcesses = 1 + println(parallelProcesses) + val jobs=configLoader.getExtractionJobs + println(">>>>>>>>> EXTRACT - NBJOBS > "+jobs.size) + println("LAUNCH JOBS") + for (job <- jobs) { + + job.run() + + val lang=job.extractionRecorder.language + val records=job.extractionRecorder + println(">>>>>>>>> EXTRACT - LANG > " + lang.wikiCode) + + val status = records.getStatusValues(lang); + var numberOfFailedPages429 = 0 + var numberOfFailedPages503 = 0 + var numberOfFailedPagesIOException = 0 + var numberOfFailedPagesOutOfMemoryError = 0 + var numberOfFailedPagesNullPointerException = 0 + var mapLocal= status + + mapLocal += "language" -> lang.wikiCode.toString(); + + try { + val listFailedPages_ = records.listFailedPages(lang) + for( failed <- listFailedPages_) { + if(failed.toString().contains("Server returned HTTP response code: 429")){ + numberOfFailedPages429 += 1 + } + if (failed.toString().contains("Server returned HTTP response code: 503")){ + numberOfFailedPages503 += 1 + } + if (failed.toString().contains("java.io.IOException")){ + numberOfFailedPagesIOException += 1 + } + if (failed.toString().contains("java.io.OutOfMemoryError")){ + numberOfFailedPagesOutOfMemoryError += 1 + } + if (failed.toString().contains("java.io.NullPointerException")){ + numberOfFailedPagesNullPointerException += 1 + } + } + } catch { + case e: Exception => None + } + + mapLocal += "numberOfFailedPages429" -> numberOfFailedPages429.toString + mapLocal += "numberOfFailedPages503" -> numberOfFailedPages503.toString + mapLocal += "numberOfFailedPagesIOException" -> numberOfFailedPagesIOException.toString + mapLocal += "numberOfFailedPagesOutOfMemoryError" ->numberOfFailedPagesOutOfMemoryError.toString + mapLocal += "numberOfFailedPagesNullPointerException" -> numberOfFailedPagesNullPointerException.toString + + + mapResults = mapResults :+ mapLocal + + } + while (jobsRunning.size() > 0) { + + Thread.sleep(1000) + } + + jobsRunning.clear() + mapResults + + } +} From 021ca019dc111907c8f9b3d30d29e6778b7dc654 Mon Sep 17 00:00:00 2001 From: celian_ringwald Date: Wed, 14 Sep 2022 18:25:49 +0200 Subject: [PATCH 16/54] Add new properties for API connectors --- .../dbpedia/extraction/config/Config.scala | 40 ++++++++++++++----- 1 file changed, 31 insertions(+), 9 deletions(-) mode change 100644 => 100755 core/src/main/scala/org/dbpedia/extraction/config/Config.scala diff --git a/core/src/main/scala/org/dbpedia/extraction/config/Config.scala b/core/src/main/scala/org/dbpedia/extraction/config/Config.scala old mode 100644 new mode 100755 index e10453e7d1..43baffbcce --- a/core/src/main/scala/org/dbpedia/extraction/config/Config.scala +++ b/core/src/main/scala/org/dbpedia/extraction/config/Config.scala @@ -97,7 +97,7 @@ class Config(val configPath: String) extends * Number of parallel processes allowed. Depends on the number of cores, type of disk and IO speed * */ - lazy val parallelProcesses: Int = this.getProperty("parallel-processes", "4").trim.toInt + lazy val parallelProcesses: Int = this.getProperty("parallel-processes", "1").trim.toInt lazy val sparkMaster: String = Option(getString(this, "spark-master")).getOrElse("local[*]") @@ -259,18 +259,32 @@ class Config(val configPath: String) extends } lazy val mediawikiConnection: MediaWikiConnection = Try { + MediaWikiConnection( - apiUrl = this.getProperty("mwc-apiUrl", "").trim, + apiType = this.getProperty("mwc-type", "").trim, + apiUrl = this.getProperty("mwc-type").trim match { + case "rest" => this.getProperty("mwc-apiRestUrl", "").trim + case "mwc" => this.getProperty("mwc-apiMWCUrl", "").trim + case "local" => this.getProperty("mwc-apiLocalUrl", "").trim + }, maxRetries = this.getProperty("mwc-maxRetries", "4").trim.toInt, connectMs = this.getProperty("mwc-connectMs", "2000").trim.toInt, readMs = this.getProperty("mwc-readMs", "5000").trim.toInt, - sleepFactor = this.getProperty("mwc-sleepFactor", "1000").trim.toInt + sleepFactor = this.getProperty("mwc-sleepFactor", "1000").trim.toInt, + maxlag = this.getProperty("mwc-maxlag", "5").trim.toInt, + useragent = this.getProperty("mwc-useragent", "anonymous").trim, + gzip = this.getProperty("mwc-gzip","false").trim.toBoolean, + retryafter = this.getProperty("mwc-retryafter", "false").trim.toBoolean, + accept = this.getProperty("mwc-accept", "text/html").trim, + charset = this.getProperty("mwc-charset", "utf-8").trim, + profile = this.getProperty("mwc-profile", "https://www.mediawiki.org/wiki/Specs/HTML/2.1.0").trim ) } match{ case Success(s) => s case Failure(f) => throw new IllegalArgumentException("Not all necessary parameters for the 'MediaWikiConnection' class were provided or could not be parsed to the expected type.", f) } + lazy val abstractParameters: AbstractParameters = Try { AbstractParameters( abstractQuery = this.getProperty("abstract-query", "").trim, @@ -364,12 +378,20 @@ object Config{ * @param sleepFactor */ case class MediaWikiConnection( - apiUrl: String, - maxRetries: Int, - connectMs: Int, - readMs: Int, - sleepFactor: Int - ) + apiType: String, + apiUrl: String, + maxRetries: Int, + connectMs: Int, + readMs: Int, + sleepFactor: Int, + maxlag: Int, + useragent: String, + gzip: Boolean, + retryafter: Boolean, + accept : String, + charset: String, + profile: String + ) case class AbstractParameters( abstractQuery: String, From 7001bcdbd366a5a6e24508d182bbe52af48f2cde Mon Sep 17 00:00:00 2001 From: celian_ringwald Date: Wed, 14 Sep 2022 18:27:42 +0200 Subject: [PATCH 17/54] adapt for extension --- .../org/dbpedia/extraction/nif/WikipediaNifExtractor.scala | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) mode change 100644 => 100755 core/src/main/scala/org/dbpedia/extraction/nif/WikipediaNifExtractor.scala diff --git a/core/src/main/scala/org/dbpedia/extraction/nif/WikipediaNifExtractor.scala b/core/src/main/scala/org/dbpedia/extraction/nif/WikipediaNifExtractor.scala old mode 100644 new mode 100755 index 64764d3bf5..3f99c16854 --- a/core/src/main/scala/org/dbpedia/extraction/nif/WikipediaNifExtractor.scala +++ b/core/src/main/scala/org/dbpedia/extraction/nif/WikipediaNifExtractor.scala @@ -210,15 +210,15 @@ class WikipediaNifExtractor( tocMap } - private def isWikiPageEnd(node: Node): Boolean ={ + protected def isWikiPageEnd(node: Node): Boolean ={ cssSelectorTest(node, cssSelectorConfigMap.findPageEnd) } - private def isWikiToc(node: Node): Boolean ={ + protected def isWikiToc(node: Node): Boolean ={ cssSelectorTest(node, cssSelectorConfigMap.findToc) } - private def isWikiNextTitle(node: Node): Boolean ={ + protected def isWikiNextTitle(node: Node): Boolean ={ cssSelectorTest(node, cssSelectorConfigMap.nextTitle) } From 78d91d6b1faea49125ccbeaec1f8fdb37b328930 Mon Sep 17 00:00:00 2001 From: c_ringwald <42188996+datalogism@users.noreply.github.com> Date: Fri, 16 Sep 2022 18:04:17 +0200 Subject: [PATCH 18/54] Update core/src/main/scala/org/dbpedia/extraction/util/MediawikiConnectorConfigured.scala Co-authored-by: Ted Thibodeau Jr --- .../dbpedia/extraction/util/MediawikiConnectorConfigured.scala | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/src/main/scala/org/dbpedia/extraction/util/MediawikiConnectorConfigured.scala b/core/src/main/scala/org/dbpedia/extraction/util/MediawikiConnectorConfigured.scala index a697663e02..4e9ed04907 100755 --- a/core/src/main/scala/org/dbpedia/extraction/util/MediawikiConnectorConfigured.scala +++ b/core/src/main/scala/org/dbpedia/extraction/util/MediawikiConnectorConfigured.scala @@ -198,7 +198,7 @@ class MediawikiConnectorConfigured(connectionConfig: MediaWikiConnection, xmlPat // REDIRECT CASE - // Implemented but usefull ? + // Implemented but useful? //xmlAnswer = xmlAnswer.replaceAll("", "") /*if (xmlAnswer.contains("" ) && xmlAnswer.contains("")) { val indexBegin = xmlAnswer.indexOf("") From d7929da852727ffeb475b9fda2e6f0886692089f Mon Sep 17 00:00:00 2001 From: c_ringwald <42188996+datalogism@users.noreply.github.com> Date: Fri, 16 Sep 2022 18:04:27 +0200 Subject: [PATCH 19/54] Update dump/src/test/scala/org/dbpedia/extraction/dump/ExtractionTestAbstract.md Co-authored-by: Ted Thibodeau Jr --- .../extraction/dump/ExtractionTestAbstract.md | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/dump/src/test/scala/org/dbpedia/extraction/dump/ExtractionTestAbstract.md b/dump/src/test/scala/org/dbpedia/extraction/dump/ExtractionTestAbstract.md index 7ee80cbe84..e7b555da2a 100755 --- a/dump/src/test/scala/org/dbpedia/extraction/dump/ExtractionTestAbstract.md +++ b/dump/src/test/scala/org/dbpedia/extraction/dump/ExtractionTestAbstract.md @@ -7,10 +7,10 @@ designed for testing abstracts extractors * add the tag @DoNotDiscover to other test class ## Procedure : -* first clean your target directory with ``` mvn clean ``` in the root directory of DIEF -* go to bash scripts via ``` cd /dump/src/test/bash ``` -* OPTIONAL : creating a new Wikipedia minidump sample with ``` bash create_custom_sample.sh -n $numberOfPage -l $lang -d $optionalDate ``` -* process sample of Wikipedia pages ``` bash Minidump_custom_sample.sh -f $filename/lst ``` -* Update your extraction language parameter regarding of your minidump sample in [extraction.nif.abstracts.properties](https://github.com/datalogism/extraction-framework/blob/gsoc-celian/dump/src/test/resources/extraction-configs/extraction.nif.abstracts.properties) and in [extraction.plain.abstracts.properties](https://github.com/datalogism/extraction-framework/blob/gsoc-celian/dump/src/test/resources/extraction-configs/extraction.plain.abstracts.properties) -* Change the name of your log in the [**ExtractionTestAbstract.scala**](https://github.com/datalogism/extraction-framework/blob/gsoc-celian/dump/src/test/scala/org/dbpedia/extraction/dump/ExtractionTestAbstract.scala) file -* rebuild the app with ``` mvn install ``` or just test it with ``` mvn test -Dtest="ExtractionTestAbstract2" ``` +1. Clean your target directory with `mvn clean` in the root directory of DIEF +1. Go to bash scripts via `cd /dump/src/test/bash` +1. OPTIONAL: Create a new Wikipedia minidump sample with `bash create_custom_sample.sh -n $numberOfPage -l $lang -d $optionalDate` +1. Process sample of Wikipedia pages `bash Minidump_custom_sample.sh -f $filename/lst` +1. Update the extraction language parameter for your minidump sample in [`extraction.nif.abstracts.properties`](https://github.com/datalogism/extraction-framework/blob/gsoc-celian/dump/src/test/resources/extraction-configs/extraction.nif.abstracts.properties) and in [`extraction.plain.abstracts.properties`](https://github.com/datalogism/extraction-framework/blob/gsoc-celian/dump/src/test/resources/extraction-configs/extraction.plain.abstracts.properties) +1. Change the name of your log in the [`ExtractionTestAbstract.scala`](https://github.com/datalogism/extraction-framework/blob/gsoc-celian/dump/src/test/scala/org/dbpedia/extraction/dump/ExtractionTestAbstract.scala) file +1. Rebuild the app with `mvn install`, or just test it with `mvn test -Dtest="ExtractionTestAbstract2"` From 167b342900febfa0ec99aa93cbaa0df37d0f7ed2 Mon Sep 17 00:00:00 2001 From: c_ringwald <42188996+datalogism@users.noreply.github.com> Date: Fri, 16 Sep 2022 18:04:37 +0200 Subject: [PATCH 20/54] Update dump/src/test/scala/org/dbpedia/extraction/dump/ExtractionTestAbstract.scala Co-authored-by: Ted Thibodeau Jr --- .../org/dbpedia/extraction/dump/ExtractionTestAbstract.scala | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dump/src/test/scala/org/dbpedia/extraction/dump/ExtractionTestAbstract.scala b/dump/src/test/scala/org/dbpedia/extraction/dump/ExtractionTestAbstract.scala index 2e6ae5cd63..61605319fb 100755 --- a/dump/src/test/scala/org/dbpedia/extraction/dump/ExtractionTestAbstract.scala +++ b/dump/src/test/scala/org/dbpedia/extraction/dump/ExtractionTestAbstract.scala @@ -120,7 +120,7 @@ test("extract html abstract datasets", ExtractionTestTag) { try { val listFailedPages_ = records.listFailedPages(lang) for( failed <- listFailedPages_) { - if(failed.toString().contains("Server returned HTTP response code: 429")){ + if (failed.toString().contains("Server returned HTTP response code: 429")){ numberOfFailedPages429 += 1 } if (failed.toString().contains("Server returned HTTP response code: 503")){ From 6112b947a9c80edd33502d7ca2ea25a4a12f6c8e Mon Sep 17 00:00:00 2001 From: c_ringwald <42188996+datalogism@users.noreply.github.com> Date: Fri, 16 Sep 2022 18:04:45 +0200 Subject: [PATCH 21/54] Update dump/src/test/scala/org/dbpedia/extraction/dump/ExtractionTestAbstract.scala Co-authored-by: Ted Thibodeau Jr --- .../org/dbpedia/extraction/dump/ExtractionTestAbstract.scala | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dump/src/test/scala/org/dbpedia/extraction/dump/ExtractionTestAbstract.scala b/dump/src/test/scala/org/dbpedia/extraction/dump/ExtractionTestAbstract.scala index 61605319fb..db19d13fff 100755 --- a/dump/src/test/scala/org/dbpedia/extraction/dump/ExtractionTestAbstract.scala +++ b/dump/src/test/scala/org/dbpedia/extraction/dump/ExtractionTestAbstract.scala @@ -143,7 +143,7 @@ test("extract html abstract datasets", ExtractionTestTag) { mapLocal += "numberOfFailedPages429" -> numberOfFailedPages429.toString mapLocal += "numberOfFailedPages503" -> numberOfFailedPages503.toString mapLocal += "numberOfFailedPagesIOException" -> numberOfFailedPagesIOException.toString - mapLocal += "numberOfFailedPagesOutOfMemoryError" ->numberOfFailedPagesOutOfMemoryError.toString + mapLocal += "numberOfFailedPagesOutOfMemoryError" -> numberOfFailedPagesOutOfMemoryError.toString mapLocal += "numberOfFailedPagesNullPointerException" -> numberOfFailedPagesNullPointerException.toString From e97dd88b23bd523b2d2dd047f3ad14e098999f9b Mon Sep 17 00:00:00 2001 From: c_ringwald <42188996+datalogism@users.noreply.github.com> Date: Fri, 16 Sep 2022 18:04:57 +0200 Subject: [PATCH 22/54] Update core/src/main/scala/org/dbpedia/extraction/config/Config.scala Co-authored-by: Ted Thibodeau Jr --- core/src/main/scala/org/dbpedia/extraction/config/Config.scala | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/src/main/scala/org/dbpedia/extraction/config/Config.scala b/core/src/main/scala/org/dbpedia/extraction/config/Config.scala index 43baffbcce..9f489db6ed 100755 --- a/core/src/main/scala/org/dbpedia/extraction/config/Config.scala +++ b/core/src/main/scala/org/dbpedia/extraction/config/Config.scala @@ -281,7 +281,7 @@ class Config(val configPath: String) extends ) } match{ case Success(s) => s - case Failure(f) => throw new IllegalArgumentException("Not all necessary parameters for the 'MediaWikiConnection' class were provided or could not be parsed to the expected type.", f) + case Failure(f) => throw new IllegalArgumentException("Some parameters necessary for the 'MediaWikiConnection' class were not provided or could not be parsed to the expected type.", f) } From 969f3b44eecf8fc20fb9e34323cd9e14030bbfad Mon Sep 17 00:00:00 2001 From: c_ringwald <42188996+datalogism@users.noreply.github.com> Date: Fri, 16 Sep 2022 18:05:10 +0200 Subject: [PATCH 23/54] Update core/src/main/scala/org/dbpedia/extraction/config/Config.scala Co-authored-by: Ted Thibodeau Jr --- core/src/main/scala/org/dbpedia/extraction/config/Config.scala | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/src/main/scala/org/dbpedia/extraction/config/Config.scala b/core/src/main/scala/org/dbpedia/extraction/config/Config.scala index 9f489db6ed..54ede5c402 100755 --- a/core/src/main/scala/org/dbpedia/extraction/config/Config.scala +++ b/core/src/main/scala/org/dbpedia/extraction/config/Config.scala @@ -94,7 +94,7 @@ class Config(val configPath: String) extends } /** - * Number of parallel processes allowed. Depends on the number of cores, type of disk and IO speed + * Number of parallel processes allowed. Depends on the number of cores, type of disk, and IO speed * */ lazy val parallelProcesses: Int = this.getProperty("parallel-processes", "1").trim.toInt From e89f81337fa8b5caf9429a0925d7256d2923d2b1 Mon Sep 17 00:00:00 2001 From: celian_ringwald Date: Mon, 19 Sep 2022 16:13:16 +0200 Subject: [PATCH 24/54] clear comments of API config and fix plain abstract API urls --- .../extraction-configs/extraction.nif.abstracts.properties | 4 ++-- .../extraction-configs/extraction.plain.abstracts.properties | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/dump/src/test/resources/extraction-configs/extraction.nif.abstracts.properties b/dump/src/test/resources/extraction-configs/extraction.nif.abstracts.properties index 8827843c62..499789ef0e 100755 --- a/dump/src/test/resources/extraction-configs/extraction.nif.abstracts.properties +++ b/dump/src/test/resources/extraction-configs/extraction.nif.abstracts.properties @@ -77,12 +77,12 @@ mwc-maxRetries=5 mwc-connectMs=4000 mwc-readMs=30000 mwc-sleepFactor=2000 -# MWC rest params +# MWC specifics params mwc-maxlag=3 mwc-useragent=(https://dbpedia.org/; dbpedia@infai.org) DIEF mwc-gzip=true mwc-retryafter=true -# CONFIG OF REST API +# REST specifics params mwc-accept=text/html mwc-charset=utf-8 mwc-profile=https://www.mediawiki.org/wiki/Specs/HTML/2.1.0 diff --git a/dump/src/test/resources/extraction-configs/extraction.plain.abstracts.properties b/dump/src/test/resources/extraction-configs/extraction.plain.abstracts.properties index 54995ca013..4025e87854 100755 --- a/dump/src/test/resources/extraction-configs/extraction.plain.abstracts.properties +++ b/dump/src/test/resources/extraction-configs/extraction.plain.abstracts.properties @@ -65,7 +65,7 @@ format.ttl.bz2=turtle-triples;uri-policy.iri #the following parameters are for the mediawiki api connection used in nif and abstract extraction -mwc-apiRestUrl=https://{{LANG}}.wikipedia.org/api/rest_v1/page/html/ +mwc-apiMWCUrl=https://{{LANG}}.wikipedia.org/w/api.php mwc-apiLocalUrl=http://localhost:8080/api.php # chose "mwc" or "local" mwc-type=mwc From 2246f21dde16f57a441d1fdee783102193733fef Mon Sep 17 00:00:00 2001 From: celian_ringwald Date: Mon, 19 Sep 2022 16:31:26 +0200 Subject: [PATCH 25/54] snake case to camel case --- .../nif/WikipediaNifExtractorRest.scala | 22 +++++++------- .../util/MediaWikiConnectorRest.scala | 26 ++++++++-------- .../util/MediawikiConnectorConfigured.scala | 30 +++++++++---------- 3 files changed, 39 insertions(+), 39 deletions(-) diff --git a/core/src/main/scala/org/dbpedia/extraction/nif/WikipediaNifExtractorRest.scala b/core/src/main/scala/org/dbpedia/extraction/nif/WikipediaNifExtractorRest.scala index 41c8491dff..268dac376f 100755 --- a/core/src/main/scala/org/dbpedia/extraction/nif/WikipediaNifExtractorRest.scala +++ b/core/src/main/scala/org/dbpedia/extraction/nif/WikipediaNifExtractorRest.scala @@ -39,20 +39,20 @@ class WikipediaNifExtractorRest( val currentSection = new ListBuffer[Int]() //keeps track of section number currentSection.append(0) //initialize on abstract section - def getSection(current_nodes : scala.collection.mutable.Buffer[Node]) : Unit = { + def getSection(currentNodes : scala.collection.mutable.Buffer[Node]) : Unit = { //look for the next tag - var subnodes = current_nodes.head.childNodes().asScala - subnodes = subnodes.dropWhile(current_nodes => !current_nodes.nodeName().matches("h\\d") && !current_nodes.nodeName().matches("section")) - var process_end=false - while (subnodes.nonEmpty && !process_end) { + var subnodes = currentNodes.head.childNodes().asScala + subnodes = subnodes.dropWhile(currentNodes => !currentNodes.nodeName().matches("h\\d") && !currentNodes.nodeName().matches("section")) + var processEnd=false + while (subnodes.nonEmpty && !processEnd) { if (subnodes.head.nodeName().matches("h\\d")) { val title = subnodes.headOption - process_end=super.isWikiPageEnd(subnodes.head) + processEnd=super.isWikiPageEnd(subnodes.head) title match { - case Some(t) if super.isWikiNextTitle(t) && !process_end=> + case Some(t) if super.isWikiNextTitle(t) && !processEnd=> //calculate the section number by looking at the

to

tags val depth = Integer.parseInt(t.asInstanceOf[org.jsoup.nodes.Element].tagName().substring(1)) - 1 @@ -91,8 +91,8 @@ class WikipediaNifExtractorRest( ) tocMap.append(section) - case None => process_end=true - case _ => process_end=true + case None => processEnd=true + case _ => processEnd=true } } else if (subnodes.head.nodeName().matches("section")) { getSection(subnodes) @@ -105,8 +105,8 @@ class WikipediaNifExtractorRest( } - val abstract_sect=doc.select("body").select("section").first.childNodes.asScala //get first section - val ab = abstract_sect.filter(node => node.nodeName() == "p") //move cursor to abstract + val abstractSect=doc.select("body").select("section").first.childNodes.asScala //get first section + val ab = abstractSect.filter(node => node.nodeName() == "p") //move cursor to abstract nodes = nodes.drop(1) diff --git a/core/src/main/scala/org/dbpedia/extraction/util/MediaWikiConnectorRest.scala b/core/src/main/scala/org/dbpedia/extraction/util/MediaWikiConnectorRest.scala index c8cfddb00a..c7dfa164dc 100755 --- a/core/src/main/scala/org/dbpedia/extraction/util/MediaWikiConnectorRest.scala +++ b/core/src/main/scala/org/dbpedia/extraction/util/MediaWikiConnectorRest.scala @@ -32,9 +32,9 @@ class MediaWikiConnectorRest(connectionConfig: MediaWikiConnection, xmlPath: Seq */ override def retrievePage(pageTitle: WikiTitle, apiParameterString: String, isRetry: Boolean = false): Option[String] = { val retryFactor = if (isRetry) 2 else 1 - var Success_parsing = false - var parsed_answer: Try[String] = null - var waiting_time = sleepFactorMs + var SuccessParsing = false + var parsedAnswer: Try[String] = null + var waitingTime = sleepFactorMs //val apiUrl: URL = new URL(connectionConfig.apiUrl.replace("{{LANG}}",pageTitle.language.wikiCode)) @@ -54,7 +54,7 @@ class MediaWikiConnectorRest(connectionConfig: MediaWikiConnection, xmlPath: Seq - println(s"mediawikiurl: $apiUrl") + //println(s"mediawikiurl: $apiUrl") for (counter <- 1 to maxRetries) { @@ -73,8 +73,8 @@ class MediaWikiConnectorRest(connectionConfig: MediaWikiConnection, xmlPath: Seq conn.setRequestProperty("User-Agent", userAgent) val inputStream = conn.getInputStream - val answer_header = conn.getHeaderFields() - val answer_clean = answer_header.asScala.filterKeys(_ != null) + val answerHeader = conn.getHeaderFields() + val answerClean = answerHeader.asScala.filterKeys(_ != null) if(conn.getHeaderField(null).contains("HTTP/1.1 200 OK") ){ @@ -89,20 +89,20 @@ class MediaWikiConnectorRest(connectionConfig: MediaWikiConnection, xmlPath: Seq case _ => } // Read answer - parsed_answer = readInAbstract(inputStream) - Success_parsing = parsed_answer match { + parsedAnswer = readInAbstract(inputStream) + SuccessParsing = parsedAnswer match { case Success(str) => true case Failure(_) => false } } - if(!Success_parsing){ + if(!SuccessParsing){ var sleepMs = sleepFactorMs - if (retryAfter && answer_clean.contains("retry-after")) { + if (retryAfter && answerClean.contains("retry-after")) { //println("GIVEN RETRY-AFTER > "+ answer_clean("retry-after").get(0)) - waiting_time = Integer.parseInt(answer_clean("retry-after").get(0)) * 1000 + waitingTime = Integer.parseInt(answerClean("retry-after").get(0)) * 1000 // exponential backoff test - sleepMs = pow(waiting_time, counter).toInt + sleepMs = pow(waitingTime, counter).toInt //println("WITH EXPONENTIAL BACK OFF" + counter) //println("Sleeping time double >>>>>>>>>>>" + pow(waiting_time, counter)) //println("Sleeping time int >>>>>>>>>>>" + sleepMs) @@ -116,7 +116,7 @@ class MediaWikiConnectorRest(connectionConfig: MediaWikiConnection, xmlPath: Seq //println(s"mediawikiurl: $apiUrl?$parameters") - return parsed_answer match { + return parsedAnswer match { case Success(str) => Option(str) case Failure(e) => throw e } diff --git a/core/src/main/scala/org/dbpedia/extraction/util/MediawikiConnectorConfigured.scala b/core/src/main/scala/org/dbpedia/extraction/util/MediawikiConnectorConfigured.scala index 4e9ed04907..d6187ca17b 100755 --- a/core/src/main/scala/org/dbpedia/extraction/util/MediawikiConnectorConfigured.scala +++ b/core/src/main/scala/org/dbpedia/extraction/util/MediawikiConnectorConfigured.scala @@ -35,11 +35,11 @@ class MediawikiConnectorConfigured(connectionConfig: MediaWikiConnection, xmlPat override def retrievePage(pageTitle : WikiTitle, apiParameterString: String, isRetry: Boolean = false) : Option[String] = { val retryFactor = if(isRetry) 2 else 1 - var waiting_time = sleepFactorMs - var Success_parsing = false + var waitingTime = sleepFactorMs + var SuccessParsing = false var currentMaxLag= maxLag var gzipok = true - var parsed_answer: Try[String] = null + var parsedAnswer: Try[String] = null //replaces {{lang}} with the language val apiUrl: URL = new URL(connectionConfig.apiUrl.replace("{{LANG}}",pageTitle.language.wikiCode)) @@ -78,13 +78,13 @@ class MediawikiConnectorConfigured(connectionConfig: MediaWikiConnection, xmlPat conn.setRequestProperty("User-Agent",userAgent) if ( gzipCall ) conn.setRequestProperty("Accept-Encoding","gzip") - println(s"mediawikiurl: $apiUrl?$parameters") + //println(s"mediawikiurl: $apiUrl?$parameters") val writer = new OutputStreamWriter(conn.getOutputStream) writer.write(parameters) writer.flush() writer.close() - var answer_header = conn.getHeaderFields(); - var answer_clean = answer_header.asScala.filterKeys(_ != null); + var answerHeader = conn.getHeaderFields(); + var answerClean = answerHeader.asScala.filterKeys(_ != null); // UNCOMMENT FOR LOG /* var mapper = new ObjectMapper() @@ -125,24 +125,24 @@ class MediawikiConnectorConfigured(connectionConfig: MediaWikiConnection, xmlPat } // Read answer - parsed_answer = readInAbstract(inputStream) - Success_parsing = parsed_answer match { + parsedAnswer = readInAbstract(inputStream) + SuccessParsing = parsedAnswer match { case Success(str) => true case Failure(e) => false } } - if(!Success_parsing){ - println("ERROR DURING PARSING" ) + if(!SuccessParsing){ + //println("ERROR DURING PARSING" ) var sleepMs = sleepFactorMs - if (retryAfter && answer_clean.contains("retry-after") ){ - println("GIVEN RETRY-AFTER > "+ answer_clean("retry-after").get(0)) - waiting_time = Integer.parseInt(answer_clean("retry-after").get(0)) * 1000 + if (retryAfter && answerClean.contains("retry-after") ){ + //println("GIVEN RETRY-AFTER > "+ answer_clean("retry-after").get(0)) + waitingTime = Integer.parseInt(answerClean("retry-after").get(0)) * 1000 // exponential backoff test - sleepMs = pow(waiting_time, counter).toInt + sleepMs = pow(waitingTime, counter).toInt //println("WITH EXPONENTIAL BACK OFF" + counter) //println("Sleeping time double >>>>>>>>>>>" + pow(waiting_time, counter)) //println("Sleeping time int >>>>>>>>>>>" + sleepMs) @@ -162,7 +162,7 @@ class MediawikiConnectorConfigured(connectionConfig: MediaWikiConnection, xmlPat //println(s"mediawikiurl: $apiUrl?$parameters") - return parsed_answer match { + return parsedAnswer match { case Success(str) => Option(str) case Failure(e) => throw e } From da5f1352a6dd22d12c438953594900e97360df99 Mon Sep 17 00:00:00 2001 From: celian_ringwald Date: Fri, 4 Nov 2022 17:28:29 +0100 Subject: [PATCH 26/54] first dev on historic --- history/download.properties | 15 ++++ history/pom.xml | 62 ++++++++++++++ history/sample-xml-dump/samplehistoric | 0 .../main/scala/META-INF/maven/archetype.xml | 9 ++ .../mappings/HistoryPageExtractor.scala | 84 +++++++++++++++++++ 5 files changed, 170 insertions(+) create mode 100644 history/download.properties create mode 100644 history/pom.xml create mode 100644 history/sample-xml-dump/samplehistoric create mode 100644 history/src/main/scala/META-INF/maven/archetype.xml create mode 100644 history/src/main/scala/org/dbpedia/extraction/mappings/HistoryPageExtractor.scala diff --git a/history/download.properties b/history/download.properties new file mode 100644 index 0000000000..35561d7c04 --- /dev/null +++ b/history/download.properties @@ -0,0 +1,15 @@ +# NOTE: format is not java.util.Properties, but org.dbpedia.extraction.dump.download.DownloadConfig +# Default download server. It lists mirrors which may be faster. +base-url=http://dumps.wikimedia.org/ +#https://fr.wikipedia.org/w/index.php?title=Sp%C3%A9cial:Exporter&action=submit&history=1&pages=H%C3%B4tes_de_passage%0ARaymond_Beaudet +source=pages-meta-history.*.bz2 +# language to download +languages=fr +# Unzip files while downloading? Not necessary, extraction will unzip on the fly. Let's save space. +unzip=false +# Sometimes connecting to the server fails, so we try five times with pauses of 10 seconds. +retry-max=5 +retry-millis=10000 + +#for specific dump dates (e.g. 20170101) if empty: the most recent dump-date is used +dump-date=20221001 \ No newline at end of file diff --git a/history/pom.xml b/history/pom.xml new file mode 100644 index 0000000000..6b3167688c --- /dev/null +++ b/history/pom.xml @@ -0,0 +1,62 @@ + + + org.dbpedia + extraction + 4.2-SNAPSHOT + + + 4.0.0 + history + History Dump + jar + + + + + + + net.alchim31.maven + scala-maven-plugin + + + + attach-docs-sources + + add-source + doc-jar + + + + + + + + run + org.dbpedia.extraction.dump.extract.Extraction + + + download + org.dbpedia.extraction.dump.download.Download + + + + + + + + + + + + org.dbpedia.extraction + core + + + org.dbpedia.extraction + dump + ${project.version} + + + + diff --git a/history/sample-xml-dump/samplehistoric b/history/sample-xml-dump/samplehistoric new file mode 100644 index 0000000000..e69de29bb2 diff --git a/history/src/main/scala/META-INF/maven/archetype.xml b/history/src/main/scala/META-INF/maven/archetype.xml new file mode 100644 index 0000000000..4f7b0d928a --- /dev/null +++ b/history/src/main/scala/META-INF/maven/archetype.xml @@ -0,0 +1,9 @@ + + history + + src/main/java/App.java + + + src/test/java/AppTest.java + + diff --git a/history/src/main/scala/org/dbpedia/extraction/mappings/HistoryPageExtractor.scala b/history/src/main/scala/org/dbpedia/extraction/mappings/HistoryPageExtractor.scala new file mode 100644 index 0000000000..33740c2326 --- /dev/null +++ b/history/src/main/scala/org/dbpedia/extraction/mappings/HistoryPageExtractor.scala @@ -0,0 +1,84 @@ +package org.dbpedia.extraction.mappings + +import java.net.URL + +import org.dbpedia.extraction.config.provenance.{DBpediaDatasets, Dataset} +import org.dbpedia.extraction.mappings.wikitemplate._ +import org.dbpedia.extraction.transform.Quad +import org.dbpedia.extraction.util.Language +import org.dbpedia.extraction.wikiparser._ +import org.openrdf.model.impl.ValueFactoryImpl +import org.openrdf.model.{Literal, Statement, URI} + +import scala.collection.mutable.{HashMap, ListBuffer, Stack} +import scala.util.control.Breaks._ +import scala.util.matching.Regex +import scala.xml.{NodeSeq, XML, Node => XMLNode} + +//some of my utilities +import org.dbpedia.extraction.mappings.Matcher._ +import org.dbpedia.extraction.mappings.WiktionaryPageExtractor._ +import org.dbpedia.extraction.mappings.wikitemplate.MyNodeList._ +import org.dbpedia.extraction.mappings.wikitemplate.MyStack._ +import org.dbpedia.extraction.mappings.wikitemplate.TimeMeasurement._ +import org.dbpedia.extraction.mappings.wikitemplate.VarBinder._ + +import scala.language.reflectiveCalls + +/** + * parses (wiktionary) wiki pages + * is meant to be configurable for multiple languages + * + * is even meant to be usable for non-wiktionary wikis -> arbitrary wikis, but where all pages follow a common schema + * but in contrast to infobox-focused extraction, we *aim* to be more flexible: + * dbpedia core is hardcoded extraction. here we try to use a meta-language describing the information to be extracted + * this is done via xml containing wikisyntax snippets (called templates) containing placeholders (called variables), which are then bound + * + * we also extended this approach to match the wiktionary schema + * a page can contain information about multiple entities (sequential blocks) + * + * @author Jonas Brekle + * @author Sebastian Hellmann + */ + +class HistoryPageExtractor( + context : { + def redirects : Redirects + def language : Language + } +) + extends PageNodeExtractor +{ + + # dc: + # prov: + # swp: + val sameAsProperty: OntologyProperty = context.ontology.properties("owl:sameAs") + + override val datasets = Set(DBpediaDatasets.ExternalLinks) # ToADD + + override def extract(node : PageNode, subjectUri : String) : Seq[Quad] = + { + if(node.title.namespace != Namespace.Main && !ExtractorUtils.titleContainsCommonsMetadata(node.title)) + return Seq.empty + + var quads = new ArrayBuffer[Quad]() + for(link <- collectExternalLinks(node); + uri <- UriUtils.cleanLink(link.destination)) + { + quads += new Quad(context.language, DBpediaDatasets.ExternalLinks, subjectUri, wikiPageExternalLinkProperty, uri, link.sourceIri, null) + } + + quads + } + + private def collectExternalLinks(node : Node) : List[ExternalLinkNode] = + { + node match + { + case linkNode : ExternalLinkNode => List(linkNode) + case _ => node.children.flatMap(collectExternalLinks) + } + } +} + From eb683856ef9dec19b56f804422b36a0ca53d30c9 Mon Sep 17 00:00:00 2001 From: celian_ringwald Date: Mon, 21 Nov 2022 22:16:40 +0100 Subject: [PATCH 27/54] add last dev --- history/.bsp/sbt.json | 1 + history/extraction.properties | 27 + history/log_test.txt | 9199 +++++ history/pom.xml | 30 +- history/project/build.properties | 1 + .../frwiki-20220101-download-complete} | 0 .../frwiki-20220101-extraction-complete | 0 .../20220101/frwiki-20220101-historic.ttl.bz2 | Bin 0 -> 83 bytes .../frwiki-20220101-pages-articles.xml | 6831 ++++ .../frwiki-20220101-template-redirects.obj | Bin 0 -> 61 bytes .../sources/WikipediaDumpParserHistory.java | 564 + .../main/scala/META-INF/maven/archetype.xml | 9 - .../dump/extract/ConfigLoader2.scala | 416 + .../extraction/dump/extract/Extraction2.scala | 47 + .../mappings/HistoryPageExtractor.scala | 91 +- .../extraction/mappings/RevisionNode.scala | 38 + .../mappings/RevisionNodeExtractor.scala | 3 + .../WikiPageWithRevisionsExtractor.scala | 10 + .../dbpedia/extraction/sources/Source2.scala | 25 + .../extraction/sources/XMLSource2.scala | 203 + .../extraction/wikiparser/RevisionNode.scala | 72 + .../wikiparser/WikiPageWithRevisions.scala | 64 + .../extraction.config.properties | 27 + .../dump/extract/ExtractionTest.scala | 53 + ontology.owl | 9069 ----- ontology.xml | 28668 ---------------- 26 files changed, 17642 insertions(+), 37806 deletions(-) create mode 100644 history/.bsp/sbt.json create mode 100644 history/extraction.properties create mode 100644 history/log_test.txt create mode 100644 history/project/build.properties rename history/sample-xml-dump/{samplehistoric => frwiki/20220101/frwiki-20220101-download-complete} (100%) create mode 100644 history/sample-xml-dump/frwiki/20220101/frwiki-20220101-extraction-complete create mode 100644 history/sample-xml-dump/frwiki/20220101/frwiki-20220101-historic.ttl.bz2 create mode 100644 history/sample-xml-dump/frwiki/20220101/frwiki-20220101-pages-articles.xml create mode 100644 history/sample-xml-dump/frwiki/20220101/frwiki-20220101-template-redirects.obj create mode 100644 history/src/main/java/org/dbpedia/extraction/sources/WikipediaDumpParserHistory.java delete mode 100644 history/src/main/scala/META-INF/maven/archetype.xml create mode 100644 history/src/main/scala/org/dbpedia/extraction/dump/extract/ConfigLoader2.scala create mode 100644 history/src/main/scala/org/dbpedia/extraction/dump/extract/Extraction2.scala create mode 100644 history/src/main/scala/org/dbpedia/extraction/mappings/RevisionNode.scala create mode 100644 history/src/main/scala/org/dbpedia/extraction/mappings/RevisionNodeExtractor.scala create mode 100644 history/src/main/scala/org/dbpedia/extraction/mappings/WikiPageWithRevisionsExtractor.scala create mode 100644 history/src/main/scala/org/dbpedia/extraction/sources/Source2.scala create mode 100644 history/src/main/scala/org/dbpedia/extraction/sources/XMLSource2.scala create mode 100644 history/src/main/scala/org/dbpedia/extraction/wikiparser/RevisionNode.scala create mode 100644 history/src/main/scala/org/dbpedia/extraction/wikiparser/WikiPageWithRevisions.scala create mode 100644 history/src/test/resources/extraction-configs/extraction.config.properties create mode 100644 history/src/test/scala/org/dbpedia/extraction/dump/extract/ExtractionTest.scala delete mode 100644 ontology.owl delete mode 100644 ontology.xml diff --git a/history/.bsp/sbt.json b/history/.bsp/sbt.json new file mode 100644 index 0000000000..811ea1f803 --- /dev/null +++ b/history/.bsp/sbt.json @@ -0,0 +1 @@ +{"name":"sbt","version":"1.6.2","bspVersion":"2.0.0-M5","languages":["scala"],"argv":["/usr/lib/jvm/java-11-openjdk-11.0.15.0.10-1.fc35.x86_64/bin/java","-Xms100m","-Xmx100m","-classpath","/root/.local/share/JetBrains/IdeaIC2022.2/Scala/launcher/sbt-launch.jar","-Dsbt.script=/usr/bin/sbt","xsbt.boot.Boot","-bsp"]} \ No newline at end of file diff --git a/history/extraction.properties b/history/extraction.properties new file mode 100644 index 0000000000..341c8d2478 --- /dev/null +++ b/history/extraction.properties @@ -0,0 +1,27 @@ +# download and extraction target dir +#base-dir= moved to $extraction-framework/core/src/main/resources/universal.properties +base-dir=/home/cringwal/Desktop/GSOC/extraction-framework/history/sample-xml-dump + +# Source file. If source file name ends with .gz or .bz2, it is unzipped on the fly. +# Must exist in the directory xxwiki/yyyymmdd and have the prefix xxwiki-yyyymmdd- +# where xx is the wiki code and yyyymmdd is the dump date. + +# default: +#source=# moved to $extraction-framework/core/src/main/resources/universal.properties + +source=pages-articles.xml +# use only directories that contain a 'download-complete' file? Default is false. +require-download-complete=true + +# List of languages or article count ranges, e.g. 'en,de,fr' or '10000-20000' or '10000-', or '@mappings' +languages=fr + +# extractor class names starting with "." are prefixed by "org.dbpedia.extraction.mappings" + +extractors=.HistoryPageExtractor + + +# If we need to Exclude Non-Free Images in this Extraction, set this to true +copyrightCheck=false + + diff --git a/history/log_test.txt b/history/log_test.txt new file mode 100644 index 0000000000..22a25e0756 --- /dev/null +++ b/history/log_test.txt @@ -0,0 +1,9199 @@ +[INFO] Scanning for projects... +[INFO] Inspecting build with total of 1 modules... +[INFO] Installing Nexus Staging features: +[INFO] ... total of 1 executions of maven-deploy-plugin replaced with nexus-staging-maven-plugin +[INFO] +[INFO] ------------------------< org.dbpedia:history >------------------------- +[INFO] Building History Dump 4.2-SNAPSHOT +[INFO] --------------------------------[ jar ]--------------------------------- +[INFO] +[INFO] --- maven-enforcer-plugin:3.0.0-M3:enforce (enforce-versions) @ history --- +[INFO] +[INFO] --- scala-maven-plugin:3.2.0:add-source (attach-docs-sources) @ history --- +[INFO] Add Source directory: /home/cringwal/Desktop/GSOC/extraction-framework/history/src/main/scala +[INFO] Add Test Source directory: /home/cringwal/Desktop/GSOC/extraction-framework/history/src/test/scala +[INFO] +[INFO] --- scala-maven-plugin:3.2.0:compile (doc) @ history --- +[INFO] Nothing to compile - all classes are up to date +[INFO] +[INFO] --- maven-resources-plugin:2.6:resources (default-resources) @ history --- +[INFO] Using 'UTF-8' encoding to copy filtered resources. +[INFO] skip non existing resourceDirectory /home/cringwal/Desktop/GSOC/extraction-framework/history/src/main/resources +[INFO] +[INFO] --- scala-maven-plugin:3.2.0:compile (process-resources) @ history --- +[INFO] Nothing to compile - all classes are up to date +[INFO] +[INFO] --- maven-compiler-plugin:3.1:compile (default-compile) @ history --- +[INFO] Nothing to compile - all classes are up to date +[INFO] +[INFO] --- scala-maven-plugin:3.2.0:compile (compile) @ history --- +[INFO] Nothing to compile - all classes are up to date +[INFO] +[INFO] --- maven-resources-plugin:2.6:testResources (default-testResources) @ history --- +[INFO] Using 'UTF-8' encoding to copy filtered resources. +[INFO] Copying 1 resource +[INFO] +[INFO] --- maven-compiler-plugin:3.1:testCompile (default-testCompile) @ history --- +[INFO] Nothing to compile - all classes are up to date +[INFO] +[INFO] --- scala-maven-plugin:3.2.0:testCompile (test-compile) @ history --- +[INFO] Nothing to compile - all classes are up to date +[INFO] +[INFO] --- maven-surefire-plugin:2.7:test (default-test) @ history --- +[INFO] Tests are skipped. +[INFO] +[INFO] --- scalatest-maven-plugin:1.0:test (test) @ history --- +Discovery starting. +Discovery completed in 55 milliseconds. +Run starting. Expected test count is: 1 +ExtractionTest: +BEFORE +Nov 14, 2022 9:05:18 AM org.dbpedia.extraction.util.Language$$anonfun$4 apply +WARNING: Language not found: be-tarask. To extract this language, please edit the addonLanguage.json in core. +Nov 14, 2022 9:05:18 AM org.dbpedia.extraction.util.Language$$anonfun$4 apply +WARNING: Language not found: be-x-old. To extract this language, please edit the addonLanguage.json in core. +Nov 14, 2022 9:05:18 AM org.dbpedia.extraction.util.Language$$anonfun$4 apply +WARNING: Language not found: cbk-zam. To extract this language, please edit the addonLanguage.json in core. +Nov 14, 2022 9:05:18 AM org.dbpedia.extraction.util.Language$$anonfun$4 apply +WARNING: Language not found: fiu-vro. To extract this language, please edit the addonLanguage.json in core. +Nov 14, 2022 9:05:18 AM org.dbpedia.extraction.util.Language$$anonfun$4 apply +WARNING: Language not found: map-bms. To extract this language, please edit the addonLanguage.json in core. +Nov 14, 2022 9:05:18 AM org.dbpedia.extraction.util.Language$$anonfun$4 apply +WARNING: Language not found: nds-nl. To extract this language, please edit the addonLanguage.json in core. +Nov 14, 2022 9:05:18 AM org.dbpedia.extraction.util.Language$$anonfun$4 apply +WARNING: Language not found: roa-rup. To extract this language, please edit the addonLanguage.json in core. +Nov 14, 2022 9:05:18 AM org.dbpedia.extraction.util.Language$$anonfun$4 apply +WARNING: Language not found: roa-tara. To extract this language, please edit the addonLanguage.json in core. +Nov 14, 2022 9:05:18 AM org.dbpedia.extraction.util.Language$$anonfun$4 apply +WARNING: Language not found: zh-classical. To extract this language, please edit the addonLanguage.json in core. +Nov 14, 2022 9:05:18 AM org.dbpedia.extraction.dump.extract.ConfigLoader2 files +getArticlesSource +INFO: Source is pages-articles.xml - 1 file(s) matched +Nov 14, 2022 9:05:18 AM org.dbpedia.extraction.mappings.Redirects$ loadFromCache +INFO: Loading redirects from cache file /home/cringwal/Desktop/GSOC/extraction-framework/history/sample-xml-dump/frwiki/20220101/frwiki-20220101-template-redirects.obj +Nov 14, 2022 9:05:18 AM org.dbpedia.extraction.mappings.Redirects$ loadFromCache +INFO: 0 redirects loaded from cache file /home/cringwal/Desktop/GSOC/extraction-framework/history/sample-xml-dump/frwiki/20220101/frwiki-20220101-template-redirects.obj +Nov 14, 2022 9:05:18 AM org.dbpedia.extraction.mappings.Disambiguations$ loadFromCache +INFO: Loading disambiguations from cache file /home/cringwal/Desktop/GSOC/extraction-framework/history/sample-xml-dump/frwiki/20220101/frwiki-20220101-disambiguations-ids.obj +Nov 14, 2022 9:05:18 AM org.dbpedia.extraction.mappings.Disambiguations$ load +INFO: Will extract disambiguations from source for fr wiki, could not load cache file '/home/cringwal/Desktop/GSOC/extraction-framework/history/sample-xml-dump/frwiki/20220101/frwiki-20220101-disambiguations-ids.obj': java.io.FileNotFoundException: /home/cringwal/Desktop/GSOC/extraction-framework/history/sample-xml-dump/frwiki/20220101/frwiki-20220101-disambiguations-ids.obj (No such file or directory) +Nov 14, 2022 9:05:18 AM org.dbpedia.extraction.mappings.Disambiguations$ loadFromFile +INFO: Loading disambiguations from source (fr) +Nov 14, 2022 9:05:18 AM org.dbpedia.extraction.dump.extract.ConfigLoader2$$anonfun$2$$anon$1 liftedTree1$1 +INFO: Could not load disambiguations - error: /home/cringwal/Desktop/GSOC/extraction-framework/history/sample-xml-dump/frwiki/20220101/frwiki-20220101-page_props.sql.gz (No such file or directory) +Nov 14, 2022 9:05:18 AM org.dbpedia.extraction.ontology.io.OntologyReader read +INFO: Loading ontology pages +Nov 14, 2022 9:05:19 AM org.dbpedia.extraction.ontology.io.OntologyReader read +INFO: Loading ontology +Nov 14, 2022 9:05:19 AM org.dbpedia.extraction.ontology.io.OntologyReader$$anonfun$readPropertyTemplatesByLanguage$2$$anonfun$apply$11 apply +WARNING: title=ایک تدفین کی جگہ;ns=200/OntologyClass/OntologyClass;language:wiki=mappings,locale=en - Ignoring invalid node ' + +} + +' in value of property 'labels'. +Nov 14, 2022 9:05:19 AM org.dbpedia.extraction.ontology.io.OntologyReader$$anonfun$readPropertyTemplatesByLanguage$2$$anonfun$apply$11 apply +WARNING: title=تکرار کرنا;ns=200/OntologyClass/OntologyClass;language:wiki=mappings,locale=en - Ignoring invalid node ' + +{ +' in value of property 'labels'. +Nov 14, 2022 9:05:20 AM org.dbpedia.extraction.ontology.io.OntologyReader$$anonfun$readPropertyTemplatesByLanguage$2$$anonfun$apply$11 apply +WARNING: title=کھیل ہاکی ٹیموں کی انجمن;ns=200/OntologyClass/OntologyClass;language:wiki=mappings,locale=en - Ignoring invalid node '} +' in value of property 'labels'. +Nov 14, 2022 9:05:20 AM org.dbpedia.extraction.ontology.io.OntologyReader$$anonfun$readPropertyTemplatesByLanguage$2$$anonfun$apply$11 apply +WARNING: title=ActiveCases;ns=202/OntologyProperty/OntologyProperty;language:wiki=mappings,locale=en - Ignoring invalid node '{{Comment|ur|ایک قرارداد میٹنگ یا کنونشن کے ذریعہ اختیار کردہ ایک رسمی بیان کی وضاحت کرتی ہے}}' in value of property 'labels'. +Nov 14, 2022 9:05:20 AM org.dbpedia.extraction.ontology.io.OntologyReader$$anonfun$readPropertyTemplatesByLanguage$2$$anonfun$apply$11 apply +WARNING: title=Army;ns=202/OntologyProperty/OntologyProperty;language:wiki=mappings,locale=en - Ignoring invalid node '{{Label|ur|فوج قوم کی زمینی قوت ہے۔}}' in value of property 'comments'. +Nov 14, 2022 9:05:20 AM org.dbpedia.extraction.ontology.io.OntologyReader$$anonfun$readPropertyTemplatesByLanguage$2$$anonfun$apply$11 apply +WARNING: title=DavisCup;ns=202/OntologyProperty/OntologyProperty;language:wiki=mappings,locale=en - Ignoring invalid node '{{{label|ur}}}' in value of property 'labels'. +Nov 14, 2022 9:05:20 AM org.dbpedia.extraction.ontology.io.OntologyReader$$anonfun$readPropertyTemplatesByLanguage$2$$anonfun$apply$11 apply +WARNING: title=DavisCup;ns=202/OntologyProperty/OntologyProperty;language:wiki=mappings,locale=en - Ignoring invalid node ' کپ سالانہ بین الاقوامی ٹیم ٹینس مقابلہ کے لئے نوازا' in value of property 'labels'. +Nov 14, 2022 9:05:20 AM org.dbpedia.extraction.ontology.io.OntologyReader org$dbpedia$extraction$ontology$io$OntologyReader$$loadOntologyProperty +WARNING: title=DavisCup;ns=202/OntologyProperty/OntologyProperty;language:wiki=mappings,locale=en - Cannot load datatype property davisCup because it does not define its range +Nov 14, 2022 9:05:20 AM org.dbpedia.extraction.ontology.io.OntologyReader$$anonfun$readPropertyTemplatesByLanguage$2$$anonfun$apply$11 apply +WARNING: title=فعال کیسز;ns=202/OntologyProperty/OntologyProperty;language:wiki=mappings,locale=en - Ignoring invalid node '{{Comment|ur|ایک قرارداد میٹنگ یا کنونشن کے ذریعہ اختیار کردہ ایک رسمی بیان کی وضاحت کرتی ہے}}' in value of property 'labels'. +Nov 14, 2022 9:05:20 AM org.dbpedia.extraction.ontology.io.OntologyReader$$anonfun$readPropertyTemplatesByLanguage$2$$anonfun$apply$11 apply +WARNING: title=فوج;ns=202/OntologyProperty/OntologyProperty;language:wiki=mappings,locale=en - Ignoring invalid node '{{Label|ur|فوج قوم کی زمینی قوت ہے۔}}' in value of property 'comments'. +Nov 14, 2022 9:05:20 AM org.dbpedia.extraction.ontology.io.OntologyReader$$anonfun$readPropertyTemplatesByLanguage$2$$anonfun$apply$11 apply +WARNING: title=ڈیجیٹل لائبریری کوڈ;ns=202/OntologyProperty/OntologyProperty;language:wiki=mappings,locale=en - Ignoring invalid node '{{{label|ur}}}' in value of property 'labels'. +Nov 14, 2022 9:05:20 AM org.dbpedia.extraction.ontology.io.OntologyReader$$anonfun$readPropertyTemplatesByLanguage$2$$anonfun$apply$11 apply +WARNING: title=ڈیجیٹل لائبریری کوڈ;ns=202/OntologyProperty/OntologyProperty;language:wiki=mappings,locale=en - Ignoring invalid node ' ڈیجیٹل لائبریری کوڈ NL' in value of property 'labels'. +Nov 14, 2022 9:05:20 AM org.dbpedia.extraction.ontology.io.OntologyReader org$dbpedia$extraction$ontology$io$OntologyReader$$loadOntologyProperty +WARNING: title=ڈیجیٹل لائبریری کوڈ;ns=202/OntologyProperty/OntologyProperty;language:wiki=mappings,locale=en - Cannot load datatype property ڈیجیٹل_لائبریری_کوڈ because it does not define its range +Nov 14, 2022 9:05:20 AM org.dbpedia.extraction.ontology.io.OntologyReader$$anonfun$readPropertyTemplatesByLanguage$2$$anonfun$apply$11 apply +WARNING: title=کپ سالانہ بین الاقوامی ٹیم ٹینس مقابلہ کے لئے نوازا;ns=202/OntologyProperty/OntologyProperty;language:wiki=mappings,locale=en - Ignoring invalid node '{{{label|ur}}}' in value of property 'labels'. +Nov 14, 2022 9:05:20 AM org.dbpedia.extraction.ontology.io.OntologyReader$$anonfun$readPropertyTemplatesByLanguage$2$$anonfun$apply$11 apply +WARNING: title=کپ سالانہ بین الاقوامی ٹیم ٹینس مقابلہ کے لئے نوازا;ns=202/OntologyProperty/OntologyProperty;language:wiki=mappings,locale=en - Ignoring invalid node ' کپ سالانہ بین الاقوامی ٹیم ٹینس مقابلہ کے لئے نوازا' in value of property 'labels'. +Nov 14, 2022 9:05:20 AM org.dbpedia.extraction.ontology.io.OntologyReader org$dbpedia$extraction$ontology$io$OntologyReader$$loadOntologyProperty +WARNING: title=کپ سالانہ بین الاقوامی ٹیم ٹینس مقابلہ کے لئے نوازا;ns=202/OntologyProperty/OntologyProperty;language:wiki=mappings,locale=en - Cannot load datatype property کپ_سالانہ_بین_الاقوامی_ٹیم_ٹینس_مقابلہ_کے_لئے_نوازا because it does not define its range +Nov 14, 2022 9:05:20 AM org.dbpedia.extraction.ontology.io.OntologyReader$PropertyBuilder$$anonfun$build$9 apply +WARNING: Cannot use equivalent property 'dbo:activity' +Nov 14, 2022 9:05:20 AM org.dbpedia.extraction.ontology.io.OntologyReader$PropertyBuilder build +WARNING: domain 'dbo:Disease' of property 'dbo:virus' not found +Nov 14, 2022 9:05:20 AM org.dbpedia.extraction.ontology.io.OntologyReader read +INFO: Ontology loaded +Nov 14, 2022 9:05:20 AM org.dbpedia.extraction.dump.extract.ConfigLoader2 files +INFO: Source is pages-articles.xml - 1 file(s) matched +fromReaders - MultipleXMLReaderSource2 fromReader - XMLReaderSource2 getArticlesSource +fromReaders - MultipleXMLReaderSource2 fromReader - XMLReaderSource2 Info; fr; Main Extraction at 00:00.000s for historic, historic; Extraction started for language: French (fr) on 1 datasets. +XMLReaderSource2 - readPagesXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX +readPages +XXXXXXXXXXXX FIRST PAGE +XX BEGIN readPage +PAGE >3553440 +>> new revision element +>> Begin readRevision +>revision_id : 36815850 +>timestamp : 2009-01-06T16:56:57Z +>comment : Nouvelle page : ''Hôtes de passage'' appartient est une partie de ''La Corde et les souris'' consignée dans ''Le Miroir des limbes''.Malraux y mène des entretiens avec entre autre Senghor et un p... +214 +2022-11-14 09:05:20,658 -- DEBUG -- Jena -- Jena initialization +2022-11-14 09:05:20,719 -- DEBUG -- org.apache.jena.util.FileManager -- Add location: LocatorFile +2022-11-14 09:05:20,719 -- DEBUG -- org.apache.jena.util.FileManager -- Add location: ClassLoaderLocator +2022-11-14 09:05:20,720 -- DEBUG -- org.apache.jena.util.LocationMapper -- Failed to find configuration: file:location-mapping.rdf;file:location-mapping.n3;file:location-mapping.ttl;file:etc/location-mapping.rdf;file:etc/location-mapping.n3;file:etc/location-mapping.ttl +2022-11-14 09:05:20,720 -- DEBUG -- org.apache.jena.util.FileManager -- Add location: LocatorFile +2022-11-14 09:05:20,720 -- DEBUG -- org.apache.jena.util.FileManager -- Add location: LocatorURL +2022-11-14 09:05:20,721 -- DEBUG -- org.apache.jena.util.FileManager -- Add location: ClassLoaderLocator +2022-11-14 09:05:20,723 -- DEBUG -- org.apache.jena.riot.system.stream.JenaIOEnvironment -- Failed to find configuration: location-mapping.ttl;location-mapping.rdf;location-mapping.n3;etc/location-mapping.rdf;etc/location-mapping.n3;etc/location-mapping.ttl +2022-11-14 09:05:20,860 -- DEBUG -- org.apache.jena.riot.system.stream.StreamManager -- Not mapped: http://downloads.dbpedia.org/2016-10/core-i18n/fr/2016-10_dataid_fr.ttl +2022-11-14 09:05:20,884 -- DEBUG -- org.apache.jena.riot.web.HttpOp -- [1] GET http://downloads.dbpedia.org/2016-10/core-i18n/fr/2016-10_dataid_fr.ttl +2022-11-14 09:05:20,887 -- DEBUG -- org.apache.http.client.protocol.RequestAddCookies -- CookieSpec selected: best-match +2022-11-14 09:05:20,890 -- DEBUG -- org.apache.http.client.protocol.RequestAuthCache -- Auth cache not set in the context +2022-11-14 09:05:20,891 -- DEBUG -- org.apache.http.impl.conn.PoolingHttpClientConnectionManager -- Connection request: [route: {}->http://downloads.dbpedia.org:80][total kept alive: 0; route allocated: 0 of 5; total allocated: 0 of 10] +2022-11-14 09:05:20,895 -- DEBUG -- org.apache.http.impl.conn.PoolingHttpClientConnectionManager -- Connection leased: [id: 0][route: {}->http://downloads.dbpedia.org:80][total kept alive: 0; route allocated: 1 of 5; total allocated: 1 of 10] +2022-11-14 09:05:20,896 -- DEBUG -- org.apache.http.impl.execchain.MainClientExec -- Opening connection {}->http://downloads.dbpedia.org:80 +2022-11-14 09:05:20,897 -- DEBUG -- org.apache.http.impl.conn.HttpClientConnectionOperator -- Connecting to downloads.dbpedia.org/139.18.16.66:80 +2022-11-14 09:05:20,937 -- DEBUG -- org.apache.http.impl.conn.HttpClientConnectionOperator -- Connection established 192.168.1.105:49022<->139.18.16.66:80 +2022-11-14 09:05:20,937 -- DEBUG -- org.apache.http.impl.execchain.MainClientExec -- Executing request GET /2016-10/core-i18n/fr/2016-10_dataid_fr.ttl HTTP/1.1 +2022-11-14 09:05:20,937 -- DEBUG -- org.apache.http.impl.execchain.MainClientExec -- Target auth state: UNCHALLENGED +2022-11-14 09:05:20,938 -- DEBUG -- org.apache.http.impl.execchain.MainClientExec -- Proxy auth state: UNCHALLENGED +2022-11-14 09:05:20,938 -- DEBUG -- org.apache.http.headers -- http-outgoing-0 >> GET /2016-10/core-i18n/fr/2016-10_dataid_fr.ttl HTTP/1.1 +2022-11-14 09:05:20,938 -- DEBUG -- org.apache.http.headers -- http-outgoing-0 >> Accept: text/turtle,application/n-triples;q=0.9,application/rdf+xml;q=0.7,application/trig,application/n-quads;q=0.9,text/x-nquads;q=0.8,application/x-trig;q=0.7,application/ld+json;q=0.6,*/*;q=0.5 +2022-11-14 09:05:20,938 -- DEBUG -- org.apache.http.headers -- http-outgoing-0 >> User-Agent: Apache-Jena-ARQ/3.7.0 +2022-11-14 09:05:20,938 -- DEBUG -- org.apache.http.headers -- http-outgoing-0 >> Host: downloads.dbpedia.org +2022-11-14 09:05:20,938 -- DEBUG -- org.apache.http.headers -- http-outgoing-0 >> Connection: Keep-Alive +2022-11-14 09:05:20,938 -- DEBUG -- org.apache.http.headers -- http-outgoing-0 >> Accept-Encoding: gzip,deflate +2022-11-14 09:05:20,938 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 >> "GET /2016-10/core-i18n/fr/2016-10_dataid_fr.ttl HTTP/1.1[\r][\n]" +2022-11-14 09:05:20,938 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 >> "Accept: text/turtle,application/n-triples;q=0.9,application/rdf+xml;q=0.7,application/trig,application/n-quads;q=0.9,text/x-nquads;q=0.8,application/x-trig;q=0.7,application/ld+json;q=0.6,*/*;q=0.5[\r][\n]" +2022-11-14 09:05:20,938 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 >> "User-Agent: Apache-Jena-ARQ/3.7.0[\r][\n]" +2022-11-14 09:05:20,938 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 >> "Host: downloads.dbpedia.org[\r][\n]" +2022-11-14 09:05:20,938 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 >> "Connection: Keep-Alive[\r][\n]" +2022-11-14 09:05:20,938 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 >> "Accept-Encoding: gzip,deflate[\r][\n]" +2022-11-14 09:05:20,938 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 >> "[\r][\n]" +2022-11-14 09:05:21,070 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "HTTP/1.1 200 OK[\r][\n]" +2022-11-14 09:05:21,070 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "Server: nginx/1.4.6 (Ubuntu)[\r][\n]" +2022-11-14 09:05:21,070 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "Date: Mon, 14 Nov 2022 08:04:39 GMT[\r][\n]" +2022-11-14 09:05:21,070 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "Content-Type: text/turtle[\r][\n]" +2022-11-14 09:05:21,070 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "Content-Length: 749417[\r][\n]" +2022-11-14 09:05:21,070 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "Last-Modified: Thu, 06 Jul 2017 14:29:23 GMT[\r][\n]" +2022-11-14 09:05:21,070 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "Connection: keep-alive[\r][\n]" +2022-11-14 09:05:21,070 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "ETag: "595e4943-b6f69"[\r][\n]" +2022-11-14 09:05:21,070 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "Access-Control-Allow-Origin: *[\r][\n]" +2022-11-14 09:05:21,070 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "Access-Control-Allow-Credentials: true[\r][\n]" +2022-11-14 09:05:21,070 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "Access-Control-Allow-Methods: GET, POST, OPTIONS[\r][\n]" +2022-11-14 09:05:21,070 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "Access-Control-Allow-Headers: DNT,X-CustomHeader,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type[\r][\n]" +2022-11-14 09:05:21,070 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "Accept-Ranges: bytes[\r][\n]" +2022-11-14 09:05:21,070 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\r][\n]" +2022-11-14 09:05:21,070 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "# This DataID document is part of the dataset metadata released alongside each DBpedia language edition.[\n]" +2022-11-14 09:05:21,070 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "# This is the rocord for the French edition of DBpedia version 2016-10.[\n]" +2022-11-14 09:05:21,070 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "# Please refer to http://dbpedia.org for general information on DBpedia and http://wiki.dbpedia.org/Downloads2016-10 for more information about this release.[\n]" +2022-11-14 09:05:21,070 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:21,070 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "@prefix void: .[\n]" +2022-11-14 09:05:21,070 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "@prefix spdx: .[\n]" +2022-11-14 09:05:21,070 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "@prefix owl: .[\n]" +2022-11-14 09:05:21,070 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "@prefix dmp: .[\n]" +2022-11-14 09:05:21,070 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "@prefix datacite: .[\n]" +2022-11-14 09:05:21,070 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "@prefix xsd: .[\n]" +2022-11-14 09:05:21,070 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "@prefix rdfs: .[\n]" +2022-11-14 09:05:21,070 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "@prefix sd: .[\n]" +2022-11-14 09:05:21,070 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "@prefix dataid-mt: .[\n]" +2022-11-14 09:05:21,070 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "@prefix dataid: .[\n]" +2022-11-14 09:05:21,070 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "@prefix rdf: .[\n]" +2022-11-14 09:05:21,070 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "@prefix dcat: .[\n]" +2022-11-14 09:05:21,070 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "@prefix dataid-ld: .[\n]" +2022-11-14 09:05:21,070 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "@prefix prov: .[\n]" +2022-11-14 09:05:21,070 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "@prefix foaf: .[\n]" +2022-11-14 09:05:21,071 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "@prefix dc: .[\n]" +2022-11-14 09:05:21,071 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:21,071 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:21,071 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:DataId ;[\n]" +2022-11-14 09:05:21,071 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent , , ;[\n]" +2022-11-14 09:05:21,071 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:inCatalog ;[\n]" +2022-11-14 09:05:21,071 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" +2022-11-14 09:05:21,071 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:previousVersion ;[\n]" +2022-11-14 09:05:21,071 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:underAuthorization , , ;[\n]" +2022-11-14 09:05:21,071 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo , ;[\n]" +2022-11-14 09:05:21,071 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" +2022-11-14 09:05:21,071 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" +2022-11-14 09:05:21,071 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" +2022-11-14 09:05:21,071 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" +2022-11-14 09:05:21,071 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "DataID metadata for the French DBpedia"@en ;[\n]" +2022-11-14 09:05:21,071 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " foaf:primaryTopic .[\n]" +2022-11-14 09:05:21,071 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:21,071 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "########### Agents & Authorizations ###########[\n]" +2022-11-14 09:05:21,071 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:21,071 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:21,071 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:Authorization ;[\n]" +2022-11-14 09:05:21,071 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:authorityAgentRole dataid:Contact ;[\n]" +2022-11-14 09:05:21,071 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:authorizedAgent ;[\n]" +2022-11-14 09:05:21,071 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:authorizedFor ;[\n]" +2022-11-14 09:05:21,071 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:isInheritable true .[\n]" +2022-11-14 09:05:21,071 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:21,071 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:21,071 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:Authorization ;[\n]" +2022-11-14 09:05:21,071 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:authorityAgentRole dataid:Creator ;[\n]" +2022-11-14 09:05:21,071 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:authorizedAgent ;[\n]" +2022-11-14 09:05:21,071 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:authorizedFor ;[\n]" +2022-11-14 09:05:21,089 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:isInheritable true .[\n]" +2022-11-14 09:05:21,089 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:21,089 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:21,089 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:Authorization ;[\n]" +2022-11-14 09:05:21,089 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:authorityAgentRole dataid:Publisher ;[\n]" +2022-11-14 09:05:21,089 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:authorizedAgent ;[\n]" +2022-11-14 09:05:21,089 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:authorizedFor ;[\n]" +2022-11-14 09:05:21,089 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:isInheritable true .[\n]" +2022-11-14 09:05:21,089 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:21,089 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:21,089 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:Identifier ;[\n]" +2022-11-14 09:05:21,089 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:literal "L-2180-2016" ;[\n]" +2022-11-14 09:05:21,089 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2016-08-01"^^xsd:date ;[\n]" +2022-11-14 09:05:21,089 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:references ;[\n]" +2022-11-14 09:05:21,089 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " datacite:usesIdentifierScheme datacite:researcherid .[\n]" +2022-11-14 09:05:21,089 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:21,089 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:21,089 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:Authorization ;[\n]" +2022-11-14 09:05:21,089 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:authorityAgentRole dataid:Maintainer ;[\n]" +2022-11-14 09:05:21,089 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:authorizedAgent ;[\n]" +2022-11-14 09:05:21,089 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:authorizedFor ;[\n]" +2022-11-14 09:05:21,089 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:isInheritable true .[\n]" +2022-11-14 09:05:21,089 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:21,089 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:21,089 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:Agent ;[\n]" +2022-11-14 09:05:21,089 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:hasAuthorization ;[\n]" +2022-11-14 09:05:21,089 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " foaf:homepage ;[\n]" +2022-11-14 09:05:21,089 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " foaf:mbox "kontokostas@informatik.uni-leipzig.de" ;[\n]" +2022-11-14 09:05:21,089 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " foaf:name "Dimitris Kontokostas" .[\n]" +2022-11-14 09:05:21,089 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:21,089 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:21,089 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:Authorization ;[\n]" +2022-11-14 09:05:21,089 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:authorityAgentRole dataid:Maintainer ;[\n]" +2022-11-14 09:05:21,089 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:authorizedAgent ;[\n]" +2022-11-14 09:05:21,089 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:authorizedFor ;[\n]" +2022-11-14 09:05:21,090 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:isInheritable true .[\n]" +2022-11-14 09:05:21,090 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:21,090 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:21,090 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:Agent ;[\n]" +2022-11-14 09:05:21,090 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:hasAuthorization ;[\n]" +2022-11-14 09:05:21,090 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " foaf:homepage ;[\n]" +2022-11-14 09:05:21,090 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " foaf:mbox "dbpedia@infai.org" ;[\n]" +2022-11-14 09:05:21,090 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " foaf:name "DBpedia Association" .[\n]" +2022-11-14 09:05:21,090 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:21,090 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:21,090 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:Agent ;[\n]" +2022-11-14 09:05:21,090 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:hasAuthorization , ;[\n]" +2022-11-14 09:05:21,090 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " foaf:mbox "info@wikimedia.org" ;[\n]" +2022-11-14 09:05:21,090 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " foaf:name "Wikimedia Foundation, Inc." .[\n]" +2022-11-14 09:05:21,090 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:21,090 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:21,090 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:Agent ;[\n]" +2022-11-14 09:05:21,090 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:hasAuthorization ;[\n]" +2022-11-14 09:05:21,090 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:identifier ;[\n]" +2022-11-14 09:05:21,090 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " foaf:mbox "freudenberg@informatik.uni-leipzig.de" ;[\n]" +2022-11-14 09:05:21,090 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " foaf:name "Markus Freudenberg" .[\n]" +2022-11-14 09:05:21,090 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:21,090 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:21,090 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:Agent ;[\n]" +2022-11-14 09:05:21,090 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:hasAuthorization ;[\n]" +2022-11-14 09:05:21,090 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " foaf:mbox "technical.support@openlinksw.com" ;[\n]" +2022-11-14 09:05:21,090 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " foaf:name "OpenLink Technical Support Team" .[\n]" +2022-11-14 09:05:21,090 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:21,090 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:21,090 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:Authorization ;[\n]" +2022-11-14 09:05:21,090 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:authorityAgentRole dataid:Publisher ;[\n]" +2022-11-14 09:05:21,090 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:authorizedAgent ;[\n]" +2022-11-14 09:05:21,090 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:authorizedFor ;[\n]" +2022-11-14 09:05:21,090 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:isInheritable true .[\n]" +2022-11-14 09:05:21,090 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:21,090 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "########### Main Dataset ###########[\n]" +2022-11-14 09:05:21,090 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:21,090 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:21,090 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:Dataset , dataid:Superset ;[\n]" +2022-11-14 09:05:21,090 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "Main Dataset"@en ;[\n]" +2022-11-14 09:05:21,090 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" +2022-11-14 09:05:21,090 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:growth ;[\n]" +2022-11-14 09:05:21,090 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" +2022-11-14 09:05:21,090 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:openness ;[\n]" +2022-11-14 09:05:21,090 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:previousVersion ;[\n]" +2022-11-14 09:05:21,090 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:reuseAndIntegration ;[\n]" +2022-11-14 09:05:21,090 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:similarData ;[\n]" +2022-11-14 09:05:21,090 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:usefulness ;[\n]" +2022-11-14 09:05:21,090 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo , ;[\n]" +2022-11-14 09:05:21,090 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "DBpedia is a crowd-sourced community effort to extract structured information from Wikipedia and make this information available on the Web. DBpedia allows you to ask sophisticated queries against Wikipedia, and to link the different data sets on the Web to Wikipedia data. We hope that this work will make it easier for the huge amount of information in Wikipedia to be used in some new interesting ways. Furthermore, it might inspire new mechanisms for navigating, linking, and improving the encyclopedia itself."@en ;[\n]" +2022-11-14 09:05:21,090 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" +2022-11-14 09:05:21,090 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" +2022-11-14 09:05:21,090 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:language ;[\n]" +2022-11-14 09:05:21,090 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" +2022-11-14 09:05:21,090 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" +2022-11-14 09:05:21,090 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" +2022-11-14 09:05:21,090 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:rights ;[\n]" +2022-11-14 09:05:21,090 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "DBpedia root dataset for French, version 2016-10"@en ;[\n]" +2022-11-14 09:05:21,090 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " void:subset , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , <" +2022-11-14 09:05:21,099 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "http://dbpedia.org/dataset/mappingbased_literals?lang=fr&dbpv=2016-10> , , , , , , , , , , , , , , , , , , , , , , , , , ;[\n]" +2022-11-14 09:05:21,100 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " void:vocabulary , ;[\n]" +2022-11-14 09:05:21,100 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:keyword "DBpedia"@en , "Main Dataset"@en ;[\n]" +2022-11-14 09:05:21,100 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:landingPage ;[\n]" +2022-11-14 09:05:21,100 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " foaf:isPrimaryTopicOf ;[\n]" +2022-11-14 09:05:21,100 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " foaf:page .[\n]" +2022-11-14 09:05:21,100 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:21,100 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "########### Datasets & Distributions ###########[\n]" +2022-11-14 09:05:21,100 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:21,100 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:21,100 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid-ld:LinkedDataDataset , dataid:Dataset ;[\n]" +2022-11-14 09:05:21,100 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "Images English Uris"@en ;[\n]" +2022-11-14 09:05:21,100 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" +2022-11-14 09:05:21,100 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" +2022-11-14 09:05:21,101 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:previousVersion ;[\n]" +2022-11-14 09:05:21,101 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedDatasetRelation[\n]" +2022-11-14 09:05:21,101 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " ;[\n]" +2022-11-14 09:05:21,101 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:relatedDataset ;[\n]" +2022-11-14 09:05:21,101 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo , ;[\n]" +2022-11-14 09:05:21,101 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "Main image and corresponding thumbnail from Wikipedia article. Normalized dataset matching English DBpedia resources."@en ;[\n]" +2022-11-14 09:05:21,101 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" +2022-11-14 09:05:21,101 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:isPartOf ;[\n]" +2022-11-14 09:05:21,101 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" +2022-11-14 09:05:21,101 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:language ;[\n]" +2022-11-14 09:05:21,101 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" +2022-11-14 09:05:21,101 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" +2022-11-14 09:05:21,101 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" +2022-11-14 09:05:21,101 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "Images English Uris"@en ;[\n]" +2022-11-14 09:05:21,101 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " void:rootResource ;[\n]" +2022-11-14 09:05:21,103 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " void:triples 4999519 ;[\n]" +2022-11-14 09:05:21,103 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:distribution , ;[\n]" +2022-11-14 09:05:21,103 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:keyword "Images English Uris"@en , "DBpedia"@en ;[\n]" +2022-11-14 09:05:21,103 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:landingPage ;[\n]" +2022-11-14 09:05:21,103 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " sd:defaultGraph ;[\n]" +2022-11-14 09:05:21,103 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " foaf:page .[\n]" +2022-11-14 09:05:21,103 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:21,103 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:21,103 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:SingleFile ;[\n]" +2022-11-14 09:05:21,103 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "Specific Mappingbased Properties Wikidata Uris"@en , "core-i18n/fr/specific_mappingbased_properties_wkd_uris_fr.tql.bz2" ;[\n]" +2022-11-14 09:05:21,103 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" +2022-11-14 09:05:21,103 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:checksum ;[\n]" +2022-11-14 09:05:21,103 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:isDistributionOf ;[\n]" +2022-11-14 09:05:21,103 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" +2022-11-14 09:05:21,105 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:preview ;[\n]" +2022-11-14 09:05:21,105 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:uncompressedByteSize 19663619 ;[\n]" +2022-11-14 09:05:21,105 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo ;[\n]" +2022-11-14 09:05:21,105 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "Infobox data from the mapping-based extraction, using units of measurement more convenient for the resource type, e.g. square kilometres instead of square metres for the area of a city. Normalized dataset matching Wikidata resources (sorted)."@en ;[\n]" +2022-11-14 09:05:21,105 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" +2022-11-14 09:05:21,105 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" +2022-11-14 09:05:21,105 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" +2022-11-14 09:05:21,105 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" +2022-11-14 09:05:21,105 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" +2022-11-14 09:05:21,105 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "Specific Mappingbased Properties Wikidata Uris"@en ;[\n]" +2022-11-14 09:05:21,105 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:byteSize 1185846 ;[\n]" +2022-11-14 09:05:21,105 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:downloadURL ;[\n]" +2022-11-14 09:05:21,107 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:mediaType dataid-mt:MediaType_n-quads_x-bzip2 .[\n]" +2022-11-14 09:05:21,107 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:21,107 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:21,107 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:SingleFile ;[\n]" +2022-11-14 09:05:21,107 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "Out Degree"@en , "core-i18n/fr/out_degree_fr.ttl.bz2" ;[\n]" +2022-11-14 09:05:21,107 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" +2022-11-14 09:05:21,107 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:checksum ;[\n]" +2022-11-14 09:05:21,107 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:isDistributionOf ;[\n]" +2022-11-14 09:05:21,107 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" +2022-11-14 09:05:21,107 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:preview ;[\n]" +2022-11-14 09:05:21,107 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:uncompressedByteSize 530339159 ;[\n]" +2022-11-14 09:05:21,107 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo ;[\n]" +2022-11-14 09:05:21,107 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "Number of links emerging from a Wikipedia article and pointing to another Wikipedia article."@en ;[\n]" +2022-11-14 09:05:21,107 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" +2022-11-14 09:05:21,107 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" +2022-11-14 09:05:21,107 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " " +2022-11-14 09:05:21,109 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" +2022-11-14 09:05:21,109 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" +2022-11-14 09:05:21,109 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" +2022-11-14 09:05:21,109 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "Out Degree"@en ;[\n]" +2022-11-14 09:05:21,109 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:byteSize 29397862 ;[\n]" +2022-11-14 09:05:21,109 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:downloadURL ;[\n]" +2022-11-14 09:05:21,109 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:mediaType dataid-mt:MediaType_turtle_x-bzip2 .[\n]" +2022-11-14 09:05:21,109 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:21,109 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:21,109 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:Dataset , dataid-ld:LinkedDataDataset ;[\n]" +2022-11-14 09:05:21,109 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "Geonames Links"@en ;[\n]" +2022-11-14 09:05:21,109 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" +2022-11-14 09:05:21,109 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" +2022-11-14 09:05:21,109 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:previousVersion ;[\n]" +2022-11-14 09:05:21,109 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedDatasetRelation[\n]" +2022-11-14 09:05:21,109 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " ;[\n]" +2022-11-14 09:05:21,109 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:relatedDataset ;[\n]" +2022-11-14 09:05:21,109 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo , ;[\n]" +2022-11-14 09:05:21,109 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:descriptio" +2022-11-14 09:05:21,110 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "n "This file contains the back-links (owl:sameAs) to the Geonames dataset."@en ;[\n]" +2022-11-14 09:05:21,110 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" +2022-11-14 09:05:21,110 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:isPartOf ;[\n]" +2022-11-14 09:05:21,110 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" +2022-11-14 09:05:21,110 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:language ;[\n]" +2022-11-14 09:05:21,110 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" +2022-11-14 09:05:21,110 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" +2022-11-14 09:05:21,110 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" +2022-11-14 09:05:21,110 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "Geonames Links"@en ;[\n]" +2022-11-14 09:05:21,110 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " void:rootResource ;[\n]" +2022-11-14 09:05:21,110 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " void:triples 310 ;[\n]" +2022-11-14 09:05:21,110 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:distribution ;[\n]" +2022-11-14 09:05:21,110 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:keyword "Geonames Links"@en , "DBpedia"@en ;[\n]" +2022-11-14 09:05:21,110 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:landingPage ;[\n]" +2022-11-14 09:05:21,110 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " sd:defaultGraph ;[\n]" +2022-11-14 09:05:21,110 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " foaf:page .[\n]" +2022-11-14 09:05:21,110 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:21,110 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:21,110 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a " +2022-11-14 09:05:21,111 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:SingleFile ;[\n]" +2022-11-14 09:05:21,112 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "core-i18n/fr/topical_concepts_en_uris_fr.ttl.bz2" , "Topical Concepts English Uris"@en ;[\n]" +2022-11-14 09:05:21,112 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" +2022-11-14 09:05:21,112 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:checksum ;[\n]" +2022-11-14 09:05:21,112 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:isDistributionOf ;[\n]" +2022-11-14 09:05:21,112 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" +2022-11-14 09:05:21,112 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:preview ;[\n]" +2022-11-14 09:05:21,112 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:uncompressedByteSize 9808706 ;[\n]" +2022-11-14 09:05:21,112 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo ;[\n]" +2022-11-14 09:05:21,112 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "Resources that describe a category Normalized dataset matching English DBpedia resources."@en ;[\n]" +2022-11-14 09:05:21,112 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" +2022-11-14 09:05:21,112 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" +2022-11-14 09:05:21,112 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" +2022-11-14 09:05:21,112 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified " +2022-11-14 09:05:21,114 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " "2017-07-06"^^xsd:date ;[\n]" +2022-11-14 09:05:21,114 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" +2022-11-14 09:05:21,114 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "Topical Concepts English Uris"@en ;[\n]" +2022-11-14 09:05:21,114 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:byteSize 484532 ;[\n]" +2022-11-14 09:05:21,114 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:downloadURL ;[\n]" +2022-11-14 09:05:21,114 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:mediaType dataid-mt:MediaType_turtle_x-bzip2 .[\n]" +2022-11-14 09:05:21,114 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:21,114 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:21,114 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:SingleFile ;[\n]" +2022-11-14 09:05:21,114 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "core-i18n/fr/short_abstracts_wkd_uris_fr.ttl.bz2" , "Short Abstracts Wikidata Uris"@en ;[\n]" +2022-11-14 09:05:21,114 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" +2022-11-14 09:05:21,114 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:checksum ;[\n]" +2022-11-14 09:05:21,114 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:isDistributionOf ;[\n]" +2022-11-14 09:05:21,114 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" +2022-11-14 09:05:21,114 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:preview ;[\n]" +2022-11-14 09:05:21,115 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:uncompressedByteSize 670683532 ;[\n]" +2022-11-14 09:05:21,115 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo ;[\n]" +2022-11-14 09:05:21,115 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "Short Abstracts (about 600 characters long) of Wikipedia articles. Normalized dataset matching Wikidata resources (sorted)."@en ;[\n]" +2022-11-14 09:05:21,115 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" +2022-11-14 09:05:21,115 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" +2022-11-14 09:05:21,115 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" +2022-11-14 09:05:21,115 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" +2022-11-14 09:05:21,115 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" +2022-11-14 09:05:21,115 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "Short Abstracts Wikidata Uris"@en ;[\n]" +2022-11-14 09:05:21,115 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:byteSize 141197090 ;[\n]" +2022-11-14 09:05:21,115 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:downloadURL ;[\n]" +2022-11-14 09:05:21,115 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:mediaType dataid-mt:MediaType_turtle_x-bzip2 .[\n]" +2022-11-14 09:05:21,115 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:21,115 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:21,115 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:SingleFile ;[\n]" +2022-11-14 09:05:21,115 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "core-i18n/fr/nif_context_fr.ttl.bz2" , "NIF Context"@en ;[\n]" +2022-11-14 09:05:21,115 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" +2022-11-14 09:05:21,117 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:checksum ;[\n]" +2022-11-14 09:05:21,117 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:isDistributionOf ;[\n]" +2022-11-14 09:05:21,117 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" +2022-11-14 09:05:21,117 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:preview ;[\n]" +2022-11-14 09:05:21,117 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:uncompressedByteSize 6950782689 ;[\n]" +2022-11-14 09:05:21,117 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo ;[\n]" +2022-11-14 09:05:21,117 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "Contains the full text of a Wikipedia page in the NLP Interchange Format (NIF). All other NIF resources will reference the context of its Wikipedia page.It contains the whole text of a WikiPage (minus tables and references and minor artifacts)"@en ;[\n]" +2022-11-14 09:05:21,117 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" +2022-11-14 09:05:21,117 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" +2022-11-14 09:05:21,117 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" +2022-11-14 09:05:21,117 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" +2022-11-14 09:05:21,117 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" +2022-11-14 09:05:21,117 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title " +2022-11-14 09:05:21,119 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " "NIF Context"@en ;[\n]" +2022-11-14 09:05:21,119 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:byteSize 1472498158 ;[\n]" +2022-11-14 09:05:21,119 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:downloadURL ;[\n]" +2022-11-14 09:05:21,119 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:mediaType dataid-mt:MediaType_turtle_x-bzip2 .[\n]" +2022-11-14 09:05:21,119 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:21,119 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:21,119 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:SingleFile ;[\n]" +2022-11-14 09:05:21,119 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "Topical Concepts English Uris"@en , "core-i18n/fr/topical_concepts_en_uris_fr.tql.bz2" ;[\n]" +2022-11-14 09:05:21,119 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" +2022-11-14 09:05:21,119 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:checksum ;[\n]" +2022-11-14 09:05:21,119 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:isDistributionOf ;[\n]" +2022-11-14 09:05:21,119 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" +2022-11-14 09:05:21,119 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:preview ;[\n]" +2022-11-14 09:05:21,119 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:uncompressedByteSize 16528891 ;[\n]" +2022-11-14 09:05:21,119 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo ;[\n]" +2022-11-14 09:05:21,119 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description " +2022-11-14 09:05:21,120 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " "Resources that describe a category Normalized dataset matching English DBpedia resources."@en ;[\n]" +2022-11-14 09:05:21,120 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" +2022-11-14 09:05:21,120 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" +2022-11-14 09:05:21,120 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" +2022-11-14 09:05:21,120 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" +2022-11-14 09:05:21,120 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" +2022-11-14 09:05:21,120 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "Topical Concepts English Uris"@en ;[\n]" +2022-11-14 09:05:21,120 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:byteSize 1065681 ;[\n]" +2022-11-14 09:05:21,120 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:downloadURL ;[\n]" +2022-11-14 09:05:21,120 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:mediaType dataid-mt:MediaType_n-quads_x-bzip2 .[\n]" +2022-11-14 09:05:21,120 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:21,120 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:21,120 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:SingleFile ;[\n]" +2022-11-14 09:05:21,120 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "Short Abstracts Wikidata Uris"@en , "core-i18n/fr/short_abstracts_wkd_uris_fr.tql.bz2" ;[\n]" +2022-11-14 09:05:21,120 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" +2022-11-14 09:05:21,120 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:checksum ;[\n]" +2022-11-14 09:05:21,122 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:isDistributionOf ;[\n]" +2022-11-14 09:05:21,122 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" +2022-11-14 09:05:21,122 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:preview ;[\n]" +2022-11-14 09:05:21,122 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:uncompressedByteSize 783993297 ;[\n]" +2022-11-14 09:05:21,122 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo ;[\n]" +2022-11-14 09:05:21,122 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "Short Abstracts (about 600 characters long) of Wikipedia articles. Normalized dataset matching Wikidata resources (sorted)."@en ;[\n]" +2022-11-14 09:05:21,122 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" +2022-11-14 09:05:21,122 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" +2022-11-14 09:05:21,122 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" +2022-11-14 09:05:21,122 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" +2022-11-14 09:05:21,122 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" +2022-11-14 09:05:21,122 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "Short Abstracts Wikidata Uris"@en ;[\n]" +2022-11-14 09:05:21,122 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:byteSize 162564987 ;[\n]" +2022-11-14 09:05:21,122 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:downloadURL ;[\n]" +2022-11-14 09:05:21,124 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:mediaType dataid-mt:MediaType_n-quads_x-bzip2 .[\n]" +2022-11-14 09:05:21,124 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:21,124 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:21,124 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid-ld:LinkedDataDataset , dataid:Dataset ;[\n]" +2022-11-14 09:05:21,124 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "SKOS Categories English Uris"@en ;[\n]" +2022-11-14 09:05:21,124 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" +2022-11-14 09:05:21,124 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" +2022-11-14 09:05:21,124 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:previousVersion ;[\n]" +2022-11-14 09:05:21,124 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedDatasetRelation[\n]" +2022-11-14 09:05:21,124 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " ;[\n]" +2022-11-14 09:05:21,124 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:relatedDataset ;[\n]" +2022-11-14 09:05:21,124 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo , ;[\n]" +2022-11-14 09:05:21,124 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "Information which concept is a category and how categories are related using the SKOS Vocabulary. Normalized dataset matching English DBpedia resources."@en ;[\n]" +2022-11-14 09:05:21,124 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" +2022-11-14 09:05:21,124 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:isPartOf ;[\n]" +2022-11-14 09:05:21,125 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" +2022-11-14 09:05:21,125 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:language ;[\n]" +2022-11-14 09:05:21,125 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" +2022-11-14 09:05:21,125 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" +2022-11-14 09:05:21,125 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" +2022-11-14 09:05:21,125 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "SKOS Categories English Uris"@en ;[\n]" +2022-11-14 09:05:21,125 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " void:rootResource ;[\n]" +2022-11-14 09:05:21,125 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " void:triples 617089 ;[\n]" +2022-11-14 09:05:21,125 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:distribution , ;[\n]" +2022-11-14 09:05:21,125 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:keyword "DBpedia"@en , "SKOS Categories English Uris"@en ;[\n]" +2022-11-14 09:05:21,125 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:landingPage ;[\n]" +2022-11-14 09:05:21,125 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " sd:defaultGraph ;[\n]" +2022-11-14 09:05:21,125 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " foaf:page .[\n]" +2022-11-14 09:05:21,125 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:21,125 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:21,125 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:SingleFile ;[\n]" +2022-11-14 09:05:21,125 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "Equations in MathML"@en , "core-i18n/fr/equations_fr.ttl.bz2" ;[\n]" +2022-11-14 09:05:21,125 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgen" +2022-11-14 09:05:21,127 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "t ;[\n]" +2022-11-14 09:05:21,127 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:checksum ;[\n]" +2022-11-14 09:05:21,127 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:isDistributionOf ;[\n]" +2022-11-14 09:05:21,127 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" +2022-11-14 09:05:21,127 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:preview ;[\n]" +2022-11-14 09:05:21,127 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:uncompressedByteSize 410092930 ;[\n]" +2022-11-14 09:05:21,127 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo ;[\n]" +2022-11-14 09:05:21,127 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "This are all equations collected during the NIF extraction, transformed into MathML XML syntax."@en ;[\n]" +2022-11-14 09:05:21,127 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" +2022-11-14 09:05:21,127 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" +2022-11-14 09:05:21,127 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" +2022-11-14 09:05:21,127 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" +2022-11-14 09:05:21,127 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" +2022-11-14 09:05:21,127 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "Equations in MathML"@en ;[\n]" +2022-11-14 09:05:21,127 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:byteSize 9548541 ;[\n]" +2022-11-14 09:05:21,127 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:downloadURL " +2022-11-14 09:05:21,128 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " ;[\n]" +2022-11-14 09:05:21,128 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:mediaType dataid-mt:MediaType_turtle_x-bzip2 .[\n]" +2022-11-14 09:05:21,128 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:21,128 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:21,128 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid-ld:LinkedDataDataset , dataid:Dataset ;[\n]" +2022-11-14 09:05:21,128 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "Geo Coordinates Wikidata Uris"@en ;[\n]" +2022-11-14 09:05:21,128 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" +2022-11-14 09:05:21,128 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" +2022-11-14 09:05:21,128 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:previousVersion ;[\n]" +2022-11-14 09:05:21,128 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedDatasetRelation[\n]" +2022-11-14 09:05:21,128 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " ;[\n]" +2022-11-14 09:05:21,128 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:relatedDataset ;[\n]" +2022-11-14 09:05:21,128 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo , ;[\n]" +2022-11-14 09:05:21,128 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "Geographic coordinates extracted from Wikipedia. Normalized dataset matching Wikidata resources (sorted)."@en ;[\n]" +2022-11-14 09:05:21,128 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" +2022-11-14 09:05:21,128 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:isPartOf ;[\n]" +2022-11-14 09:05:21,130 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" +2022-11-14 09:05:21,130 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:language ;[\n]" +2022-11-14 09:05:21,130 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" +2022-11-14 09:05:21,130 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" +2022-11-14 09:05:21,130 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" +2022-11-14 09:05:21,130 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "Geo Coordinates Wikidata Uris"@en ;[\n]" +2022-11-14 09:05:21,130 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " void:rootResource ;[\n]" +2022-11-14 09:05:21,130 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " void:triples 150904 ;[\n]" +2022-11-14 09:05:21,130 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:distribution , ;[\n]" +2022-11-14 09:05:21,130 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:keyword "DBpedia"@en , "Geo Coordinates Wikidata Uris"@en ;[\n]" +2022-11-14 09:05:21,130 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:landingPage ;[\n]" +2022-11-14 09:05:21,130 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " sd:defaultGraph ;[\n]" +2022-11-14 09:05:21,130 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " foaf:page .[\n]" +2022-11-14 09:05:21,130 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:21,130 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:21,130 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid-ld:LinkedDataDataset , dataid:Dataset ;[\n]" +2022-11-14 09:05:21,130 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "Labels Wikidata Uris"@en ;[\n]" +2022-11-14 09:05:21,130 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" +2022-11-14 09:05:21,130 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" +2022-11-14 09:05:21,130 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:previousVersion ;[\n]" +2022-11-14 09:05:21,130 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedDatasetRelation[\n]" +2022-11-14 09:05:21,130 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " ;[\n]" +2022-11-14 09:05:21,130 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:relatedDataset ;[\n]" +2022-11-14 09:05:21,130 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo , ;[\n]" +2022-11-14 09:05:21,130 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "Titles of all Wikipedia Articles in the corresponding language. In Wikidata, it contains all the languages available in the mappings wiki, labels_nmw contains the rest Normalized dataset matching Wikidata resources (sorted)."@en ;[\n]" +2022-11-14 09:05:21,130 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" +2022-11-14 09:05:21,130 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:isPartOf ;[\n]" +2022-11-14 09:05:21,130 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" +2022-11-14 09:05:21,130 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:language ;[\n]" +2022-11-14 09:05:21,130 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" +2022-11-14 09:05:21,130 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" +2022-11-14 09:05:21,130 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" +2022-11-14 09:05:21,132 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "Labels Wikidata Uris"@en ;[\n]" +2022-11-14 09:05:21,132 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " void:rootResource ;[\n]" +2022-11-14 09:05:21,132 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " void:triples 1801814 ;[\n]" +2022-11-14 09:05:21,132 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:distribution , ;[\n]" +2022-11-14 09:05:21,132 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:keyword "Labels Wikidata Uris"@en , "DBpedia"@en ;[\n]" +2022-11-14 09:05:21,132 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:landingPage ;[\n]" +2022-11-14 09:05:21,132 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " sd:defaultGraph ;[\n]" +2022-11-14 09:05:21,132 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " foaf:page .[\n]" +2022-11-14 09:05:21,132 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:21,132 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:21,132 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid-ld:LinkedDataDataset , dataid:Dataset ;[\n]" +2022-11-14 09:05:21,132 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "Geo Coordinates"@en ;[\n]" +2022-11-14 09:05:21,132 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" +2022-11-14 09:05:21,132 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" +2022-11-14 09:05:21,132 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:previousVersion ;[\n]" +2022-11-14 09:05:21,132 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedDatasetRelation[\n]" +2022-11-14 09:05:21,132 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " " +2022-11-14 09:05:21,134 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " ;[\n]" +2022-11-14 09:05:21,134 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:relatedDataset ;[\n]" +2022-11-14 09:05:21,134 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo , ;[\n]" +2022-11-14 09:05:21,134 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "Geographic coordinates extracted from Wikipedia."@en ;[\n]" +2022-11-14 09:05:21,134 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" +2022-11-14 09:05:21,134 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:isPartOf ;[\n]" +2022-11-14 09:05:21,134 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" +2022-11-14 09:05:21,134 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:language ;[\n]" +2022-11-14 09:05:21,134 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" +2022-11-14 09:05:21,134 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" +2022-11-14 09:05:21,134 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" +2022-11-14 09:05:21,134 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "Geo Coordinates"@en ;[\n]" +2022-11-14 09:05:21,134 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " void:rootResource ;[\n]" +2022-11-14 09:05:21,134 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " void:triples 151204 ;[\n]" +2022-11-14 09:05:21,134 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:distribution , ;[\n]" +2022-11-14 09:05:21,134 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:keyword "DBpedia"@en , "Geo Coordinates"@en ;[\n]" +2022-11-14 09:05:21,134 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:landingPage " +2022-11-14 09:05:21,135 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " ;[\n]" +2022-11-14 09:05:21,135 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " sd:defaultGraph ;[\n]" +2022-11-14 09:05:21,135 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " foaf:page .[\n]" +2022-11-14 09:05:21,135 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:21,135 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:21,135 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:SingleFile ;[\n]" +2022-11-14 09:05:21,135 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "core-i18n/fr/article_categories_wkd_uris_fr.ttl.bz2" , "Article Categories Wikidata Uris"@en ;[\n]" +2022-11-14 09:05:21,135 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" +2022-11-14 09:05:21,135 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:checksum ;[\n]" +2022-11-14 09:05:21,135 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:isDistributionOf ;[\n]" +2022-11-14 09:05:21,135 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" +2022-11-14 09:05:21,135 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:preview ;[\n]" +2022-11-14 09:05:21,135 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:uncompressedByteSize 733116114 ;[\n]" +2022-11-14 09:05:21,135 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo ;[\n]" +2022-11-14 09:05:21,135 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "Links from concepts to categories using the SKOS vocabulary. Normalized dataset matching Wikidata resources (sorted)."@en ;[\n]" +2022-11-14 09:05:21,135 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" +2022-11-14 09:05:21,135 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" +2022-11-14 09:05:21,135 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" +2022-11-14 09:05:21,135 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" +2022-11-14 09:05:21,135 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" +2022-11-14 09:05:21,135 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "Article Categories Wikidata Uris"@en ;[\n]" +2022-11-14 09:05:21,135 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:byteSize 27763566 ;[\n]" +2022-11-14 09:05:21,135 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:downloadURL ;[\n]" +2022-11-14 09:05:21,135 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:mediaType dataid-mt:MediaType_turtle_x-bzip2 .[\n]" +2022-11-14 09:05:21,135 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:21,135 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:21,135 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:Dataset , dataid-ld:LinkedDataDataset ;[\n]" +2022-11-14 09:05:21,135 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "Wikipedia Links"@en ;[\n]" +2022-11-14 09:05:21,135 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" +2022-11-14 09:05:21,135 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" +2022-11-14 09:05:21,135 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:previousVersion ;[\n]" +2022-11-14 09:05:21,135 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedDatasetRelation[\n]" +2022-11-14 09:05:21,135 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " ;[\n]" +2022-11-14 09:05:21,138 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:relatedDataset ;[\n]" +2022-11-14 09:05:21,138 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo , ;[\n]" +2022-11-14 09:05:21,138 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "Dataset linking DBpedia resource to corresponding article in Wikipedia."@en ;[\n]" +2022-11-14 09:05:21,138 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" +2022-11-14 09:05:21,138 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:isPartOf ;[\n]" +2022-11-14 09:05:21,138 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" +2022-11-14 09:05:21,138 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:language ;[\n]" +2022-11-14 09:05:21,138 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" +2022-11-14 09:05:21,138 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" +2022-11-14 09:05:21,138 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" +2022-11-14 09:05:21,138 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "Wikipedia Links"@en ;[\n]" +2022-11-14 09:05:21,138 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " void:rootResource ;[\n]" +2022-11-14 09:05:21,138 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " void:triples 12964980 ;[\n]" +2022-11-14 09:05:21,138 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:distribution , ;[\n]" +2022-11-14 09:05:21,138 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " " +2022-11-14 09:05:21,139 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:keyword "Wikipedia Links"@en , "DBpedia"@en ;[\n]" +2022-11-14 09:05:21,139 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:landingPage ;[\n]" +2022-11-14 09:05:21,139 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " sd:defaultGraph ;[\n]" +2022-11-14 09:05:21,139 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " foaf:page .[\n]" +2022-11-14 09:05:21,139 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:21,139 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:21,139 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:SingleFile ;[\n]" +2022-11-14 09:05:21,139 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "Instance Types English Uris"@en , "core-i18n/fr/instance_types_en_uris_fr.ttl.bz2" ;[\n]" +2022-11-14 09:05:21,139 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" +2022-11-14 09:05:21,139 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:checksum ;[\n]" +2022-11-14 09:05:21,139 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:isDistributionOf ;[\n]" +2022-11-14 09:05:21,139 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" +2022-11-14 09:05:21,139 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:preview ;[\n]" +2022-11-14 09:05:21,139 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:uncompressedByteSize 85574299 ;[\n]" +2022-11-14 09:05:21,139 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo ;[\n]" +2022-11-14 09:05:21,139 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "Contains triples" +2022-11-14 09:05:21,140 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " of the form $object rdf:type $class from the mapping-based extraction. Normalized dataset matching English DBpedia resources."@en ;[\n]" +2022-11-14 09:05:21,140 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" +2022-11-14 09:05:21,140 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" +2022-11-14 09:05:21,140 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" +2022-11-14 09:05:21,140 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" +2022-11-14 09:05:21,140 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" +2022-11-14 09:05:21,140 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "Instance Types English Uris"@en ;[\n]" +2022-11-14 09:05:21,140 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:byteSize 5297474 ;[\n]" +2022-11-14 09:05:21,140 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:downloadURL ;[\n]" +2022-11-14 09:05:21,140 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:mediaType dataid-mt:MediaType_turtle_x-bzip2 .[\n]" +2022-11-14 09:05:21,140 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:21,140 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:21,140 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:SingleFile ;[\n]" +2022-11-14 09:05:21,140 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "core-i18n/fr/article_categories_wkd_uris_fr.tql.bz2" , "Article Categories Wikidata Uris"@en ;[\n]" +2022-11-14 09:05:21,140 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" +2022-11-14 09:05:21,140 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:checksum ;[\n]" +2022-11-14 09:05:21,142 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:isDistributionOf ;[\n]" +2022-11-14 09:05:21,142 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" +2022-11-14 09:05:21,142 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:preview ;[\n]" +2022-11-14 09:05:21,142 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:uncompressedByteSize 1412970564 ;[\n]" +2022-11-14 09:05:21,142 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo ;[\n]" +2022-11-14 09:05:21,142 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "Links from concepts to categories using the SKOS vocabulary. Normalized dataset matching Wikidata resources (sorted)."@en ;[\n]" +2022-11-14 09:05:21,142 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" +2022-11-14 09:05:21,142 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" +2022-11-14 09:05:21,142 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" +2022-11-14 09:05:21,142 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" +2022-11-14 09:05:21,142 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" +2022-11-14 09:05:21,142 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "Article Categories Wikidata Uris"@en ;[\n]" +2022-11-14 09:05:21,142 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:byteSize 81671657 ;[\n]" +2022-11-14 09:05:21,142 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:downloadURL ;[\n]" +2022-11-14 09:05:21,143 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:mediaType dataid-mt:MediaType_n-quads_x-bzip2 .[\n]" +2022-11-14 09:05:21,143 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:21,143 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:21,143 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:SingleFile ;[\n]" +2022-11-14 09:05:21,143 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "Interlanguage Links"@en , "core-i18n/fr/interlanguage_links_fr.tql.bz2" ;[\n]" +2022-11-14 09:05:21,143 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" +2022-11-14 09:05:21,143 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:checksum ;[\n]" +2022-11-14 09:05:21,143 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:isDistributionOf ;[\n]" +2022-11-14 09:05:21,143 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" +2022-11-14 09:05:21,143 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:preview ;[\n]" +2022-11-14 09:05:21,143 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:uncompressedByteSize 4725742045 ;[\n]" +2022-11-14 09:05:21,143 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo ;[\n]" +2022-11-14 09:05:21,143 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "Dataset linking a DBpedia resource to the same resource in other languages and in Wikidata."@en ;[\n]" +2022-11-14 09:05:21,143 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" +2022-11-14 09:05:21,144 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" +2022-11-14 09:05:21,144 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" +2022-11-14 09:05:21,144 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" +2022-11-14 09:05:21,144 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" +2022-11-14 09:05:21,144 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "Interlanguage Links"@en ;[\n]" +2022-11-14 09:05:21,144 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:byteSize 225389349 ;[\n]" +2022-11-14 09:05:21,144 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:downloadURL ;[\n]" +2022-11-14 09:05:21,144 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:mediaType dataid-mt:MediaType_n-quads_x-bzip2 .[\n]" +2022-11-14 09:05:21,144 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:21,144 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:21,144 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:SingleFile ;[\n]" +2022-11-14 09:05:21,144 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "Person data"@en , "core-i18n/fr/persondata_fr.ttl.bz2" ;[\n]" +2022-11-14 09:05:21,144 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" +2022-11-14 09:05:21,144 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:checksum ;[\n]" +2022-11-14 09:05:21,144 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:isDistributionOf ;[\n]" +2022-11-14 09:05:21,144 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" +2022-11-14 09:05:21,144 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:pre" +2022-11-14 09:05:21,144 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "view ;[\n]" +2022-11-14 09:05:21,144 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:uncompressedByteSize 442243790 ;[\n]" +2022-11-14 09:05:21,145 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo ;[\n]" +2022-11-14 09:05:21,145 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "Information about persons (date and place of birth etc., extracted from the English and German Wikipedia, represented using the FOAF vocabulary."@en ;[\n]" +2022-11-14 09:05:21,145 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" +2022-11-14 09:05:21,145 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" +2022-11-14 09:05:21,145 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" +2022-11-14 09:05:21,145 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" +2022-11-14 09:05:21,145 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" +2022-11-14 09:05:21,145 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "Person data"@en ;[\n]" +2022-11-14 09:05:21,145 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:byteSize 23804002 ;[\n]" +2022-11-14 09:05:21,145 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:downloadURL ;[\n]" +2022-11-14 09:05:21,145 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:mediaType dataid-mt:MediaType_turtle_x-bzip2 .[\n]" +2022-11-14 09:05:21,145 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:21,145 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:21,145 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:SingleFile ;[\n]" +2022-11-14 09:05:21,145 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "core-i18n/fr/instance_types_en" +2022-11-14 09:05:21,147 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "_uris_fr.tql.bz2" , "Instance Types English Uris"@en ;[\n]" +2022-11-14 09:05:21,147 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" +2022-11-14 09:05:21,147 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:checksum ;[\n]" +2022-11-14 09:05:21,147 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:isDistributionOf ;[\n]" +2022-11-14 09:05:21,147 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" +2022-11-14 09:05:21,147 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:preview ;[\n]" +2022-11-14 09:05:21,147 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:uncompressedByteSize 161096746 ;[\n]" +2022-11-14 09:05:21,147 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo ;[\n]" +2022-11-14 09:05:21,147 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "Contains triples of the form $object rdf:type $class from the mapping-based extraction. Normalized dataset matching English DBpedia resources."@en ;[\n]" +2022-11-14 09:05:21,147 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" +2022-11-14 09:05:21,147 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" +2022-11-14 09:05:21,147 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" +2022-11-14 09:05:21,147 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" +2022-11-14 09:05:21,147 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publishe" +2022-11-14 09:05:21,148 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "r ;[\n]" +2022-11-14 09:05:21,148 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "Instance Types English Uris"@en ;[\n]" +2022-11-14 09:05:21,148 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:byteSize 12371112 ;[\n]" +2022-11-14 09:05:21,148 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:downloadURL ;[\n]" +2022-11-14 09:05:21,148 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:mediaType dataid-mt:MediaType_n-quads_x-bzip2 .[\n]" +2022-11-14 09:05:21,148 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:21,148 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:21,148 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:SingleFile ;[\n]" +2022-11-14 09:05:21,148 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "core-i18n/fr/french_population_fr.ttl.bz2" , "French Population"@en ;[\n]" +2022-11-14 09:05:21,148 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" +2022-11-14 09:05:21,148 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:checksum ;[\n]" +2022-11-14 09:05:21,148 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:isDistributionOf ;[\n]" +2022-11-14 09:05:21,148 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" +2022-11-14 09:05:21,148 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:preview ;[\n]" +2022-11-14 09:05:21,148 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:uncompressedByteSize 6793789 ;[\n]" +2022-11-14 09:05:21,148 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo ;[\n]" +2022-11-14 09:05:21,149 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "French dataset about population."@en ;[\n]" +2022-11-14 09:05:21,149 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" +2022-11-14 09:05:21,149 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" +2022-11-14 09:05:21,149 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" +2022-11-14 09:05:21,149 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" +2022-11-14 09:05:21,149 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" +2022-11-14 09:05:21,149 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "French Population"@en ;[\n]" +2022-11-14 09:05:21,149 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:byteSize 287115 ;[\n]" +2022-11-14 09:05:21,149 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:downloadURL ;[\n]" +2022-11-14 09:05:21,149 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:mediaType dataid-mt:MediaType_turtle_x-bzip2 .[\n]" +2022-11-14 09:05:21,149 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:21,149 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:21,149 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:SingleFile ;[\n]" +2022-11-14 09:05:21,149 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "core-i18n/fr/disambiguations_wkd_uris_fr.tql.bz2" , "Disambiguations Wikidata Uris"@en ;[\n]" +2022-11-14 09:05:21,149 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" +2022-11-14 09:05:21,149 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:checksum ;[\n]" +2022-11-14 09:05:21,149 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " d" +2022-11-14 09:05:21,150 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "ataid:isDistributionOf ;[\n]" +2022-11-14 09:05:21,150 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" +2022-11-14 09:05:21,150 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:preview ;[\n]" +2022-11-14 09:05:21,150 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:uncompressedByteSize 108084390 ;[\n]" +2022-11-14 09:05:21,150 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo ;[\n]" +2022-11-14 09:05:21,150 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "Links extracted from Wikipedia disambiguation pages. Since Wikipedia has no syntax to distinguish disambiguation links from ordinary links, DBpedia has to use heuristics. Normalized dataset matching Wikidata resources (sorted)."@en ;[\n]" +2022-11-14 09:05:21,150 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" +2022-11-14 09:05:21,150 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" +2022-11-14 09:05:21,150 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" +2022-11-14 09:05:21,150 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" +2022-11-14 09:05:21,150 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" +2022-11-14 09:05:21,150 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "Disambiguations Wikidata Uris"@en ;[\n]" +2022-11-14 09:05:21,150 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:byteSize 5328644 ;[\n]" +2022-11-14 09:05:21,150 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:downloadURL ;[\n]" +2022-11-14 09:05:21,150 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:mediaType dataid-mt:MediaType_n-quads_x-bzip2 .[\n]" +2022-11-14 09:05:21,150 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:21,150 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:21,150 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:SingleFile ;[\n]" +2022-11-14 09:05:21,150 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "Page Ids"@en , "core-i18n/fr/page_ids_fr.ttl.bz2" ;[\n]" +2022-11-14 09:05:21,150 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" +2022-11-14 09:05:21,150 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:checksum ;[\n]" +2022-11-14 09:05:21,150 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:isDistributionOf ;[\n]" +2022-11-14 09:05:21,150 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" +2022-11-14 09:05:21,150 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:preview ;[\n]" +2022-11-14 09:05:21,150 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:uncompressedByteSize 589635178 ;[\n]" +2022-11-14 09:05:21,150 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo ;[\n]" +2022-11-14 09:05:21,150 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "Dataset linking a DBpedia resource to the page ID of the Wikipedia article the data was extracted from."@en ;[\n]" +2022-11-14 09:05:21,150 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" +2022-11-14 09:05:21,150 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" +2022-11-14 09:05:21,150 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" +2022-11-14 09:05:21,150 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" +2022-11-14 09:05:21,150 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" +2022-11-14 09:05:21,150 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "Page Ids"@en ;[\n]" +2022-11-14 09:05:21,150 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:byteSize 40298553 ;[\n]" +2022-11-14 09:05:21,150 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:downloadURL ;[\n]" +2022-11-14 09:05:21,150 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:mediaType dataid-mt:MediaType_turtle_x-bzip2 .[\n]" +2022-11-14 09:05:21,150 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:21,150 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:21,150 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:SingleFile ;[\n]" +2022-11-14 09:05:21,150 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "Geo Coordinates Wikidata Uris"@en , "core-i18n/fr/geo_coordinates_wkd_uris_fr.ttl.bz2" ;[\n]" +2022-11-14 09:05:21,150 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" +2022-11-14 09:05:21,150 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:checksum ;[\n]" +2022-11-14 09:05:21,150 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:isDistributionOf ;[\n]" +2022-11-14 09:05:21,150 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" +2022-11-14 09:05:21,152 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:preview ;[\n]" +2022-11-14 09:05:21,152 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:uncompressedByteSize 21632650 ;[\n]" +2022-11-14 09:05:21,152 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo ;[\n]" +2022-11-14 09:05:21,152 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "Geographic coordinates extracted from Wikipedia. Normalized dataset matching Wikidata resources (sorted)."@en ;[\n]" +2022-11-14 09:05:21,152 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" +2022-11-14 09:05:21,152 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" +2022-11-14 09:05:21,152 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" +2022-11-14 09:05:21,152 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" +2022-11-14 09:05:21,152 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" +2022-11-14 09:05:21,152 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "Geo Coordinates Wikidata Uris"@en ;[\n]" +2022-11-14 09:05:21,152 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:byteSize 901491 ;[\n]" +2022-11-14 09:05:21,152 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:downloadURL ;[\n]" +2022-11-14 09:05:21,152 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:mediaType dataid-mt:MediaType_turtle_x-bzip2 .[\n]" +2022-11-14 09:05:21,152 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:21,152 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:21,152 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:SingleFile ;[\n]" +2022-11-14 09:05:21,152 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "Page Ids"@en , "core-i18n/fr/page_ids_fr.tql.bz2" ;[\n]" +2022-11-14 09:05:21,152 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" +2022-11-14 09:05:21,152 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:checksum ;[\n]" +2022-11-14 09:05:21,152 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:isDistributionOf ;[\n]" +2022-11-14 09:05:21,152 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" +2022-11-14 09:05:21,152 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:preview ;[\n]" +2022-11-14 09:05:21,152 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:uncompressedByteSize 860159634 ;[\n]" +2022-11-14 09:05:21,152 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo ;[\n]" +2022-11-14 09:05:21,152 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "Dataset linking a DBpedia resource to the page ID of the Wikipedia article the data was extracted from."@en ;[\n]" +2022-11-14 09:05:21,152 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" +2022-11-14 09:05:21,152 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" +2022-11-14 09:05:21,152 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" +2022-11-14 09:05:21,152 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" +2022-11-14 09:05:21,152 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" +2022-11-14 09:05:21,152 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "Page Ids"@en ;[\n]" +2022-11-14 09:05:21,152 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:byteSize " +2022-11-14 09:05:21,153 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " 71099390 ;[\n]" +2022-11-14 09:05:21,153 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:downloadURL ;[\n]" +2022-11-14 09:05:21,153 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:mediaType dataid-mt:MediaType_n-quads_x-bzip2 .[\n]" +2022-11-14 09:05:21,153 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:21,153 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:21,153 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:SingleFile ;[\n]" +2022-11-14 09:05:21,153 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "core-i18n/fr/mappingbased_objects_disjoint_domain_fr.ttl.bz2" , "Mappingbased Objects Disjoint Domain"@en ;[\n]" +2022-11-14 09:05:21,153 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" +2022-11-14 09:05:21,153 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:checksum ;[\n]" +2022-11-14 09:05:21,153 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:isDistributionOf ;[\n]" +2022-11-14 09:05:21,153 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" +2022-11-14 09:05:21,153 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:preview ;[\n]" +2022-11-14 09:05:21,153 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:uncompressedByteSize 2701650 ;[\n]" +2022-11-14 09:05:21,153 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo ;[\n]" +2022-11-14 09:05:21,154 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "Errors detected in the mapping based properties (disjoint domain)."@en ;[\n]" +2022-11-14 09:05:21,154 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" +2022-11-14 09:05:21,154 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" +2022-11-14 09:05:21,154 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" +2022-11-14 09:05:21,154 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" +2022-11-14 09:05:21,154 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" +2022-11-14 09:05:21,154 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "Mappingbased Objects Disjoint Domain"@en ;[\n]" +2022-11-14 09:05:21,154 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:byteSize 198335 ;[\n]" +2022-11-14 09:05:21,154 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:downloadURL ;[\n]" +2022-11-14 09:05:21,154 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:mediaType dataid-mt:MediaType_turtle_x-bzip2 .[\n]" +2022-11-14 09:05:21,154 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:21,154 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:21,154 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:SingleFile ;[\n]" +2022-11-14 09:05:21,154 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "core-i18n/fr/page_links_wkd_uris_fr.tql.bz2" , "Page Links Wikidata Uris"@en ;[\n]" +2022-11-14 09:05:21,154 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" +2022-11-14 09:05:21,154 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:checksum ;[\n]" +2022-11-14 09:05:21,154 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:isDistributionOf ;[\n]" +2022-11-14 09:05:21,154 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" +2022-11-14 09:05:21,154 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:preview ;[\n]" +2022-11-14 09:05:21,154 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:uncompressedByteSize 13105172538 ;[\n]" +2022-11-14 09:05:21,154 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo ;[\n]" +2022-11-14 09:05:21,154 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "Dataset containing internal links between DBpedia instances. The dataset was created from the internal links between Wikipedia articles. The dataset might be useful for structural analysis, data mining or for ranking DBpedia instances using Page Rank or similar algorithms. Normalized dataset matching Wikidata resources (sorted)."@en ;[\n]" +2022-11-14 09:05:21,154 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" +2022-11-14 09:05:21,154 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" +2022-11-14 09:05:21,154 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" +2022-11-14 09:05:21,154 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" +2022-11-14 09:05:21,154 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" +2022-11-14 09:05:21,154 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "Page Links Wikidata Uris"@en ;[\n]" +2022-11-14 09:05:21,154 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:byteSize 457972841 ;[\n]" +2022-11-14 09:05:21,154 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:downloadURL ;[\n]" +2022-11-14 09:05:21,154 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:mediaType dataid-mt:MediaType_n-quads_x-bzip2 .[\n]" +2022-11-14 09:05:21,154 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:21,154 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:21,154 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:SingleFile ;[\n]" +2022-11-14 09:05:21,154 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "core-i18n/fr/mappingbased_objects_disjoint_domain_fr.tql.bz2" , "Mappingbased Objects Disjoint Domain"@en ;[\n]" +2022-11-14 09:05:21,154 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" +2022-11-14 09:05:21,154 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:checksum ;[\n]" +2022-11-14 09:05:21,154 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:isDistributionOf ;[\n]" +2022-11-14 09:05:21,154 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" +2022-11-14 09:05:21,154 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:preview ;[\n]" +2022-11-14 09:05:21,154 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " " +2022-11-14 09:05:21,156 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:uncompressedByteSize 6162904 ;[\n]" +2022-11-14 09:05:21,156 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo ;[\n]" +2022-11-14 09:05:21,156 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "Errors detected in the mapping based properties (disjoint domain)."@en ;[\n]" +2022-11-14 09:05:21,156 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" +2022-11-14 09:05:21,156 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" +2022-11-14 09:05:21,156 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" +2022-11-14 09:05:21,156 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" +2022-11-14 09:05:21,156 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" +2022-11-14 09:05:21,156 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "Mappingbased Objects Disjoint Domain"@en ;[\n]" +2022-11-14 09:05:21,156 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:byteSize 399521 ;[\n]" +2022-11-14 09:05:21,156 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:downloadURL ;[\n]" +2022-11-14 09:05:21,156 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:mediaType dataid-mt:MediaType_n-quads_x-bzip2 .[\n]" +2022-11-14 09:05:21,156 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:21,156 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:21,156 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid-ld:LinkedDataDataset , dataid:Dataset ;[\n]" +2022-11-14 09:05:21,156 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "Article Templates"@en ;[\n]" +2022-11-14 09:05:21,156 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" +2022-11-14 09:05:21,156 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" +2022-11-14 09:05:21,156 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " " +2022-11-14 09:05:21,157 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:previousVersion ;[\n]" +2022-11-14 09:05:21,157 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedDatasetRelation[\n]" +2022-11-14 09:05:21,157 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " ;[\n]" +2022-11-14 09:05:21,157 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:relatedDataset ;[\n]" +2022-11-14 09:05:21,157 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo , ;[\n]" +2022-11-14 09:05:21,157 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "Templates used in an article (top-level)."@en ;[\n]" +2022-11-14 09:05:21,157 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" +2022-11-14 09:05:21,157 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:isPartOf ;[\n]" +2022-11-14 09:05:21,157 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" +2022-11-14 09:05:21,157 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:language ;[\n]" +2022-11-14 09:05:21,157 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" +2022-11-14 09:05:21,157 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" +2022-11-14 09:05:21,157 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" +2022-11-14 09:05:21,157 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "Article Templates"@en ;[\n]" +2022-11-14 09:05:21,157 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " void:rootResource ;[\n]" +2022-11-14 09:05:21,157 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " void:triples 15059057 ;[\n]" +2022-11-14 09:05:21,157 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:distribution , ;[\n]" +2022-11-14 09:05:21,157 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:keyword "Article Templates"@en , "DBpedia"@en ;[\n]" +2022-11-14 09:05:21,157 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:landingPage ;[\n]" +2022-11-14 09:05:21,157 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " sd:defaultGraph ;[\n]" +2022-11-14 09:05:21,157 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " foaf:page .[\n]" +2022-11-14 09:05:21,157 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:21,157 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:21,157 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:SingleFile ;[\n]" +2022-11-14 09:05:21,157 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "core-i18n/fr/page_links_en_uris_fr.tql.bz2" , "Page Links English Uris"@en ;[\n]" +2022-11-14 09:05:21,157 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" +2022-11-14 09:05:21,157 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:checksum ;[\n]" +2022-11-14 09:05:21,157 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:isDistributionOf ;[\n]" +2022-11-14 09:05:21,157 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" +2022-11-14 09:05:21,157 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:preview ;[\n]" +2022-11-14 09:05:21,157 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:uncompressedByt" +2022-11-14 09:05:21,157 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "eSize 8258334252 ;[\n]" +2022-11-14 09:05:21,157 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo ;[\n]" +2022-11-14 09:05:21,157 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "Dataset containing internal links between DBpedia instances. The dataset was created from the internal links between Wikipedia articles. The dataset might be useful for structural analysis, data mining or for ranking DBpedia instances using Page Rank or similar algorithms. Normalized dataset matching English DBpedia resources."@en ;[\n]" +2022-11-14 09:05:21,157 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" +2022-11-14 09:05:21,157 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" +2022-11-14 09:05:21,157 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" +2022-11-14 09:05:21,157 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" +2022-11-14 09:05:21,157 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" +2022-11-14 09:05:21,157 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "Page Links English Uris"@en ;[\n]" +2022-11-14 09:05:21,157 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:byteSize 390384247 ;[\n]" +2022-11-14 09:05:21,157 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:downloadURL ;[\n]" +2022-11-14 09:05:21,157 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:mediaType dataid-mt:MediaType_n-quads_x-bzip2 .[\n]" +2022-11-14 09:05:21,157 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:21,157 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:21,157 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:SingleFile ;[\n]" +2022-11-14 09:05:21,157 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label " +2022-11-14 09:05:21,159 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " "core-i18n/fr/commons_page_links_fr.ttl.bz2" , "Commons Page Links"@en ;[\n]" +2022-11-14 09:05:21,159 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" +2022-11-14 09:05:21,159 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:checksum ;[\n]" +2022-11-14 09:05:21,159 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:isDistributionOf ;[\n]" +2022-11-14 09:05:21,159 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" +2022-11-14 09:05:21,159 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:preview ;[\n]" +2022-11-14 09:05:21,159 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:uncompressedByteSize 6057 ;[\n]" +2022-11-14 09:05:21,159 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo ;[\n]" +2022-11-14 09:05:21,159 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "Dataset containing links between a language-locale DBpedia instance and DBpedia Commons."@en ;[\n]" +2022-11-14 09:05:21,159 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" +2022-11-14 09:05:21,159 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" +2022-11-14 09:05:21,159 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" +2022-11-14 09:05:21,159 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" +2022-11-14 09:05:21,159 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" +2022-11-14 09:05:21,159 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "Commons Page Links"@en ;[\n]" +2022-11-14 09:05:21,159 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:byteSize 1243 ;[\n]" +2022-11-14 09:05:21,159 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:downloadURL ;[\n]" +2022-11-14 09:05:21,159 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:mediaType dataid-mt:MediaType_turtle_x-bzip2 .[\n]" +2022-11-14 09:05:21,159 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:21,159 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:21,159 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:SingleFile ;[\n]" +2022-11-14 09:05:21,159 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "core-i18n/fr/pnd_fr.tql.bz2" , "pnd"@en ;[\n]" +2022-11-14 09:05:21,159 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" +2022-11-14 09:05:21,159 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:checksum ;[\n]" +2022-11-14 09:05:21,159 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:isDistributionOf ;[\n]" +2022-11-14 09:05:21,159 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" +2022-11-14 09:05:21,159 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:preview ;[\n]" +2022-11-14 09:05:21,159 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:uncompressedByteSize 88363 ;[\n]" +2022-11-14 09:05:21,159 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo ;[\n]" +2022-11-14 09:05:21,159 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "DBpedia dataset pnd, subset of "@en ;[\n]" +2022-11-14 09:05:21,159 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" +2022-11-14 09:05:21,160 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" +2022-11-14 09:05:21,160 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" +2022-11-14 09:05:21,160 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" +2022-11-14 09:05:21,160 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" +2022-11-14 09:05:21,160 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "pnd"@en ;[\n]" +2022-11-14 09:05:21,160 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:byteSize 8741 ;[\n]" +2022-11-14 09:05:21,160 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:downloadURL ;[\n]" +2022-11-14 09:05:21,160 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:mediaType dataid-mt:MediaType_n-quads_x-bzip2 .[\n]" +2022-11-14 09:05:21,160 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:21,160 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:21,160 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:SingleFile ;[\n]" +2022-11-14 09:05:21,160 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "Labels"@en , "core-i18n/fr/labels_fr.ttl.bz2" ;[\n]" +2022-11-14 09:05:21,160 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" +2022-11-14 09:05:21,160 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:checksum ;[\n]" +2022-11-14 09:05:21,160 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:isDistributionOf ;[\n]" +2022-11-14 09:05:21,160 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" +2022-11-14 09:05:21,160 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:preview ;[\n]" +2022-11-14 09:05:21,160 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " da" +2022-11-14 09:05:21,161 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "taid:uncompressedByteSize 412290012 ;[\n]" +2022-11-14 09:05:21,161 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo ;[\n]" +2022-11-14 09:05:21,161 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "Titles of all Wikipedia Articles in the corresponding language. In Wikidata, it contains all the languages available in the mappings wiki, labels_nmw contains the rest "@en ;[\n]" +2022-11-14 09:05:21,161 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" +2022-11-14 09:05:21,161 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" +2022-11-14 09:05:21,161 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" +2022-11-14 09:05:21,161 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" +2022-11-14 09:05:21,161 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" +2022-11-14 09:05:21,161 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "Labels"@en ;[\n]" +2022-11-14 09:05:21,161 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:byteSize 46758143 ;[\n]" +2022-11-14 09:05:21,161 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:downloadURL ;[\n]" +2022-11-14 09:05:21,161 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:mediaType dataid-mt:MediaType_turtle_x-bzip2 .[\n]" +2022-11-14 09:05:21,161 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:21,161 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:21,161 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid-ld:LinkedDataDataset , dataid:Dataset ;[\n]" +2022-11-14 09:05:21,161 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "Topical Concepts English Uris"@en ;[\n]" +2022-11-14 09:05:21,161 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" +2022-11-14 09:05:21,161 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" +2022-11-14 09:05:21,161 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedDatasetRelation[\n]" +2022-11-14 09:05:21,161 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " ;[\n]" +2022-11-14 09:05:21,161 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:relatedDataset ;[\n]" +2022-11-14 09:05:21,161 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo , ;[\n]" +2022-11-14 09:05:21,161 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "Resources that describe a category Normalized dataset matching English DBpedia resources."@en ;[\n]" +2022-11-14 09:05:21,161 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" +2022-11-14 09:05:21,161 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:isPartOf ;[\n]" +2022-11-14 09:05:21,161 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" +2022-11-14 09:05:21,161 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:language ;[\n]" +2022-11-14 09:05:21,161 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" +2022-11-14 09:05:21,161 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" +2022-11-14 09:05:21,161 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" +2022-11-14 09:05:21,161 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "Topical Concepts English Uris"@en ;[\n]" +2022-11-14 09:05:21,161 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " void:rootResource ;[\n]" +2022-11-14 09:05:21,161 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " void:triples 66866 ;[\n]" +2022-11-14 09:05:21,161 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:distribution , ;[\n]" +2022-11-14 09:05:21,162 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:keyword "DBpedia"@en , "Topical Concepts English Uris"@en ;[\n]" +2022-11-14 09:05:21,162 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:landingPage ;[\n]" +2022-11-14 09:05:21,162 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " sd:defaultGraph ;[\n]" +2022-11-14 09:05:21,162 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " foaf:page .[\n]" +2022-11-14 09:05:21,162 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:21,162 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:21,162 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:SingleFile ;[\n]" +2022-11-14 09:05:21,162 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "Person data English Uris"@en , "core-i18n/fr/persondata_en_uris_fr.tql.bz2" ;[\n]" +2022-11-14 09:05:21,162 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" +2022-11-14 09:05:21,162 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:checksum ;[\n]" +2022-11-14 09:05:21,162 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:isDistributionOf ;[\n]" +2022-11-14 09:05:21,162 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" +2022-11-14 09:05:21,162 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:preview ;[\n]" +2022-11-14 09:05:21,162 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:uncompressedByteSize 428486896 ;[\n]" +2022-11-14 09:05:21,162 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo ;[\n]" +2022-11-14 09:05:21,162 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "Information about persons (date and place of birth etc., extracted from the English and Ge" +2022-11-14 09:05:21,163 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "rman Wikipedia, represented using the FOAF vocabulary. Normalized dataset matching English DBpedia resources."@en ;[\n]" +2022-11-14 09:05:21,163 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" +2022-11-14 09:05:21,163 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" +2022-11-14 09:05:21,163 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" +2022-11-14 09:05:21,163 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" +2022-11-14 09:05:21,163 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" +2022-11-14 09:05:21,163 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "Person data English Uris"@en ;[\n]" +2022-11-14 09:05:21,163 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:byteSize 24759356 ;[\n]" +2022-11-14 09:05:21,163 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:downloadURL ;[\n]" +2022-11-14 09:05:21,163 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:mediaType dataid-mt:MediaType_n-quads_x-bzip2 .[\n]" +2022-11-14 09:05:21,163 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:21,163 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:21,163 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:SingleFile ;[\n]" +2022-11-14 09:05:21,163 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "core-i18n/fr/freebase_links_fr.ttl.bz2" , "Freebase Links"@en ;[\n]" +2022-11-14 09:05:21,163 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" +2022-11-14 09:05:21,163 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:checksum ;[\n]" +2022-11-14 09:05:21,163 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:isDistributionOf ;[\n]" +2022-11-14 09:05:21,163 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" +2022-11-14 09:05:21,163 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:preview ;[\n]" +2022-11-14 09:05:21,163 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:uncompressedByteSize 253036348 ;[\n]" +2022-11-14 09:05:21,163 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo ;[\n]" +2022-11-14 09:05:21,163 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "This file contains the back-links (owl:sameAs) to the Freebase dataset."@en ;[\n]" +2022-11-14 09:05:21,163 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" +2022-11-14 09:05:21,163 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" +2022-11-14 09:05:21,163 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" +2022-11-14 09:05:21,163 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" +2022-11-14 09:05:21,163 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" +2022-11-14 09:05:21,163 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "Freebase Links"@en ;[\n]" +2022-11-14 09:05:21,163 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:byteSize 21671471 ;" +2022-11-14 09:05:21,164 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:21,164 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:downloadURL ;[\n]" +2022-11-14 09:05:21,164 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:mediaType dataid-mt:MediaType_turtle_x-bzip2 .[\n]" +2022-11-14 09:05:21,164 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:21,164 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:21,164 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:SingleFile ;[\n]" +2022-11-14 09:05:21,164 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "core-i18n/fr/instance_types_fr.ttl.bz2" , "Instance Types"@en ;[\n]" +2022-11-14 09:05:21,164 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" +2022-11-14 09:05:21,164 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:checksum ;[\n]" +2022-11-14 09:05:21,164 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:isDistributionOf ;[\n]" +2022-11-14 09:05:21,164 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" +2022-11-14 09:05:21,164 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:preview ;[\n]" +2022-11-14 09:05:21,164 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:uncompressedByteSize 265270299 ;[\n]" +2022-11-14 09:05:21,164 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo ;[\n]" +2022-11-14 09:05:21,164 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "Contains triples of the form $object rdf:type $class from the mapping-based extraction."@en ;[\n]" +2022-11-14 09:05:21,164 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" +2022-11-14 09:05:21,164 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" +2022-11-14 09:05:21,164 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" +2022-11-14 09:05:21,164 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" +2022-11-14 09:05:21,164 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" +2022-11-14 09:05:21,164 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "Instance Types"@en ;[\n]" +2022-11-14 09:05:21,164 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:byteSize 12470589 ;[\n]" +2022-11-14 09:05:21,164 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:downloadURL ;[\n]" +2022-11-14 09:05:21,164 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:mediaType dataid-mt:MediaType_turtle_x-bzip2 .[\n]" +2022-11-14 09:05:21,164 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:21,164 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:21,164 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:SingleFile ;[\n]" +2022-11-14 09:05:21,164 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "core-i18n/fr/instance_types_fr.tql.bz2" , "Instance Types"@en ;[\n]" +2022-11-14 09:05:21,164 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" +2022-11-14 09:05:21,164 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:checksum ;[\n]" +2022-11-14 09:05:21,164 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:isDistributionOf ;[\n]" +2022-11-14 09:05:21,164 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" +2022-11-14 09:05:21,164 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " " +2022-11-14 09:05:21,165 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:preview ;[\n]" +2022-11-14 09:05:21,165 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:uncompressedByteSize 473611810 ;[\n]" +2022-11-14 09:05:21,165 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo ;[\n]" +2022-11-14 09:05:21,165 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "Contains triples of the form $object rdf:type $class from the mapping-based extraction."@en ;[\n]" +2022-11-14 09:05:21,165 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" +2022-11-14 09:05:21,165 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" +2022-11-14 09:05:21,165 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" +2022-11-14 09:05:21,165 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" +2022-11-14 09:05:21,165 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" +2022-11-14 09:05:21,165 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "Instance Types"@en ;[\n]" +2022-11-14 09:05:21,165 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:byteSize 25205105 ;[\n]" +2022-11-14 09:05:21,165 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:downloadURL ;[\n]" +2022-11-14 09:05:21,165 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:mediaType dataid-mt:MediaType_n-quads_x-bzip2 .[\n]" +2022-11-14 09:05:21,165 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:21,165 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:21,165 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:Dataset , dataid-ld:LinkedDataDataset ;[\n]" +2022-11-14 09:05:21,165 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "External Links English Uris"@en ;[\n]" +2022-11-14 09:05:21,165 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" +2022-11-14 09:05:21,165 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" +2022-11-14 09:05:21,165 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:previousVersion ;[\n]" +2022-11-14 09:05:21,165 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedDatasetRelation[\n]" +2022-11-14 09:05:21,165 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " ;[\n]" +2022-11-14 09:05:21,165 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:relatedDataset ;[\n]" +2022-11-14 09:05:21,165 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo , ;[\n]" +2022-11-14 09:05:21,165 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "Links to external web pages about a concept. Normalized dataset matching English DBpedia resources."@en ;[\n]" +2022-11-14 09:05:21,165 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" +2022-11-14 09:05:21,165 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:isPartOf ;[\n]" +2022-11-14 09:05:21,165 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" +2022-11-14 09:05:21,165 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:language ;[\n]" +2022-11-14 09:05:21,165 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" +2022-11-14 09:05:21,165 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" +2022-11-14 09:05:21,165 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" +2022-11-14 09:05:21,165 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "External Links English Uris"@en ;" +2022-11-14 09:05:21,165 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:21,165 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " void:rootResource ;[\n]" +2022-11-14 09:05:21,165 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " void:triples 1219872 ;[\n]" +2022-11-14 09:05:21,165 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:distribution , ;[\n]" +2022-11-14 09:05:21,165 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:keyword "External Links English Uris"@en , "DBpedia"@en ;[\n]" +2022-11-14 09:05:21,165 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:landingPage ;[\n]" +2022-11-14 09:05:21,165 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " sd:defaultGraph ;[\n]" +2022-11-14 09:05:21,165 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " foaf:page .[\n]" +2022-11-14 09:05:21,165 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:21,165 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:21,165 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:Dataset , dataid-ld:LinkedDataDataset ;[\n]" +2022-11-14 09:05:21,165 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "Topical Concepts Wikidata Uris"@en ;[\n]" +2022-11-14 09:05:21,165 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" +2022-11-14 09:05:21,165 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" +2022-11-14 09:05:21,165 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedDatasetRelation[\n]" +2022-11-14 09:05:21,165 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " ;[\n]" +2022-11-14 09:05:21,165 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:relatedDataset ;[\n]" +2022-11-14 09:05:21,165 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsT" +2022-11-14 09:05:21,167 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "o , ;[\n]" +2022-11-14 09:05:21,167 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "Resources that describe a category Normalized dataset matching Wikidata resources (sorted)."@en ;[\n]" +2022-11-14 09:05:21,167 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" +2022-11-14 09:05:21,167 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:isPartOf ;[\n]" +2022-11-14 09:05:21,167 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" +2022-11-14 09:05:21,167 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:language ;[\n]" +2022-11-14 09:05:21,167 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" +2022-11-14 09:05:21,167 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" +2022-11-14 09:05:21,167 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" +2022-11-14 09:05:21,167 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "Topical Concepts Wikidata Uris"@en ;[\n]" +2022-11-14 09:05:21,167 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " void:rootResource ;[\n]" +2022-11-14 09:05:21,167 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " void:triples 93773 ;[\n]" +2022-11-14 09:05:21,167 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:distribution , ;[\n]" +2022-11-14 09:05:21,167 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:keyword "DBpedia"@en , "Topical Concepts Wikidata Uris"@en ;[\n]" +2022-11-14 09:05:21,167 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:landingPage ;[\n]" +2022-11-14 09:05:21,167 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " sd:defaultGraph ;[\n]" +2022-11-14 09:05:21,167 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " foaf:page .[\n]" +2022-11-14 09:05:21,167 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:21,167 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:21,167 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:SingleFile ;[\n]" +2022-11-14 09:05:21,167 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "core-i18n/fr/skos_categories_fr.ttl.bz2" , "SKOS Categories"@en ;[\n]" +2022-11-14 09:05:21,167 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" +2022-11-14 09:05:21,167 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:checksum ;[\n]" +2022-11-14 09:05:21,167 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:isDistributionOf ;[\n]" +2022-11-14 09:05:21,167 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" +2022-11-14 09:05:21,167 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:preview ;[\n]" +2022-11-14 09:05:21,167 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:uncompressedByteSize 245688973 ;[\n]" +2022-11-14 09:05:21,167 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo ;[\n]" +2022-11-14 09:05:21,167 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "Information which concept is a category and how categories are related using the SKOS Vocabulary."@en ;[\n]" +2022-11-14 09:05:21,167 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" +2022-11-14 09:05:21,167 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" +2022-11-14 09:05:21,167 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" +2022-11-14 09:05:21,167 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" +2022-11-14 09:05:21,167 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" +2022-11-14 09:05:21,167 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "SKOS Categories"@en ;[\n]" +2022-11-14 09:05:21,167 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:byteSize 10275884 ;[\n]" +2022-11-14 09:05:21,167 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:downloadURL ;[\n]" +2022-11-14 09:05:21,167 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:mediaType dataid-mt:MediaType_turtle_x-bzip2 .[\n]" +2022-11-14 09:05:21,167 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:21,167 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:21,167 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:Dataset , dataid-ld:LinkedDataDataset ;[\n]" +2022-11-14 09:05:21,167 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "Rransitive Redirects"@en ;[\n]" +2022-11-14 09:05:21,167 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" +2022-11-14 09:05:21,167 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" +2022-11-14 09:05:21,167 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:previousVersion ;[\n]" +2022-11-14 09:05:21,167 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedDatasetRelation[\n]" +2022-11-14 09:05:21,167 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " ;[\n]" +2022-11-14 09:05:21,167 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:relatedDataset ;[\n]" +2022-11-14 09:05:21,172 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo , ;[\n]" +2022-11-14 09:05:21,172 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "Dataset containing transitively resolved redirects between articles in Wikipedia."@en ;[\n]" +2022-11-14 09:05:21,172 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" +2022-11-14 09:05:21,172 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:isPartOf ;[\n]" +2022-11-14 09:05:21,174 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" +2022-11-14 09:05:21,174 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:language ;[\n]" +2022-11-14 09:05:21,174 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license" +2022-11-14 09:05:21,197 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " ;[\n]" +2022-11-14 09:05:21,197 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" +2022-11-14 09:05:21,197 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" +2022-11-14 09:05:21,197 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "Rransitive Redirects"@en ;[\n]" +2022-11-14 09:05:21,197 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " void:rootResource ;[\n]" +2022-11-14 09:05:21,199 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " void:triples 1440224 ;[\n]" +2022-11-14 09:05:21,199 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:distribution ;[\n]" +2022-11-14 09:05:21,199 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:keyword "DBpedia"@en , "Rransitive Redirects"@en ;[\n]" +2022-11-14 09:05:21,199 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:landingPage ;[\n]" +2022-11-14 09:05:21,199 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " sd:defaultGraph ;[\n]" +2022-11-14 09:05:21,199 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " foaf:page .[\n]" +2022-11-14 09:05:21,201 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:21,201 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:21,201 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid-ld:LinkedDataDataset , dataid:Dataset ;[\n]" +2022-11-14 09:05:21,201 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "Redirects"@en ;[\n]" +2022-11-14 09:05:21,201 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " " +2022-11-14 09:05:21,204 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" +2022-11-14 09:05:21,204 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" +2022-11-14 09:05:21,204 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:previousVersion ;[\n]" +2022-11-14 09:05:21,204 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedDatasetRelation[\n]" +2022-11-14 09:05:21,204 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " ;[\n]" +2022-11-14 09:05:21,204 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:relatedDataset ;[\n]" +2022-11-14 09:05:21,204 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo , ;[\n]" +2022-11-14 09:05:21,204 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "Dataset containing redirects between articles in Wikipedia."@en ;[\n]" +2022-11-14 09:05:21,204 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" +2022-11-14 09:05:21,204 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:isPartOf ;[\n]" +2022-11-14 09:05:21,204 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" +2022-11-14 09:05:21,204 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:language ;[\n]" +2022-11-14 09:05:21,204 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" +2022-11-14 09:05:21,204 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " " +2022-11-14 09:05:21,205 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "dc:modified "2017-07-06"^^xsd:date ;[\n]" +2022-11-14 09:05:21,205 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" +2022-11-14 09:05:21,205 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "Redirects"@en ;[\n]" +2022-11-14 09:05:21,205 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " void:rootResource ;[\n]" +2022-11-14 09:05:21,205 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " void:triples 1444933 ;[\n]" +2022-11-14 09:05:21,205 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:distribution , ;[\n]" +2022-11-14 09:05:21,205 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:keyword "DBpedia"@en , "Redirects"@en ;[\n]" +2022-11-14 09:05:21,205 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:landingPage ;[\n]" +2022-11-14 09:05:21,205 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " sd:defaultGraph ;[\n]" +2022-11-14 09:05:21,205 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " foaf:page .[\n]" +2022-11-14 09:05:21,205 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:21,205 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:21,205 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:Dataset , dataid-ld:LinkedDataDataset ;[\n]" +2022-11-14 09:05:21,205 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "Article Categories Wikidata Uris"@en ;[\n]" +2022-11-14 09:05:21,205 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" +2022-11-14 09:05:21,205 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" +2022-11-14 09:05:21,205 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:previousVersion ;[\n]" +2022-11-14 09:05:21,205 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedDatasetRelation[\n]" +2022-11-14 09:05:21,205 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " ;[\n]" +2022-11-14 09:05:21,205 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:relatedDataset ;[\n]" +2022-11-14 09:05:21,205 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo , ;[\n]" +2022-11-14 09:05:21,205 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "Links from concepts to categories using the SKOS vocabulary. Normalized dataset matching Wikidata resources (sorted)."@en ;[\n]" +2022-11-14 09:05:21,205 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" +2022-11-14 09:05:21,205 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:isPartOf ;[\n]" +2022-11-14 09:05:21,205 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" +2022-11-14 09:05:21,205 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:language ;[\n]" +2022-11-14 09:05:21,205 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" +2022-11-14 09:05:21,205 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" +2022-11-14 09:05:21,205 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" +2022-11-14 09:05:21,205 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "Article Categories Wikidata Uris"@en ;[\n]" +2022-11-14 09:05:21,205 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " void:rootResource ;[\n]" +2022-11-14 09:05:21,205 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " void:triples 5515693 ;[\n]" +2022-11-14 09:05:21,205 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:distribution , ;[\n]" +2022-11-14 09:05:21,205 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:keyword "Article Categories Wikidata Uris"@en , "DBpedia"@en ;[\n]" +2022-11-14 09:05:21,205 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:landingPage ;[\n]" +2022-11-14 09:05:21,205 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " sd:defaultGraph ;[\n]" +2022-11-14 09:05:21,205 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " foaf:page .[\n]" +2022-11-14 09:05:21,205 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:21,205 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:21,205 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:SingleFile ;[\n]" +2022-11-14 09:05:21,205 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "core-i18n/fr/nif_page_structure_fr.ttl.bz2" , "NIF page structure"@en ;[\n]" +2022-11-14 09:05:21,205 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" +2022-11-14 09:05:21,205 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:checksum ;[\n]" +2022-11-14 09:05:21,205 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:is" +2022-11-14 09:05:21,235 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "DistributionOf ;[\n]" +2022-11-14 09:05:21,235 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" +2022-11-14 09:05:21,235 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:preview ;[\n]" +2022-11-14 09:05:21,243 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:uncompressedByteSize 56340318016 ;[\n]" +2022-11-14 09:05:21,243 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " " +2022-11-14 09:05:21,245 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "dc:conformsTo ;[\n]" +2022-11-14 09:05:21,245 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "This dataset contains the page structure of a Wikipedia page, divided in sections and paragraphs."@en ;[\n]" +2022-11-14 09:05:21,245 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" +2022-11-14 09:05:21,245 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" +2022-11-14 09:05:21,245 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" +2022-11-14 09:05:21,245 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" +2022-11-14 09:05:21,245 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" +2022-11-14 09:05:21,245 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "NIF page structure"@en ;[\n]" +2022-11-14 09:05:21,245 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:byteSize 1025049542 ;[\n]" +2022-11-14 09:05:21,245 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:downloadURL ;[\n]" +2022-11-14 09:05:21,245 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:mediaType dataid-mt:MediaType_turtle_x-bzip2 .[\n]" +2022-11-14 09:05:21,245 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:21,245 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:21,245 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:Dataset , dataid-ld:LinkedDataDataset ;[\n]" +2022-11-14 09:05:21,245 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "Long Abstracts English Uris"@en ;[\n]" +2022-11-14 09:05:21,245 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" +2022-11-14 09:05:21,245 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" +2022-11-14 09:05:21,245 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:previousVersion ;[\n]" +2022-11-14 09:05:21,245 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedDatasetRelation[\n]" +2022-11-14 09:05:21,245 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " ;[\n]" +2022-11-14 09:05:21,245 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:relatedDataset ;[\n]" +2022-11-14 09:05:21,245 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo , ;[\n]" +2022-11-14 09:05:21,245 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "Long abstracts (full abstracts) of Wikipedia articles, usually the first section. Normalized dataset matching English DBpedia resources."@en ;[\n]" +2022-11-14 09:05:21,245 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" +2022-11-14 09:05:21,245 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:isPartOf ;[\n]" +2022-11-14 09:05:21,245 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" +2022-11-14 09:05:21,245 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:language ;[\n]" +2022-11-14 09:05:21,245 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" +2022-11-14 09:05:21,245 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" +2022-11-14 09:05:21,245 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" +2022-11-14 09:05:21,245 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "Long Abstracts English Uris"@en ;[\n]" +2022-11-14 09:05:21,245 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " void:rootResource ;[\n]" +2022-11-14 09:05:21,245 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " void:sparqlEndpoint ;[\n]" +2022-11-14 09:05:21,247 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " void:triples 1099339 ;[\n]" +2022-11-14 09:05:21,247 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:distribution , , ;[\n]" +2022-11-14 09:05:21,247 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:keyword "DBpedia"@en , "Long Abstracts English Uris"@en ;[\n]" +2022-11-14 09:05:21,247 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:landingPage ;[\n]" +2022-11-14 09:05:21,247 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " sd:defaultGraph ;[\n]" +2022-11-14 09:05:21,247 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " foaf:page .[\n]" +2022-11-14 09:05:21,247 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:21,247 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:21,247 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:SingleFile ;[\n]" +2022-11-14 09:05:21,247 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "NIF page structure"@en , "core-i18n/fr/nif_page_structure_fr.tql.bz2" ;[\n]" +2022-11-14 09:05:21,247 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" +2022-11-14 09:05:21,247 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:checksum ;[\n]" +2022-11-14 09:05:21,247 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:isDistributionOf ;[\n]" +2022-11-14 09:05:21,247 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" +2022-11-14 09:05:21,247 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:preview ;[\n]" +2022-11-14 09:05:21,247 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:uncompressedByteSize 72056476808 ;[\n]" +2022-11-14 09:05:21,247 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo ;[\n]" +2022-11-14 09:05:21,247 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "This dataset contains the page structure of a Wikipedia page, divided in sections and paragraphs."@en ;[\n]" +2022-11-14 09:05:21,247 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" +2022-11-14 09:05:21,247 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" +2022-11-14 09:05:21,247 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" +2022-11-14 09:05:21,247 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" +2022-11-14 09:05:21,247 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" +2022-11-14 09:05:21,247 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "NIF page structure"@en ;[\n]" +2022-11-14 09:05:21,247 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:byteSize 1085131121 ;[\n]" +2022-11-14 09:05:21,247 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:downloadURL ;[\n]" +2022-11-14 09:05:21,247 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:mediaType dataid-mt:MediaType_n-quads_x-bzip2 .[\n]" +2022-11-14 09:05:21,247 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:21,247 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:21,275 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a d" +2022-11-14 09:05:21,285 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "ataid:SingleFile ;[\n]" +2022-11-14 09:05:21,285 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "Short Abstracts English Uris"@en , "core-i18n/fr/short_abstracts_en_uris_fr.ttl.bz2" ;[\n]" +2022-11-14 09:05:21,285 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" +2022-11-14 09:05:21,285 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:checksum ;[\n]" +2022-11-14 09:05:21,285 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:isDistributionOf ;[\n]" +2022-11-14 09:05:21,285 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" +2022-11-14 09:05:21,285 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:preview ;[\n]" +2022-11-14 09:05:21,285 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:uncompressedByteSize 450469632 ;[\n]" +2022-11-14 09:05:21,285 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo ;[\n]" +2022-11-14 09:05:21,285 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "Short Abstracts (about 600 characters long) of Wikipedia articles. Normalized dataset matching English DBpedia resources."@en ;[\n]" +2022-11-14 09:05:21,285 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" +2022-11-14 09:05:21,285 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" +2022-11-14 09:05:21,285 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" +2022-11-14 09:05:21,285 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" +2022-11-14 09:05:21,285 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" +2022-11-14 09:05:21,285 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "Short Abstracts English Uris"@en ;[\n]" +2022-11-14 09:05:21,285 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:byteSize 99360159 ;[\n]" +2022-11-14 09:05:21,285 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:downloadURL ;[\n]" +2022-11-14 09:05:21,285 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:mediaType dataid-mt:MediaType_turtle_x-bzip2 .[\n]" +2022-11-14 09:05:21,285 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:21,285 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:21,285 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:Dataset , dataid-ld:LinkedDataDataset ;[\n]" +2022-11-14 09:05:21,285 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "Specific Mappingbased Properties"@en ;[\n]" +2022-11-14 09:05:21,285 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" +2022-11-14 09:05:21,285 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" +2022-11-14 09:05:21,285 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:previousVersion ;[\n]" +2022-11-14 09:05:21,285 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedDatasetRelation[\n]" +2022-11-14 09:05:21,285 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " ;[\n]" +2022-11-14 09:05:21,285 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:relatedDataset ;[\n]" +2022-11-14 09:05:21,285 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo , ;[\n]" +2022-11-14 09:05:21,287 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "Infobox data from the mapping-based extraction, using units of measurement more convenient for the resource type, e.g. square kilometres instead of square metres for the area of a city."@en ;[\n]" +2022-11-14 09:05:21,287 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" +2022-11-14 09:05:21,287 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:isPartOf ;[\n]" +2022-11-14 09:05:21,287 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" +2022-11-14 09:05:21,287 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:language ;[\n]" +2022-11-14 09:05:21,287 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" +2022-11-14 09:05:21,287 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" +2022-11-14 09:05:21,287 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" +2022-11-14 09:05:21,287 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "Specific Mappingbased Properties"@en ;[\n]" +2022-11-14 09:05:21,287 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " void:rootResource ;[\n]" +2022-11-14 09:05:21,287 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " void:triples 60835 ;[\n]" +2022-11-14 09:05:21,287 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:distribution , ;[\n]" +2022-11-14 09:05:21,287 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:keyword "Specific Mappingbased Properties"@en , "DBpedia"@en ;[\n]" +2022-11-14 09:05:21,287 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:landingPage ;[\n]" +2022-11-14 09:05:21,287 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " sd:defaultGraph ;[\n]" +2022-11-14 09:05:21,287 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " foaf:page .[\n]" +2022-11-14 09:05:21,287 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:21,287 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:21,287 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:SingleFile ;[\n]" +2022-11-14 09:05:21,287 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "Short Abstracts English Uris"@en , "core-i18n/fr/short_abstracts_en_uris_fr.tql.bz2" ;[\n]" +2022-11-14 09:05:21,287 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" +2022-11-14 09:05:21,287 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:checksum ;[\n]" +2022-11-14 09:05:21,287 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:isDistributionOf ;[\n]" +2022-11-14 09:05:21,287 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" +2022-11-14 09:05:21,287 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:preview ;[\n]" +2022-11-14 09:05:21,287 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:uncompressedByteSize 523363622 ;[\n]" +2022-11-14 09:05:21,287 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo ;[\n]" +2022-11-14 09:05:21,287 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "Short Abstracts (about 600 characters long) of Wikipedia article" +2022-11-14 09:05:21,316 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "s. Normalized dataset matching English DBpedia resources."@en ;[\n]" +2022-11-14 09:05:21,316 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" +2022-11-14 09:05:21,316 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" +2022-11-14 09:05:21,316 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" +2022-11-14 09:05:21,332 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" +2022-11-14 09:05:21,332 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" +2022-11-14 09:05:21,332 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "Short Abstracts English Uris"@en ;[\n]" +2022-11-14 09:05:21,332 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:byteSize 111766632 ;[\n]" +2022-11-14 09:05:21,332 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:downloadURL ;[\n]" +2022-11-14 09:05:21,332 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:mediaType dataid-mt:MediaType_n-quads_x-bzip2 .[\n]" +2022-11-14 09:05:21,332 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:21,332 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:21,332 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:Dataset , dataid-ld:LinkedDataDataset ;[\n]" +2022-11-14 09:05:21,332 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "Revision Uris"@en ;[\n]" +2022-11-14 09:05:21,332 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" +2022-11-14 09:05:21,332 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" +2022-11-14 09:05:21,332 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:previousVersion ;[\n]" +2022-11-14 09:05:21,332 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedDatasetRelation[\n]" +2022-11-14 09:05:21,332 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " ;[\n]" +2022-11-14 09:05:21,332 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:relatedDataset ;[\n]" +2022-11-14 09:05:21,332 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo , ;[\n]" +2022-11-14 09:05:21,332 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "Dataset linking DBpedia resource to the specific Wikipedia article revision used in this DBpedia release."@en ;[\n]" +2022-11-14 09:05:21,332 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" +2022-11-14 09:05:21,332 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:isPartOf ;[\n]" +2022-11-14 09:05:21,332 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" +2022-11-14 09:05:21,332 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:language ;[\n]" +2022-11-14 09:05:21,332 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" +2022-11-14 09:05:21,332 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" +2022-11-14 09:05:21,332 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" +2022-11-14 09:05:21,332 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "Revision Uris"@en ;[\n]" +2022-11-14 09:05:21,332 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " void:rootResource ;[\n]" +2022-11-14 09:05:21,332 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " void:triples 3831703 ;[\n]" +2022-11-14 09:05:21,332 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:distribution , ;" +2022-11-14 09:05:21,334 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:21,334 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:keyword "Revision Uris"@en , "DBpedia"@en ;[\n]" +2022-11-14 09:05:21,334 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:landingPage ;[\n]" +2022-11-14 09:05:21,334 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " sd:defaultGraph ;[\n]" +2022-11-14 09:05:21,334 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " foaf:page .[\n]" +2022-11-14 09:05:21,334 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:21,334 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:21,334 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:SingleFile ;[\n]" +2022-11-14 09:05:21,334 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "core-i18n/fr/pnd_en_uris_fr.ttl.bz2" , "pnd English Uris"@en ;[\n]" +2022-11-14 09:05:21,334 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" +2022-11-14 09:05:21,334 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:checksum ;[\n]" +2022-11-14 09:05:21,334 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:isDistributionOf ;[\n]" +2022-11-14 09:05:21,334 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" +2022-11-14 09:05:21,334 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:preview ;[\n]" +2022-11-14 09:05:21,334 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:uncompressedByteSize 27988 ;[\n]" +2022-11-14 09:05:21,334 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo ;[\n]" +2022-11-14 09:05:21,334 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "Undescribed Dataset Normalized dataset matching English DBpedia resources."@en ;[\n]" +2022-11-14 09:05:21,334 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" +2022-11-14 09:05:21,334 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" +2022-11-14 09:05:21,334 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" +2022-11-14 09:05:21,334 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" +2022-11-14 09:05:21,334 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" +2022-11-14 09:05:21,334 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "pnd English Uris"@en ;[\n]" +2022-11-14 09:05:21,334 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:byteSize 3696 ;[\n]" +2022-11-14 09:05:21,334 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:downloadURL ;[\n]" +2022-11-14 09:05:21,334 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:mediaType dataid-mt:MediaType_turtle_x-bzip2 .[\n]" +2022-11-14 09:05:21,334 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:21,334 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:21,334 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:SingleFile ;[\n]" +2022-11-14 09:05:21,334 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "core-i18n/fr/specific_mappingbased_properties_en_uris_fr.ttl.bz2" , "Specific Mappingbased Properties English Uris"@en ;[\n]" +2022-11-14 09:05:21,334 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" +2022-11-14 09:05:21,334 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:checksum ;[\n]" +2022-11-14 09:05:21,334 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:isDistributionOf ;[\n]" +2022-11-14 09:05:21,355 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" +2022-11-14 09:05:21,355 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:preview ;[\n]" +2022-11-14 09:05:21,355 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:uncompressedByteSize 7027463 ;[\n]" +2022-11-14 09:05:21,355 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo ;[\n]" +2022-11-14 09:05:21,355 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "Infobox data from the mapping-based extraction, using units of measurement more convenien" +2022-11-14 09:05:21,378 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "t for the resource type, e.g. square kilometres instead of square metres for the area of a city. Normalized dataset matching English DBpedia resources."@en ;[\n]" +2022-11-14 09:05:21,378 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" +2022-11-14 09:05:21,378 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" +2022-11-14 09:05:21,378 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" +2022-11-14 09:05:21,378 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" +2022-11-14 09:05:21,378 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" +2022-11-14 09:05:21,378 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "Specific Mappingbased Properties English Uris"@en ;[\n]" +2022-11-14 09:05:21,378 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:byteSize 458200" +2022-11-14 09:05:21,387 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " ;[\n]" +2022-11-14 09:05:21,387 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:downloadURL ;[\n]" +2022-11-14 09:05:21,387 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:mediaType dataid-mt:MediaType_turtle_x-bzip2 .[\n]" +2022-11-14 09:05:21,387 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:21,387 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:21,387 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:Dataset , dataid-ld:LinkedDataDataset ;[\n]" +2022-11-14 09:05:21,387 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "Short Abstracts English Uris"@en ;[\n]" +2022-11-14 09:05:21,387 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" +2022-11-14 09:05:21,387 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" +2022-11-14 09:05:21,387 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:previousVersion ;[\n]" +2022-11-14 09:05:21,387 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedDatasetRelation[\n]" +2022-11-14 09:05:21,387 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " ;[\n]" +2022-11-14 09:05:21,387 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:relatedDataset ;[\n]" +2022-11-14 09:05:21,387 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo , ;[\n]" +2022-11-14 09:05:21,387 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "Short Abstracts (about 600 characters long) of Wikipedia articles. Normalized dataset matching English DBpedia resources."@en ;[\n]" +2022-11-14 09:05:21,387 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" +2022-11-14 09:05:21,387 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:isPartOf ;[\n]" +2022-11-14 09:05:21,387 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" +2022-11-14 09:05:21,387 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:language ;[\n]" +2022-11-14 09:05:21,387 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" +2022-11-14 09:05:21,387 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" +2022-11-14 09:05:21,387 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" +2022-11-14 09:05:21,387 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "Short Abstracts English Uris"@en ;[\n]" +2022-11-14 09:05:21,387 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " void:rootResource ;[\n]" +2022-11-14 09:05:21,387 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " void:sparqlEndpoint ;[\n]" +2022-11-14 09:05:21,387 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " void:triples 1099339 ;[\n]" +2022-11-14 09:05:21,387 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:distribution , , ;[\n]" +2022-11-14 09:05:21,387 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:keyword "DBpedia"@en , "Short Abstracts English Uris"@en ;[\n]" +2022-11-14 09:05:21,387 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:landingPage ;[\n]" +2022-11-14 09:05:21,387 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " sd:defaultGraph ;[\n]" +2022-11-14 09:05:21,387 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " foaf:page .[\n]" +2022-11-14 09:05:21,387 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:21,387 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:21,387 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid-ld:LinkedDataDataset , dataid:Dataset ;[\n]" +2022-11-14 09:05:21,387 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "Mappingbased Objects English Uris"@en ;[\n]" +2022-11-14 09:05:21,387 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" +2022-11-14 09:05:21,387 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" +2022-11-14 09:05:21,387 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:previousVersion ;[\n]" +2022-11-14 09:05:21,387 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedDatasetRelation[\n]" +2022-11-14 09:05:21,387 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " ;[\n]" +2022-11-14 09:05:21,387 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:relatedDataset ;[\n]" +2022-11-14 09:05:21,387 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo , ;[\n]" +2022-11-14 09:05:21,387 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "High-quality data extracted from Infoboxes using the mapping-based extraction (Object properties only). The predicates in this dataset are in the 'ontology' namespace. Note that this data is of much higher quality than the Raw Infobox Properties in the 'property' namespace. Normalized dataset matching English DBpedia resources."@en ;[\n]" +2022-11-14 09:05:21,387 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" +2022-11-14 09:05:21,395 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:isPartOf ;[\n]" +2022-11-14 09:05:21,395 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" +2022-11-14 09:05:21,395 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:language ;[\n]" +2022-11-14 09:05:21,395 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" +2022-11-14 09:05:21,395 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" +2022-11-14 09:05:21,395 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" +2022-11-14 09:05:21,395 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "Mappingbased Objects English Uris"@en ;[\n]" +2022-11-14 09:05:21,395 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " void:rootResource ;[\n]" +2022-11-14 09:05:21,395 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " void:triples 2296710 ;[\n]" +2022-11-14 09:05:21,395 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:distribution , ;[\n]" +2022-11-14 09:05:21,395 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:keyword "DBpedia"@en , "Mappingbased Ob" +2022-11-14 09:05:21,417 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "jects English Uris"@en ;[\n]" +2022-11-14 09:05:21,417 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:landingPage ;[\n]" +2022-11-14 09:05:21,417 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " sd:defaultGraph ;[\n]" +2022-11-14 09:05:21,417 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " foaf:page .[\n]" +2022-11-14 09:05:21,417 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:21,417 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:21,417 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a " +2022-11-14 09:05:21,430 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:SingleFile ;[\n]" +2022-11-14 09:05:21,430 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "core-i18n/fr/infobox_property_definitions_fr.ttl.bz2" , "Infobox Property Definitions"@en ;[\n]" +2022-11-14 09:05:21,430 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" +2022-11-14 09:05:21,430 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:checksum ;[\n]" +2022-11-14 09:05:21,430 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:isDistributionOf ;[\n]" +2022-11-14 09:05:21,430 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" +2022-11-14 09:05:21,430 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:preview ;[\n]" +2022-11-14 09:05:21,430 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:uncompressedByteSize 5607468 ;[\n]" +2022-11-14 09:05:21,430 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo ;[\n]" +2022-11-14 09:05:21,430 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "All properties predicates used in infoboxes."@en ;[\n]" +2022-11-14 09:05:21,430 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" +2022-11-14 09:05:21,430 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" +2022-11-14 09:05:21,430 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" +2022-11-14 09:05:21,430 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" +2022-11-14 09:05:21,430 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" +2022-11-14 09:05:21,430 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "Infobox Property Definitions"@en ;[\n]" +2022-11-14 09:05:21,430 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:byteSize 259621 ;[\n]" +2022-11-14 09:05:21,430 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:downloadURL ;[\n]" +2022-11-14 09:05:21,430 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:mediaType dataid-mt:MediaType_turtle_x-bzip2 .[\n]" +2022-11-14 09:05:21,430 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:21,430 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:21,430 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:SingleFile ;[\n]" +2022-11-14 09:05:21,430 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "Specific Mappingbased Properties English Uris"@en , "core-i18n/fr/specific_mappingbased_properties_en_uris_fr.tql.bz2" ;[\n]" +2022-11-14 09:05:21,430 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" +2022-11-14 09:05:21,430 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:checksum ;[\n]" +2022-11-14 09:05:21,430 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:isDistributionOf ;[\n]" +2022-11-14 09:05:21,430 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" +2022-11-14 09:05:21,432 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:preview ;[\n]" +2022-11-14 09:05:21,432 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:uncompressedByteSize 15924304 ;[\n]" +2022-11-14 09:05:21,432 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo ;[\n]" +2022-11-14 09:05:21,432 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "Infobox data from the mapping-based extraction, using units of measurement more convenient for the resource type, e.g. square kilometres instead of square metres for the area of a city. Normalized dataset matching English DBpedia resources."@en ;[\n]" +2022-11-14 09:05:21,432 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" +2022-11-14 09:05:21,432 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" +2022-11-14 09:05:21,432 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" +2022-11-14 09:05:21,432 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" +2022-11-14 09:05:21,432 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" +2022-11-14 09:05:21,432 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "Specific Mappingbased Properties English Uris"@en ;[\n]" +2022-11-14 09:05:21,432 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:byteSize 993115 ;[\n]" +2022-11-14 09:05:21,432 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:downloadURL ;[\n]" +2022-11-14 09:05:21,432 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:mediaType dataid-mt:MediaType_n-quads_x-bzip2 .[\n]" +2022-11-14 09:05:21,432 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:21,432 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:21,456 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid-ld:LinkedDataDataset , dataid:Dataset ;[\n]" +2022-11-14 09:05:21,456 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "Template Parameters"@en ;[\n]" +2022-11-14 09:05:21,456 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" +2022-11-14 09:05:21,456 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" +2022-11-14 09:05:21,456 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:previousVersion ;[\n]" +2022-11-14 09:05:21,456 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedDatasetRelation[\n]" +2022-11-14 09:05:21,456 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " ;[\n]" +2022-11-14 09:05:21,456 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:relatedDataset ;[\n]" +2022-11-14 09:05:21,456 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo , ;[\n]" +2022-11-14 09:05:21,456 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "Dataset describing names of template parameters."@en ;[\n]" +2022-11-14 09:05:21,456 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" +2022-11-14 09:05:21,456 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:isPartOf ;[\n]" +2022-11-14 09:05:21,456 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" +2022-11-14 09:05:21,456 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:language ;[\n]" +2022-11-14 09:05:21,456 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" +2022-11-14 09:05:21,456 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified " +2022-11-14 09:05:21,463 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " "2017-07-06"^^xsd:date ;[\n]" +2022-11-14 09:05:21,463 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" +2022-11-14 09:05:21,463 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "Template Parameters"@en ;[\n]" +2022-11-14 09:05:21,463 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " void:rootResource ;[\n]" +2022-11-14 09:05:21,463 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " void:triples 232720 ;[\n]" +2022-11-14 09:05:21,463 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:distribution ;[\n]" +2022-11-14 09:05:21,463 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:keyword "Template Parameters"@en , "DBpedia"@en ;[\n]" +2022-11-14 09:05:21,463 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:landingPage ;[\n]" +2022-11-14 09:05:21,463 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " sd:defaultGraph ;[\n]" +2022-11-14 09:05:21,463 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " foaf:page .[\n]" +2022-11-14 09:05:21,463 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:21,463 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:21,463 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:SingleFile ;[\n]" +2022-11-14 09:05:21,463 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "Page Length"@en , "core-i18n/fr/page_length_fr.tql.bz2" ;[\n]" +2022-11-14 09:05:21,463 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" +2022-11-14 09:05:21,463 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:checksum ;[\n]" +2022-11-14 09:05:21,463 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:isDistributionOf ;[\n]" +2022-11-14 09:05:21,463 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" +2022-11-14 09:05:21,463 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:preview ;[\n]" +2022-11-14 09:05:21,463 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:uncompressedByteSize 745185054 ;[\n]" +2022-11-14 09:05:21,463 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo ;[\n]" +2022-11-14 09:05:21,463 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "Numbers of characters contained in a Wikipedia article's source."@en ;[\n]" +2022-11-14 09:05:21,463 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" +2022-11-14 09:05:21,463 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" +2022-11-14 09:05:21,463 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" +2022-11-14 09:05:21,463 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" +2022-11-14 09:05:21,463 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" +2022-11-14 09:05:21,463 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "Page Length"@en ;[\n]" +2022-11-14 09:05:21,463 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:byteSize 58286648 ;[\n]" +2022-11-14 09:05:21,463 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:downloadURL ;[\n]" +2022-11-14 09:05:21,463 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:mediaType dataid-mt:MediaType_n-quads_x-bzip2 .[\n]" +2022-11-14 09:05:21,463 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:21,463 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:21,463 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:Dataset , dataid-ld:LinkedDataDataset ;[\n]" +2022-11-14 09:05:21,463 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "Disambiguations"@en ;[\n]" +2022-11-14 09:05:21,463 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" +2022-11-14 09:05:21,512 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" +2022-11-14 09:05:21,512 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:previousVersion ;[\n]" +2022-11-14 09:05:21,512 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedDatasetRelation[\n]" +2022-11-14 09:05:21,512 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " ;[\n]" +2022-11-14 09:05:21,512 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:relatedDataset ;[\n]" +2022-11-14 09:05:21,512 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo , ;[\n]" +2022-11-14 09:05:21,512 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "Links extracted from Wikipedia disambiguation pages. Since Wikipedia has no syntax to distinguish disambiguation links from ordinary links, DBpedia has to use heuristics."@en ;[\n]" +2022-11-14 09:05:21,512 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" +2022-11-14 09:05:21,512 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:isPartOf ;[\n]" +2022-11-14 09:05:21,512 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" +2022-11-14 09:05:21,512 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:language ;[\n]" +2022-11-14 09:05:21,512 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" +2022-11-14 09:05:21,512 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" +2022-11-14 09:05:21,512 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" +2022-11-14 09:05:21,512 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title " +2022-11-14 09:05:21,513 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " "Disambiguations"@en ;[\n]" +2022-11-14 09:05:21,513 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " void:rootResource ;[\n]" +2022-11-14 09:05:21,513 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " void:triples 561852 ;[\n]" +2022-11-14 09:05:21,513 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:distribution , ;[\n]" +2022-11-14 09:05:21,513 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:keyword "Disambiguations"@en , "DBpedia"@en ;[\n]" +2022-11-14 09:05:21,513 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:landingPage ;[\n]" +2022-11-14 09:05:21,513 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " sd:defaultGraph ;[\n]" +2022-11-14 09:05:21,513 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " foaf:page .[\n]" +2022-11-14 09:05:21,513 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:21,513 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:21,513 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:SingleFile ;[\n]" +2022-11-14 09:05:21,513 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "Mappingbased Literals English Uris"@en , "core-i18n/fr/mappingbased_literals_en_uris_fr.tql.bz2" ;[\n]" +2022-11-14 09:05:21,513 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" +2022-11-14 09:05:21,513 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:checksum ;[\n]" +2022-11-14 09:05:21,513 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:isDistributionOf ;[\n]" +2022-11-14 09:05:21,513 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:la" +2022-11-14 09:05:21,513 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "testVersion ;[\n]" +2022-11-14 09:05:21,513 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:preview ;[\n]" +2022-11-14 09:05:21,513 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:uncompressedByteSize 698711539 ;[\n]" +2022-11-14 09:05:21,513 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo ;[\n]" +2022-11-14 09:05:21,513 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "High-quality data extracted from Infoboxes using the mapping-based extraction (Literal properties only). The predicates in this dataset are in the ontology namespace. Note that this data is of much higher quality than the Raw Infobox Properties in the 'property' namespace. Normalized dataset matching English DBpedia resources."@en ;[\n]" +2022-11-14 09:05:21,513 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" +2022-11-14 09:05:21,513 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" +2022-11-14 09:05:21,513 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" +2022-11-14 09:05:21,513 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" +2022-11-14 09:05:21,513 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" +2022-11-14 09:05:21,513 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "Mappingbased Literals English Uris"@en ;[\n]" +2022-11-14 09:05:21,514 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:byteSize 44732375 ;[\n]" +2022-11-14 09:05:21,514 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:downloadURL ;[\n]" +2022-11-14 09:05:21,514 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:mediaType dataid-mt:MediaType_n-quads_x-bzip2 .[\n]" +2022-11-14 09:05:21,514 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:21,514 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:21,514 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:SingleFile ;[\n]" +2022-11-14 09:05:21,514 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "Homepages English Uris"@en , "core-i18n/fr/homepages_en_uris_fr.ttl.bz2" ;[\n]" +2022-11-14 09:05:21,514 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" +2022-11-14 09:05:21,514 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:checksum ;[\n]" +2022-11-14 09:05:21,514 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:isDistributionOf ;[\n]" +2022-11-14 09:05:21,514 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" +2022-11-14 09:05:21,514 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:preview ;[\n]" +2022-11-14 09:05:21,514 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:uncompressedByteSize 14936143 ;[\n]" +2022-11-14 09:05:21,514 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo ;[\n]" +2022-11-14 09:05:21,514 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "Links to homepages of persons, organizations etc. Normalized dataset matching English DBpedia resources."@en ;[\n]" +2022-11-14 09:05:21,514 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion " +2022-11-14 09:05:21,558 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " ;[\n]" +2022-11-14 09:05:21,558 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" +2022-11-14 09:05:21,558 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" +2022-11-14 09:05:21,558 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" +2022-11-14 09:05:21,558 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" +2022-11-14 09:05:21,558 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "Homepages English Uris"@en ;[\n]" +2022-11-14 09:05:21,558 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:byteSize 1917160 ;[\n]" +2022-11-14 09:05:21,558 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:downloadURL ;[\n]" +2022-11-14 09:05:21,558 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:mediaType dataid-mt:MediaType_turtle_x-bzip2 .[\n]" +2022-11-14 09:05:21,558 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:21,558 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:21,558 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:SingleFile ;[\n]" +2022-11-14 09:05:21,558 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "Mappingbased Objects English Uris"@en , "core-i18n/fr/mappingbased_objects_en_uris_fr.ttl.bz2" ;[\n]" +2022-11-14 09:05:21,558 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" +2022-11-14 09:05:21,558 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:checksum ;[\n]" +2022-11-14 09:05:21,558 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:isDistributionOf ;[\n]" +2022-11-14 09:05:21,558 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" +2022-11-14 09:05:21,558 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:preview ;[\n]" +2022-11-14 09:05:21,558 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:uncompressedByteSize 310186506 ;[\n]" +2022-11-14 09:05:21,558 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo ;[\n]" +2022-11-14 09:05:21,558 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "High-quality data extracted from Infoboxes using the mapping-based extraction (Object properties only). The predicates in this dataset are in the 'ontology' namespace. Note that this data is of much higher quality than the Raw Infobox Properties in the 'property' namespace. Normalized dataset matching English DBpedia resources."@en ;[\n]" +2022-11-14 09:05:21,558 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" +2022-11-14 09:05:21,558 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" +2022-11-14 09:05:21,558 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" +2022-11-14 09:05:21,558 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" +2022-11-14 09:05:21,558 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" +2022-11-14 09:05:21,558 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "Mappingbased Objects English Uris"@en ;[\n]" +2022-11-14 09:05:21,558 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:byteSize 20619140 ;[\n]" +2022-11-14 09:05:21,558 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:d" +2022-11-14 09:05:21,564 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "ownloadURL ;[\n]" +2022-11-14 09:05:21,564 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:mediaType dataid-mt:MediaType_turtle_x-bzip2 .[\n]" +2022-11-14 09:05:21,564 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:21,564 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:21,564 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:SingleFile ;[\n]" +2022-11-14 09:05:21,564 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "core-i18n/fr/persondata_wkd_uris_fr.ttl.bz2" , "Person data Wikidata Uris"@en ;[\n]" +2022-11-14 09:05:21,564 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" +2022-11-14 09:05:21,564 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:checksum ;[\n]" +2022-11-14 09:05:21,564 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:isDistributionOf ;[\n]" +2022-11-14 09:05:21,564 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" +2022-11-14 09:05:21,564 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:preview ;[\n]" +2022-11-14 09:05:21,564 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:uncompressedByteSize 433683150 ;[\n]" +2022-11-14 09:05:21,564 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo ;[\n]" +2022-11-14 09:05:21,564 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "Information about persons (date and place of birth etc., extracted from the English and German Wikipedia, re" +2022-11-14 09:05:21,565 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "presented using the FOAF vocabulary. Normalized dataset matching Wikidata resources (sorted)."@en ;[\n]" +2022-11-14 09:05:21,565 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" +2022-11-14 09:05:21,565 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" +2022-11-14 09:05:21,565 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" +2022-11-14 09:05:21,565 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" +2022-11-14 09:05:21,565 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" +2022-11-14 09:05:21,565 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "Person data Wikidata Uris"@en ;[\n]" +2022-11-14 09:05:21,565 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:byteSize 18372179 ;[\n]" +2022-11-14 09:05:21,565 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:downloadURL ;[\n]" +2022-11-14 09:05:21,565 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:mediaType dataid-mt:MediaType_turtle_x-bzip2 .[\n]" +2022-11-14 09:05:21,565 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:21,565 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:21,565 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid-ld:LinkedDataDataset , dataid:Dataset ;[\n]" +2022-11-14 09:05:21,565 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "Short Abstracts"@en ;[\n]" +2022-11-14 09:05:21,565 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" +2022-11-14 09:05:21,565 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" +2022-11-14 09:05:21,565 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:previousVersion ;[\n]" +2022-11-14 09:05:21,565 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedDatasetRelation[\n]" +2022-11-14 09:05:21,565 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " ;[\n]" +2022-11-14 09:05:21,596 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:relatedDataset ;[\n]" +2022-11-14 09:05:21,596 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo , ;[\n]" +2022-11-14 09:05:21,596 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "Short Abstracts (about 600 characters long) of Wikipedia articles."@en ;[\n]" +2022-11-14 09:05:21,596 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" +2022-11-14 09:05:21,596 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:isPartOf ;[\n]" +2022-11-14 09:05:21,596 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" +2022-11-14 09:05:21,596 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:language ;[\n]" +2022-11-14 09:05:21,596 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" +2022-11-14 09:05:21,596 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" +2022-11-14 09:05:21,596 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" +2022-11-14 09:05:21,596 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "Short Abstracts"@en ;[\n]" +2022-11-14 09:05:21,596 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " void:rootResource ;[\n]" +2022-11-14 09:05:21,596 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " void:triples 1686181 ;[\n]" +2022-11-14 09:05:21,596 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:distribution , ;[\n]" +2022-11-14 09:05:21,596 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:keyword "Short Abstracts"@en , "DBpedia"@en ;[\n]" +2022-11-14 09:05:21,596 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:landingPage ;[\n]" +2022-11-14 09:05:21,596 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " sd:defaultGraph ;[\n]" +2022-11-14 09:05:21,596 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " foaf:page .[\n]" +2022-11-14 09:05:21,596 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:21,596 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:21,596 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:SingleFile ;[\n]" +2022-11-14 09:05:21,596 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "Geo Coordinates English Uris"@en , "core-i18n/fr/geo_coordinates_en_uris_fr.ttl.bz2" ;[\n]" +2022-11-14 09:05:21,596 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" +2022-11-14 09:05:21,596 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:checksum ;[\n]" +2022-11-14 09:05:21,596 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:isDistributionOf ;[\n]" +2022-11-14 09:05:21,596 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" +2022-11-14 09:05:21,596 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:preview ;[\n]" +2022-11-14 09:05:21,596 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:uncompressedByteSize 17279137 ;[\n]" +2022-11-14 09:05:21,596 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo ;[\n]" +2022-11-14 09:05:21,596 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description " +2022-11-14 09:05:21,604 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " "Geographic coordinates extracted from Wikipedia. Normalized dataset matching English DBpedia resources."@en ;[\n]" +2022-11-14 09:05:21,604 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" +2022-11-14 09:05:21,604 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" +2022-11-14 09:05:21,604 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" +2022-11-14 09:05:21,604 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" +2022-11-14 09:05:21,604 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" +2022-11-14 09:05:21,604 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "Geo Coordinates English Uris"@en ;[\n]" +2022-11-14 09:05:21,604 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:byteSize 925549 ;[\n]" +2022-11-14 09:05:21,604 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:downloadURL ;[\n]" +2022-11-14 09:05:21,604 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:mediaType dataid-mt:MediaType_turtle_x-bzip2 .[\n]" +2022-11-14 09:05:21,604 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:21,604 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:21,604 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:SingleFile ;[\n]" +2022-11-14 09:05:21,604 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "core-i18n/fr/persondata_wkd_uris_fr.tql.bz2" , "Person data Wikidata Uris"@en ;[\n]" +2022-11-14 09:05:21,604 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" +2022-11-14 09:05:21,604 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:checksum ;[\n]" +2022-11-14 09:05:21,604 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:isDistributionOf ;[\n]" +2022-11-14 09:05:21,604 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" +2022-11-14 09:05:21,604 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:preview ;[\n]" +2022-11-14 09:05:21,604 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:uncompressedByteSize 636049497 ;[\n]" +2022-11-14 09:05:21,604 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo ;[\n]" +2022-11-14 09:05:21,604 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "Information about persons (date and place of birth etc., extracted from the English and German Wikipedia, represented using the FOAF vocabulary. Normalized dataset matching Wikidata resources (sorted)."@en ;[\n]" +2022-11-14 09:05:21,604 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" +2022-11-14 09:05:21,604 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" +2022-11-14 09:05:21,604 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" +2022-11-14 09:05:21,604 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" +2022-11-14 09:05:21,604 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" +2022-11-14 09:05:21,604 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "Person data Wikidata Uris"@en ;[\n]" +2022-11-14 09:05:21,604 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:byteSize 29557229 ;[\n]" +2022-11-14 09:05:21,604 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:downloadURL ;[\n]" +2022-11-14 09:05:21,652 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:mediaType dataid-mt:MediaType_n-quads_x-bzip2 .[\n]" +2022-11-14 09:05:21,652 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:21,652 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:21,652 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:SingleFile ;[\n]" +2022-11-14 09:05:21,652 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "core-i18n/fr/external_links_en_uris_fr.tql.bz2" , "External Links English Uris"@en ;[\n]" +2022-11-14 09:05:21,652 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" +2022-11-14 09:05:21,652 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:checksum ;[\n]" +2022-11-14 09:05:21,652 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:isDistributionOf ;[\n]" +2022-11-14 09:05:21,652 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" +2022-11-14 09:05:21,652 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:preview ;[\n]" +2022-11-14 09:05:21,652 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:uncompressedByteSize 347896011 ;[\n]" +2022-11-14 09:05:21,652 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo ;[\n]" +2022-11-14 09:05:21,652 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "Links to external web pages about a concept. Normalized dataset matching English DBpedia resources."@en ;[\n]" +2022-11-14 09:05:21,652 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" +2022-11-14 09:05:21,652 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" +2022-11-14 09:05:21,652 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" +2022-11-14 09:05:21,652 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" +2022-11-14 09:05:21,652 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" +2022-11-14 09:05:21,652 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "External Links English Uris"@en ;[\n]" +2022-11-14 09:05:21,652 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:byteSize 39231236 ;[\n]" +2022-11-14 09:05:21,652 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:downloadURL ;[\n]" +2022-11-14 09:05:21,652 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:mediaType dataid-mt:MediaType_n-quads_x-bzip2 .[\n]" +2022-11-14 09:05:21,652 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:21,652 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:21,652 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:SingleFile ;[\n]" +2022-11-14 09:05:21,652 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "Geo Coordinates"@en , "core-i18n/fr/geo_coordinates_fr.tql.bz2" ;[\n]" +2022-11-14 09:05:21,652 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" +2022-11-14 09:05:21,652 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:checksum ;[\n]" +2022-11-14 09:05:21,652 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:isDistributionOf ;[\n]" +2022-11-14 09:05:21,652 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" +2022-11-14 09:05:21,659 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:preview ;[\n]" +2022-11-14 09:05:21,659 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:uncompressedByteSize 32446253 ;[\n]" +2022-11-14 09:05:21,659 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo ;[\n]" +2022-11-14 09:05:21,659 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "Geographic coordinates extracted from Wikipedia."@en ;[\n]" +2022-11-14 09:05:21,659 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" +2022-11-14 09:05:21,659 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" +2022-11-14 09:05:21,659 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" +2022-11-14 09:05:21,659 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" +2022-11-14 09:05:21,659 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" +2022-11-14 09:05:21,659 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "Geo Coordinates"@en ;[\n]" +2022-11-14 09:05:21,659 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:byteSize 1752256 ;[\n]" +2022-11-14 09:05:21,659 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:downloadURL ;[\n]" +2022-11-14 09:05:21,659 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:mediaType dataid-mt:MediaType_n-quads_x-bzip2 .[\n]" +2022-11-14 09:05:21,659 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:21,659 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:21,659 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:SingleFile ;[\n]" +2022-11-14 09:05:21,659 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "core-i18n/fr/infobox_properties_fr.ttl.bz2" , "Infobox Properties"@en ;[\n]" +2022-11-14 09:05:21,659 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" +2022-11-14 09:05:21,659 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:checksum ;[\n]" +2022-11-14 09:05:21,659 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:isDistributionOf ;[\n]" +2022-11-14 09:05:21,659 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" +2022-11-14 09:05:21,659 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:preview ;[\n]" +2022-11-14 09:05:21,659 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:uncompressedByteSize 2724575458 ;[\n]" +2022-11-14 09:05:21,659 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo ;[\n]" +2022-11-14 09:05:21,659 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "Information that has been extracted from Wikipedia infoboxes. Note that this data is in the less clean 'property' namespace. The Mapping-based Properties in the 'ontology' namespace, should always be preferred over this data."@en ;[\n]" +2022-11-14 09:05:21,659 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" +2022-11-14 09:05:21,659 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" +2022-11-14 09:05:21,659 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" +2022-11-14 09:05:21,659 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xs" +2022-11-14 09:05:21,711 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "d:date ;[\n]" +2022-11-14 09:05:21,711 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" +2022-11-14 09:05:21,711 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "Infobox Properties"@en ;[\n]" +2022-11-14 09:05:21,711 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:byteSize 166283116 ;[\n]" +2022-11-14 09:05:21,711 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:downloadURL ;[\n]" +2022-11-14 09:05:21,711 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:mediaType dataid-mt:MediaType_turtle_x-bzip2 .[\n]" +2022-11-14 09:05:21,711 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:21,711 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:21,711 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid-ld:LinkedDataDataset , dataid:Dataset ;[\n]" +2022-11-14 09:05:21,711 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "French Population"@en ;[\n]" +2022-11-14 09:05:21,711 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" +2022-11-14 09:05:21,711 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" +2022-11-14 09:05:21,711 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:previousVersion ;[\n]" +2022-11-14 09:05:21,711 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedDatasetRelation[\n]" +2022-11-14 09:05:21,711 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " ;[\n]" +2022-11-14 09:05:21,711 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:relatedDataset ;[\n]" +2022-11-14 09:05:21,711 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo , ;[\n]" +2022-11-14 09:05:21,711 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "French dataset about population."@en ;[\n]" +2022-11-14 09:05:21,711 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" +2022-11-14 09:05:21,711 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:isPartOf ;[\n]" +2022-11-14 09:05:21,711 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" +2022-11-14 09:05:21,711 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:language ;[\n]" +2022-11-14 09:05:21,711 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" +2022-11-14 09:05:21,711 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" +2022-11-14 09:05:21,711 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" +2022-11-14 09:05:21,711 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "French Population"@en ;[\n]" +2022-11-14 09:05:21,711 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " void:rootResource ;[\n]" +2022-11-14 09:05:21,711 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " void:triples 42967 ;[\n]" +2022-11-14 09:05:21,711 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:distribution , ;[\n]" +2022-11-14 09:05:21,711 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:keyword "French Population"@en , "DBpedia"@en ;[\n]" +2022-11-14 09:05:21,711 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:landingPage ;[\n]" +2022-11-14 09:05:21,711 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " sd:defaultGraph ;[\n]" +2022-11-14 09:05:21,711 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " foaf:page .[\n]" +2022-11-14 09:05:21,711 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:21,711 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:21,711 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid-ld:LinkedDataDataset , dataid:Dataset ;[\n]" +2022-11-14 09:05:21,711 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:la" +2022-11-14 09:05:21,720 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "bel "Mappingbased Objects Disjoint Domain"@en ;[\n]" +2022-11-14 09:05:21,720 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" +2022-11-14 09:05:21,720 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" +2022-11-14 09:05:21,720 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:previousVersion ;[\n]" +2022-11-14 09:05:21,720 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedDatasetRelation[\n]" +2022-11-14 09:05:21,720 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " ;[\n]" +2022-11-14 09:05:21,720 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:relatedDataset ;[\n]" +2022-11-14 09:05:21,720 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo , ;[\n]" +2022-11-14 09:05:21,720 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "Errors detected in the mapping based properties (disjoint domain)."@en ;[\n]" +2022-11-14 09:05:21,720 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" +2022-11-14 09:05:21,720 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:isPartOf ;[\n]" +2022-11-14 09:05:21,720 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" +2022-11-14 09:05:21,720 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:language ;[\n]" +2022-11-14 09:05:21,720 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" +2022-11-14 09:05:21,720 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" +2022-11-14 09:05:21,720 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" +2022-11-14 09:05:21,720 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "Mappingbased Objects Disjoint Domain"@en ;[\n]" +2022-11-14 09:05:21,720 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " void:rootResource ;[\n]" +2022-11-14 09:05:21,720 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " void:triples 16840 ;[\n]" +2022-11-14 09:05:21,720 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:distribution , ;[\n]" +2022-11-14 09:05:21,720 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:keyword "DBpedia"@en , "Mappingbased Objects Disjoint Domain"@en ;[\n]" +2022-11-14 09:05:21,720 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:landingPage ;[\n]" +2022-11-14 09:05:21,720 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " sd:defaultGraph ;[\n]" +2022-11-14 09:05:21,720 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " foaf:page .[\n]" +2022-11-14 09:05:21,720 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:21,720 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:21,720 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:SingleFile ;[\n]" +2022-11-14 09:05:21,720 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "Labels English Uris"@en , "core-i18n/fr/labels_en_uris_fr.tql.bz2" ;[\n]" +2022-11-14 09:05:21,720 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" +2022-11-14 09:05:21,720 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:checksum ;[\n]" +2022-11-14 09:05:21,777 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:isDistributionOf ;[\n]" +2022-11-14 09:05:21,777 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" +2022-11-14 09:05:21,777 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:preview ;[\n]" +2022-11-14 09:05:21,777 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:uncompressedByteSize 215618136 ;[\n]" +2022-11-14 09:05:21,777 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo ;[\n]" +2022-11-14 09:05:21,777 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "Titles of all Wikipedia Articles in the corresponding language. In Wikidata, it contains all the languages available in the mappings wiki, labels_nmw contains the rest Normalized dataset matching English DBpedia resources."@en ;[\n]" +2022-11-14 09:05:21,777 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" +2022-11-14 09:05:21,777 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" +2022-11-14 09:05:21,777 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" +2022-11-14 09:05:21,777 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" +2022-11-14 09:05:21,777 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" +2022-11-14 09:05:21,777 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "Labels English Uris"@en ;[\n]" +2022-11-14 09:05:21,777 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:byteSize 27811542 ;[\n]" +2022-11-14 09:05:21,777 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:downloadURL ;[\n]" +2022-11-14 09:05:21,777 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:mediaType dataid-mt:MediaType_n-quads_x-bzip2 .[\n]" +2022-11-14 09:05:21,777 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:21,777 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:21,777 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:Dataset , dataid-ld:LinkedDataDataset ;[\n]" +2022-11-14 09:05:21,777 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "Mappingbased Objects Disjoint Range"@en ;[\n]" +2022-11-14 09:05:21,777 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" +2022-11-14 09:05:21,777 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" +2022-11-14 09:05:21,777 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:previousVersion ;[\n]" +2022-11-14 09:05:21,777 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedDatasetRelation[\n]" +2022-11-14 09:05:21,777 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " ;[\n]" +2022-11-14 09:05:21,777 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:relatedDataset ;[\n]" +2022-11-14 09:05:21,777 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo , ;[\n]" +2022-11-14 09:05:21,777 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "Errors detected in the mapping based properties (disjoint range)."@en ;[\n]" +2022-11-14 09:05:21,777 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" +2022-11-14 09:05:21,777 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:isPartOf ;[\n]" +2022-11-14 09:05:21,780 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" +2022-11-14 09:05:21,780 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:language ;[\n]" +2022-11-14 09:05:21,780 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" +2022-11-14 09:05:21,780 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" +2022-11-14 09:05:21,780 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" +2022-11-14 09:05:21,780 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "Mappingbased Objects Disjoint Range"@en ;[\n]" +2022-11-14 09:05:21,780 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " void:rootResource ;[\n]" +2022-11-14 09:05:21,780 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " void:triples 6420 ;[\n]" +2022-11-14 09:05:21,780 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:distribution , ;[\n]" +2022-11-14 09:05:21,780 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:keyword "Mappingbased Objects Disjoint Range"@en , "DBpedia"@en ;[\n]" +2022-11-14 09:05:21,780 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:landingPage ;[\n]" +2022-11-14 09:05:21,780 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " sd:defaultGraph ;[\n]" +2022-11-14 09:05:21,780 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " foaf:page .[\n]" +2022-11-14 09:05:21,780 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:21,780 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:21,780 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid-ld:LinkedDataDataset , dataid:Dataset ;[\n]" +2022-11-14 09:05:21,780 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "French Population English Uris"@en ;[\n]" +2022-11-14 09:05:21,780 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" +2022-11-14 09:05:21,780 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" +2022-11-14 09:05:21,780 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedDatasetRelation[\n]" +2022-11-14 09:05:21,780 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " ;[\n]" +2022-11-14 09:05:21,780 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:relatedDataset ;[\n]" +2022-11-14 09:05:21,780 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo , ;[\n]" +2022-11-14 09:05:21,780 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "French dataset about population. Normalized dataset matching English DBpedia resources."@en ;[\n]" +2022-11-14 09:05:21,780 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" +2022-11-14 09:05:21,780 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:isPartOf ;[\n]" +2022-11-14 09:05:21,780 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" +2022-11-14 09:05:21,780 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:language ;[\n]" +2022-11-14 09:05:21,780 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" +2022-11-14 09:05:21,780 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" +2022-11-14 09:05:21,780 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" +2022-11-14 09:05:21,780 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "French Population English Uris"@en ;[\n]" +2022-11-14 09:05:21,780 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " void:rootResource" +2022-11-14 09:05:21,835 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " ;[\n]" +2022-11-14 09:05:21,835 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " void:triples 38279 ;[\n]" +2022-11-14 09:05:21,835 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:distribution , ;[\n]" +2022-11-14 09:05:21,835 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:keyword "French Population English Uris"@en , "DBpedia"@en ;[\n]" +2022-11-14 09:05:21,835 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:landingPage ;[\n]" +2022-11-14 09:05:21,835 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " sd:defaultGraph ;[\n]" +2022-11-14 09:05:21,835 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " foaf:page .[\n]" +2022-11-14 09:05:21,835 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:21,835 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:21,835 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:SingleFile ;[\n]" +2022-11-14 09:05:21,835 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "Category Labels. Wikidata Uris"@en , "core-i18n/fr/category_labels_wkd_uris_fr.ttl.bz2" ;[\n]" +2022-11-14 09:05:21,835 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" +2022-11-14 09:05:21,835 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:checksum ;[\n]" +2022-11-14 09:05:21,835 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:isDistributionOf ;[\n]" +2022-11-14 09:05:21,835 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" +2022-11-14 09:05:21,835 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:preview ;[\n]" +2022-11-14 09:05:21,835 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:uncompressedByteSize 36610974 ;[\n]" +2022-11-14 09:05:21,835 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo ;[\n]" +2022-11-14 09:05:21,835 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "Labels for Categories. Normalized dataset matching Wikidata resources (sorted)."@en ;[\n]" +2022-11-14 09:05:21,835 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" +2022-11-14 09:05:21,835 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" +2022-11-14 09:05:21,835 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" +2022-11-14 09:05:21,835 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" +2022-11-14 09:05:21,835 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" +2022-11-14 09:05:21,835 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "Category Labels. Wikidata Uris"@en ;[\n]" +2022-11-14 09:05:21,835 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:byteSize 2518920 ;[\n]" +2022-11-14 09:05:21,835 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:downloadURL ;[\n]" +2022-11-14 09:05:21,835 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:mediaType dataid-mt:MediaType_turtle_x-bzip2 .[\n]" +2022-11-14 09:05:21,835 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:21,835 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:21,835 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:Dataset , dataid-ld:LinkedData" +2022-11-14 09:05:21,836 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "Dataset ;[\n]" +2022-11-14 09:05:21,836 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "SKOS Categories"@en ;[\n]" +2022-11-14 09:05:21,836 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" +2022-11-14 09:05:21,836 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" +2022-11-14 09:05:21,836 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:previousVersion ;[\n]" +2022-11-14 09:05:21,836 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedDatasetRelation[\n]" +2022-11-14 09:05:21,836 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " ;[\n]" +2022-11-14 09:05:21,836 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:relatedDataset ;[\n]" +2022-11-14 09:05:21,836 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo , ;[\n]" +2022-11-14 09:05:21,836 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "Information which concept is a category and how categories are related using the SKOS Vocabulary."@en ;[\n]" +2022-11-14 09:05:21,836 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" +2022-11-14 09:05:21,836 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:isPartOf ;[\n]" +2022-11-14 09:05:21,836 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" +2022-11-14 09:05:21,836 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:language ;[\n]" +2022-11-14 09:05:21,836 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" +2022-11-14 09:05:21,836 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" +2022-11-14 09:05:21,836 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" +2022-11-14 09:05:21,836 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "SKOS Categories"@en ;[\n]" +2022-11-14 09:05:21,836 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " void:rootResource ;[\n]" +2022-11-14 09:05:21,836 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " void:triples 1394960 ;[\n]" +2022-11-14 09:05:21,836 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:distribution , ;[\n]" +2022-11-14 09:05:21,836 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:keyword "SKOS Categories"@en , "DBpedia"@en ;[\n]" +2022-11-14 09:05:21,836 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:landingPage ;[\n]" +2022-11-14 09:05:21,836 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " sd:defaultGraph ;[\n]" +2022-11-14 09:05:21,836 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " foaf:page .[\n]" +2022-11-14 09:05:21,837 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:21,837 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:21,837 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:SingleFile ;[\n]" +2022-11-14 09:05:21,837 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "core-i18n/fr/specific_mappingbased_properties_fr.tql.bz2" , "Specific Mappingbased Properties"@en ;[\n]" +2022-11-14 09:05:21,837 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" +2022-11-14 09:05:21,837 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:checksum ;[\n]" +2022-11-14 09:05:21,837 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:isDistributionOf ;[\n]" +2022-11-14 09:05:21,878 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" +2022-11-14 09:05:21,878 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:preview ;[\n]" +2022-11-14 09:05:21,878 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:uncompressedByteSize 20446922 ;[\n]" +2022-11-14 09:05:21,878 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo ;[\n]" +2022-11-14 09:05:21,878 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "Infobox data from the mapping-based extraction, using units of measurement more convenient for the resource type, e.g. square kilometres instead of square metres for the area of a city."@en ;[\n]" +2022-11-14 09:05:21,878 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" +2022-11-14 09:05:21,878 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" +2022-11-14 09:05:21,878 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" +2022-11-14 09:05:21,878 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" +2022-11-14 09:05:21,878 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" +2022-11-14 09:05:21,878 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "Specific Mappingbased Properties"@en ;[\n]" +2022-11-14 09:05:21,878 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:byteSize 1217404 ;[\n]" +2022-11-14 09:05:21,878 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:downloadURL ;[\n]" +2022-11-14 09:05:21,879 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:mediaType dataid-mt:MediaType_n-quads_x-bzip2 .[\n]" +2022-11-14 09:05:21,879 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:21,879 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:21,879 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:SingleFile ;[\n]" +2022-11-14 09:05:21,879 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "core-i18n/fr/category_labels_wkd_uris_fr.tql.bz2" , "Category Labels. Wikidata Uris"@en ;[\n]" +2022-11-14 09:05:21,879 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" +2022-11-14 09:05:21,879 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:checksum ;[\n]" +2022-11-14 09:05:21,879 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:isDistributionOf ;[\n]" +2022-11-14 09:05:21,879 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" +2022-11-14 09:05:21,879 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:preview ;[\n]" +2022-11-14 09:05:21,879 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:uncompressedByteSize 60963104 ;[\n]" +2022-11-14 09:05:21,879 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo ;[\n]" +2022-11-14 09:05:21,879 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "Labels for Categories. Normalized dataset matching Wikidata resources (sorted)."@en ;[\n]" +2022-11-14 09:05:21,879 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" +2022-11-14 09:05:21,884 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" +2022-11-14 09:05:21,884 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" +2022-11-14 09:05:21,884 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" +2022-11-14 09:05:21,884 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" +2022-11-14 09:05:21,884 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "Category Labels. Wikidata Uris"@en ;[\n]" +2022-11-14 09:05:21,884 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:byteSize 5151868 ;[\n]" +2022-11-14 09:05:21,884 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:downloadURL ;[\n]" +2022-11-14 09:05:21,884 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:mediaType dataid-mt:MediaType_n-quads_x-bzip2 .[\n]" +2022-11-14 09:05:21,884 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:21,884 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:21,884 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid-ld:LinkedDataDataset , dataid:Dataset ;[\n]" +2022-11-14 09:05:21,884 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "Infobox Properties"@en ;[\n]" +2022-11-14 09:05:21,884 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" +2022-11-14 09:05:21,884 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" +2022-11-14 09:05:21,884 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:previousVersion ;[\n]" +2022-11-14 09:05:21,884 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedDatasetRelation[\n]" +2022-11-14 09:05:21,884 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " ;[\n]" +2022-11-14 09:05:21,884 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:relatedDataset ;[\n]" +2022-11-14 09:05:21,885 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo , ;[\n]" +2022-11-14 09:05:21,885 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "Information that has been extracted from Wikipedia infoboxes. Note that this data is in the less clean 'property' namespace. The Mapping-based Properties in the 'ontology' namespace, should always be preferred over this data."@en ;[\n]" +2022-11-14 09:05:21,885 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" +2022-11-14 09:05:21,885 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:isPartOf ;[\n]" +2022-11-14 09:05:21,885 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" +2022-11-14 09:05:21,885 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:language ;[\n]" +2022-11-14 09:05:21,885 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" +2022-11-14 09:05:21,885 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" +2022-11-14 09:05:21,885 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" +2022-11-14 09:05:21,885 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "Infobox Properties"@en ;[\n]" +2022-11-14 09:05:21,885 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " void:rootResource ;[\n]" +2022-11-14 09:05:21,885 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " void:triples 16052189 ;[\n]" +2022-11-14 09:05:21,885 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:distribution , ;[\n]" +2022-11-14 09:05:21,919 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:keyword "DBpedia"@en , "Infobox Properties"@en ;[\n]" +2022-11-14 09:05:21,919 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:landingPage ;[\n]" +2022-11-14 09:05:21,919 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " sd:defaultGraph ;[\n]" +2022-11-14 09:05:21,919 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " foaf:page .[\n]" +2022-11-14 09:05:21,919 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:21,919 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:21,919 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:SingleFile ;[\n]" +2022-11-14 09:05:21,919 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "core-i18n/fr/infobox_property_definitions_en_uris_fr.ttl.bz2" , "Infobox Property Definitions English Uris"@en ;[\n]" +2022-11-14 09:05:21,919 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" +2022-11-14 09:05:21,919 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:checksum ;[\n]" +2022-11-14 09:05:21,919 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:isDistributionOf ;[\n]" +2022-11-14 09:05:21,919 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" +2022-11-14 09:05:21,919 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:preview ;[\n]" +2022-11-14 09:05:21,922 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:uncompressedByteSize 5456947 ;[\n]" +2022-11-14 09:05:21,922 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo ;[\n]" +2022-11-14 09:05:21,922 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "All properties predicates used in infoboxes. Normalized dataset matching English DBpedia resources."@en ;[\n]" +2022-11-14 09:05:21,922 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" +2022-11-14 09:05:21,922 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" +2022-11-14 09:05:21,922 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" +2022-11-14 09:05:21,922 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" +2022-11-14 09:05:21,922 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" +2022-11-14 09:05:21,922 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "Infobox Property Definitions English Uris"@en ;[\n]" +2022-11-14 09:05:21,922 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:byteSize 258033 ;[\n]" +2022-11-14 09:05:21,922 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:downloadURL ;[\n]" +2022-11-14 09:05:21,922 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:mediaType dataid-mt:MediaType_turtle_x-bzip2 .[\n]" +2022-11-14 09:05:21,922 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:21,922 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:21,922 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:SingleFile ;[\n]" +2022-11-14 09:05:21,922 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "Infobox Property Definitions Wikidata Uris"@en , "core-i18n/fr/infobox_property_definitions_wkd_" +2022-11-14 09:05:21,923 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "uris_fr.tql.bz2" ;[\n]" +2022-11-14 09:05:21,923 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" +2022-11-14 09:05:21,923 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:checksum ;[\n]" +2022-11-14 09:05:21,923 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:isDistributionOf ;[\n]" +2022-11-14 09:05:21,923 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" +2022-11-14 09:05:21,923 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:preview ;[\n]" +2022-11-14 09:05:21,923 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:uncompressedByteSize 12535275 ;[\n]" +2022-11-14 09:05:21,923 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo ;[\n]" +2022-11-14 09:05:21,923 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "All properties predicates used in infoboxes. Normalized dataset matching Wikidata resources (sorted)."@en ;[\n]" +2022-11-14 09:05:21,923 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" +2022-11-14 09:05:21,923 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" +2022-11-14 09:05:21,923 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" +2022-11-14 09:05:21,923 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" +2022-11-14 09:05:21,923 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " " +2022-11-14 09:05:21,932 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" +2022-11-14 09:05:21,932 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "Infobox Property Definitions Wikidata Uris"@en ;[\n]" +2022-11-14 09:05:21,932 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:byteSize 820217 ;[\n]" +2022-11-14 09:05:21,932 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:downloadURL ;[\n]" +2022-11-14 09:05:21,932 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:mediaType dataid-mt:MediaType_n-quads_x-bzip2 .[\n]" +2022-11-14 09:05:21,932 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:21,932 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:21,932 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:Dataset , dataid-ld:LinkedDataDataset ;[\n]" +2022-11-14 09:05:21,932 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "External Links Wikidata Uris"@en ;[\n]" +2022-11-14 09:05:21,932 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" +2022-11-14 09:05:21,932 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" +2022-11-14 09:05:21,932 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:previousVersion ;[\n]" +2022-11-14 09:05:21,932 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedDatasetRelation[\n]" +2022-11-14 09:05:21,932 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " ;[\n]" +2022-11-14 09:05:21,932 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:relatedDataset ;[\n]" +2022-11-14 09:05:21,932 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo , ;[\n]" +2022-11-14 09:05:21,932 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "Links to external web pages about a " +2022-11-14 09:05:21,933 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "concept. Normalized dataset matching Wikidata resources (sorted)."@en ;[\n]" +2022-11-14 09:05:21,933 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" +2022-11-14 09:05:21,933 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:isPartOf ;[\n]" +2022-11-14 09:05:21,933 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" +2022-11-14 09:05:21,933 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:language ;[\n]" +2022-11-14 09:05:21,933 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" +2022-11-14 09:05:21,933 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" +2022-11-14 09:05:21,933 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" +2022-11-14 09:05:21,933 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "External Links Wikidata Uris"@en ;[\n]" +2022-11-14 09:05:21,933 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " void:rootResource ;[\n]" +2022-11-14 09:05:21,933 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " void:triples 1779435 ;[\n]" +2022-11-14 09:05:21,933 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:distribution , ;[\n]" +2022-11-14 09:05:21,933 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:keyword "DBpedia"@en , "External Links Wikidata Uris"@en ;[\n]" +2022-11-14 09:05:21,933 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:landingPage ;[\n]" +2022-11-14 09:05:21,933 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " sd:defaultGraph ;[\n]" +2022-11-14 09:05:21,933 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " foaf:page .[\n]" +2022-11-14 09:05:21,935 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:21,935 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:21,935 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:SingleFile ;[\n]" +2022-11-14 09:05:21,935 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "core-i18n/fr/infobox_property_definitions_en_uris_fr.tql.bz2" , "Infobox Property Definitions English Uris"@en ;[\n]" +2022-11-14 09:05:21,935 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" +2022-11-14 09:05:21,935 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:checksum ;[\n]" +2022-11-14 09:05:21,935 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:isDistributionOf ;[\n]" +2022-11-14 09:05:21,935 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" +2022-11-14 09:05:21,935 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:preview ;[\n]" +2022-11-14 09:05:21,935 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:uncompressedByteSize 12155349 ;[\n]" +2022-11-14 09:05:21,935 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo ;[\n]" +2022-11-14 09:05:21,935 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "All properties predicates used in infoboxes. Normalized dataset matching English DBpedia resources."@en ;[\n]" +2022-11-14 09:05:21,935 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion" +2022-11-14 09:05:21,936 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " ;[\n]" +2022-11-14 09:05:21,936 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" +2022-11-14 09:05:21,936 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" +2022-11-14 09:05:21,936 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" +2022-11-14 09:05:21,936 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" +2022-11-14 09:05:21,936 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "Infobox Property Definitions English Uris"@en ;[\n]" +2022-11-14 09:05:21,936 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:byteSize 760941 ;[\n]" +2022-11-14 09:05:21,936 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:downloadURL ;[\n]" +2022-11-14 09:05:21,936 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:mediaType dataid-mt:MediaType_n-quads_x-bzip2 .[\n]" +2022-11-14 09:05:21,936 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:21,936 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:21,936 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid-ld:LinkedDataDataset , dataid:Dataset ;[\n]" +2022-11-14 09:05:21,936 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "Infobox Property Definitions Wikidata Uris"@en ;[\n]" +2022-11-14 09:05:21,936 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" +2022-11-14 09:05:21,936 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" +2022-11-14 09:05:21,936 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:previousVersion ;[\n]" +2022-11-14 09:05:21,936 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedDatasetRelation[\n]" +2022-11-14 09:05:21,936 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " ;[\n]" +2022-11-14 09:05:21,937 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:relatedDataset ;[\n]" +2022-11-14 09:05:21,937 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo , ;[\n]" +2022-11-14 09:05:21,937 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "All properties predicates used in infoboxes. Normalized dataset matching Wikidata resources (sorted)."@en ;[\n]" +2022-11-14 09:05:21,937 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" +2022-11-14 09:05:21,937 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:isPartOf ;[\n]" +2022-11-14 09:05:21,937 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" +2022-11-14 09:05:21,937 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:language ;[\n]" +2022-11-14 09:05:21,937 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" +2022-11-14 09:05:21,937 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" +2022-11-14 09:05:21,937 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" +2022-11-14 09:05:21,937 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "Infobox Property Definitions Wikidata Uris"@en ;[\n]" +2022-11-14 09:05:21,937 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " void:rootResource ;[\n]" +2022-11-14 09:05:21,937 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " void:triples 42214 ;[\n]" +2022-11-14 09:05:21,937 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:distribution , ;[\n]" +2022-11-14 09:05:21,939 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:keyword "DBpedia"@en , "Infobox Property Definitions Wikidata Uris"@en ;[\n]" +2022-11-14 09:05:21,939 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:landingPage ;[\n]" +2022-11-14 09:05:21,939 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " sd:defaultGraph ;[\n]" +2022-11-14 09:05:21,939 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " foaf:page .[\n]" +2022-11-14 09:05:21,939 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:21,939 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:21,939 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:SingleFile ;[\n]" +2022-11-14 09:05:21,939 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "Labels Wikidata Uris"@en , "core-i18n/fr/labels_wkd_uris_fr.ttl.bz2" ;[\n]" +2022-11-14 09:05:21,939 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" +2022-11-14 09:05:21,939 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:checksum ;[\n]" +2022-11-14 09:05:21,939 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:isDistributionOf ;[\n]" +2022-11-14 09:05:21,939 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" +2022-11-14 09:05:21,939 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:preview ;[\n]" +2022-11-14 09:05:21,939 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:uncompr" +2022-11-14 09:05:21,940 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "essedByteSize 215950219 ;[\n]" +2022-11-14 09:05:21,940 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo ;[\n]" +2022-11-14 09:05:21,940 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "Titles of all Wikipedia Articles in the corresponding language. In Wikidata, it contains all the languages available in the mappings wiki, labels_nmw contains the rest Normalized dataset matching Wikidata resources (sorted)."@en ;[\n]" +2022-11-14 09:05:21,940 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" +2022-11-14 09:05:21,940 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" +2022-11-14 09:05:21,940 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" +2022-11-14 09:05:21,940 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" +2022-11-14 09:05:21,940 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" +2022-11-14 09:05:21,940 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "Labels Wikidata Uris"@en ;[\n]" +2022-11-14 09:05:21,940 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:byteSize 18411219 ;[\n]" +2022-11-14 09:05:21,940 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:downloadURL ;[\n]" +2022-11-14 09:05:21,940 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:mediaType dataid-mt:MediaType_turtle_x-bzip2 .[\n]" +2022-11-14 09:05:21,940 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:21,940 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:21,940 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:SingleFile ;[\n]" +2022-11-14 09:05:21,940 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "Category Labels."@en , "core-i18n/fr/category_labels_fr.tql.bz2" ;[\n]" +2022-11-14 09:05:21,940 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associated" +2022-11-14 09:05:21,941 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "Agent ;[\n]" +2022-11-14 09:05:21,941 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:checksum ;[\n]" +2022-11-14 09:05:21,941 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:isDistributionOf ;[\n]" +2022-11-14 09:05:21,941 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" +2022-11-14 09:05:21,941 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:preview ;[\n]" +2022-11-14 09:05:21,941 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:uncompressedByteSize 84428293 ;[\n]" +2022-11-14 09:05:21,941 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo ;[\n]" +2022-11-14 09:05:21,941 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "Labels for Categories."@en ;[\n]" +2022-11-14 09:05:21,941 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" +2022-11-14 09:05:21,941 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" +2022-11-14 09:05:21,941 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" +2022-11-14 09:05:21,941 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" +2022-11-14 09:05:21,941 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" +2022-11-14 09:05:21,941 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "Category Labels."@en ;[\n]" +2022-11-14 09:05:21,941 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:byteSize 6537704 ;[\n]" +2022-11-14 09:05:21,941 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:downloadURL ;[\n]" +2022-11-14 09:05:21,965 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:mediaType dataid-mt:MediaType_n-quads_x-bzip2 .[\n]" +2022-11-14 09:05:21,965 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:21,965 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:21,965 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:SingleFile ;[\n]" +2022-11-14 09:05:21,965 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "core-i18n/fr/revision_ids_fr.tql.bz2" , "Revision Ids"@en ;[\n]" +2022-11-14 09:05:21,965 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" +2022-11-14 09:05:21,965 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:checksum ;[\n]" +2022-11-14 09:05:21,965 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:isDistributionOf ;[\n]" +2022-11-14 09:05:21,965 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" +2022-11-14 09:05:21,965 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:preview ;[\n]" +2022-11-14 09:05:21,965 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:uncompressedByteSize 897397155 ;[\n]" +2022-11-14 09:05:21,965 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo ;[\n]" +2022-11-14 09:05:21,965 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "Dataset linking a DBpedia resource to the revision ID of the Wikipedia article the data was extracted from."@en ;[\n]" +2022-11-14 09:05:21,965 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" +2022-11-14 09:05:21,965 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc" +2022-11-14 09:05:21,981 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << ":issued "2017-07-01"^^xsd:date ;[\n]" +2022-11-14 09:05:21,981 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" +2022-11-14 09:05:21,981 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" +2022-11-14 09:05:21,981 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" +2022-11-14 09:05:21,981 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "Revision Ids"@en ;[\n]" +2022-11-14 09:05:21,981 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:byteSize 73706230 ;[\n]" +2022-11-14 09:05:21,981 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:downloadURL ;[\n]" +2022-11-14 09:05:21,981 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:mediaType dataid-mt:MediaType_n-quads_x-bzip2 .[\n]" +2022-11-14 09:05:21,981 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:21,981 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:21,981 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:SingleFile ;[\n]" +2022-11-14 09:05:21,981 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "core-i18n/fr/redirects_fr.tql.bz2" , "Redirects"@en ;[\n]" +2022-11-14 09:05:21,981 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" +2022-11-14 09:05:21,981 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:checksum ;[\n]" +2022-11-14 09:05:21,981 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:isDistributionOf ;[\n]" +2022-11-14 09:05:21,981 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" +2022-11-14 09:05:21,981 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:preview ;[\n]" +2022-11-14 09:05:21,981 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:uncompressedByteSize 333422301 ;[\n]" +2022-11-14 09:05:21,981 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo ;[\n]" +2022-11-14 09:05:21,981 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "Dataset containing redirects between articles in Wikipedia."@en ;[\n]" +2022-11-14 09:05:21,981 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" +2022-11-14 09:05:21,981 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" +2022-11-14 09:05:21,981 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" +2022-11-14 09:05:21,981 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" +2022-11-14 09:05:21,981 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" +2022-11-14 09:05:21,981 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "Redirects"@en ;[\n]" +2022-11-14 09:05:21,981 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:byteSize 32013594 ;[\n]" +2022-11-14 09:05:21,981 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:downloadURL ;[\n]" +2022-11-14 09:05:21,981 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:mediaType dataid-mt:MediaType_n-quads_x-bzip2 .[\n]" +2022-11-14 09:05:21,981 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:21,981 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:21,981 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid-ld:LinkedDataDataset , dataid:Dataset ;[\n]" +2022-11-14 09:05:21,981 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "Category Labels. English Uris"@en ;[\n]" +2022-11-14 09:05:21,981 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" +2022-11-14 09:05:21,981 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" +2022-11-14 09:05:21,981 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:prev" +2022-11-14 09:05:21,982 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "iousVersion ;[\n]" +2022-11-14 09:05:21,982 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedDatasetRelation[\n]" +2022-11-14 09:05:21,982 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " ;[\n]" +2022-11-14 09:05:21,982 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:relatedDataset ;[\n]" +2022-11-14 09:05:21,982 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo , ;[\n]" +2022-11-14 09:05:21,982 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "Labels for Categories. Normalized dataset matching English DBpedia resources."@en ;[\n]" +2022-11-14 09:05:21,982 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" +2022-11-14 09:05:21,982 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:isPartOf ;[\n]" +2022-11-14 09:05:21,982 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" +2022-11-14 09:05:21,982 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:language ;[\n]" +2022-11-14 09:05:21,982 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" +2022-11-14 09:05:21,982 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" +2022-11-14 09:05:21,982 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" +2022-11-14 09:05:21,982 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "Category Labels. English Uris"@en ;[\n]" +2022-11-14 09:05:21,982 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " void:rootResource ;[\n]" +2022-11-14 09:05:21,982 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " void:triples 170136 ;[\n]" +2022-11-14 09:05:21,982 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:distribution , ;[\n]" +2022-11-14 09:05:21,982 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:keyword "Category Labels. English Uris"@en , "DBpedia"@en ;[\n]" +2022-11-14 09:05:21,982 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:landingPage ;[\n]" +2022-11-14 09:05:21,982 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " sd:defaultGraph ;[\n]" +2022-11-14 09:05:21,982 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " foaf:page .[\n]" +2022-11-14 09:05:21,982 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:21,982 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:21,982 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:SingleFile ;[\n]" +2022-11-14 09:05:21,982 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "Geo Coordinates Mappingbased English Uris"@en , "core-i18n/fr/geo_coordinates_mappingbased_en_uris_fr.tql.bz2" ;[\n]" +2022-11-14 09:05:21,982 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" +2022-11-14 09:05:21,982 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:checksum ;[\n]" +2022-11-14 09:05:21,982 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:isDistributionOf ;[\n]" +2022-11-14 09:05:21,983 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" +2022-11-14 09:05:21,984 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:preview ;[\n]" +2022-11-14 09:05:21,984 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:uncompressedByteSize 144779602 ;[\n]" +2022-11-14 09:05:21,984 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo ;[\n]" +2022-11-14 09:05:21,984 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "Geographic coordinates extracted from Wikipedia originating from mapped infoboxes in the mappings wiki Normalized dataset matching English DBpedia resources."@en ;[\n]" +2022-11-14 09:05:21,984 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" +2022-11-14 09:05:21,984 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" +2022-11-14 09:05:21,984 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" +2022-11-14 09:05:21,984 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" +2022-11-14 09:05:21,984 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" +2022-11-14 09:05:21,984 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "Geo Coordinates Mappingbased English Uris"@en ;[\n]" +2022-11-14 09:05:21,984 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:byteSize 7040890 ;[\n]" +2022-11-14 09:05:21,984 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:downloadURL ;[\n]" +2022-11-14 09:05:21,984 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:mediaType dataid-mt:MediaType_n-quads_x-bzip2 .[\n]" +2022-11-14 09:05:21,984 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:21,984 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:21,984 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " " +2022-11-14 09:05:21,987 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:Dataset , dataid-ld:LinkedDataDataset ;[\n]" +2022-11-14 09:05:21,987 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "NIF Context"@en ;[\n]" +2022-11-14 09:05:21,987 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" +2022-11-14 09:05:21,987 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" +2022-11-14 09:05:21,987 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedDatasetRelation[\n]" +2022-11-14 09:05:21,987 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " ;[\n]" +2022-11-14 09:05:21,987 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:relatedDataset ;[\n]" +2022-11-14 09:05:21,987 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo , ;[\n]" +2022-11-14 09:05:21,987 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "Contains the full text of a Wikipedia page in the NLP Interchange Format (NIF). All other NIF resources will reference the context of its Wikipedia page.It contains the whole text of a WikiPage (minus tables and references and minor artifacts)"@en ;[\n]" +2022-11-14 09:05:21,987 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" +2022-11-14 09:05:21,987 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:isPartOf ;[\n]" +2022-11-14 09:05:21,987 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" +2022-11-14 09:05:21,987 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:language ;[\n]" +2022-11-14 09:05:21,987 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" +2022-11-14 09:05:21,987 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" +2022-11-14 09:05:21,987 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" +2022-11-14 09:05:21,987 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "NIF Context"@en ;[\n]" +2022-11-14 09:05:21,987 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " void:rootResource ;[\n]" +2022-11-14 09:05:21,987 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " void:triples 10149357 ;[\n]" +2022-11-14 09:05:21,987 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:distribution , ;[\n]" +2022-11-14 09:05:21,987 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:keyword "NIF Context"@en , "DBpedia"@en ;[\n]" +2022-11-14 09:05:21,987 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:landingPage ;[\n]" +2022-11-14 09:05:21,987 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " sd:defaultGraph ;[\n]" +2022-11-14 09:05:21,987 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " foaf:page .[\n]" +2022-11-14 09:05:21,987 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:21,987 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:21,987 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:SingleFile ;[\n]" +2022-11-14 09:05:21,987 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "Article Categories"@en , "core-i18n/fr/article_categories_fr.tql.bz2" ;[\n]" +2022-11-14 09:05:21,987 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" +2022-11-14 09:05:21,987 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:checksum ;[\n]" +2022-11-14 09:05:21,987 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:isDistributionOf ;[\n]" +2022-11-14 09:05:21,995 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" +2022-11-14 09:05:21,995 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:preview ;[\n]" +2022-11-14 09:05:21,995 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:uncompressedByteSize 1860174690 ;[\n]" +2022-11-14 09:05:21,995 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo ;[\n]" +2022-11-14 09:05:21,995 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "Links from concepts to categories using the SKOS vocabulary."@en ;[\n]" +2022-11-14 09:05:21,995 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" +2022-11-14 09:05:21,995 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" +2022-11-14 09:05:21,995 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" +2022-11-14 09:05:21,995 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" +2022-11-14 09:05:21,995 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" +2022-11-14 09:05:21,995 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "Article Categories"@en ;[\n]" +2022-11-14 09:05:21,995 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:byteSize 112481112 ;[\n]" +2022-11-14 09:05:21,995 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:downloadURL ;[\n]" +2022-11-14 09:05:21,995 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:mediaType dataid-mt:MediaType_n-quads_x-bzip2 .[\n]" +2022-11-14 09:05:21,995 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:21,995 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:21,995 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:Datas" +2022-11-14 09:05:21,996 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "et , dataid-ld:LinkedDataDataset ;[\n]" +2022-11-14 09:05:21,996 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "Freebase Links"@en ;[\n]" +2022-11-14 09:05:21,996 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" +2022-11-14 09:05:21,996 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" +2022-11-14 09:05:21,996 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:previousVersion ;[\n]" +2022-11-14 09:05:21,996 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedDatasetRelation[\n]" +2022-11-14 09:05:21,996 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " ;[\n]" +2022-11-14 09:05:21,996 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:relatedDataset ;[\n]" +2022-11-14 09:05:21,996 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo , ;[\n]" +2022-11-14 09:05:21,996 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "This file contains the back-links (owl:sameAs) to the Freebase dataset."@en ;[\n]" +2022-11-14 09:05:21,996 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" +2022-11-14 09:05:21,996 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:isPartOf ;[\n]" +2022-11-14 09:05:21,996 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" +2022-11-14 09:05:21,996 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:language ;[\n]" +2022-11-14 09:05:21,996 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" +2022-11-14 09:05:21,996 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" +2022-11-14 09:05:21,996 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" +2022-11-14 09:05:22,025 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "Freebase Links"@en ;[\n]" +2022-11-14 09:05:22,025 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " void:rootResource ;[\n]" +2022-11-14 09:05:22,025 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " void:triples 1909782 ;[\n]" +2022-11-14 09:05:22,025 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:distribution ;[\n]" +2022-11-14 09:05:22,025 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:keyword "Freebase Links"@en , "DBpedia"@en ;[\n]" +2022-11-14 09:05:22,025 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:landingPage ;[\n]" +2022-11-14 09:05:22,025 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " sd:defaultGraph ;[\n]" +2022-11-14 09:05:22,025 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " foaf:page .[\n]" +2022-11-14 09:05:22,025 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,025 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,025 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:SingleFile ;[\n]" +2022-11-14 09:05:22,025 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "Long Abstracts Wikidata Uris"@en , "core-i18n/fr/long_abstracts_wkd_uris_fr.ttl.bz2" ;[\n]" +2022-11-14 09:05:22,025 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" +2022-11-14 09:05:22,025 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:checksum ;[\n]" +2022-11-14 09:05:22,025 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:isDistributionOf ;[\n]" +2022-11-14 09:05:22,025 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" +2022-11-14 09:05:22,026 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:preview ;[\n]" +2022-11-14 09:05:22,026 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:uncompressedByteSize 823433869 ;[\n]" +2022-11-14 09:05:22,026 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo ;[\n]" +2022-11-14 09:05:22,026 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "Long abstracts (full abstracts) of Wikipedia articles, usually the first section. Normalized dataset matching Wikidata resources (sorted)."@en ;[\n]" +2022-11-14 09:05:22,026 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" +2022-11-14 09:05:22,026 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" +2022-11-14 09:05:22,026 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" +2022-11-14 09:05:22,026 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" +2022-11-14 09:05:22,026 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" +2022-11-14 09:05:22,026 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "Long Abstracts Wikidata Uris"@en ;[\n]" +2022-11-14 09:05:22,026 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:byteSize 189970540 ;[\n]" +2022-11-14 09:05:22,026 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:downloadURL ;[\n]" +2022-11-14 09:05:22,026 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:mediaType dataid-mt:MediaType_turtle_x-bzip2 .[\n]" +2022-11-14 09:05:22,026 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,026 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,026 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid-ld:LinkedDataDataset , dataid:Dataset ;[\n]" +2022-11-14 09:05:22,026 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "Instance Types English Uris"@en ;[\n]" +2022-11-14 09:05:22,026 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" +2022-11-14 09:05:22,026 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" +2022-11-14 09:05:22,026 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:previousVersion ;[\n]" +2022-11-14 09:05:22,026 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedDatasetRelation[\n]" +2022-11-14 09:05:22,026 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " ;[\n]" +2022-11-14 09:05:22,026 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:relatedDataset ;[\n]" +2022-11-14 09:05:22,026 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo , ;[\n]" +2022-11-14 09:05:22,026 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "Contains triples of the form $object rdf:type $class from the mapping-based extraction. Normalized dataset matching English DBpedia resources."@en ;[\n]" +2022-11-14 09:05:22,026 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" +2022-11-14 09:05:22,026 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:isPartOf ;[\n]" +2022-11-14 09:05:22,026 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" +2022-11-14 09:05:22,026 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:language ;[\n]" +2022-11-14 09:05:22,026 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" +2022-11-14 09:05:22,026 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" +2022-11-14 09:05:22,026 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" +2022-11-14 09:05:22,026 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "Instance Types English Uris"@en ;[\n]" +2022-11-14 09:05:22,026 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " void:rootResource ;[\n]" +2022-11-14 09:05:22,026 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " void:triples 612040 ;[\n]" +2022-11-14 09:05:22,026 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:distribution , ;[\n]" +2022-11-14 09:05:22,026 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:keyword "DBpedia"@en , "Instance Types English Uris"@en ;[\n]" +2022-11-14 09:05:22,026 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:landingPage ;[\n]" +2022-11-14 09:05:22,026 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " sd:defaultGraph ;[\n]" +2022-11-14 09:05:22,026 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " foaf:page .[\n]" +2022-11-14 09:05:22,026 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,026 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,026 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:SingleFile ;[\n]" +2022-11-14 09:05:22,026 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "Revision Uris"@en , "core-i18n/fr/revision_uris_fr.tql.bz2" ;[\n]" +2022-11-14 09:05:22,026 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" +2022-11-14 09:05:22,026 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:checksum ;[\n]" +2022-11-14 09:05:22,026 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:isDistributionOf ;[\n]" +2022-11-14 09:05:22,040 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" +2022-11-14 09:05:22,040 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:preview ;[\n]" +2022-11-14 09:05:22,040 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:uncompressedByteSize 931901088 ;[\n]" +2022-11-14 09:05:22,040 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo ;[\n]" +2022-11-14 09:05:22,040 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "Dataset linking DBpedia resource to the specific Wikipedia article revision used in this DBpedia release."@en ;[\n]" +2022-11-14 09:05:22,040 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" +2022-11-14 09:05:22,040 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" +2022-11-14 09:05:22,040 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" +2022-11-14 09:05:22,040 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" +2022-11-14 09:05:22,040 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" +2022-11-14 09:05:22,040 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "Revision Uris"@en ;[\n]" +2022-11-14 09:05:22,040 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:byteSize 80164538 ;[\n]" +2022-11-14 09:05:22,040 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:downloadURL ;[\n]" +2022-11-14 09:05:22,040 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:mediaType dataid-mt:MediaType_n-quads_x-bzip2 .[\n]" +2022-11-14 09:05:22,040 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,040 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,041 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:SingleFile ;[\n]" +2022-11-14 09:05:22,041 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "core-i18n/fr/external_links_wkd_uris_fr.ttl.bz2" , "External Links Wikidata Uris"@en ;[\n]" +2022-11-14 09:05:22,041 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" +2022-11-14 09:05:22,041 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:checksum ;[\n]" +2022-11-14 09:05:22,041 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:isDistributionOf ;[\n]" +2022-11-14 09:05:22,041 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" +2022-11-14 09:05:22,041 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:preview ;[\n]" +2022-11-14 09:05:22,041 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:uncompressedByteSize 288467499 ;[\n]" +2022-11-14 09:05:22,041 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo ;[\n]" +2022-11-14 09:05:22,041 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "Links to external web pages about a concept. Normalized dataset matching Wikidata resources (sorted)."@en ;[\n]" +2022-11-14 09:05:22,041 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" +2022-11-14 09:05:22,041 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" +2022-11-14 09:05:22,041 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" +2022-11-14 09:05:22,042 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" +2022-11-14 09:05:22,042 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" +2022-11-14 09:05:22,042 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "External Links Wikidata Uris"@en ;[\n]" +2022-11-14 09:05:22,042 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:byteSize 35315073 ;[\n]" +2022-11-14 09:05:22,042 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:downloadURL ;[\n]" +2022-11-14 09:05:22,042 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:mediaType dataid-mt:MediaType_turtle_x-bzip2 .[\n]" +2022-11-14 09:05:22,042 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,042 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,042 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:SingleFile ;[\n]" +2022-11-14 09:05:22,042 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "Page Links"@en , "core-i18n/fr/page_links_fr.ttl.bz2" ;[\n]" +2022-11-14 09:05:22,042 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" +2022-11-14 09:05:22,042 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:checksum ;[\n]" +2022-11-14 09:05:22,042 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:isDistributionOf ;[\n]" +2022-11-14 09:05:22,042 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" +2022-11-14 09:05:22,042 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:preview ;[\n]" +2022-11-14 09:05:22,042 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:uncompressedByteSize 10" +2022-11-14 09:05:22,042 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "090369736 ;[\n]" +2022-11-14 09:05:22,043 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo ;[\n]" +2022-11-14 09:05:22,043 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "Dataset containing internal links between DBpedia instances. The dataset was created from the internal links between Wikipedia articles. The dataset might be useful for structural analysis, data mining or for ranking DBpedia instances using Page Rank or similar algorithms."@en ;[\n]" +2022-11-14 09:05:22,043 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" +2022-11-14 09:05:22,043 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" +2022-11-14 09:05:22,043 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" +2022-11-14 09:05:22,043 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" +2022-11-14 09:05:22,043 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" +2022-11-14 09:05:22,043 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "Page Links"@en ;[\n]" +2022-11-14 09:05:22,043 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:byteSize 519197953 ;[\n]" +2022-11-14 09:05:22,043 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:downloadURL ;[\n]" +2022-11-14 09:05:22,043 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:mediaType dataid-mt:MediaType_turtle_x-bzip2 .[\n]" +2022-11-14 09:05:22,043 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,043 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,043 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:SingleFile ;[\n]" +2022-11-14 09:05:22,043 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "Long Abstracts"@en , "core-i18n/fr/long_abstracts_fr.tql.bz2" ;[\n]" +2022-11-14 09:05:22,043 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dat" +2022-11-14 09:05:22,044 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "aid:associatedAgent ;[\n]" +2022-11-14 09:05:22,044 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:checksum ;[\n]" +2022-11-14 09:05:22,044 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:isDistributionOf ;[\n]" +2022-11-14 09:05:22,044 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" +2022-11-14 09:05:22,044 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:preview ;[\n]" +2022-11-14 09:05:22,044 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:uncompressedByteSize 950187275 ;[\n]" +2022-11-14 09:05:22,044 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo ;[\n]" +2022-11-14 09:05:22,044 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "Long abstracts (full abstracts) of Wikipedia articles, usually the first section."@en ;[\n]" +2022-11-14 09:05:22,044 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" +2022-11-14 09:05:22,044 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" +2022-11-14 09:05:22,044 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" +2022-11-14 09:05:22,044 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" +2022-11-14 09:05:22,044 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" +2022-11-14 09:05:22,044 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "Long Abstracts"@en ;[\n]" +2022-11-14 09:05:22,044 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:byteSize 213329202 ;[\n]" +2022-11-14 09:05:22,044 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " " +2022-11-14 09:05:22,045 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:downloadURL ;[\n]" +2022-11-14 09:05:22,045 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:mediaType dataid-mt:MediaType_n-quads_x-bzip2 .[\n]" +2022-11-14 09:05:22,045 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,045 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,045 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:SingleFile ;[\n]" +2022-11-14 09:05:22,045 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "External Links Wikidata Uris"@en , "core-i18n/fr/external_links_wkd_uris_fr.tql.bz2" ;[\n]" +2022-11-14 09:05:22,045 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" +2022-11-14 09:05:22,045 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:checksum ;[\n]" +2022-11-14 09:05:22,045 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:isDistributionOf ;[\n]" +2022-11-14 09:05:22,045 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" +2022-11-14 09:05:22,045 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:preview ;[\n]" +2022-11-14 09:05:22,045 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:uncompressedByteSize 509442311 ;[\n]" +2022-11-14 09:05:22,045 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo ;[\n]" +2022-11-14 09:05:22,045 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "Links to external web pages about a concept. Normalized dataset match" +2022-11-14 09:05:22,046 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "ing Wikidata resources (sorted)."@en ;[\n]" +2022-11-14 09:05:22,046 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" +2022-11-14 09:05:22,046 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" +2022-11-14 09:05:22,046 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" +2022-11-14 09:05:22,046 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" +2022-11-14 09:05:22,046 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" +2022-11-14 09:05:22,046 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "External Links Wikidata Uris"@en ;[\n]" +2022-11-14 09:05:22,046 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:byteSize 57319179 ;[\n]" +2022-11-14 09:05:22,046 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:downloadURL ;[\n]" +2022-11-14 09:05:22,046 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:mediaType dataid-mt:MediaType_n-quads_x-bzip2 .[\n]" +2022-11-14 09:05:22,046 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,046 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,046 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:SingleFile ;[\n]" +2022-11-14 09:05:22,046 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "core-i18n/fr/homepages_wkd_uris_fr.ttl.bz2" , "Homepages Wikidata Uris"@en ;[\n]" +2022-11-14 09:05:22,046 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" +2022-11-14 09:05:22,046 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:checksum ;[\n]" +2022-11-14 09:05:22,046 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:isDistributionOf ;[\n]" +2022-11-14 09:05:22,046 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" +2022-11-14 09:05:22,046 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:preview ;[\n]" +2022-11-14 09:05:22,046 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:uncompressedByteSize 20514473 ;[\n]" +2022-11-14 09:05:22,046 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo ;[\n]" +2022-11-14 09:05:22,046 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "Links to homepages of persons, organizations etc. Normalized dataset matching Wikidata resources (sorted)."@en ;[\n]" +2022-11-14 09:05:22,046 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" +2022-11-14 09:05:22,046 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" +2022-11-14 09:05:22,046 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" +2022-11-14 09:05:22,046 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" +2022-11-14 09:05:22,046 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" +2022-11-14 09:05:22,046 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "Homepages Wikidata Uris"@en ;[\n]" +2022-11-14 09:05:22,046 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:byteSize 1932951 ;[\n]" +2022-11-14 09:05:22,046 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:downloadURL ;[\n]" +2022-11-14 09:05:22,046 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:mediaType dataid-mt:MediaType_turtle_x-bzip2 .[\n]" +2022-11-14 09:05:22,046 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,046 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,047 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:SingleFile ;[\n]" +2022-11-14 09:05:22,047 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "Homepages Wikidata Uris"@en , "core-i18n/fr/homepages_wkd_uris_fr.tql.bz2" ;[\n]" +2022-11-14 09:05:22,047 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" +2022-11-14 09:05:22,047 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:checksum ;[\n]" +2022-11-14 09:05:22,047 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:isDistributionOf ;[\n]" +2022-11-14 09:05:22,047 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" +2022-11-14 09:05:22,047 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:preview ;[\n]" +2022-11-14 09:05:22,047 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:uncompressedByteSize 37454494 ;[\n]" +2022-11-14 09:05:22,047 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo ;[\n]" +2022-11-14 09:05:22,047 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "Links to homepages of persons, organizations etc. Normalized dataset matching Wikidata resources (sorted)."@en ;[\n]" +2022-11-14 09:05:22,047 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" +2022-11-14 09:05:22,047 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" +2022-11-14 09:05:22,047 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" +2022-11-14 09:05:22,047 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" +2022-11-14 09:05:22,047 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" +2022-11-14 09:05:22,047 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "Homepages Wikidata Uris"@en ;[\n]" +2022-11-14 09:05:22,048 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:byteSize 4405042 ;[\n]" +2022-11-14 09:05:22,048 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:downloadURL ;[\n]" +2022-11-14 09:05:22,048 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:mediaType dataid-mt:MediaType_n-quads_x-bzip2 .[\n]" +2022-11-14 09:05:22,048 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,048 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,048 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid-ld:LinkedDataDataset , dataid:Dataset ;[\n]" +2022-11-14 09:05:22,048 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "Page Ids"@en ;[\n]" +2022-11-14 09:05:22,048 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" +2022-11-14 09:05:22,048 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" +2022-11-14 09:05:22,048 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:previousVersion ;[\n]" +2022-11-14 09:05:22,048 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedDatasetRelation[\n]" +2022-11-14 09:05:22,048 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " ;[\n]" +2022-11-14 09:05:22,048 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:relatedDataset ;[\n]" +2022-11-14 09:05:22,048 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo , ;[\n]" +2022-11-14 09:05:22,048 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "Dataset linking a DBpedia resource to the page ID of the Wikipedia ar" +2022-11-14 09:05:22,049 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "ticle the data was extracted from."@en ;[\n]" +2022-11-14 09:05:22,049 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" +2022-11-14 09:05:22,049 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:isPartOf ;[\n]" +2022-11-14 09:05:22,049 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" +2022-11-14 09:05:22,049 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:language ;[\n]" +2022-11-14 09:05:22,049 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" +2022-11-14 09:05:22,049 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" +2022-11-14 09:05:22,049 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" +2022-11-14 09:05:22,049 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "Page Ids"@en ;[\n]" +2022-11-14 09:05:22,049 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " void:rootResource ;[\n]" +2022-11-14 09:05:22,049 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " void:triples 3831703 ;[\n]" +2022-11-14 09:05:22,049 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:distribution , ;[\n]" +2022-11-14 09:05:22,049 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:keyword "DBpedia"@en , "Page Ids"@en ;[\n]" +2022-11-14 09:05:22,049 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:landingPage ;[\n]" +2022-11-14 09:05:22,049 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " sd:defaultGraph ;[\n]" +2022-11-14 09:05:22,049 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " foaf:page .[\n]" +2022-11-14 09:05:22,049 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,049 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,049 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:SingleFile ;[\n]" +2022-11-14 09:05:22,049 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "core-i18n/fr/article_templates_nested_fr.ttl.bz2" , "Nested Article Templates"@en ;[\n]" +2022-11-14 09:05:22,049 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" +2022-11-14 09:05:22,049 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:checksum ;[\n]" +2022-11-14 09:05:22,049 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:isDistributionOf ;[\n]" +2022-11-14 09:05:22,049 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" +2022-11-14 09:05:22,049 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:preview ;[\n]" +2022-11-14 09:05:22,049 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:uncompressedByteSize 422696668 ;[\n]" +2022-11-14 09:05:22,049 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo ;[\n]" +2022-11-14 09:05:22,049 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "Templates used in an article (nested)."@en ;[\n]" +2022-11-14 09:05:22,049 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" +2022-11-14 09:05:22,049 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" +2022-11-14 09:05:22,049 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" +2022-11-14 09:05:22,049 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" +2022-11-14 09:05:22,049 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " " +2022-11-14 09:05:22,050 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" +2022-11-14 09:05:22,050 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "Nested Article Templates"@en ;[\n]" +2022-11-14 09:05:22,050 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:byteSize 17109946 ;[\n]" +2022-11-14 09:05:22,050 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:downloadURL ;[\n]" +2022-11-14 09:05:22,050 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:mediaType dataid-mt:MediaType_turtle_x-bzip2 .[\n]" +2022-11-14 09:05:22,050 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,050 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,050 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:SingleFile ;[\n]" +2022-11-14 09:05:22,050 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "SKOS Categories Wikidata Uris"@en , "core-i18n/fr/skos_categories_wkd_uris_fr.ttl.bz2" ;[\n]" +2022-11-14 09:05:22,050 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" +2022-11-14 09:05:22,050 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:checksum ;[\n]" +2022-11-14 09:05:22,050 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:isDistributionOf ;[\n]" +2022-11-14 09:05:22,050 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" +2022-11-14 09:05:22,050 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:preview ;[\n]" +2022-11-14 09:05:22,050 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:uncompressedByteSize 157446206 ;[\n]" +2022-11-14 09:05:22,050 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo ;[\n]" +2022-11-14 09:05:22,050 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "Information which concept is a category and how categories are related using the SKOS Vocabulary. Normalized dataset matching Wikidata resources (sorted)."@en ;[\n]" +2022-11-14 09:05:22,050 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" +2022-11-14 09:05:22,050 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" +2022-11-14 09:05:22,050 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" +2022-11-14 09:05:22,050 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" +2022-11-14 09:05:22,050 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" +2022-11-14 09:05:22,050 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "SKOS Categories Wikidata Uris"@en ;[\n]" +2022-11-14 09:05:22,050 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:byteSize 6340656 ;[\n]" +2022-11-14 09:05:22,050 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:downloadURL ;[\n]" +2022-11-14 09:05:22,050 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:mediaType dataid-mt:MediaType_turtle_x-bzip2 .[\n]" +2022-11-14 09:05:22,050 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,050 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,050 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:SingleFile ;[\n]" +2022-11-14 09:05:22,050 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "core-i18n/fr/article_templates_nested_fr.tql.bz2" , "Nested Article Templates"@en ;[\n]" +2022-11-14 09:05:22,050 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent " +2022-11-14 09:05:22,064 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " ;[\n]" +2022-11-14 09:05:22,064 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:checksum ;[\n]" +2022-11-14 09:05:22,064 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:isDistributionOf ;[\n]" +2022-11-14 09:05:22,064 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" +2022-11-14 09:05:22,064 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:preview ;[\n]" +2022-11-14 09:05:22,064 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:uncompressedByteSize 675602210 ;[\n]" +2022-11-14 09:05:22,064 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo ;[\n]" +2022-11-14 09:05:22,064 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "Templates used in an article (nested)."@en ;[\n]" +2022-11-14 09:05:22,064 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" +2022-11-14 09:05:22,064 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" +2022-11-14 09:05:22,064 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" +2022-11-14 09:05:22,064 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" +2022-11-14 09:05:22,064 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" +2022-11-14 09:05:22,064 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "Nested Article Templates"@en ;[\n]" +2022-11-14 09:05:22,064 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:byteSize 33380978 ;[\n]" +2022-11-14 09:05:22,064 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " " +2022-11-14 09:05:22,065 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:downloadURL ;[\n]" +2022-11-14 09:05:22,065 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:mediaType dataid-mt:MediaType_n-quads_x-bzip2 .[\n]" +2022-11-14 09:05:22,065 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,065 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,065 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:Dataset , dataid-ld:LinkedDataDataset ;[\n]" +2022-11-14 09:05:22,065 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "Infobox Properties English Uris"@en ;[\n]" +2022-11-14 09:05:22,065 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" +2022-11-14 09:05:22,065 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" +2022-11-14 09:05:22,065 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:previousVersion ;[\n]" +2022-11-14 09:05:22,065 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedDatasetRelation[\n]" +2022-11-14 09:05:22,065 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " ;[\n]" +2022-11-14 09:05:22,065 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:relatedDataset ;[\n]" +2022-11-14 09:05:22,065 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo , ;[\n]" +2022-11-14 09:05:22,065 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "Information that has been extracted from Wikipedia infoboxes. Note that this data is in the less clean 'property' namespace. The Mapping-based Properties in the 'ontology' namespace, should always be preferred over this data. Normalized dataset matching English DBpedia resources."@en ;[\n]" +2022-11-14 09:05:22,065 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" +2022-11-14 09:05:22,065 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:isPartOf ;[\n]" +2022-11-14 09:05:22,065 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" +2022-11-14 09:05:22,065 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:language ;[\n]" +2022-11-14 09:05:22,065 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" +2022-11-14 09:05:22,065 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" +2022-11-14 09:05:22,065 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" +2022-11-14 09:05:22,065 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "Infobox Properties English Uris"@en ;[\n]" +2022-11-14 09:05:22,065 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " void:rootResource ;[\n]" +2022-11-14 09:05:22,065 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " void:triples 10395149 ;[\n]" +2022-11-14 09:05:22,065 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:distribution , ;[\n]" +2022-11-14 09:05:22,065 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:keyword "DBpedia"@en , "Infobox Properties English Uris"@en ;[\n]" +2022-11-14 09:05:22,065 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:landingPage ;[\n]" +2022-11-14 09:05:22,065 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " sd:defaultGraph ;[\n]" +2022-11-14 09:05:22,065 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " foaf:page .[\n]" +2022-11-14 09:05:22,065 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,065 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,066 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:SingleFile ;[\n]" +2022-11-14 09:05:22,066 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "Infobox Properties English Uris"@en , "core-i18n/fr/infobox_properties_en_uris_fr.ttl.bz2" ;[\n]" +2022-11-14 09:05:22,066 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" +2022-11-14 09:05:22,066 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:checksum ;[\n]" +2022-11-14 09:05:22,066 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:isDistributionOf ;[\n]" +2022-11-14 09:05:22,066 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" +2022-11-14 09:05:22,066 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:preview ;[\n]" +2022-11-14 09:05:22,066 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:uncompressedByteSize 1343049271 ;[\n]" +2022-11-14 09:05:22,066 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo ;[\n]" +2022-11-14 09:05:22,066 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "Information that has been extracted from Wikipedia infoboxes. Note that this data is in the less clean 'property' namespace. The Mapping-based Properties in the 'ontology' namespace, should always be preferred over this data. Normalized d" +2022-11-14 09:05:22,080 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "ataset matching English DBpedia resources."@en ;[\n]" +2022-11-14 09:05:22,080 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" +2022-11-14 09:05:22,080 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" +2022-11-14 09:05:22,080 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" +2022-11-14 09:05:22,080 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" +2022-11-14 09:05:22,080 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" +2022-11-14 09:05:22,080 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "Infobox Properties English Uris"@en ;[\n]" +2022-11-14 09:05:22,080 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:byteSize 105664829 ;[\n]" +2022-11-14 09:05:22,080 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:downloadURL ;[\n]" +2022-11-14 09:05:22,080 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:mediaType dataid-mt:MediaType_turtle_x-bzip2 .[\n]" +2022-11-14 09:05:22,080 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,080 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,080 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:Dataset , dataid-ld:LinkedDataDataset ;[\n]" +2022-11-14 09:05:22,080 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "Labels"@en ;[\n]" +2022-11-14 09:05:22,080 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" +2022-11-14 09:05:22,080 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" +2022-11-14 09:05:22,080 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:previousVersion ;[\n]" +2022-11-14 09:05:22,080 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedDatasetRelation[\n]" +2022-11-14 09:05:22,080 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " ;[\n]" +2022-11-14 09:05:22,081 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:relatedDataset ;[\n]" +2022-11-14 09:05:22,081 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo , ;[\n]" +2022-11-14 09:05:22,081 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "Titles of all Wikipedia Articles in the corresponding language. In Wikidata, it contains all the languages available in the mappings wiki, labels_nmw contains the rest "@en ;[\n]" +2022-11-14 09:05:22,081 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" +2022-11-14 09:05:22,081 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:isPartOf ;[\n]" +2022-11-14 09:05:22,081 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" +2022-11-14 09:05:22,081 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:language ;[\n]" +2022-11-14 09:05:22,081 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" +2022-11-14 09:05:22,081 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" +2022-11-14 09:05:22,081 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" +2022-11-14 09:05:22,081 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "Labels"@en ;[\n]" +2022-11-14 09:05:22,081 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " void:rootResource ;[\n]" +2022-11-14 09:05:22,081 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " void:triples 3241245 ;[\n]" +2022-11-14 09:05:22,081 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:distribution , ;[\n]" +2022-11-14 09:05:22,081 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:key" +2022-11-14 09:05:22,081 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "word "Labels"@en , "DBpedia"@en ;[\n]" +2022-11-14 09:05:22,081 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:landingPage ;[\n]" +2022-11-14 09:05:22,081 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " sd:defaultGraph ;[\n]" +2022-11-14 09:05:22,081 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " foaf:page .[\n]" +2022-11-14 09:05:22,081 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,081 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,081 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:SingleFile ;[\n]" +2022-11-14 09:05:22,081 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "Images Wikidata Uris"@en , "core-i18n/fr/images_wkd_uris_fr.ttl.bz2" ;[\n]" +2022-11-14 09:05:22,081 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" +2022-11-14 09:05:22,081 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:checksum ;[\n]" +2022-11-14 09:05:22,081 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:isDistributionOf ;[\n]" +2022-11-14 09:05:22,081 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" +2022-11-14 09:05:22,081 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:preview ;[\n]" +2022-11-14 09:05:22,081 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:uncompressedByteSize 1013402456 ;[\n]" +2022-11-14 09:05:22,081 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo ;[\n]" +2022-11-14 09:05:22,081 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "Main image and corresponding thumbnail from Wikipedia article. Normalized dataset matching Wikidata res" +2022-11-14 09:05:22,082 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "ources (sorted)."@en ;[\n]" +2022-11-14 09:05:22,082 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" +2022-11-14 09:05:22,082 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" +2022-11-14 09:05:22,082 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" +2022-11-14 09:05:22,082 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" +2022-11-14 09:05:22,082 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" +2022-11-14 09:05:22,082 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "Images Wikidata Uris"@en ;[\n]" +2022-11-14 09:05:22,082 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:byteSize 40302988 ;[\n]" +2022-11-14 09:05:22,082 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:downloadURL ;[\n]" +2022-11-14 09:05:22,082 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:mediaType dataid-mt:MediaType_turtle_x-bzip2 .[\n]" +2022-11-14 09:05:22,082 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,082 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,082 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:SingleFile ;[\n]" +2022-11-14 09:05:22,082 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "Infobox Properties English Uris"@en , "core-i18n/fr/infobox_properties_en_uris_fr.tql.bz2" ;[\n]" +2022-11-14 09:05:22,082 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" +2022-11-14 09:05:22,082 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:checksum ;[\n]" +2022-11-14 09:05:22,082 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:isDistributionOf ;[\n]" +2022-11-14 09:05:22,086 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" +2022-11-14 09:05:22,086 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:preview ;[\n]" +2022-11-14 09:05:22,086 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:uncompressedByteSize 3060702431 ;[\n]" +2022-11-14 09:05:22,086 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo ;[\n]" +2022-11-14 09:05:22,086 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "Information that has been extracted from Wikipedia infoboxes. Note that this data is in the less clean 'property' namespace. The Mapping-based Properties in the 'ontology' namespace, should always be preferred over this data. Normalized dataset matching English DBpedia resources."@en ;[\n]" +2022-11-14 09:05:22,086 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" +2022-11-14 09:05:22,086 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" +2022-11-14 09:05:22,086 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" +2022-11-14 09:05:22,086 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" +2022-11-14 09:05:22,086 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" +2022-11-14 09:05:22,086 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "Infobox Properties English Uris"@en ;[\n]" +2022-11-14 09:05:22,086 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:byteSize 180978981 ;[\n]" +2022-11-14 09:05:22,086 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:downloadURL " +2022-11-14 09:05:22,087 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " ;[\n]" +2022-11-14 09:05:22,087 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:mediaType dataid-mt:MediaType_n-quads_x-bzip2 .[\n]" +2022-11-14 09:05:22,087 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,087 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,087 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:SingleFile ;[\n]" +2022-11-14 09:05:22,087 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "core-i18n/fr/topical_concepts_wkd_uris_fr.ttl.bz2" , "Topical Concepts Wikidata Uris"@en ;[\n]" +2022-11-14 09:05:22,087 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" +2022-11-14 09:05:22,087 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:checksum ;[\n]" +2022-11-14 09:05:22,087 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:isDistributionOf ;[\n]" +2022-11-14 09:05:22,087 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" +2022-11-14 09:05:22,087 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:preview ;[\n]" +2022-11-14 09:05:22,087 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:uncompressedByteSize 13030738 ;[\n]" +2022-11-14 09:05:22,087 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo ;[\n]" +2022-11-14 09:05:22,087 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "Resources that describe a category Normalized dataset matching W" +2022-11-14 09:05:22,088 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "ikidata resources (sorted)."@en ;[\n]" +2022-11-14 09:05:22,088 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" +2022-11-14 09:05:22,088 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" +2022-11-14 09:05:22,088 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" +2022-11-14 09:05:22,088 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" +2022-11-14 09:05:22,088 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" +2022-11-14 09:05:22,088 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "Topical Concepts Wikidata Uris"@en ;[\n]" +2022-11-14 09:05:22,088 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:byteSize 402384 ;[\n]" +2022-11-14 09:05:22,088 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:downloadURL ;[\n]" +2022-11-14 09:05:22,088 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:mediaType dataid-mt:MediaType_turtle_x-bzip2 .[\n]" +2022-11-14 09:05:22,088 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,088 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,088 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:SingleFile ;[\n]" +2022-11-14 09:05:22,088 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "Mappingbased Literals"@en , "core-i18n/fr/mappingbased_literals_fr.tql.bz2" ;[\n]" +2022-11-14 09:05:22,088 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" +2022-11-14 09:05:22,088 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:checksum ;[\n]" +2022-11-14 09:05:22,088 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:isDistributionOf ;[\n]" +2022-11-14 09:05:22,088 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" +2022-11-14 09:05:22,088 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:preview ;[\n]" +2022-11-14 09:05:22,088 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:uncompressedByteSize 1663448462 ;[\n]" +2022-11-14 09:05:22,088 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo ;[\n]" +2022-11-14 09:05:22,088 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "High-quality data extracted from Infoboxes using the mapping-based extraction (Literal properties only). The predicates in this dataset are in the ontology namespace. Note that this data is of much higher quality than the Raw Infobox Properties in the 'property' namespace."@en ;[\n]" +2022-11-14 09:05:22,088 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" +2022-11-14 09:05:22,088 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" +2022-11-14 09:05:22,088 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" +2022-11-14 09:05:22,089 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" +2022-11-14 09:05:22,089 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" +2022-11-14 09:05:22,089 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "Mappingbased Literals"@en ;[\n]" +2022-11-14 09:05:22,089 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:byteSize 89528203 ;[\n]" +2022-11-14 09:05:22,089 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:downloadURL ;[\n]" +2022-11-14 09:05:22,089 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:mediaType dataid-mt:MediaType_n-quads_x-bzip2 .[\n]" +2022-11-14 09:05:22,089 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,089 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,089 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:Dataset , dataid-ld:LinkedDataDataset ;[\n]" +2022-11-14 09:05:22,089 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "Geo Coordinates English Uris"@en ;[\n]" +2022-11-14 09:05:22,089 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" +2022-11-14 09:05:22,089 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" +2022-11-14 09:05:22,089 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:previousVersion ;[\n]" +2022-11-14 09:05:22,089 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedDatasetRelation[\n]" +2022-11-14 09:05:22,089 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " ;[\n]" +2022-11-14 09:05:22,089 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:relatedDataset ;[\n]" +2022-11-14 09:05:22,089 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo , ;[\n]" +2022-11-14 09:05:22,089 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "Geographic coordinates extracted from Wikipedia. Normalized dataset matching English DBpedia resources."@en ;[\n]" +2022-11-14 09:05:22,089 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" +2022-11-14 09:05:22,089 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:isPartOf ;[\n]" +2022-11-14 09:05:22,089 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " " +2022-11-14 09:05:22,090 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" +2022-11-14 09:05:22,090 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:language ;[\n]" +2022-11-14 09:05:22,090 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" +2022-11-14 09:05:22,090 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" +2022-11-14 09:05:22,090 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" +2022-11-14 09:05:22,090 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "Geo Coordinates English Uris"@en ;[\n]" +2022-11-14 09:05:22,090 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " void:rootResource ;[\n]" +2022-11-14 09:05:22,090 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " void:triples 119868 ;[\n]" +2022-11-14 09:05:22,090 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:distribution , ;[\n]" +2022-11-14 09:05:22,090 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:keyword "DBpedia"@en , "Geo Coordinates English Uris"@en ;[\n]" +2022-11-14 09:05:22,090 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:landingPage ;[\n]" +2022-11-14 09:05:22,090 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " sd:defaultGraph ;[\n]" +2022-11-14 09:05:22,090 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " foaf:page .[\n]" +2022-11-14 09:05:22,090 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,090 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,090 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:Dataset , dataid-ld:LinkedDataDataset ;[\n]" +2022-11-14 09:05:22,090 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "mappingbased objects uncleaned"@en ;[\n]" +2022-11-14 09:05:22,090 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" +2022-11-14 09:05:22,090 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" +2022-11-14 09:05:22,090 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:previousVersion ;[\n]" +2022-11-14 09:05:22,090 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedDatasetRelation[\n]" +2022-11-14 09:05:22,090 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " ;[\n]" +2022-11-14 09:05:22,090 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:relatedDataset ;[\n]" +2022-11-14 09:05:22,090 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo , ;[\n]" +2022-11-14 09:05:22,090 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "DBpedia dataset mappingbased_objects_uncleaned, subset of "@en ;[\n]" +2022-11-14 09:05:22,090 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" +2022-11-14 09:05:22,090 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:isPartOf ;[\n]" +2022-11-14 09:05:22,090 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" +2022-11-14 09:05:22,090 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:language ;[\n]" +2022-11-14 09:05:22,090 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" +2022-11-14 09:05:22,090 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" +2022-11-14 09:05:22,090 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" +2022-11-14 09:05:22,090 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "mappingbased objects uncleaned"@en ;[\n]" +2022-11-14 09:05:22,090 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " void:rootResource ;[\n]" +2022-11-14 09:05:22,090 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " void:triples 5005987 ;[\n]" +2022-11-14 09:05:22,090 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:distribution , ;[\n]" +2022-11-14 09:05:22,090 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:keyword "mappingbased objects uncleaned"@en , "DBpedia"@en ;[\n]" +2022-11-14 09:05:22,090 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:landingPage ;[\n]" +2022-11-14 09:05:22,090 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " sd:defaultGraph ;[\n]" +2022-11-14 09:05:22,090 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " foaf:page .[\n]" +2022-11-14 09:05:22,090 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,090 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,090 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid-ld:LinkedDataDataset , dataid:Dataset ;[\n]" +2022-11-14 09:05:22,090 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "Equations in MathML"@en ;[\n]" +2022-11-14 09:05:22,090 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" +2022-11-14 09:05:22,090 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" +2022-11-14 09:05:22,090 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedDatasetRelation[\n]" +2022-11-14 09:05:22,090 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " ;[\n]" +2022-11-14 09:05:22,090 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:relatedDataset ;[\n]" +2022-11-14 09:05:22,090 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo , ;[\n]" +2022-11-14 09:05:22,092 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "This are all equations collected during the NIF extraction, transformed into MathML XML syntax."@en ;[\n]" +2022-11-14 09:05:22,092 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" +2022-11-14 09:05:22,092 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:isPartOf ;[\n]" +2022-11-14 09:05:22,092 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" +2022-11-14 09:05:22,092 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:language ;[\n]" +2022-11-14 09:05:22,092 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" +2022-11-14 09:05:22,092 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" +2022-11-14 09:05:22,092 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" +2022-11-14 09:05:22,092 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "Equations in MathML"@en ;[\n]" +2022-11-14 09:05:22,092 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " void:rootResource ;[\n]" +2022-11-14 09:05:22,092 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " void:triples 1155920 ;[\n]" +2022-11-14 09:05:22,092 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:distribution , ;[\n]" +2022-11-14 09:05:22,092 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:keyword "Equations in MathML"@en , "DBpedia"@en ;[\n]" +2022-11-14 09:05:22,092 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:landingPage ;[\n]" +2022-11-14 09:05:22,092 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " sd:defaultGraph ;[\n]" +2022-11-14 09:05:22,092 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " foaf:page .[\n]" +2022-11-14 09:05:22,093 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,093 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,093 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:SingleFile ;[\n]" +2022-11-14 09:05:22,093 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "Geonames Links"@en , "core-i18n/fr/geonames_links_fr.ttl.bz2" ;[\n]" +2022-11-14 09:05:22,093 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" +2022-11-14 09:05:22,093 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:checksum ;[\n]" +2022-11-14 09:05:22,093 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:isDistributionOf ;[\n]" +2022-11-14 09:05:22,093 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" +2022-11-14 09:05:22,093 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:preview ;[\n]" +2022-11-14 09:05:22,093 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:uncompressedByteSize 40217 ;[\n]" +2022-11-14 09:05:22,093 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo ;[\n]" +2022-11-14 09:05:22,093 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "This file contains the back-links (owl:sameAs) to the Geonames dataset."@en ;[\n]" +2022-11-14 09:05:22,093 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" +2022-11-14 09:05:22,093 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" +2022-11-14 09:05:22,093 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" +2022-11-14 09:05:22,094 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" +2022-11-14 09:05:22,094 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" +2022-11-14 09:05:22,094 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "Geonames Links"@en ;[\n]" +2022-11-14 09:05:22,094 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:byteSize 4005 ;[\n]" +2022-11-14 09:05:22,094 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:downloadURL ;[\n]" +2022-11-14 09:05:22,094 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:mediaType dataid-mt:MediaType_turtle_x-bzip2 .[\n]" +2022-11-14 09:05:22,094 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,094 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,094 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:Dataset , dataid-ld:LinkedDataDataset ;[\n]" +2022-11-14 09:05:22,094 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "Person data Wikidata Uris"@en ;[\n]" +2022-11-14 09:05:22,094 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" +2022-11-14 09:05:22,094 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" +2022-11-14 09:05:22,094 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedDatasetRelation[\n]" +2022-11-14 09:05:22,094 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " ;[\n]" +2022-11-14 09:05:22,094 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:relatedDataset ;[\n]" +2022-11-14 09:05:22,094 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo , ;[\n]" +2022-11-14 09:05:22,094 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "Information about persons (date and place of birth etc., extracted from the English and German Wikipedia, represented using t" +2022-11-14 09:05:22,094 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "he FOAF vocabulary. Normalized dataset matching Wikidata resources (sorted)."@en ;[\n]" +2022-11-14 09:05:22,094 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" +2022-11-14 09:05:22,094 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:isPartOf ;[\n]" +2022-11-14 09:05:22,094 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" +2022-11-14 09:05:22,094 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:language ;[\n]" +2022-11-14 09:05:22,095 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" +2022-11-14 09:05:22,095 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" +2022-11-14 09:05:22,095 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" +2022-11-14 09:05:22,095 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "Person data Wikidata Uris"@en ;[\n]" +2022-11-14 09:05:22,095 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " void:rootResource ;[\n]" +2022-11-14 09:05:22,095 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " void:triples 3622531 ;[\n]" +2022-11-14 09:05:22,095 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:distribution , ;[\n]" +2022-11-14 09:05:22,095 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:keyword "Person data Wikidata Uris"@en , "DBpedia"@en ;[\n]" +2022-11-14 09:05:22,095 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:landingPage ;[\n]" +2022-11-14 09:05:22,095 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " sd:defaultGraph ;[\n]" +2022-11-14 09:05:22,095 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " foaf:page .[\n]" +2022-11-14 09:05:22,095 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,095 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,095 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:SingleFile ;[\n]" +2022-11-14 09:05:22,095 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "core-i18n/fr/instance_types_transitive_wkd_uris_fr.tql.bz2" , "Instance Types Transitive Wikidata Uris"@en ;[\n]" +2022-11-14 09:05:22,095 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" +2022-11-14 09:05:22,095 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:checksum ;[\n]" +2022-11-14 09:05:22,095 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:isDistributionOf ;[\n]" +2022-11-14 09:05:22,095 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" +2022-11-14 09:05:22,095 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:preview ;[\n]" +2022-11-14 09:05:22,095 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:uncompressedByteSize 1794860065 ;[\n]" +2022-11-14 09:05:22,095 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo ;[\n]" +2022-11-14 09:05:22,095 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "Contains transitive rdf:type $class based on the DBpedia ontology. Normalized dataset matching Wikidata resources (sorted)."@en ;[\n]" +2022-11-14 09:05:22,095 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion " +2022-11-14 09:05:22,096 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " ;[\n]" +2022-11-14 09:05:22,096 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" +2022-11-14 09:05:22,096 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" +2022-11-14 09:05:22,096 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" +2022-11-14 09:05:22,096 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" +2022-11-14 09:05:22,096 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "Instance Types Transitive Wikidata Uris"@en ;[\n]" +2022-11-14 09:05:22,096 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:byteSize 45539004 ;[\n]" +2022-11-14 09:05:22,096 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:downloadURL ;[\n]" +2022-11-14 09:05:22,096 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:mediaType dataid-mt:MediaType_n-quads_x-bzip2 .[\n]" +2022-11-14 09:05:22,096 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,096 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,096 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid-ld:LinkedDataDataset , dataid:Dataset ;[\n]" +2022-11-14 09:05:22,096 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "Homepages Wikidata Uris"@en ;[\n]" +2022-11-14 09:05:22,096 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" +2022-11-14 09:05:22,096 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" +2022-11-14 09:05:22,096 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:previousVersion ;[\n]" +2022-11-14 09:05:22,096 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedDatasetRelation[\n]" +2022-11-14 09:05:22,096 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " ;[\n]" +2022-11-14 09:05:22,096 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:relatedDataset ;[\n]" +2022-11-14 09:05:22,096 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo , ;[\n]" +2022-11-14 09:05:22,096 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "Links to homepages of persons, organizations etc. Normalized dataset matching Wikidata resources (sorted)."@en ;[\n]" +2022-11-14 09:05:22,096 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" +2022-11-14 09:05:22,097 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:isPartOf ;[\n]" +2022-11-14 09:05:22,097 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" +2022-11-14 09:05:22,097 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:language ;[\n]" +2022-11-14 09:05:22,097 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" +2022-11-14 09:05:22,097 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" +2022-11-14 09:05:22,097 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" +2022-11-14 09:05:22,097 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "Homepages Wikidata Uris"@en ;[\n]" +2022-11-14 09:05:22,097 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " void:rootResource ;[\n]" +2022-11-14 09:05:22,097 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " void:triples 171147 ;[\n]" +2022-11-14 09:05:22,097 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:distribution , ;[\n]" +2022-11-14 09:05:22,097 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:keyword "Homepages Wikidata Uris"@en , "DBpedia"@en ;[\n]" +2022-11-14 09:05:22,097 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:landingPage ;[\n]" +2022-11-14 09:05:22,097 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " sd:defaultGraph ;[\n]" +2022-11-14 09:05:22,097 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " foaf:page .[\n]" +2022-11-14 09:05:22,097 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,097 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,097 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:Dataset , dataid-ld:LinkedDataDataset ;[\n]" +2022-11-14 09:05:22,097 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "Nested Article Templates"@en ;[\n]" +2022-11-14 09:05:22,097 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" +2022-11-14 09:05:22,097 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" +2022-11-14 09:05:22,097 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:previousVersion ;[\n]" +2022-11-14 09:05:22,097 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedDatasetRelation[\n]" +2022-11-14 09:05:22,097 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " ;[\n]" +2022-11-14 09:05:22,097 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:relatedDataset ;[\n]" +2022-11-14 09:05:22,097 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo , ;[\n]" +2022-11-14 09:05:22,097 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "Templates used in an article (nested)."@en ;[\n]" +2022-11-14 09:05:22,097 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" +2022-11-14 09:05:22,097 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:isPartOf " +2022-11-14 09:05:22,100 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " ;[\n]" +2022-11-14 09:05:22,100 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" +2022-11-14 09:05:22,100 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:language ;[\n]" +2022-11-14 09:05:22,100 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" +2022-11-14 09:05:22,100 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" +2022-11-14 09:05:22,100 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" +2022-11-14 09:05:22,100 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "Nested Article Templates"@en ;[\n]" +2022-11-14 09:05:22,100 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " void:rootResource ;[\n]" +2022-11-14 09:05:22,100 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " void:triples 2566817 ;[\n]" +2022-11-14 09:05:22,100 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:distribution , ;[\n]" +2022-11-14 09:05:22,100 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:keyword "DBpedia"@en , "Nested Article Templates"@en ;[\n]" +2022-11-14 09:05:22,100 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:landingPage ;[\n]" +2022-11-14 09:05:22,100 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " sd:defaultGraph ;[\n]" +2022-11-14 09:05:22,100 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " foaf:page .[\n]" +2022-11-14 09:05:22,100 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,100 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,100 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:Dataset , dataid-ld:LinkedDataDataset ;[\n]" +2022-11-14 09:05:22,100 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "Revision Ids"@en ;[\n]" +2022-11-14 09:05:22,100 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " " +2022-11-14 09:05:22,101 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "dataid:associatedAgent ;[\n]" +2022-11-14 09:05:22,101 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" +2022-11-14 09:05:22,101 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:previousVersion ;[\n]" +2022-11-14 09:05:22,101 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedDatasetRelation[\n]" +2022-11-14 09:05:22,101 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " ;[\n]" +2022-11-14 09:05:22,101 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:relatedDataset ;[\n]" +2022-11-14 09:05:22,101 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo , ;[\n]" +2022-11-14 09:05:22,101 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "Dataset linking a DBpedia resource to the revision ID of the Wikipedia article the data was extracted from."@en ;[\n]" +2022-11-14 09:05:22,101 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" +2022-11-14 09:05:22,101 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:isPartOf ;[\n]" +2022-11-14 09:05:22,101 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" +2022-11-14 09:05:22,101 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:language ;[\n]" +2022-11-14 09:05:22,101 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" +2022-11-14 09:05:22,101 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" +2022-11-14 09:05:22,101 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" +2022-11-14 09:05:22,101 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "Revision Ids" +2022-11-14 09:05:22,102 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << ""@en ;[\n]" +2022-11-14 09:05:22,102 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " void:rootResource ;[\n]" +2022-11-14 09:05:22,102 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " void:triples 3831703 ;[\n]" +2022-11-14 09:05:22,102 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:distribution , ;[\n]" +2022-11-14 09:05:22,102 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:keyword "Revision Ids"@en , "DBpedia"@en ;[\n]" +2022-11-14 09:05:22,102 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:landingPage ;[\n]" +2022-11-14 09:05:22,102 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " sd:defaultGraph ;[\n]" +2022-11-14 09:05:22,102 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " foaf:page .[\n]" +2022-11-14 09:05:22,102 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,102 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,102 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:SingleFile ;[\n]" +2022-11-14 09:05:22,102 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "core-i18n/fr/wikipedia_links_fr.ttl.bz2" , "Wikipedia Links"@en ;[\n]" +2022-11-14 09:05:22,102 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" +2022-11-14 09:05:22,102 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:checksum ;[\n]" +2022-11-14 09:05:22,102 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:isDistributionOf ;[\n]" +2022-11-14 09:05:22,102 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" +2022-11-14 09:05:22,102 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:preview " +2022-11-14 09:05:22,102 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " ;[\n]" +2022-11-14 09:05:22,102 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:uncompressedByteSize 1768454737 ;[\n]" +2022-11-14 09:05:22,102 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo ;[\n]" +2022-11-14 09:05:22,102 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "Dataset linking DBpedia resource to corresponding article in Wikipedia."@en ;[\n]" +2022-11-14 09:05:22,102 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" +2022-11-14 09:05:22,102 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" +2022-11-14 09:05:22,102 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" +2022-11-14 09:05:22,102 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" +2022-11-14 09:05:22,102 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" +2022-11-14 09:05:22,102 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "Wikipedia Links"@en ;[\n]" +2022-11-14 09:05:22,102 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:byteSize 79262209 ;[\n]" +2022-11-14 09:05:22,102 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:downloadURL ;[\n]" +2022-11-14 09:05:22,102 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:mediaType dataid-mt:MediaType_turtle_x-bzip2 .[\n]" +2022-11-14 09:05:22,102 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,102 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,102 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:SingleFile ;[\n]" +2022-11-14 09:05:22,102 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "core-i18n/fr/wikipedia_links_fr.tql.bz2" , "Wikipedia Links"@en ;[\n]" +2022-11-14 09:05:22,102 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" +2022-11-14 09:05:22,103 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:checksum ;[\n]" +2022-11-14 09:05:22,103 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:isDistributionOf ;[\n]" +2022-11-14 09:05:22,103 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" +2022-11-14 09:05:22,103 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:preview ;[\n]" +2022-11-14 09:05:22,103 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:uncompressedByteSize 2645830781 ;[\n]" +2022-11-14 09:05:22,103 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo ;[\n]" +2022-11-14 09:05:22,103 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "Dataset linking DBpedia resource to corresponding article in Wikipedia."@en ;[\n]" +2022-11-14 09:05:22,103 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" +2022-11-14 09:05:22,103 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" +2022-11-14 09:05:22,103 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" +2022-11-14 09:05:22,103 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" +2022-11-14 09:05:22,103 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" +2022-11-14 09:05:22,103 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "Wikipedia Links"@en ;[\n]" +2022-11-14 09:05:22,103 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:byteSize 128222486 ;[\n]" +2022-11-14 09:05:22,103 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:downloadURL ;[\n]" +2022-11-14 09:05:22,103 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:mediaType dataid-mt:MediaType_n-quads_x-bzip2 .[\n]" +2022-11-14 09:05:22,103 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,103 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,103 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:SingleFile ;[\n]" +2022-11-14 09:05:22,103 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "core-i18n/fr/skos_categories_en_uris_fr.ttl.bz2" , "SKOS Categories English Uris"@en ;[\n]" +2022-11-14 09:05:22,103 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" +2022-11-14 09:05:22,103 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:checksum ;[\n]" +2022-11-14 09:05:22,103 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:isDistributionOf ;[\n]" +2022-11-14 09:05:22,103 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" +2022-11-14 09:05:22,103 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:preview ;[\n]" +2022-11-14 09:05:22,103 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:uncompressedByteSize 99843883 ;[\n]" +2022-11-14 09:05:22,103 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo ;[\n]" +2022-11-14 09:05:22,103 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "Information which concept is a category and how categories are related using the SKOS Vocabulary. Normali" +2022-11-14 09:05:22,124 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "zed dataset matching English DBpedia resources."@en ;[\n]" +2022-11-14 09:05:22,124 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" +2022-11-14 09:05:22,124 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" +2022-11-14 09:05:22,124 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" +2022-11-14 09:05:22,124 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" +2022-11-14 09:05:22,124 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" +2022-11-14 09:05:22,124 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "SKOS Categories English Uris"@en ;[\n]" +2022-11-14 09:05:22,124 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:byteSize 4508904 ;[\n]" +2022-11-14 09:05:22,124 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:downloadURL ;[\n]" +2022-11-14 09:05:22,124 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:mediaType dataid-mt:MediaType_turtle_x-bzip2 .[\n]" +2022-11-14 09:05:22,124 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,124 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,124 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:Dataset , dataid-ld:LinkedDataDataset ;[\n]" +2022-11-14 09:05:22,124 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "French Population Wikidata Uris"@en ;[\n]" +2022-11-14 09:05:22,124 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" +2022-11-14 09:05:22,124 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" +2022-11-14 09:05:22,124 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedDatasetRelation[\n]" +2022-11-14 09:05:22,124 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " " +2022-11-14 09:05:22,125 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " ;[\n]" +2022-11-14 09:05:22,125 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:relatedDataset ;[\n]" +2022-11-14 09:05:22,125 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo , ;[\n]" +2022-11-14 09:05:22,125 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "French dataset about population. Normalized dataset matching Wikidata resources (sorted)."@en ;[\n]" +2022-11-14 09:05:22,125 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" +2022-11-14 09:05:22,125 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:isPartOf ;[\n]" +2022-11-14 09:05:22,125 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" +2022-11-14 09:05:22,125 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:language ;[\n]" +2022-11-14 09:05:22,125 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" +2022-11-14 09:05:22,125 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" +2022-11-14 09:05:22,125 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" +2022-11-14 09:05:22,125 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "French Population Wikidata Uris"@en ;[\n]" +2022-11-14 09:05:22,125 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " void:rootResource ;[\n]" +2022-11-14 09:05:22,125 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " void:triples 41374 ;[\n]" +2022-11-14 09:05:22,125 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:distribution , ;[\n]" +2022-11-14 09:05:22,125 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:keyword "French Population Wikidata Uris"@en , "DBpedia"@en ;[\n]" +2022-11-14 09:05:22,125 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:landingPage ;[\n]" +2022-11-14 09:05:22,125 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " sd:defaultGraph ;[\n]" +2022-11-14 09:05:22,125 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " foaf:page .[\n]" +2022-11-14 09:05:22,125 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,125 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,125 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:SingleFile ;[\n]" +2022-11-14 09:05:22,125 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "core-i18n/fr/instance_types_transitive_en_uris_fr.ttl.bz2" , "Instance Types Transitive English Uris"@en ;[\n]" +2022-11-14 09:05:22,125 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" +2022-11-14 09:05:22,125 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:checksum ;[\n]" +2022-11-14 09:05:22,125 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:isDistributionOf ;[\n]" +2022-11-14 09:05:22,125 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" +2022-11-14 09:05:22,125 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:preview ;[\n]" +2022-11-14 09:05:22,125 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:uncompressedByteSize " +2022-11-14 09:05:22,125 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "690674922 ;[\n]" +2022-11-14 09:05:22,125 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo ;[\n]" +2022-11-14 09:05:22,125 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "Contains transitive rdf:type $class based on the DBpedia ontology. Normalized dataset matching English DBpedia resources."@en ;[\n]" +2022-11-14 09:05:22,125 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" +2022-11-14 09:05:22,125 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" +2022-11-14 09:05:22,125 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" +2022-11-14 09:05:22,125 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" +2022-11-14 09:05:22,125 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" +2022-11-14 09:05:22,125 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "Instance Types Transitive English Uris"@en ;[\n]" +2022-11-14 09:05:22,125 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:byteSize 20207344 ;[\n]" +2022-11-14 09:05:22,125 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:downloadURL ;[\n]" +2022-11-14 09:05:22,125 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:mediaType dataid-mt:MediaType_turtle_x-bzip2 .[\n]" +2022-11-14 09:05:22,125 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,125 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,125 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:SingleFile ;[\n]" +2022-11-14 09:05:22,125 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "SKOS Categories English Uris"@en , "core-i18n/fr/skos_categories_en_uris_fr.tql.bz2" ;[\n]" +2022-11-14 09:05:22,125 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" +2022-11-14 09:05:22,132 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:checksum ;[\n]" +2022-11-14 09:05:22,132 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:isDistributionOf ;[\n]" +2022-11-14 09:05:22,132 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" +2022-11-14 09:05:22,132 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:preview ;[\n]" +2022-11-14 09:05:22,132 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:uncompressedByteSize 155999390 ;[\n]" +2022-11-14 09:05:22,132 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo ;[\n]" +2022-11-14 09:05:22,132 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "Information which concept is a category and how categories are related using the SKOS Vocabulary. Normalized dataset matching English DBpedia resources."@en ;[\n]" +2022-11-14 09:05:22,132 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" +2022-11-14 09:05:22,132 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" +2022-11-14 09:05:22,132 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" +2022-11-14 09:05:22,132 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" +2022-11-14 09:05:22,132 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" +2022-11-14 09:05:22,132 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "SKOS Ca" +2022-11-14 09:05:22,133 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "tegories English Uris"@en ;[\n]" +2022-11-14 09:05:22,133 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:byteSize 7904810 ;[\n]" +2022-11-14 09:05:22,133 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:downloadURL ;[\n]" +2022-11-14 09:05:22,133 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:mediaType dataid-mt:MediaType_n-quads_x-bzip2 .[\n]" +2022-11-14 09:05:22,133 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,133 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,133 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid-ld:LinkedDataDataset , dataid:Dataset ;[\n]" +2022-11-14 09:05:22,133 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "Person data"@en ;[\n]" +2022-11-14 09:05:22,133 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" +2022-11-14 09:05:22,133 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" +2022-11-14 09:05:22,133 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedDatasetRelation[\n]" +2022-11-14 09:05:22,133 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " ;[\n]" +2022-11-14 09:05:22,133 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:relatedDataset ;[\n]" +2022-11-14 09:05:22,133 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo , ;[\n]" +2022-11-14 09:05:22,133 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "Information about persons (date and place of birth etc., extracted from the English and German Wikipedia, represented using the FOAF vocabulary."@en ;[\n]" +2022-11-14 09:05:22,133 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" +2022-11-14 09:05:22,133 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:isPartOf ;[\n]" +2022-11-14 09:05:22,133 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" +2022-11-14 09:05:22,133 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:language ;[\n]" +2022-11-14 09:05:22,133 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" +2022-11-14 09:05:22,133 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" +2022-11-14 09:05:22,133 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" +2022-11-14 09:05:22,133 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "Person data"@en ;[\n]" +2022-11-14 09:05:22,133 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " void:rootResource ;[\n]" +2022-11-14 09:05:22,133 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " void:triples 3622531 ;[\n]" +2022-11-14 09:05:22,133 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:distribution , ;[\n]" +2022-11-14 09:05:22,133 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:keyword "Person data"@en , "DBpedia"@en ;[\n]" +2022-11-14 09:05:22,133 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:landingPage ;[\n]" +2022-11-14 09:05:22,133 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " sd:defaultGraph ;[\n]" +2022-11-14 09:05:22,133 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " foaf:page .[\n]" +2022-11-14 09:05:22,133 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,133 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,133 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:SingleFile ;[\n]" +2022-11-14 09:05:22,133 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "Instance Types Transitive English Uris"@en , "core-i18n/fr/instance_types_transitive_en_uris_fr.tql.bz2" ;[\n]" +2022-11-14 09:05:22,133 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associated" +2022-11-14 09:05:22,134 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "Agent ;[\n]" +2022-11-14 09:05:22,134 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:checksum ;[\n]" +2022-11-14 09:05:22,134 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:isDistributionOf ;[\n]" +2022-11-14 09:05:22,134 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" +2022-11-14 09:05:22,134 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:preview ;[\n]" +2022-11-14 09:05:22,134 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:uncompressedByteSize 1284046793 ;[\n]" +2022-11-14 09:05:22,134 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo ;[\n]" +2022-11-14 09:05:22,134 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "Contains transitive rdf:type $class based on the DBpedia ontology. Normalized dataset matching English DBpedia resources."@en ;[\n]" +2022-11-14 09:05:22,134 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" +2022-11-14 09:05:22,134 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" +2022-11-14 09:05:22,134 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" +2022-11-14 09:05:22,134 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" +2022-11-14 09:05:22,134 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" +2022-11-14 09:05:22,134 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "Instance Types Transitive English Uris"@en ;[\n]" +2022-11-14 09:05:22,134 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:byteSize 35305518 ;[\n]" +2022-11-14 09:05:22,134 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:downloadURL ;[\n]" +2022-11-14 09:05:22,134 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:mediaType dataid-mt:MediaType_n-quads_x-bzip2 .[\n]" +2022-11-14 09:05:22,134 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,134 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,134 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:SingleFile ;[\n]" +2022-11-14 09:05:22,134 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "Category Labels. English Uris"@en , "core-i18n/fr/category_labels_en_uris_fr.ttl.bz2" ;[\n]" +2022-11-14 09:05:22,134 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" +2022-11-14 09:05:22,134 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:checksum ;[\n]" +2022-11-14 09:05:22,134 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:isDistributionOf ;[\n]" +2022-11-14 09:05:22,134 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" +2022-11-14 09:05:22,134 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:preview ;[\n]" +2022-11-14 09:05:22,134 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:uncompressedByteSize 23827517 ;[\n]" +2022-11-14 09:05:22,134 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo ;[\n]" +2022-11-14 09:05:22,134 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "Labels for Categories. Normalized dataset matching English DBpedia resources."@en ;[\n]" +2022-11-14 09:05:22,134 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" +2022-11-14 09:05:22,134 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" +2022-11-14 09:05:22,134 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" +2022-11-14 09:05:22,134 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" +2022-11-14 09:05:22,134 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" +2022-11-14 09:05:22,134 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "Category Labels. English Uris"@en ;[\n]" +2022-11-14 09:05:22,134 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:byteSize 1838112 ;[\n]" +2022-11-14 09:05:22,134 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:downloadURL ;[\n]" +2022-11-14 09:05:22,134 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:mediaType dataid-mt:MediaType_turtle_x-bzip2 .[\n]" +2022-11-14 09:05:22,134 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,134 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,134 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:Dataset , dataid-ld:LinkedDataDataset ;[\n]" +2022-11-14 09:05:22,134 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "Short Abstracts Wikidata Uris"@en ;[\n]" +2022-11-14 09:05:22,134 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" +2022-11-14 09:05:22,134 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" +2022-11-14 09:05:22,134 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:previousVersion " +2022-11-14 09:05:22,135 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " ;[\n]" +2022-11-14 09:05:22,135 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedDatasetRelation[\n]" +2022-11-14 09:05:22,135 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " ;[\n]" +2022-11-14 09:05:22,135 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:relatedDataset ;[\n]" +2022-11-14 09:05:22,135 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo , ;[\n]" +2022-11-14 09:05:22,135 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "Short Abstracts (about 600 characters long) of Wikipedia articles. Normalized dataset matching Wikidata resources (sorted)."@en ;[\n]" +2022-11-14 09:05:22,135 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" +2022-11-14 09:05:22,135 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:isPartOf ;[\n]" +2022-11-14 09:05:22,135 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" +2022-11-14 09:05:22,135 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:language ;[\n]" +2022-11-14 09:05:22,135 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" +2022-11-14 09:05:22,135 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" +2022-11-14 09:05:22,135 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" +2022-11-14 09:05:22,135 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "Short Abstracts Wikidata Uris"@en ;[\n]" +2022-11-14 09:05:22,135 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " void:rootResource ;[\n]" +2022-11-14 09:05:22,135 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " void:triples 1678856 ;[\n]" +2022-11-14 09:05:22,135 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:distribution , ;[\n]" +2022-11-14 09:05:22,135 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:keyword "DBpedia"@en , "Short Abstracts Wikidata Uris"@en ;[\n]" +2022-11-14 09:05:22,135 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:landingPage ;[\n]" +2022-11-14 09:05:22,135 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " sd:defaultGraph ;[\n]" +2022-11-14 09:05:22,135 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " foaf:page .[\n]" +2022-11-14 09:05:22,135 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,135 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,135 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:SingleFile ;[\n]" +2022-11-14 09:05:22,135 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "Topical Concepts"@en , "core-i18n/fr/topical_concepts_fr.ttl.bz2" ;[\n]" +2022-11-14 09:05:22,135 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" +2022-11-14 09:05:22,135 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:checksum ;[\n]" +2022-11-14 09:05:22,135 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:isDistributionOf ;[\n]" +2022-11-14 09:05:22,135 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" +2022-11-14 09:05:22,135 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:preview ;[\n]" +2022-11-14 09:05:22,137 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:uncompressedByteSize 19824066 ;[\n]" +2022-11-14 09:05:22,137 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo ;[\n]" +2022-11-14 09:05:22,137 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "Resources that describe a category"@en ;[\n]" +2022-11-14 09:05:22,137 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" +2022-11-14 09:05:22,137 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" +2022-11-14 09:05:22,137 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" +2022-11-14 09:05:22,137 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" +2022-11-14 09:05:22,137 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" +2022-11-14 09:05:22,137 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "Topical Concepts"@en ;[\n]" +2022-11-14 09:05:22,137 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:byteSize 963916 ;[\n]" +2022-11-14 09:05:22,137 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:downloadURL ;[\n]" +2022-11-14 09:05:22,137 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:mediaType dataid-mt:MediaType_turtle_x-bzip2 .[\n]" +2022-11-14 09:05:22,137 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,137 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,137 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:SingleFile ;[\n]" +2022-11-14 09:05:22,137 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "core-i18n/fr/topical_concepts_fr.tql.bz2" , "Topical Concepts"@en ;[\n]" +2022-11-14 09:05:22,137 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" +2022-11-14 09:05:22,137 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:checksum ;[\n]" +2022-11-14 09:05:22,137 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:isDistributionOf ;[\n]" +2022-11-14 09:05:22,137 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" +2022-11-14 09:05:22,137 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:preview ;[\n]" +2022-11-14 09:05:22,137 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:uncompressedByteSize 32606418 ;[\n]" +2022-11-14 09:05:22,137 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo ;[\n]" +2022-11-14 09:05:22,137 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "Resources that describe a category"@en ;[\n]" +2022-11-14 09:05:22,137 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" +2022-11-14 09:05:22,137 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" +2022-11-14 09:05:22,137 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" +2022-11-14 09:05:22,137 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" +2022-11-14 09:05:22,137 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" +2022-11-14 09:05:22,137 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "Topical Concepts"@en ;[\n]" +2022-11-14 09:05:22,137 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:byteSize 1780548 ;[\n]" +2022-11-14 09:05:22,137 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:downloadURL ;[\n]" +2022-11-14 09:05:22,137 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:mediaType dataid-mt" +2022-11-14 09:05:22,143 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << ":MediaType_n-quads_x-bzip2 .[\n]" +2022-11-14 09:05:22,143 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,143 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,143 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:SingleFile ;[\n]" +2022-11-14 09:05:22,143 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "core-i18n/fr/article_categories_en_uris_fr.ttl.bz2" , "Article Categories English Uris"@en ;[\n]" +2022-11-14 09:05:22,143 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" +2022-11-14 09:05:22,143 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:checksum ;[\n]" +2022-11-14 09:05:22,143 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:isDistributionOf ;[\n]" +2022-11-14 09:05:22,143 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" +2022-11-14 09:05:22,143 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:preview ;[\n]" +2022-11-14 09:05:22,143 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:uncompressedByteSize 406587108 ;[\n]" +2022-11-14 09:05:22,143 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo ;[\n]" +2022-11-14 09:05:22,143 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "Links from concepts to categories using the SKOS vocabulary. Normalized dataset matching English DBpedia resources."@en ;[\n]" +2022-11-14 09:05:22,143 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" +2022-11-14 09:05:22,144 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" +2022-11-14 09:05:22,144 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" +2022-11-14 09:05:22,144 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" +2022-11-14 09:05:22,144 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" +2022-11-14 09:05:22,144 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "Article Categories English Uris"@en ;[\n]" +2022-11-14 09:05:22,144 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:byteSize 27847553 ;[\n]" +2022-11-14 09:05:22,144 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:downloadURL ;[\n]" +2022-11-14 09:05:22,144 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:mediaType dataid-mt:MediaType_turtle_x-bzip2 .[\n]" +2022-11-14 09:05:22,144 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,144 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,144 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:SingleFile ;[\n]" +2022-11-14 09:05:22,144 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "NIF Text Links"@en , "core-i18n/fr/nif_text_links_fr.ttl.bz2" ;[\n]" +2022-11-14 09:05:22,144 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" +2022-11-14 09:05:22,144 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:checksum ;[\n]" +2022-11-14 09:05:22,144 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:isDistributionOf ;[\n]" +2022-11-14 09:05:22,144 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" +2022-11-14 09:05:22,144 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:preview ;[\n]" +2022-11-14 09:05:22,144 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:uncompressedByteSize 90566118826 ;[\n]" +2022-11-14 09:05:22,144 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo ;[\n]" +2022-11-14 09:05:22,144 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "This dataset contains all text links of a Wikipedia page, detailed in the NIF format."@en ;[\n]" +2022-11-14 09:05:22,144 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" +2022-11-14 09:05:22,144 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" +2022-11-14 09:05:22,144 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" +2022-11-14 09:05:22,144 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" +2022-11-14 09:05:22,144 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" +2022-11-14 09:05:22,144 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "NIF Text Links"@en ;[\n]" +2022-11-14 09:05:22,144 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:byteSize 2501070213 ;[\n]" +2022-11-14 09:05:22,144 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:downloadURL ;[\n]" +2022-11-14 09:05:22,144 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:mediaType dataid-mt:MediaType_turtle_x-bzip2 .[\n]" +2022-11-14 09:05:22,144 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,144 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,144 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:SingleFile ;[\n]" +2022-11-14 09:05:22,144 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "core-i18n/fr/raw_tables_fr.ttl.bz2" , "Raw html tables"@en ;[\n]" +2022-11-14 09:05:22,144 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " " +2022-11-14 09:05:22,145 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" +2022-11-14 09:05:22,145 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:checksum ;[\n]" +2022-11-14 09:05:22,145 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:isDistributionOf ;[\n]" +2022-11-14 09:05:22,145 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" +2022-11-14 09:05:22,145 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:preview ;[\n]" +2022-11-14 09:05:22,145 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:uncompressedByteSize 14708397280 ;[\n]" +2022-11-14 09:05:22,145 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo ;[\n]" +2022-11-14 09:05:22,145 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "These are the raw html tables collected during the NIF extraction; to be further processed later."@en ;[\n]" +2022-11-14 09:05:22,145 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" +2022-11-14 09:05:22,145 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" +2022-11-14 09:05:22,145 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" +2022-11-14 09:05:22,145 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" +2022-11-14 09:05:22,145 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" +2022-11-14 09:05:22,145 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "Raw html tables"@en ;[\n]" +2022-11-14 09:05:22,145 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:byteSize 798083999 ;[\n]" +2022-11-14 09:05:22,145 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:downloadURL ;[\n]" +2022-11-14 09:05:22,145 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:mediaType dataid-mt:MediaType_turtle_x-bzip2 .[\n]" +2022-11-14 09:05:22,145 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,145 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,145 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:SingleFile ;[\n]" +2022-11-14 09:05:22,145 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "Out Degree"@en , "core-i18n/fr/out_degree_fr.tql.bz2" ;[\n]" +2022-11-14 09:05:22,145 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" +2022-11-14 09:05:22,145 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:checksum ;[\n]" +2022-11-14 09:05:22,145 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:isDistributionOf ;[\n]" +2022-11-14 09:05:22,145 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" +2022-11-14 09:05:22,145 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:preview ;[\n]" +2022-11-14 09:05:22,145 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:uncompressedByteSize 749683170 ;[\n]" +2022-11-14 09:05:22,145 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo ;[\n]" +2022-11-14 09:05:22,145 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "Number of links emerging from a Wikipedia article and pointing to another Wikipedia article."@en ;[\n]" +2022-11-14 09:05:22,145 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" +2022-11-14 09:05:22,145 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" +2022-11-14 09:05:22,145 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" +2022-11-14 09:05:22,145 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" +2022-11-14 09:05:22,145 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" +2022-11-14 09:05:22,145 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "Out Degree"@en ;[\n]" +2022-11-14 09:05:22,145 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:byteSize 54811602 ;[\n]" +2022-11-14 09:05:22,145 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:downloadURL ;[\n]" +2022-11-14 09:05:22,145 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:mediaType dataid-mt:MediaType_n-quads_x-bzip2 .[\n]" +2022-11-14 09:05:22,145 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,145 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,145 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid-ld:LinkedDataDataset , dataid:Dataset ;[\n]" +2022-11-14 09:05:22,145 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "Geo Coordinates Mappingbased English Uris"@en ;[\n]" +2022-11-14 09:05:22,145 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" +2022-11-14 09:05:22,145 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" +2022-11-14 09:05:22,145 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedDatasetRelation[\n]" +2022-11-14 09:05:22,145 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " ;[\n]" +2022-11-14 09:05:22,145 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:relatedDataset ;[\n]" +2022-11-14 09:05:22,145 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo , ;[\n]" +2022-11-14 09:05:22,147 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "Geographic coordinates extracted from Wikipedia originating from mapped infoboxes in the mappings wiki Normalized dataset matching English DBpedia resources."@en ;[\n]" +2022-11-14 09:05:22,147 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" +2022-11-14 09:05:22,147 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:isPartOf ;[\n]" +2022-11-14 09:05:22,147 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" +2022-11-14 09:05:22,147 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:language ;[\n]" +2022-11-14 09:05:22,147 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" +2022-11-14 09:05:22,147 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" +2022-11-14 09:05:22,147 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" +2022-11-14 09:05:22,147 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "Geo Coordinates Mappingbased English Uris"@en ;[\n]" +2022-11-14 09:05:22,147 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " void:rootResource ;[\n]" +2022-11-14 09:05:22,147 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " void:triples 664186 ;[\n]" +2022-11-14 09:05:22,147 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:distribution , ;[\n]" +2022-11-14 09:05:22,147 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:keyword "Geo Coordinates Mappingbased English Uris"@en , "DBpedia"@en ;[\n]" +2022-11-14 09:05:22,147 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:landingPage ;[\n]" +2022-11-14 09:05:22,147 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " sd:defaultGraph ;[\n]" +2022-11-14 09:05:22,147 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " foaf:page .[\n]" +2022-11-14 09:05:22,147 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,147 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,147 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:SingleFile ;[\n]" +2022-11-14 09:05:22,147 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "French Population English Uris"@en , "core-i18n/fr/french_population_en_uris_fr.ttl.bz2" ;[\n]" +2022-11-14 09:05:22,147 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" +2022-11-14 09:05:22,147 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:checksum ;[\n]" +2022-11-14 09:05:22,147 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:isDistributionOf ;[\n]" +2022-11-14 09:05:22,147 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" +2022-11-14 09:05:22,147 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:preview ;[\n]" +2022-11-14 09:05:22,147 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:uncompressedByteSize 5903911 ;[\n]" +2022-11-14 09:05:22,147 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo ;[\n]" +2022-11-14 09:05:22,147 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:descripti" +2022-11-14 09:05:22,148 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "on "French dataset about population. Normalized dataset matching English DBpedia resources."@en ;[\n]" +2022-11-14 09:05:22,148 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" +2022-11-14 09:05:22,148 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" +2022-11-14 09:05:22,148 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" +2022-11-14 09:05:22,148 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" +2022-11-14 09:05:22,148 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" +2022-11-14 09:05:22,148 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "French Population English Uris"@en ;[\n]" +2022-11-14 09:05:22,148 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:byteSize 253255 ;[\n]" +2022-11-14 09:05:22,148 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:downloadURL ;[\n]" +2022-11-14 09:05:22,148 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:mediaType dataid-mt:MediaType_turtle_x-bzip2 .[\n]" +2022-11-14 09:05:22,148 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,148 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,148 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid-ld:LinkedDataDataset , dataid:Dataset ;[\n]" +2022-11-14 09:05:22,148 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "Article Categories"@en ;[\n]" +2022-11-14 09:05:22,148 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" +2022-11-14 09:05:22,148 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" +2022-11-14 09:05:22,148 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:previousVersion ;[\n]" +2022-11-14 09:05:22,148 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedDatasetRelation[\n]" +2022-11-14 09:05:22,148 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " ;[\n]" +2022-11-14 09:05:22,148 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:relatedDataset ;[\n]" +2022-11-14 09:05:22,148 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo , ;[\n]" +2022-11-14 09:05:22,148 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "Links from concepts to categories using the SKOS vocabulary."@en ;[\n]" +2022-11-14 09:05:22,148 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" +2022-11-14 09:05:22,148 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:isPartOf ;[\n]" +2022-11-14 09:05:22,148 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" +2022-11-14 09:05:22,148 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:language ;[\n]" +2022-11-14 09:05:22,148 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" +2022-11-14 09:05:22,148 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" +2022-11-14 09:05:22,148 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" +2022-11-14 09:05:22,148 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "Article Categories"@en ;[\n]" +2022-11-14 09:05:22,148 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " void:rootResource ;[\n]" +2022-11-14 09:05:22,148 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " void:triples 6549309 ;[\n]" +2022-11-14 09:05:22,148 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:distribution , ;[\n]" +2022-11-14 09:05:22,149 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:keyword "DBpedia"@en , "Article Categories"@en ;[\n]" +2022-11-14 09:05:22,149 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:landingPage ;[\n]" +2022-11-14 09:05:22,149 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " sd:defaultGraph ;[\n]" +2022-11-14 09:05:22,149 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " foaf:page .[\n]" +2022-11-14 09:05:22,149 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,149 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,149 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:SingleFile ;[\n]" +2022-11-14 09:05:22,149 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "French Population English Uris"@en , "core-i18n/fr/french_population_en_uris_fr.tql.bz2" ;[\n]" +2022-11-14 09:05:22,149 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" +2022-11-14 09:05:22,149 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:checksum ;[\n]" +2022-11-14 09:05:22,149 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:isDistributionOf ;[\n]" +2022-11-14 09:05:22,149 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" +2022-11-14 09:05:22,149 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:preview ;[\n]" +2022-11-14 09:05:22,149 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:uncompressedByteSize 10425645 ;[\n]" +2022-11-14 09:05:22,149 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo " +2022-11-14 09:05:22,150 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " ;[\n]" +2022-11-14 09:05:22,150 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "French dataset about population. Normalized dataset matching English DBpedia resources."@en ;[\n]" +2022-11-14 09:05:22,150 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" +2022-11-14 09:05:22,150 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" +2022-11-14 09:05:22,150 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" +2022-11-14 09:05:22,150 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" +2022-11-14 09:05:22,150 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" +2022-11-14 09:05:22,150 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "French Population English Uris"@en ;[\n]" +2022-11-14 09:05:22,150 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:byteSize 499005 ;[\n]" +2022-11-14 09:05:22,150 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:downloadURL ;[\n]" +2022-11-14 09:05:22,150 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:mediaType dataid-mt:MediaType_n-quads_x-bzip2 .[\n]" +2022-11-14 09:05:22,150 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,150 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,150 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:Dataset , dataid-ld:LinkedDataDataset ;[\n]" +2022-11-14 09:05:22,150 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "Mappingbased Literals"@en ;[\n]" +2022-11-14 09:05:22,150 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" +2022-11-14 09:05:22,150 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" +2022-11-14 09:05:22,150 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:previousVersion ;[\n]" +2022-11-14 09:05:22,150 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedDatasetRelation[\n]" +2022-11-14 09:05:22,150 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " ;[\n]" +2022-11-14 09:05:22,150 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:relatedDataset ;[\n]" +2022-11-14 09:05:22,150 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo , ;[\n]" +2022-11-14 09:05:22,150 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "High-quality data extracted from Infoboxes using the mapping-based extraction (Literal properties only). The predicates in this dataset are in the ontology namespace. Note that this data is of much higher quality than the Raw Infobox Properties in the 'property' namespace."@en ;[\n]" +2022-11-14 09:05:22,150 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" +2022-11-14 09:05:22,150 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:isPartOf ;[\n]" +2022-11-14 09:05:22,150 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" +2022-11-14 09:05:22,150 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:language ;[\n]" +2022-11-14 09:05:22,150 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" +2022-11-14 09:05:22,150 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" +2022-11-14 09:05:22,150 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" +2022-11-14 09:05:22,150 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "Mappingbased Literals"@en ;[\n]" +2022-11-14 09:05:22,150 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " void:rootResource ;[\n]" +2022-11-14 09:05:22,150 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " void:triples 5080630 ;[\n]" +2022-11-14 09:05:22,150 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:distribution , ;[\n]" +2022-11-14 09:05:22,150 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:keyword "DBpedia"@en , "Mappingbased Literals"@en ;[\n]" +2022-11-14 09:05:22,150 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:landingPage ;[\n]" +2022-11-14 09:05:22,150 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " sd:defaultGraph ;[\n]" +2022-11-14 09:05:22,150 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " foaf:page .[\n]" +2022-11-14 09:05:22,150 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,150 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,150 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:SingleFile ;[\n]" +2022-11-14 09:05:22,150 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "NIF Context"@en , "core-i18n/fr/nif_context_fr.tql.bz2" ;[\n]" +2022-11-14 09:05:22,150 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" +2022-11-14 09:05:22,150 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:checksum ;[\n]" +2022-11-14 09:05:22,150 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:isDistributionOf ;[\n]" +2022-11-14 09:05:22,150 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" +2022-11-14 09:05:22,150 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:preview ;[\n]" +2022-11-14 09:05:22,150 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:uncompressedByteSize 7635864056 ;[\n]" +2022-11-14 09:05:22,150 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo ;[\n]" +2022-11-14 09:05:22,150 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "Contains the full text of a Wikipedia page in the NLP Interchange Format (NIF). All other NIF resources will reference the context of its Wikipedia page.It contains the whole text of a WikiPage (minus tables and references and minor artifacts)"@en ;[\n]" +2022-11-14 09:05:22,150 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" +2022-11-14 09:05:22,150 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" +2022-11-14 09:05:22,150 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" +2022-11-14 09:05:22,150 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" +2022-11-14 09:05:22,150 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" +2022-11-14 09:05:22,150 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "NIF Context"@en ;[\n]" +2022-11-14 09:05:22,150 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:byteSize 1506058648 ;[\n]" +2022-11-14 09:05:22,150 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:downloadURL ;[\n]" +2022-11-14 09:05:22,150 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:mediaType dataid-mt:MediaType_n-quads_x-bzip2 .[\n]" +2022-11-14 09:05:22,150 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,150 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,150 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:SingleFile ;[\n]" +2022-11-14 09:05:22,150 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label " +2022-11-14 09:05:22,152 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " "Equations in MathML"@en , "core-i18n/fr/equations_fr.tql.bz2" ;[\n]" +2022-11-14 09:05:22,152 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" +2022-11-14 09:05:22,152 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:checksum ;[\n]" +2022-11-14 09:05:22,152 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:isDistributionOf ;[\n]" +2022-11-14 09:05:22,152 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" +2022-11-14 09:05:22,152 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:preview ;[\n]" +2022-11-14 09:05:22,152 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:uncompressedByteSize 492322845 ;[\n]" +2022-11-14 09:05:22,152 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo ;[\n]" +2022-11-14 09:05:22,152 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "This are all equations collected during the NIF extraction, transformed into MathML XML syntax."@en ;[\n]" +2022-11-14 09:05:22,152 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" +2022-11-14 09:05:22,152 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" +2022-11-14 09:05:22,152 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" +2022-11-14 09:05:22,152 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" +2022-11-14 09:05:22,152 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" +2022-11-14 09:05:22,152 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "Equation" +2022-11-14 09:05:22,153 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "s in MathML"@en ;[\n]" +2022-11-14 09:05:22,153 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:byteSize 10143896 ;[\n]" +2022-11-14 09:05:22,153 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:downloadURL ;[\n]" +2022-11-14 09:05:22,153 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:mediaType dataid-mt:MediaType_n-quads_x-bzip2 .[\n]" +2022-11-14 09:05:22,153 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,153 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,153 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid-ld:LinkedDataDataset , dataid:Dataset ;[\n]" +2022-11-14 09:05:22,153 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "Out Degree"@en ;[\n]" +2022-11-14 09:05:22,153 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" +2022-11-14 09:05:22,153 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" +2022-11-14 09:05:22,153 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:previousVersion ;[\n]" +2022-11-14 09:05:22,153 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedDatasetRelation[\n]" +2022-11-14 09:05:22,153 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " ;[\n]" +2022-11-14 09:05:22,153 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:relatedDataset ;[\n]" +2022-11-14 09:05:22,153 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo , ;[\n]" +2022-11-14 09:05:22,153 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "Number of links emerging from a Wikipedia article and pointing to another Wikipedia article."@en ;[\n]" +2022-11-14 09:05:22,153 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" +2022-11-14 09:05:22,153 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:isPartOf ;[\n]" +2022-11-14 09:05:22,153 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" +2022-11-14 09:05:22,153 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:language ;[\n]" +2022-11-14 09:05:22,153 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" +2022-11-14 09:05:22,153 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" +2022-11-14 09:05:22,153 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" +2022-11-14 09:05:22,153 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "Out Degree"@en ;[\n]" +2022-11-14 09:05:22,153 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " void:rootResource ;[\n]" +2022-11-14 09:05:22,153 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " void:triples 3241245 ;[\n]" +2022-11-14 09:05:22,153 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:distribution , ;[\n]" +2022-11-14 09:05:22,153 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:keyword "DBpedia"@en , "Out Degree"@en ;[\n]" +2022-11-14 09:05:22,153 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:landingPage ;[\n]" +2022-11-14 09:05:22,153 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " sd:defaultGraph ;[\n]" +2022-11-14 09:05:22,153 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " foaf:page .[\n]" +2022-11-14 09:05:22,153 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,153 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,153 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:Dataset , dataid-ld:LinkedDataDataset ;[\n]" +2022-11-14 09:05:22,153 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "External Links"@en ;[\n]" +2022-11-14 09:05:22,153 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" +2022-11-14 09:05:22,153 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" +2022-11-14 09:05:22,153 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:previousVersion ;[\n]" +2022-11-14 09:05:22,153 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedDatasetRelation[\n]" +2022-11-14 09:05:22,153 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " ;[\n]" +2022-11-14 09:05:22,153 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:relatedDataset ;[\n]" +2022-11-14 09:05:22,153 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo , ;[\n]" +2022-11-14 09:05:22,153 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "Links to external web pages about a conce" +2022-11-14 09:05:22,154 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "pt."@en ;[\n]" +2022-11-14 09:05:22,154 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" +2022-11-14 09:05:22,154 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:isPartOf ;[\n]" +2022-11-14 09:05:22,154 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" +2022-11-14 09:05:22,154 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:language ;[\n]" +2022-11-14 09:05:22,154 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" +2022-11-14 09:05:22,154 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" +2022-11-14 09:05:22,154 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" +2022-11-14 09:05:22,154 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "External Links"@en ;[\n]" +2022-11-14 09:05:22,154 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " void:rootResource ;[\n]" +2022-11-14 09:05:22,154 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " void:triples 1786240 ;[\n]" +2022-11-14 09:05:22,154 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:distribution , ;[\n]" +2022-11-14 09:05:22,154 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:keyword "External Links"@en , "DBpedia"@en ;[\n]" +2022-11-14 09:05:22,154 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:landingPage ;[\n]" +2022-11-14 09:05:22,154 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " sd:defaultGraph ;[\n]" +2022-11-14 09:05:22,154 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " foaf:page .[\n]" +2022-11-14 09:05:22,154 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,154 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,154 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:SingleFile ;[\n]" +2022-11-14 09:05:22,154 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "core-i18n/fr/infobox_test_fr.ttl.bz2" , "infobox test"@en ;[\n]" +2022-11-14 09:05:22,154 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" +2022-11-14 09:05:22,154 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:checksum ;[\n]" +2022-11-14 09:05:22,154 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:isDistributionOf ;[\n]" +2022-11-14 09:05:22,154 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" +2022-11-14 09:05:22,154 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:preview ;[\n]" +2022-11-14 09:05:22,154 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:uncompressedByteSize 64 ;[\n]" +2022-11-14 09:05:22,154 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo ;[\n]" +2022-11-14 09:05:22,154 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "DBpedia dataset infobox_test, subset of "@en ;[\n]" +2022-11-14 09:05:22,154 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" +2022-11-14 09:05:22,154 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" +2022-11-14 09:05:22,154 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" +2022-11-14 09:05:22,154 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" +2022-11-14 09:05:22,154 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" +2022-11-14 09:05:22,154 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "infobox test"@en ;[\n]" +2022-11-14 09:05:22,154 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:byteSize 89 ;[\n]" +2022-11-14 09:05:22,154 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:downloadURL ;[\n]" +2022-11-14 09:05:22,154 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:mediaType dataid-mt:MediaType_turtle_x-bzip2 .[\n]" +2022-11-14 09:05:22,154 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,154 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,154 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:SingleFile ;[\n]" +2022-11-14 09:05:22,154 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "Images English Uris"@en , "core-i18n/fr/images_en_uris_fr.ttl.bz2" ;[\n]" +2022-11-14 09:05:22,154 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" +2022-11-14 09:05:22,154 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:checksum ;[\n]" +2022-11-14 09:05:22,154 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:isDistributionOf ;[\n]" +2022-11-14 09:05:22,155 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" +2022-11-14 09:05:22,155 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:preview ;[\n]" +2022-11-14 09:05:22,155 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:uncompressedByteSize 947554296 ;[\n]" +2022-11-14 09:05:22,155 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo ;[\n]" +2022-11-14 09:05:22,155 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "Main image and corresponding thumbnail from Wikipedia article. Normalized dataset matching English DBpedia resources."@en ;[\n]" +2022-11-14 09:05:22,155 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" +2022-11-14 09:05:22,155 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" +2022-11-14 09:05:22,155 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" +2022-11-14 09:05:22,155 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" +2022-11-14 09:05:22,155 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" +2022-11-14 09:05:22,155 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "Images English Uris"@en ;[\n]" +2022-11-14 09:05:22,155 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:byteSize 38309474 ;[\n]" +2022-11-14 09:05:22,155 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:downloadURL ;[\n]" +2022-11-14 09:05:22,155 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:mediaType dataid-mt:MediaType_turtle_x-bzip2 .[\n]" +2022-11-14 09:05:22,155 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,155 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,174 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:SingleFile ;[\n]" +2022-11-14 09:05:22,174 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "Images English Uris"@en , "core-i18n/fr/images_en_uris_fr.tql.bz2" ;[\n]" +2022-11-14 09:05:22,174 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" +2022-11-14 09:05:22,174 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:checksum ;[\n]" +2022-11-14 09:05:22,174 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:isDistributionOf ;[\n]" +2022-11-14 09:05:22,174 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" +2022-11-14 09:05:22,174 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:preview ;[\n]" +2022-11-14 09:05:22,174 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:uncompressedByteSize 1372814884 ;[\n]" +2022-11-14 09:05:22,174 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo ;[\n]" +2022-11-14 09:05:22,174 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "Main image and corresponding thumbnail from Wikipedia article. Normalized dataset matching English DBpedia resources."@en ;[\n]" +2022-11-14 09:05:22,174 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" +2022-11-14 09:05:22,174 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" +2022-11-14 09:05:22,174 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" +2022-11-14 09:05:22,174 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" +2022-11-14 09:05:22,174 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" +2022-11-14 09:05:22,174 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "Images English Uris"@en ;[\n]" +2022-11-14 09:05:22,174 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:byteSize 57742576 ;[\n]" +2022-11-14 09:05:22,174 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:downloadURL ;[\n]" +2022-11-14 09:05:22,174 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:mediaType dataid-mt:MediaType_n-quads_x-bzip2 .[\n]" +2022-11-14 09:05:22,174 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,174 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,174 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:Dataset , dataid-ld:LinkedDataDataset ;[\n]" +2022-11-14 09:05:22,174 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "Mappingbased Literals English Uris"@en ;[\n]" +2022-11-14 09:05:22,174 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" +2022-11-14 09:05:22,174 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" +2022-11-14 09:05:22,174 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:previousVersion ;[\n]" +2022-11-14 09:05:22,174 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedDatasetRelation[\n]" +2022-11-14 09:05:22,174 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " ;[\n]" +2022-11-14 09:05:22,174 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:relatedDataset ;[\n]" +2022-11-14 09:05:22,174 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo , ;[\n]" +2022-11-14 09:05:22,174 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:descripti" +2022-11-14 09:05:22,175 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "on "High-quality data extracted from Infoboxes using the mapping-based extraction (Literal properties only). The predicates in this dataset are in the ontology namespace. Note that this data is of much higher quality than the Raw Infobox Properties in the 'property' namespace. Normalized dataset matching English DBpedia resources."@en ;[\n]" +2022-11-14 09:05:22,175 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" +2022-11-14 09:05:22,175 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:isPartOf ;[\n]" +2022-11-14 09:05:22,175 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" +2022-11-14 09:05:22,175 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:language ;[\n]" +2022-11-14 09:05:22,175 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" +2022-11-14 09:05:22,175 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" +2022-11-14 09:05:22,175 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" +2022-11-14 09:05:22,175 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "Mappingbased Literals English Uris"@en ;[\n]" +2022-11-14 09:05:22,176 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " void:rootResource ;[\n]" +2022-11-14 09:05:22,176 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " void:triples 2282395 ;[\n]" +2022-11-14 09:05:22,176 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:distribution , ;[\n]" +2022-11-14 09:05:22,176 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:keyword "DBpedia"@en , "Mappingbased Literals English Uris"@en ;[\n]" +2022-11-14 09:05:22,176 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:landingPage ;[\n]" +2022-11-14 09:05:22,176 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " sd:defaultGraph ;[\n]" +2022-11-14 09:05:22,176 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " foaf:page .[\n]" +2022-11-14 09:05:22,176 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,176 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,176 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:SingleFile ;[\n]" +2022-11-14 09:05:22,176 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "core-i18n/fr/persondata_fr.tql.bz2" , "Person data"@en ;[\n]" +2022-11-14 09:05:22,176 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" +2022-11-14 09:05:22,176 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:checksum ;[\n]" +2022-11-14 09:05:22,176 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:isDistributionOf ;[\n]" +2022-11-14 09:05:22,176 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" +2022-11-14 09:05:22,176 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:preview ;[\n]" +2022-11-14 09:05:22,176 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:uncompressedByteSize 644610137 ;[\n]" +2022-11-14 09:05:22,176 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo ;[\n]" +2022-11-14 09:05:22,176 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "Information about persons (date and place of birth etc., extracted from the Eng" +2022-11-14 09:05:22,177 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "lish and German Wikipedia, represented using the FOAF vocabulary."@en ;[\n]" +2022-11-14 09:05:22,177 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" +2022-11-14 09:05:22,177 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" +2022-11-14 09:05:22,177 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" +2022-11-14 09:05:22,177 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" +2022-11-14 09:05:22,177 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" +2022-11-14 09:05:22,177 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "Person data"@en ;[\n]" +2022-11-14 09:05:22,177 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:byteSize 34663074 ;[\n]" +2022-11-14 09:05:22,177 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:downloadURL ;[\n]" +2022-11-14 09:05:22,177 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:mediaType dataid-mt:MediaType_n-quads_x-bzip2 .[\n]" +2022-11-14 09:05:22,177 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,177 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,177 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:SingleFile ;[\n]" +2022-11-14 09:05:22,177 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "Disambiguations"@en , "core-i18n/fr/disambiguations_fr.ttl.bz2" ;[\n]" +2022-11-14 09:05:22,177 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" +2022-11-14 09:05:22,177 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:checksum ;[\n]" +2022-11-14 09:05:22,177 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:isDistributionOf ;" +2022-11-14 09:05:22,177 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,177 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" +2022-11-14 09:05:22,177 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:preview ;[\n]" +2022-11-14 09:05:22,177 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:uncompressedByteSize 85568495 ;[\n]" +2022-11-14 09:05:22,177 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo ;[\n]" +2022-11-14 09:05:22,177 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "Links extracted from Wikipedia disambiguation pages. Since Wikipedia has no syntax to distinguish disambiguation links from ordinary links, DBpedia has to use heuristics."@en ;[\n]" +2022-11-14 09:05:22,177 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" +2022-11-14 09:05:22,177 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" +2022-11-14 09:05:22,177 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" +2022-11-14 09:05:22,177 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" +2022-11-14 09:05:22,177 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" +2022-11-14 09:05:22,177 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "Disambiguations"@en ;[\n]" +2022-11-14 09:05:22,177 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:byteSize 4670656 ;[\n]" +2022-11-14 09:05:22,177 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:downloadURL ;[\n]" +2022-11-14 09:05:22,177 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:mediaType dataid-mt:MediaType_turtle_x-bzip2 .[\n]" +2022-11-14 09:05:22,177 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,177 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,177 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:SingleFile ;[\n]" +2022-11-14 09:05:22,177 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "Mappingbased Objects Wikidata Uris"@en , "core-i18n/fr/mappingbased_objects_wkd_uris_fr.ttl.bz2" ;[\n]" +2022-11-14 09:05:22,177 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" +2022-11-14 09:05:22,177 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:checksum ;[\n]" +2022-11-14 09:05:22,177 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:isDistributionOf ;[\n]" +2022-11-14 09:05:22,177 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" +2022-11-14 09:05:22,177 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:preview ;[\n]" +2022-11-14 09:05:22,177 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:uncompressedByteSize 435482129 ;[\n]" +2022-11-14 09:05:22,177 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo ;[\n]" +2022-11-14 09:05:22,177 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "High-quality data extracted from Infoboxes using the mapping-based extraction (Object properties only). The predicates in this dataset are in the 'ontology' namespace. Note that this data is of much higher quality than the Raw Infobox Propertie" +2022-11-14 09:05:22,178 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "s in the 'property' namespace. Normalized dataset matching Wikidata resources (sorted)."@en ;[\n]" +2022-11-14 09:05:22,178 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" +2022-11-14 09:05:22,178 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" +2022-11-14 09:05:22,178 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" +2022-11-14 09:05:22,178 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" +2022-11-14 09:05:22,178 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" +2022-11-14 09:05:22,178 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "Mappingbased Objects Wikidata Uris"@en ;[\n]" +2022-11-14 09:05:22,178 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:byteSize 17881116 ;[\n]" +2022-11-14 09:05:22,178 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:downloadURL ;[\n]" +2022-11-14 09:05:22,178 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:mediaType dataid-mt:MediaType_turtle_x-bzip2 .[\n]" +2022-11-14 09:05:22,178 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,178 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,178 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:SingleFile ;[\n]" +2022-11-14 09:05:22,178 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "French Population"@en , "core-i18n/fr/french_population_fr.tql.bz2" ;[\n]" +2022-11-14 09:05:22,178 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" +2022-11-14 09:05:22,178 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:checksum ;[\n]" +2022-11-14 09:05:22,178 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:isDistributionOf ;[\n]" +2022-11-14 09:05:22,178 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" +2022-11-14 09:05:22,178 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:preview ;[\n]" +2022-11-14 09:05:22,178 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:uncompressedByteSize 11893992 ;[\n]" +2022-11-14 09:05:22,178 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo ;[\n]" +2022-11-14 09:05:22,178 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "French dataset about population."@en ;[\n]" +2022-11-14 09:05:22,178 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" +2022-11-14 09:05:22,178 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" +2022-11-14 09:05:22,178 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" +2022-11-14 09:05:22,178 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" +2022-11-14 09:05:22,178 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" +2022-11-14 09:05:22,178 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "French Population"@en ;[\n]" +2022-11-14 09:05:22,178 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:byteSize 554317 ;[\n]" +2022-11-14 09:05:22,178 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:downloadURL ;[\n]" +2022-11-14 09:05:22,178 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:mediaType dataid-mt:MediaType_n-quads_x-bzip2 .[\n]" +2022-11-14 09:05:22,178 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,178 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,178 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:SingleFile ;[\n]" +2022-11-14 09:05:22,178 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "Geo Coordinates Mappingbased"@en , "core-i18n/fr/geo_coordinates_mappingbased_fr.ttl.bz2" ;[\n]" +2022-11-14 09:05:22,178 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" +2022-11-14 09:05:22,178 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:checksum ;[\n]" +2022-11-14 09:05:22,178 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:isDistributionOf ;[\n]" +2022-11-14 09:05:22,178 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" +2022-11-14 09:05:22,178 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:preview ;[\n]" +2022-11-14 09:05:22,178 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:uncompressedByteSize 118908579 ;[\n]" +2022-11-14 09:05:22,178 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo ;[\n]" +2022-11-14 09:05:22,178 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "Geographic coordinates extracted from Wikipedia originating from mapped infoboxes in the mappings wiki"@en ;[\n]" +2022-11-14 09:05:22,178 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" +2022-11-14 09:05:22,178 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" +2022-11-14 09:05:22,178 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:l" +2022-11-14 09:05:22,189 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "icense ;[\n]" +2022-11-14 09:05:22,189 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" +2022-11-14 09:05:22,189 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" +2022-11-14 09:05:22,189 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "Geo Coordinates Mappingbased"@en ;[\n]" +2022-11-14 09:05:22,189 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:byteSize 5843021 ;[\n]" +2022-11-14 09:05:22,189 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:downloadURL ;[\n]" +2022-11-14 09:05:22,189 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:mediaType dataid-mt:MediaType_turtle_x-bzip2 .[\n]" +2022-11-14 09:05:22,189 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,189 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,189 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:SingleFile ;[\n]" +2022-11-14 09:05:22,189 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "core-i18n/fr/long_abstracts_en_uris_fr.ttl.bz2" , "Long Abstracts English Uris"@en ;[\n]" +2022-11-14 09:05:22,189 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" +2022-11-14 09:05:22,189 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:checksum ;[\n]" +2022-11-14 09:05:22,189 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:isDistributionOf ;[\n]" +2022-11-14 09:05:22,189 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" +2022-11-14 09:05:22,189 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:preview ;[\n]" +2022-11-14 09:05:22,189 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:uncompressedByteSize 558529917 ;[\n]" +2022-11-14 09:05:22,189 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo ;[\n]" +2022-11-14 09:05:22,189 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "Long abstracts (full abstracts) of Wikipedia articles, usually the first section. Normalized dataset matching English DBpedia resources."@en ;[\n]" +2022-11-14 09:05:22,189 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" +2022-11-14 09:05:22,189 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" +2022-11-14 09:05:22,189 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" +2022-11-14 09:05:22,189 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" +2022-11-14 09:05:22,189 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" +2022-11-14 09:05:22,189 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "Long Abstracts English Uris"@en ;[\n]" +2022-11-14 09:05:22,189 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:byteSize 133856751 ;[\n]" +2022-11-14 09:05:22,189 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:downloadURL ;[\n]" +2022-11-14 09:05:22,189 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:mediaType dataid-mt:MediaType_turtle_x-bzip2 .[\n]" +2022-11-14 09:05:22,189 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,189 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,189 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:SingleFile ;[\n]" +2022-11-14 09:05:22,189 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "core-i18n/fr/geo_coordinates_mappingbased_fr.tql.bz2" , "Geo Coordinates Mappingbased"@en ;[\n]" +2022-11-14 09:05:22,189 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" +2022-11-14 09:05:22,189 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:checksum ;[\n]" +2022-11-14 09:05:22,189 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:isDistributionOf ;[\n]" +2022-11-14 09:05:22,189 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" +2022-11-14 09:05:22,189 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:preview ;[\n]" +2022-11-14 09:05:22,189 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:uncompressedByteSize 185292693 ;[\n]" +2022-11-14 09:05:22,189 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo ;[\n]" +2022-11-14 09:05:22,189 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "Geographic coordinates extracted from Wikipedia originating from mapped infoboxes in the mappings wiki"@en ;[\n]" +2022-11-14 09:05:22,189 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" +2022-11-14 09:05:22,189 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" +2022-11-14 09:05:22,189 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" +2022-11-14 09:05:22,189 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" +2022-11-14 09:05:22,189 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" +2022-11-14 09:05:22,189 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "Geo Coordinates Mappingbased"@en ;[\n]" +2022-11-14 09:05:22,189 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:byteSize 8801301 ;[\n]" +2022-11-14 09:05:22,189 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:downloadURL ;[\n]" +2022-11-14 09:05:22,189 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:mediaType dataid-mt:MediaType_n-quads_x-bzip2 .[\n]" +2022-11-14 09:05:22,189 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,189 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,189 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:SingleFile ;[\n]" +2022-11-14 09:05:22,189 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "Geo Coordinates Wikidata Uris"@en , "core-i18n/fr/geo_coordinates_wkd_uris_fr.tql.bz2" ;[\n]" +2022-11-14 09:05:22,189 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" +2022-11-14 09:05:22,190 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:checksum ;[\n]" +2022-11-14 09:05:22,190 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:isDistributionOf ;[\n]" +2022-11-14 09:05:22,190 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" +2022-11-14 09:05:22,190 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:preview ;[\n]" +2022-11-14 09:05:22,191 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:uncompressedByteSize 31643342 ;[\n]" +2022-11-14 09:05:22,191 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo ;[\n]" +2022-11-14 09:05:22,191 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "Geographic coordinates extracted from Wikipedia. Normalized dataset matching Wikidata resources (sorted)."@en ;[\n]" +2022-11-14 09:05:22,191 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" +2022-11-14 09:05:22,191 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" +2022-11-14 09:05:22,191 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" +2022-11-14 09:05:22,191 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" +2022-11-14 09:05:22,191 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" +2022-11-14 09:05:22,191 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "Geo Coordinates Wikidata Uris"@en ;[\n]" +2022-11-14 09:05:22,191 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:byteSize 1704916 ;[\n]" +2022-11-14 09:05:22,191 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:downloadURL ;[\n]" +2022-11-14 09:05:22,191 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:mediaType dataid-mt:MediaType_n-quads_x-bzip2 .[\n]" +2022-11-14 09:05:22,191 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,191 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,191 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid-ld:LinkedDataDataset , dataid:Dataset ;[\n]" +2022-11-14 09:05:22,191 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "Instance Types Transitive"@en ;[\n]" +2022-11-14 09:05:22,191 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" +2022-11-14 09:05:22,191 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" +2022-11-14 09:05:22,191 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:previousVersion ;[\n]" +2022-11-14 09:05:22,191 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedDatasetRelation[\n]" +2022-11-14 09:05:22,191 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " ;[\n]" +2022-11-14 09:05:22,191 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:relatedDataset ;[\n]" +2022-11-14 09:05:22,191 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo , ;[\n]" +2022-11-14 09:05:22,191 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "Contains transitive rdf:type $class based on the DBpedia ontology."@en ;[\n]" +2022-11-14 09:05:22,191 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" +2022-11-14 09:05:22,191 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:isPartOf ;[\n]" +2022-11-14 09:05:22,191 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" +2022-11-14 09:05:22,191 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:language ;[\n]" +2022-11-14 09:05:22,191 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" +2022-11-14 09:05:22,191 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" +2022-11-14 09:05:22,191 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" +2022-11-14 09:05:22,191 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "Instance Types Transitive"@en ;[\n]" +2022-11-14 09:05:22,191 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " void:rootResource ;[\n]" +2022-11-14 09:05:22,191 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " void:triples 9634901 ;[\n]" +2022-11-14 09:05:22,191 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:distribution , ;[\n]" +2022-11-14 09:05:22,191 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:keyword "DBpedia"@en , "Instance Types Transitive"@en ;[\n]" +2022-11-14 09:05:22,191 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:landingPage ;[\n]" +2022-11-14 09:05:22,191 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " sd:defaultGraph ;[\n]" +2022-11-14 09:05:22,191 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " foaf:page .[\n]" +2022-11-14 09:05:22,191 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,191 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,191 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:SingleFile ;[\n]" +2022-11-14 09:05:22,191 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "core-i18n/fr/template_parameters_fr.ttl.bz2" , "Template Parameters"@en ;[\n]" +2022-11-14 09:05:22,191 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" +2022-11-14 09:05:22,191 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:checksum ;[\n]" +2022-11-14 09:05:22,191 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:isDistributionOf ;[\n]" +2022-11-14 09:05:22,191 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" +2022-11-14 09:05:22,191 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:preview ;[\n]" +2022-11-14 09:05:22,191 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:uncompressedByteSize 32238749 ;[\n]" +2022-11-14 09:05:22,191 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo ;[\n]" +2022-11-14 09:05:22,191 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "Dataset describing names of template parameters."@en ;[\n]" +2022-11-14 09:05:22,191 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" +2022-11-14 09:05:22,191 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" +2022-11-14 09:05:22,191 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" +2022-11-14 09:05:22,191 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" +2022-11-14 09:05:22,191 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" +2022-11-14 09:05:22,191 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "Template Parameters"@en ;[\n]" +2022-11-14 09:05:22,191 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:byteSize 1054170 ;[\n]" +2022-11-14 09:05:22,191 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:downloadURL ;[\n]" +2022-11-14 09:05:22,191 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:mediaType dataid-mt:MediaType_turtle_x-bzip2 .[\n]" +2022-11-14 09:05:22,191 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,191 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,191 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:SingleFile ;[\n]" +2022-11-14 09:05:22,191 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "core-i18n/fr/short_abstracts_fr.ttl.bz2" , "Short Abstracts"@en ;[\n]" +2022-11-14 09:05:22,191 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" +2022-11-14 09:05:22,191 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:checksum ;[\n]" +2022-11-14 09:05:22,191 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:isDistributionOf ;[\n]" +2022-11-14 09:05:22,191 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" +2022-11-14 09:05:22,191 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:preview ;[\n]" +2022-11-14 09:05:22,191 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:uncompressedByteSize 683117178 ;[\n]" +2022-11-14 09:05:22,191 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo ;[\n]" +2022-11-14 09:05:22,191 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "Short Abstracts (about 600 characters long) of Wikipedia articles."@en ;[\n]" +2022-11-14 09:05:22,191 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" +2022-11-14 09:05:22,191 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" +2022-11-14 09:05:22,191 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" +2022-11-14 09:05:22,191 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" +2022-11-14 09:05:22,191 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" +2022-11-14 09:05:22,191 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "Short Abstracts"@en ;[\n]" +2022-11-14 09:05:22,191 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:byteSize 147287822 ;[\n]" +2022-11-14 09:05:22,191 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:downloadURL ;[\n]" +2022-11-14 09:05:22,191 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:mediaType dataid-mt:MediaType_turtle_x-bzip2 .[\n]" +2022-11-14 09:05:22,191 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,191 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,191 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:SingleFile ;[\n]" +2022-11-14 09:05:22,191 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "Commons Page Links"@en , "core-i18n/fr/commons_page_links_fr.tql.bz2" ;[\n]" +2022-11-14 09:05:22,191 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" +2022-11-14 09:05:22,191 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:checksum ;[\n]" +2022-11-14 09:05:22,191 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:isDistributionOf ;[\n]" +2022-11-14 09:05:22,191 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" +2022-11-14 09:05:22,191 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:preview ;[\n]" +2022-11-14 09:05:22,191 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:uncompressedByteSize 6633 ;[\n]" +2022-11-14 09:05:22,191 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo ;[\n]" +2022-11-14 09:05:22,191 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "Dataset containing links between a language-locale DBpedia inst" +2022-11-14 09:05:22,192 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "ance and DBpedia Commons."@en ;[\n]" +2022-11-14 09:05:22,192 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" +2022-11-14 09:05:22,192 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" +2022-11-14 09:05:22,192 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" +2022-11-14 09:05:22,192 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" +2022-11-14 09:05:22,192 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" +2022-11-14 09:05:22,192 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "Commons Page Links"@en ;[\n]" +2022-11-14 09:05:22,192 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:byteSize 1288 ;[\n]" +2022-11-14 09:05:22,192 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:downloadURL ;[\n]" +2022-11-14 09:05:22,193 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:mediaType dataid-mt:MediaType_n-quads_x-bzip2 .[\n]" +2022-11-14 09:05:22,193 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,193 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,193 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:Dataset , dataid-ld:LinkedDataDataset ;[\n]" +2022-11-14 09:05:22,193 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "Page Length"@en ;[\n]" +2022-11-14 09:05:22,193 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" +2022-11-14 09:05:22,193 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" +2022-11-14 09:05:22,193 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:previousVersion ;[\n]" +2022-11-14 09:05:22,193 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedDatasetRelation[\n]" +2022-11-14 09:05:22,193 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " ;[\n]" +2022-11-14 09:05:22,193 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:relatedDataset ;[\n]" +2022-11-14 09:05:22,193 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo , ;[\n]" +2022-11-14 09:05:22,193 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "Numbers of characters contained in a Wikipedia article's source."@en ;[\n]" +2022-11-14 09:05:22,193 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" +2022-11-14 09:05:22,193 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:isPartOf ;[\n]" +2022-11-14 09:05:22,193 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" +2022-11-14 09:05:22,193 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:language ;[\n]" +2022-11-14 09:05:22,193 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" +2022-11-14 09:05:22,193 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" +2022-11-14 09:05:22,193 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" +2022-11-14 09:05:22,193 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "Page Length"@en ;[\n]" +2022-11-14 09:05:22,193 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " void:rootResource ;[\n]" +2022-11-14 09:05:22,193 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " void:triples 3241245 ;[\n]" +2022-11-14 09:05:22,193 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:distribution , ;[\n]" +2022-11-14 09:05:22,193 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:keyword "Page Length"@en , "DBpedia"@en ;[\n]" +2022-11-14 09:05:22,193 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:landingPage ;[\n]" +2022-11-14 09:05:22,193 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " sd:defaultGraph ;[\n]" +2022-11-14 09:05:22,193 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " foaf:page .[\n]" +2022-11-14 09:05:22,193 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,193 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,193 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:SingleFile ;[\n]" +2022-11-14 09:05:22,193 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "core-i18n/fr/labels_fr.tql.bz2" , "Labels"@en ;[\n]" +2022-11-14 09:05:22,193 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" +2022-11-14 09:05:22,193 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:checksum ;[\n]" +2022-11-14 09:05:22,193 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:isDistributionOf ;[\n]" +2022-11-14 09:05:22,193 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" +2022-11-14 09:05:22,193 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:preview ;[\n]" +2022-11-14 09:05:22,193 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:uncompressedByteSize 631634023 ;[\n]" +2022-11-14 09:05:22,193 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo ;[\n]" +2022-11-14 09:05:22,193 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "Titles of all Wikipedia Articles in the corresponding language. In Wikidata, it contains all the languages available in the mappings wiki, labels_nmw contains the rest "@en ;[\n]" +2022-11-14 09:05:22,193 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" +2022-11-14 09:05:22,193 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" +2022-11-14 09:05:22,193 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" +2022-11-14 09:05:22,193 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" +2022-11-14 09:05:22,193 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" +2022-11-14 09:05:22,193 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "Labels"@en ;[\n]" +2022-11-14 09:05:22,193 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:byteSize 72181065 ;[\n]" +2022-11-14 09:05:22,193 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:downloadURL ;[\n]" +2022-11-14 09:05:22,193 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:mediaType dataid-mt:MediaType_n-quads_x-bzip2 .[\n]" +2022-11-14 09:05:22,193 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,193 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,193 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:Dataset , dataid-ld:LinkedDataDataset ;[\n]" +2022-11-14 09:05:22,193 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "Instance Types Sdtyped Dbo"@en ;[\n]" +2022-11-14 09:05:22,193 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" +2022-11-14 09:05:22,193 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" +2022-11-14 09:05:22,193 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedDatasetRelation[\n]" +2022-11-14 09:05:22,193 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " ;[\n]" +2022-11-14 09:05:22,193 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:relatedDataset ;[\n]" +2022-11-14 09:05:22,193 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo , ;[\n]" +2022-11-14 09:05:22,193 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "The SDType heuristic can extract probable type information in large, cross-domain databases on noisy data. This is its result for DBpedia which supplements the normally gathered instance types. This set is its result for DBpedia where the inferred type has an equivalent in the DBpedia ontology."@en ;[\n]" +2022-11-14 09:05:22,193 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" +2022-11-14 09:05:22,193 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:isPartOf ;[\n]" +2022-11-14 09:05:22,193 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" +2022-11-14 09:05:22,193 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:language ;[\n]" +2022-11-14 09:05:22,193 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" +2022-11-14 09:05:22,193 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" +2022-11-14 09:05:22,193 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" +2022-11-14 09:05:22,193 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "Instance Types Sdtyped Dbo"@en ;[\n]" +2022-11-14 09:05:22,193 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " void:rootResource ;[\n]" +2022-11-14 09:05:22,193 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " void:triples 763747 ;[\n]" +2022-11-14 09:05:22,193 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:distribution , ;[\n]" +2022-11-14 09:05:22,193 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:keyword "Instance Types Sdtyped Dbo"@en , "DBpedia"@en ;[\n]" +2022-11-14 09:05:22,193 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:landingPage ;[\n]" +2022-11-14 09:05:22,193 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " sd:defaultGraph ;[\n]" +2022-11-14 09:05:22,193 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " foaf:page .[\n]" +2022-11-14 09:05:22,193 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,193 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,193 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:SingleFile ;[\n]" +2022-11-14 09:05:22,193 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "Specific Mappingbased Properties Wikidata Uris"@en , "core-i18n/fr/specific_mappingbased_properties_wkd_uris_fr.ttl.bz2" ;[\n]" +2022-11-14 09:05:22,193 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" +2022-11-14 09:05:22,193 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:checksum ;[\n]" +2022-11-14 09:05:22,193 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:isDistributionOf ;[\n]" +2022-11-14 09:05:22,193 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion " +2022-11-14 09:05:22,194 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << ";[\n]" +2022-11-14 09:05:22,194 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:preview ;[\n]" +2022-11-14 09:05:22,194 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:uncompressedByteSize 8610096 ;[\n]" +2022-11-14 09:05:22,194 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo ;[\n]" +2022-11-14 09:05:22,194 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "Infobox data from the mapping-based extraction, using units of measurement more convenient for the resource type, e.g. square kilometres instead of square metres for the area of a city. Normalized dataset matching Wikidata resources (sorted)."@en ;[\n]" +2022-11-14 09:05:22,194 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" +2022-11-14 09:05:22,194 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" +2022-11-14 09:05:22,194 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" +2022-11-14 09:05:22,194 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" +2022-11-14 09:05:22,194 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" +2022-11-14 09:05:22,194 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "Specific Mappingbased Properties Wikidata Uris"@en ;[\n]" +2022-11-14 09:05:22,194 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:byteSize 295161 ;[\n]" +2022-11-14 09:05:22,194 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:downloadURL ;[\n]" +2022-11-14 09:05:22,194 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:mediaType dataid-mt:MediaType_turtle_x-bzip2 .[\n]" +2022-11-14 09:05:22,194 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,194 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,194 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid-ld:LinkedDataDataset , dataid:Dataset ;[\n]" +2022-11-14 09:05:22,194 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "Page Links English Uris"@en ;[\n]" +2022-11-14 09:05:22,194 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" +2022-11-14 09:05:22,194 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" +2022-11-14 09:05:22,194 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:previousVersion ;[\n]" +2022-11-14 09:05:22,194 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedDatasetRelation[\n]" +2022-11-14 09:05:22,194 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " ;[\n]" +2022-11-14 09:05:22,194 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:relatedDataset ;[\n]" +2022-11-14 09:05:22,194 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo , ;[\n]" +2022-11-14 09:05:22,194 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "Dataset containing internal links between DBpedia instances. The dataset was created from the internal links between Wikipedia articles. The dataset might be useful for structural analysis, data mining or for ranking DBpedia instances using Page Rank or similar algorithms. Normalized dataset matching English DBpedia resources."@en ;[\n]" +2022-11-14 09:05:22,194 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" +2022-11-14 09:05:22,194 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:isPartOf ;[\n]" +2022-11-14 09:05:22,194 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" +2022-11-14 09:05:22,194 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:language ;[\n]" +2022-11-14 09:05:22,194 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" +2022-11-14 09:05:22,194 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified " +2022-11-14 09:05:22,200 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " "2017-07-06"^^xsd:date ;[\n]" +2022-11-14 09:05:22,200 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" +2022-11-14 09:05:22,200 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "Page Links English Uris"@en ;[\n]" +2022-11-14 09:05:22,200 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " void:rootResource ;[\n]" +2022-11-14 09:05:22,200 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " void:triples 31551868 ;[\n]" +2022-11-14 09:05:22,200 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:distribution , ;[\n]" +2022-11-14 09:05:22,200 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:keyword "Page Links English Uris"@en , "DBpedia"@en ;[\n]" +2022-11-14 09:05:22,200 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:landingPage ;[\n]" +2022-11-14 09:05:22,200 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " sd:defaultGraph ;[\n]" +2022-11-14 09:05:22,200 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " foaf:page .[\n]" +2022-11-14 09:05:22,201 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,201 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,201 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:Dataset , dataid-ld:LinkedDataDataset ;[\n]" +2022-11-14 09:05:22,201 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "Mappingbased Objects Wikidata Uris"@en ;[\n]" +2022-11-14 09:05:22,201 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" +2022-11-14 09:05:22,201 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" +2022-11-14 09:05:22,201 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:previousVersion ;[\n]" +2022-11-14 09:05:22,201 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedDatasetRelation[\n]" +2022-11-14 09:05:22,201 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " ;[\n]" +2022-11-14 09:05:22,201 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:relatedDataset ;[\n]" +2022-11-14 09:05:22,201 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo , ;[\n]" +2022-11-14 09:05:22,201 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "High-quality data extracted from Infoboxes using the mapping-based extraction (Object properties only). The predicates in this dataset are in the 'ontology' namespace. Note that this data is of much higher quality than the Raw Infobox Properties in the 'property' namespace. Normalized dataset matching Wikidata resources (sorted)."@en ;[\n]" +2022-11-14 09:05:22,201 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" +2022-11-14 09:05:22,201 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:isPartOf ;[\n]" +2022-11-14 09:05:22,201 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" +2022-11-14 09:05:22,201 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:language ;[\n]" +2022-11-14 09:05:22,201 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" +2022-11-14 09:05:22,201 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" +2022-11-14 09:05:22,201 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" +2022-11-14 09:05:22,201 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "Mappingbased Objects Wikidata Uris"@en ;[\n]" +2022-11-14 09:05:22,201 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " void:rootResource ;[\n]" +2022-11-14 09:05:22,201 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " void:triples 3213999 ;[\n]" +2022-11-14 09:05:22,201 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:distribution , ;[\n]" +2022-11-14 09:05:22,201 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:keyword "DBpedia"@en , "Mappingbased Objects Wikidata Uris"@en ;[\n]" +2022-11-14 09:05:22,201 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:landingPage ;[\n]" +2022-11-14 09:05:22,201 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " sd:defaultGraph ;[\n]" +2022-11-14 09:05:22,201 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " foaf:page .[\n]" +2022-11-14 09:05:22,201 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,201 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,201 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:SingleFile ;[\n]" +2022-11-14 09:05:22,201 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "SKOS Categories"@en , "core-i18n/fr/skos_categories_fr.tql.bz2" ;[\n]" +2022-11-14 09:05:22,201 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" +2022-11-14 09:05:22,201 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:checksum ;[\n]" +2022-11-14 09:05:22,201 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:isDistributionOf ;[\n]" +2022-11-14 09:05:22,201 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" +2022-11-14 09:05:22,201 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:preview ;[\n]" +2022-11-14 09:05:22,201 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:uncompressedByteSize 376314276 ;[\n]" +2022-11-14 09:05:22,201 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo ;[\n]" +2022-11-14 09:05:22,201 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "Information which concept is a category and how categories are related using the SKOS Vocabulary."@en ;[\n]" +2022-11-14 09:05:22,201 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" +2022-11-14 09:05:22,201 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" +2022-11-14 09:05:22,201 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" +2022-11-14 09:05:22,201 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" +2022-11-14 09:05:22,201 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" +2022-11-14 09:05:22,201 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "SKOS Categories"@en ;[\n]" +2022-11-14 09:05:22,201 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:byteSize 16584803 ;[\n]" +2022-11-14 09:05:22,201 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:downloadURL ;[\n]" +2022-11-14 09:05:22,201 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:mediaType dataid-mt:MediaType_n-quads_x-bzip2 .[\n]" +2022-11-14 09:05:22,201 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,201 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,201 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:SingleFile ;[\n]" +2022-11-14 09:05:22,201 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "Instance Types Sdtyped Dbo"@en , "core-i18n/fr/instance_types_sdtyped_dbo_fr.ttl.bz2" ;[\n]" +2022-11-14 09:05:22,201 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" +2022-11-14 09:05:22,201 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:checksum ;[\n]" +2022-11-14 09:05:22,201 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:isDistributionOf ;[\n]" +2022-11-14 09:05:22,201 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" +2022-11-14 09:05:22,201 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:preview ;[\n]" +2022-11-14 09:05:22,201 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:uncompressedByteSize 114562319 ;[\n]" +2022-11-14 09:05:22,201 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo ;[\n]" +2022-11-14 09:05:22,201 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "The SDType heuristic can extract probable type information in large, cross-domain databases on noisy data. This is its result for DBpedia which supplements the normally gathered instance types. This set is its result for DBpedia where the inferred type has an equivalent in the DBpedia ontology."@en ;[\n]" +2022-11-14 09:05:22,201 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" +2022-11-14 09:05:22,201 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" +2022-11-14 09:05:22,201 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" +2022-11-14 09:05:22,201 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" +2022-11-14 09:05:22,201 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" +2022-11-14 09:05:22,201 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "Instance Types Sdtyped Dbo"@en ;[\n]" +2022-11-14 09:05:22,201 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:byteSize 6418573 ;[\n]" +2022-11-14 09:05:22,201 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:downloadURL ;[\n]" +2022-11-14 09:05:22,201 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:mediaType dataid-mt:MediaType_turtle_x-bzip2 .[\n]" +2022-11-14 09:05:22,201 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,201 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,201 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:SingleFile ;[\n]" +2022-11-14 09:05:22,201 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "Instance Types Sdtyped Dbo"@en , "core-i18n/fr/instance_types_sdtyped_dbo_fr.tql.bz2" ;[\n]" +2022-11-14 09:05:22,201 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" +2022-11-14 09:05:22,201 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:checksum ;[\n]" +2022-11-14 09:05:22,201 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:isDistributionOf ;[\n]" +2022-11-14 09:05:22,202 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" +2022-11-14 09:05:22,202 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:preview ;[\n]" +2022-11-14 09:05:22,202 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:uncompressedByteSize 224608253 ;[\n]" +2022-11-14 09:05:22,202 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo ;[\n]" +2022-11-14 09:05:22,202 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "The SDType heuristic can extract probable type information in large, cross-domain databases on noisy data. This is its result for DBpedia which supplements the normally gathered instance types. This set is its result for DBpedia where the inferred type has an equivalent in the DBpedia ontology."@en ;[\n]" +2022-11-14 09:05:22,202 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" +2022-11-14 09:05:22,202 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" +2022-11-14 09:05:22,202 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" +2022-11-14 09:05:22,202 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" +2022-11-14 09:05:22,202 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" +2022-11-14 09:05:22,202 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "Instance Types Sdtyped Dbo"@en ;[\n]" +2022-11-14 09:05:22,202 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:byteSize 12208201 ;[\n]" +2022-11-14 09:05:22,202 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:downloadURL ;[\n]" +2022-11-14 09:05:22,202 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:mediaType dataid-mt:MediaType_n-quads_x-bzip2 .[\n]" +2022-11-14 09:05:22,203 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,203 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,203 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid-ld:LinkedDataDataset , dataid:Dataset ;[\n]" +2022-11-14 09:05:22,203 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "NIF page structure"@en ;[\n]" +2022-11-14 09:05:22,203 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" +2022-11-14 09:05:22,203 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" +2022-11-14 09:05:22,203 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedDatasetRelation[\n]" +2022-11-14 09:05:22,203 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " ;[\n]" +2022-11-14 09:05:22,203 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:relatedDataset ;[\n]" +2022-11-14 09:05:22,203 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo , ;[\n]" +2022-11-14 09:05:22,203 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "This dataset contains the page structure of a Wikipedia page, divided in sections and paragraphs."@en ;[\n]" +2022-11-14 09:05:22,203 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" +2022-11-14 09:05:22,203 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:isPartOf ;[\n]" +2022-11-14 09:05:22,203 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" +2022-11-14 09:05:22,203 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:language ;[\n]" +2022-11-14 09:05:22,203 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" +2022-11-14 09:05:22,203 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" +2022-11-14 09:05:22,203 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" +2022-11-14 09:05:22,203 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "NIF page structure"@en ;[\n]" +2022-11-14 09:05:22,203 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " void:rootResource ;[\n]" +2022-11-14 09:05:22,203 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " void:triples 229167295 ;[\n]" +2022-11-14 09:05:22,203 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:distribution , ;[\n]" +2022-11-14 09:05:22,203 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:keyword "NIF page structure"@en , "DBpedia"@en ;[\n]" +2022-11-14 09:05:22,203 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:landingPage ;[\n]" +2022-11-14 09:05:22,203 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " sd:defaultGraph ;[\n]" +2022-11-14 09:05:22,203 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " foaf:page .[\n]" +2022-11-14 09:05:22,203 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,203 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,203 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:SingleFile ;[\n]" +2022-11-14 09:05:22,203 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "Mappingbased Objects Disjoint Range"@en , "core-i18n/fr/mappingbased_objects_disjoint_range_fr.ttl.bz2" ;[\n]" +2022-11-14 09:05:22,203 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" +2022-11-14 09:05:22,203 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:checksum ;[\n]" +2022-11-14 09:05:22,203 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:isDistributionOf ;[\n]" +2022-11-14 09:05:22,203 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" +2022-11-14 09:05:22,203 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:preview ;[\n]" +2022-11-14 09:05:22,203 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:uncompressedByteSize 974657 ;[\n]" +2022-11-14 09:05:22,203 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo ;[\n]" +2022-11-14 09:05:22,203 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "Errors detected in the mapping based properties (disjoint range)."@en ;[\n]" +2022-11-14 09:05:22,203 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" +2022-11-14 09:05:22,203 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" +2022-11-14 09:05:22,203 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" +2022-11-14 09:05:22,203 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" +2022-11-14 09:05:22,203 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" +2022-11-14 09:05:22,203 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "Mappingbased Objects Disjoint Range"@en ;[\n]" +2022-11-14 09:05:22,203 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:byteSize 78968 ;[\n]" +2022-11-14 09:05:22,203 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:downloadURL ;[\n]" +2022-11-14 09:05:22,203 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:mediaType dataid-mt:MediaType_turtle_x-bzip2 .[\n]" +2022-11-14 09:05:22,203 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,203 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,203 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:SingleFile ;[\n]" +2022-11-14 09:05:22,203 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "Mappingbased Objects Disjoint Range"@en , "core-i18n/fr/mappingbased_objects_disjoint_range_fr.tql.bz2" ;[\n]" +2022-11-14 09:05:22,203 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" +2022-11-14 09:05:22,203 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:checksum ;[\n]" +2022-11-14 09:05:22,203 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:isDistributionOf ;[\n]" +2022-11-14 09:05:22,203 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" +2022-11-14 09:05:22,203 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:preview ;[\n]" +2022-11-14 09:05:22,203 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:uncompressedByteSize 2254848 ;[\n]" +2022-11-14 09:05:22,203 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo ;[\n]" +2022-11-14 09:05:22,203 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "Errors detected in the mapping based properties (disjoint range)."@en ;[\n]" +2022-11-14 09:05:22,203 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" +2022-11-14 09:05:22,203 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" +2022-11-14 09:05:22,203 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" +2022-11-14 09:05:22,203 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" +2022-11-14 09:05:22,203 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" +2022-11-14 09:05:22,203 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "Mappingbased Objects Disjoint Range"@en ;[\n]" +2022-11-14 09:05:22,203 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:byteSize 169238 ;[\n]" +2022-11-14 09:05:22,203 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:downloadURL ;[\n]" +2022-11-14 09:05:22,203 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:mediaType dataid-mt:MediaType_n-quads_x-bzip2 .[\n]" +2022-11-14 09:05:22,203 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,203 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,203 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:SingleFile ;[\n]" +2022-11-14 09:05:22,203 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "core-i18n/fr/interlanguage_links_fr.ttl.bz2" , "Interlanguage Links"@en " +2022-11-14 09:05:22,204 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << ";[\n]" +2022-11-14 09:05:22,204 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" +2022-11-14 09:05:22,204 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:checksum ;[\n]" +2022-11-14 09:05:22,204 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:isDistributionOf ;[\n]" +2022-11-14 09:05:22,204 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" +2022-11-14 09:05:22,204 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:preview ;[\n]" +2022-11-14 09:05:22,204 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:uncompressedByteSize 3440935599 ;[\n]" +2022-11-14 09:05:22,204 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo ;[\n]" +2022-11-14 09:05:22,204 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "Dataset linking a DBpedia resource to the same resource in other languages and in Wikidata."@en ;[\n]" +2022-11-14 09:05:22,204 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" +2022-11-14 09:05:22,204 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" +2022-11-14 09:05:22,204 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" +2022-11-14 09:05:22,204 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" +2022-11-14 09:05:22,204 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" +2022-11-14 09:05:22,204 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "Interlanguage Links"@en ;[\n]" +2022-11-14 09:05:22,204 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:byteSize 187868323 ;[\n]" +2022-11-14 09:05:22,204 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:downloadURL ;[\n]" +2022-11-14 09:05:22,204 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:mediaType dataid-mt:MediaType_turtle_x-bzip2 .[\n]" +2022-11-14 09:05:22,204 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,204 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,204 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid-ld:LinkedDataDataset , dataid:Dataset ;[\n]" +2022-11-14 09:05:22,204 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "Topical Concepts"@en ;[\n]" +2022-11-14 09:05:22,204 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" +2022-11-14 09:05:22,204 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" +2022-11-14 09:05:22,204 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:previousVersion ;[\n]" +2022-11-14 09:05:22,204 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedDatasetRelation[\n]" +2022-11-14 09:05:22,204 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " ;[\n]" +2022-11-14 09:05:22,204 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:relatedDataset ;[\n]" +2022-11-14 09:05:22,204 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo , ;[\n]" +2022-11-14 09:05:22,204 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "Resources that describe a category"@en ;[\n]" +2022-11-14 09:05:22,204 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" +2022-11-14 09:05:22,204 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:isPartOf ;[\n]" +2022-11-14 09:05:22,204 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" +2022-11-14 09:05:22,204 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:language ;[\n]" +2022-11-14 09:05:22,204 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" +2022-11-14 09:05:22,204 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" +2022-11-14 09:05:22,204 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" +2022-11-14 09:05:22,204 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "Topical Concepts"@en ;[\n]" +2022-11-14 09:05:22,204 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " void:rootResource ;[\n]" +2022-11-14 09:05:22,204 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " void:triples 125544 ;[\n]" +2022-11-14 09:05:22,204 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:distribution , ;[\n]" +2022-11-14 09:05:22,204 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:keyword "Topical Concepts"@en , "DBpedia"@en ;[\n]" +2022-11-14 09:05:22,204 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:landingPage ;[\n]" +2022-11-14 09:05:22,204 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " sd:defaultGraph ;[\n]" +2022-11-14 09:05:22,204 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " foaf:page .[\n]" +2022-11-14 09:05:22,204 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,204 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,204 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:SingleFile ;[\n]" +2022-11-14 09:05:22,204 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "Disambiguations Wikidata Uris"@en , "core-i18n/fr/disambiguations_wkd_uris_fr.ttl.bz2" ;[\n]" +2022-11-14 09:05:22,204 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" +2022-11-14 09:05:22,204 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:checksum ;[\n]" +2022-11-14 09:05:22,204 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:isDistributionOf ;[\n]" +2022-11-14 09:05:22,204 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" +2022-11-14 09:05:22,204 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:preview ;[\n]" +2022-11-14 09:05:22,204 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:uncompressedByteSize 65563768 ;[\n]" +2022-11-14 09:05:22,204 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo ;[\n]" +2022-11-14 09:05:22,204 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "Links extracted from Wikipedia disambiguation pages. Since Wikipedia has no syntax to distinguish disambiguation links from ordinary links, DBpedia has to use heuristics. Normalized dataset matching Wikidata resources (sorted)."@en ;[\n]" +2022-11-14 09:05:22,204 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" +2022-11-14 09:05:22,204 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" +2022-11-14 09:05:22,204 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" +2022-11-14 09:05:22,204 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" +2022-11-14 09:05:22,204 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" +2022-11-14 09:05:22,204 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "Disambiguations Wikidata Uris"@en ;[\n]" +2022-11-14 09:05:22,204 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:byteSize 2331822 ;[\n]" +2022-11-14 09:05:22,204 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:downloadURL ;[\n]" +2022-11-14 09:05:22,204 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:mediaType dataid-mt:MediaType_turtle_x-bzip2 .[\n]" +2022-11-14 09:05:22,204 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,204 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,204 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:Dataset , dataid-ld:LinkedDataDataset ;[\n]" +2022-11-14 09:05:22,204 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "Raw html tables"@en ;[\n]" +2022-11-14 09:05:22,204 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" +2022-11-14 09:05:22,204 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" +2022-11-14 09:05:22,204 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedDatasetRelation[\n]" +2022-11-14 09:05:22,204 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " ;[\n]" +2022-11-14 09:05:22,204 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:relatedDataset ;[\n]" +2022-11-14 09:05:22,204 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo , ;[\n]" +2022-11-14 09:05:22,204 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "These are the raw html tables collected during the NIF extraction; to be further processed later."@en ;[\n]" +2022-11-14 09:05:22,204 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" +2022-11-14 09:05:22,204 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:isPartOf ;[\n]" +2022-11-14 09:05:22,204 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" +2022-11-14 09:05:22,204 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:language ;[\n]" +2022-11-14 09:05:22,204 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" +2022-11-14 09:05:22,204 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" +2022-11-14 09:05:22,204 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" +2022-11-14 09:05:22,204 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "Raw html tables"@en ;[\n]" +2022-11-14 09:05:22,204 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " void:rootResource ;[\n]" +2022-11-14 09:05:22,204 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " void:triples 12787620 ;[\n]" +2022-11-14 09:05:22,204 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:distribution , ;[\n]" +2022-11-14 09:05:22,204 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:keyword "DBpedia"@en , "Raw html tables"@en ;[\n]" +2022-11-14 09:05:22,204 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:landingPage ;[\n]" +2022-11-14 09:05:22,204 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " sd:defaultGraph ;[\n]" +2022-11-14 09:05:22,204 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " foaf:page .[\n]" +2022-11-14 09:05:22,204 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,204 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,204 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid-ld:LinkedDataDataset , data" +2022-11-14 09:05:22,206 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "id:Dataset ;[\n]" +2022-11-14 09:05:22,206 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "Labels English Uris"@en ;[\n]" +2022-11-14 09:05:22,206 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" +2022-11-14 09:05:22,206 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" +2022-11-14 09:05:22,206 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:previousVersion ;[\n]" +2022-11-14 09:05:22,206 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedDatasetRelation[\n]" +2022-11-14 09:05:22,206 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " ;[\n]" +2022-11-14 09:05:22,206 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:relatedDataset ;[\n]" +2022-11-14 09:05:22,206 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo , ;[\n]" +2022-11-14 09:05:22,206 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "Titles of all Wikipedia Articles in the corresponding language. In Wikidata, it contains all the languages available in the mappings wiki, labels_nmw contains the rest Normalized dataset matching English DBpedia resources."@en ;[\n]" +2022-11-14 09:05:22,206 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" +2022-11-14 09:05:22,206 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:isPartOf ;[\n]" +2022-11-14 09:05:22,206 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" +2022-11-14 09:05:22,206 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:language ;[\n]" +2022-11-14 09:05:22,206 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" +2022-11-14 09:05:22,206 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" +2022-11-14 09:05:22,206 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" +2022-11-14 09:05:22,206 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "Labels English Uris"@en ;[\n]" +2022-11-14 09:05:22,206 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " void:rootResource ;[\n]" +2022-11-14 09:05:22,206 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " void:sparqlEndpoint ;[\n]" +2022-11-14 09:05:22,206 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " void:triples 1164577 ;[\n]" +2022-11-14 09:05:22,206 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:distribution , , ;[\n]" +2022-11-14 09:05:22,206 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:keyword "DBpedia"@en , "Labels English Uris"@en ;[\n]" +2022-11-14 09:05:22,206 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:landingPage ;[\n]" +2022-11-14 09:05:22,206 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " sd:defaultGraph ;[\n]" +2022-11-14 09:05:22,206 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " foaf:page .[\n]" +2022-11-14 09:05:22,206 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,206 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,206 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid-ld:LinkedDataDataset , dataid:Dataset ;[\n]" +2022-11-14 09:05:22,206 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "Infobox Properties Mapped"@en ;[\n]" +2022-11-14 09:05:22,206 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" +2022-11-14 09:05:22,206 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" +2022-11-14 09:05:22,206 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:previousVersion ;[\n]" +2022-11-14 09:05:22,206 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedDatasetRelation[\n]" +2022-11-14 09:05:22,206 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " ;[\n]" +2022-11-14 09:05:22,206 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:relatedDataset ;[\n]" +2022-11-14 09:05:22,206 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo , ;[\n]" +2022-11-14 09:05:22,206 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "Information that has been extracted from Wikipedia infoboxes. Note that this data is in the less clean 'property' namespace. The Mapping-based Properties in the 'ontology' namespace, should always be preferred over this data. This dataset contains facts that have equivalent mapped facts in the mapping-based datasets. "@en ;[\n]" +2022-11-14 09:05:22,206 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" +2022-11-14 09:05:22,206 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:isPartOf ;[\n]" +2022-11-14 09:05:22,206 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" +2022-11-14 09:05:22,206 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:language ;[\n]" +2022-11-14 09:05:22,206 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" +2022-11-14 09:05:22,206 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" +2022-11-14 09:05:22,206 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" +2022-11-14 09:05:22,206 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "Infobox Properties Mapped"@en ;[\n]" +2022-11-14 09:05:22,206 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " void:rootResource ;[\n]" +2022-11-14 09:05:22,206 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " void:triples 8143161 ;[\n]" +2022-11-14 09:05:22,206 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:distribution , ;[\n]" +2022-11-14 09:05:22,214 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:keyword "Infobox Properties Mapped"@en , "DBpedia"@en ;[\n]" +2022-11-14 09:05:22,214 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:landingPage ;[\n]" +2022-11-14 09:05:22,214 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " sd:defaultGraph ;[\n]" +2022-11-14 09:05:22,214 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " foaf:page .[\n]" +2022-11-14 09:05:22,214 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,214 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,214 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:Dataset , dataid-ld:LinkedDataDataset ;[\n]" +2022-11-14 09:05:22,214 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "Geo Coordinates Mappingbased Wikidata Uris"@en ;[\n]" +2022-11-14 09:05:22,214 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" +2022-11-14 09:05:22,214 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" +2022-11-14 09:05:22,214 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:previousVersion ;[\n]" +2022-11-14 09:05:22,214 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedDatasetRelation[\n]" +2022-11-14 09:05:22,214 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " ;[\n]" +2022-11-14 09:05:22,214 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:relatedDataset ;[\n]" +2022-11-14 09:05:22,214 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo , ;[\n]" +2022-11-14 09:05:22,214 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "Geographic coordinates extracted from Wikipedia originating from mapped infoboxes in the mappings wiki Normalized dataset matching Wikidata resources (sorted)."@en ;[\n]" +2022-11-14 09:05:22,214 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" +2022-11-14 09:05:22,214 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:isPartOf ;[\n]" +2022-11-14 09:05:22,214 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" +2022-11-14 09:05:22,214 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:language ;[\n]" +2022-11-14 09:05:22,214 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" +2022-11-14 09:05:22,214 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" +2022-11-14 09:05:22,214 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" +2022-11-14 09:05:22,214 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "Geo Coordinates Mappingbased Wikidata Uris"@en ;[\n]" +2022-11-14 09:05:22,214 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " void:rootResource ;[\n]" +2022-11-14 09:05:22,214 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " void:triples 823959 ;[\n]" +2022-11-14 09:05:22,214 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:distribution , ;[\n]" +2022-11-14 09:05:22,214 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:keyword "DBpedia"@en , "Geo Coordinates Mappingbased Wikidata Uris"@en ;[\n]" +2022-11-14 09:05:22,214 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:landingPage ;[\n]" +2022-11-14 09:05:22,214 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " sd:defaultGraph ;[\n]" +2022-11-14 09:05:22,214 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " foaf:page .[\n]" +2022-11-14 09:05:22,214 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,214 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,214 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:SingleFile ;[\n]" +2022-11-14 09:05:22,214 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "pnd English Uris"@en , "core-i18n/fr/pnd_en_uris_fr.tql.bz2" ;[\n]" +2022-11-14 09:05:22,214 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" +2022-11-14 09:05:22,214 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:checksum ;[\n]" +2022-11-14 09:05:22,214 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:isDistributionOf ;[\n]" +2022-11-14 09:05:22,214 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" +2022-11-14 09:05:22,214 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:preview ;[\n]" +2022-11-14 09:05:22,214 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:uncompressedByteSize 64581 ;[\n]" +2022-11-14 09:05:22,214 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo ;[\n]" +2022-11-14 09:05:22,214 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "Undescribed Dataset Normalized dataset matching English DBpedia resources."@en ;[\n]" +2022-11-14 09:05:22,214 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" +2022-11-14 09:05:22,224 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" +2022-11-14 09:05:22,224 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" +2022-11-14 09:05:22,224 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" +2022-11-14 09:05:22,224 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" +2022-11-14 09:05:22,224 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "pnd English Uris"@en ;[\n]" +2022-11-14 09:05:22,224 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:byteSize 6885 ;[\n]" +2022-11-14 09:05:22,224 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:downloadURL ;[\n]" +2022-11-14 09:05:22,224 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:mediaType dataid-mt:MediaType_n-quads_x-bzip2 .[\n]" +2022-11-14 09:05:22,224 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,224 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,224 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:SingleFile ;[\n]" +2022-11-14 09:05:22,224 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "Page Links Wikidata Uris"@en , "core-i18n/fr/page_links_wkd_uris_fr.ttl.bz2" ;[\n]" +2022-11-14 09:05:22,224 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" +2022-11-14 09:05:22,224 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:checksum ;[\n]" +2022-11-14 09:05:22,224 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:isDistributionOf ;[\n]" +2022-11-14 09:05:22,224 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" +2022-11-14 09:05:22,224 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:preview ;[\n]" +2022-11-14 09:05:22,224 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:uncompressedByteSize 7191511383 ;[\n]" +2022-11-14 09:05:22,224 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo ;[\n]" +2022-11-14 09:05:22,224 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "Dataset containing internal links between DBpedia instances. The dataset was created from the internal links between Wikipedia articles. The dataset might be useful for structural analysis, data mining or for ranking DBpedia instances using Page Rank or similar algorithms. Normalized dataset matching Wikidata resources (sorted)."@en ;[\n]" +2022-11-14 09:05:22,224 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" +2022-11-14 09:05:22,224 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" +2022-11-14 09:05:22,224 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" +2022-11-14 09:05:22,224 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" +2022-11-14 09:05:22,224 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" +2022-11-14 09:05:22,224 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "Page Links Wikidata Uris"@en ;[\n]" +2022-11-14 09:05:22,224 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:byteSize 204654239 ;[\n]" +2022-11-14 09:05:22,224 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:downloadURL ;[\n]" +2022-11-14 09:05:22,224 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:mediaType dataid-mt:MediaType_turtle_x-bzip2 .[\n]" +2022-11-14 09:05:22,224 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,224 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,224 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid-ld:LinkedDataDataset , dataid:Dataset ;[\n]" +2022-11-14 09:05:22,224 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "Long Abstracts"@en ;[\n]" +2022-11-14 09:05:22,224 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" +2022-11-14 09:05:22,224 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" +2022-11-14 09:05:22,224 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:previousVersion ;[\n]" +2022-11-14 09:05:22,224 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedDatasetRelation[\n]" +2022-11-14 09:05:22,224 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " ;[\n]" +2022-11-14 09:05:22,224 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:relatedDataset ;[\n]" +2022-11-14 09:05:22,224 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo , ;[\n]" +2022-11-14 09:05:22,224 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "Long abstracts (full abstracts) of Wikipedia articles, usually the first section."@en ;[\n]" +2022-11-14 09:05:22,224 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" +2022-11-14 09:05:22,224 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:isPartOf ;[\n]" +2022-11-14 09:05:22,224 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" +2022-11-14 09:05:22,224 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:language ;[\n]" +2022-11-14 09:05:22,224 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" +2022-11-14 09:05:22,224 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" +2022-11-14 09:05:22,224 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" +2022-11-14 09:05:22,224 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "Long Abstracts"@en ;[\n]" +2022-11-14 09:05:22,224 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " void:rootResource ;[\n]" +2022-11-14 09:05:22,224 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " void:triples 1686181 ;[\n]" +2022-11-14 09:05:22,224 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:distribution , ;[\n]" +2022-11-14 09:05:22,224 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:keyword "Long Abstracts"@en , "DBpedia"@en ;[\n]" +2022-11-14 09:05:22,224 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:landingPage ;[\n]" +2022-11-14 09:05:22,224 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " sd:defaultGraph ;[\n]" +2022-11-14 09:05:22,224 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " foaf:page .[\n]" +2022-11-14 09:05:22,224 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,224 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,224 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid-ld:LinkedDataDataset , dataid:Dataset ;[\n]" +2022-11-14 09:05:22,224 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "Interlanguage Links"@en ;[\n]" +2022-11-14 09:05:22,224 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" +2022-11-14 09:05:22,224 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" +2022-11-14 09:05:22,224 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:previousVersion ;[\n]" +2022-11-14 09:05:22,224 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedDatasetRelation[\n]" +2022-11-14 09:05:22,224 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " ;[\n]" +2022-11-14 09:05:22,224 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:relatedDataset ;[\n]" +2022-11-14 09:05:22,224 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo , ;[\n]" +2022-11-14 09:05:22,224 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "Dataset linking a DBpedia resource to the same resource in other languages and in Wikidata."@en ;[\n]" +2022-11-14 09:05:22,224 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" +2022-11-14 09:05:22,224 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:isPartOf ;[\n]" +2022-11-14 09:05:22,224 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" +2022-11-14 09:05:22,224 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:language ;[\n]" +2022-11-14 09:05:22,224 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" +2022-11-14 09:05:22,224 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" +2022-11-14 09:05:22,224 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" +2022-11-14 09:05:22,224 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "Interlanguage Links"@en ;[\n]" +2022-11-14 09:05:22,224 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " void:rootResource ;[\n]" +2022-11-14 09:05:22,224 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " void:triples 23160557 ;[\n]" +2022-11-14 09:05:22,224 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:distribution , ;[\n]" +2022-11-14 09:05:22,224 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:keyword "DBpedia"@en , "Interlanguage Links"@en ;[\n]" +2022-11-14 09:05:22,224 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:landingPage ;[\n]" +2022-11-14 09:05:22,224 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " sd:defaultGraph ;[\n]" +2022-11-14 09:05:22,224 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " foaf:page .[\n]" +2022-11-14 09:05:22,224 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,224 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,224 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid-ld:LinkedDataDataset , dataid:Dataset ;[\n]" +2022-11-14 09:05:22,224 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "Article Categories English Uris"@en ;[\n]" +2022-11-14 09:05:22,224 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" +2022-11-14 09:05:22,224 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" +2022-11-14 09:05:22,224 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:previousVersion ;[\n]" +2022-11-14 09:05:22,224 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedDatasetRelation[\n]" +2022-11-14 09:05:22,224 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " ;[\n]" +2022-11-14 09:05:22,224 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:relatedDataset ;[\n]" +2022-11-14 09:05:22,224 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo , ;[\n]" +2022-11-14 09:05:22,224 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "Links from concepts to categories using the SKOS vocabulary. Normalized dataset matching English DBpedia resources."@en ;[\n]" +2022-11-14 09:05:22,224 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" +2022-11-14 09:05:22,224 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:isPartOf ;[\n]" +2022-11-14 09:05:22,224 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" +2022-11-14 09:05:22,224 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:language ;[\n]" +2022-11-14 09:05:22,225 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" +2022-11-14 09:05:22,225 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" +2022-11-14 09:05:22,225 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" +2022-11-14 09:05:22,225 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "Article Categories English Uris"@en ;[\n]" +2022-11-14 09:05:22,225 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " void:rootResource ;[\n]" +2022-11-14 09:05:22,225 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " void:triples 2716241 ;[\n]" +2022-11-14 09:05:22,225 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:distribution , ;[\n]" +2022-11-14 09:05:22,225 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:keyword "DBpedia"@en , "Article Categories English Uris"@en ;[\n]" +2022-11-14 09:05:22,225 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:landingPage ;[\n]" +2022-11-14 09:05:22,225 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " sd:defaultGraph ;[\n]" +2022-11-14 09:05:22,225 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " foaf:page .[\n]" +2022-11-14 09:05:22,225 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,225 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,225 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:SingleFile ;[\n]" +2022-11-14 09:05:22,225 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "core-i18n/fr/infobox_property_definitions_fr.tql.bz2" , "Infobox Property Definitions"@en ;[\n]" +2022-11-14 09:05:22,225 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" +2022-11-14 09:05:22,225 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:checksum ;[\n]" +2022-11-14 09:05:22,225 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:isDistributionOf ;[\n]" +2022-11-14 09:05:22,225 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" +2022-11-14 09:05:22,225 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:preview ;[\n]" +2022-11-14 09:05:22,225 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:uncompressedByteSize 12347074 ;[\n]" +2022-11-14 09:05:22,225 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo ;[\n]" +2022-11-14 09:05:22,225 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "All properties predicates used in infoboxes."@en ;[\n]" +2022-11-14 09:05:22,225 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" +2022-11-14 09:05:22,225 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" +2022-11-14 09:05:22,225 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" +2022-11-14 09:05:22,225 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" +2022-11-14 09:05:22,225 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" +2022-11-14 09:05:22,225 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "Infobox Property Definitions"@en ;[\n]" +2022-11-14 09:05:22,225 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:byteSize 764067 ;[\n]" +2022-11-14 09:05:22,225 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:downloadURL ;[\n]" +2022-11-14 09:05:22,225 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:mediaType dataid-mt:MediaType_n-quads_x-bzip2 .[\n]" +2022-11-14 09:05:22,225 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,225 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,225 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:SingleFile ;[\n]" +2022-11-14 09:05:22,225 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "core-i18n/fr/page_links_en_uris_fr.ttl.bz2" , "Page Links English Uris"@en ;[\n]" +2022-11-14 09:05:22,225 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" +2022-11-14 09:05:22,225 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:checksum ;[\n]" +2022-11-14 09:05:22,225 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:isDistributionOf ;[\n]" +2022-11-14 09:05:22,225 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" +2022-11-14 09:05:22,225 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:preview ;[\n]" +2022-11-14 09:05:22,225 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:uncompressedByteSize 4595433793 ;[\n]" +2022-11-14 09:05:22,225 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo ;[\n]" +2022-11-14 09:05:22,225 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "Dataset containing internal links between DBpedia instances. The dataset was created from the internal links between Wikipedia articles. The dataset might be useful for structural analysis, data mining or for ranking DBpedia instances using Page Rank or similar algorithms. Normalized dataset matching English DBpedia resources."@en ;[\n]" +2022-11-14 09:05:22,225 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" +2022-11-14 09:05:22,225 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" +2022-11-14 09:05:22,225 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" +2022-11-14 09:05:22,225 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" +2022-11-14 09:05:22,225 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" +2022-11-14 09:05:22,225 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "Page Links English Uris"@en ;[\n]" +2022-11-14 09:05:22,225 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:byteSize 234071204 ;[\n]" +2022-11-14 09:05:22,225 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:downloadURL ;[\n]" +2022-11-14 09:05:22,225 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:mediaType dataid-mt:MediaType_turtle_x-bzip2 .[\n]" +2022-11-14 09:05:22,225 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,225 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,225 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:SingleFile ;[\n]" +2022-11-14 09:05:22,225 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "Disambiguations English Uris"@en , "core-i18n/fr/disambiguations_en_uris_fr.ttl.bz2" ;[\n]" +2022-11-14 09:05:22,225 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" +2022-11-14 09:05:22,225 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:checksum ;[\n]" +2022-11-14 09:05:22,225 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:isDistributionOf ;[\n]" +2022-11-14 09:05:22,225 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" +2022-11-14 09:05:22,225 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:preview ;[\n]" +2022-11-14 09:05:22,225 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:uncompressedByteSize 35211646 ;[\n]" +2022-11-14 09:05:22,225 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo ;[\n]" +2022-11-14 09:05:22,225 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "Links extracted from Wikipedia disambiguation pages. Since Wikipedia has no syntax to distinguish disambiguation links from ordinary links, DBpedia has to use heuristics. Normalized dataset matching English DBpedia resources."@en ;[\n]" +2022-11-14 09:05:22,225 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" +2022-11-14 09:05:22,225 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" +2022-11-14 09:05:22,225 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" +2022-11-14 09:05:22,225 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" +2022-11-14 09:05:22,225 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" +2022-11-14 09:05:22,225 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "Disambiguations English Uris"@en ;[\n]" +2022-11-14 09:05:22,225 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:byteSize 2060893 ;[\n]" +2022-11-14 09:05:22,225 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:downloadURL ;[\n]" +2022-11-14 09:05:22,225 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:mediaType dataid-mt:MediaType_turtle_x-bzip2 .[\n]" +2022-11-14 09:05:22,225 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,225 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,225 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid-ld:LinkedDataDataset , dataid:Dataset ;[\n]" +2022-11-14 09:05:22,225 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "Homepages"@en ;[\n]" +2022-11-14 09:05:22,225 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" +2022-11-14 09:05:22,225 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" +2022-11-14 09:05:22,225 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:previousVersion ;[\n]" +2022-11-14 09:05:22,225 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedDatasetRelation[\n]" +2022-11-14 09:05:22,225 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " ;[\n]" +2022-11-14 09:05:22,225 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:relatedDataset ;[\n]" +2022-11-14 09:05:22,225 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo , ;[\n]" +2022-11-14 09:05:22,225 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "Links to homepages of persons, organizations etc."@en ;[\n]" +2022-11-14 09:05:22,225 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" +2022-11-14 09:05:22,225 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:isPartOf ;[\n]" +2022-11-14 09:05:22,225 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" +2022-11-14 09:05:22,225 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:language ;[\n]" +2022-11-14 09:05:22,225 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" +2022-11-14 09:05:22,225 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" +2022-11-14 09:05:22,225 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" +2022-11-14 09:05:22,225 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "Homepages"@en ;[\n]" +2022-11-14 09:05:22,225 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " void:rootResource ;[\n]" +2022-11-14 09:05:22,225 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " void:triples 171829 ;[\n]" +2022-11-14 09:05:22,225 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:distribution , ;[\n]" +2022-11-14 09:05:22,225 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:keyword "DBpedia"@en , "Homepages"@en ;[\n]" +2022-11-14 09:05:22,225 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:landingPage ;[\n]" +2022-11-14 09:05:22,225 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " sd:defaultGraph ;[\n]" +2022-11-14 09:05:22,225 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " foaf:page .[\n]" +2022-11-14 09:05:22,229 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,229 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,229 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:SingleFile ;[\n]" +2022-11-14 09:05:22,229 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "core-i18n/fr/disambiguations_en_uris_fr.tql.bz2" , "Disambiguations English Uris"@en ;[\n]" +2022-11-14 09:05:22,229 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" +2022-11-14 09:05:22,229 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:checksum ;[\n]" +2022-11-14 09:05:22,229 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:isDistributionOf ;[\n]" +2022-11-14 09:05:22,229 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" +2022-11-14 09:05:22,229 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:preview ;[\n]" +2022-11-14 09:05:22,229 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:uncompressedByteSize 58778800 ;[\n]" +2022-11-14 09:05:22,229 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo ;[\n]" +2022-11-14 09:05:22,229 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "Links extracted from Wikipedia disambiguation pages. Since Wikipedia has no syntax to distinguish disambiguation links from ordinary links, DBpedia has to use heuristics. Normalized dataset matching English DBpedia resources."@en ;[\n]" +2022-11-14 09:05:22,229 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" +2022-11-14 09:05:22,229 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" +2022-11-14 09:05:22,229 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" +2022-11-14 09:05:22,229 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" +2022-11-14 09:05:22,229 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" +2022-11-14 09:05:22,229 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "Disambiguations English Uris"@en ;[\n]" +2022-11-14 09:05:22,229 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:byteSize 3553621 ;[\n]" +2022-11-14 09:05:22,229 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:downloadURL ;[\n]" +2022-11-14 09:05:22,229 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:mediaType dataid-mt:MediaType_n-quads_x-bzip2 .[\n]" +2022-11-14 09:05:22,229 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,229 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,229 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:SingleFile ;[\n]" +2022-11-14 09:05:22,229 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "core-i18n/fr/pnd_fr.ttl.bz2" , "pnd"@en ;[\n]" +2022-11-14 09:05:22,229 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" +2022-11-14 09:05:22,229 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:checksum ;[\n]" +2022-11-14 09:05:22,229 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:isDistributionOf ;[\n]" +2022-11-14 09:05:22,229 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" +2022-11-14 09:05:22,229 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:preview ;[\n]" +2022-11-14 09:05:22,229 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:uncompressedByteSize 38764 ;[\n]" +2022-11-14 09:05:22,229 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo ;[\n]" +2022-11-14 09:05:22,229 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "DBpedia dataset pnd, subset of "@en ;[\n]" +2022-11-14 09:05:22,229 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" +2022-11-14 09:05:22,229 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" +2022-11-14 09:05:22,229 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" +2022-11-14 09:05:22,229 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" +2022-11-14 09:05:22,229 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" +2022-11-14 09:05:22,229 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "pnd"@en ;[\n]" +2022-11-14 09:05:22,229 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:byteSize 4813 ;[\n]" +2022-11-14 09:05:22,229 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:downloadURL ;[\n]" +2022-11-14 09:05:22,229 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:mediaType dataid-mt:MediaType_turtle_x-bzip2 .[\n]" +2022-11-14 09:05:22,229 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,229 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,229 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid-ld:LinkedDataDataset , dataid:Dataset ;[\n]" +2022-11-14 09:05:22,229 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "infobox test"@en ;[\n]" +2022-11-14 09:05:22,229 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" +2022-11-14 09:05:22,229 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" +2022-11-14 09:05:22,229 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:previousVersion ;[\n]" +2022-11-14 09:05:22,229 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedDatasetRelation[\n]" +2022-11-14 09:05:22,229 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " ;[\n]" +2022-11-14 09:05:22,229 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:relatedDataset ;[\n]" +2022-11-14 09:05:22,229 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo , ;[\n]" +2022-11-14 09:05:22,229 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "DBpedia dataset infobox_test, subset of "@en ;[\n]" +2022-11-14 09:05:22,229 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" +2022-11-14 09:05:22,229 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:isPartOf ;[\n]" +2022-11-14 09:05:22,229 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" +2022-11-14 09:05:22,229 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:language ;[\n]" +2022-11-14 09:05:22,229 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" +2022-11-14 09:05:22,229 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" +2022-11-14 09:05:22,229 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" +2022-11-14 09:05:22,229 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "infobox test"@en ;[\n]" +2022-11-14 09:05:22,229 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " void:rootResource ;[\n]" +2022-11-14 09:05:22,229 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " void:triples 0 ;[\n]" +2022-11-14 09:05:22,229 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:distribution , ;[\n]" +2022-11-14 09:05:22,229 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:keyword "DBpedia"@en , "infobox test"@en ;[\n]" +2022-11-14 09:05:22,229 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:landingPage ;[\n]" +2022-11-14 09:05:22,229 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " sd:defaultGraph ;[\n]" +2022-11-14 09:05:22,229 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " foaf:page .[\n]" +2022-11-14 09:05:22,229 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,229 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,229 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:SingleFile ;[\n]" +2022-11-14 09:05:22,229 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "core-i18n/fr/persondata_en_uris_fr.ttl.bz2" , "Person data English Uris"@en ;[\n]" +2022-11-14 09:05:22,229 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" +2022-11-14 09:05:22,229 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:checksum ;[\n]" +2022-11-14 09:05:22,229 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:isDistributionOf ;[\n]" +2022-11-14 09:05:22,229 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" +2022-11-14 09:05:22,229 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:preview ;[\n]" +2022-11-14 09:05:22,229 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:uncompressedByteSize 291638568 ;[\n]" +2022-11-14 09:05:22,229 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo ;[\n]" +2022-11-14 09:05:22,229 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "Information about persons (date and place of birth etc., extracted from the English and German Wikipedia, represented using the FOAF vocabulary. Normalized dataset matching English DBpedia resources."@en ;[\n]" +2022-11-14 09:05:22,229 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" +2022-11-14 09:05:22,229 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" +2022-11-14 09:05:22,229 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" +2022-11-14 09:05:22,229 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" +2022-11-14 09:05:22,229 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" +2022-11-14 09:05:22,229 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "Person data English Uris"@en ;[\n]" +2022-11-14 09:05:22,229 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:byteSize 16895414 ;[\n]" +2022-11-14 09:05:22,229 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:downloadURL ;[\n]" +2022-11-14 09:05:22,229 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:mediaType dataid-mt:MediaType_turtle_x-bzip2 .[\n]" +2022-11-14 09:05:22,229 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,229 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,229 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid-ld:LinkedDataDataset , dataid:Dataset ;[\n]" +2022-11-14 09:05:22,229 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "Mappingbased Objects"@en ;[\n]" +2022-11-14 09:05:22,229 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associated" +2022-11-14 09:05:22,229 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "Agent ;[\n]" +2022-11-14 09:05:22,229 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" +2022-11-14 09:05:22,229 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:previousVersion ;[\n]" +2022-11-14 09:05:22,229 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedDatasetRelation[\n]" +2022-11-14 09:05:22,229 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " ;[\n]" +2022-11-14 09:05:22,229 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:relatedDataset ;[\n]" +2022-11-14 09:05:22,229 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo , ;[\n]" +2022-11-14 09:05:22,229 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "High-quality data extracted from Infoboxes using the mapping-based extraction (Object properties only). The predicates in this dataset are in the 'ontology' namespace. Note that this data is of much higher quality than the Raw Infobox Properties in the 'property' namespace."@en ;[\n]" +2022-11-14 09:05:22,229 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" +2022-11-14 09:05:22,229 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:isPartOf ;[\n]" +2022-11-14 09:05:22,229 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" +2022-11-14 09:05:22,229 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:language ;[\n]" +2022-11-14 09:05:22,229 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" +2022-11-14 09:05:22,229 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" +2022-11-14 09:05:22,229 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" +2022-11-14 09:05:22,229 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "Mappingbased Objects"@en ;[\n]" +2022-11-14 09:05:22,229 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " void:rootResource ;[\n]" +2022-11-14 09:05:22,229 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " void:triples 4983089 ;[\n]" +2022-11-14 09:05:22,229 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:distribution , ;[\n]" +2022-11-14 09:05:22,229 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:keyword "DBpedia"@en , "Mappingbased Objects"@en ;[\n]" +2022-11-14 09:05:22,229 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:landingPage ;[\n]" +2022-11-14 09:05:22,229 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " sd:defaultGraph ;[\n]" +2022-11-14 09:05:22,229 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " foaf:page .[\n]" +2022-11-14 09:05:22,229 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,229 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,229 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid-ld:LinkedDataDataset , dataid:Dataset ;[\n]" +2022-11-14 09:05:22,229 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "pnd Wikidata Uris"@en ;[\n]" +2022-11-14 09:05:22,229 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" +2022-11-14 09:05:22,229 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" +2022-11-14 09:05:22,229 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:previousVersion ;[\n]" +2022-11-14 09:05:22,229 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedDatasetRelation[\n]" +2022-11-14 09:05:22,229 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " ;[\n]" +2022-11-14 09:05:22,229 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:relatedDataset ;[\n]" +2022-11-14 09:05:22,229 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo , ;[\n]" +2022-11-14 09:05:22,229 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "Undescribed Dataset Normalized dataset matching Wikidata resources (sorted)."@en ;[\n]" +2022-11-14 09:05:22,229 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" +2022-11-14 09:05:22,229 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:isPartOf ;[\n]" +2022-11-14 09:05:22,229 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" +2022-11-14 09:05:22,229 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:language ;[\n]" +2022-11-14 09:05:22,229 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" +2022-11-14 09:05:22,229 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" +2022-11-14 09:05:22,229 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" +2022-11-14 09:05:22,229 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "pnd Wikidata Uris"@en ;[\n]" +2022-11-14 09:05:22,229 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " void:rootResource ;[\n]" +2022-11-14 09:05:22,229 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " void:triples 343 ;[\n]" +2022-11-14 09:05:22,229 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:distribution , ;[\n]" +2022-11-14 09:05:22,229 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:keyword "DBpedia"@en , "pnd Wikidata Uris"@en ;[\n]" +2022-11-14 09:05:22,229 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:landingPage ;[\n]" +2022-11-14 09:05:22,229 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " sd:defaultGraph ;[\n]" +2022-11-14 09:05:22,229 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " foaf:page .[\n]" +2022-11-14 09:05:22,229 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,229 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,229 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:Dataset ;[\n]" +2022-11-14 09:05:22,229 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "Wikipedia XML source dump file"@en ;[\n]" +2022-11-14 09:05:22,229 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" +2022-11-14 09:05:22,229 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" +2022-11-14 09:05:22,229 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:previousVersion ;[\n]" +2022-11-14 09:05:22,229 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedDatasetRelation[\n]" +2022-11-14 09:05:22,229 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " ;[\n]" +2022-11-14 09:05:22,229 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:relatedDataset ;[\n]" +2022-11-14 09:05:22,229 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:underAuthorization ;[\n]" +2022-11-14 09:05:22,229 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "The Wikipedia dump file, which is the source for all other extracted datasets."@en ;[\n]" +2022-11-14 09:05:22,229 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion "20161020" ;[\n]" +2022-11-14 09:05:22,229 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2016-10-20"^^xsd:date ;[\n]" +2022-11-14 09:05:22,229 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:language ;[\n]" +2022-11-14 09:05:22,229 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" +2022-11-14 09:05:22,229 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " " +2022-11-14 09:05:22,230 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" +2022-11-14 09:05:22,230 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "Wikipedia XML source dump file"@en ;[\n]" +2022-11-14 09:05:22,230 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:distribution ;[\n]" +2022-11-14 09:05:22,230 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:keyword "XML dump file"@en , "Wikipedia"@en ;[\n]" +2022-11-14 09:05:22,230 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:landingPage .[\n]" +2022-11-14 09:05:22,230 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,230 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,230 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:SingleFile ;[\n]" +2022-11-14 09:05:22,230 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "Homepages English Uris"@en , "core-i18n/fr/homepages_en_uris_fr.tql.bz2" ;[\n]" +2022-11-14 09:05:22,230 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" +2022-11-14 09:05:22,230 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:checksum ;[\n]" +2022-11-14 09:05:22,230 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:isDistributionOf ;[\n]" +2022-11-14 09:05:22,230 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" +2022-11-14 09:05:22,230 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:preview ;[\n]" +2022-11-14 09:05:22,230 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:uncompressedByteSize 26757149 ;[\n]" +2022-11-14 09:05:22,230 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo ;[\n]" +2022-11-14 09:05:22,230 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "Links to homepages of persons, organizations etc. Normalized dataset matching English DBpedia resources."@en ;[\n]" +2022-11-14 09:05:22,230 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" +2022-11-14 09:05:22,230 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" +2022-11-14 09:05:22,230 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" +2022-11-14 09:05:22,230 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" +2022-11-14 09:05:22,230 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" +2022-11-14 09:05:22,230 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "Homepages English Uris"@en ;[\n]" +2022-11-14 09:05:22,230 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:byteSize 3368388 ;[\n]" +2022-11-14 09:05:22,230 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:downloadURL ;[\n]" +2022-11-14 09:05:22,230 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:mediaType dataid-mt:MediaType_n-quads_x-bzip2 .[\n]" +2022-11-14 09:05:22,230 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,230 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,230 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:SingleFile ;[\n]" +2022-11-14 09:05:22,230 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "Instance Types Transitive"@en , "core-i18n/fr/instance_types_transitive_fr.ttl.bz2" ;[\n]" +2022-11-14 09:05:22,230 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" +2022-11-14 09:05:22,230 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:checksum ;[\n]" +2022-11-14 09:05:22,230 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:isDistributionOf ;[\n]" +2022-11-14 09:05:22,230 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" +2022-11-14 09:05:22,230 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:preview ;[\n]" +2022-11-14 09:05:22,230 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:uncompressedByteSize 1428189829 ;[\n]" +2022-11-14 09:05:22,230 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo ;[\n]" +2022-11-14 09:05:22,230 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "Contains transitive rdf:type $class based on the DBpedia ontology."@en ;[\n]" +2022-11-14 09:05:22,230 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" +2022-11-14 09:05:22,230 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" +2022-11-14 09:05:22,230 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" +2022-11-14 09:05:22,230 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" +2022-11-14 09:05:22,230 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" +2022-11-14 09:05:22,230 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "Instance Types Transitive"@en ;[\n]" +2022-11-14 09:05:22,230 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:byteSize 37604661 ;[\n]" +2022-11-14 09:05:22,230 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:downloadURL ;[\n]" +2022-11-14 09:05:22,230 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:mediaType dataid-mt:MediaType_turtle_x-bzip2 .[\n]" +2022-11-14 09:05:22,230 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,230 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,230 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:SingleFile ;[\n]" +2022-11-14 09:05:22,230 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "Mappingbased Objects English Uris"@en , "core-i18n/fr/mappingbased_objects_en_uris_fr.tql.bz2" ;[\n]" +2022-11-14 09:05:22,230 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" +2022-11-14 09:05:22,230 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:checksum ;[\n]" +2022-11-14 09:05:22,230 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:isDistributionOf ;[\n]" +2022-11-14 09:05:22,230 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" +2022-11-14 09:05:22,230 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:preview ;[\n]" +2022-11-14 09:05:22,230 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:uncompressedByteSize 734952411 ;[\n]" +2022-11-14 09:05:22,230 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo ;[\n]" +2022-11-14 09:05:22,230 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "High-quality data extracted from Infoboxes using the mapping-based extraction (Object properties only). The predicates in this dataset are in the 'ontology' namespace. Note that this data is of much higher quality than the Raw Infobox Properties in the 'property' namespace. Normalized dataset matching English DBpedia resources."@en ;[\n]" +2022-11-14 09:05:22,230 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" +2022-11-14 09:05:22,230 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" +2022-11-14 09:05:22,230 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" +2022-11-14 09:05:22,230 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" +2022-11-14 09:05:22,230 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" +2022-11-14 09:05:22,230 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "Mappingbased Objects English Uris"@en ;[\n]" +2022-11-14 09:05:22,230 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:byteSize 42957738 ;[\n]" +2022-11-14 09:05:22,230 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:downloadURL ;[\n]" +2022-11-14 09:05:22,230 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:mediaType dataid-mt:MediaType_n-quads_x-bzip2 .[\n]" +2022-11-14 09:05:22,230 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,230 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,230 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:SingleFile ;[\n]" +2022-11-14 09:05:22,230 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "core-i18n/fr/instance_types_transitive_fr.tql.bz2" , "Instance Types Transitive"@en ;[\n]" +2022-11-14 09:05:22,230 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" +2022-11-14 09:05:22,230 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:checksum ;[\n]" +2022-11-14 09:05:22,230 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:isDistributionOf ;[\n]" +2022-11-14 09:05:22,230 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" +2022-11-14 09:05:22,230 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:preview ;[\n]" +2022-11-14 09:05:22,230 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:uncompressedByteSize 2596532321 ;[\n]" +2022-11-14 09:05:22,230 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo ;[\n]" +2022-11-14 09:05:22,230 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "Contains transitive rdf:type $class based on the DBpedia ontology."@en ;[\n]" +2022-11-14 09:05:22,230 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" +2022-11-14 09:05:22,230 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" +2022-11-14 09:05:22,230 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" +2022-11-14 09:05:22,230 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" +2022-11-14 09:05:22,230 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" +2022-11-14 09:05:22,230 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "Instance Types Transitive"@en ;[\n]" +2022-11-14 09:05:22,230 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:byteSize 61232" +2022-11-14 09:05:22,232 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "203 ;[\n]" +2022-11-14 09:05:22,232 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:downloadURL ;[\n]" +2022-11-14 09:05:22,232 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:mediaType dataid-mt:MediaType_n-quads_x-bzip2 .[\n]" +2022-11-14 09:05:22,232 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,232 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,232 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid-ld:LinkedDataDataset , dataid:Dataset ;[\n]" +2022-11-14 09:05:22,232 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "Mappingbased Literals Wikidata Uris"@en ;[\n]" +2022-11-14 09:05:22,232 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" +2022-11-14 09:05:22,232 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" +2022-11-14 09:05:22,232 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:previousVersion ;[\n]" +2022-11-14 09:05:22,232 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedDatasetRelation[\n]" +2022-11-14 09:05:22,232 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " ;[\n]" +2022-11-14 09:05:22,232 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:relatedDataset ;[\n]" +2022-11-14 09:05:22,232 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo , ;[\n]" +2022-11-14 09:05:22,232 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "High-quality data extracted from Infoboxes using the mapping-based extraction (Literal properties only). The predicates in this dataset are in the ontology namespace. Note that this data is of much higher quality than " +2022-11-14 09:05:22,233 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "the Raw Infobox Properties in the 'property' namespace. Normalized dataset matching Wikidata resources (sorted)."@en ;[\n]" +2022-11-14 09:05:22,233 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" +2022-11-14 09:05:22,233 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:isPartOf ;[\n]" +2022-11-14 09:05:22,233 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" +2022-11-14 09:05:22,233 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:language ;[\n]" +2022-11-14 09:05:22,233 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" +2022-11-14 09:05:22,233 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" +2022-11-14 09:05:22,233 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" +2022-11-14 09:05:22,233 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "Mappingbased Literals Wikidata Uris"@en ;[\n]" +2022-11-14 09:05:22,233 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " void:rootResource ;[\n]" +2022-11-14 09:05:22,233 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " void:triples 2959079 ;[\n]" +2022-11-14 09:05:22,233 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:distribution , ;[\n]" +2022-11-14 09:05:22,233 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:keyword "Mappingbased Literals Wikidata Uris"@en , "DBpedia"@en ;[\n]" +2022-11-14 09:05:22,233 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:landingPage ;[\n]" +2022-11-14 09:05:22,233 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " sd:defaultGraph ;[\n]" +2022-11-14 09:05:22,233 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " foaf:page .[\n]" +2022-11-14 09:05:22,233 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,233 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,233 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:SingleFile ;[\n]" +2022-11-14 09:05:22,233 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "core-i18n/fr/geo_coordinates_en_uris_fr.tql.bz2" , "Geo Coordinates English Uris"@en ;[\n]" +2022-11-14 09:05:22,233 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" +2022-11-14 09:05:22,233 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:checksum ;[\n]" +2022-11-14 09:05:22,233 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:isDistributionOf ;[\n]" +2022-11-14 09:05:22,233 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" +2022-11-14 09:05:22,233 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:preview ;[\n]" +2022-11-14 09:05:22,233 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:uncompressedByteSize 25161745 ;[\n]" +2022-11-14 09:05:22,233 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo ;[\n]" +2022-11-14 09:05:22,233 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "Geographic coordinates extracted from Wikipedia. Normalized dataset matching English DBpedia resources."@en ;[\n]" +2022-11-14 09:05:22,233 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" +2022-11-14 09:05:22,234 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" +2022-11-14 09:05:22,234 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" +2022-11-14 09:05:22,234 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" +2022-11-14 09:05:22,234 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" +2022-11-14 09:05:22,234 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "Geo Coordinates English Uris"@en ;[\n]" +2022-11-14 09:05:22,234 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:byteSize 1465178 ;[\n]" +2022-11-14 09:05:22,234 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:downloadURL ;[\n]" +2022-11-14 09:05:22,234 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:mediaType dataid-mt:MediaType_n-quads_x-bzip2 .[\n]" +2022-11-14 09:05:22,234 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,234 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,234 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:Dataset , dataid-ld:LinkedDataDataset ;[\n]" +2022-11-14 09:05:22,234 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "Geo Coordinates Mappingbased"@en ;[\n]" +2022-11-14 09:05:22,234 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" +2022-11-14 09:05:22,234 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" +2022-11-14 09:05:22,234 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:previousVersion ;[\n]" +2022-11-14 09:05:22,234 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedDatasetRelation[\n]" +2022-11-14 09:05:22,234 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " ;[\n]" +2022-11-14 09:05:22,235 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:relatedDataset ;[\n]" +2022-11-14 09:05:22,235 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo , ;[\n]" +2022-11-14 09:05:22,235 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "Geographic coordinates extracted from Wikipedia originating from mapped infoboxes in the mappings wiki"@en ;[\n]" +2022-11-14 09:05:22,235 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" +2022-11-14 09:05:22,235 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:isPartOf ;[\n]" +2022-11-14 09:05:22,235 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" +2022-11-14 09:05:22,235 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:language ;[\n]" +2022-11-14 09:05:22,235 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" +2022-11-14 09:05:22,235 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" +2022-11-14 09:05:22,235 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" +2022-11-14 09:05:22,235 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "Geo Coordinates Mappingbased"@en ;[\n]" +2022-11-14 09:05:22,235 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " void:rootResource ;[\n]" +2022-11-14 09:05:22,235 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " void:triples 827523 ;[\n]" +2022-11-14 09:05:22,235 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:distribution , ;[\n]" +2022-11-14 09:05:22,235 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:keyword "Geo Coordinates Mappingbased"@en , "DBpedia"@en ;[\n]" +2022-11-14 09:05:22,235 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:landingPage ;[\n]" +2022-11-14 09:05:22,235 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " sd:defaultGraph ;[\n]" +2022-11-14 09:05:22,235 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " foaf:page .[\n]" +2022-11-14 09:05:22,235 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,235 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,235 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid-ld:LinkedDataDataset , dataid:Dataset ;[\n]" +2022-11-14 09:05:22,235 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "Specific Mappingbased Properties English Uris"@en ;[\n]" +2022-11-14 09:05:22,235 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" +2022-11-14 09:05:22,235 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" +2022-11-14 09:05:22,235 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:previousVersion ;[\n]" +2022-11-14 09:05:22,235 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedDatasetRelation[\n]" +2022-11-14 09:05:22,235 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " ;[\n]" +2022-11-14 09:05:22,235 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:relatedDataset ;[\n]" +2022-11-14 09:05:22,235 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo , ;[\n]" +2022-11-14 09:05:22,235 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "Infobox data from the mapping-based extraction, using units of measurement more " +2022-11-14 09:05:22,237 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "convenient for the resource type, e.g. square kilometres instead of square metres for the area of a city. Normalized dataset matching English DBpedia resources."@en ;[\n]" +2022-11-14 09:05:22,237 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" +2022-11-14 09:05:22,237 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:isPartOf ;[\n]" +2022-11-14 09:05:22,237 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" +2022-11-14 09:05:22,237 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:language ;[\n]" +2022-11-14 09:05:22,237 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" +2022-11-14 09:05:22,237 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" +2022-11-14 09:05:22,237 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" +2022-11-14 09:05:22,237 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "Specific Mappingbased Properties English Uris"@en ;[\n]" +2022-11-14 09:05:22,237 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " void:rootResource ;[\n]" +2022-11-14 09:05:22,237 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " void:triples 48016 ;[\n]" +2022-11-14 09:05:22,237 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:distribution , ;[\n]" +2022-11-14 09:05:22,237 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:keyword "Specific Mappingbased Properties English Uris"@en , "DBpedia"@en ;[\n]" +2022-11-14 09:05:22,237 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " " +2022-11-14 09:05:22,238 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:landingPage ;[\n]" +2022-11-14 09:05:22,238 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " sd:defaultGraph ;[\n]" +2022-11-14 09:05:22,238 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " foaf:page .[\n]" +2022-11-14 09:05:22,238 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,238 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,238 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:SingleFile ;[\n]" +2022-11-14 09:05:22,238 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "Images"@en , "core-i18n/fr/images_fr.ttl.bz2" ;[\n]" +2022-11-14 09:05:22,238 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" +2022-11-14 09:05:22,238 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:checksum ;[\n]" +2022-11-14 09:05:22,238 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:isDistributionOf ;[\n]" +2022-11-14 09:05:22,238 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" +2022-11-14 09:05:22,238 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:preview ;[\n]" +2022-11-14 09:05:22,238 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:uncompressedByteSize 1021959304 ;[\n]" +2022-11-14 09:05:22,238 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo ;[\n]" +2022-11-14 09:05:22,238 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "Main image and corresponding thumbnail from Wikipedia article."@en ;[\n]" +2022-11-14 09:05:22,238 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" +2022-11-14 09:05:22,238 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "20" +2022-11-14 09:05:22,239 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "17-07-01"^^xsd:date ;[\n]" +2022-11-14 09:05:22,239 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" +2022-11-14 09:05:22,239 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" +2022-11-14 09:05:22,239 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" +2022-11-14 09:05:22,239 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "Images"@en ;[\n]" +2022-11-14 09:05:22,239 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:byteSize 41856787 ;[\n]" +2022-11-14 09:05:22,239 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:downloadURL ;[\n]" +2022-11-14 09:05:22,239 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:mediaType dataid-mt:MediaType_turtle_x-bzip2 .[\n]" +2022-11-14 09:05:22,239 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,239 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,239 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:SingleFile ;[\n]" +2022-11-14 09:05:22,239 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "Infobox Properties"@en , "core-i18n/fr/infobox_properties_fr.tql.bz2" ;[\n]" +2022-11-14 09:05:22,239 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" +2022-11-14 09:05:22,239 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:checksum ;[\n]" +2022-11-14 09:05:22,239 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:isDistributionOf ;[\n]" +2022-11-14 09:05:22,239 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" +2022-11-14 09:05:22,239 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:preview ;[\n]" +2022-11-14 09:05:22,240 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:uncompressedByteSize 5432500076 ;[\n]" +2022-11-14 09:05:22,240 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo ;[\n]" +2022-11-14 09:05:22,240 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "Information that has been extracted from Wikipedia infoboxes. Note that this data is in the less clean 'property' namespace. The Mapping-based Properties in the 'ontology' namespace, should always be preferred over this data."@en ;[\n]" +2022-11-14 09:05:22,240 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" +2022-11-14 09:05:22,240 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" +2022-11-14 09:05:22,240 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" +2022-11-14 09:05:22,240 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" +2022-11-14 09:05:22,240 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" +2022-11-14 09:05:22,240 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "Infobox Properties"@en ;[\n]" +2022-11-14 09:05:22,240 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:byteSize 276611148 ;[\n]" +2022-11-14 09:05:22,240 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:downloadURL ;[\n]" +2022-11-14 09:05:22,240 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:mediaType dataid-mt:MediaType_n-quads_x-bzip2 .[\n]" +2022-11-14 09:05:22,240 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,240 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,240 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:SingleFile ;[\n]" +2022-11-14 09:05:22,240 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "Images"@en , "core-i1" +2022-11-14 09:05:22,241 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "8n/fr/images_fr.tql.bz2" ;[\n]" +2022-11-14 09:05:22,241 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" +2022-11-14 09:05:22,241 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:checksum ;[\n]" +2022-11-14 09:05:22,241 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:isDistributionOf ;[\n]" +2022-11-14 09:05:22,241 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" +2022-11-14 09:05:22,241 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:preview ;[\n]" +2022-11-14 09:05:22,241 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:uncompressedByteSize 1481265053 ;[\n]" +2022-11-14 09:05:22,241 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo ;[\n]" +2022-11-14 09:05:22,241 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "Main image and corresponding thumbnail from Wikipedia article."@en ;[\n]" +2022-11-14 09:05:22,241 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" +2022-11-14 09:05:22,241 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" +2022-11-14 09:05:22,241 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" +2022-11-14 09:05:22,241 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" +2022-11-14 09:05:22,241 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" +2022-11-14 09:05:22,241 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "Images"@en ;[\n]" +2022-11-14 09:05:22,241 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:byteSize 58380688 ;[\n]" +2022-11-14 09:05:22,241 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:downloadURL ;[\n]" +2022-11-14 09:05:22,241 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:mediaType dataid-mt:MediaType_n-quads_x-bzip2 .[\n]" +2022-11-14 09:05:22,241 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,241 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,241 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:Dataset , dataid-ld:LinkedDataDataset ;[\n]" +2022-11-14 09:05:22,241 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "Infobox Property Definitions English Uris"@en ;[\n]" +2022-11-14 09:05:22,241 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" +2022-11-14 09:05:22,241 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" +2022-11-14 09:05:22,241 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:previousVersion ;[\n]" +2022-11-14 09:05:22,241 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedDatasetRelation[\n]" +2022-11-14 09:05:22,241 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " ;[\n]" +2022-11-14 09:05:22,241 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:relatedDataset ;[\n]" +2022-11-14 09:05:22,241 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo , ;[\n]" +2022-11-14 09:05:22,241 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "All properties predicates used in infoboxes. Normalized dataset matching English DBpedia resources."@en ;[\n]" +2022-11-14 09:05:22,241 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" +2022-11-14 09:05:22,241 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:isPartOf " +2022-11-14 09:05:22,244 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " ;[\n]" +2022-11-14 09:05:22,244 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" +2022-11-14 09:05:22,244 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:language ;[\n]" +2022-11-14 09:05:22,244 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" +2022-11-14 09:05:22,244 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" +2022-11-14 09:05:22,244 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" +2022-11-14 09:05:22,244 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "Infobox Property Definitions English Uris"@en ;[\n]" +2022-11-14 09:05:22,244 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " void:rootResource ;[\n]" +2022-11-14 09:05:22,244 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " void:triples 42214 ;[\n]" +2022-11-14 09:05:22,244 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:distribution , ;[\n]" +2022-11-14 09:05:22,244 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:keyword "DBpedia"@en , "Infobox Property Definitions English Uris"@en ;[\n]" +2022-11-14 09:05:22,244 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:landingPage ;[\n]" +2022-11-14 09:05:22,244 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " sd:defaultGraph ;[\n]" +2022-11-14 09:05:22,244 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " foaf:page .[\n]" +2022-11-14 09:05:22,244 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,244 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,244 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:Dataset , dataid-ld:LinkedDataDat" +2022-11-14 09:05:22,245 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "aset ;[\n]" +2022-11-14 09:05:22,245 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "NIF Text Links"@en ;[\n]" +2022-11-14 09:05:22,245 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" +2022-11-14 09:05:22,245 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" +2022-11-14 09:05:22,245 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedDatasetRelation[\n]" +2022-11-14 09:05:22,245 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " ;[\n]" +2022-11-14 09:05:22,245 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:relatedDataset ;[\n]" +2022-11-14 09:05:22,245 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo , ;[\n]" +2022-11-14 09:05:22,245 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "This dataset contains all text links of a Wikipedia page, detailed in the NIF format."@en ;[\n]" +2022-11-14 09:05:22,245 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" +2022-11-14 09:05:22,245 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:isPartOf ;[\n]" +2022-11-14 09:05:22,245 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" +2022-11-14 09:05:22,245 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:language ;[\n]" +2022-11-14 09:05:22,245 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" +2022-11-14 09:05:22,245 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" +2022-11-14 09:05:22,245 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" +2022-11-14 09:05:22,245 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "NIF Text Links"@en ;[\n]" +2022-11-14 09:05:22,245 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " void:rootResource ;[\n]" +2022-11-14 09:05:22,254 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " void:triples 405609542 ;[\n]" +2022-11-14 09:05:22,254 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:distribution , ;[\n]" +2022-11-14 09:05:22,254 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:keyword "NIF Text Links"@en , "DBpedia"@en ;[\n]" +2022-11-14 09:05:22,254 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:landingPage ;[\n]" +2022-11-14 09:05:22,254 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " sd:defaultGraph ;[\n]" +2022-11-14 09:05:22,254 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " foaf:page .[\n]" +2022-11-14 09:05:22,254 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,254 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,254 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:Dataset , dataid-ld:LinkedDataDataset ;[\n]" +2022-11-14 09:05:22,254 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "Long Abstracts Wikidata Uris"@en ;[\n]" +2022-11-14 09:05:22,254 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" +2022-11-14 09:05:22,254 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" +2022-11-14 09:05:22,254 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:previousVersion ;[\n]" +2022-11-14 09:05:22,254 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedDatasetRelation[\n]" +2022-11-14 09:05:22,254 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " ;[\n]" +2022-11-14 09:05:22,254 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:relatedDataset ;[\n]" +2022-11-14 09:05:22,254 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo , ;[\n]" +2022-11-14 09:05:22,254 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "Long abstracts (full abstracts) of Wikipedia articles, usually the first section. Normalized dataset matching Wikidata resources (sorted)."@en ;[\n]" +2022-11-14 09:05:22,254 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" +2022-11-14 09:05:22,254 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:isPartOf ;[\n]" +2022-11-14 09:05:22,254 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" +2022-11-14 09:05:22,254 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:language ;[\n]" +2022-11-14 09:05:22,254 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" +2022-11-14 09:05:22,254 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" +2022-11-14 09:05:22,254 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" +2022-11-14 09:05:22,254 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "Long Abstracts Wikidata Uris"@en ;[\n]" +2022-11-14 09:05:22,254 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " void:rootResource ;[\n]" +2022-11-14 09:05:22,254 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " void:triples 1678856 ;[\n]" +2022-11-14 09:05:22,254 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:distribution , ;[\n]" +2022-11-14 09:05:22,254 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:keyword "Long Abstracts Wikidata Uris"@en , "DBpedia"@en ;[\n]" +2022-11-14 09:05:22,254 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:landingPage ;[\n]" +2022-11-14 09:05:22,254 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " sd:defaultGraph ;[\n]" +2022-11-14 09:05:22,254 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " foaf:page .[\n]" +2022-11-14 09:05:22,254 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,254 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,254 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid-ld:LinkedDataDataset , dataid:Dataset ;[\n]" +2022-11-14 09:05:22,254 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "Infobox Properties Wikidata Uris"@en ;[\n]" +2022-11-14 09:05:22,254 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" +2022-11-14 09:05:22,254 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" +2022-11-14 09:05:22,254 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:previousVersion ;[\n]" +2022-11-14 09:05:22,254 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedDatasetRelation[\n]" +2022-11-14 09:05:22,254 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " ;[\n]" +2022-11-14 09:05:22,254 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:relatedDataset ;[\n]" +2022-11-14 09:05:22,254 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo , ;[\n]" +2022-11-14 09:05:22,254 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "Information that has been extracted from Wikipedia infoboxes. Note that this data is in the less clean 'property' namespace. The Mapping-based Properties in the 'ontology' namespace, should always be preferred over this data. Norma" +2022-11-14 09:05:22,255 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "lized dataset matching Wikidata resources (sorted)."@en ;[\n]" +2022-11-14 09:05:22,255 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" +2022-11-14 09:05:22,255 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:isPartOf ;[\n]" +2022-11-14 09:05:22,255 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" +2022-11-14 09:05:22,255 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:language ;[\n]" +2022-11-14 09:05:22,255 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" +2022-11-14 09:05:22,255 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" +2022-11-14 09:05:22,255 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" +2022-11-14 09:05:22,255 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "Infobox Properties Wikidata Uris"@en ;[\n]" +2022-11-14 09:05:22,255 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " void:rootResource ;[\n]" +2022-11-14 09:05:22,255 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " void:triples 15644911 ;[\n]" +2022-11-14 09:05:22,255 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:distribution , ;[\n]" +2022-11-14 09:05:22,255 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:keyword "Infobox Properties Wikidata Uris"@en , "DBpedia"@en ;[\n]" +2022-11-14 09:05:22,255 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:landingPage ;[\n]" +2022-11-14 09:05:22,255 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " sd:defaultGraph ;[\n]" +2022-11-14 09:05:22,255 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " foaf:page .[\n]" +2022-11-14 09:05:22,255 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,255 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,255 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid-ld:LinkedDataDataset , dataid:Dataset ;[\n]" +2022-11-14 09:05:22,255 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "Disambiguations Wikidata Uris"@en ;[\n]" +2022-11-14 09:05:22,255 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" +2022-11-14 09:05:22,255 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" +2022-11-14 09:05:22,255 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:previousVersion ;[\n]" +2022-11-14 09:05:22,255 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedDatasetRelation[\n]" +2022-11-14 09:05:22,255 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " ;[\n]" +2022-11-14 09:05:22,255 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:relatedDataset ;[\n]" +2022-11-14 09:05:22,255 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo , ;[\n]" +2022-11-14 09:05:22,255 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "Links extracted from Wikipedia disambiguation pages. Since Wikipedia has no syntax to distinguish disambiguation links from ordinary links, DBpedia has to use heuristics. Normalized dataset matching Wikidata resources (sorted)."@en ;[\n]" +2022-11-14 09:05:22,255 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" +2022-11-14 09:05:22,255 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:isPartOf ;[\n]" +2022-11-14 09:05:22,255 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" +2022-11-14 09:05:22,255 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:language ;[\n]" +2022-11-14 09:05:22,255 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" +2022-11-14 09:05:22,255 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" +2022-11-14 09:05:22,255 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" +2022-11-14 09:05:22,255 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "Disambiguations Wikidata Uris"@en ;[\n]" +2022-11-14 09:05:22,255 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " void:rootResource ;[\n]" +2022-11-14 09:05:22,255 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " void:triples 439397 ;[\n]" +2022-11-14 09:05:22,255 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:distribution , ;[\n]" +2022-11-14 09:05:22,255 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:keyword "DBpedia"@en , "Disambiguations Wikidata Uris"@en ;[\n]" +2022-11-14 09:05:22,255 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:landingPage ;[\n]" +2022-11-14 09:05:22,255 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " sd:defaultGraph ;[\n]" +2022-11-14 09:05:22,255 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " foaf:page .[\n]" +2022-11-14 09:05:22,255 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,255 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,255 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid-ld:LinkedDataDataset , dataid:Dataset ;[\n]" +2022-11-14 09:05:22,255 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "Instance Types Transitive Wikidata Uris"@en ;[\n]" +2022-11-14 09:05:22,255 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" +2022-11-14 09:05:22,255 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" +2022-11-14 09:05:22,255 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:previousVersion ;[\n]" +2022-11-14 09:05:22,255 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedDatasetRelation[\n]" +2022-11-14 09:05:22,255 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " ;[\n]" +2022-11-14 09:05:22,255 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:relatedDataset ;[\n]" +2022-11-14 09:05:22,255 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo , ;[\n]" +2022-11-14 09:05:22,255 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "Contains transitive rdf:type $class based on the DBpedia ontology. Normalized dataset matching Wikidata resources (sorted)."@en ;[\n]" +2022-11-14 09:05:22,255 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" +2022-11-14 09:05:22,255 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:isPartOf ;[\n]" +2022-11-14 09:05:22,255 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" +2022-11-14 09:05:22,255 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:language ;[\n]" +2022-11-14 09:05:22,255 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" +2022-11-14 09:05:22,255 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" +2022-11-14 09:05:22,255 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" +2022-11-14 09:05:22,256 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "Instance Types Transitive Wikidata Uris"@en ;[\n]" +2022-11-14 09:05:22,256 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " void:rootResource ;[\n]" +2022-11-14 09:05:22,256 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " void:triples 6866781 ;[\n]" +2022-11-14 09:05:22,256 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:distribution , ;[\n]" +2022-11-14 09:05:22,256 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:keyword "Instance Types Transitive Wikidata Uris"@en , "DBpedia"@en ;[\n]" +2022-11-14 09:05:22,256 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:landingPage ;[\n]" +2022-11-14 09:05:22,256 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " sd:defaultGraph ;[\n]" +2022-11-14 09:05:22,256 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " foaf:page .[\n]" +2022-11-14 09:05:22,256 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,256 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,256 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:Dataset , dataid-ld:LinkedDataDataset ;[\n]" +2022-11-14 09:05:22,256 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "Category Labels. Wikidata Uris"@en ;[\n]" +2022-11-14 09:05:22,256 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" +2022-11-14 09:05:22,256 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" +2022-11-14 09:05:22,256 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:previousVersion ;[\n]" +2022-11-14 09:05:22,256 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedDat" +2022-11-14 09:05:22,256 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "asetRelation[\n]" +2022-11-14 09:05:22,256 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " ;[\n]" +2022-11-14 09:05:22,256 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:relatedDataset ;[\n]" +2022-11-14 09:05:22,256 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo , ;[\n]" +2022-11-14 09:05:22,256 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "Labels for Categories. Normalized dataset matching Wikidata resources (sorted)."@en ;[\n]" +2022-11-14 09:05:22,256 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" +2022-11-14 09:05:22,256 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:isPartOf ;[\n]" +2022-11-14 09:05:22,256 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" +2022-11-14 09:05:22,256 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:language ;[\n]" +2022-11-14 09:05:22,256 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" +2022-11-14 09:05:22,256 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" +2022-11-14 09:05:22,256 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" +2022-11-14 09:05:22,256 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "Category Labels. Wikidata Uris"@en ;[\n]" +2022-11-14 09:05:22,256 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " void:rootResource ;[\n]" +2022-11-14 09:05:22,256 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " void:triples 287624 ;[\n]" +2022-11-14 09:05:22,256 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:distribution , ;[\n]" +2022-11-14 09:05:22,256 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:keyword "DBpedia"@en , "Category Labels. Wikidata Uris"@en ;[\n]" +2022-11-14 09:05:22,256 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:landingPage ;[\n]" +2022-11-14 09:05:22,256 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " sd:defaultGraph ;[\n]" +2022-11-14 09:05:22,256 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " foaf:page .[\n]" +2022-11-14 09:05:22,256 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,256 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,256 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:SingleFile ;[\n]" +2022-11-14 09:05:22,256 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "core-i18n/fr/mappingbased_objects_fr.ttl.bz2" , "Mappingbased Objects"@en ;[\n]" +2022-11-14 09:05:22,256 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" +2022-11-14 09:05:22,256 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:checksum ;[\n]" +2022-11-14 09:05:22,256 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:isDistributionOf ;[\n]" +2022-11-14 09:05:22,256 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" +2022-11-14 09:05:22,256 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:preview ;[\n]" +2022-11-14 09:05:22,256 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:uncompressedByteSize 735911106 ;[\n]" +2022-11-14 09:05:22,256 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " " +2022-11-14 09:05:22,258 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo ;[\n]" +2022-11-14 09:05:22,258 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "High-quality data extracted from Infoboxes using the mapping-based extraction (Object properties only). The predicates in this dataset are in the 'ontology' namespace. Note that this data is of much higher quality than the Raw Infobox Properties in the 'property' namespace."@en ;[\n]" +2022-11-14 09:05:22,258 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" +2022-11-14 09:05:22,258 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" +2022-11-14 09:05:22,258 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" +2022-11-14 09:05:22,258 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" +2022-11-14 09:05:22,258 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" +2022-11-14 09:05:22,258 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "Mappingbased Objects"@en ;[\n]" +2022-11-14 09:05:22,258 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:byteSize 43960378 ;[\n]" +2022-11-14 09:05:22,258 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:downloadURL ;[\n]" +2022-11-14 09:05:22,258 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:mediaType dataid-mt:MediaType_turtle_x-bzip2 .[\n]" +2022-11-14 09:05:22,258 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,258 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,258 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid-ld:LinkedDataDataset , dataid:Dataset ;[\n]" +2022-11-14 09:05:22,258 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "Page Links"@en ;[\n]" +2022-11-14 09:05:22,258 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" +2022-11-14 09:05:22,258 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" +2022-11-14 09:05:22,258 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:previousVersion ;[\n]" +2022-11-14 09:05:22,258 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedDatasetRelation[\n]" +2022-11-14 09:05:22,258 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " ;[\n]" +2022-11-14 09:05:22,258 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:relatedDataset ;[\n]" +2022-11-14 09:05:22,258 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo , ;[\n]" +2022-11-14 09:05:22,258 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "Dataset containing internal links between DBpedia instances. The dataset was created from the internal links between Wikipedia articles. The dataset might be useful for structural analysis, data mining or for ranking DBpedia instances using Page Rank or similar algorithms."@en ;[\n]" +2022-11-14 09:05:22,258 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" +2022-11-14 09:05:22,258 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:isPartOf ;[\n]" +2022-11-14 09:05:22,258 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" +2022-11-14 09:05:22,258 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:language ;[\n]" +2022-11-14 09:05:22,258 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" +2022-11-14 09:05:22,258 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" +2022-11-14 09:05:22,258 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher " +2022-11-14 09:05:22,260 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " ;[\n]" +2022-11-14 09:05:22,260 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "Page Links"@en ;[\n]" +2022-11-14 09:05:22,260 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " void:rootResource ;[\n]" +2022-11-14 09:05:22,260 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " void:triples 64054759 ;[\n]" +2022-11-14 09:05:22,260 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:distribution , ;[\n]" +2022-11-14 09:05:22,260 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:keyword "Page Links"@en , "DBpedia"@en ;[\n]" +2022-11-14 09:05:22,260 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:landingPage ;[\n]" +2022-11-14 09:05:22,260 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " sd:defaultGraph ;[\n]" +2022-11-14 09:05:22,260 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " foaf:page .[\n]" +2022-11-14 09:05:22,260 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,260 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,260 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:SingleFile ;[\n]" +2022-11-14 09:05:22,260 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "Mappingbased Objects"@en , "core-i18n/fr/mappingbased_objects_fr.tql.bz2" ;[\n]" +2022-11-14 09:05:22,260 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" +2022-11-14 09:05:22,260 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:checksum ;[\n]" +2022-11-14 09:05:22,260 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:isDistributionOf ;[\n]" +2022-11-14 09:05:22,260 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion " +2022-11-14 09:05:22,261 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " ;[\n]" +2022-11-14 09:05:22,261 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:preview ;[\n]" +2022-11-14 09:05:22,261 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:uncompressedByteSize 1602561567 ;[\n]" +2022-11-14 09:05:22,261 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo ;[\n]" +2022-11-14 09:05:22,261 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "High-quality data extracted from Infoboxes using the mapping-based extraction (Object properties only). The predicates in this dataset are in the 'ontology' namespace. Note that this data is of much higher quality than the Raw Infobox Properties in the 'property' namespace."@en ;[\n]" +2022-11-14 09:05:22,261 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" +2022-11-14 09:05:22,261 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" +2022-11-14 09:05:22,261 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" +2022-11-14 09:05:22,261 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" +2022-11-14 09:05:22,261 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" +2022-11-14 09:05:22,261 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "Mappingbased Objects"@en ;[\n]" +2022-11-14 09:05:22,261 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:byteSize 84620726 ;[\n]" +2022-11-14 09:05:22,261 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:downloadURL ;[\n]" +2022-11-14 09:05:22,261 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:mediaType dataid-mt:MediaType_n-quads_x-bzip2 .[\n]" +2022-11-14 09:05:22,261 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,261 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,261 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid-ld:LinkedDataDataset , dataid:Dataset ;[\n]" +2022-11-14 09:05:22,261 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "Interlanguage Links between DBpedia Chapters"@en ;[\n]" +2022-11-14 09:05:22,261 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" +2022-11-14 09:05:22,261 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" +2022-11-14 09:05:22,261 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:previousVersion ;[\n]" +2022-11-14 09:05:22,261 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedDatasetRelation[\n]" +2022-11-14 09:05:22,261 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " ;[\n]" +2022-11-14 09:05:22,261 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:relatedDataset ;[\n]" +2022-11-14 09:05:22,261 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo , ;[\n]" +2022-11-14 09:05:22,261 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "Chapter specific interlanguage links only contains the interlanguage links between those languages for which a DBpedia mapping chapter exists and provides dereferencable URIs. (a subset of interlanguage links)"@en ;[\n]" +2022-11-14 09:05:22,261 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" +2022-11-14 09:05:22,261 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:isPartOf " +2022-11-14 09:05:22,262 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " ;[\n]" +2022-11-14 09:05:22,262 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" +2022-11-14 09:05:22,262 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:language ;[\n]" +2022-11-14 09:05:22,262 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" +2022-11-14 09:05:22,262 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" +2022-11-14 09:05:22,262 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" +2022-11-14 09:05:22,262 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "Interlanguage Links between DBpedia Chapters"@en ;[\n]" +2022-11-14 09:05:22,262 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " void:rootResource ;[\n]" +2022-11-14 09:05:22,262 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " void:triples 10971361 ;[\n]" +2022-11-14 09:05:22,262 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:distribution , ;[\n]" +2022-11-14 09:05:22,262 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:keyword "Interlanguage Links between DBpedia Chapters"@en , "DBpedia"@en ;[\n]" +2022-11-14 09:05:22,262 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:landingPage ;[\n]" +2022-11-14 09:05:22,262 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " sd:defaultGraph ;[\n]" +2022-11-14 09:05:22,262 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " foaf:page .[\n]" +2022-11-14 09:05:22,262 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,262 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,262 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:SingleFile ;[\n]" +2022-11-14 09:05:22,262 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label " +2022-11-14 09:05:22,263 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " "core-i18n/fr/page_length_fr.ttl.bz2" , "Page Length"@en ;[\n]" +2022-11-14 09:05:22,263 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" +2022-11-14 09:05:22,263 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:checksum ;[\n]" +2022-11-14 09:05:22,263 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:isDistributionOf ;[\n]" +2022-11-14 09:05:22,263 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" +2022-11-14 09:05:22,263 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:preview ;[\n]" +2022-11-14 09:05:22,263 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:uncompressedByteSize 525841043 ;[\n]" +2022-11-14 09:05:22,263 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo ;[\n]" +2022-11-14 09:05:22,263 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "Numbers of characters contained in a Wikipedia article's source."@en ;[\n]" +2022-11-14 09:05:22,263 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" +2022-11-14 09:05:22,263 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" +2022-11-14 09:05:22,263 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" +2022-11-14 09:05:22,263 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" +2022-11-14 09:05:22,263 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" +2022-11-14 09:05:22,263 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "Page Length"@en ;[\n]" +2022-11-14 09:05:22,263 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " d" +2022-11-14 09:05:22,264 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "cat:byteSize 32403907 ;[\n]" +2022-11-14 09:05:22,264 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:downloadURL ;[\n]" +2022-11-14 09:05:22,264 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:mediaType dataid-mt:MediaType_turtle_x-bzip2 .[\n]" +2022-11-14 09:05:22,264 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,264 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,264 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:SingleFile ;[\n]" +2022-11-14 09:05:22,264 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "Labels Wikidata Uris"@en , "core-i18n/fr/labels_wkd_uris_fr.tql.bz2" ;[\n]" +2022-11-14 09:05:22,264 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" +2022-11-14 09:05:22,264 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:checksum ;[\n]" +2022-11-14 09:05:22,264 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:isDistributionOf ;[\n]" +2022-11-14 09:05:22,264 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" +2022-11-14 09:05:22,264 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:preview ;[\n]" +2022-11-14 09:05:22,264 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:uncompressedByteSize 336643942 ;[\n]" +2022-11-14 09:05:22,264 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo ;[\n]" +2022-11-14 09:05:22,264 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "Titles of all Wikipedia Articles in the corresponding language. In Wikidata, it contains all the languages availa" +2022-11-14 09:05:22,265 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "ble in the mappings wiki, labels_nmw contains the rest Normalized dataset matching Wikidata resources (sorted)."@en ;[\n]" +2022-11-14 09:05:22,265 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" +2022-11-14 09:05:22,265 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" +2022-11-14 09:05:22,265 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" +2022-11-14 09:05:22,265 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" +2022-11-14 09:05:22,265 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" +2022-11-14 09:05:22,265 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "Labels Wikidata Uris"@en ;[\n]" +2022-11-14 09:05:22,265 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:byteSize 37297385 ;[\n]" +2022-11-14 09:05:22,265 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:downloadURL ;[\n]" +2022-11-14 09:05:22,265 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:mediaType dataid-mt:MediaType_n-quads_x-bzip2 .[\n]" +2022-11-14 09:05:22,265 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,265 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,265 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:Dataset , dataid-ld:LinkedDataDataset ;[\n]" +2022-11-14 09:05:22,265 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "Instance Types Wikidata Uris"@en ;[\n]" +2022-11-14 09:05:22,265 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" +2022-11-14 09:05:22,265 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" +2022-11-14 09:05:22,265 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:previousVersion ;[\n]" +2022-11-14 09:05:22,265 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedDatasetRelation[\n]" +2022-11-14 09:05:22,265 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " ;[\n]" +2022-11-14 09:05:22,265 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:relatedDataset ;[\n]" +2022-11-14 09:05:22,265 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo , ;[\n]" +2022-11-14 09:05:22,265 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "Contains triples of the form $object rdf:type $class from the mapping-based extraction. Normalized dataset matching Wikidata resources (sorted)."@en ;[\n]" +2022-11-14 09:05:22,265 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" +2022-11-14 09:05:22,265 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:isPartOf ;[\n]" +2022-11-14 09:05:22,265 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" +2022-11-14 09:05:22,265 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:language ;[\n]" +2022-11-14 09:05:22,265 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" +2022-11-14 09:05:22,265 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" +2022-11-14 09:05:22,265 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" +2022-11-14 09:05:22,265 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "Instance Types Wikidata Uris"@en ;[\n]" +2022-11-14 09:05:22,265 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " void:rootResource ;[\n]" +2022-11-14 09:05:22,265 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " void:triples 849271 ;[\n]" +2022-11-14 09:05:22,265 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:distribution , ;[\n]" +2022-11-14 09:05:22,267 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:keyword "Instance Types Wikidata Uris"@en , "DBpedia"@en ;[\n]" +2022-11-14 09:05:22,267 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:landingPage ;[\n]" +2022-11-14 09:05:22,267 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " sd:defaultGraph ;[\n]" +2022-11-14 09:05:22,267 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " foaf:page .[\n]" +2022-11-14 09:05:22,267 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,267 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,267 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:SingleFile ;[\n]" +2022-11-14 09:05:22,267 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "Mappingbased Literals English Uris"@en , "core-i18n/fr/mappingbased_literals_en_uris_fr.ttl.bz2" ;[\n]" +2022-11-14 09:05:22,267 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" +2022-11-14 09:05:22,267 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:checksum ;[\n]" +2022-11-14 09:05:22,267 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:isDistributionOf ;[\n]" +2022-11-14 09:05:22,267 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" +2022-11-14 09:05:22,267 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:preview ;[\n]" +2022-11-14 09:05:22,268 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:uncompressedByteSize 275284621 ;[\n]" +2022-11-14 09:05:22,268 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo ;[\n]" +2022-11-14 09:05:22,268 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "High-quality data extracted from Infoboxes using the mapping-based extraction (Literal properties only). The predicates in this dataset are in the ontology namespace. Note that this data is of much higher quality than the Raw Infobox Properties in the 'property' namespace. Normalized dataset matching English DBpedia resources."@en ;[\n]" +2022-11-14 09:05:22,268 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" +2022-11-14 09:05:22,268 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" +2022-11-14 09:05:22,268 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" +2022-11-14 09:05:22,268 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" +2022-11-14 09:05:22,268 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" +2022-11-14 09:05:22,268 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "Mappingbased Literals English Uris"@en ;[\n]" +2022-11-14 09:05:22,268 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:byteSize 23510770 ;[\n]" +2022-11-14 09:05:22,268 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:downloadURL ;[\n]" +2022-11-14 09:05:22,268 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:mediaType dataid-mt:MediaType_turtle_x-bzip2 .[\n]" +2022-11-14 09:05:22,268 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,268 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,268 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:SingleFile ;[\n]" +2022-11-14 09:05:22,268 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "Mappingbased Literals Wikidata Uris"@en , "core-i18n/fr/mappingbased_literals_wkd_uris_fr.ttl.bz2" ;[\n]" +2022-11-14 09:05:22,268 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" +2022-11-14 09:05:22,268 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:checksum ;[\n]" +2022-11-14 09:05:22,268 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:isDistributionOf ;[\n]" +2022-11-14 09:05:22,268 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" +2022-11-14 09:05:22,268 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:preview ;[\n]" +2022-11-14 09:05:22,268 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:uncompressedByteSize 359039982 ;[\n]" +2022-11-14 09:05:22,268 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo ;[\n]" +2022-11-14 09:05:22,268 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "High-quality data extracted from Infoboxes using the mapping-based extraction (Literal properties only). The predicates in this dataset are in the ontology namespace. Note that this data is of much higher quality th" +2022-11-14 09:05:22,269 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "an the Raw Infobox Properties in the 'property' namespace. Normalized dataset matching Wikidata resources (sorted)."@en ;[\n]" +2022-11-14 09:05:22,269 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" +2022-11-14 09:05:22,269 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" +2022-11-14 09:05:22,269 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" +2022-11-14 09:05:22,269 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" +2022-11-14 09:05:22,269 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" +2022-11-14 09:05:22,269 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "Mappingbased Literals Wikidata Uris"@en ;[\n]" +2022-11-14 09:05:22,269 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:byteSize 26501268 ;[\n]" +2022-11-14 09:05:22,269 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:downloadURL ;[\n]" +2022-11-14 09:05:22,269 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:mediaType dataid-mt:MediaType_turtle_x-bzip2 .[\n]" +2022-11-14 09:05:22,269 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,269 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,269 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:Dataset , dataid-ld:LinkedDataDataset ;[\n]" +2022-11-14 09:05:22,269 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "Category Labels."@en ;[\n]" +2022-11-14 09:05:22,269 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" +2022-11-14 09:05:22,269 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" +2022-11-14 09:05:22,269 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:previousVersion ;[\n]" +2022-11-14 09:05:22,269 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualified" +2022-11-14 09:05:22,270 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "DatasetRelation[\n]" +2022-11-14 09:05:22,270 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " ;[\n]" +2022-11-14 09:05:22,270 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:relatedDataset ;[\n]" +2022-11-14 09:05:22,270 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo , ;[\n]" +2022-11-14 09:05:22,270 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "Labels for Categories."@en ;[\n]" +2022-11-14 09:05:22,270 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" +2022-11-14 09:05:22,270 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:isPartOf ;[\n]" +2022-11-14 09:05:22,270 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" +2022-11-14 09:05:22,270 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:language ;[\n]" +2022-11-14 09:05:22,270 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" +2022-11-14 09:05:22,270 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" +2022-11-14 09:05:22,270 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" +2022-11-14 09:05:22,270 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "Category Labels."@en ;[\n]" +2022-11-14 09:05:22,270 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " void:rootResource ;[\n]" +2022-11-14 09:05:22,270 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " void:triples 357366 ;[\n]" +2022-11-14 09:05:22,270 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:distribution , ;[\n]" +2022-11-14 09:05:22,270 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:keyword "Category Labels."@en , "DBpedia"@en ;[\n]" +2022-11-14 09:05:22,270 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:landingPage ;[\n]" +2022-11-14 09:05:22,270 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " sd:defaultGraph ;[\n]" +2022-11-14 09:05:22,270 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " foaf:page .[\n]" +2022-11-14 09:05:22,270 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,270 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,270 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:SingleFile ;[\n]" +2022-11-14 09:05:22,270 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "core-i18n/fr/mappingbased_literals_wkd_uris_fr.tql.bz2" , "Mappingbased Literals Wikidata Uris"@en ;[\n]" +2022-11-14 09:05:22,270 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" +2022-11-14 09:05:22,270 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:checksum ;[\n]" +2022-11-14 09:05:22,270 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:isDistributionOf ;[\n]" +2022-11-14 09:05:22,270 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" +2022-11-14 09:05:22,270 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:preview ;[\n]" +2022-11-14 09:05:22,270 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:uncompressedByteSize 912809097 ;[\n]" +2022-11-14 09:05:22,270 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo " +2022-11-14 09:05:22,273 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " ;[\n]" +2022-11-14 09:05:22,273 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "High-quality data extracted from Infoboxes using the mapping-based extraction (Literal properties only). The predicates in this dataset are in the ontology namespace. Note that this data is of much higher quality than the Raw Infobox Properties in the 'property' namespace. Normalized dataset matching Wikidata resources (sorted)."@en ;[\n]" +2022-11-14 09:05:22,273 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" +2022-11-14 09:05:22,273 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" +2022-11-14 09:05:22,273 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" +2022-11-14 09:05:22,273 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" +2022-11-14 09:05:22,273 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" +2022-11-14 09:05:22,273 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "Mappingbased Literals Wikidata Uris"@en ;[\n]" +2022-11-14 09:05:22,273 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:byteSize 59399048 ;[\n]" +2022-11-14 09:05:22,273 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:downloadURL ;[\n]" +2022-11-14 09:05:22,273 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:mediaType dataid-mt:MediaType_n-quads_x-bzip2 .[\n]" +2022-11-14 09:05:22,273 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,273 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,273 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:Dataset , dataid-ld:LinkedDataDataset ;[\n]" +2022-11-14 09:05:22,273 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "Images Wikidata Uris"@en ;[\n]" +2022-11-14 09:05:22,273 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " " +2022-11-14 09:05:22,274 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" +2022-11-14 09:05:22,274 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" +2022-11-14 09:05:22,274 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:previousVersion ;[\n]" +2022-11-14 09:05:22,274 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedDatasetRelation[\n]" +2022-11-14 09:05:22,274 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " ;[\n]" +2022-11-14 09:05:22,274 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:relatedDataset ;[\n]" +2022-11-14 09:05:22,274 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo , ;[\n]" +2022-11-14 09:05:22,274 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "Main image and corresponding thumbnail from Wikipedia article. Normalized dataset matching Wikidata resources (sorted)."@en ;[\n]" +2022-11-14 09:05:22,274 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" +2022-11-14 09:05:22,274 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:isPartOf ;[\n]" +2022-11-14 09:05:22,274 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" +2022-11-14 09:05:22,274 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:language ;[\n]" +2022-11-14 09:05:22,274 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" +2022-11-14 09:05:22,274 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" +2022-11-14 09:05:22,274 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" +2022-11-14 09:05:22,274 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title " +2022-11-14 09:05:22,275 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " "Images Wikidata Uris"@en ;[\n]" +2022-11-14 09:05:22,275 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " void:rootResource ;[\n]" +2022-11-14 09:05:22,275 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " void:triples 5371675 ;[\n]" +2022-11-14 09:05:22,275 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:distribution , ;[\n]" +2022-11-14 09:05:22,275 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:keyword "Images Wikidata Uris"@en , "DBpedia"@en ;[\n]" +2022-11-14 09:05:22,275 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:landingPage ;[\n]" +2022-11-14 09:05:22,275 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " sd:defaultGraph ;[\n]" +2022-11-14 09:05:22,275 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " foaf:page .[\n]" +2022-11-14 09:05:22,275 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,275 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,275 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:SingleFile ;[\n]" +2022-11-14 09:05:22,275 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "pnd Wikidata Uris"@en , "core-i18n/fr/pnd_wkd_uris_fr.ttl.bz2" ;[\n]" +2022-11-14 09:05:22,275 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" +2022-11-14 09:05:22,275 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:checksum ;[\n]" +2022-11-14 09:05:22,275 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:isDistributionOf ;[\n]" +2022-11-14 09:05:22,275 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" +2022-11-14 09:05:22,275 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:preview ;[\n]" +2022-11-14 09:05:22,275 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:uncompressedByteSize 37354 ;[\n]" +2022-11-14 09:05:22,275 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo ;[\n]" +2022-11-14 09:05:22,275 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "Undescribed Dataset Normalized dataset matching Wikidata resources (sorted)."@en ;[\n]" +2022-11-14 09:05:22,275 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" +2022-11-14 09:05:22,275 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" +2022-11-14 09:05:22,275 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" +2022-11-14 09:05:22,275 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" +2022-11-14 09:05:22,275 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" +2022-11-14 09:05:22,275 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "pnd Wikidata Uris"@en ;[\n]" +2022-11-14 09:05:22,275 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:byteSize 2838 ;[\n]" +2022-11-14 09:05:22,275 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:downloadURL ;[\n]" +2022-11-14 09:05:22,275 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:mediaType dataid-mt:MediaType_turtle_x-bzip2 .[\n]" +2022-11-14 09:05:22,275 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,275 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,275 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:SingleFile ;[\n]" +2022-11-14 09:05:22,275 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "core-i18n/fr/pnd_wkd_uris_fr.tql.bz2" , "pnd Wikidata Uris"@en ;[\n]" +2022-11-14 09:05:22,275 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:asso" +2022-11-14 09:05:22,277 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "ciatedAgent ;[\n]" +2022-11-14 09:05:22,277 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:checksum ;[\n]" +2022-11-14 09:05:22,277 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:isDistributionOf ;[\n]" +2022-11-14 09:05:22,277 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" +2022-11-14 09:05:22,277 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:preview ;[\n]" +2022-11-14 09:05:22,277 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:uncompressedByteSize 86953 ;[\n]" +2022-11-14 09:05:22,277 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo ;[\n]" +2022-11-14 09:05:22,277 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "Undescribed Dataset Normalized dataset matching Wikidata resources (sorted)."@en ;[\n]" +2022-11-14 09:05:22,277 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" +2022-11-14 09:05:22,277 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" +2022-11-14 09:05:22,277 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" +2022-11-14 09:05:22,277 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" +2022-11-14 09:05:22,277 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" +2022-11-14 09:05:22,277 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "pnd Wikidata Uris"@en ;[\n]" +2022-11-14 09:05:22,277 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:byteSize 8593 ;[\n]" +2022-11-14 09:05:22,277 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:downloadURL " +2022-11-14 09:05:22,277 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " ;[\n]" +2022-11-14 09:05:22,277 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:mediaType dataid-mt:MediaType_n-quads_x-bzip2 .[\n]" +2022-11-14 09:05:22,277 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,277 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,277 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid-ld:LinkedDataDataset , dataid:Dataset ;[\n]" +2022-11-14 09:05:22,277 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "pnd"@en ;[\n]" +2022-11-14 09:05:22,277 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" +2022-11-14 09:05:22,277 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" +2022-11-14 09:05:22,277 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:previousVersion ;[\n]" +2022-11-14 09:05:22,277 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedDatasetRelation[\n]" +2022-11-14 09:05:22,277 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " ;[\n]" +2022-11-14 09:05:22,277 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:relatedDataset ;[\n]" +2022-11-14 09:05:22,277 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo , ;[\n]" +2022-11-14 09:05:22,277 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "DBpedia dataset pnd, subset of "@en ;[\n]" +2022-11-14 09:05:22,277 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" +2022-11-14 09:05:22,277 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:isPartOf ;[\n]" +2022-11-14 09:05:22,277 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" +2022-11-14 09:05:22,277 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:language ;[\n]" +2022-11-14 09:05:22,277 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license " +2022-11-14 09:05:22,279 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " ;[\n]" +2022-11-14 09:05:22,279 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" +2022-11-14 09:05:22,279 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" +2022-11-14 09:05:22,279 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "pnd"@en ;[\n]" +2022-11-14 09:05:22,279 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " void:rootResource ;[\n]" +2022-11-14 09:05:22,279 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " void:triples 343 ;[\n]" +2022-11-14 09:05:22,279 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:distribution , ;[\n]" +2022-11-14 09:05:22,279 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:keyword "DBpedia"@en , "pnd"@en ;[\n]" +2022-11-14 09:05:22,279 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:landingPage ;[\n]" +2022-11-14 09:05:22,279 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " sd:defaultGraph ;[\n]" +2022-11-14 09:05:22,279 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " foaf:page .[\n]" +2022-11-14 09:05:22,279 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,279 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,279 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:SingleFile ;[\n]" +2022-11-14 09:05:22,279 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "Long Abstracts Wikidata Uris"@en , "core-i18n/fr/long_abstracts_wkd_uris_fr.tql.bz2" ;[\n]" +2022-11-14 09:05:22,279 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" +2022-11-14 09:05:22,279 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:checksum ;[\n]" +2022-11-14 09:05:22,279 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:isDistributionOf " +2022-11-14 09:05:22,280 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " ;[\n]" +2022-11-14 09:05:22,280 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" +2022-11-14 09:05:22,280 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:preview ;[\n]" +2022-11-14 09:05:22,280 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:uncompressedByteSize 936743634 ;[\n]" +2022-11-14 09:05:22,280 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo ;[\n]" +2022-11-14 09:05:22,280 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "Long abstracts (full abstracts) of Wikipedia articles, usually the first section. Normalized dataset matching Wikidata resources (sorted)."@en ;[\n]" +2022-11-14 09:05:22,280 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" +2022-11-14 09:05:22,280 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" +2022-11-14 09:05:22,280 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" +2022-11-14 09:05:22,280 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" +2022-11-14 09:05:22,280 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" +2022-11-14 09:05:22,280 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "Long Abstracts Wikidata Uris"@en ;[\n]" +2022-11-14 09:05:22,280 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:byteSize 211689983 ;[\n]" +2022-11-14 09:05:22,280 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:downloadURL ;[\n]" +2022-11-14 09:05:22,280 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:mediaType dataid-mt:MediaType_n-quads_x-bzip2 .[\n]" +2022-11-14 09:05:22,280 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,280 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,280 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid-ld:SparqlEndpoint ;[\n]" +2022-11-14 09:05:22,280 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "The official DBpedia sparql endpoint"@en ;[\n]" +2022-11-14 09:05:22,280 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:accessProcedure ;[\n]" +2022-11-14 09:05:22,280 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" +2022-11-14 09:05:22,280 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:isDistributionOf , , ;[\n]" +2022-11-14 09:05:22,280 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:underAuthorization ;[\n]" +2022-11-14 09:05:22,280 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo , ;[\n]" +2022-11-14 09:05:22,280 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "The official sparql endpoint of DBpedia, hosted graciously by OpenLink Software (http://virtuoso.openlinksw.com/), containing all datasets of the /core directory."@en ;[\n]" +2022-11-14 09:05:22,280 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" +2022-11-14 09:05:22,280 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued " +2022-11-14 09:05:22,281 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " "2017-07-01"^^xsd:date ;[\n]" +2022-11-14 09:05:22,281 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" +2022-11-14 09:05:22,281 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" +2022-11-14 09:05:22,281 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "The official DBpedia sparql endpoint"@en ;[\n]" +2022-11-14 09:05:22,281 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:accessURL ;[\n]" +2022-11-14 09:05:22,281 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:mediaType .[\n]" +2022-11-14 09:05:22,281 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,281 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,281 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:SingleFile ;[\n]" +2022-11-14 09:05:22,281 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "core-i18n/fr/page_links_fr.tql.bz2" , "Page Links"@en ;[\n]" +2022-11-14 09:05:22,281 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" +2022-11-14 09:05:22,281 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:checksum ;[\n]" +2022-11-14 09:05:22,281 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:isDistributionOf ;[\n]" +2022-11-14 09:05:22,281 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" +2022-11-14 09:05:22,281 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:preview ;[\n]" +2022-11-14 09:05:22,281 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:uncompressedByteSize 17666533212 ;[\n]" +2022-11-14 09:05:22,281 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo ;[\n]" +2022-11-14 09:05:22,281 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:" +2022-11-14 09:05:22,282 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "description "Dataset containing internal links between DBpedia instances. The dataset was created from the internal links between Wikipedia articles. The dataset might be useful for structural analysis, data mining or for ranking DBpedia instances using Page Rank or similar algorithms."@en ;[\n]" +2022-11-14 09:05:22,282 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" +2022-11-14 09:05:22,282 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" +2022-11-14 09:05:22,282 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" +2022-11-14 09:05:22,282 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" +2022-11-14 09:05:22,282 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" +2022-11-14 09:05:22,282 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "Page Links"@en ;[\n]" +2022-11-14 09:05:22,282 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:byteSize 810860093 ;[\n]" +2022-11-14 09:05:22,282 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:downloadURL ;[\n]" +2022-11-14 09:05:22,282 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:mediaType dataid-mt:MediaType_n-quads_x-bzip2 .[\n]" +2022-11-14 09:05:22,282 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,282 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,282 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:SingleFile ;[\n]" +2022-11-14 09:05:22,282 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "French Population Wikidata Uris"@en , "core-i18n/fr/french_population_wkd_uris_fr.ttl.bz2" ;[\n]" +2022-11-14 09:05:22,282 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" +2022-11-14 09:05:22,283 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:checksum ;[\n]" +2022-11-14 09:05:22,283 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:isDistributionOf ;[\n]" +2022-11-14 09:05:22,283 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" +2022-11-14 09:05:22,283 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:preview ;[\n]" +2022-11-14 09:05:22,283 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:uncompressedByteSize 6482954 ;[\n]" +2022-11-14 09:05:22,283 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo ;[\n]" +2022-11-14 09:05:22,283 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "French dataset about population. Normalized dataset matching Wikidata resources (sorted)."@en ;[\n]" +2022-11-14 09:05:22,283 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" +2022-11-14 09:05:22,283 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" +2022-11-14 09:05:22,283 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" +2022-11-14 09:05:22,283 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" +2022-11-14 09:05:22,283 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" +2022-11-14 09:05:22,283 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "French Population Wikidata Uris"@en ;" +2022-11-14 09:05:22,284 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,284 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:byteSize 196617 ;[\n]" +2022-11-14 09:05:22,284 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:downloadURL ;[\n]" +2022-11-14 09:05:22,284 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:mediaType dataid-mt:MediaType_turtle_x-bzip2 .[\n]" +2022-11-14 09:05:22,284 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,284 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,284 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:SingleFile ;[\n]" +2022-11-14 09:05:22,284 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "core-i18n/fr/external_links_en_uris_fr.ttl.bz2" , "External Links English Uris"@en ;[\n]" +2022-11-14 09:05:22,284 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" +2022-11-14 09:05:22,284 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:checksum ;[\n]" +2022-11-14 09:05:22,284 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:isDistributionOf ;[\n]" +2022-11-14 09:05:22,284 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" +2022-11-14 09:05:22,284 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:preview ;[\n]" +2022-11-14 09:05:22,284 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:uncompressedByteSize 198344589 ;[\n]" +2022-11-14 09:05:22,284 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo ;[\n]" +2022-11-14 09:05:22,284 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "Links to external web pages about a concept. Normalized dataset matching English DBpedia resources."@en ;[\n]" +2022-11-14 09:05:22,284 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" +2022-11-14 09:05:22,284 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" +2022-11-14 09:05:22,284 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" +2022-11-14 09:05:22,284 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" +2022-11-14 09:05:22,284 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" +2022-11-14 09:05:22,284 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "External Links English Uris"@en ;[\n]" +2022-11-14 09:05:22,284 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:byteSize 26416808 ;[\n]" +2022-11-14 09:05:22,284 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:downloadURL ;[\n]" +2022-11-14 09:05:22,284 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:mediaType dataid-mt:MediaType_turtle_x-bzip2 .[\n]" +2022-11-14 09:05:22,284 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,284 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,284 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:SingleFile ;[\n]" +2022-11-14 09:05:22,284 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "Geo Coordinates"@en , "core-i18n/fr/geo_coordinates_fr.ttl.bz2" ;[\n]" +2022-11-14 09:05:22,284 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" +2022-11-14 09:05:22,284 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:checksum ;[\n]" +2022-11-14 09:05:22,284 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:isDistributionOf ;[\n]" +2022-11-14 09:05:22,284 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" +2022-11-14 09:05:22,285 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:preview ;[\n]" +2022-11-14 09:05:22,285 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:uncompressedByteSize 22414269 ;[\n]" +2022-11-14 09:05:22,285 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo ;[\n]" +2022-11-14 09:05:22,285 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "Geographic coordinates extracted from Wikipedia."@en ;[\n]" +2022-11-14 09:05:22,285 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" +2022-11-14 09:05:22,285 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" +2022-11-14 09:05:22,285 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" +2022-11-14 09:05:22,285 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" +2022-11-14 09:05:22,285 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" +2022-11-14 09:05:22,285 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "Geo Coordinates"@en ;[\n]" +2022-11-14 09:05:22,285 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:byteSize 1191980 ;[\n]" +2022-11-14 09:05:22,285 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:downloadURL ;[\n]" +2022-11-14 09:05:22,285 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:mediaType dataid-mt:MediaType_turtle_x-bzip2 .[\n]" +2022-11-14 09:05:22,285 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,285 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,285 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " " +2022-11-14 09:05:22,285 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:SingleFile ;[\n]" +2022-11-14 09:05:22,285 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "core-i18n/fr/french_population_wkd_uris_fr.tql.bz2" , "French Population Wikidata Uris"@en ;[\n]" +2022-11-14 09:05:22,285 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" +2022-11-14 09:05:22,285 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:checksum ;[\n]" +2022-11-14 09:05:22,285 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:isDistributionOf ;[\n]" +2022-11-14 09:05:22,285 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" +2022-11-14 09:05:22,285 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:preview ;[\n]" +2022-11-14 09:05:22,285 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:uncompressedByteSize 11395186 ;[\n]" +2022-11-14 09:05:22,285 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo ;[\n]" +2022-11-14 09:05:22,285 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "French dataset about population. Normalized dataset matching Wikidata resources (sorted)."@en ;[\n]" +2022-11-14 09:05:22,285 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" +2022-11-14 09:05:22,285 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" +2022-11-14 09:05:22,285 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" +2022-11-14 09:05:22,287 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" +2022-11-14 09:05:22,287 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" +2022-11-14 09:05:22,287 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "French Population Wikidata Uris"@en ;[\n]" +2022-11-14 09:05:22,287 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:byteSize 575234 ;[\n]" +2022-11-14 09:05:22,287 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:downloadURL ;[\n]" +2022-11-14 09:05:22,287 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:mediaType dataid-mt:MediaType_n-quads_x-bzip2 .[\n]" +2022-11-14 09:05:22,287 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,287 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,287 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:Dataset , dataid-ld:LinkedDataDataset ;[\n]" +2022-11-14 09:05:22,287 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "Images"@en ;[\n]" +2022-11-14 09:05:22,287 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" +2022-11-14 09:05:22,287 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" +2022-11-14 09:05:22,287 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:previousVersion ;[\n]" +2022-11-14 09:05:22,287 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedDatasetRelation[\n]" +2022-11-14 09:05:22,287 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " ;[\n]" +2022-11-14 09:05:22,287 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:relatedDataset ;[\n]" +2022-11-14 09:05:22,287 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo , ;[\n]" +2022-11-14 09:05:22,287 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "Main image and corresponding thumbnail from Wikipedia article" +2022-11-14 09:05:22,288 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "."@en ;[\n]" +2022-11-14 09:05:22,288 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" +2022-11-14 09:05:22,288 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:isPartOf ;[\n]" +2022-11-14 09:05:22,288 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" +2022-11-14 09:05:22,288 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:language ;[\n]" +2022-11-14 09:05:22,288 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" +2022-11-14 09:05:22,288 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" +2022-11-14 09:05:22,288 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" +2022-11-14 09:05:22,288 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "Images"@en ;[\n]" +2022-11-14 09:05:22,288 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " void:rootResource ;[\n]" +2022-11-14 09:05:22,288 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " void:triples 5375167 ;[\n]" +2022-11-14 09:05:22,288 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:distribution , ;[\n]" +2022-11-14 09:05:22,288 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:keyword "DBpedia"@en , "Images"@en ;[\n]" +2022-11-14 09:05:22,288 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:landingPage ;[\n]" +2022-11-14 09:05:22,288 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " sd:defaultGraph ;[\n]" +2022-11-14 09:05:22,288 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " foaf:page .[\n]" +2022-11-14 09:05:22,288 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,288 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,288 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid-ld:LinkedDataDataset , dataid:Dataset ;[\n]" +2022-11-14 09:05:22,288 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "Instance Types"@en ;[\n]" +2022-11-14 09:05:22,288 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" +2022-11-14 09:05:22,288 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" +2022-11-14 09:05:22,288 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:previousVersion ;[\n]" +2022-11-14 09:05:22,288 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedDatasetRelation[\n]" +2022-11-14 09:05:22,288 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " ;[\n]" +2022-11-14 09:05:22,288 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:relatedDataset ;[\n]" +2022-11-14 09:05:22,288 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo , ;[\n]" +2022-11-14 09:05:22,288 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "Contains triples of the form $object rdf:type $class from the mapping-based extraction."@en ;[\n]" +2022-11-14 09:05:22,288 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" +2022-11-14 09:05:22,288 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:isPartOf ;[\n]" +2022-11-14 09:05:22,288 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" +2022-11-14 09:05:22,288 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:language ;[\n]" +2022-11-14 09:05:22,288 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" +2022-11-14 09:05:22,288 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" +2022-11-14 09:05:22,288 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" +2022-11-14 09:05:22,288 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "" +2022-11-14 09:05:22,289 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "Instance Types"@en ;[\n]" +2022-11-14 09:05:22,289 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " void:rootResource ;[\n]" +2022-11-14 09:05:22,289 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " void:triples 1782360 ;[\n]" +2022-11-14 09:05:22,289 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:distribution , ;[\n]" +2022-11-14 09:05:22,289 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:keyword "DBpedia"@en , "Instance Types"@en ;[\n]" +2022-11-14 09:05:22,289 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:landingPage ;[\n]" +2022-11-14 09:05:22,289 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " sd:defaultGraph ;[\n]" +2022-11-14 09:05:22,289 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " foaf:page .[\n]" +2022-11-14 09:05:22,289 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,289 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,289 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:SingleFile ;[\n]" +2022-11-14 09:05:22,289 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "core-i18n/fr/interlanguage_links_chapters_fr.ttl.bz2" , "Interlanguage Links between DBpedia Chapters"@en ;[\n]" +2022-11-14 09:05:22,289 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" +2022-11-14 09:05:22,289 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:checksum ;[\n]" +2022-11-14 09:05:22,289 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:isDistributionOf ;[\n]" +2022-11-14 09:05:22,289 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion " +2022-11-14 09:05:22,290 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " ;[\n]" +2022-11-14 09:05:22,290 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:preview ;[\n]" +2022-11-14 09:05:22,290 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:uncompressedByteSize 1596426766 ;[\n]" +2022-11-14 09:05:22,290 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo ;[\n]" +2022-11-14 09:05:22,290 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "Chapter specific interlanguage links only contains the interlanguage links between those languages for which a DBpedia mapping chapter exists and provides dereferencable URIs. (a subset of interlanguage links)"@en ;[\n]" +2022-11-14 09:05:22,290 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" +2022-11-14 09:05:22,290 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" +2022-11-14 09:05:22,290 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" +2022-11-14 09:05:22,290 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" +2022-11-14 09:05:22,290 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" +2022-11-14 09:05:22,290 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "Interlanguage Links between DBpedia Chapters"@en ;[\n]" +2022-11-14 09:05:22,290 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:byteSize 91288622 ;[\n]" +2022-11-14 09:05:22,290 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:downloadURL ;[\n]" +2022-11-14 09:05:22,290 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:mediaType dataid-mt:MediaType_turtle_x-bzip2 .[\n]" +2022-11-14 09:05:22,290 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,290 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,290 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:SingleFile ;[\n]" +2022-11-14 09:05:22,290 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "Labels English Uris"@en , "core-i18n/fr/labels_en_uris_fr.ttl.bz2" ;[\n]" +2022-11-14 09:05:22,290 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" +2022-11-14 09:05:22,290 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:checksum ;[\n]" +2022-11-14 09:05:22,290 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:isDistributionOf ;[\n]" +2022-11-14 09:05:22,290 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" +2022-11-14 09:05:22,290 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:preview ;[\n]" +2022-11-14 09:05:22,290 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:uncompressedByteSize 138922582 ;[\n]" +2022-11-14 09:05:22,290 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo ;[\n]" +2022-11-14 09:05:22,290 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "Titles of all Wikipedia Articles in the corresponding language. In Wikidata, it contains all the languages available in the mappings wiki, labels_nmw contains the rest Normalized dataset matching English DBpedia resources."@en ;[\n]" +2022-11-14 09:05:22,290 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" +2022-11-14 09:05:22,292 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" +2022-11-14 09:05:22,292 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" +2022-11-14 09:05:22,292 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" +2022-11-14 09:05:22,292 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" +2022-11-14 09:05:22,292 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "Labels English Uris"@en ;[\n]" +2022-11-14 09:05:22,292 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:byteSize 16831634 ;[\n]" +2022-11-14 09:05:22,292 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:downloadURL ;[\n]" +2022-11-14 09:05:22,292 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:mediaType dataid-mt:MediaType_turtle_x-bzip2 .[\n]" +2022-11-14 09:05:22,292 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,292 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,292 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:SingleFile ;[\n]" +2022-11-14 09:05:22,292 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "Interlanguage Links between DBpedia Chapters"@en , "core-i18n/fr/interlanguage_links_chapters_fr.tql.bz2" ;[\n]" +2022-11-14 09:05:22,292 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" +2022-11-14 09:05:22,292 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:checksum ;[\n]" +2022-11-14 09:05:22,292 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:isDistributionOf ;[\n]" +2022-11-14 09:05:22,292 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion" +2022-11-14 09:05:22,292 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " ;[\n]" +2022-11-14 09:05:22,292 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:preview ;[\n]" +2022-11-14 09:05:22,292 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:uncompressedByteSize 2206444627 ;[\n]" +2022-11-14 09:05:22,292 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo ;[\n]" +2022-11-14 09:05:22,292 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "Chapter specific interlanguage links only contains the interlanguage links between those languages for which a DBpedia mapping chapter exists and provides dereferencable URIs. (a subset of interlanguage links)"@en ;[\n]" +2022-11-14 09:05:22,292 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" +2022-11-14 09:05:22,292 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" +2022-11-14 09:05:22,292 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" +2022-11-14 09:05:22,292 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" +2022-11-14 09:05:22,292 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" +2022-11-14 09:05:22,292 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "Interlanguage Links between DBpedia Chapters"@en ;[\n]" +2022-11-14 09:05:22,292 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:byteSize 121672332 ;[\n]" +2022-11-14 09:05:22,292 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:downloadURL ;[\n]" +2022-11-14 09:05:22,292 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:mediaType dataid-mt:MediaType_n-quads_x-bzip2 .[\n]" +2022-11-14 09:05:22,292 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,292 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,292 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:SingleFile ;[\n]" +2022-11-14 09:05:22,292 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "Specific Mappingbased Properties"@en , "core-i18n/fr/specific_mappingbased_properties_fr.ttl.bz2" ;[\n]" +2022-11-14 09:05:22,292 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" +2022-11-14 09:05:22,292 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:checksum ;[\n]" +2022-11-14 09:05:22,292 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:isDistributionOf ;[\n]" +2022-11-14 09:05:22,292 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" +2022-11-14 09:05:22,292 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:preview ;[\n]" +2022-11-14 09:05:22,292 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:uncompressedByteSize 9106104 ;[\n]" +2022-11-14 09:05:22,292 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo ;[\n]" +2022-11-14 09:05:22,292 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "Infobox data from the mapping-based extraction, using units of measurement more convenient for the resource type, e.g. square" +2022-11-14 09:05:22,294 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " kilometres instead of square metres for the area of a city."@en ;[\n]" +2022-11-14 09:05:22,294 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" +2022-11-14 09:05:22,294 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" +2022-11-14 09:05:22,294 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" +2022-11-14 09:05:22,294 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" +2022-11-14 09:05:22,294 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" +2022-11-14 09:05:22,294 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "Specific Mappingbased Properties"@en ;[\n]" +2022-11-14 09:05:22,294 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:byteSize 588550 ;[\n]" +2022-11-14 09:05:22,294 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:downloadURL ;[\n]" +2022-11-14 09:05:22,294 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:mediaType dataid-mt:MediaType_turtle_x-bzip2 .[\n]" +2022-11-14 09:05:22,294 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,294 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,294 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:SingleFile ;[\n]" +2022-11-14 09:05:22,294 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "core-i18n/fr/skos_categories_wkd_uris_fr.tql.bz2" , "SKOS Categories Wikidata Uris"@en ;[\n]" +2022-11-14 09:05:22,294 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" +2022-11-14 09:05:22,294 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:checksum ;[\n]" +2022-11-14 09:05:22,294 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:isDistributionOf ;[\n]" +2022-11-14 09:05:22,294 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" +2022-11-14 09:05:22,294 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:preview ;[\n]" +2022-11-14 09:05:22,294 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:uncompressedByteSize 261002625 ;[\n]" +2022-11-14 09:05:22,294 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo ;[\n]" +2022-11-14 09:05:22,294 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "Information which concept is a category and how categories are related using the SKOS Vocabulary. Normalized dataset matching Wikidata resources (sorted)."@en ;[\n]" +2022-11-14 09:05:22,294 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" +2022-11-14 09:05:22,294 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" +2022-11-14 09:05:22,294 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" +2022-11-14 09:05:22,294 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" +2022-11-14 09:05:22,294 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" +2022-11-14 09:05:22,294 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "SKOS Categories Wikidata Uris"@en ;[\n]" +2022-11-14 09:05:22,294 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:byteSize 12511043 ;[\n]" +2022-11-14 09:05:22,294 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:downloadURL ;[\n]" +2022-11-14 09:05:22,295 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:mediaType dataid-mt:MediaType_n-quads_x-bzip2 .[\n]" +2022-11-14 09:05:22,295 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,295 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,295 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:SingleFile ;[\n]" +2022-11-14 09:05:22,295 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "Images Wikidata Uris"@en , "core-i18n/fr/images_wkd_uris_fr.tql.bz2" ;[\n]" +2022-11-14 09:05:22,295 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" +2022-11-14 09:05:22,295 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:checksum ;[\n]" +2022-11-14 09:05:22,295 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:isDistributionOf ;[\n]" +2022-11-14 09:05:22,295 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" +2022-11-14 09:05:22,295 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:preview ;[\n]" +2022-11-14 09:05:22,295 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:uncompressedByteSize 1472388570 ;[\n]" +2022-11-14 09:05:22,295 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo ;[\n]" +2022-11-14 09:05:22,295 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "Main image and corresponding thumbnail from Wikipedia article. Normalized dataset matching Wikidata resources (sorted)."@en ;[\n]" +2022-11-14 09:05:22,295 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" +2022-11-14 09:05:22,295 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" +2022-11-14 09:05:22,295 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" +2022-11-14 09:05:22,295 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" +2022-11-14 09:05:22,295 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" +2022-11-14 09:05:22,295 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "Images Wikidata Uris"@en ;[\n]" +2022-11-14 09:05:22,295 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:byteSize 73862937 ;[\n]" +2022-11-14 09:05:22,295 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:downloadURL ;[\n]" +2022-11-14 09:05:22,295 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:mediaType dataid-mt:MediaType_n-quads_x-bzip2 .[\n]" +2022-11-14 09:05:22,295 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,295 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,295 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:SingleFile ;[\n]" +2022-11-14 09:05:22,295 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "core-i18n/fr/topical_concepts_wkd_uris_fr.tql.bz2" , "Topical Concepts Wikidata Uris"@en ;[\n]" +2022-11-14 09:05:22,295 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" +2022-11-14 09:05:22,295 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:checksum ;[\n]" +2022-11-14 09:05:22,295 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:isDistributionOf ;[\n]" +2022-11-14 09:05:22,295 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" +2022-11-14 09:05:22,295 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:preview ;[\n]" +2022-11-14 09:05:22,295 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:uncompressedByteSize 22487769 ;[\n]" +2022-11-14 09:05:22,295 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo ;[\n]" +2022-11-14 09:05:22,295 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "Resources that describe a category Normalized dataset matching Wikidata resources (sorted)."@en ;[\n]" +2022-11-14 09:05:22,295 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" +2022-11-14 09:05:22,295 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" +2022-11-14 09:05:22,295 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" +2022-11-14 09:05:22,295 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" +2022-11-14 09:05:22,295 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" +2022-11-14 09:05:22,295 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "Topical Concepts Wikidata Uris"@en ;[\n]" +2022-11-14 09:05:22,295 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:byteSize 1558665 ;[\n]" +2022-11-14 09:05:22,295 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:downloadURL ;[\n]" +2022-11-14 09:05:22,295 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:mediaType dataid-mt:MediaType_n-quads_x-bzip2 .[\n]" +2022-11-14 09:05:22,295 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,295 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,295 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a " +2022-11-14 09:05:22,297 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:SingleFile ;[\n]" +2022-11-14 09:05:22,297 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "core-i18n/fr/infobox_property_definitions_wkd_uris_fr.ttl.bz2" , "Infobox Property Definitions Wikidata Uris"@en ;[\n]" +2022-11-14 09:05:22,297 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" +2022-11-14 09:05:22,297 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:checksum ;[\n]" +2022-11-14 09:05:22,297 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:isDistributionOf ;[\n]" +2022-11-14 09:05:22,297 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" +2022-11-14 09:05:22,297 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:preview ;[\n]" +2022-11-14 09:05:22,297 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:uncompressedByteSize 5836873 ;[\n]" +2022-11-14 09:05:22,297 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo ;[\n]" +2022-11-14 09:05:22,297 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "All properties predicates used in infoboxes. Normalized dataset matching Wikidata resources (sorted)."@en ;[\n]" +2022-11-14 09:05:22,297 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" +2022-11-14 09:05:22,297 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd" +2022-11-14 09:05:22,297 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << ":date ;[\n]" +2022-11-14 09:05:22,297 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" +2022-11-14 09:05:22,297 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" +2022-11-14 09:05:22,297 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" +2022-11-14 09:05:22,297 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "Infobox Property Definitions Wikidata Uris"@en ;[\n]" +2022-11-14 09:05:22,297 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:byteSize 235431 ;[\n]" +2022-11-14 09:05:22,297 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:downloadURL ;[\n]" +2022-11-14 09:05:22,297 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:mediaType dataid-mt:MediaType_turtle_x-bzip2 .[\n]" +2022-11-14 09:05:22,297 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,297 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,297 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:SingleFile ;[\n]" +2022-11-14 09:05:22,297 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "core-i18n/fr/mappingbased_objects_uncleaned_fr.ttl.bz2" , "mappingbased objects uncleaned"@en ;[\n]" +2022-11-14 09:05:22,297 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" +2022-11-14 09:05:22,297 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:checksum ;[\n]" +2022-11-14 09:05:22,297 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:isDistributionOf ;[\n]" +2022-11-14 09:05:22,297 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" +2022-11-14 09:05:22,299 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:preview ;[\n]" +2022-11-14 09:05:22,299 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:uncompressedByteSize 739640069 ;[\n]" +2022-11-14 09:05:22,299 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo ;[\n]" +2022-11-14 09:05:22,299 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "DBpedia dataset mappingbased_objects_uncleaned, subset of "@en ;[\n]" +2022-11-14 09:05:22,299 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" +2022-11-14 09:05:22,299 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" +2022-11-14 09:05:22,299 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" +2022-11-14 09:05:22,299 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" +2022-11-14 09:05:22,299 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" +2022-11-14 09:05:22,299 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "mappingbased objects uncleaned"@en ;[\n]" +2022-11-14 09:05:22,299 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:byteSize 44212451 ;[\n]" +2022-11-14 09:05:22,299 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:downloadURL ;[\n]" +2022-11-14 09:05:22,299 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:mediaType dataid-mt:MediaType_turtle_x-bzip2 .[\n]" +2022-11-14 09:05:22,299 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,299 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,299 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:SingleFile ;[\n]" +2022-11-14 09:05:22,299 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "Rransitive Redirects"@en , "core-i18n/fr/transitive_redirects_fr.ttl.bz2" ;[\n]" +2022-11-14 09:05:22,299 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" +2022-11-14 09:05:22,299 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:checksum ;[\n]" +2022-11-14 09:05:22,299 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:isDistributionOf ;[\n]" +2022-11-14 09:05:22,299 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" +2022-11-14 09:05:22,299 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:preview ;[\n]" +2022-11-14 09:05:22,299 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:uncompressedByteSize 233585388 ;[\n]" +2022-11-14 09:05:22,299 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo ;[\n]" +2022-11-14 09:05:22,299 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "Dataset containing transitively resolved redirects between articles in Wikipedia."@en ;[\n]" +2022-11-14 09:05:22,299 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" +2022-11-14 09:05:22,299 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" +2022-11-14 09:05:22,299 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" +2022-11-14 09:05:22,299 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" +2022-11-14 09:05:22,299 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" +2022-11-14 09:05:22,300 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "Rransitive Redirects"@en ;[\n]" +2022-11-14 09:05:22,300 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:byteSize 20901591 ;[\n]" +2022-11-14 09:05:22,300 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:downloadURL ;[\n]" +2022-11-14 09:05:22,300 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:mediaType dataid-mt:MediaType_turtle_x-bzip2 .[\n]" +2022-11-14 09:05:22,300 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,300 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,300 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:SingleFile ;[\n]" +2022-11-14 09:05:22,300 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "mappingbased objects uncleaned"@en , "core-i18n/fr/mappingbased_objects_uncleaned_fr.tql.bz2" ;[\n]" +2022-11-14 09:05:22,300 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" +2022-11-14 09:05:22,300 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:checksum ;[\n]" +2022-11-14 09:05:22,300 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:isDistributionOf ;[\n]" +2022-11-14 09:05:22,300 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" +2022-11-14 09:05:22,300 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:preview ;[\n]" +2022-11-14 09:05:22,300 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " " +2022-11-14 09:05:22,301 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:uncompressedByteSize 1610957366 ;[\n]" +2022-11-14 09:05:22,301 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo ;[\n]" +2022-11-14 09:05:22,301 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "DBpedia dataset mappingbased_objects_uncleaned, subset of "@en ;[\n]" +2022-11-14 09:05:22,301 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" +2022-11-14 09:05:22,301 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" +2022-11-14 09:05:22,301 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" +2022-11-14 09:05:22,301 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" +2022-11-14 09:05:22,301 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" +2022-11-14 09:05:22,301 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "mappingbased objects uncleaned"@en ;[\n]" +2022-11-14 09:05:22,301 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:byteSize 85124435 ;[\n]" +2022-11-14 09:05:22,301 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:downloadURL ;[\n]" +2022-11-14 09:05:22,301 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:mediaType dataid-mt:MediaType_n-quads_x-bzip2 .[\n]" +2022-11-14 09:05:22,301 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,301 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,301 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:SingleFile ;[\n]" +2022-11-14 09:05:22,301 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "Revision Ids"@en , "core-i18n/fr/revision_ids_fr.ttl.bz2" ;[\n]" +2022-11-14 09:05:22,301 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" +2022-11-14 09:05:22,301 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:checksum ;[\n]" +2022-11-14 09:05:22,301 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:isDistributionOf ;[\n]" +2022-11-14 09:05:22,301 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" +2022-11-14 09:05:22,301 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:preview ;[\n]" +2022-11-14 09:05:22,301 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:uncompressedByteSize 626872699 ;[\n]" +2022-11-14 09:05:22,301 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo ;[\n]" +2022-11-14 09:05:22,301 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "Dataset linking a DBpedia resource to the revision ID of the Wikipedia article the data was extracted from."@en ;[\n]" +2022-11-14 09:05:22,301 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" +2022-11-14 09:05:22,301 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" +2022-11-14 09:05:22,301 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" +2022-11-14 09:05:22,301 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" +2022-11-14 09:05:22,301 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" +2022-11-14 09:05:22,301 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "Revision Ids"@en ;[\n]" +2022-11-14 09:05:22,301 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:byteSize 45335466 ;[\n]" +2022-11-14 09:05:22,301 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:downloadURL ;[\n]" +2022-11-14 09:05:22,301 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:mediaType dataid-mt:MediaType_turtle_x-bzip2 .[\n]" +2022-11-14 09:05:22,301 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,301 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,301 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:SingleFile ;[\n]" +2022-11-14 09:05:22,301 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "Category Labels."@en , "core-i18n/fr/category_labels_fr.ttl.bz2" ;[\n]" +2022-11-14 09:05:22,301 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" +2022-11-14 09:05:22,301 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:checksum ;[\n]" +2022-11-14 09:05:22,301 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:isDistributionOf ;[\n]" +2022-11-14 09:05:22,301 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" +2022-11-14 09:05:22,301 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:preview ;[\n]" +2022-11-14 09:05:22,301 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:uncompressedByteSize 53979198 ;[\n]" +2022-11-14 09:05:22,301 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo ;[\n]" +2022-11-14 09:05:22,301 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "Labels for Categories."@en ;[\n]" +2022-11-14 09:05:22,301 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" +2022-11-14 09:05:22,301 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" +2022-11-14 09:05:22,301 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" +2022-11-14 09:05:22,302 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" +2022-11-14 09:05:22,302 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" +2022-11-14 09:05:22,302 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "Category Labels."@en ;[\n]" +2022-11-14 09:05:22,302 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:byteSize 3973817 ;[\n]" +2022-11-14 09:05:22,302 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:downloadURL ;[\n]" +2022-11-14 09:05:22,302 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:mediaType dataid-mt:MediaType_turtle_x-bzip2 .[\n]" +2022-11-14 09:05:22,302 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,302 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,302 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:SingleFile ;[\n]" +2022-11-14 09:05:22,302 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "core-i18n/fr/article_templates_fr.ttl.bz2" , "Article Templates"@en ;[\n]" +2022-11-14 09:05:22,302 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" +2022-11-14 09:05:22,302 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:checksum ;[\n]" +2022-11-14 09:05:22,302 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:isDistributionOf ;[\n]" +2022-11-14 09:05:22,302 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" +2022-11-14 09:05:22,302 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:preview ;[\n]" +2022-11-14 09:05:22,302 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:uncompress" +2022-11-14 09:05:22,304 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "edByteSize 2472731647 ;[\n]" +2022-11-14 09:05:22,304 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo ;[\n]" +2022-11-14 09:05:22,304 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "Templates used in an article (top-level)."@en ;[\n]" +2022-11-14 09:05:22,304 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" +2022-11-14 09:05:22,304 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" +2022-11-14 09:05:22,304 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" +2022-11-14 09:05:22,304 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" +2022-11-14 09:05:22,304 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" +2022-11-14 09:05:22,304 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "Article Templates"@en ;[\n]" +2022-11-14 09:05:22,304 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:byteSize 80883207 ;[\n]" +2022-11-14 09:05:22,304 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:downloadURL ;[\n]" +2022-11-14 09:05:22,304 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:mediaType dataid-mt:MediaType_turtle_x-bzip2 .[\n]" +2022-11-14 09:05:22,304 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,304 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,304 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:SingleFile ;[\n]" +2022-11-14 09:05:22,304 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "Instance Types Wikidata Uris"@en , "core-i18n/fr/instance_types_wkd_uris_fr.ttl.bz2" ;[\n]" +2022-11-14 09:05:22,304 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" +2022-11-14 09:05:22,304 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:checksum ;[\n]" +2022-11-14 09:05:22,304 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:isDistributionOf ;[\n]" +2022-11-14 09:05:22,304 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" +2022-11-14 09:05:22,304 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:preview ;[\n]" +2022-11-14 09:05:22,304 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:uncompressedByteSize 118435740 ;[\n]" +2022-11-14 09:05:22,304 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo ;[\n]" +2022-11-14 09:05:22,304 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "Contains triples of the form $object rdf:type $class from the mapping-based extraction. Normalized dataset matching Wikidata resources (sorted)."@en ;[\n]" +2022-11-14 09:05:22,304 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" +2022-11-14 09:05:22,304 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" +2022-11-14 09:05:22,304 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" +2022-11-14 09:05:22,304 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" +2022-11-14 09:05:22,304 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" +2022-11-14 09:05:22,304 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "Instance Types Wikidata Uris"@en ;[\n]" +2022-11-14 09:05:22,304 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:byteSize 2936138 ;[\n]" +2022-11-14 09:05:22,304 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:downloadURL " +2022-11-14 09:05:22,305 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " ;[\n]" +2022-11-14 09:05:22,305 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:mediaType dataid-mt:MediaType_turtle_x-bzip2 .[\n]" +2022-11-14 09:05:22,305 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,305 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,305 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:SingleFile ;[\n]" +2022-11-14 09:05:22,305 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "core-i18n/fr/redirects_fr.ttl.bz2" , "Redirects"@en ;[\n]" +2022-11-14 09:05:22,305 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" +2022-11-14 09:05:22,305 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:checksum ;[\n]" +2022-11-14 09:05:22,305 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:isDistributionOf ;[\n]" +2022-11-14 09:05:22,305 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" +2022-11-14 09:05:22,305 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:preview ;[\n]" +2022-11-14 09:05:22,305 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:uncompressedByteSize 234341588 ;[\n]" +2022-11-14 09:05:22,305 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo ;[\n]" +2022-11-14 09:05:22,305 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "Dataset containing redirects between articles in Wikipedia."@en ;[\n]" +2022-11-14 09:05:22,305 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" +2022-11-14 09:05:22,305 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" +2022-11-14 09:05:22,305 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" +2022-11-14 09:05:22,305 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" +2022-11-14 09:05:22,305 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" +2022-11-14 09:05:22,305 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "Redirects"@en ;[\n]" +2022-11-14 09:05:22,305 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:byteSize 20978399 ;[\n]" +2022-11-14 09:05:22,305 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:downloadURL ;[\n]" +2022-11-14 09:05:22,305 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:mediaType dataid-mt:MediaType_turtle_x-bzip2 .[\n]" +2022-11-14 09:05:22,305 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,305 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,305 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:SingleFile ;[\n]" +2022-11-14 09:05:22,305 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "core-i18n/fr/article_templates_fr.tql.bz2" , "Article Templates"@en ;[\n]" +2022-11-14 09:05:22,305 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" +2022-11-14 09:05:22,305 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:checksum ;[\n]" +2022-11-14 09:05:22,305 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:isDistributionOf ;[\n]" +2022-11-14 09:05:22,305 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" +2022-11-14 09:05:22,305 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:preview ;[\n]" +2022-11-14 09:05:22,305 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:uncompressedByteSize 4181448865 ;[\n]" +2022-11-14 09:05:22,305 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo ;[\n]" +2022-11-14 09:05:22,305 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "Templates used in an article (top-level)."@en ;[\n]" +2022-11-14 09:05:22,305 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" +2022-11-14 09:05:22,305 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" +2022-11-14 09:05:22,305 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" +2022-11-14 09:05:22,305 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" +2022-11-14 09:05:22,305 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" +2022-11-14 09:05:22,305 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "Article Templates"@en ;[\n]" +2022-11-14 09:05:22,305 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:byteSize 174147379 ;[\n]" +2022-11-14 09:05:22,305 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:downloadURL ;[\n]" +2022-11-14 09:05:22,305 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:mediaType dataid-mt:MediaType_n-quads_x-bzip2 .[\n]" +2022-11-14 09:05:22,305 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,305 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,305 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:SingleFile ;[\n]" +2022-11-14 09:05:22,305 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "core-i18n/fr/instance_types_wkd_uris_fr.tql.bz2" , "Instance Types Wikidata Uris"@en ;[\n]" +2022-11-14 09:05:22,305 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" +2022-11-14 09:05:22,305 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid" +2022-11-14 09:05:22,307 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << ":checksum ;[\n]" +2022-11-14 09:05:22,307 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:isDistributionOf ;[\n]" +2022-11-14 09:05:22,307 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" +2022-11-14 09:05:22,307 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:preview ;[\n]" +2022-11-14 09:05:22,307 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:uncompressedByteSize 223744576 ;[\n]" +2022-11-14 09:05:22,307 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo ;[\n]" +2022-11-14 09:05:22,307 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "Contains triples of the form $object rdf:type $class from the mapping-based extraction. Normalized dataset matching Wikidata resources (sorted)."@en ;[\n]" +2022-11-14 09:05:22,307 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" +2022-11-14 09:05:22,307 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" +2022-11-14 09:05:22,307 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" +2022-11-14 09:05:22,307 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" +2022-11-14 09:05:22,307 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" +2022-11-14 09:05:22,307 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "Instance Types Wikidata Uris"@en ;[\n]" +2022-11-14 09:05:22,307 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:byteSize 15501438 ;[\n]" +2022-11-14 09:05:22,307 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:downloadURL ;[\n]" +2022-11-14 09:05:22,307 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:mediaType dataid-mt:MediaType_n-quads_x-bzip2 .[\n]" +2022-11-14 09:05:22,307 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,307 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,307 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:SingleFile ;[\n]" +2022-11-14 09:05:22,307 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "core-i18n/fr/geo_coordinates_mappingbased_en_uris_fr.ttl.bz2" , "Geo Coordinates Mappingbased English Uris"@en ;[\n]" +2022-11-14 09:05:22,307 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" +2022-11-14 09:05:22,307 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:checksum ;[\n]" +2022-11-14 09:05:22,307 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:isDistributionOf ;[\n]" +2022-11-14 09:05:22,307 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" +2022-11-14 09:05:22,307 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:preview ;[\n]" +2022-11-14 09:05:22,307 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:uncompressedByteSize 92536613 ;[\n]" +2022-11-14 09:05:22,307 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " " +2022-11-14 09:05:22,308 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo ;[\n]" +2022-11-14 09:05:22,308 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "Geographic coordinates extracted from Wikipedia originating from mapped infoboxes in the mappings wiki Normalized dataset matching English DBpedia resources."@en ;[\n]" +2022-11-14 09:05:22,308 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" +2022-11-14 09:05:22,308 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" +2022-11-14 09:05:22,308 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" +2022-11-14 09:05:22,308 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" +2022-11-14 09:05:22,308 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" +2022-11-14 09:05:22,308 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "Geo Coordinates Mappingbased English Uris"@en ;[\n]" +2022-11-14 09:05:22,308 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:byteSize 4503701 ;[\n]" +2022-11-14 09:05:22,308 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:downloadURL ;[\n]" +2022-11-14 09:05:22,308 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:mediaType dataid-mt:MediaType_turtle_x-bzip2 .[\n]" +2022-11-14 09:05:22,308 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,308 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,308 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:SingleFile ;[\n]" +2022-11-14 09:05:22,308 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "Infobox Properties Wikidata Uris"@en , "core-i18n/fr/infobox_properties_wkd_uris_fr.ttl.bz2" ;[\n]" +2022-11-14 09:05:22,308 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgen" +2022-11-14 09:05:22,309 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "t ;[\n]" +2022-11-14 09:05:22,309 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:checksum ;[\n]" +2022-11-14 09:05:22,309 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:isDistributionOf ;[\n]" +2022-11-14 09:05:22,309 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" +2022-11-14 09:05:22,309 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:preview ;[\n]" +2022-11-14 09:05:22,309 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:uncompressedByteSize 2127780266 ;[\n]" +2022-11-14 09:05:22,309 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo ;[\n]" +2022-11-14 09:05:22,309 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "Information that has been extracted from Wikipedia infoboxes. Note that this data is in the less clean 'property' namespace. The Mapping-based Properties in the 'ontology' namespace, should always be preferred over this data. Normalized dataset matching Wikidata resources (sorted)."@en ;[\n]" +2022-11-14 09:05:22,309 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" +2022-11-14 09:05:22,309 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" +2022-11-14 09:05:22,309 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" +2022-11-14 09:05:22,309 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" +2022-11-14 09:05:22,309 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" +2022-11-14 09:05:22,309 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "Infobox Properties Wikidata Uris"@en ;[\n]" +2022-11-14 09:05:22,309 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:byteSize 144428084 ;[\n]" +2022-11-14 09:05:22,309 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:downloadURL ;[\n]" +2022-11-14 09:05:22,309 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:mediaType dataid-mt:MediaType_turtle_x-bzip2 .[\n]" +2022-11-14 09:05:22,309 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,309 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,309 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:SingleFile ;[\n]" +2022-11-14 09:05:22,309 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "core-i18n/fr/article_categories_fr.ttl.bz2" , "Article Categories"@en ;[\n]" +2022-11-14 09:05:22,309 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" +2022-11-14 09:05:22,309 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:checksum ;[\n]" +2022-11-14 09:05:22,309 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:isDistributionOf ;[\n]" +2022-11-14 09:05:22,309 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" +2022-11-14 09:05:22,309 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:preview ;[\n]" +2022-11-14 09:05:22,310 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:uncompressedByteSize 1059876180 ;[\n]" +2022-11-14 09:05:22,310 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo ;[\n]" +2022-11-14 09:05:22,310 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "Links from concepts to categories using the SKOS vocabulary."@en ;[\n]" +2022-11-14 09:05:22,310 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" +2022-11-14 09:05:22,310 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" +2022-11-14 09:05:22,310 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" +2022-11-14 09:05:22,310 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" +2022-11-14 09:05:22,310 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" +2022-11-14 09:05:22,310 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "Article Categories"@en ;[\n]" +2022-11-14 09:05:22,310 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:byteSize 64574734 ;[\n]" +2022-11-14 09:05:22,310 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:downloadURL ;[\n]" +2022-11-14 09:05:22,310 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:mediaType dataid-mt:MediaType_turtle_x-bzip2 .[\n]" +2022-11-14 09:05:22,310 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,310 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,310 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid-ld:LinkedDataDataset , dataid:Dataset ;[\n]" +2022-11-14 09:05:22,310 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "Disambiguations English Uris"@en ;[\n]" +2022-11-14 09:05:22,310 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" +2022-11-14 09:05:22,310 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" +2022-11-14 09:05:22,310 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:previousVersion ;[\n]" +2022-11-14 09:05:22,310 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedDatasetRelation[\n]" +2022-11-14 09:05:22,310 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " ;[\n]" +2022-11-14 09:05:22,310 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:relatedDataset ;[\n]" +2022-11-14 09:05:22,310 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo , ;[\n]" +2022-11-14 09:05:22,310 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "Links extracted from Wikipedia disambiguation pages. Since Wikipedia has no syntax to distinguish disambiguation links from ordinary links, DBpedia has to use heuristics. Normalized dataset matching English DBpedia resources."@en ;[\n]" +2022-11-14 09:05:22,310 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" +2022-11-14 09:05:22,310 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:isPartOf ;[\n]" +2022-11-14 09:05:22,310 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" +2022-11-14 09:05:22,310 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:language ;[\n]" +2022-11-14 09:05:22,310 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" +2022-11-14 09:05:22,310 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" +2022-11-14 09:05:22,310 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" +2022-11-14 09:05:22,310 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "Disambiguations English Uris"@en ;[\n]" +2022-11-14 09:05:22,310 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " void:root" +2022-11-14 09:05:22,312 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "Resource ;[\n]" +2022-11-14 09:05:22,312 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " void:triples 241509 ;[\n]" +2022-11-14 09:05:22,312 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:distribution , ;[\n]" +2022-11-14 09:05:22,312 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:keyword "Disambiguations English Uris"@en , "DBpedia"@en ;[\n]" +2022-11-14 09:05:22,312 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:landingPage ;[\n]" +2022-11-14 09:05:22,312 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " sd:defaultGraph ;[\n]" +2022-11-14 09:05:22,312 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " foaf:page .[\n]" +2022-11-14 09:05:22,312 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,312 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,312 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:SingleFile ;[\n]" +2022-11-14 09:05:22,312 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "Infobox Properties Wikidata Uris"@en , "core-i18n/fr/infobox_properties_wkd_uris_fr.tql.bz2" ;[\n]" +2022-11-14 09:05:22,312 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" +2022-11-14 09:05:22,312 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:checksum ;[\n]" +2022-11-14 09:05:22,312 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:isDistributionOf ;[\n]" +2022-11-14 09:05:22,312 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" +2022-11-14 09:05:22,312 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:preview ;[\n]" +2022-11-14 09:05:22,312 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:uncompressedByteSize 4763999384 ;[\n]" +2022-11-14 09:05:22,312 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo ;[\n]" +2022-11-14 09:05:22,312 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "Information that has been extracted from Wikipedia infoboxes. Note that this data is in the less clean 'property' namespace. The Mapping-based Properties in the 'ontology' namespace, should always be preferred over this data. Normalized dataset matching Wikidata resources (sorted)."@en ;[\n]" +2022-11-14 09:05:22,312 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" +2022-11-14 09:05:22,312 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" +2022-11-14 09:05:22,312 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" +2022-11-14 09:05:22,312 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" +2022-11-14 09:05:22,312 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" +2022-11-14 09:05:22,312 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "Infobox Properties Wikidata Uris"@en ;[\n]" +2022-11-14 09:05:22,312 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:byteSize 266878216 ;[\n]" +2022-11-14 09:05:22,312 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:downloadURL ;[\n]" +2022-11-14 09:05:22,313 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:mediaType dataid-mt:MediaType_n-quads_x-bzip2 .[\n]" +2022-11-14 09:05:22,313 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,313 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,313 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:SingleFile ;[\n]" +2022-11-14 09:05:22,313 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "External Links"@en , "core-i18n/fr/external_links_fr.ttl.bz2" ;[\n]" +2022-11-14 09:05:22,313 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" +2022-11-14 09:05:22,313 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:checksum ;[\n]" +2022-11-14 09:05:22,313 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:isDistributionOf ;[\n]" +2022-11-14 09:05:22,313 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" +2022-11-14 09:05:22,313 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:preview ;[\n]" +2022-11-14 09:05:22,313 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:uncompressedByteSize 304141894 ;[\n]" +2022-11-14 09:05:22,313 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo ;[\n]" +2022-11-14 09:05:22,313 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "Links to external web pages about a concept."@en ;[\n]" +2022-11-14 09:05:22,313 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" +2022-11-14 09:05:22,313 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" +2022-11-14 09:05:22,313 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc" +2022-11-14 09:05:22,314 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << ":license ;[\n]" +2022-11-14 09:05:22,314 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" +2022-11-14 09:05:22,314 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" +2022-11-14 09:05:22,314 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "External Links"@en ;[\n]" +2022-11-14 09:05:22,314 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:byteSize 40070508 ;[\n]" +2022-11-14 09:05:22,314 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:downloadURL ;[\n]" +2022-11-14 09:05:22,314 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:mediaType dataid-mt:MediaType_turtle_x-bzip2 .[\n]" +2022-11-14 09:05:22,314 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,314 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,314 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:SingleFile ;[\n]" +2022-11-14 09:05:22,314 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "core-i18n/fr/revision_uris_fr.ttl.bz2" , "Revision Uris"@en ;[\n]" +2022-11-14 09:05:22,314 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" +2022-11-14 09:05:22,314 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:checksum ;[\n]" +2022-11-14 09:05:22,314 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:isDistributionOf ;[\n]" +2022-11-14 09:05:22,314 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" +2022-11-14 09:05:22,314 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:preview ;[\n]" +2022-11-14 09:05:22,314 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:uncompressedByteSize 661376632 ;[\n]" +2022-11-14 09:05:22,314 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo ;[\n]" +2022-11-14 09:05:22,314 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "Dataset linking DBpedia resource to the specific Wikipedia article revision used in this DBpedia release."@en ;[\n]" +2022-11-14 09:05:22,314 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" +2022-11-14 09:05:22,314 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" +2022-11-14 09:05:22,314 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" +2022-11-14 09:05:22,314 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" +2022-11-14 09:05:22,314 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" +2022-11-14 09:05:22,314 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "Revision Uris"@en ;[\n]" +2022-11-14 09:05:22,314 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:byteSize 60349426 ;[\n]" +2022-11-14 09:05:22,314 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:downloadURL ;[\n]" +2022-11-14 09:05:22,314 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:mediaType dataid-mt:MediaType_turtle_x-bzip2 .[\n]" +2022-11-14 09:05:22,314 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,314 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,314 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:SingleFile ;[\n]" +2022-11-14 09:05:22,314 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "External Links"@en , "core-i18n/fr/external_links_fr.tql.bz2" ;[\n]" +2022-11-14 09:05:22,314 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" +2022-11-14 09:05:22,314 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:checksum ;[\n]" +2022-11-14 09:05:22,315 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:isDistributionOf ;[\n]" +2022-11-14 09:05:22,315 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" +2022-11-14 09:05:22,315 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:preview ;[\n]" +2022-11-14 09:05:22,315 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:uncompressedByteSize 525986413 ;[\n]" +2022-11-14 09:05:22,315 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo ;[\n]" +2022-11-14 09:05:22,315 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "Links to external web pages about a concept."@en ;[\n]" +2022-11-14 09:05:22,315 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" +2022-11-14 09:05:22,315 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" +2022-11-14 09:05:22,315 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" +2022-11-14 09:05:22,315 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" +2022-11-14 09:05:22,315 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" +2022-11-14 09:05:22,315 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "External Links"@en ;[\n]" +2022-11-14 09:05:22,315 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:byteSize 57350264 ;[\n]" +2022-11-14 09:05:22,315 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:downloadURL ;[\n]" +2022-11-14 09:05:22,315 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:mediaType dataid-mt:Medi" +2022-11-14 09:05:22,315 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "aType_n-quads_x-bzip2 .[\n]" +2022-11-14 09:05:22,315 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,315 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,315 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:SingleFile ;[\n]" +2022-11-14 09:05:22,315 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "Long Abstracts"@en , "core-i18n/fr/long_abstracts_fr.ttl.bz2" ;[\n]" +2022-11-14 09:05:22,315 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" +2022-11-14 09:05:22,315 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:checksum ;[\n]" +2022-11-14 09:05:22,315 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:isDistributionOf ;[\n]" +2022-11-14 09:05:22,315 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" +2022-11-14 09:05:22,315 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:preview ;[\n]" +2022-11-14 09:05:22,315 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:uncompressedByteSize 836364349 ;[\n]" +2022-11-14 09:05:22,315 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo ;[\n]" +2022-11-14 09:05:22,315 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "Long abstracts (full abstracts) of Wikipedia articles, usually the first section."@en ;[\n]" +2022-11-14 09:05:22,315 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" +2022-11-14 09:05:22,315 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" +2022-11-14 09:05:22,315 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" +2022-11-14 09:05:22,315 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" +2022-11-14 09:05:22,315 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" +2022-11-14 09:05:22,315 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "Long Abstracts"@en ;[\n]" +2022-11-14 09:05:22,315 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:byteSize 196402338 ;[\n]" +2022-11-14 09:05:22,315 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:downloadURL ;[\n]" +2022-11-14 09:05:22,315 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:mediaType dataid-mt:MediaType_turtle_x-bzip2 .[\n]" +2022-11-14 09:05:22,315 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,315 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,315 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid-ld:LinkedDataDataset , dataid:Dataset ;[\n]" +2022-11-14 09:05:22,315 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "Instance Types Transitive English Uris"@en ;[\n]" +2022-11-14 09:05:22,315 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" +2022-11-14 09:05:22,315 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" +2022-11-14 09:05:22,315 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:previousVersion ;[\n]" +2022-11-14 09:05:22,315 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedDatasetRelation[\n]" +2022-11-14 09:05:22,315 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " ;[\n]" +2022-11-14 09:05:22,315 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:relatedDataset ;[\n]" +2022-11-14 09:05:22,315 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo , ;[\n]" +2022-11-14 09:05:22,317 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "Contains transitive rdf:type $class based on the DBpedia ontology. Normalized dataset matching English DBpedia resources."@en ;[\n]" +2022-11-14 09:05:22,317 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" +2022-11-14 09:05:22,317 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:isPartOf ;[\n]" +2022-11-14 09:05:22,317 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" +2022-11-14 09:05:22,317 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:language ;[\n]" +2022-11-14 09:05:22,317 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" +2022-11-14 09:05:22,317 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" +2022-11-14 09:05:22,317 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" +2022-11-14 09:05:22,317 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "Instance Types Transitive English Uris"@en ;[\n]" +2022-11-14 09:05:22,317 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " void:rootResource ;[\n]" +2022-11-14 09:05:22,317 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " void:triples 4922008 ;[\n]" +2022-11-14 09:05:22,317 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:distribution , ;[\n]" +2022-11-14 09:05:22,317 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:keyword "Instance Types Transitive English Uris"@en , "DBpedia"@en ;[\n]" +2022-11-14 09:05:22,317 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dca" +2022-11-14 09:05:22,318 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "t:landingPage ;[\n]" +2022-11-14 09:05:22,318 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " sd:defaultGraph ;[\n]" +2022-11-14 09:05:22,318 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " foaf:page .[\n]" +2022-11-14 09:05:22,318 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,318 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,318 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:SingleFile ;[\n]" +2022-11-14 09:05:22,318 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "core-i18n/fr/category_labels_en_uris_fr.tql.bz2" , "Category Labels. English Uris"@en ;[\n]" +2022-11-14 09:05:22,318 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" +2022-11-14 09:05:22,318 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:checksum ;[\n]" +2022-11-14 09:05:22,318 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:isDistributionOf ;[\n]" +2022-11-14 09:05:22,318 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" +2022-11-14 09:05:22,318 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:preview ;[\n]" +2022-11-14 09:05:22,318 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:uncompressedByteSize 37972680 ;[\n]" +2022-11-14 09:05:22,318 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo ;[\n]" +2022-11-14 09:05:22,318 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "Labels for Categories. Normalized dataset matching English DBpedia resources."@en ;[\n]" +2022-11-14 09:05:22,318 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" +2022-11-14 09:05:22,318 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" +2022-11-14 09:05:22,318 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" +2022-11-14 09:05:22,318 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" +2022-11-14 09:05:22,318 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" +2022-11-14 09:05:22,318 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "Category Labels. English Uris"@en ;[\n]" +2022-11-14 09:05:22,318 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:byteSize 3351836 ;[\n]" +2022-11-14 09:05:22,318 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:downloadURL ;[\n]" +2022-11-14 09:05:22,318 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:mediaType dataid-mt:MediaType_n-quads_x-bzip2 .[\n]" +2022-11-14 09:05:22,318 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,318 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,318 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:Dataset , dataid-ld:LinkedDataDataset ;[\n]" +2022-11-14 09:05:22,318 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "Specific Mappingbased Properties Wikidata Uris"@en ;[\n]" +2022-11-14 09:05:22,318 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" +2022-11-14 09:05:22,318 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" +2022-11-14 09:05:22,318 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:previousVersion ;[\n]" +2022-11-14 09:05:22,318 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedDatasetRelation" +2022-11-14 09:05:22,319 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,319 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " ;[\n]" +2022-11-14 09:05:22,319 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:relatedDataset ;[\n]" +2022-11-14 09:05:22,319 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo , ;[\n]" +2022-11-14 09:05:22,319 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "Infobox data from the mapping-based extraction, using units of measurement more convenient for the resource type, e.g. square kilometres instead of square metres for the area of a city. Normalized dataset matching Wikidata resources (sorted)."@en ;[\n]" +2022-11-14 09:05:22,319 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" +2022-11-14 09:05:22,319 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:isPartOf ;[\n]" +2022-11-14 09:05:22,319 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" +2022-11-14 09:05:22,319 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:language ;[\n]" +2022-11-14 09:05:22,319 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" +2022-11-14 09:05:22,319 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" +2022-11-14 09:05:22,319 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" +2022-11-14 09:05:22,319 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "Specific Mappingbased Properties Wikidata Uris"@en ;[\n]" +2022-11-14 09:05:22,319 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " void:rootResource ;[\n]" +2022-11-14 09:05:22,319 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " " +2022-11-14 09:05:22,320 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " void:triples 59519 ;[\n]" +2022-11-14 09:05:22,320 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:distribution , ;[\n]" +2022-11-14 09:05:22,320 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:keyword "Specific Mappingbased Properties Wikidata Uris"@en , "DBpedia"@en ;[\n]" +2022-11-14 09:05:22,320 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:landingPage ;[\n]" +2022-11-14 09:05:22,320 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " sd:defaultGraph ;[\n]" +2022-11-14 09:05:22,320 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " foaf:page .[\n]" +2022-11-14 09:05:22,320 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,320 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,320 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:SingleFile ;[\n]" +2022-11-14 09:05:22,320 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "Article Categories English Uris"@en , "core-i18n/fr/article_categories_en_uris_fr.tql.bz2" ;[\n]" +2022-11-14 09:05:22,320 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" +2022-11-14 09:05:22,320 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:checksum ;[\n]" +2022-11-14 09:05:22,320 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:isDistributionOf ;[\n]" +2022-11-14 09:05:22,320 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" +2022-11-14 09:05:22,320 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:preview ;[\n]" +2022-11-14 09:05:22,320 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:uncompressedByteSize 738620778 ;[\n]" +2022-11-14 09:05:22,320 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo ;[\n]" +2022-11-14 09:05:22,320 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "Links from concepts to categories using the SKOS vocabulary. Normalized dataset matching English DBpedia resources."@en ;[\n]" +2022-11-14 09:05:22,320 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" +2022-11-14 09:05:22,320 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" +2022-11-14 09:05:22,320 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" +2022-11-14 09:05:22,320 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" +2022-11-14 09:05:22,320 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" +2022-11-14 09:05:22,320 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "Article Categories English Uris"@en ;[\n]" +2022-11-14 09:05:22,320 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:byteSize 53258721 ;[\n]" +2022-11-14 09:05:22,320 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:downloadURL ;[\n]" +2022-11-14 09:05:22,320 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:mediaType dataid-mt:MediaType_n-quads_x-bzip2 .[\n]" +2022-11-14 09:05:22,320 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,320 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,321 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:SingleFile ;[\n]" +2022-11-14 09:05:22,321 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "Mappingbased Literals"@en , "core-i18n/fr/mappingbased_literals_fr.ttl.bz2" ;[\n]" +2022-11-14 09:05:22,321 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" +2022-11-14 09:05:22,321 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:checksum ;[\n]" +2022-11-14 09:05:22,321 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:isDistributionOf ;[\n]" +2022-11-14 09:05:22,321 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" +2022-11-14 09:05:22,321 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:preview ;[\n]" +2022-11-14 09:05:22,321 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:uncompressedByteSize 682267247 ;[\n]" +2022-11-14 09:05:22,321 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo ;[\n]" +2022-11-14 09:05:22,321 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "High-quality data extracted from Infoboxes using the mapping-based extraction (Literal properties only). The predicates in this dataset are in the ontology namespace. Note that this data is of much higher quality than the Raw Infobox Properties in the 'property' namespace."@en ;[\n]" +2022-11-14 09:05:22,321 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" +2022-11-14 09:05:22,321 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" +2022-11-14 09:05:22,321 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" +2022-11-14 09:05:22,321 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" +2022-11-14 09:05:22,321 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" +2022-11-14 09:05:22,321 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "Mappingbased Literals"@en ;[\n]" +2022-11-14 09:05:22,321 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:byteSize 47464876 ;[\n]" +2022-11-14 09:05:22,321 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:downloadURL ;[\n]" +2022-11-14 09:05:22,321 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:mediaType dataid-mt:MediaType_turtle_x-bzip2 .[\n]" +2022-11-14 09:05:22,321 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,321 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,321 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:SingleFile ;[\n]" +2022-11-14 09:05:22,321 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "core-i18n/fr/geo_coordinates_mappingbased_wkd_uris_fr.ttl.bz2" , "Geo Coordinates Mappingbased Wikidata Uris"@en ;[\n]" +2022-11-14 09:05:22,321 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" +2022-11-14 09:05:22,321 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:checksum ;[\n]" +2022-11-14 09:05:22,321 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:isDistributionOf ;[\n]" +2022-11-14 09:05:22,322 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" +2022-11-14 09:05:22,322 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:preview ;[\n]" +2022-11-14 09:05:22,322 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:uncompressedByteSize 116096706 ;[\n]" +2022-11-14 09:05:22,322 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo ;[\n]" +2022-11-14 09:05:22,322 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "Geographic coordinates extracted from Wikipedia originating from mapped infoboxes in the mappings wiki Normalized dataset matching Wikidata resources (sorted)."@en ;[\n]" +2022-11-14 09:05:22,322 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" +2022-11-14 09:05:22,322 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" +2022-11-14 09:05:22,322 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" +2022-11-14 09:05:22,322 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" +2022-11-14 09:05:22,322 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" +2022-11-14 09:05:22,322 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "Geo Coordinates Mappingbased Wikidata Uris"@en ;[\n]" +2022-11-14 09:05:22,322 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:byteSize 4658809 ;[\n]" +2022-11-14 09:05:22,322 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:downloadURL ;[\n]" +2022-11-14 09:05:22,323 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:mediaType dataid-mt:MediaType_turtle_x-bzip2 .[\n]" +2022-11-14 09:05:22,323 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,323 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,323 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:SingleFile ;[\n]" +2022-11-14 09:05:22,323 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "NIF Text Links"@en , "core-i18n/fr/nif_text_links_fr.tql.bz2" ;[\n]" +2022-11-14 09:05:22,323 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" +2022-11-14 09:05:22,323 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:checksum ;[\n]" +2022-11-14 09:05:22,323 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:isDistributionOf ;[\n]" +2022-11-14 09:05:22,323 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" +2022-11-14 09:05:22,323 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:preview ;[\n]" +2022-11-14 09:05:22,323 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:uncompressedByteSize 118158444229 ;[\n]" +2022-11-14 09:05:22,323 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo ;[\n]" +2022-11-14 09:05:22,323 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "This dataset contains all text links of a Wikipedia page, detailed in the NIF format."@en ;[\n]" +2022-11-14 09:05:22,323 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" +2022-11-14 09:05:22,323 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2" +2022-11-14 09:05:22,323 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "017-07-01"^^xsd:date ;[\n]" +2022-11-14 09:05:22,323 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" +2022-11-14 09:05:22,323 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" +2022-11-14 09:05:22,323 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" +2022-11-14 09:05:22,323 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "NIF Text Links"@en ;[\n]" +2022-11-14 09:05:22,323 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:byteSize 2608847500 ;[\n]" +2022-11-14 09:05:22,323 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:downloadURL ;[\n]" +2022-11-14 09:05:22,323 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:mediaType dataid-mt:MediaType_n-quads_x-bzip2 .[\n]" +2022-11-14 09:05:22,323 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,323 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,323 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:SingleFile ;[\n]" +2022-11-14 09:05:22,323 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "Geo Coordinates Mappingbased Wikidata Uris"@en , "core-i18n/fr/geo_coordinates_mappingbased_wkd_uris_fr.tql.bz2" ;[\n]" +2022-11-14 09:05:22,323 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" +2022-11-14 09:05:22,323 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:checksum ;[\n]" +2022-11-14 09:05:22,323 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:isDistributionOf ;[\n]" +2022-11-14 09:05:22,323 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" +2022-11-14 09:05:22,323 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:preview ;[\n]" +2022-11-14 09:05:22,323 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:uncompressedByteSize 182185016 ;[\n]" +2022-11-14 09:05:22,323 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo ;[\n]" +2022-11-14 09:05:22,323 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "Geographic coordinates extracted from Wikipedia originating from mapped infoboxes in the mappings wiki Normalized dataset matching Wikidata resources (sorted)."@en ;[\n]" +2022-11-14 09:05:22,323 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" +2022-11-14 09:05:22,323 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" +2022-11-14 09:05:22,323 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" +2022-11-14 09:05:22,323 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" +2022-11-14 09:05:22,323 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" +2022-11-14 09:05:22,323 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "Geo Coordinates Mappingbased Wikidata Uris"@en ;[\n]" +2022-11-14 09:05:22,323 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:byteSize 8693113 ;[\n]" +2022-11-14 09:05:22,323 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:downloadURL ;[\n]" +2022-11-14 09:05:22,323 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:mediaType dataid-mt:MediaType_n-quads_x-bzip2 .[\n]" +2022-11-14 09:05:22,323 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,323 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,325 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:SingleFile ;[\n]" +2022-11-14 09:05:22,325 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "Raw html tables"@en , "core-i18n/fr/raw_tables_fr.tql.bz2" ;[\n]" +2022-11-14 09:05:22,325 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" +2022-11-14 09:05:22,325 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:checksum ;[\n]" +2022-11-14 09:05:22,325 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:isDistributionOf ;[\n]" +2022-11-14 09:05:22,325 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" +2022-11-14 09:05:22,325 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:preview ;[\n]" +2022-11-14 09:05:22,325 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:uncompressedByteSize 15631635352 ;[\n]" +2022-11-14 09:05:22,325 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo ;[\n]" +2022-11-14 09:05:22,325 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "These are the raw html tables collected during the NIF extraction; to be further processed later."@en ;[\n]" +2022-11-14 09:05:22,325 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" +2022-11-14 09:05:22,325 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" +2022-11-14 09:05:22,325 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" +2022-11-14 09:05:22,325 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" +2022-11-14 09:05:22,325 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" +2022-11-14 09:05:22,325 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "Raw html tables"@en ;[\n]" +2022-11-14 09:05:22,325 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:byteSize 827361358 ;[\n]" +2022-11-14 09:05:22,325 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:downloadURL ;[\n]" +2022-11-14 09:05:22,325 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:mediaType dataid-mt:MediaType_n-quads_x-bzip2 .[\n]" +2022-11-14 09:05:22,325 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,325 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,325 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:SingleFile ;[\n]" +2022-11-14 09:05:22,325 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "core-i18n/fr/instance_types_transitive_wkd_uris_fr.ttl.bz2" , "Instance Types Transitive Wikidata Uris"@en ;[\n]" +2022-11-14 09:05:22,325 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" +2022-11-14 09:05:22,325 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:checksum ;[\n]" +2022-11-14 09:05:22,325 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:isDistributionOf ;[\n]" +2022-11-14 09:05:22,325 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" +2022-11-14 09:05:22,325 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:preview ;[\n]" +2022-11-14 09:05:22,325 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:uncompressedByteSize 961914203 ;[\n]" +2022-11-14 09:05:22,325 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo ;[\n]" +2022-11-14 09:05:22,325 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "Contains transitive rdf:type $class based on the DBpedia ontology. Normalized dataset matching Wikidata resources (sorted)."@en ;[\n]" +2022-11-14 09:05:22,325 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" +2022-11-14 09:05:22,325 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" +2022-11-14 09:05:22,325 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" +2022-11-14 09:05:22,325 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" +2022-11-14 09:05:22,325 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" +2022-11-14 09:05:22,325 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "Instance Types Transitive Wikidata Uris"@en ;[\n]" +2022-11-14 09:05:22,325 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:byteSize 17941033 ;[\n]" +2022-11-14 09:05:22,325 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:downloadURL ;[\n]" +2022-11-14 09:05:22,325 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:mediaType dataid-mt:MediaType_turtle_x-bzip2 .[\n]" +2022-11-14 09:05:22,325 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,325 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,325 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:SingleFile ;[\n]" +2022-11-14 09:05:22,325 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "core-i18n/fr/pages" +2022-11-14 09:05:22,327 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "_articles_fr.xml.bz2" , "Wikipedia XML source dump file"@en ;[\n]" +2022-11-14 09:05:22,327 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" +2022-11-14 09:05:22,327 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:checksum ;[\n]" +2022-11-14 09:05:22,327 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:isDistributionOf ;[\n]" +2022-11-14 09:05:22,327 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" +2022-11-14 09:05:22,327 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:preview ;[\n]" +2022-11-14 09:05:22,327 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:uncompressedByteSize 15721416401 ;[\n]" +2022-11-14 09:05:22,327 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:underAuthorization ;[\n]" +2022-11-14 09:05:22,327 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "The Wikipedia dump file, which is the source for all other extracted datasets."@en ;[\n]" +2022-11-14 09:05:22,327 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion "20161020" ;[\n]" +2022-11-14 09:05:22,327 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2016-10-20"^^xsd:date ;[\n]" +2022-11-14 09:05:22,327 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" +2022-11-14 09:05:22,327 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" +2022-11-14 09:05:22,327 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "Wikipedia XML source dump file"@en ;[\n]" +2022-11-14 09:05:22,327 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:byteSize 3478140894 ;[\n]" +2022-11-14 09:05:22,327 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:downloadURL , ;[\n]" +2022-11-14 09:05:22,327 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:mediaType dataid-mt:MediaType_xml_x-bzip2 .[\n]" +2022-11-14 09:05:22,327 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,327 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,327 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:SingleFile ;[\n]" +2022-11-14 09:05:22,327 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "core-i18n/fr/homepages_fr.ttl.bz2" , "Homepages"@en ;[\n]" +2022-11-14 09:05:22,327 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" +2022-11-14 09:05:22,327 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:checksum ;[\n]" +2022-11-14 09:05:22,327 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:isDistributionOf ;[\n]" +2022-11-14 09:05:22,327 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" +2022-11-14 09:05:22,327 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:preview ;[\n]" +2022-11-14 09:05:22,327 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:uncompressedByteSize 21922608 ;[\n]" +2022-11-14 09:05:22,327 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo ;[\n]" +2022-11-14 09:05:22,327 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "Links to homepages of persons, organizations etc."@en ;[\n]" +2022-11-14 09:05:22,327 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" +2022-11-14 09:05:22,327 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" +2022-11-14 09:05:22,327 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" +2022-11-14 09:05:22,327 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" +2022-11-14 09:05:22,327 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" +2022-11-14 09:05:22,327 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "Homepages"@en ;[\n]" +2022-11-14 09:05:22,328 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:byteSize 2807383 ;[\n]" +2022-11-14 09:05:22,328 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:downloadURL ;[\n]" +2022-11-14 09:05:22,328 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:mediaType dataid-mt:MediaType_turtle_x-bzip2 .[\n]" +2022-11-14 09:05:22,328 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,328 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,328 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:SingleFile ;[\n]" +2022-11-14 09:05:22,328 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "core-i18n/fr/infobox_test_fr.tql.bz2" , "infobox test"@en ;[\n]" +2022-11-14 09:05:22,328 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" +2022-11-14 09:05:22,328 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:checksum ;[\n]" +2022-11-14 09:05:22,328 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:isDistributionOf ;[\n]" +2022-11-14 09:05:22,328 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" +2022-11-14 09:05:22,328 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:preview " +2022-11-14 09:05:22,329 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " ;[\n]" +2022-11-14 09:05:22,329 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:uncompressedByteSize 64 ;[\n]" +2022-11-14 09:05:22,329 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo ;[\n]" +2022-11-14 09:05:22,329 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "DBpedia dataset infobox_test, subset of "@en ;[\n]" +2022-11-14 09:05:22,329 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" +2022-11-14 09:05:22,329 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" +2022-11-14 09:05:22,329 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" +2022-11-14 09:05:22,329 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" +2022-11-14 09:05:22,329 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" +2022-11-14 09:05:22,329 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "infobox test"@en ;[\n]" +2022-11-14 09:05:22,329 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:byteSize 88 ;[\n]" +2022-11-14 09:05:22,329 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:downloadURL ;[\n]" +2022-11-14 09:05:22,329 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:mediaType dataid-mt:MediaType_n-quads_x-bzip2 .[\n]" +2022-11-14 09:05:22,329 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,329 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,329 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:SingleFile ;[\n]" +2022-11-14 09:05:22,329 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "Homepages"@en , "core-i18n/fr/homepages_fr.tql.bz2" ;[\n]" +2022-11-14 09:05:22,329 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" +2022-11-14 09:05:22,329 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:checksum ;[\n]" +2022-11-14 09:05:22,329 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:isDistributionOf ;[\n]" +2022-11-14 09:05:22,329 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" +2022-11-14 09:05:22,329 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:preview ;[\n]" +2022-11-14 09:05:22,329 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:uncompressedByteSize 38935072 ;[\n]" +2022-11-14 09:05:22,329 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo ;[\n]" +2022-11-14 09:05:22,329 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "Links to homepages of persons, organizations etc."@en ;[\n]" +2022-11-14 09:05:22,329 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" +2022-11-14 09:05:22,329 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" +2022-11-14 09:05:22,329 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" +2022-11-14 09:05:22,329 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" +2022-11-14 09:05:22,329 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" +2022-11-14 09:05:22,329 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "Homepages"@en ;[\n]" +2022-11-14 09:05:22,329 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:byteSize 4609744 ;[\n]" +2022-11-14 09:05:22,329 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:downloadURL ;[\n]" +2022-11-14 09:05:22,329 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:mediaType dataid-mt:MediaType_n-quads_x-bzip" +2022-11-14 09:05:22,329 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "2 .[\n]" +2022-11-14 09:05:22,329 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,329 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,329 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:Dataset , dataid-ld:LinkedDataDataset ;[\n]" +2022-11-14 09:05:22,329 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "SKOS Categories Wikidata Uris"@en ;[\n]" +2022-11-14 09:05:22,329 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" +2022-11-14 09:05:22,329 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" +2022-11-14 09:05:22,329 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:previousVersion ;[\n]" +2022-11-14 09:05:22,329 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedDatasetRelation[\n]" +2022-11-14 09:05:22,329 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " ;[\n]" +2022-11-14 09:05:22,329 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:relatedDataset ;[\n]" +2022-11-14 09:05:22,329 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo , ;[\n]" +2022-11-14 09:05:22,329 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "Information which concept is a category and how categories are related using the SKOS Vocabulary. Normalized dataset matching Wikidata resources (sorted)."@en ;[\n]" +2022-11-14 09:05:22,330 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" +2022-11-14 09:05:22,330 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:isPartOf ;[\n]" +2022-11-14 09:05:22,330 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" +2022-11-14 09:05:22,330 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:langu" +2022-11-14 09:05:22,330 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "age ;[\n]" +2022-11-14 09:05:22,330 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" +2022-11-14 09:05:22,330 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" +2022-11-14 09:05:22,330 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" +2022-11-14 09:05:22,330 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "SKOS Categories Wikidata Uris"@en ;[\n]" +2022-11-14 09:05:22,330 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " void:rootResource ;[\n]" +2022-11-14 09:05:22,330 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " void:triples 1114639 ;[\n]" +2022-11-14 09:05:22,330 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:distribution , ;[\n]" +2022-11-14 09:05:22,330 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:keyword "SKOS Categories Wikidata Uris"@en , "DBpedia"@en ;[\n]" +2022-11-14 09:05:22,330 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:landingPage ;[\n]" +2022-11-14 09:05:22,330 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " sd:defaultGraph ;[\n]" +2022-11-14 09:05:22,330 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " foaf:page .[\n]" +2022-11-14 09:05:22,330 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,330 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,330 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid-ld:LinkedDataDataset , dataid:Dataset ;[\n]" +2022-11-14 09:05:22,330 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "Person data English Uris"@en ;[\n]" +2022-11-14 09:05:22,330 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" +2022-11-14 09:05:22,330 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" +2022-11-14 09:05:22,332 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedDatasetRelation[\n]" +2022-11-14 09:05:22,332 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " ;[\n]" +2022-11-14 09:05:22,332 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:relatedDataset ;[\n]" +2022-11-14 09:05:22,332 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo , ;[\n]" +2022-11-14 09:05:22,332 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "Information about persons (date and place of birth etc., extracted from the English and German Wikipedia, represented using the FOAF vocabulary. Normalized dataset matching English DBpedia resources."@en ;[\n]" +2022-11-14 09:05:22,332 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" +2022-11-14 09:05:22,332 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:isPartOf ;[\n]" +2022-11-14 09:05:22,332 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" +2022-11-14 09:05:22,332 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:language ;[\n]" +2022-11-14 09:05:22,332 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" +2022-11-14 09:05:22,332 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" +2022-11-14 09:05:22,332 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" +2022-11-14 09:05:22,332 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "Person data English Uris"@en ;[\n]" +2022-11-14 09:05:22,332 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " void:rootResource ;[\n]" +2022-11-14 09:05:22,332 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " void:triples 2456450 ;[\n]" +2022-11-14 09:05:22,332 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:distribution , ;[\n]" +2022-11-14 09:05:22,332 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:keyword "Person data English Uris"@en , "DBpedia"@en ;[\n]" +2022-11-14 09:05:22,332 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:landingPage ;[\n]" +2022-11-14 09:05:22,332 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " sd:defaultGraph ;[\n]" +2022-11-14 09:05:22,332 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " foaf:page .[\n]" +2022-11-14 09:05:22,332 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,332 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,332 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:Dataset , dataid-ld:LinkedDataDataset ;[\n]" +2022-11-14 09:05:22,332 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "Infobox Property Definitions"@en ;[\n]" +2022-11-14 09:05:22,332 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" +2022-11-14 09:05:22,332 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" +2022-11-14 09:05:22,332 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:previousVersion ;[\n]" +2022-11-14 09:05:22,332 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedDatasetRelation[\n]" +2022-11-14 09:05:22,332 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " ;[\n]" +2022-11-14 09:05:22,332 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:relatedDataset ;[\n]" +2022-11-14 09:05:22,332 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo " +2022-11-14 09:05:22,333 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " , ;[\n]" +2022-11-14 09:05:22,333 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "All properties predicates used in infoboxes."@en ;[\n]" +2022-11-14 09:05:22,333 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" +2022-11-14 09:05:22,333 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:isPartOf ;[\n]" +2022-11-14 09:05:22,333 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" +2022-11-14 09:05:22,333 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:language ;[\n]" +2022-11-14 09:05:22,333 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" +2022-11-14 09:05:22,333 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" +2022-11-14 09:05:22,333 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" +2022-11-14 09:05:22,333 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "Infobox Property Definitions"@en ;[\n]" +2022-11-14 09:05:22,333 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " void:rootResource ;[\n]" +2022-11-14 09:05:22,333 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " void:triples 42372 ;[\n]" +2022-11-14 09:05:22,333 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:distribution , ;[\n]" +2022-11-14 09:05:22,333 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:keyword "Infobox Property Definitions"@en , "DBpedia"@en ;[\n]" +2022-11-14 09:05:22,333 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:landingPage ;[\n]" +2022-11-14 09:05:22,333 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " sd:defaultGraph " +2022-11-14 09:05:22,334 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " ;[\n]" +2022-11-14 09:05:22,334 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " foaf:page .[\n]" +2022-11-14 09:05:22,334 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,334 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,334 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:SingleFile ;[\n]" +2022-11-14 09:05:22,334 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "core-i18n/fr/disambiguations_fr.tql.bz2" , "Disambiguations"@en ;[\n]" +2022-11-14 09:05:22,334 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" +2022-11-14 09:05:22,334 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:checksum ;[\n]" +2022-11-14 09:05:22,334 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:isDistributionOf ;[\n]" +2022-11-14 09:05:22,334 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" +2022-11-14 09:05:22,334 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:preview ;[\n]" +2022-11-14 09:05:22,334 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:uncompressedByteSize 139934355 ;[\n]" +2022-11-14 09:05:22,334 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo ;[\n]" +2022-11-14 09:05:22,334 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "Links extracted from Wikipedia disambiguation pages. Since Wikipedia has no syntax to distinguish disambiguation links from ordinary links, DBpedia has to use heuristics."@en ;[\n]" +2022-11-14 09:05:22,334 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" +2022-11-14 09:05:22,335 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" +2022-11-14 09:05:22,335 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" +2022-11-14 09:05:22,335 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" +2022-11-14 09:05:22,335 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" +2022-11-14 09:05:22,335 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "Disambiguations"@en ;[\n]" +2022-11-14 09:05:22,335 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:byteSize 7783643 ;[\n]" +2022-11-14 09:05:22,335 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:downloadURL ;[\n]" +2022-11-14 09:05:22,335 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:mediaType dataid-mt:MediaType_n-quads_x-bzip2 .[\n]" +2022-11-14 09:05:22,335 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,335 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,335 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:SingleFile ;[\n]" +2022-11-14 09:05:22,335 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "core-i18n/fr/mappingbased_objects_wkd_uris_fr.tql.bz2" , "Mappingbased Objects Wikidata Uris"@en ;[\n]" +2022-11-14 09:05:22,335 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" +2022-11-14 09:05:22,335 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:checksum ;[\n]" +2022-11-14 09:05:22,335 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:isDistributionOf ;[\n]" +2022-11-14 09:05:22,335 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" +2022-11-14 09:05:22,335 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:preview ;[\n]" +2022-11-14 09:05:22,335 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:uncompressedByteSize 1034794760 ;[\n]" +2022-11-14 09:05:22,335 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo ;[\n]" +2022-11-14 09:05:22,335 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "High-quality data extracted from Infoboxes using the mapping-based extraction (Object properties only). The predicates in this dataset are in the 'ontology' namespace. Note that this data is of much higher quality than the Raw Infobox Properties in the 'property' namespace. Normalized dataset matching Wikidata resources (sorted)."@en ;[\n]" +2022-11-14 09:05:22,335 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" +2022-11-14 09:05:22,335 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" +2022-11-14 09:05:22,335 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" +2022-11-14 09:05:22,335 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" +2022-11-14 09:05:22,335 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" +2022-11-14 09:05:22,335 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "Mappingbased Objects Wikidata Uris"@en ;[\n]" +2022-11-14 09:05:22,335 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:byteSize 54051187 ;[\n]" +2022-11-14 09:05:22,335 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:downloadURL " +2022-11-14 09:05:22,336 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " ;[\n]" +2022-11-14 09:05:22,336 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:mediaType dataid-mt:MediaType_n-quads_x-bzip2 .[\n]" +2022-11-14 09:05:22,336 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,336 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,336 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:SingleFile ;[\n]" +2022-11-14 09:05:22,336 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "Long Abstracts English Uris"@en , "core-i18n/fr/long_abstracts_en_uris_fr.tql.bz2" ;[\n]" +2022-11-14 09:05:22,336 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" +2022-11-14 09:05:22,336 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:checksum ;[\n]" +2022-11-14 09:05:22,336 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:isDistributionOf ;[\n]" +2022-11-14 09:05:22,336 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" +2022-11-14 09:05:22,336 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:preview ;[\n]" +2022-11-14 09:05:22,336 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:uncompressedByteSize 631423907 ;[\n]" +2022-11-14 09:05:22,336 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo ;[\n]" +2022-11-14 09:05:22,336 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "Long abstracts (full abstracts) of Wikipedia articles, usually the first section. Normalized dataset matching English DBpedia resources."@en ;[\n]" +2022-11-14 09:05:22,336 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" +2022-11-14 09:05:22,336 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" +2022-11-14 09:05:22,336 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" +2022-11-14 09:05:22,336 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" +2022-11-14 09:05:22,336 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" +2022-11-14 09:05:22,336 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "Long Abstracts English Uris"@en ;[\n]" +2022-11-14 09:05:22,336 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:byteSize 146515998 ;[\n]" +2022-11-14 09:05:22,336 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:downloadURL ;[\n]" +2022-11-14 09:05:22,336 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:mediaType dataid-mt:MediaType_n-quads_x-bzip2 .[\n]" +2022-11-14 09:05:22,336 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,336 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,336 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:Dataset , dataid-ld:LinkedDataDataset ;[\n]" +2022-11-14 09:05:22,336 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "Commons Page Links"@en ;[\n]" +2022-11-14 09:05:22,336 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" +2022-11-14 09:05:22,336 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" +2022-11-14 09:05:22,336 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedDatasetRelation[\n]" +2022-11-14 09:05:22,336 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " ;[\n]" +2022-11-14 09:05:22,336 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:relatedDataset ;[\n]" +2022-11-14 09:05:22,336 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo , ;[\n]" +2022-11-14 09:05:22,336 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "Dataset containing links between a language-locale DBpedia instance and DBpedia Commons."@en ;[\n]" +2022-11-14 09:05:22,336 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" +2022-11-14 09:05:22,336 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:isPartOf ;[\n]" +2022-11-14 09:05:22,336 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" +2022-11-14 09:05:22,336 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:language ;[\n]" +2022-11-14 09:05:22,336 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" +2022-11-14 09:05:22,336 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" +2022-11-14 09:05:22,336 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" +2022-11-14 09:05:22,336 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "Commons Page Links"@en ;[\n]" +2022-11-14 09:05:22,336 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " void:rootResource ;[\n]" +2022-11-14 09:05:22,336 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " void:triples 32 ;[\n]" +2022-11-14 09:05:22,336 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:distribution , ;[\n]" +2022-11-14 09:05:22,336 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:keyword "Commons Page Links"@en , "DBpedia"@en ;[\n]" +2022-11-14 09:05:22,336 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:landingPag" +2022-11-14 09:05:22,338 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "e ;[\n]" +2022-11-14 09:05:22,338 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " sd:defaultGraph ;[\n]" +2022-11-14 09:05:22,338 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " foaf:page .[\n]" +2022-11-14 09:05:22,338 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,338 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,338 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:SingleFile ;[\n]" +2022-11-14 09:05:22,338 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "core-i18n/fr/infobox_properties_mapped_fr.ttl.bz2" , "Infobox Properties Mapped"@en ;[\n]" +2022-11-14 09:05:22,338 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" +2022-11-14 09:05:22,338 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:checksum ;[\n]" +2022-11-14 09:05:22,338 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:isDistributionOf ;[\n]" +2022-11-14 09:05:22,338 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" +2022-11-14 09:05:22,338 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:preview ;[\n]" +2022-11-14 09:05:22,338 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:uncompressedByteSize 1287015006 ;[\n]" +2022-11-14 09:05:22,338 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo ;[\n]" +2022-11-14 09:05:22,338 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "Information that has been extracted from Wikipedia infoboxes. Note that this data is in the less clean 'property' namespace. The Mapping-based Properties in the 'ontology' namespace, should always be preferred over this data. This dataset contains facts that have equivalent mapped facts in the mapping-based datasets. "@en ;[\n]" +2022-11-14 09:05:22,338 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" +2022-11-14 09:05:22,338 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" +2022-11-14 09:05:22,338 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" +2022-11-14 09:05:22,338 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" +2022-11-14 09:05:22,338 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" +2022-11-14 09:05:22,338 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "Infobox Properties Mapped"@en ;[\n]" +2022-11-14 09:05:22,338 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:byteSize 77774749 ;[\n]" +2022-11-14 09:05:22,338 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:downloadURL ;[\n]" +2022-11-14 09:05:22,338 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:mediaType dataid-mt:MediaType_turtle_x-bzip2 .[\n]" +2022-11-14 09:05:22,338 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,338 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,338 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid-ld:LinkedDataDataset , dataid:Dataset ;[\n]" +2022-11-14 09:05:22,338 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "pnd English Uris"@en ;[\n]" +2022-11-14 09:05:22,338 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" +2022-11-14 09:05:22,338 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" +2022-11-14 09:05:22,338 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:prev" +2022-11-14 09:05:22,339 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "iousVersion ;[\n]" +2022-11-14 09:05:22,339 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedDatasetRelation[\n]" +2022-11-14 09:05:22,339 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " ;[\n]" +2022-11-14 09:05:22,339 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:relatedDataset ;[\n]" +2022-11-14 09:05:22,339 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo , ;[\n]" +2022-11-14 09:05:22,339 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "Undescribed Dataset Normalized dataset matching English DBpedia resources."@en ;[\n]" +2022-11-14 09:05:22,339 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" +2022-11-14 09:05:22,339 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:isPartOf ;[\n]" +2022-11-14 09:05:22,339 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" +2022-11-14 09:05:22,339 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:language ;[\n]" +2022-11-14 09:05:22,339 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" +2022-11-14 09:05:22,339 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" +2022-11-14 09:05:22,339 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" +2022-11-14 09:05:22,339 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "pnd English Uris"@en ;[\n]" +2022-11-14 09:05:22,339 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " void:rootResource ;[\n]" +2022-11-14 09:05:22,339 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " void:triples 253 ;[\n]" +2022-11-14 09:05:22,339 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:distribution , ;[\n]" +2022-11-14 09:05:22,340 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:keyword "DBpedia"@en , "pnd English Uris"@en ;[\n]" +2022-11-14 09:05:22,340 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:landingPage ;[\n]" +2022-11-14 09:05:22,340 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " sd:defaultGraph ;[\n]" +2022-11-14 09:05:22,340 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " foaf:page .[\n]" +2022-11-14 09:05:22,340 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,340 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,340 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:SingleFile ;[\n]" +2022-11-14 09:05:22,340 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "core-i18n/fr/infobox_properties_mapped_fr.tql.bz2" , "Infobox Properties Mapped"@en ;[\n]" +2022-11-14 09:05:22,340 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" +2022-11-14 09:05:22,340 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:checksum ;[\n]" +2022-11-14 09:05:22,340 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:isDistributionOf ;[\n]" +2022-11-14 09:05:22,340 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" +2022-11-14 09:05:22,340 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:preview ;[\n]" +2022-11-14 09:05:22,340 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:uncompressedByteSize 2499016999 ;[\n]" +2022-11-14 09:05:22,340 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo ;[\n]" +2022-11-14 09:05:22,340 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "Information that has been extracted from Wikipedia infoboxes. Note that this data is in the less clean 'property' namespace. The Mapping-based Properties in the 'ontology' namespace, should always be preferred over this data. This dataset contains facts that have equivalent mapped facts in the mapping-based datasets. "@en ;[\n]" +2022-11-14 09:05:22,340 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" +2022-11-14 09:05:22,340 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" +2022-11-14 09:05:22,340 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" +2022-11-14 09:05:22,340 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" +2022-11-14 09:05:22,340 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" +2022-11-14 09:05:22,340 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "Infobox Properties Mapped"@en ;[\n]" +2022-11-14 09:05:22,340 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:byteSize 129344145 ;[\n]" +2022-11-14 09:05:22,340 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:downloadURL ;[\n]" +2022-11-14 09:05:22,340 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:mediaType dataid-mt:MediaType_n-quads_x-bzip2 .[\n]" +2022-11-14 09:05:22,340 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,340 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,340 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:SingleF" +2022-11-14 09:05:22,340 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "ile ;[\n]" +2022-11-14 09:05:22,340 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "core-i18n/fr/short_abstracts_fr.tql.bz2" , "Short Abstracts"@en ;[\n]" +2022-11-14 09:05:22,340 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" +2022-11-14 09:05:22,340 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:checksum ;[\n]" +2022-11-14 09:05:22,340 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:isDistributionOf ;[\n]" +2022-11-14 09:05:22,340 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" +2022-11-14 09:05:22,340 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:preview ;[\n]" +2022-11-14 09:05:22,340 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:uncompressedByteSize 796940104 ;[\n]" +2022-11-14 09:05:22,340 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo ;[\n]" +2022-11-14 09:05:22,340 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "Short Abstracts (about 600 characters long) of Wikipedia articles."@en ;[\n]" +2022-11-14 09:05:22,340 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" +2022-11-14 09:05:22,340 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" +2022-11-14 09:05:22,340 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" +2022-11-14 09:05:22,340 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" +2022-11-14 09:05:22,340 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher " +2022-11-14 09:05:22,342 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " ;[\n]" +2022-11-14 09:05:22,342 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "Short Abstracts"@en ;[\n]" +2022-11-14 09:05:22,342 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:byteSize 163922836 ;[\n]" +2022-11-14 09:05:22,342 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:downloadURL ;[\n]" +2022-11-14 09:05:22,342 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:mediaType dataid-mt:MediaType_n-quads_x-bzip2 .[\n]" +2022-11-14 09:05:22,342 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,342 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,342 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid-ld:LinkedDataDataset , dataid:Dataset ;[\n]" +2022-11-14 09:05:22,342 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "Page Links Wikidata Uris"@en ;[\n]" +2022-11-14 09:05:22,342 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" +2022-11-14 09:05:22,342 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" +2022-11-14 09:05:22,342 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:previousVersion ;[\n]" +2022-11-14 09:05:22,342 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedDatasetRelation[\n]" +2022-11-14 09:05:22,342 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " ;[\n]" +2022-11-14 09:05:22,342 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:relatedDataset ;[\n]" +2022-11-14 09:05:22,342 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo , ;[\n]" +2022-11-14 09:05:22,342 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "Dataset containing internal links between DBpedia instances. The dataset was created from the internal links between Wikipedia articles. The dataset might be useful for structural analysis, data mining or for ranking DBpedia instances using Page Rank or similar algorithms. Normalized dataset matching Wikidata resources (sorted)."@en ;[\n]" +2022-11-14 09:05:22,342 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" +2022-11-14 09:05:22,342 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:isPartOf ;[\n]" +2022-11-14 09:05:22,342 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" +2022-11-14 09:05:22,342 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:language ;[\n]" +2022-11-14 09:05:22,342 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" +2022-11-14 09:05:22,342 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" +2022-11-14 09:05:22,342 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" +2022-11-14 09:05:22,342 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "Page Links Wikidata Uris"@en ;[\n]" +2022-11-14 09:05:22,342 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " void:rootResource ;[\n]" +2022-11-14 09:05:22,342 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " void:triples 50110567 ;[\n]" +2022-11-14 09:05:22,342 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:distribution , ;[\n]" +2022-11-14 09:05:22,342 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:keyword "Page Links Wikidata Uris"@en , "DBpedia"@en ;[\n]" +2022-11-14 09:05:22,342 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:landingPage ;[\n]" +2022-11-14 09:05:22,342 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " sd:defaultGraph ;[\n]" +2022-11-14 09:05:22,350 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " foaf:page .[\n]" +2022-11-14 09:05:22,350 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,350 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,350 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:Dataset , dataid-ld:LinkedDataDataset ;[\n]" +2022-11-14 09:05:22,350 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "Homepages English Uris"@en ;[\n]" +2022-11-14 09:05:22,350 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" +2022-11-14 09:05:22,350 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" +2022-11-14 09:05:22,350 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:previousVersion ;[\n]" +2022-11-14 09:05:22,350 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedDatasetRelation[\n]" +2022-11-14 09:05:22,350 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " ;[\n]" +2022-11-14 09:05:22,350 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:relatedDataset ;[\n]" +2022-11-14 09:05:22,350 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo , ;[\n]" +2022-11-14 09:05:22,350 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "Links to homepages of persons, organizations etc. Normalized dataset matching English DBpedia resources."@en ;[\n]" +2022-11-14 09:05:22,350 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" +2022-11-14 09:05:22,350 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:isPartOf ;[\n]" +2022-11-14 09:05:22,350 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" +2022-11-14 09:05:22,350 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:language ;[\n]" +2022-11-14 09:05:22,350 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" +2022-11-14 09:05:22,350 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" +2022-11-14 09:05:22,350 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" +2022-11-14 09:05:22,350 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "Homepages English Uris"@en ;[\n]" +2022-11-14 09:05:22,350 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " void:rootResource ;[\n]" +2022-11-14 09:05:22,350 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " void:triples 123488 ;[\n]" +2022-11-14 09:05:22,350 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:distribution , ;[\n]" +2022-11-14 09:05:22,350 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:keyword "DBpedia"@en , "Homepages English Uris"@en ;[\n]" +2022-11-14 09:05:22,350 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:landingPage ;[\n]" +2022-11-14 09:05:22,350 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " sd:defaultGraph ;[\n]" +2022-11-14 09:05:22,350 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " foaf:page .[\n]" +2022-11-14 09:05:22,350 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,350 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "########### Relations ###########[\n]" +2022-11-14 09:05:22,350 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,350 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,350 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:DatasetRelationship ;[\n]" +2022-11-14 09:05:22,350 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:datasetRelationRole dataid:SourceRole ;[\n]" +2022-11-14 09:05:22,350 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedRelationOf ;[\n]" +2022-11-14 09:05:22,350 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qu" +2022-11-14 09:05:22,352 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "alifiedRelationTo .[\n]" +2022-11-14 09:05:22,352 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,352 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,352 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:DatasetRelationship ;[\n]" +2022-11-14 09:05:22,352 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:datasetRelationRole dataid:SourceRole ;[\n]" +2022-11-14 09:05:22,352 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedRelationOf ;[\n]" +2022-11-14 09:05:22,352 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedRelationTo .[\n]" +2022-11-14 09:05:22,352 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,352 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,352 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:DatasetRelationship ;[\n]" +2022-11-14 09:05:22,352 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:datasetRelationRole dataid:SourceRole ;[\n]" +2022-11-14 09:05:22,352 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedRelationOf ;[\n]" +2022-11-14 09:05:22,352 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedRelationTo .[\n]" +2022-11-14 09:05:22,352 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,352 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,352 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:DatasetRelationship ;[\n]" +2022-11-14 09:05:22,352 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:datasetRelationRole dataid:SourceRole ;[\n]" +2022-11-14 09:05:22,352 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedRelationOf ;[\n]" +2022-11-14 09:05:22,352 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedRelationTo .[\n]" +2022-11-14 09:05:22,352 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,352 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,352 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:DatasetRelationship ;[\n]" +2022-11-14 09:05:22,352 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:datasetRelationRole dataid:SourceRole ;[\n]" +2022-11-14 09:05:22,352 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedRelationOf ;[\n]" +2022-11-14 09:05:22,352 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedRelationTo .[\n]" +2022-11-14 09:05:22,352 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,352 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,352 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:DatasetRelationship ;[\n]" +2022-11-14 09:05:22,352 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:datasetRelationRole dataid:SourceRole ;[\n]" +2022-11-14 09:05:22,352 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedRelationOf ;[\n]" +2022-11-14 09:05:22,352 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedRelationTo .[\n]" +2022-11-14 09:05:22,352 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,352 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,352 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:DatasetRelationship ;[\n]" +2022-11-14 09:05:22,352 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:datasetRelationRole dataid:SourceRole ;[\n]" +2022-11-14 09:05:22,352 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedRelationOf ;[\n]" +2022-11-14 09:05:22,352 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedRelationTo .[\n]" +2022-11-14 09:05:22,352 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,352 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,352 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:DatasetRelationship ;[\n]" +2022-11-14 09:05:22,352 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:datasetRelationRole dataid:SourceRole ;[\n]" +2022-11-14 09:05:22,352 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedRelationOf ;[\n]" +2022-11-14 09:05:22,352 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedRelationTo .[\n]" +2022-11-14 09:05:22,352 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,352 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,352 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:DatasetRelationship ;[\n]" +2022-11-14 09:05:22,352 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:datasetRelationRole dataid:SourceRole ;[\n]" +2022-11-14 09:05:22,352 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedRelationOf ;[\n]" +2022-11-14 09:05:22,352 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedRelationTo .[\n]" +2022-11-14 09:05:22,352 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,352 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,352 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:DatasetRelationship ;[\n]" +2022-11-14 09:05:22,352 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:datasetRelationRole dataid:SourceRole ;[\n]" +2022-11-14 09:05:22,352 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedRelationOf ;[\n]" +2022-11-14 09:05:22,352 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedRelationTo .[\n]" +2022-11-14 09:05:22,352 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,352 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,352 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:DatasetRelationship ;[\n]" +2022-11-14 09:05:22,352 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:datasetRelationRole dataid:SourceRole ;[\n]" +2022-11-14 09:05:22,352 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedRelationOf ;[\n]" +2022-11-14 09:05:22,352 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedRelationTo .[\n]" +2022-11-14 09:05:22,352 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,352 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,352 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:DatasetRelationship ;[\n]" +2022-11-14 09:05:22,352 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:datasetRelationRole dataid:SourceRole ;[\n]" +2022-11-14 09:05:22,352 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedRelationOf ;[\n]" +2022-11-14 09:05:22,352 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedRelationTo .[\n]" +2022-11-14 09:05:22,352 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,352 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,352 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:DatasetRelationship ;[\n]" +2022-11-14 09:05:22,352 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:datasetRelationRole dataid:SourceRole ;[\n]" +2022-11-14 09:05:22,352 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedRelationOf ;[\n]" +2022-11-14 09:05:22,352 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedRelationTo .[\n]" +2022-11-14 09:05:22,352 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,352 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,352 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:DatasetRelationship ;[\n]" +2022-11-14 09:05:22,352 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:datasetRelationRole dataid:SourceRole ;[\n]" +2022-11-14 09:05:22,352 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedRelationOf ;[\n]" +2022-11-14 09:05:22,352 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedRelationTo .[\n]" +2022-11-14 09:05:22,352 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,352 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,352 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:DatasetRelationship ;[\n]" +2022-11-14 09:05:22,352 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:datasetRelationRole dataid:SourceRole ;[\n]" +2022-11-14 09:05:22,352 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedRelationOf ;[\n]" +2022-11-14 09:05:22,352 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedRelationTo .[\n]" +2022-11-14 09:05:22,352 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,352 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,352 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:DatasetRelationship ;[\n]" +2022-11-14 09:05:22,352 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:datasetRelationRole dataid:SourceRole ;[\n]" +2022-11-14 09:05:22,352 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedRelationOf ;[\n]" +2022-11-14 09:05:22,352 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedRelationTo .[\n]" +2022-11-14 09:05:22,352 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,352 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,352 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:DatasetRelationship ;[\n]" +2022-11-14 09:05:22,352 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:datasetRelationRole dataid:SourceRole ;[\n]" +2022-11-14 09:05:22,352 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedRelationOf ;[\n]" +2022-11-14 09:05:22,352 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedRelationTo .[\n]" +2022-11-14 09:05:22,352 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,352 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,352 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:DatasetRelationship ;[\n]" +2022-11-14 09:05:22,352 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:datasetRelationRole dataid:SourceRole ;[\n]" +2022-11-14 09:05:22,352 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedRelationOf ;[\n]" +2022-11-14 09:05:22,352 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedRelationTo .[\n]" +2022-11-14 09:05:22,352 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,352 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,352 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:DatasetRelationship ;[\n]" +2022-11-14 09:05:22,352 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:datasetRelationRole dataid:SourceRole ;[\n]" +2022-11-14 09:05:22,352 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedRelationOf ;[\n]" +2022-11-14 09:05:22,352 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedRelationTo .[\n]" +2022-11-14 09:05:22,352 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,352 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,352 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:DatasetRelationship ;[\n]" +2022-11-14 09:05:22,352 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:datasetRelationRole dataid:SourceRole ;[\n]" +2022-11-14 09:05:22,352 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedRelationOf ;[\n]" +2022-11-14 09:05:22,352 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedRelationTo .[\n]" +2022-11-14 09:05:22,352 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,352 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,352 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:DatasetRelationship ;[\n]" +2022-11-14 09:05:22,352 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:datasetRelationRole dataid:SourceRole ;[\n]" +2022-11-14 09:05:22,352 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedRelationOf ;[\n]" +2022-11-14 09:05:22,352 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedRelationTo .[\n]" +2022-11-14 09:05:22,352 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,352 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,352 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:DatasetRelationship ;[\n]" +2022-11-14 09:05:22,352 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:datasetRelationRole dataid:SourceRole ;[\n]" +2022-11-14 09:05:22,352 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedRelationOf ;[\n]" +2022-11-14 09:05:22,352 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedRelationTo .[\n]" +2022-11-14 09:05:22,352 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,352 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,352 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:DatasetRelationship ;[\n]" +2022-11-14 09:05:22,352 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:datasetRelationRole dataid:SourceRole ;[\n]" +2022-11-14 09:05:22,352 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedRelationOf ;[\n]" +2022-11-14 09:05:22,352 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedRelationTo .[\n]" +2022-11-14 09:05:22,352 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,352 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,352 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:DatasetRelationship ;[\n]" +2022-11-14 09:05:22,352 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:datasetRelationRole dataid:SourceRole ;[\n]" +2022-11-14 09:05:22,352 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedRelationOf ;[\n]" +2022-11-14 09:05:22,352 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedRelationTo .[\n]" +2022-11-14 09:05:22,352 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,352 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,352 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:DatasetRelationship ;[\n]" +2022-11-14 09:05:22,352 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:datasetRelationRole dataid:SourceRole ;[\n]" +2022-11-14 09:05:22,352 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedRelationOf ;[\n]" +2022-11-14 09:05:22,352 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedRelationTo .[\n]" +2022-11-14 09:05:22,352 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,352 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,352 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:DatasetRelationship ;[\n]" +2022-11-14 09:05:22,352 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:datasetRelationRole dataid:SourceRole ;[\n]" +2022-11-14 09:05:22,352 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedRelationOf ;[\n]" +2022-11-14 09:05:22,352 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedRelationTo .[\n]" +2022-11-14 09:05:22,352 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,352 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,352 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:DatasetRelationship ;[\n]" +2022-11-14 09:05:22,352 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:datasetRelationRole dataid:SourceRole ;[\n]" +2022-11-14 09:05:22,352 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedRelationOf ;[\n]" +2022-11-14 09:05:22,352 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedRelationTo .[\n]" +2022-11-14 09:05:22,352 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,352 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,352 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:DatasetRelationship ;[\n]" +2022-11-14 09:05:22,352 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:datasetRelationRole dataid:SourceRole ;[\n]" +2022-11-14 09:05:22,352 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedRelationOf ;[\n]" +2022-11-14 09:05:22,352 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedRelationTo .[\n]" +2022-11-14 09:05:22,352 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,352 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,352 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:DatasetRelationship ;[\n]" +2022-11-14 09:05:22,352 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:datasetRelationRole dataid:SourceRole ;[\n]" +2022-11-14 09:05:22,352 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedRelationOf ;[\n]" +2022-11-14 09:05:22,352 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedRelationTo .[\n]" +2022-11-14 09:05:22,352 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,352 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,352 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:DatasetRelationship ;[\n]" +2022-11-14 09:05:22,352 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:datasetRelationRole dataid:SourceRole ;[\n]" +2022-11-14 09:05:22,352 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedRelationOf ;[\n]" +2022-11-14 09:05:22,352 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedRelationTo .[\n]" +2022-11-14 09:05:22,352 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,352 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,352 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:DatasetRelationship ;[\n]" +2022-11-14 09:05:22,352 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:datasetRelationRole dataid:SourceRole ;[\n]" +2022-11-14 09:05:22,352 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedRelationOf ;[\n]" +2022-11-14 09:05:22,352 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedRelationTo .[\n]" +2022-11-14 09:05:22,352 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,352 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,352 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:DatasetRelationship ;[\n]" +2022-11-14 09:05:22,352 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:datasetRelationRole dataid:SourceRole ;[\n]" +2022-11-14 09:05:22,352 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedRelationOf ;[\n]" +2022-11-14 09:05:22,352 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedRelationTo .[\n]" +2022-11-14 09:05:22,352 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,352 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,352 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:DatasetRelationship ;[\n]" +2022-11-14 09:05:22,352 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:datasetRelationRole dataid:SourceRole ;[\n]" +2022-11-14 09:05:22,352 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedRelationOf ;[\n]" +2022-11-14 09:05:22,352 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedRelationTo .[\n]" +2022-11-14 09:05:22,352 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,352 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,352 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:DatasetRelationship ;[\n]" +2022-11-14 09:05:22,352 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:datasetRelationRole dataid:SourceRole ;[\n]" +2022-11-14 09:05:22,352 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedRelationOf ;[\n]" +2022-11-14 09:05:22,352 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedRelationTo .[\n]" +2022-11-14 09:05:22,352 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,352 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,352 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:DatasetRelationship ;[\n]" +2022-11-14 09:05:22,352 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:datasetRelationRole dataid:SourceRole ;[\n]" +2022-11-14 09:05:22,352 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedRelationOf ;[\n]" +2022-11-14 09:05:22,352 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedRelationTo .[\n]" +2022-11-14 09:05:22,352 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,352 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,352 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:DatasetRelationship ;[\n]" +2022-11-14 09:05:22,352 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:datasetRelationRole dataid:SourceRole ;[\n]" +2022-11-14 09:05:22,352 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedRelationOf ;[\n]" +2022-11-14 09:05:22,352 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedRelationTo .[\n]" +2022-11-14 09:05:22,352 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,352 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,352 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:DatasetRelationship ;[\n]" +2022-11-14 09:05:22,352 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:datasetRelationRole dataid:SourceRole ;[\n]" +2022-11-14 09:05:22,352 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedRelationOf ;[\n]" +2022-11-14 09:05:22,352 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedRelationTo .[\n]" +2022-11-14 09:05:22,352 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,352 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,352 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:DatasetRelationship ;[\n]" +2022-11-14 09:05:22,352 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:datasetRelationRole dataid:SourceRole ;[\n]" +2022-11-14 09:05:22,352 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedRelationOf ;[\n]" +2022-11-14 09:05:22,352 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedRelationTo .[\n]" +2022-11-14 09:05:22,352 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,352 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,352 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:DatasetRelationship ;[\n]" +2022-11-14 09:05:22,352 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:datasetRelationRole dataid:SourceRole ;[\n]" +2022-11-14 09:05:22,352 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " " +2022-11-14 09:05:22,353 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedRelationOf ;[\n]" +2022-11-14 09:05:22,353 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedRelationTo .[\n]" +2022-11-14 09:05:22,353 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,353 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,353 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:DatasetRelationship ;[\n]" +2022-11-14 09:05:22,353 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:datasetRelationRole dataid:SourceRole ;[\n]" +2022-11-14 09:05:22,353 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedRelationOf ;[\n]" +2022-11-14 09:05:22,353 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedRelationTo .[\n]" +2022-11-14 09:05:22,353 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,353 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,353 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:DatasetRelationship ;[\n]" +2022-11-14 09:05:22,353 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:datasetRelationRole dataid:SourceRole ;[\n]" +2022-11-14 09:05:22,353 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedRelationOf ;[\n]" +2022-11-14 09:05:22,353 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedRelationTo .[\n]" +2022-11-14 09:05:22,353 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,353 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,353 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:DatasetRelationship ;[\n]" +2022-11-14 09:05:22,353 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:datasetRelationRole dataid:SourceRole ;[\n]" +2022-11-14 09:05:22,353 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedRelationOf ;[\n]" +2022-11-14 09:05:22,354 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedRelationTo .[\n]" +2022-11-14 09:05:22,354 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,354 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,354 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:DatasetRelationship ;[\n]" +2022-11-14 09:05:22,354 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:datasetRelationRole dataid:SourceRole ;[\n]" +2022-11-14 09:05:22,354 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedRelationOf ;[\n]" +2022-11-14 09:05:22,354 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedRelationTo .[\n]" +2022-11-14 09:05:22,354 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,354 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,354 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:DatasetRelationship ;[\n]" +2022-11-14 09:05:22,354 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:datasetRelationRole dataid:SourceRole ;[\n]" +2022-11-14 09:05:22,354 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedRelationOf ;[\n]" +2022-11-14 09:05:22,354 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedRelationTo .[\n]" +2022-11-14 09:05:22,354 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,354 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,354 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:DatasetRelationship ;[\n]" +2022-11-14 09:05:22,354 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:datasetRelationRole dataid:SourceRole ;[\n]" +2022-11-14 09:05:22,354 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedRelationOf ;[\n]" +2022-11-14 09:05:22,354 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedRelationTo .[\n]" +2022-11-14 09:05:22,354 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,354 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,354 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:DatasetRelationship ;[\n]" +2022-11-14 09:05:22,354 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:datasetRelationRole dataid:SourceRole ;[\n]" +2022-11-14 09:05:22,354 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedRelationOf ;[\n]" +2022-11-14 09:05:22,354 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedRelationTo .[\n]" +2022-11-14 09:05:22,354 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,354 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,354 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:DatasetRelationship ;[\n]" +2022-11-14 09:05:22,354 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:datasetRelationRole dataid:SourceRole ;[\n]" +2022-11-14 09:05:22,354 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedRelationOf ;[\n]" +2022-11-14 09:05:22,354 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedRelationTo .[\n]" +2022-11-14 09:05:22,354 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,354 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,354 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:DatasetRelationship ;[\n]" +2022-11-14 09:05:22,354 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:datasetRelationRole dataid:SourceRole ;[\n]" +2022-11-14 09:05:22,354 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedRelationOf ;[\n]" +2022-11-14 09:05:22,354 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedRelationTo .[\n]" +2022-11-14 09:05:22,354 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,354 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,355 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:DatasetRelationship ;[\n]" +2022-11-14 09:05:22,355 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:datasetRelationRole dataid:SourceRole ;[\n]" +2022-11-14 09:05:22,355 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedRelationOf ;[\n]" +2022-11-14 09:05:22,355 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedRelationTo .[\n]" +2022-11-14 09:05:22,355 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,355 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,355 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:DatasetRelationship ;[\n]" +2022-11-14 09:05:22,355 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:datasetRelationRole dataid:SourceRole ;[\n]" +2022-11-14 09:05:22,355 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedRelationOf ;[\n]" +2022-11-14 09:05:22,355 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedRelationTo .[\n]" +2022-11-14 09:05:22,355 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,355 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,355 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:DatasetRelationship ;[\n]" +2022-11-14 09:05:22,355 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:datasetRelationRole dataid:SourceRole ;[\n]" +2022-11-14 09:05:22,355 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedRelationOf ;[\n]" +2022-11-14 09:05:22,355 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedRelationTo .[\n]" +2022-11-14 09:05:22,355 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,355 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,355 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:DatasetRelationship ;[\n]" +2022-11-14 09:05:22,355 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:datasetRelationRole dataid:SourceRole ;[\n]" +2022-11-14 09:05:22,355 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedRelationOf ;[\n]" +2022-11-14 09:05:22,355 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedRelationTo .[\n]" +2022-11-14 09:05:22,355 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,355 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,355 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:DatasetRelationship ;[\n]" +2022-11-14 09:05:22,355 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:datasetRelationRole dataid:SourceRole ;[\n]" +2022-11-14 09:05:22,355 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedRelationOf ;[\n]" +2022-11-14 09:05:22,355 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedRelationTo .[\n]" +2022-11-14 09:05:22,355 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,355 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,355 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:DatasetRelationship ;[\n]" +2022-11-14 09:05:22,355 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:datasetRelationRole dataid:SourceRole ;[\n]" +2022-11-14 09:05:22,355 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedRelationOf ;[\n]" +2022-11-14 09:05:22,355 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedRelationTo .[\n]" +2022-11-14 09:05:22,355 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,355 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,357 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:DatasetRelationship ;[\n]" +2022-11-14 09:05:22,357 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:datasetRelationRole dataid:SourceRole ;[\n]" +2022-11-14 09:05:22,357 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedRelationOf ;[\n]" +2022-11-14 09:05:22,357 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedRelationTo .[\n]" +2022-11-14 09:05:22,357 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,357 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,357 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:DatasetRelationship ;[\n]" +2022-11-14 09:05:22,357 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:datasetRelationRole dataid:SourceRole ;[\n]" +2022-11-14 09:05:22,357 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedRelationOf ;[\n]" +2022-11-14 09:05:22,357 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedRelationTo .[\n]" +2022-11-14 09:05:22,357 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,357 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,357 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:DatasetRelationship ;[\n]" +2022-11-14 09:05:22,357 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:datasetRelationRole dataid:SourceRole ;[\n]" +2022-11-14 09:05:22,357 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedRelationOf ;[\n]" +2022-11-14 09:05:22,357 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedRelationTo .[\n]" +2022-11-14 09:05:22,357 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,357 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,358 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:DatasetRelationship ;[\n]" +2022-11-14 09:05:22,358 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:datasetRelationRole dataid:SourceRole ;[\n]" +2022-11-14 09:05:22,358 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedRelationOf ;[\n]" +2022-11-14 09:05:22,358 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedRelationTo .[\n]" +2022-11-14 09:05:22,358 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,358 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,358 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:DatasetRelationship ;[\n]" +2022-11-14 09:05:22,358 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:datasetRelationRole dataid:SourceRole ;[\n]" +2022-11-14 09:05:22,358 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedRelationOf ;[\n]" +2022-11-14 09:05:22,358 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedRelationTo .[\n]" +2022-11-14 09:05:22,358 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,358 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,358 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:DatasetRelationship ;[\n]" +2022-11-14 09:05:22,358 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:datasetRelationRole dataid:SourceRole ;[\n]" +2022-11-14 09:05:22,358 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedRelationOf ;[\n]" +2022-11-14 09:05:22,358 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedRelationTo .[\n]" +2022-11-14 09:05:22,358 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,358 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,358 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:DatasetRelationship ;[\n]" +2022-11-14 09:05:22,358 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:datasetRelationRole dataid:SourceRole ;[\n]" +2022-11-14 09:05:22,358 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedRelationOf ;[\n]" +2022-11-14 09:05:22,358 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedRelationTo .[\n]" +2022-11-14 09:05:22,358 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,358 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,358 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:DatasetRelationship ;[\n]" +2022-11-14 09:05:22,358 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:datasetRelationRole dataid:SourceRole ;[\n]" +2022-11-14 09:05:22,358 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedRelationOf ;[\n]" +2022-11-14 09:05:22,358 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedRelationTo .[\n]" +2022-11-14 09:05:22,358 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,358 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,358 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:DatasetRelationship ;[\n]" +2022-11-14 09:05:22,358 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:datasetRelationRole dataid:SourceRole ;[\n]" +2022-11-14 09:05:22,358 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedRelationOf ;[\n]" +2022-11-14 09:05:22,358 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedRelationTo .[\n]" +2022-11-14 09:05:22,358 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,358 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,358 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:DatasetRelation" +2022-11-14 09:05:22,358 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "ship ;[\n]" +2022-11-14 09:05:22,359 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:datasetRelationRole dataid:SourceRole ;[\n]" +2022-11-14 09:05:22,359 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedRelationOf ;[\n]" +2022-11-14 09:05:22,359 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedRelationTo .[\n]" +2022-11-14 09:05:22,359 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,359 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,359 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:DatasetRelationship ;[\n]" +2022-11-14 09:05:22,359 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:datasetRelationRole dataid:SourceRole ;[\n]" +2022-11-14 09:05:22,359 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedRelationOf ;[\n]" +2022-11-14 09:05:22,359 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedRelationTo .[\n]" +2022-11-14 09:05:22,359 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,359 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,359 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:DatasetRelationship ;[\n]" +2022-11-14 09:05:22,359 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:datasetRelationRole dataid:SourceRole ;[\n]" +2022-11-14 09:05:22,359 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedRelationOf ;[\n]" +2022-11-14 09:05:22,359 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedRelationTo .[\n]" +2022-11-14 09:05:22,359 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,359 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,359 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:DatasetRelationship ;[\n]" +2022-11-14 09:05:22,359 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:datasetRelationRole dataid:SourceR" +2022-11-14 09:05:22,360 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "ole ;[\n]" +2022-11-14 09:05:22,360 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedRelationOf ;[\n]" +2022-11-14 09:05:22,360 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedRelationTo .[\n]" +2022-11-14 09:05:22,360 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,360 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,360 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:DatasetRelationship ;[\n]" +2022-11-14 09:05:22,360 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:datasetRelationRole dataid:SourceRole ;[\n]" +2022-11-14 09:05:22,360 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedRelationOf ;[\n]" +2022-11-14 09:05:22,360 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedRelationTo .[\n]" +2022-11-14 09:05:22,360 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,360 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,360 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:DatasetRelationship ;[\n]" +2022-11-14 09:05:22,360 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:datasetRelationRole dataid:SourceRole ;[\n]" +2022-11-14 09:05:22,360 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedRelationOf ;[\n]" +2022-11-14 09:05:22,360 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedRelationTo .[\n]" +2022-11-14 09:05:22,360 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,360 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,360 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:DatasetRelationship ;[\n]" +2022-11-14 09:05:22,360 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:datasetRelationRole dataid:SourceRole ;[\n]" +2022-11-14 09:05:22,360 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qual" +2022-11-14 09:05:22,361 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "ifiedRelationOf ;[\n]" +2022-11-14 09:05:22,361 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedRelationTo .[\n]" +2022-11-14 09:05:22,361 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,361 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,361 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:DatasetRelationship ;[\n]" +2022-11-14 09:05:22,361 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:datasetRelationRole dataid:SourceRole ;[\n]" +2022-11-14 09:05:22,361 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedRelationOf ;[\n]" +2022-11-14 09:05:22,361 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedRelationTo .[\n]" +2022-11-14 09:05:22,361 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,361 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,361 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:DatasetRelationship ;[\n]" +2022-11-14 09:05:22,361 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:datasetRelationRole dataid:SourceRole ;[\n]" +2022-11-14 09:05:22,361 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedRelationOf ;[\n]" +2022-11-14 09:05:22,361 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedRelationTo .[\n]" +2022-11-14 09:05:22,361 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,361 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,361 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:DatasetRelationship ;[\n]" +2022-11-14 09:05:22,361 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:datasetRelationRole dataid:SourceRole ;[\n]" +2022-11-14 09:05:22,361 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedRelationOf ;[\n]" +2022-11-14 09:05:22,361 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedRelationTo .[\n]" +2022-11-14 09:05:22,361 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,361 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,361 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:DatasetRelationship ;[\n]" +2022-11-14 09:05:22,361 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:datasetRelationRole dataid:SourceRole ;[\n]" +2022-11-14 09:05:22,361 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedRelationOf ;[\n]" +2022-11-14 09:05:22,361 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedRelationTo .[\n]" +2022-11-14 09:05:22,361 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,361 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,361 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:DatasetRelationship ;[\n]" +2022-11-14 09:05:22,361 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:datasetRelationRole dataid:SourceRole ;[\n]" +2022-11-14 09:05:22,361 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedRelationOf ;[\n]" +2022-11-14 09:05:22,361 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedRelationTo .[\n]" +2022-11-14 09:05:22,361 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,361 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,361 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:DatasetRelationship ;[\n]" +2022-11-14 09:05:22,361 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:datasetRelationRole dataid:SourceRole ;[\n]" +2022-11-14 09:05:22,361 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedRelationOf ;[\n]" +2022-11-14 09:05:22,361 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedRelationTo .[\n]" +2022-11-14 09:05:22,362 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,362 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,362 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:DatasetRelationship ;[\n]" +2022-11-14 09:05:22,362 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:datasetRelationRole dataid:SourceRole ;[\n]" +2022-11-14 09:05:22,362 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedRelationOf ;[\n]" +2022-11-14 09:05:22,362 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedRelationTo .[\n]" +2022-11-14 09:05:22,362 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,362 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,362 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:DatasetRelationship ;[\n]" +2022-11-14 09:05:22,362 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:datasetRelationRole dataid:SourceRole ;[\n]" +2022-11-14 09:05:22,362 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedRelationOf ;[\n]" +2022-11-14 09:05:22,362 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedRelationTo .[\n]" +2022-11-14 09:05:22,362 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,362 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,362 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:DatasetRelationship ;[\n]" +2022-11-14 09:05:22,362 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:datasetRelationRole dataid:SourceRole ;[\n]" +2022-11-14 09:05:22,362 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedRelationOf ;[\n]" +2022-11-14 09:05:22,362 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedRelationTo .[\n]" +2022-11-14 09:05:22,362 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,362 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,362 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:DatasetRelationship ;[\n]" +2022-11-14 09:05:22,362 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:datasetRelationRole dataid:SourceRole ;[\n]" +2022-11-14 09:05:22,362 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedRelationOf ;[\n]" +2022-11-14 09:05:22,362 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedRelationTo .[\n]" +2022-11-14 09:05:22,362 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,362 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,362 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:DatasetRelationship ;[\n]" +2022-11-14 09:05:22,362 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:datasetRelationRole dataid:SourceRole ;[\n]" +2022-11-14 09:05:22,362 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedRelationOf ;[\n]" +2022-11-14 09:05:22,362 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedRelationTo .[\n]" +2022-11-14 09:05:22,362 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,362 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,362 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:DatasetRelationship ;[\n]" +2022-11-14 09:05:22,362 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:datasetRelationRole dataid:SourceRole ;[\n]" +2022-11-14 09:05:22,362 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedRelationOf ;[\n]" +2022-11-14 09:05:22,362 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedRelationTo .[\n]" +2022-11-14 09:05:22,362 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,362 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,362 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:DatasetRelationship ;[\n]" +2022-11-14 09:05:22,362 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:datasetRelationRole dataid:SourceRole ;[\n]" +2022-11-14 09:05:22,362 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedRelationOf ;[\n]" +2022-11-14 09:05:22,362 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedRelationTo .[\n]" +2022-11-14 09:05:22,362 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,362 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,363 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:DatasetRelationship ;[\n]" +2022-11-14 09:05:22,363 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:datasetRelationRole dataid:SourceRole ;[\n]" +2022-11-14 09:05:22,363 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedRelationOf ;[\n]" +2022-11-14 09:05:22,363 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedRelationTo .[\n]" +2022-11-14 09:05:22,363 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,363 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,363 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:DatasetRelationship ;[\n]" +2022-11-14 09:05:22,363 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:datasetRelationRole dataid:SourceRole ;[\n]" +2022-11-14 09:05:22,363 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedRelationOf ;[\n]" +2022-11-14 09:05:22,363 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedRelationTo .[\n]" +2022-11-14 09:05:22,363 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,363 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,364 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:DatasetRelationship ;[\n]" +2022-11-14 09:05:22,364 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:datasetRelationRole dataid:SourceRole ;[\n]" +2022-11-14 09:05:22,364 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedRelationOf ;[\n]" +2022-11-14 09:05:22,364 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedRelationTo .[\n]" +2022-11-14 09:05:22,364 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,364 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,364 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:DatasetRelationship ;[\n]" +2022-11-14 09:05:22,364 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:datasetRelationRole dataid:SourceRole ;[\n]" +2022-11-14 09:05:22,364 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedRelationOf ;[\n]" +2022-11-14 09:05:22,364 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedRelationTo .[\n]" +2022-11-14 09:05:22,364 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,364 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,364 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:DatasetRelationship ;[\n]" +2022-11-14 09:05:22,364 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:datasetRelationRole dataid:SourceRole ;[\n]" +2022-11-14 09:05:22,364 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedRelationOf ;[\n]" +2022-11-14 09:05:22,364 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedRelationTo .[\n]" +2022-11-14 09:05:22,364 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,364 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,364 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:DatasetRelationship ;[\n]" +2022-11-14 09:05:22,364 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:datasetRelationRole dataid:SourceRole ;[\n]" +2022-11-14 09:05:22,364 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedRelationOf ;[\n]" +2022-11-14 09:05:22,364 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedRelationTo .[\n]" +2022-11-14 09:05:22,364 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,364 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,364 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:DatasetRelationship ;[\n]" +2022-11-14 09:05:22,364 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:datasetRelationRole dataid:SourceRole ;[\n]" +2022-11-14 09:05:22,364 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedRelationOf ;[\n]" +2022-11-14 09:05:22,364 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedRelationTo .[\n]" +2022-11-14 09:05:22,364 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,364 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,364 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:DatasetRelationship ;[\n]" +2022-11-14 09:05:22,364 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:datasetRelationRole dataid:SourceRole ;[\n]" +2022-11-14 09:05:22,364 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedRelationOf ;[\n]" +2022-11-14 09:05:22,364 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedRelationTo .[\n]" +2022-11-14 09:05:22,364 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,364 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,364 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:DatasetRelationship ;[\n]" +2022-11-14 09:05:22,364 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:datasetRelationRole dataid:Source" +2022-11-14 09:05:22,364 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "Role ;[\n]" +2022-11-14 09:05:22,364 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedRelationOf ;[\n]" +2022-11-14 09:05:22,365 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedRelationTo .[\n]" +2022-11-14 09:05:22,365 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,365 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,365 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:DatasetRelationship ;[\n]" +2022-11-14 09:05:22,365 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:datasetRelationRole dataid:SourceRole ;[\n]" +2022-11-14 09:05:22,365 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedRelationOf ;[\n]" +2022-11-14 09:05:22,365 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedRelationTo .[\n]" +2022-11-14 09:05:22,365 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,365 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,365 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:DatasetRelationship ;[\n]" +2022-11-14 09:05:22,365 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:datasetRelationRole dataid:SourceRole ;[\n]" +2022-11-14 09:05:22,365 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedRelationOf ;[\n]" +2022-11-14 09:05:22,365 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedRelationTo .[\n]" +2022-11-14 09:05:22,365 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,365 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,365 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:DatasetRelationship ;[\n]" +2022-11-14 09:05:22,365 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:datasetRelationRole dataid:SourceRole ;[\n]" +2022-11-14 09:05:22,365 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:quali" +2022-11-14 09:05:22,366 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "fiedRelationOf ;[\n]" +2022-11-14 09:05:22,366 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedRelationTo .[\n]" +2022-11-14 09:05:22,366 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,366 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,366 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:DatasetRelationship ;[\n]" +2022-11-14 09:05:22,366 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:datasetRelationRole dataid:SourceRole ;[\n]" +2022-11-14 09:05:22,366 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedRelationOf ;[\n]" +2022-11-14 09:05:22,366 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedRelationTo .[\n]" +2022-11-14 09:05:22,366 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,366 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,366 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:DatasetRelationship ;[\n]" +2022-11-14 09:05:22,366 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:datasetRelationRole dataid:SourceRole ;[\n]" +2022-11-14 09:05:22,366 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedRelationOf ;[\n]" +2022-11-14 09:05:22,366 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedRelationTo .[\n]" +2022-11-14 09:05:22,366 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,366 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,366 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:DatasetRelationship ;[\n]" +2022-11-14 09:05:22,366 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:datasetRelationRole dataid:SourceRole ;[\n]" +2022-11-14 09:05:22,366 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedRelationOf ;[\n]" +2022-11-14 09:05:22,366 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedRelationTo .[\n]" +2022-11-14 09:05:22,366 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,366 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,366 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:DatasetRelationship ;[\n]" +2022-11-14 09:05:22,366 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:datasetRelationRole dataid:SourceRole ;[\n]" +2022-11-14 09:05:22,366 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedRelationOf ;[\n]" +2022-11-14 09:05:22,366 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedRelationTo .[\n]" +2022-11-14 09:05:22,366 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,366 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,366 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:DatasetRelationship ;[\n]" +2022-11-14 09:05:22,366 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:datasetRelationRole dataid:SourceRole ;[\n]" +2022-11-14 09:05:22,366 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedRelationOf ;[\n]" +2022-11-14 09:05:22,366 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedRelationTo .[\n]" +2022-11-14 09:05:22,366 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,366 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "########### Checksums ###########[\n]" +2022-11-14 09:05:22,366 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,366 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,366 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a spdx:Checksum ;[\n]" +2022-11-14 09:05:22,366 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:algorithm spdx:checksumAlgorithm_md5 ;[\n]" +2022-11-14 09:05:22,366 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:checksumValue "e65cd9343be6f09bbf7b811e13f6bcfe"^^xsd:hexBinary .[\n]" +2022-11-14 09:05:22,366 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,366 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,366 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a spdx:Checksum ;[\n]" +2022-11-14 09:05:22,366 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:algorithm spdx:checksumAlgorithm_md5 ;[\n]" +2022-11-14 09:05:22,366 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:checksumValue "a2c6854558783acca57b3cf2ce2166bd"^^xsd:hexBinary .[\n]" +2022-11-14 09:05:22,366 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,366 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,366 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a spdx:Checksum ;[\n]" +2022-11-14 09:05:22,366 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:algorithm spdx:checksumAlgorithm_md5 ;[\n]" +2022-11-14 09:05:22,366 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:checksumValue "c295c6cb6626bd2961ff71689baf8b18"^^xsd:hexBinary .[\n]" +2022-11-14 09:05:22,366 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,366 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,366 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a spdx:Checksum ;[\n]" +2022-11-14 09:05:22,366 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:algorithm spdx:checksumAlgorithm_md5 ;[\n]" +2022-11-14 09:05:22,366 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:checksumValue "4134b2dd10b7407f9db2445aa632ed47"^^xsd:hexBinary .[\n]" +2022-11-14 09:05:22,366 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,366 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,366 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a spdx:Checksum ;[\n]" +2022-11-14 09:05:22,366 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:algorithm spdx:checksumAlgorithm_md5 ;[\n]" +2022-11-14 09:05:22,366 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:checksumValue "cc351480d8d0f758b71ba75674458d6f"^^xsd:hexBinary .[\n]" +2022-11-14 09:05:22,366 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,366 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,366 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a spdx:Checksum ;[\n]" +2022-11-14 09:05:22,366 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:algorithm spdx:checksumAlgorithm_md5 ;[\n]" +2022-11-14 09:05:22,366 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:checksumValue "0546ef820cc136e05a825f58b6b" +2022-11-14 09:05:22,367 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "c0714"^^xsd:hexBinary .[\n]" +2022-11-14 09:05:22,367 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,367 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,367 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a spdx:Checksum ;[\n]" +2022-11-14 09:05:22,367 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:algorithm spdx:checksumAlgorithm_md5 ;[\n]" +2022-11-14 09:05:22,367 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:checksumValue "8a0769bd605b42b8aa32d81334a90cea"^^xsd:hexBinary .[\n]" +2022-11-14 09:05:22,367 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,367 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,367 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a spdx:Checksum ;[\n]" +2022-11-14 09:05:22,367 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:algorithm spdx:checksumAlgorithm_md5 ;[\n]" +2022-11-14 09:05:22,367 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:checksumValue "20c4042809657d6ec896f49ca74ff4b6"^^xsd:hexBinary .[\n]" +2022-11-14 09:05:22,367 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,367 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,367 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a spdx:Checksum ;[\n]" +2022-11-14 09:05:22,367 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:algorithm spdx:checksumAlgorithm_md5 ;[\n]" +2022-11-14 09:05:22,367 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:checksumValue "2280c7bfd1ec96fe9faaf10f22f7bffe"^^xsd:hexBinary .[\n]" +2022-11-14 09:05:22,367 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,367 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,367 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a spdx:Checksum ;[\n]" +2022-11-14 09:05:22,367 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:algorithm spdx:checksumAlgorithm_md5 ;[\n]" +2022-11-14 09:05:22,367 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:checksumValue "b45d9ef0deebbbd826916fd5c26de8e8"^^xsd:hexBinary .[\n]" +2022-11-14 09:05:22,367 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,367 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,367 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " " +2022-11-14 09:05:22,367 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a spdx:Checksum ;[\n]" +2022-11-14 09:05:22,367 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:algorithm spdx:checksumAlgorithm_md5 ;[\n]" +2022-11-14 09:05:22,367 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:checksumValue "1d9df9dd77dd3efd8b4fdbbac1032b28"^^xsd:hexBinary .[\n]" +2022-11-14 09:05:22,367 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,367 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,367 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a spdx:Checksum ;[\n]" +2022-11-14 09:05:22,367 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:algorithm spdx:checksumAlgorithm_md5 ;[\n]" +2022-11-14 09:05:22,367 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:checksumValue "464c49c45e765e6fb7fb38e767f559fb"^^xsd:hexBinary .[\n]" +2022-11-14 09:05:22,367 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,367 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,367 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a spdx:Checksum ;[\n]" +2022-11-14 09:05:22,367 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:algorithm spdx:checksumAlgorithm_md5 ;[\n]" +2022-11-14 09:05:22,367 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:checksumValue "ee53aeefc68cd4c0d36807a22654a9b4"^^xsd:hexBinary .[\n]" +2022-11-14 09:05:22,367 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,367 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,367 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a spdx:Checksum ;[\n]" +2022-11-14 09:05:22,367 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:algorithm spdx:checksumAlgorithm_md5 ;[\n]" +2022-11-14 09:05:22,367 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:checksumValue "ee8098fb96e3c52a04ee3b6039fd143d"^^xsd:hexBinary .[\n]" +2022-11-14 09:05:22,367 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,367 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,367 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a spdx:Checksum ;[\n]" +2022-11-14 09:05:22,367 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:algorithm spdx:checksumAlgorithm_md5 ;[\n]" +2022-11-14 09:05:22,367 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:checksumValue "1547271f9812257b4b3919346e506322"^^xsd:hexBinary .[\n]" +2022-11-14 09:05:22,367 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,367 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,368 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a spdx:Checksum ;[\n]" +2022-11-14 09:05:22,368 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:algorithm spdx:checksumAlgorithm_md5 ;[\n]" +2022-11-14 09:05:22,368 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:checksumValue "cf3417afe5aef781f6583c8887c29750"^^xsd:hexBinary .[\n]" +2022-11-14 09:05:22,368 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,368 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,368 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a spdx:Checksum ;[\n]" +2022-11-14 09:05:22,368 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:algorithm spdx:checksumAlgorithm_md5 ;[\n]" +2022-11-14 09:05:22,368 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:checksumValue "12b4ed35bca932540a341ddafaac21ea"^^xsd:hexBinary .[\n]" +2022-11-14 09:05:22,368 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,368 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,368 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a spdx:Checksum ;[\n]" +2022-11-14 09:05:22,368 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:algorithm spdx:checksumAlgorithm_md5 ;[\n]" +2022-11-14 09:05:22,368 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:checksumValue "67fad6b8669b9276dc9142dcc6b14be6"^^xsd:hexBinary .[\n]" +2022-11-14 09:05:22,368 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,368 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,368 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a spdx:Checksum ;[\n]" +2022-11-14 09:05:22,368 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:algorithm spdx:checksumAlgorithm_md5 ;[\n]" +2022-11-14 09:05:22,368 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:checksumValue "e1baacba7d7cd1f3a7afa36fac1da022"^^xsd:hexBinary .[\n]" +2022-11-14 09:05:22,368 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,368 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,368 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a spdx:Checksum ;[\n]" +2022-11-14 09:05:22,368 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:algorithm spdx:checksumAlgorithm_md5 ;[\n]" +2022-11-14 09:05:22,368 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:checksumValue "1928a0dc01e19ae186cc9a6" +2022-11-14 09:05:22,369 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "6ba8df8b5"^^xsd:hexBinary .[\n]" +2022-11-14 09:05:22,369 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,369 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,369 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a spdx:Checksum ;[\n]" +2022-11-14 09:05:22,369 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:algorithm spdx:checksumAlgorithm_md5 ;[\n]" +2022-11-14 09:05:22,369 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:checksumValue "829fd6aaa983ca13804919b57b7c8be3"^^xsd:hexBinary .[\n]" +2022-11-14 09:05:22,369 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,369 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,369 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a spdx:Checksum ;[\n]" +2022-11-14 09:05:22,369 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:algorithm spdx:checksumAlgorithm_md5 ;[\n]" +2022-11-14 09:05:22,369 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:checksumValue "7a3c85c16492575a0f909f05f14c00b0"^^xsd:hexBinary .[\n]" +2022-11-14 09:05:22,369 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,369 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,369 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a spdx:Checksum ;[\n]" +2022-11-14 09:05:22,369 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:algorithm spdx:checksumAlgorithm_md5 ;[\n]" +2022-11-14 09:05:22,369 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:checksumValue "d4f3339e3484ea4a855680c7b4cbe649"^^xsd:hexBinary .[\n]" +2022-11-14 09:05:22,369 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,369 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,369 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a spdx:Checksum ;[\n]" +2022-11-14 09:05:22,369 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:algorithm spdx:checksumAlgorithm_md5 ;[\n]" +2022-11-14 09:05:22,369 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:checksumValue "f11f670517dc3c0e16fc7a22a81e2d9f"^^xsd:hexBinary .[\n]" +2022-11-14 09:05:22,369 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,369 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,370 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a spdx:Checksum ;[\n]" +2022-11-14 09:05:22,370 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:algorithm spdx:checksumAlgorithm_md5 ;[\n]" +2022-11-14 09:05:22,370 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:checksumValue "8ce143c04440dd4d5bd4eb2e76b33008"^^xsd:hexBinary .[\n]" +2022-11-14 09:05:22,370 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,370 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,370 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a spdx:Checksum ;[\n]" +2022-11-14 09:05:22,370 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:algorithm spdx:checksumAlgorithm_md5 ;[\n]" +2022-11-14 09:05:22,370 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:checksumValue "cae43aec70879031f3b619583f4c4103"^^xsd:hexBinary .[\n]" +2022-11-14 09:05:22,370 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,370 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,370 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a spdx:Checksum ;[\n]" +2022-11-14 09:05:22,370 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:algorithm spdx:checksumAlgorithm_md5 ;[\n]" +2022-11-14 09:05:22,370 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:checksumValue "aff85a617cb566d9a65683e49c00b3a3"^^xsd:hexBinary .[\n]" +2022-11-14 09:05:22,370 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,370 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,370 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a spdx:Checksum ;[\n]" +2022-11-14 09:05:22,370 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:algorithm spdx:checksumAlgorithm_md5 ;[\n]" +2022-11-14 09:05:22,370 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:checksumValue "233e71d0590c8484df1841ac7a614344"^^xsd:hexBinary .[\n]" +2022-11-14 09:05:22,370 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,370 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,370 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a spdx:Checksum ;[\n]" +2022-11-14 09:05:22,370 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:algorithm spdx:checksumAlgorithm_md5 ;[\n]" +2022-11-14 09:05:22,370 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:checksumValue "9444fc15c77fada62cd8" +2022-11-14 09:05:22,370 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "29fc19200547"^^xsd:hexBinary .[\n]" +2022-11-14 09:05:22,370 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,370 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,370 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a spdx:Checksum ;[\n]" +2022-11-14 09:05:22,370 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:algorithm spdx:checksumAlgorithm_md5 ;[\n]" +2022-11-14 09:05:22,370 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:checksumValue "39860a740196740468247913b55cd505"^^xsd:hexBinary .[\n]" +2022-11-14 09:05:22,370 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,370 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,370 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a spdx:Checksum ;[\n]" +2022-11-14 09:05:22,370 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:algorithm spdx:checksumAlgorithm_md5 ;[\n]" +2022-11-14 09:05:22,370 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:checksumValue "fbd228e85115d4b417679f429d630626"^^xsd:hexBinary .[\n]" +2022-11-14 09:05:22,370 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,370 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,370 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a spdx:Checksum ;[\n]" +2022-11-14 09:05:22,370 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:algorithm spdx:checksumAlgorithm_md5 ;[\n]" +2022-11-14 09:05:22,370 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:checksumValue "f8a39963d54d8148c6222436db18983e"^^xsd:hexBinary .[\n]" +2022-11-14 09:05:22,370 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,370 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,370 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a spdx:Checksum ;[\n]" +2022-11-14 09:05:22,370 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:algorithm spdx:checksumAlgorithm_md5 ;[\n]" +2022-11-14 09:05:22,370 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:checksumValue "e349b0cf1df7b2287e44d50ca31f9c7b"^^xsd:hexBinary .[\n]" +2022-11-14 09:05:22,370 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,370 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,370 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a spdx:Checksum ;[\n]" +2022-11-14 09:05:22,370 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:algorithm spdx:checksumAlgorithm_md5 ;[\n]" +2022-11-14 09:05:22,370 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:checksumValue "56fca6fa1d2ec7462bf44af0811fdcaa"^^xsd:hexBinary .[\n]" +2022-11-14 09:05:22,370 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,370 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,370 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a spdx:Checksum ;[\n]" +2022-11-14 09:05:22,370 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:algorithm spdx:checksumAlgorithm_md5 ;[\n]" +2022-11-14 09:05:22,370 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:checksumValue "302edfe3355b557b94afe8a1d161a118"^^xsd:hexBinary .[\n]" +2022-11-14 09:05:22,370 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,370 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,370 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a spdx:Checksum ;[\n]" +2022-11-14 09:05:22,370 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:algorithm spdx:checksumAlgorithm_md5 ;[\n]" +2022-11-14 09:05:22,370 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:checksumValue "ed08b7107080e903817a0b922d3c2346"^^xsd:hexBinary .[\n]" +2022-11-14 09:05:22,370 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,370 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,370 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a spdx:Checksum ;[\n]" +2022-11-14 09:05:22,370 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:algorithm spdx:checksumAlgorithm_md5 ;[\n]" +2022-11-14 09:05:22,370 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:checksumValue "d9619b328c7b66c765efa8ea7e48bcb7"^^xsd:hexBinary .[\n]" +2022-11-14 09:05:22,370 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,370 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,370 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a spdx:Checksum ;[\n]" +2022-11-14 09:05:22,370 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:algorithm spdx:checksumAlgorithm_md5 ;[\n]" +2022-11-14 09:05:22,370 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:checksumValue "d9a441ca7d85c2fd7d4cc4895dfa24d6"^^xsd:hexBinary .[\n]" +2022-11-14 09:05:22,370 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,370 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,370 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a spdx:Checksum ;[\n]" +2022-11-14 09:05:22,370 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:algorithm spdx:checksumAlgorithm_md5 ;[\n]" +2022-11-14 09:05:22,370 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:checksumValue "638cbae6f147d3d21687bf84e32ece3d"^^xsd:hexBinary .[\n]" +2022-11-14 09:05:22,370 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,370 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,370 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a spdx:Checksum ;[\n]" +2022-11-14 09:05:22,370 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:algorithm spdx:checksumAlgorithm_md5 ;[\n]" +2022-11-14 09:05:22,370 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:checksumValue "f8917584171c3e52fbc6a4ef79007283"^^xsd:hexBinary .[\n]" +2022-11-14 09:05:22,370 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,370 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,370 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a spdx:Checksum ;[\n]" +2022-11-14 09:05:22,370 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:algorithm spdx:checksumAlgorithm_md5 ;[\n]" +2022-11-14 09:05:22,370 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:checksumValue "9e4050e25e688ebee028071e5b4efb8f"^^xsd:hexBinary .[\n]" +2022-11-14 09:05:22,370 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,370 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,370 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a spdx:Checksum ;[\n]" +2022-11-14 09:05:22,370 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:algorithm spdx:checksumAlgorithm_md5 ;[\n]" +2022-11-14 09:05:22,370 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:checksumValue "262ed98b0b4a402b4b8462410c624aef"^^xsd:hexBinary .[\n]" +2022-11-14 09:05:22,370 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,370 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,371 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a spdx:Checksum ;[\n]" +2022-11-14 09:05:22,371 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:algorithm spdx:checksumAlgorithm_md5 ;[\n]" +2022-11-14 09:05:22,371 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:checksumValue "3a15302337017608a3008f49cb31456a"^^xsd:hexBinary .[\n]" +2022-11-14 09:05:22,372 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,372 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,372 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a spdx:Checksum ;[\n]" +2022-11-14 09:05:22,372 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:algorithm spdx:checksumAlgorithm_md5 ;[\n]" +2022-11-14 09:05:22,372 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:checksumValue "eb8faa8cf104b4ae8f1143f1c76103c9"^^xsd:hexBinary .[\n]" +2022-11-14 09:05:22,372 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,372 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,372 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a spdx:Checksum ;[\n]" +2022-11-14 09:05:22,372 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:algorithm spdx:checksumAlgorithm_md5 ;[\n]" +2022-11-14 09:05:22,372 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:checksumValue "7292022e5b26d854e95cab4d4c93ca8e"^^xsd:hexBinary .[\n]" +2022-11-14 09:05:22,372 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,372 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,372 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a spdx:Checksum ;[\n]" +2022-11-14 09:05:22,372 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:algorithm spdx:checksumAlgorithm_md5 ;[\n]" +2022-11-14 09:05:22,372 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:checksumValue "e72e4735bb0988943489b78b61965347"^^xsd:hexBinary .[\n]" +2022-11-14 09:05:22,372 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,372 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,372 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a spdx:Checksum ;[\n]" +2022-11-14 09:05:22,372 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:algorithm spdx:checksumAlgorithm_md5 ;[\n]" +2022-11-14 09:05:22,372 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:checks" +2022-11-14 09:05:22,373 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "umValue "1816d4407296f6f13e5494ca12f9a1ee"^^xsd:hexBinary .[\n]" +2022-11-14 09:05:22,373 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,373 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,373 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a spdx:Checksum ;[\n]" +2022-11-14 09:05:22,373 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:algorithm spdx:checksumAlgorithm_md5 ;[\n]" +2022-11-14 09:05:22,373 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:checksumValue "d659e60e3175384b3c43cbd13aa4738e"^^xsd:hexBinary .[\n]" +2022-11-14 09:05:22,373 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,373 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,373 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a spdx:Checksum ;[\n]" +2022-11-14 09:05:22,373 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:algorithm spdx:checksumAlgorithm_md5 ;[\n]" +2022-11-14 09:05:22,373 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:checksumValue "aaf60c245ed504b77179dbed5af47fe4"^^xsd:hexBinary .[\n]" +2022-11-14 09:05:22,373 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,373 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,373 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a spdx:Checksum ;[\n]" +2022-11-14 09:05:22,373 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:algorithm spdx:checksumAlgorithm_md5 ;[\n]" +2022-11-14 09:05:22,373 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:checksumValue "786eb6da2abedd1f680f3d064b6fa755"^^xsd:hexBinary .[\n]" +2022-11-14 09:05:22,373 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,373 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,373 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a spdx:Checksum ;[\n]" +2022-11-14 09:05:22,373 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:algorithm spdx:checksumAlgorithm_md5 ;[\n]" +2022-11-14 09:05:22,373 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:checksumValue "0bec230ae212b1fce4e8a9cf81ff6908"^^xsd:hexBinary .[\n]" +2022-11-14 09:05:22,373 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,373 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,373 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a spdx:Checksum ;[\n]" +2022-11-14 09:05:22,373 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:algorithm spdx:checksumAlgorithm_md5 ;[\n]" +2022-11-14 09:05:22,373 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:checksumValue "35a9189c784dc25a33320104367e79b4"^^xsd:hexBinary .[\n]" +2022-11-14 09:05:22,373 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,373 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,373 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a spdx:Checksum ;[\n]" +2022-11-14 09:05:22,373 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:algorithm spdx:checksumAlgorithm_md5 ;[\n]" +2022-11-14 09:05:22,373 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:checksumValue "ced1a155da4fd4eb36f1f46ed8ab4565"^^xsd:hexBinary .[\n]" +2022-11-14 09:05:22,373 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,373 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,373 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a spdx:Checksum ;[\n]" +2022-11-14 09:05:22,373 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:algorithm spdx:checksumAlgorithm_md5 ;[\n]" +2022-11-14 09:05:22,373 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:checksumValue "307f1d49c5b612626eab283f99c66c20"^^xsd:hexBinary .[\n]" +2022-11-14 09:05:22,373 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,373 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,373 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a spdx:Checksum ;[\n]" +2022-11-14 09:05:22,373 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:algorithm spdx:checksumAlgorithm_md5 ;[\n]" +2022-11-14 09:05:22,373 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:checksumValue "c0422548d6a15ee9bda41a6b78619fed"^^xsd:hexBinary .[\n]" +2022-11-14 09:05:22,373 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,373 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,373 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a spdx:Checksum ;[\n]" +2022-11-14 09:05:22,373 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:algorithm spdx:checksumAlgorithm_md5 ;[\n]" +2022-11-14 09:05:22,373 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:checksumValue "0513caf049c2a2ce42ef41576b2" +2022-11-14 09:05:22,374 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "60589"^^xsd:hexBinary .[\n]" +2022-11-14 09:05:22,374 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,374 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,374 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a spdx:Checksum ;[\n]" +2022-11-14 09:05:22,374 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:algorithm spdx:checksumAlgorithm_md5 ;[\n]" +2022-11-14 09:05:22,374 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:checksumValue "963c3f5dc8340897395f8ccd20284566"^^xsd:hexBinary .[\n]" +2022-11-14 09:05:22,374 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,374 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,374 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a spdx:Checksum ;[\n]" +2022-11-14 09:05:22,374 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:algorithm spdx:checksumAlgorithm_md5 ;[\n]" +2022-11-14 09:05:22,374 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:checksumValue "eb489271a7b230085889b89da21cf84f"^^xsd:hexBinary .[\n]" +2022-11-14 09:05:22,374 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,374 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,374 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a spdx:Checksum ;[\n]" +2022-11-14 09:05:22,374 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:algorithm spdx:checksumAlgorithm_md5 ;[\n]" +2022-11-14 09:05:22,374 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:checksumValue "1bf56bcb643a52591e4fa7ba391738dd"^^xsd:hexBinary .[\n]" +2022-11-14 09:05:22,374 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,374 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,374 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a spdx:Checksum ;[\n]" +2022-11-14 09:05:22,374 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:algorithm spdx:checksumAlgorithm_md5 ;[\n]" +2022-11-14 09:05:22,374 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:checksumValue "c67f838a691dfcd33bc94b2b1a1709dd"^^xsd:hexBinary .[\n]" +2022-11-14 09:05:22,374 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,374 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,374 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a spdx:Checksum ;[\n]" +2022-11-14 09:05:22,374 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:algorithm spdx:checksumAlgorithm_md5 ;[\n]" +2022-11-14 09:05:22,374 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:checksumValue "caf8c4ea1c456a63a21abdf9bef024e6"^^xsd:hexBinary .[\n]" +2022-11-14 09:05:22,374 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,374 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,374 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a spdx:Checksum ;[\n]" +2022-11-14 09:05:22,374 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:algorithm spdx:checksumAlgorithm_md5 ;[\n]" +2022-11-14 09:05:22,374 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:checksumValue "29fc0ad1292283de9f1f975caf9e3c6c"^^xsd:hexBinary .[\n]" +2022-11-14 09:05:22,374 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,374 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,374 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a spdx:Checksum ;[\n]" +2022-11-14 09:05:22,374 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:algorithm spdx:checksumAlgorithm_md5 ;[\n]" +2022-11-14 09:05:22,374 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:checksumValue "146df67eadffc83dc4073529850ad0cb"^^xsd:hexBinary .[\n]" +2022-11-14 09:05:22,374 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,374 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,374 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a spdx:Checksum ;[\n]" +2022-11-14 09:05:22,374 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:algorithm spdx:checksumAlgorithm_md5 ;[\n]" +2022-11-14 09:05:22,374 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:checksumValue "faad68db26184d149c4ef9d340cb3886"^^xsd:hexBinary .[\n]" +2022-11-14 09:05:22,374 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,374 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,374 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a spdx:Checksum ;[\n]" +2022-11-14 09:05:22,374 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:algorithm spdx:checksumAlgorithm_md5 ;[\n]" +2022-11-14 09:05:22,374 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:checksumValue "84bd4c4728aac5b441db83e2288691b4"^^xsd:hexBinary .[\n]" +2022-11-14 09:05:22,374 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,374 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,375 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a spdx:Checksum ;[\n]" +2022-11-14 09:05:22,375 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:algorithm spdx:checksumAlgorithm_md5 ;[\n]" +2022-11-14 09:05:22,375 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:checksumValue "0eb49f8b6ecdbe0dcccc054497565256"^^xsd:hexBinary .[\n]" +2022-11-14 09:05:22,375 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,375 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,375 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a spdx:Checksum ;[\n]" +2022-11-14 09:05:22,375 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:algorithm spdx:checksumAlgorithm_md5 ;[\n]" +2022-11-14 09:05:22,375 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:checksumValue "3f5b546ac6fa7eb98eef43bfe515949d"^^xsd:hexBinary .[\n]" +2022-11-14 09:05:22,375 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,375 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,375 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a spdx:Checksum ;[\n]" +2022-11-14 09:05:22,375 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:algorithm spdx:checksumAlgorithm_md5 ;[\n]" +2022-11-14 09:05:22,375 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:checksumValue "5dfd5a82110dd06ec4c23665a34b69a4"^^xsd:hexBinary .[\n]" +2022-11-14 09:05:22,375 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,375 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,375 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a spdx:Checksum ;[\n]" +2022-11-14 09:05:22,375 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:algorithm spdx:checksumAlgorithm_md5 ;[\n]" +2022-11-14 09:05:22,375 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:checksumValue "0bde51ad6099e859e9e65ae89c5dda6b"^^xsd:hexBinary .[\n]" +2022-11-14 09:05:22,375 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,375 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,375 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a spdx:Checksum ;[\n]" +2022-11-14 09:05:22,375 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:algorithm " +2022-11-14 09:05:22,376 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:checksumAlgorithm_md5 ;[\n]" +2022-11-14 09:05:22,376 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:checksumValue "87adc9b99075d28edc82c94c25a43fca"^^xsd:hexBinary .[\n]" +2022-11-14 09:05:22,376 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,376 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,376 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a spdx:Checksum ;[\n]" +2022-11-14 09:05:22,376 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:algorithm spdx:checksumAlgorithm_md5 ;[\n]" +2022-11-14 09:05:22,376 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:checksumValue "708b4d98fe4234d68d14afc8b47f39d2"^^xsd:hexBinary .[\n]" +2022-11-14 09:05:22,376 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,376 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,376 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a spdx:Checksum ;[\n]" +2022-11-14 09:05:22,376 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:algorithm spdx:checksumAlgorithm_md5 ;[\n]" +2022-11-14 09:05:22,376 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:checksumValue "e6e2c0351991cf4681a0e91399fd775a"^^xsd:hexBinary .[\n]" +2022-11-14 09:05:22,376 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,376 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,376 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a spdx:Checksum ;[\n]" +2022-11-14 09:05:22,376 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:algorithm spdx:checksumAlgorithm_md5 ;[\n]" +2022-11-14 09:05:22,376 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:checksumValue "04a8bb552af5fb394958306a1a0e02bf"^^xsd:hexBinary .[\n]" +2022-11-14 09:05:22,376 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,376 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,376 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a spdx:Checksum ;[\n]" +2022-11-14 09:05:22,376 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:algorithm spdx:checksumAlgorithm_md5 ;[\n]" +2022-11-14 09:05:22,376 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:checksumValue "346fe833cd6ba30cf049c3abc184eb64"^^xsd:hexBinary .[\n]" +2022-11-14 09:05:22,376 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,376 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,376 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a spdx:Checksum ;[\n]" +2022-11-14 09:05:22,376 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:algorithm spdx:checksumAlgorithm_md5 ;[\n]" +2022-11-14 09:05:22,376 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:checksumValue "64b220543f8a3166fd8957b332e61b95"^^xsd:hexBinary .[\n]" +2022-11-14 09:05:22,376 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,376 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,376 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a spdx:Checksum ;[\n]" +2022-11-14 09:05:22,376 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:algorithm spdx:checksumAlgorithm_md5 ;[\n]" +2022-11-14 09:05:22,376 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:checksumValue "88e32b6a4cad67de446ece4a0992fe71"^^xsd:hexBinary .[\n]" +2022-11-14 09:05:22,376 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,376 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,376 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a spdx:Checksum ;[\n]" +2022-11-14 09:05:22,376 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:algorithm spdx:checksumAlgorithm_md5 ;[\n]" +2022-11-14 09:05:22,376 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:checksumValue "f8fbd202062bf929be7553dd0c4eb8ed"^^xsd:hexBinary .[\n]" +2022-11-14 09:05:22,376 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,376 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,376 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a spdx:Checksum ;[\n]" +2022-11-14 09:05:22,376 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:algorithm spdx:checksumAlgorithm_md5 ;[\n]" +2022-11-14 09:05:22,376 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:checksumValue "7730960fb3e8d56b377613a6256ef66a"^^xsd:hexBinary .[\n]" +2022-11-14 09:05:22,376 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,376 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,376 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a spdx:Checksum ;[\n]" +2022-11-14 09:05:22,376 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:algorithm spdx:checksumAlgorithm_md5 ;[\n]" +2022-11-14 09:05:22,376 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:checksumValue "72447998e36a6fe41dd3a0" +2022-11-14 09:05:22,377 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "28c03de19d"^^xsd:hexBinary .[\n]" +2022-11-14 09:05:22,377 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,377 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,377 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a spdx:Checksum ;[\n]" +2022-11-14 09:05:22,377 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:algorithm spdx:checksumAlgorithm_md5 ;[\n]" +2022-11-14 09:05:22,377 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:checksumValue "0296eec353ce04f626796d8058dfd0cc"^^xsd:hexBinary .[\n]" +2022-11-14 09:05:22,377 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,377 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,377 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a spdx:Checksum ;[\n]" +2022-11-14 09:05:22,377 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:algorithm spdx:checksumAlgorithm_md5 ;[\n]" +2022-11-14 09:05:22,377 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:checksumValue "0eb36a55d42774a7382c3850b3aecbe3"^^xsd:hexBinary .[\n]" +2022-11-14 09:05:22,377 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,377 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,377 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a spdx:Checksum ;[\n]" +2022-11-14 09:05:22,377 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:algorithm spdx:checksumAlgorithm_md5 ;[\n]" +2022-11-14 09:05:22,377 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:checksumValue "1ab8b9570ca4e77641ca652ba0116661"^^xsd:hexBinary .[\n]" +2022-11-14 09:05:22,377 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,377 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,377 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a spdx:Checksum ;[\n]" +2022-11-14 09:05:22,377 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:algorithm spdx:checksumAlgorithm_md5 ;[\n]" +2022-11-14 09:05:22,377 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:checksumValue "2cd882b88a732465a629f218ee1d2faf"^^xsd:hexBinary .[\n]" +2022-11-14 09:05:22,377 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,377 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,377 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a spdx:Checksum ;[\n]" +2022-11-14 09:05:22,377 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:algorithm spdx:checksumAlgorithm_md5 ;[\n]" +2022-11-14 09:05:22,377 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:checksumValue "0afecd79544efbcabecb0ff22987ad9a"^^xsd:hexBinary .[\n]" +2022-11-14 09:05:22,377 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,377 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,377 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a spdx:Checksum ;[\n]" +2022-11-14 09:05:22,377 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:algorithm spdx:checksumAlgorithm_md5 ;[\n]" +2022-11-14 09:05:22,377 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:checksumValue "3024d1f72cc51fcf6d9ec8945cbe491d"^^xsd:hexBinary .[\n]" +2022-11-14 09:05:22,377 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,377 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,377 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a spdx:Checksum ;[\n]" +2022-11-14 09:05:22,377 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:algorithm spdx:checksumAlgorithm_md5 ;[\n]" +2022-11-14 09:05:22,377 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:checksumValue "8d8084af8b7ca4914cfec8eca941006b"^^xsd:hexBinary .[\n]" +2022-11-14 09:05:22,377 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,377 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,377 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a spdx:Checksum ;[\n]" +2022-11-14 09:05:22,377 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:algorithm spdx:checksumAlgorithm_md5 ;[\n]" +2022-11-14 09:05:22,377 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:checksumValue "81cf8d04970e3ed2f6cfc18c4a49d47d"^^xsd:hexBinary .[\n]" +2022-11-14 09:05:22,377 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,377 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,377 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a spdx:Checksum ;[\n]" +2022-11-14 09:05:22,377 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:algorithm spdx:chec" +2022-11-14 09:05:22,378 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "ksumAlgorithm_md5 ;[\n]" +2022-11-14 09:05:22,378 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:checksumValue "4c6570f4b125a9041b1dc09d50eb4f65"^^xsd:hexBinary .[\n]" +2022-11-14 09:05:22,378 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,378 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,378 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a spdx:Checksum ;[\n]" +2022-11-14 09:05:22,378 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:algorithm spdx:checksumAlgorithm_md5 ;[\n]" +2022-11-14 09:05:22,378 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:checksumValue "88f0593cb1a125d0bf982b6c84b754a8"^^xsd:hexBinary .[\n]" +2022-11-14 09:05:22,378 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,378 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,378 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a spdx:Checksum ;[\n]" +2022-11-14 09:05:22,378 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:algorithm spdx:checksumAlgorithm_md5 ;[\n]" +2022-11-14 09:05:22,378 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:checksumValue "fd0b9f78d5c3294b0f1a372dccabc6a9"^^xsd:hexBinary .[\n]" +2022-11-14 09:05:22,378 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,378 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,378 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a spdx:Checksum ;[\n]" +2022-11-14 09:05:22,378 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:algorithm spdx:checksumAlgorithm_md5 ;[\n]" +2022-11-14 09:05:22,378 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:checksumValue "d480947f411850b6b81ed058e3b8b4fa"^^xsd:hexBinary .[\n]" +2022-11-14 09:05:22,378 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,378 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,378 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a spdx:Checksum ;[\n]" +2022-11-14 09:05:22,378 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:algorithm spdx:checksumAlgorithm_md5 ;[\n]" +2022-11-14 09:05:22,378 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:checksumValue "33c63d3e2a3966eaa450801ad2615119"^^xsd:hexBinary .[\n]" +2022-11-14 09:05:22,378 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,378 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,379 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a spdx:Checksum ;[\n]" +2022-11-14 09:05:22,379 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:algorithm spdx:checksumAlgorithm_md5 ;[\n]" +2022-11-14 09:05:22,379 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:checksumValue "036a99695d197d6c6ab66ff0fea737e7"^^xsd:hexBinary .[\n]" +2022-11-14 09:05:22,379 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,379 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,379 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a spdx:Checksum ;[\n]" +2022-11-14 09:05:22,379 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:algorithm spdx:checksumAlgorithm_md5 ;[\n]" +2022-11-14 09:05:22,379 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:checksumValue "dca91194c74f4757f41bec593c917ab0"^^xsd:hexBinary .[\n]" +2022-11-14 09:05:22,379 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,379 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,379 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a spdx:Checksum ;[\n]" +2022-11-14 09:05:22,379 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:algorithm spdx:checksumAlgorithm_md5 ;[\n]" +2022-11-14 09:05:22,379 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:checksumValue "cb64dee43b068b79e9ccc3c7d90ab975"^^xsd:hexBinary .[\n]" +2022-11-14 09:05:22,379 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,379 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,379 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a spdx:Checksum ;[\n]" +2022-11-14 09:05:22,379 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:algorithm spdx:checksumAlgorithm_md5 ;[\n]" +2022-11-14 09:05:22,379 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:checksumValue "14d3e4165b2b454783b3043271b89c65"^^xsd:hexBinary .[\n]" +2022-11-14 09:05:22,379 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,379 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,379 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a spdx:Checksum ;[\n]" +2022-11-14 09:05:22,379 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:algorithm spdx:checksumAlgorithm_md5 ;[\n]" +2022-11-14 09:05:22,379 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:checksumValue "7b872c15e218745b1ace1cbea76f2461"^^xsd:hexBinary .[\n]" +2022-11-14 09:05:22,379 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,379 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,379 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a spdx:Checksum ;[\n]" +2022-11-14 09:05:22,379 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:algorithm spdx:checksumAlgorithm_md5 ;[\n]" +2022-11-14 09:05:22,379 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:checksumValue "e4b9de8e50b1104745b6c72da8c65bea"^^xsd:hexBinary .[\n]" +2022-11-14 09:05:22,379 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,379 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,379 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a spdx:Checksum ;[\n]" +2022-11-14 09:05:22,379 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:algorithm spdx:checksumAlgorithm_md5 ;[\n]" +2022-11-14 09:05:22,379 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:checksumValue "9578f3aa05db5f8d9208c95abd1cadf8"^^xsd:hexBinary .[\n]" +2022-11-14 09:05:22,379 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,379 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,379 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a spdx:Checksum ;[\n]" +2022-11-14 09:05:22,379 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:algorithm spdx:checksumAlgorithm_md5 ;[\n]" +2022-11-14 09:05:22,379 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:checksumValue "99f0c6411313c866bd5e03c5ee413e76"^^xsd:hexBinary .[\n]" +2022-11-14 09:05:22,379 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,379 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,379 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a spdx:Checksum ;[\n]" +2022-11-14 09:05:22,379 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:algorithm spdx:checksumAlgorithm_md5 ;[\n]" +2022-11-14 09:05:22,379 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:checksumValue "6d1b25b63d49ef2f12bc7b66d0c5e052"^^xsd:hexBinary ." +2022-11-14 09:05:22,380 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,380 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,380 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,380 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a spdx:Checksum ;[\n]" +2022-11-14 09:05:22,380 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:algorithm spdx:checksumAlgorithm_md5 ;[\n]" +2022-11-14 09:05:22,380 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:checksumValue "36fc9a205def42adefd8120b987c2a5f"^^xsd:hexBinary .[\n]" +2022-11-14 09:05:22,380 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,380 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,380 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a spdx:Checksum ;[\n]" +2022-11-14 09:05:22,380 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:algorithm spdx:checksumAlgorithm_md5 ;[\n]" +2022-11-14 09:05:22,380 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:checksumValue "c6391d679f4b49fc1c97b74b48976ced"^^xsd:hexBinary .[\n]" +2022-11-14 09:05:22,380 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,380 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,380 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a spdx:Checksum ;[\n]" +2022-11-14 09:05:22,380 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:algorithm spdx:checksumAlgorithm_md5 ;[\n]" +2022-11-14 09:05:22,380 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:checksumValue "51cbbabe55edb9503e3a82482579d60d"^^xsd:hexBinary .[\n]" +2022-11-14 09:05:22,380 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,380 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,380 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a spdx:Checksum ;[\n]" +2022-11-14 09:05:22,380 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:algorithm spdx:checksumAlgorithm_md5 ;[\n]" +2022-11-14 09:05:22,380 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:checksumValue "99ded2067ac3133e8d7eb8f61b387b9d"^^xsd:hexBinary .[\n]" +2022-11-14 09:05:22,380 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,380 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,380 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a spdx:Checksum ;[\n]" +2022-11-14 09:05:22,380 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:algorithm spdx:checksumAlgorithm_md5 ;[\n]" +2022-11-14 09:05:22,380 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:checksumValue "2af5a58725093788b6bd2cbcbc433461"^^xsd:hexBinary .[\n]" +2022-11-14 09:05:22,380 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,380 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,380 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a spdx:Checksum ;[\n]" +2022-11-14 09:05:22,380 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:algorithm spdx:checksumAlgorithm_md5 ;[\n]" +2022-11-14 09:05:22,380 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:checksumValue "7303aa78b0cf8c0b6d656dbdc3ea4c5d"^^xsd:hexBinary .[\n]" +2022-11-14 09:05:22,380 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,380 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,380 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a spdx:Checksum ;[\n]" +2022-11-14 09:05:22,380 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:algorithm spdx:checksumAlgorithm_md5 ;[\n]" +2022-11-14 09:05:22,380 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:checksumValue "c491b8e0000501d5159570ec9d24d4f9"^^xsd:hexBinary .[\n]" +2022-11-14 09:05:22,380 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,380 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,380 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a spdx:Checksum ;[\n]" +2022-11-14 09:05:22,380 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:algorithm spdx:checksumAlgorithm_md5 ;[\n]" +2022-11-14 09:05:22,380 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:checksumValue "34fb2905ac3c6e88b8800cf91dabf8d5"^^xsd:hexBinary .[\n]" +2022-11-14 09:05:22,380 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,380 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,380 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a spdx:Checksum ;[\n]" +2022-11-14 09:05:22,380 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:algorithm spdx:checksumAlgorithm_md5 ;[\n]" +2022-11-14 09:05:22,380 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:checksumValue "b840843545e9c9c5b1c9ccffa9f0fdfe"^^xsd:hexBinary .[\n]" +2022-11-14 09:05:22,380 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,380 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,381 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a spdx:Checksum ;[\n]" +2022-11-14 09:05:22,381 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:algorithm spdx:checksumAlgorithm_md5 ;[\n]" +2022-11-14 09:05:22,381 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:checksumValue "ee5d801b8ebee0718634f1df7bfdc38e"^^xsd:hexBinary .[\n]" +2022-11-14 09:05:22,381 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,381 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,381 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a spdx:Checksum ;[\n]" +2022-11-14 09:05:22,381 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:algorithm spdx:checksumAlgorithm_md5 ;[\n]" +2022-11-14 09:05:22,381 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:checksumValue "a195d517e895441d8dd45d33d12aa68f"^^xsd:hexBinary .[\n]" +2022-11-14 09:05:22,381 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,381 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,381 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a spdx:Checksum ;[\n]" +2022-11-14 09:05:22,381 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:algorithm spdx:checksumAlgorithm_md5 ;[\n]" +2022-11-14 09:05:22,381 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:checksumValue "c2b223ee349e8160f4d324386f96d9fd"^^xsd:hexBinary .[\n]" +2022-11-14 09:05:22,381 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,381 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,381 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a spdx:Checksum ;[\n]" +2022-11-14 09:05:22,381 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:algorithm spdx:checksumAlgorithm_md5 ;[\n]" +2022-11-14 09:05:22,381 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:checksumValue "33f20de99e607269e3539caaff81c0c4"^^xsd:hexBinary .[\n]" +2022-11-14 09:05:22,381 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,381 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,381 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a spdx:Checksum ;[\n]" +2022-11-14 09:05:22,381 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:algorithm spdx:checksumA" +2022-11-14 09:05:22,381 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "lgorithm_md5 ;[\n]" +2022-11-14 09:05:22,381 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:checksumValue "1a0d0546d79b3bab09df9109ee4af5a0"^^xsd:hexBinary .[\n]" +2022-11-14 09:05:22,381 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,381 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,381 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a spdx:Checksum ;[\n]" +2022-11-14 09:05:22,381 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:algorithm spdx:checksumAlgorithm_md5 ;[\n]" +2022-11-14 09:05:22,381 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:checksumValue "b3a44ac8fec0d0f1ef657f8fe1e728e9"^^xsd:hexBinary .[\n]" +2022-11-14 09:05:22,381 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,381 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,381 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a spdx:Checksum ;[\n]" +2022-11-14 09:05:22,381 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:algorithm spdx:checksumAlgorithm_md5 ;[\n]" +2022-11-14 09:05:22,381 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:checksumValue "3eca8b4c19f3a391388e25007030e5fb"^^xsd:hexBinary .[\n]" +2022-11-14 09:05:22,381 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,381 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,381 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a spdx:Checksum ;[\n]" +2022-11-14 09:05:22,381 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:algorithm spdx:checksumAlgorithm_md5 ;[\n]" +2022-11-14 09:05:22,381 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:checksumValue "b1dc416c99a9688918167b0b14c8302e"^^xsd:hexBinary .[\n]" +2022-11-14 09:05:22,381 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,381 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,381 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a spdx:Checksum ;[\n]" +2022-11-14 09:05:22,381 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:algorithm spdx:checksumAlgorithm_md5 ;[\n]" +2022-11-14 09:05:22,381 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:checksumValue "bf32149e109471e14b98940ba6779344"^^xsd:hexBinary .[\n]" +2022-11-14 09:05:22,381 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,381 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,382 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a spdx:Checksum ;[\n]" +2022-11-14 09:05:22,382 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:algorithm spdx:checksumAlgorithm_md5 ;[\n]" +2022-11-14 09:05:22,382 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:checksumValue "f88bd148592c4f82c739e26b34eb76d5"^^xsd:hexBinary .[\n]" +2022-11-14 09:05:22,382 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,382 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,382 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a spdx:Checksum ;[\n]" +2022-11-14 09:05:22,382 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:algorithm spdx:checksumAlgorithm_md5 ;[\n]" +2022-11-14 09:05:22,382 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:checksumValue "5038dcb50285e47cdbc72b63f8f3f3e4"^^xsd:hexBinary .[\n]" +2022-11-14 09:05:22,382 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,382 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,382 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a spdx:Checksum ;[\n]" +2022-11-14 09:05:22,382 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:algorithm spdx:checksumAlgorithm_md5 ;[\n]" +2022-11-14 09:05:22,382 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:checksumValue "fdd25cb0fcc2ccdd16625bb02631ca8d"^^xsd:hexBinary .[\n]" +2022-11-14 09:05:22,382 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,382 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,382 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a spdx:Checksum ;[\n]" +2022-11-14 09:05:22,382 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:algorithm spdx:checksumAlgorithm_md5 ;[\n]" +2022-11-14 09:05:22,382 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:checksumValue "745b232fc0ab62fe1d9a260cf6d847da"^^xsd:hexBinary .[\n]" +2022-11-14 09:05:22,382 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,382 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,382 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a spdx:Checksum ;[\n]" +2022-11-14 09:05:22,382 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:algorithm spdx:checksumAlgorithm_md5 ;[\n]" +2022-11-14 09:05:22,382 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:checksumValue "94a9bbb8a7eda9dbcc5757213bb7bf09"^^xsd:he" +2022-11-14 09:05:22,383 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "xBinary .[\n]" +2022-11-14 09:05:22,383 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,383 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,383 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a spdx:Checksum ;[\n]" +2022-11-14 09:05:22,383 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:algorithm spdx:checksumAlgorithm_md5 ;[\n]" +2022-11-14 09:05:22,383 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:checksumValue "dd4bc936178fca782c669d8e6f228e48"^^xsd:hexBinary .[\n]" +2022-11-14 09:05:22,383 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,383 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,383 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a spdx:Checksum ;[\n]" +2022-11-14 09:05:22,383 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:algorithm spdx:checksumAlgorithm_md5 ;[\n]" +2022-11-14 09:05:22,383 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:checksumValue "ac23e41a77f40756953199e7a7af4578"^^xsd:hexBinary .[\n]" +2022-11-14 09:05:22,383 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,383 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,383 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a spdx:Checksum ;[\n]" +2022-11-14 09:05:22,383 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:algorithm spdx:checksumAlgorithm_md5 ;[\n]" +2022-11-14 09:05:22,383 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:checksumValue "6e34f3490345da5f2d3f4da71c7e0fb7"^^xsd:hexBinary .[\n]" +2022-11-14 09:05:22,383 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,383 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,383 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a spdx:Checksum ;[\n]" +2022-11-14 09:05:22,383 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:algorithm spdx:checksumAlgorithm_md5 ;[\n]" +2022-11-14 09:05:22,383 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:checksumValue "819ec5a1df9253f7f3fd1ae1c14ac0bd"^^xsd:hexBinary .[\n]" +2022-11-14 09:05:22,383 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,383 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,383 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a spdx:Checksum ;[\n]" +2022-11-14 09:05:22,383 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:algorithm spdx:checksumAlgorithm_md5 ;[\n]" +2022-11-14 09:05:22,383 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:checksumValue "abea80e71cabb509e263f899c2ed1940"^^xsd:hexBinary .[\n]" +2022-11-14 09:05:22,383 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,383 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,383 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a spdx:Checksum ;[\n]" +2022-11-14 09:05:22,383 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:algorithm spdx:checksumAlgorithm_md5 ;[\n]" +2022-11-14 09:05:22,383 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:checksumValue "2bb51107cd435ca83083cdc44927350e"^^xsd:hexBinary .[\n]" +2022-11-14 09:05:22,383 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,383 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,383 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a spdx:Checksum ;[\n]" +2022-11-14 09:05:22,383 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:algorithm spdx:checksumAlgorithm_md5 ;[\n]" +2022-11-14 09:05:22,383 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:checksumValue "8b91c949701fe44d9309be5c254ad3d3"^^xsd:hexBinary .[\n]" +2022-11-14 09:05:22,383 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,383 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,383 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a spdx:Checksum ;[\n]" +2022-11-14 09:05:22,383 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:algorithm spdx:checksumAlgorithm_md5 ;[\n]" +2022-11-14 09:05:22,383 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:checksumValue "bfe8921c3948becf7d148516f62ce232"^^xsd:hexBinary .[\n]" +2022-11-14 09:05:22,383 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,383 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,383 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a spdx:Checksum ;[\n]" +2022-11-14 09:05:22,383 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:algorithm spdx:checksumAlgorithm_md5 ;[\n]" +2022-11-14 09:05:22,383 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:checksumValue "54f3113ec74ed4346fd72cc7dd294657"^^xsd:hexBinary .[\n]" +2022-11-14 09:05:22,383 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,383 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,384 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a spdx:Checksum ;[\n]" +2022-11-14 09:05:22,384 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:algorithm spdx:checksumAlgorithm_md5 ;[\n]" +2022-11-14 09:05:22,384 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:checksumValue "6ffd161db2240f6fa47145c20efea4de"^^xsd:hexBinary .[\n]" +2022-11-14 09:05:22,384 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,384 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,384 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a spdx:Checksum ;[\n]" +2022-11-14 09:05:22,384 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:algorithm spdx:checksumAlgorithm_md5 ;[\n]" +2022-11-14 09:05:22,384 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:checksumValue "2e9e322cab90073ee710d6f3dd56d0fc"^^xsd:hexBinary .[\n]" +2022-11-14 09:05:22,384 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,384 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,384 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a spdx:Checksum ;[\n]" +2022-11-14 09:05:22,384 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:algorithm spdx:checksumAlgorithm_md5 ;[\n]" +2022-11-14 09:05:22,384 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:checksumValue "6a1544f2a6abc3db5029745e4af68661"^^xsd:hexBinary .[\n]" +2022-11-14 09:05:22,384 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,384 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,384 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a spdx:Checksum ;[\n]" +2022-11-14 09:05:22,384 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:algorithm spdx:checksumAlgorithm_md5 ;[\n]" +2022-11-14 09:05:22,384 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:checksumValue "e1c476dfea804605700fb738c45b72dc"^^xsd:hexBinary .[\n]" +2022-11-14 09:05:22,384 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,384 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,384 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a spdx:Checksum ;[\n]" +2022-11-14 09:05:22,384 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " " +2022-11-14 09:05:22,384 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:algorithm spdx:checksumAlgorithm_md5 ;[\n]" +2022-11-14 09:05:22,384 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:checksumValue "ef5cd77099608ef83a26387a4eeece75"^^xsd:hexBinary .[\n]" +2022-11-14 09:05:22,384 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,384 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,384 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a spdx:Checksum ;[\n]" +2022-11-14 09:05:22,384 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:algorithm spdx:checksumAlgorithm_md5 ;[\n]" +2022-11-14 09:05:22,384 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:checksumValue "2cfad96a7a9b21bb9c0aa8393f062677"^^xsd:hexBinary .[\n]" +2022-11-14 09:05:22,384 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,384 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,384 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a spdx:Checksum ;[\n]" +2022-11-14 09:05:22,384 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:algorithm spdx:checksumAlgorithm_md5 ;[\n]" +2022-11-14 09:05:22,384 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:checksumValue "efb9305f309b9c144900567bde3f5614"^^xsd:hexBinary .[\n]" +2022-11-14 09:05:22,384 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,384 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,384 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a spdx:Checksum ;[\n]" +2022-11-14 09:05:22,384 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:algorithm spdx:checksumAlgorithm_md5 ;[\n]" +2022-11-14 09:05:22,384 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:checksumValue "c77ea88bbcbd4c013623180224652e6e"^^xsd:hexBinary .[\n]" +2022-11-14 09:05:22,384 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,384 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,384 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a spdx:Checksum ;[\n]" +2022-11-14 09:05:22,384 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:algorithm spdx:checksumAlgorithm_md5 ;[\n]" +2022-11-14 09:05:22,384 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:checksumValue "0eff0dcec141bb6a50e9f1edaa44f551"^^xsd:hexBinary .[\n]" +2022-11-14 09:05:22,384 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,384 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,385 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a spdx:Checksum ;[\n]" +2022-11-14 09:05:22,385 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:algorithm spdx:checksumAlgorithm_md5 ;[\n]" +2022-11-14 09:05:22,385 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:checksumValue "6884aec89699e1ba722ced317e13a9ae"^^xsd:hexBinary .[\n]" +2022-11-14 09:05:22,385 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,385 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,385 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a spdx:Checksum ;[\n]" +2022-11-14 09:05:22,385 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:algorithm spdx:checksumAlgorithm_md5 ;[\n]" +2022-11-14 09:05:22,385 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:checksumValue "43f34a73cf1a668ef0ca5316990785b8"^^xsd:hexBinary .[\n]" +2022-11-14 09:05:22,385 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,385 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,385 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a spdx:Checksum ;[\n]" +2022-11-14 09:05:22,385 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:algorithm spdx:checksumAlgorithm_md5 ;[\n]" +2022-11-14 09:05:22,385 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:checksumValue "d277c0ba3bc2bdd8cd446ba6c345f535"^^xsd:hexBinary .[\n]" +2022-11-14 09:05:22,385 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,385 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,385 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a spdx:Checksum ;[\n]" +2022-11-14 09:05:22,385 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:algorithm spdx:checksumAlgorithm_md5 ;[\n]" +2022-11-14 09:05:22,385 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:checksumValue "56c710b8fac1373dc455a4ef4dfd2eb4"^^xsd:hexBinary .[\n]" +2022-11-14 09:05:22,385 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,385 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,385 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a spdx:Checksum ;[\n]" +2022-11-14 09:05:22,385 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:algorithm spdx:checksumAlgorithm" +2022-11-14 09:05:22,386 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "_md5 ;[\n]" +2022-11-14 09:05:22,386 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:checksumValue "a1f4a49bc2a8cb90a94e3f1b92028391"^^xsd:hexBinary .[\n]" +2022-11-14 09:05:22,386 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,386 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,386 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a spdx:Checksum ;[\n]" +2022-11-14 09:05:22,386 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:algorithm spdx:checksumAlgorithm_md5 ;[\n]" +2022-11-14 09:05:22,386 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:checksumValue "c85ce934c81c7df9ded1c5e04f88eab3"^^xsd:hexBinary .[\n]" +2022-11-14 09:05:22,386 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,386 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,386 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a spdx:Checksum ;[\n]" +2022-11-14 09:05:22,386 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:algorithm spdx:checksumAlgorithm_md5 ;[\n]" +2022-11-14 09:05:22,386 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:checksumValue "337fcb141abe09285892fb69594a5b1e"^^xsd:hexBinary .[\n]" +2022-11-14 09:05:22,386 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,386 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,386 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a spdx:Checksum ;[\n]" +2022-11-14 09:05:22,386 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:algorithm spdx:checksumAlgorithm_md5 ;[\n]" +2022-11-14 09:05:22,386 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:checksumValue "339d3b6511617692919177c37a27834b"^^xsd:hexBinary .[\n]" +2022-11-14 09:05:22,386 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,386 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,386 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a spdx:Checksum ;[\n]" +2022-11-14 09:05:22,386 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:algorithm spdx:checksumAlgorithm_md5 ;[\n]" +2022-11-14 09:05:22,386 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:checksumValue "f1167391b3eb5b17cc907a5082f9a141"^^xsd:hexBinary .[\n]" +2022-11-14 09:05:22,386 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,386 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,386 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a spdx:Checksum ;[\n]" +2022-11-14 09:05:22,386 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:algorithm spdx:checksumAlgorithm_md5 ;[\n]" +2022-11-14 09:05:22,386 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:checksumValue "22f5913682fea97c5d61ad4593b4d8c4"^^xsd:hexBinary .[\n]" +2022-11-14 09:05:22,386 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,386 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,386 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a spdx:Checksum ;[\n]" +2022-11-14 09:05:22,386 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:algorithm spdx:checksumAlgorithm_md5 ;[\n]" +2022-11-14 09:05:22,386 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:checksumValue "4ab377f4c17e07762a770fbdb4496280"^^xsd:hexBinary .[\n]" +2022-11-14 09:05:22,386 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,386 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,386 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a spdx:Checksum ;[\n]" +2022-11-14 09:05:22,386 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:algorithm spdx:checksumAlgorithm_md5 ;[\n]" +2022-11-14 09:05:22,386 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:checksumValue "d7ecfc76423e10a498aee78c8684eeef"^^xsd:hexBinary .[\n]" +2022-11-14 09:05:22,386 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,386 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,386 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a spdx:Checksum ;[\n]" +2022-11-14 09:05:22,386 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:algorithm spdx:checksumAlgorithm_md5 ;[\n]" +2022-11-14 09:05:22,386 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:checksumValue "f650d17c69a1586706a49e509c1d68e6"^^xsd:hexBinary .[\n]" +2022-11-14 09:05:22,386 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,386 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,386 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a spdx:Checksum ;[\n]" +2022-11-14 09:05:22,386 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:algorithm spdx:checksumAlgorithm_md5 ;[\n]" +2022-11-14 09:05:22,386 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:checksumValue "b61928792004163961ced7c0c609e407"^^xsd:hexBinary .[\n]" +2022-11-14 09:05:22,386 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,386 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,387 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a spdx:Checksum ;[\n]" +2022-11-14 09:05:22,387 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:algorithm spdx:checksumAlgorithm_md5 ;[\n]" +2022-11-14 09:05:22,387 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:checksumValue "9ac411896bb1d83b8822e612c1d71e39"^^xsd:hexBinary .[\n]" +2022-11-14 09:05:22,387 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,387 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,387 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a spdx:Checksum ;[\n]" +2022-11-14 09:05:22,387 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:algorithm spdx:checksumAlgorithm_md5 ;[\n]" +2022-11-14 09:05:22,387 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:checksumValue "968fe64383edc6e03981f5d850afadf5"^^xsd:hexBinary .[\n]" +2022-11-14 09:05:22,387 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,387 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,387 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a spdx:Checksum ;[\n]" +2022-11-14 09:05:22,387 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:algorithm spdx:checksumAlgorithm_md5 ;[\n]" +2022-11-14 09:05:22,387 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:checksumValue "19e4aac29a0a91435ac07cd500beb773"^^xsd:hexBinary .[\n]" +2022-11-14 09:05:22,387 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,387 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,387 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a spdx:Checksum ;[\n]" +2022-11-14 09:05:22,387 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:algorithm spdx:checksumAlgorithm_md5 ;[\n]" +2022-11-14 09:05:22,387 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:checksumValue "89c29d2379d5c6174373aa43171927e8"^^xsd:hexBinary .[\n]" +2022-11-14 09:05:22,387 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,387 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,387 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a spdx:C" +2022-11-14 09:05:22,387 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "hecksum ;[\n]" +2022-11-14 09:05:22,387 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:algorithm spdx:checksumAlgorithm_md5 ;[\n]" +2022-11-14 09:05:22,387 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:checksumValue "1804a2e5611428cf3f158d3b5f4d0063"^^xsd:hexBinary .[\n]" +2022-11-14 09:05:22,387 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,387 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,387 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a spdx:Checksum ;[\n]" +2022-11-14 09:05:22,387 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:algorithm spdx:checksumAlgorithm_md5 ;[\n]" +2022-11-14 09:05:22,387 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:checksumValue "71bbc8cfd7bb7189c5ecab6bfb88ec53"^^xsd:hexBinary .[\n]" +2022-11-14 09:05:22,387 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,387 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,387 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a spdx:Checksum ;[\n]" +2022-11-14 09:05:22,387 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:algorithm spdx:checksumAlgorithm_md5 ;[\n]" +2022-11-14 09:05:22,387 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:checksumValue "279cb8fa480b0fd93ca36925a29722aa"^^xsd:hexBinary .[\n]" +2022-11-14 09:05:22,387 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,387 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,387 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a spdx:Checksum ;[\n]" +2022-11-14 09:05:22,387 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:algorithm spdx:checksumAlgorithm_md5 ;[\n]" +2022-11-14 09:05:22,387 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:checksumValue "8cb60c37e8d90475a608e6c24c3fc027"^^xsd:hexBinary .[\n]" +2022-11-14 09:05:22,387 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,387 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,387 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a spdx:Checksum ;[\n]" +2022-11-14 09:05:22,387 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:algorithm spdx:checksumAlgorithm_md5 ;[\n]" +2022-11-14 09:05:22,387 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:checksumValue "ff62411d75b99a49d6d9193b68f44d40"^^xsd:hexBinary .[\n]" +2022-11-14 09:05:22,387 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,387 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,388 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a spdx:Checksum ;[\n]" +2022-11-14 09:05:22,388 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:algorithm spdx:checksumAlgorithm_md5 ;[\n]" +2022-11-14 09:05:22,388 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:checksumValue "d215748efdfb46a1ca0fc6d8cd729f54"^^xsd:hexBinary .[\n]" +2022-11-14 09:05:22,388 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,388 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,388 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a spdx:Checksum ;[\n]" +2022-11-14 09:05:22,388 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:algorithm spdx:checksumAlgorithm_md5 ;[\n]" +2022-11-14 09:05:22,388 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:checksumValue "e9b37c874f0da55dafa3edecc3fc5197"^^xsd:hexBinary .[\n]" +2022-11-14 09:05:22,388 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,388 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,388 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a spdx:Checksum ;[\n]" +2022-11-14 09:05:22,388 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:algorithm spdx:checksumAlgorithm_md5 ;[\n]" +2022-11-14 09:05:22,388 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:checksumValue "5cca9111e99fec0d2705bb5e5f6dd1bc"^^xsd:hexBinary .[\n]" +2022-11-14 09:05:22,388 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,388 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,388 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a spdx:Checksum ;[\n]" +2022-11-14 09:05:22,388 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:algorithm spdx:checksumAlgorithm_md5 ;[\n]" +2022-11-14 09:05:22,388 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:checksumValue "f2b162d14bf335627aa1b1cc981e9f84"^^xsd:hexBinary .[\n]" +2022-11-14 09:05:22,388 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,388 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,388 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a spdx:Checksum ;[\n]" +2022-11-14 09:05:22,388 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:algorithm spdx:checksumAlgorithm_md5 ;[\n]" +2022-11-14 09:05:22,388 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:checksumValue "47eeec2ef080186a441c70d26ad87d69"^^xsd:hexBinary .[\n]" +2022-11-14 09:05:22,388 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,388 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,388 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a spdx:Checksum ;[\n]" +2022-11-14 09:05:22,388 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:algorithm spdx:checksumAlgorithm_md5 ;[\n]" +2022-11-14 09:05:22,388 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:checksumValue "18f30a003bcd3e110f6fa21a6d850788"^^xsd:hexBinary .[\n]" +2022-11-14 09:05:22,388 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,388 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,388 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a spdx:Checksum ;[\n]" +2022-11-14 09:05:22,388 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:algorithm spdx:checksumAlgorithm_md5 ;[\n]" +2022-11-14 09:05:22,388 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:checksumValue "b689b65af215364dfc7473ce83782dd2"^^xsd:hexBinary .[\n]" +2022-11-14 09:05:22,388 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,388 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,388 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a spdx:Checksum ;[\n]" +2022-11-14 09:05:22,388 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:algorithm spdx:checksumAlgorithm_md5 ;[\n]" +2022-11-14 09:05:22,388 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:checksumValue "94c99348991738838d0f93cbab80c9ba"^^xsd:hexBinary .[\n]" +2022-11-14 09:05:22,388 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,388 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,388 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a spdx:Checksum ;[\n]" +2022-11-14 09:05:22,388 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:algorithm spdx:checksumAlgorithm_md5 ;[\n]" +2022-11-14 09:05:22,388 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:checksumValue "d521c831b23e6c4339afa10fed1dc287"^^xsd:hexBinary .[\n]" +2022-11-14 09:05:22,388 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,388 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,389 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a spdx:Checksum ;[\n]" +2022-11-14 09:05:22,389 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:algorithm spdx:checksumAlgorithm_md5 ;[\n]" +2022-11-14 09:05:22,389 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:checksumValue "ea4f5d5aa5c11b83262350534250c16a"^^xsd:hexBinary .[\n]" +2022-11-14 09:05:22,389 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,389 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,389 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a spdx:Checksum ;[\n]" +2022-11-14 09:05:22,389 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:algorithm spdx:checksumAlgorithm_md5 ;[\n]" +2022-11-14 09:05:22,389 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:checksumValue "85fcd49cd74fcbd3b3d81843fa8a1cca"^^xsd:hexBinary .[\n]" +2022-11-14 09:05:22,389 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,389 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,389 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a spdx:Checksum ;[\n]" +2022-11-14 09:05:22,389 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:algorithm spdx:checksumAlgorithm_md5 ;[\n]" +2022-11-14 09:05:22,389 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:checksumValue "93406c6b7925fc6a8f758f136b270ebb"^^xsd:hexBinary .[\n]" +2022-11-14 09:05:22,389 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,389 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,389 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a spdx:Checksum ;[\n]" +2022-11-14 09:05:22,389 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:algorithm spdx:checksumAlgorithm_md5 ;[\n]" +2022-11-14 09:05:22,389 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:checksumValue "7b791cfd99aeea722fa325cc98ac1663"^^xsd:hexBinary .[\n]" +2022-11-14 09:05:22,389 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,389 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,389 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a spdx:Checksum ;[\n]" +2022-11-14 09:05:22,389 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:algorithm spdx:checksumAlgorithm_md5 ;[\n]" +2022-11-14 09:05:22,389 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:checksumValue "4cc9b44fc603e7e8a6a2ee072cf6e693"^^xsd:hexBinary .[\n]" +2022-11-14 09:05:22,389 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,389 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,398 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a spdx:Checksum ;[\n]" +2022-11-14 09:05:22,398 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:algorithm spdx:checksumAlgorithm_md5 ;[\n]" +2022-11-14 09:05:22,398 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:checksumValue "4f62f2a1cc05fb530c2bf6168a55aa41"^^xsd:hexBinary .[\n]" +2022-11-14 09:05:22,398 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,398 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,398 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a spdx:Checksum ;[\n]" +2022-11-14 09:05:22,398 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:algorithm spdx:checksumAlgorithm_md5 ;[\n]" +2022-11-14 09:05:22,398 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:checksumValue "37c1ab26f67c5a844d5e815e638e1648"^^xsd:hexBinary .[\n]" +2022-11-14 09:05:22,398 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,398 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,398 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a spdx:Checksum ;[\n]" +2022-11-14 09:05:22,398 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:algorithm spdx:checksumAlgorithm_md5 ;[\n]" +2022-11-14 09:05:22,398 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:checksumValue "45e7e81ef577e9e8565e356971bb32e5"^^xsd:hexBinary .[\n]" +2022-11-14 09:05:22,398 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,398 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,398 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a spdx:Checksum ;[\n]" +2022-11-14 09:05:22,398 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:algorithm spdx:checksumAlgorithm_md5 ;[\n]" +2022-11-14 09:05:22,398 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:checksumValue "50f43ff5202301215c95820296d87514"^^xsd:hexBinary .[\n]" +2022-11-14 09:05:22,398 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,398 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,398 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a spdx:Checksum ;[\n]" +2022-11-14 09:05:22,398 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:algorithm spdx:checksumAlgorithm_md5 ;[\n]" +2022-11-14 09:05:22,398 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:checksumValue "7d79fc691990952a2781510d10ba7358"^^xsd:hexBinary .[\n]" +2022-11-14 09:05:22,398 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,398 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,398 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a spdx:Checksum ;[\n]" +2022-11-14 09:05:22,398 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:algorithm spdx:checksumAlgorithm_md5 ;[\n]" +2022-11-14 09:05:22,398 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:checksumValue "67c848d3379f3f5ef74c3be405ef151c"^^xsd:hexBinary .[\n]" +2022-11-14 09:05:22,398 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,398 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,398 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a spdx:Checksum ;[\n]" +2022-11-14 09:05:22,398 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:algorithm spdx:checksumAlgorithm_md5 ;[\n]" +2022-11-14 09:05:22,398 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:checksumValue "e99420ad320d238a30f1cadd22589931"^^xsd:hexBinary .[\n]" +2022-11-14 09:05:22,398 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,398 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,398 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a spdx:Checksum ;[\n]" +2022-11-14 09:05:22,398 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:algorithm spdx:checksumAlgorithm_md5 ;[\n]" +2022-11-14 09:05:22,398 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:checksumValue "4b7b810e57b3ccbe831b3733c0a30c87"^^xsd:hexBinary .[\n]" +2022-11-14 09:05:22,398 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,398 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,398 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a spdx:Checksum ;[\n]" +2022-11-14 09:05:22,398 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:algorithm spdx:checksumAlgorithm_md5 ;[\n]" +2022-11-14 09:05:22,398 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:checksumValue "3cc36abb020455e1f6d5154de81b7bb8"^^xsd:hexBinary .[\n]" +2022-11-14 09:05:22,398 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,398 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,398 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a spdx:Checksum ;[\n]" +2022-11-14 09:05:22,398 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:algorithm spdx:checksumAlgorithm_md5 ;[\n]" +2022-11-14 09:05:22,398 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:checksumValue "ef4e25ecb4d429853296cfb31991acd8"^^xsd:hexBinary .[\n]" +2022-11-14 09:05:22,398 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,398 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,398 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a spdx:Checksum ;[\n]" +2022-11-14 09:05:22,398 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:algorithm spdx:checksumAlgorithm_md5 ;[\n]" +2022-11-14 09:05:22,398 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:checksumValue "1cfc7d59da92f7d38b03c7392fb8c4ee"^^xsd:hexBinary .[\n]" +2022-11-14 09:05:22,398 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,398 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,398 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a spdx:Checksum ;[\n]" +2022-11-14 09:05:22,398 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:algorithm spdx:checksumAlgorithm_md5 ;[\n]" +2022-11-14 09:05:22,398 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:checksumValue "270df7acaeda6be639e68be169c11ac4"^^xsd:hexBinary .[\n]" +2022-11-14 09:05:22,398 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,398 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,398 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a spdx:Checksum ;[\n]" +2022-11-14 09:05:22,398 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:algorithm spdx:checksumAlgorithm_md5 ;[\n]" +2022-11-14 09:05:22,398 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:checksumValue "2d543cc8f93f632ef33955017fe41522"^^xsd:hexBinary .[\n]" +2022-11-14 09:05:22,398 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,398 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,398 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a spdx:Checksum ;[\n]" +2022-11-14 09:05:22,398 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:algorithm spdx:checksumAlgorithm_md5 ;[\n]" +2022-11-14 09:05:22,398 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:checksumValue "d7cec6a63cf05c1eff53939fd3b5339f"^^xsd:hexBinary .[\n]" +2022-11-14 09:05:22,398 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,398 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,398 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a spdx:Checksum ;[\n]" +2022-11-14 09:05:22,398 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:algorithm spdx:checksumAlgorithm_md5 ;[\n]" +2022-11-14 09:05:22,398 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:checksumValue "4d47bf5b5b30a04c430c69ed6dfa5fdf"^^xsd:hexBinary .[\n]" +2022-11-14 09:05:22,398 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,398 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,398 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a spdx:Checksum ;[\n]" +2022-11-14 09:05:22,398 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:algorithm spdx:checksumAlgorithm_md5 ;[\n]" +2022-11-14 09:05:22,398 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:checksumValue "9c0aa0f2536be1ef8910b433a40165cc"^^xsd:hexBinary .[\n]" +2022-11-14 09:05:22,398 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,398 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "########### Statements ###########[\n]" +2022-11-14 09:05:22,398 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,398 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,398 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:SimpleStatement ;[\n]" +2022-11-14 09:05:22,398 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:statement "DBpedia data can be integrated into other datasets and reused for data enrichment or mashup purposes"@en .[\n]" +2022-11-14 09:05:22,398 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,398 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,398 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:SimpleStatement ;[\n]" +2022-11-14 09:05:22,398 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:statement "DBpedia is a useful resource for interlinking general datasets with encyclopedic knowledge. Users profitting from DBpedia are open data developers, SMEs and researchers in data science and NLP"@en .[\n]" +2022-11-14 09:05:22,398 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,398 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,398 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:SimpleStatement ;[\n]" +2022-11-14 09:05:22,398 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:statement "DBpedia is an open dataset, licensed under CC-BY-SA 3.0."@en .[\n]" +2022-11-14 09:05:22,398 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,398 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,398 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:SimpleStatement ;[\n]" +2022-11-14 09:05:22,398 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:statement "An endpoint for sparql queries: provide valid queries." .[\n]" +2022-11-14 09:05:22,398 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,398 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,398 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:SimpleStatement ;[\n]" +2022-11-14 09:05:22,398 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:statement "DBpedia is an ongoing open-source project. Goal of the project is the extraction of the Wikipedia, as complete as possible. Currently, 126 languages are being extracted. In the future, DBpedia will try to increase its importance as the center of the LOD cloud by adding further external datasets"@en .[\n]" +2022-11-14 09:05:22,398 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,398 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,398 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:SimpleStatement ;[\n]" +2022-11-14 09:05:22,398 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:statement "1.0.0" .[\n]" +2022-11-14 09:05:22,398 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,398 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,398 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:SimpleStatement ;[\n]" +2022-11-14 09:05:22,398 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:statement "DataID - dataset metadata ontology"@en ;[\n]" +2022-11-14 09:05:22,398 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:references .[\n]" +2022-11-14 09:05:22,398 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,398 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,398 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:SimpleStatement ;[\n]" +2022-11-14 09:05:22,398 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:statement "DBpedia is derived from Wikipedia and is distributed under the same licensing terms as Wikipedia itself. As Wikipedia has moved to dual-licensing, we also dual-license DBpedia starting with release 3.4. Data comprising DBpedia release 3.4 and subsequent releases is licensed under the terms of the Creative Commons Attribution-ShareAlike 3.0 license and the GNU Free Documentation License. Data comprising DBpedia releases up to and including release 3.3 is licensed only under the terms of the GNU Free Documentation License."@en .[\n]" +2022-11-14 09:05:22,398 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,398 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,398 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:SimpleStatement ;[\n]" +2022-11-14 09:05:22,398 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:statement "Similar data can be found in datasets like Freebase (https://freebase.com), Wikidata (https://www.wikidata.org), Yago (http://www.mpi-inf.mpg.de/departments/databases-and-information-systems/research/yago-naga/yago//) or OpenCyc (http://opencyc.org)."@en .[\n]" +2022-11-14 09:05:22,398 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,398 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,398 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:SimpleStatement ;[\n]" +2022-11-14 09:05:22,398 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:statement "DataID-LD - dataset metadata ontology with linked data extension"@en ;[\n]" +2022-11-14 09:05:22,398 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:references .[\n]" +2022-11-14 09:05:22,398 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,398 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "########### MediaTypes ###########[\n]" +2022-11-14 09:05:22,398 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,398 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,398 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:MediaType ;[\n]" +2022-11-14 09:05:22,398 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:typeTemplate "application/sparql-results+xml" ;[\n]" +2022-11-14 09:05:22,398 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo .[\n]" +2022-11-14 09:05:22,398 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,398 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "dataid-mt:MediaType_turtle_x-bzip2[\n]" +2022-11-14 09:05:22,398 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:MediaType ;[\n]" +2022-11-14 09:05:22,398 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:innerMediaType dataid:MediaType_turtle ;[\n]" +2022-11-14 09:05:22,398 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:typeExtension ".bz2" ;[\n]" +2022-11-14 09:05:22,398 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:typeTemplate "application/x-bzip2" ;[\n]" +2022-11-14 09:05:22,398 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo .[\n]" +2022-11-14 09:05:22,398 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,398 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "dataid-mt:MediaType_n-quads_x-bzip2[\n]" +2022-11-14 09:05:22,398 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:MediaType ;[\n]" +2022-11-14 09:05:22,398 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:innerMediaType dataid:MediaType_n-quads ;[\n]" +2022-11-14 09:05:22,398 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:typeExtension ".bz2" ;[\n]" +2022-11-14 09:05:22,398 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:typeTemplate "application/x-bzip2" ;[\n]" +2022-11-14 09:05:22,398 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo .[\n]" +2022-11-14 09:05:22,398 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,398 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "dataid:MediaType_n-quads[\n]" +2022-11-14 09:05:22,398 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:MediaType ;[\n]" +2022-11-14 09:05:22,398 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:typeExtension ".nq" ;[\n]" +2022-11-14 09:05:22,398 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:typeTemplate "application/n-quads" ;[\n]" +2022-11-14 09:05:22,398 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo .[\n]" +2022-11-14 09:05:22,398 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,398 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "dataid:MediaType_xml a dataid:MediaType ;[\n]" +2022-11-14 09:05:22,398 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:typeExtension "application/xml" ;[\n]" +2022-11-14 09:05:22,398 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:typeTemplate "application/xml" ;[\n]" +2022-11-14 09:05:22,398 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo .[\n]" +2022-11-14 09:05:22,398 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,398 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "dataid:MediaType_turtle[\n]" +2022-11-14 09:05:22,398 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:MediaType ;[\n]" +2022-11-14 09:05:22,398 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:typeExtension ".ttl" ;[\n]" +2022-11-14 09:05:22,398 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:typeTemplate "text/turtle" ;[\n]" +2022-11-14 09:05:22,398 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo .[\n]" +2022-11-14 09:05:22,398 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" +2022-11-14 09:05:22,398 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "dataid-mt:MediaType_xml_x-bzip2[\n]" +2022-11-14 09:05:22,398 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:MediaType ;[\n]" +2022-11-14 09:05:22,398 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:innerMediaType dataid:MediaType_xml ;[\n]" +2022-11-14 09:05:22,398 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:typeExtension ".bz2" ;[\n]" +2022-11-14 09:05:22,398 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:typeTemplate "application/x-bzip2" ;[\n]" +2022-11-14 09:05:22,398 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo .[\n]" +2022-11-14 09:05:22,399 -- DEBUG -- org.apache.http.impl.conn.PoolingHttpClientConnectionManager -- Connection [id: 0][route: {}->http://downloads.dbpedia.org:80] can be kept alive indefinitely +2022-11-14 09:05:22,399 -- DEBUG -- org.apache.http.impl.conn.PoolingHttpClientConnectionManager -- Connection released: [id: 0][route: {}->http://downloads.dbpedia.org:80][total kept alive: 1; route allocated: 1 of 5; total allocated: 1 of 10] +Info; fr; Main Extraction at 00:01.783s for historic, historic; +----- ----- ----- EXTRACTION MONITOR STATISTICS ----- ----- ----- +EXCEPTIONCOUNT: 0 +SUCCESSFUL: 0 +CRASHED: yes +! COULD NOT COMPARE DATAID ! + +----- ----- ----- ----- ----- ----- ----- ----- ----- ----- ----- +Exception; fr; Main Extraction at 00:01.783s for historic, historic; +----- ----- ----- EXTRACTION MONITOR STATISTICS ----- ----- ----- +SUCCESSFUL: 0 +Exception; fr; Main Extraction at 00:01.783s for historic, historic; +----- ----- ----- EXTRACTION MONITOR STATISTICS ----- ----- ----- +SUCCESSFUL: 0 +CRASHED: yes +EXCEPTIONS: +com.ctc.wstx.exc.WstxParsingException: 1 +DATAID: +! COULD NOT COMPARE DATAID ! + +----- ----- ----- ----- ----- ----- ----- ----- ----- ----- ----- +Info; fr; Main Extraction at 00:01.783s for historic, historic; Extraction finished for language: French (fr) , extracted 0 pages for 2 datasets after 00:01.783s minutes. +CRASHED: yes +EXCEPTIONS: +com.ctc.wstx.exc.WstxParsingException: 1 +DATAID: +! COULD NOT COMPARE DATAID ! + +----- ----- ----- ----- ----- ----- ----- ----- ----- ----- ----- +AFTER +- test Historic extraction +Run completed in 4 seconds, 723 milliseconds. +Total number of tests run: 1 +Suites: completed 2, aborted 0 +Tests: succeeded 1, failed 0, canceled 0, ignored 0, pending 0 +All tests passed. +[INFO] ------------------------------------------------------------------------ +[INFO] BUILD SUCCESS +[INFO] ------------------------------------------------------------------------ +[INFO] Total time: 7.494 s +[INFO] Finished at: 2022-11-14T09:05:22+01:00 +[INFO] ------------------------------------------------------------------------ diff --git a/history/pom.xml b/history/pom.xml index 6b3167688c..d515621d4e 100644 --- a/history/pom.xml +++ b/history/pom.xml @@ -1,5 +1,6 @@ + org.dbpedia extraction @@ -14,6 +15,25 @@ + + org.scalatest + scalatest-maven-plugin + 1.0 + + ${project.build.directory}/surefire-reports + . + WDF TestSuite.txt + + + + test + + + test + + + + net.alchim31.maven @@ -33,7 +53,7 @@ run - org.dbpedia.extraction.dump.extract.Extraction + org.dbpedia.extraction.dump.extract.Extraction2 download @@ -57,6 +77,12 @@ dump ${project.version} - + + + org.scalatest + scalatest_${scala.compat.version} + 3.0.8 + test + diff --git a/history/project/build.properties b/history/project/build.properties new file mode 100644 index 0000000000..c8fcab543a --- /dev/null +++ b/history/project/build.properties @@ -0,0 +1 @@ +sbt.version=1.6.2 diff --git a/history/sample-xml-dump/samplehistoric b/history/sample-xml-dump/frwiki/20220101/frwiki-20220101-download-complete similarity index 100% rename from history/sample-xml-dump/samplehistoric rename to history/sample-xml-dump/frwiki/20220101/frwiki-20220101-download-complete diff --git a/history/sample-xml-dump/frwiki/20220101/frwiki-20220101-extraction-complete b/history/sample-xml-dump/frwiki/20220101/frwiki-20220101-extraction-complete new file mode 100644 index 0000000000..e69de29bb2 diff --git a/history/sample-xml-dump/frwiki/20220101/frwiki-20220101-historic.ttl.bz2 b/history/sample-xml-dump/frwiki/20220101/frwiki-20220101-historic.ttl.bz2 new file mode 100644 index 0000000000000000000000000000000000000000..206a88a7f7b74efc23ca5d21d18c1259fcef7029 GIT binary patch literal 83 zcmZ>Y%CIzaj8qGbRC1US&%nTZyMaN#gQ+}#ML>`34ub+iNC1NgH!pBGS1(@VY7sC2WC#E*svQ*o literal 0 HcmV?d00001 diff --git a/history/sample-xml-dump/frwiki/20220101/frwiki-20220101-pages-articles.xml b/history/sample-xml-dump/frwiki/20220101/frwiki-20220101-pages-articles.xml new file mode 100644 index 0000000000..cdde3d87be --- /dev/null +++ b/history/sample-xml-dump/frwiki/20220101/frwiki-20220101-pages-articles.xml @@ -0,0 +1,6831 @@ + + + Wikipédia + frwiki + https://fr.wikipedia.org/wiki/Wikip%C3%A9dia:Accueil_principal + MediaWiki 1.40.0-wmf.8 + first-letter + + Média + Spécial + + Discussion + Utilisateur + Discussion utilisateur + Wikipédia + Discussion Wikipédia + Fichier + Discussion fichier + MediaWiki + Discussion MediaWiki + Modèle + Discussion modèle + Aide + Discussion aide + Catégorie + Discussion catégorie + Portail + Discussion Portail + Projet + Discussion Projet + Référence + Discussion Référence + TimedText + TimedText talk + Module + Discussion module + Gadget + Discussion gadget + Définition de gadget + Discussion définition de gadget + Sujet + + + + Hôtes de passage + 0 + 3553440 + + 36815850 + 2009-01-06T16:56:57Z + + 82.244.44.195 + + Nouvelle page : ''Hôtes de passage'' appartient est une partie de ''La Corde et les souris'' consignée dans ''Le Miroir des limbes''.Malraux y mène des entretiens avec entre autre Senghor et un p... + wikitext + text/x-wiki + ''Hôtes de passage'' appartient est une partie de ''La Corde et les souris'' consignée dans ''Le Miroir des limbes''.Malraux y mène des entretiens avec entre autre Senghor et un personnage imaginaire: Max Torres + 1u7wvu5n5p7oz1iky78p435pimjwqnw + + + 37170403 + 36815850 + 2009-01-18T15:30:59Z + + Speculos + 178738 + + intro + liens + ref + cat + wikitext + text/x-wiki + '''Hôtes de passage''' est un livre d'[[André Malraux]] paru en 1975<ref>http://www.antiqbook.fr/boox/pic/213605.shtml</ref>. C'est une partie de ''La Corde et les souris'' consignée dans ''Le Miroir des limbes''. Malraux y mène des entretiens avec entre autres [[Senghor]] et un personnage imaginaire: Max Torres. + +== Notes et références == +<references /> + +[[Catégorie:Essai paru en 1975]] + bixndcsu1032geflxfr4m0p0menovqe + + + 42902092 + 37170403 + 2009-07-12T14:36:33Z + + LPLT + 181659 + + wikif + wikitext + text/x-wiki + '''''Hôtes de passage''''' est un livre d'[[André Malraux]] paru en [[1975 en littérature|1975]]. C'est une partie de ''[[La Corde et les Souris]]'' consignée dans ''[[Le Miroir des limbes]]''. Malraux y mène des entretiens avec entre autres [[Senghor]] et un personnage imaginaire, Max Torres. + +== Notes et références == +<references /> + +{{Portail|Littérature}} + +[[Catégorie:Essai paru en 1975]] + n4cnddctjen9wviqt919bpbq8elgcqd + + + 70743930 + 42902092 + 2011-10-04T17:54:57Z + + Titopoto + 1104966 + + wikitext + text/x-wiki + '''''Hôtes de passage''''' est un livre d'[[André Malraux]] paru en [[1975 en littérature|1975]]. C'est une partie de ''[[La Corde et les Souris]]'' consignée dans ''[[Le Miroir des limbes]]''. Malraux y mène des entretiens avec entre autres [[Senghor]] et un personnage imaginaire, Max Torres. + +== Notes et références == +<references /> + +{{Portail|Littérature}} + +[[Catégorie:Essai paru en 1975]] +[[Catégorie:André Malraux]] + hxkbx7xhnhv9mzdkwhoycxt6obdkl6c + + + 96902021 + 70743930 + 2013-09-22T18:48:16Z + + WikiCleanerBot + 351003 + + + [[WP:WPC|WPCleaner]] v1.29b - Bistrot 18/09 - [[P:CS|Correction syntaxique]] - DEFAULTSORT nécessaire manquant + wikitext + text/x-wiki + '''''Hôtes de passage''''' est un livre d'[[André Malraux]] paru en [[1975 en littérature|1975]]. C'est une partie de ''[[La Corde et les Souris]]'' consignée dans ''[[Le Miroir des limbes]]''. Malraux y mène des entretiens avec entre autres [[Senghor]] et un personnage imaginaire, Max Torres. + +== Notes et références == +<references /> + +{{Portail|Littérature}} + +{{DEFAULTSORT:Hotes de passage}} +[[Catégorie:Essai paru en 1975]] +[[Catégorie:André Malraux]] + os3yfxm25241hqv05fu2m0799eu6kyq + + + 108105638 + 96902021 + 2014-10-10T13:50:30Z + + Speculos + 178738 + + ajout ref + wikitext + text/x-wiki + {{Titre en italique}} +'''''Hôtes de passage''''' est un livre d'[[André Malraux]] paru en [[1975 en littérature|1975]]<ref>http://www.gallimard.fr/Catalogue/GALLIMARD/Editions-originales/Hotes-de-passage2</ref>. C'est une partie de ''[[La Corde et les Souris]]'' consignée dans ''[[Le Miroir des limbes]]''. Malraux y mène des entretiens avec entre autres [[Senghor]] et un personnage imaginaire, Max Torres. + +== Notes et références == +<references /> + +{{Portail|Littérature}} + +{{DEFAULTSORT:Hotes de passage}} +[[Catégorie:Essai paru en 1975]] +[[Catégorie:André Malraux]] + fdvxeot1gkact2afw9tke0im3dt1vlq + + + 110029454 + 108105638 + 2014-12-17T12:39:44Z + + Criric + 13123 + + + lien homonymie + wikitext + text/x-wiki + {{Titre en italique}} +'''''Hôtes de passage''''' est un livre d'[[André Malraux]] paru en [[1975 en littérature|1975]]<ref>http://www.gallimard.fr/Catalogue/GALLIMARD/Editions-originales/Hotes-de-passage2</ref>. C'est une partie de ''[[La Corde et les Souris]]'' consignée dans ''[[Le Miroir des limbes]]''. Malraux y mène des entretiens avec notamment [[Léopold Sédar Senghor|Senghor]] et un personnage imaginaire, Max Torres. + +== Notes et références == +<references /> + +{{Portail|Littérature}} + +{{DEFAULTSORT:Hotes de passage}} +[[Catégorie:Essai paru en 1975]] +[[Catégorie:André Malraux]] + 82f5ijwud08r3tuvfd2ihubcrt75vxy + + + 112596125 + 110029454 + 2015-03-09T11:52:36Z + + Bibo le magicien + 274342 + + catégorie plus précise + wikitext + text/x-wiki + {{Titre en italique}} +'''''Hôtes de passage''''' est un livre d'[[André Malraux]] paru en [[1975 en littérature|1975]]<ref>http://www.gallimard.fr/Catalogue/GALLIMARD/Editions-originales/Hotes-de-passage2</ref>. C'est une partie de ''[[La Corde et les Souris]]'' consignée dans ''[[Le Miroir des limbes]]''. Malraux y mène des entretiens avec notamment [[Léopold Sédar Senghor|Senghor]] et un personnage imaginaire, Max Torres. + +== Notes et références == +<references /> + +{{Portail|littérature française}} + +{{DEFAULTSORT:Hotes de passage}} +[[Catégorie:Essai paru en 1975]] +[[Catégorie:Essai d'André Malraux]] + 6ytk4mt9ltj8xo7svc4tnndl8cfyrqn + + + 119483777 + 112596125 + 2015-10-14T10:58:12Z + + Patangel + 684878 + + Ajout d'une catégorie + wikitext + text/x-wiki + {{Titre en italique}} +'''''Hôtes de passage''''' est un livre d'[[André Malraux]] paru en [[1975 en littérature|1975]]<ref>http://www.gallimard.fr/Catalogue/GALLIMARD/Editions-originales/Hotes-de-passage2</ref>. C'est une partie de ''[[La Corde et les Souris]]'' consignée dans ''[[Le Miroir des limbes]]''. Malraux y mène des entretiens avec notamment [[Léopold Sédar Senghor|Senghor]] et un personnage imaginaire, Max Torres. + +== Notes et références == +<references /> + +{{Portail|littérature française}} + +{{DEFAULTSORT:Hotes de passage}} +[[Catégorie:Essai paru en 1975]] +[[Catégorie:Essai français des années 1970]] +[[Catégorie:Essai d'André Malraux]] + azi0g64c0q8kq2eogknes9xu18mck80 + + + 187987910 + 119483777 + 2021-11-13T23:18:13Z + + Arrakis + 43931 + + wikitext + text/x-wiki + {{Titre en italique}} +'''''Hôtes de passage''''' est un livre d'[[André Malraux]] paru en [[1975 en littérature|1975]]<ref>http://www.gallimard.fr/Catalogue/GALLIMARD/Editions-originales/Hotes-de-passage2</ref>. C'est une partie de ''[[La Corde et les Souris]]'' consignée dans ''[[Le Miroir des limbes]]''. Malraux y mène des dialogues dans chacune des trois parties: avec [[Léopold Sédar Senghor|Senghor]], avec Georges Salles, enfin avec un personnage imaginaire, Max Torrès. + +== Notes et références == +<references /> + +{{Portail|littérature française}} + +{{DEFAULTSORT:Hotes de passage}} +[[Catégorie:Essai paru en 1975]] +[[Catégorie:Essai français des années 1970]] +[[Catégorie:Essai d'André Malraux]] + 15a5hbi7sqmel5sboyzfgqq7plnxnhe + + + 188002523 + 187987910 + 2021-11-14T14:42:04Z + + Arrakis + 43931 + + wikitext + text/x-wiki + {{Titre en italique}} +'''''Hôtes de passage''''' est un livre d'[[André Malraux]] paru en [[1975 en littérature|1975]]<ref>http://www.gallimard.fr/Catalogue/GALLIMARD/Editions-originales/Hotes-de-passage2</ref>. C'est une partie de ''[[La Corde et les Souris]]'' consignée dans ''[[Le Miroir des limbes]]''. Malraux y mène des dialogues dans chacune des trois parties: avec [[Léopold Sédar Senghor|Senghor]], avec [[Georges Salles]], enfin avec un personnage imaginaire, Max Torrès. + +== Notes et références == +<references /> + +{{Portail|littérature française}} + +{{DEFAULTSORT:Hotes de passage}} +[[Catégorie:Essai paru en 1975]] +[[Catégorie:Essai français des années 1970]] +[[Catégorie:Essai d'André Malraux]] + tks8amgzjg9gyttbtn34kq4qbf1dr0n + + + + Raymond Beaudet + 0 + 502899 + + 4310006 + 2005-12-01T03:28:30Z + + Grosnombril + 51037 + + wikitext + text/x-wiki + {{ébauche}} +'''Raymond Beaudet''' est un [[écrivain]] [[Québec|québécois]]. + +==Honneurs== +*[[Prix Robert-Cliche]] ([[1987]]), ''Les héritiers'' +[[Catégorie:Écrivain québécois]] + cr6qoulkhd7xp2h00242oruvvswg297 + + + 4310029 + 4310006 + 2005-12-01T03:33:37Z + + Grosnombril + 51037 + + wikitext + text/x-wiki + {{ébauche}} +'''Raymond Beaudet''' est un [[écrivain]] [[Québec|québécois]]. + +==Honneurs== +*[[Prix Robert-Cliche]] ([[1987]]), ''Passeport pour la liberté'' +[[Catégorie:Écrivain québécois]] + tc7rk7ds9xfj512ur4zsevh2gxqwon4 + + + 4310436 + 4310029 + 2005-12-01T05:29:32Z + + Gene.arboit + 33541 + + meilleure catégorie + wikitext + text/x-wiki + {{ébauche écrivain}} +'''Raymond Beaudet''' est un [[écrivain]] [[Québec|québécois]]. + +==Honneurs== +*[[Prix Robert-Cliche]] ([[1987]]), ''Passeport pour la liberté'' + +[[Catégorie:Écrivain québécois|Beaudet, Raymond]] + ea6wlus4heib81rs16xp3n3tu5u0llk + + + 12140109 + 4310436 + 2006-11-29T13:29:31Z + + François Martin + 156892 + + précisions + wikitext + text/x-wiki + {{ébauche écrivain}} +'''Raymond Beaudet''' est un [[écrivain]] [[Québec|québécois]]. + +==Honneurs== +*[[Prix Robert-Cliche]] ([[1988]]), ''Passeport pour la liberté''[http://www.edvlb.com/prixcliche/pc1990-1987.html#laureat1988] + +==Bibliographie== +* ''Passeport pour la liberté''. (1987). +* ''Vie 101''. Saint-Prosper : Éditions du Mécène (2003). + +[[Catégorie:Écrivain québécois|Beaudet, Raymond]] + 9hhk7gvjemxiwy9o1dg1u3fesqm4z0p + + + 15447437 + 12140109 + 2007-03-29T00:39:08Z + + 207.134.45.250 + + /* Bibliographie */ + wikitext + text/x-wiki + {{ébauche écrivain}} +'''Raymond Beaudet''' est un [[écrivain]] [[Québec|québécois]]. + +==Honneurs== +*[[Prix Robert-Cliche]] ([[1988]]), ''Passeport pour la liberté''[http://www.edvlb.com/prixcliche/pc1990-1987.html#laureat1988] + +==Bibliographie== +* ''Passeport pour la liberté''. (1987). +* ''Vie 101''. Saint-Prosper : Éditions du Mécène (2003). +* ''29, Rue des Remparts''. Saint-Prosper : Éditions du Mécène (2005). + +[[Catégorie:Écrivain québécois|Beaudet, Raymond]] + l905km76eid2n77wm55h2vsjr85a5eq + + + 26089259 + 15447437 + 2008-02-12T06:18:14Z + + DumZiBoT + 280295 + + + Robot : Passage au modèle {{ébauche}} : {{ébauche|écrivain}} + wikitext + text/x-wiki + {{ébauche|écrivain}} +'''Raymond Beaudet''' est un [[écrivain]] [[Québec|québécois]]. + +==Honneurs== +*[[Prix Robert-Cliche]] ([[1988]]), ''Passeport pour la liberté''[http://www.edvlb.com/prixcliche/pc1990-1987.html#laureat1988] + +==Bibliographie== +* ''Passeport pour la liberté''. (1987). +* ''Vie 101''. Saint-Prosper : Éditions du Mécène (2003). +* ''29, Rue des Remparts''. Saint-Prosper : Éditions du Mécène (2005). + +[[Catégorie:Écrivain québécois|Beaudet, Raymond]] + 48msl39i08mtjqwkbt7k1vrtqgro7hz + + + 34692415 + 26089259 + 2008-10-26T16:22:38Z + + 75.154.173.34 + + wikitext + text/x-wiki + {{ébauche|écrivain}} +'''Raymond Beaudet''' (Québec 1950 - ) est un écrivain et un scénariste [[québécois]]. Détenteur d’une maîtrise en [[philosophie]] de l’[[Université Laval]] (1975) on le retrouve successivement enseignant, syndicaliste, secrétaire particulier du Ministre des Richesses Naturelles,[[Yves Bérubé]], directeur d’école primaire et directeur d’école secondaire (Polyvalente Benoît-Vachon). Une passion l’anime pendant tout ce temps : l’écriture. Il est l’auteur de trois romans, d’un essai, d’une trentaine de scénarios, de quelques nouvelles et de trois pièces de théâtre.. + +==Honneurs== +*[[Prix Robert-Cliche]] ([[1988]]), ''Passeport pour la liberté''[http://www.edvlb.com/prixcliche/pc1990-1987.html#laureat1988] +* Prix Corpo-vision (1992) +* Prix Adate (1993) + + +==Bibliographie== +*2008 Dans un mois, dans un an, Roman publié dans la collection Les mots inventifs, Les Éditions du Mécène, 576 pages. ISBN 978-2-923150-61-1 + +*2007 L'écriture, Projet personnel d'orientation, Ministère de l'Éducation du Loisir et du sport. + +*2005 29, rue des Remparts, Roman publié dans la collection Les mots inventifs, Les éditions du Mécène, 192 pages. ISBN 2-923150-28-7 + +*2003 Vie 101, Ouvrage publié dans la collection Les mots utiles, Les Éditions du Mécène. 126 pages. ISBN 2-923150-03-1 + +*2002 Le groupe conseil fiscalis, scénario produit pour le groupe conseil Fiscalis. + +*2001 Lévis, ville nouvelle, scénario de deux émissions de trente minutes pour le Comité de transition de la ville de Lévis et Canal Vox + +*2001 L’école québécoise, ce qu’il y a de mieux pour votre enfant, scénario produit pour le Ministère de l’éducation du Québec. + +*2000 Le jeu en valait-il la chandelle? scénario produit pour le Centre québécois d’excellence pour la prévention et le traitement du jeu. (Université Laval) + +*1999 Le hasard, Lucky, on peut rien y changer, scénario produit pour le Centre québécois d’excellence pour la prévention et le traitement du jeu. (Université Laval) + +*1999 Un pacte fiscal pour l’an 2000, des idées, de la solidarité, scénario produit pour l’Union des Municipalités régionales de comté et des municipalités locales. + +*1999 Détect-o-max et Une journée avec Détect-o-max, deux scénarios produits pour Conception Ro-main inc. + +*1999 Propane GRG, à l’écoute de ses clients, scénario produit pour la firme Propane GRG inc. + +*1998 Maître du mètre, scénario d’un documentaire sur les 25 ans du système métrique au Québec. + +*1997 Le temps des sucres, scénario produit pour la firme Shady Maple Farms. + +*1996 Le Génie de campagne, scénario produit pour les Forces armées canadiennes. + +*1996 La Compagnie franche de la Marine de Québec, scénario produit pour les Forces armées canadiennes. + +*1995 Bon séjour à l'École navale de Québec, scénario produit pour les Forces armées canadiennes. + +*1994 Un leadership, des services, scénario produit pour la Fédération des commissions scolaires du Québec. + +*1993 Les clubs de recherche d'emploi, scénario produit pour le Ministère de l'Emploi et de l'Immigration du Canada. + +*1992 Fiers de notre avenir, scénario produit pour l'Assurance-Vie Desjardins. + +*1992 Responsible Leadership, scénario produit pour la compagnie papetière Donohue. (Prix Corpo Vision) + +*1992 Scénarisation d'un ensemble de huit vidéos destinées aux écoles secondaires et aux collèges du Québec, pour la Fondation de l'entrepreneurship Québécois. (Prix Adate) + +*1991 Guide à l'intention du nouveau personnel, rédaction d'une brochure d'accueil pour la Commission scolaire Louis-Fréchette. + +*1990 Comment ça va chez vous? scénario produit pour la Confédération des caisses Desjardins. + +*1990 Le choc est aussi grand pour les petits. I et II, scénario de deux vidéos pour la Régie de l'assurance automobile du Québec. + +*1990 Participation au concours de nouvelles de Radio- +Canada avec Alexandre et Cassiopée. + +*1989 Participation au concours de nouvelles de Radio- +Canada avec Le mystère de la cathédrale. + +*1989 La Double vie d'Antoine Gagnon, Ministre, scénario d'un téléfilm pour Radio-Canada. + +*1988 Passeport pour la liberté, Les Quinze Éditeurs, Montréal. +ISBN 2-89026-368-1. (Prix Robert Cliche) + +*1988 Co-édition aux Editions Jean Picollec, à Paris, du +roman Passeport pour la liberté, 303 pages, ISBN +2-86477-088-1. + +*1987 Participation au concours de nouvelles de Radio- +Canada avec Le secret. + +*1987 Collaboration au scénario et aux dialogues de Vie décolle, vidéo produite pour la Commission scolaire Abénakis (21 minutes). + +*1983 Rédaction et direction de C'est qui ma maman à moi? pièce montée par la troupe de théâtre de la Polyvalente Benoît-Vachon de Sainte-Marie de Beauce. + +*1982 Rédaction et direction de Au nom du père, de la fille et +du Sain d'esprit, pièce de théâtre montée par la troupe +de théâtre de la Polyvalente Benoît -Vachon de Sainte-Marie de Beauce. + +*1977 Co-rédaction et mise en scène de la pièce Coup de Théâtre à Ste-Onction jouée par les élèves de la Polyvalente Benoît-Vachon de Sainte-Marie de Beauce + +[[Catégorie:Écrivain québécois|Beaudet, Raymond]] + 6z8dct3sywuy4u0powt922k3ik8a71p + + + 34692541 + 34692415 + 2008-10-26T16:26:16Z + + 75.154.173.34 + + wikitext + text/x-wiki + '''Raymond Beaudet''' (Québec 1950 - ) est un écrivain et un scénariste [[québécois]]. Détenteur d’une maîtrise en [[philosophie]] de l’[[Université Laval]] (1975) on le retrouve successivement enseignant, syndicaliste, secrétaire particulier du Ministre des Richesses Naturelles,[[Yves Bérubé]], directeur d’école primaire et directeur d’école secondaire (Polyvalente Benoît-Vachon). Une passion l’anime pendant tout ce temps : l’écriture. Il est l’auteur de trois romans, d’un essai, d’une trentaine de scénarios, de quelques nouvelles et de trois pièces de théâtre.. + +==Honneurs== +*[[Prix Robert-Cliche]] ([[1988]]), ''Passeport pour la liberté''[http://www.edvlb.com/prixcliche/pc1990-1987.html#laureat1988] +* Prix Corpo-vision (1992) +* Prix Adate (1993) + + +==Bibliographie== +*2008 Dans un mois, dans un an, Roman publié dans la collection Les mots inventifs, Les Éditions du Mécène, 576 pages. ISBN 978-2-923150-61-1 + +*2007 L'écriture, Projet personnel d'orientation, Ministère de l'Éducation du Loisir et du sport. + +*2005 29, rue des Remparts, Roman publié dans la collection Les mots inventifs, Les éditions du Mécène, 192 pages. ISBN 2-923150-28-7 + +*2003 Vie 101, Ouvrage publié dans la collection Les mots utiles, Les Éditions du Mécène. 126 pages. ISBN 2-923150-03-1 + +*2002 Le groupe conseil fiscalis, scénario produit pour le groupe conseil Fiscalis. + +*2001 Lévis, ville nouvelle, scénario de deux émissions de trente minutes pour le Comité de transition de la ville de Lévis et Canal Vox + +*2001 L’école québécoise, ce qu’il y a de mieux pour votre enfant, scénario produit pour le Ministère de l’éducation du Québec. + +*2000 Le jeu en valait-il la chandelle? scénario produit pour le Centre québécois d’excellence pour la prévention et le traitement du jeu. (Université Laval) + +*1999 Le hasard, Lucky, on peut rien y changer, scénario produit pour le Centre québécois d’excellence pour la prévention et le traitement du jeu. (Université Laval) + +*1999 Un pacte fiscal pour l’an 2000, des idées, de la solidarité, scénario produit pour l’Union des Municipalités régionales de comté et des municipalités locales. + +*1999 Détect-o-max et Une journée avec Détect-o-max, deux scénarios produits pour Conception Ro-main inc. + +*1999 Propane GRG, à l’écoute de ses clients, scénario produit pour la firme Propane GRG inc. + +*1998 Maître du mètre, scénario d’un documentaire sur les 25 ans du système métrique au Québec. + +*1997 Le temps des sucres, scénario produit pour la firme Shady Maple Farms. + +*1996 Le Génie de campagne, scénario produit pour les Forces armées canadiennes. + +*1996 La Compagnie franche de la Marine de Québec, scénario produit pour les Forces armées canadiennes. + +*1995 Bon séjour à l'École navale de Québec, scénario produit pour les Forces armées canadiennes. + +*1994 Un leadership, des services, scénario produit pour la Fédération des commissions scolaires du Québec. + +*1993 Les clubs de recherche d'emploi, scénario produit pour le Ministère de l'Emploi et de l'Immigration du Canada. + +*1992 Fiers de notre avenir, scénario produit pour l'Assurance-Vie Desjardins. + +*1992 Responsible Leadership, scénario produit pour la compagnie papetière Donohue. (Prix Corpo Vision) + +*1992 Scénarisation d'un ensemble de huit vidéos destinées aux écoles secondaires et aux collèges du Québec, pour la Fondation de l'entrepreneurship Québécois. (Prix Adate) + +*1991 Guide à l'intention du nouveau personnel, rédaction d'une brochure d'accueil pour la Commission scolaire Louis-Fréchette. + +*1990 Comment ça va chez vous? scénario produit pour la Confédération des caisses Desjardins. + +*1990 Le choc est aussi grand pour les petits. I et II, scénario de deux vidéos pour la Régie de l'assurance automobile du Québec. + +*1990 Participation au concours de nouvelles de Radio- +Canada avec Alexandre et Cassiopée. + +*1989 Participation au concours de nouvelles de Radio- +Canada avec Le mystère de la cathédrale. + +*1989 La Double vie d'Antoine Gagnon, Ministre, scénario d'un téléfilm pour Radio-Canada. + +*1988 Passeport pour la liberté, Les Quinze Éditeurs, Montréal. +ISBN 2-89026-368-1. (Prix Robert Cliche) + +*1988 Co-édition aux Editions Jean Picollec, à Paris, du +roman Passeport pour la liberté, 303 pages, ISBN +2-86477-088-1. + +*1987 Participation au concours de nouvelles de Radio- +Canada avec Le secret. + +*1987 Collaboration au scénario et aux dialogues de Vie décolle, vidéo produite pour la Commission scolaire Abénakis (21 minutes). + +*1983 Rédaction et direction de C'est qui ma maman à moi? pièce montée par la troupe de théâtre de la Polyvalente Benoît-Vachon de Sainte-Marie de Beauce. + +*1982 Rédaction et direction de Au nom du père, de la fille et +du Sain d'esprit, pièce de théâtre montée par la troupe +de théâtre de la Polyvalente Benoît -Vachon de Sainte-Marie de Beauce. + +*1977 Co-rédaction et mise en scène de la pièce Coup de Théâtre à Ste-Onction jouée par les élèves de la Polyvalente Benoît-Vachon de Sainte-Marie de Beauce + +[[Catégorie:Écrivain québécois|Beaudet, Raymond]] + hm0xqq8pf6yk7f6vsoh0miwqvv42bup + + + 35120372 + 34692541 + 2008-11-09T17:09:56Z + + Raymond Beaudet + 479201 + + wikitext + text/x-wiki + '''Raymond Beaudet''' (Québec 1950 - ) est un écrivain et un scénariste [[québécois]]. Détenteur d’une maîtrise en [[philosophie]] de l’[[Université Laval]] (1975) on le retrouve successivement enseignant, syndicaliste, secrétaire particulier du Ministre des Richesses Naturelles,[[Yves Bérubé]], directeur d’école primaire et directeur d’école secondaire (Polyvalente Benoît-Vachon). Une passion l’anime pendant tout ce temps : l’écriture. Il est l’auteur de trois romans, d’un essai, d’une trentaine de scénarios, de quelques nouvelles et de trois pièces de théâtre.. +[[Image:Photo_Tom_Prague_08.jpg|250px|thumb|Raymond Beaudet]] +==Honneurs== +*[[Prix Robert-Cliche]] ([[1988]]), ''Passeport pour la liberté''[http://www.edvlb.com/prixcliche/pc1990-1987.html#laureat1988] +* Prix Corpo-vision (1992) +* Prix Adate (1993) + + +==Bibliographie== +*2008 Dans un mois, dans un an, Roman publié dans la collection Les mots inventifs, Les Éditions du Mécène, 576 pages. ISBN 978-2-923150-61-1 + +*2007 L'écriture, Projet personnel d'orientation, Ministère de l'Éducation du Loisir et du sport. + +*2005 29, rue des Remparts, Roman publié dans la collection Les mots inventifs, Les éditions du Mécène, 192 pages. ISBN 2-923150-28-7 + +*2003 Vie 101, Ouvrage publié dans la collection Les mots utiles, Les Éditions du Mécène. 126 pages. ISBN 2-923150-03-1 + +*2002 Le groupe conseil fiscalis, scénario produit pour le groupe conseil Fiscalis. + +*2001 Lévis, ville nouvelle, scénario de deux émissions de trente minutes pour le Comité de transition de la ville de Lévis et Canal Vox + +*2001 L’école québécoise, ce qu’il y a de mieux pour votre enfant, scénario produit pour le Ministère de l’éducation du Québec. + +*2000 Le jeu en valait-il la chandelle? scénario produit pour le Centre québécois d’excellence pour la prévention et le traitement du jeu. (Université Laval) + +*1999 Le hasard, Lucky, on peut rien y changer, scénario produit pour le Centre québécois d’excellence pour la prévention et le traitement du jeu. (Université Laval) + +*1999 Un pacte fiscal pour l’an 2000, des idées, de la solidarité, scénario produit pour l’Union des Municipalités régionales de comté et des municipalités locales. + +*1999 Détect-o-max et Une journée avec Détect-o-max, deux scénarios produits pour Conception Ro-main inc. + +*1999 Propane GRG, à l’écoute de ses clients, scénario produit pour la firme Propane GRG inc. + +*1998 Maître du mètre, scénario d’un documentaire sur les 25 ans du système métrique au Québec. + +*1997 Le temps des sucres, scénario produit pour la firme Shady Maple Farms. + +*1996 Le Génie de campagne, scénario produit pour les Forces armées canadiennes. + +*1996 La Compagnie franche de la Marine de Québec, scénario produit pour les Forces armées canadiennes. + +*1995 Bon séjour à l'École navale de Québec, scénario produit pour les Forces armées canadiennes. + +*1994 Un leadership, des services, scénario produit pour la Fédération des commissions scolaires du Québec. + +*1993 Les clubs de recherche d'emploi, scénario produit pour le Ministère de l'Emploi et de l'Immigration du Canada. + +*1992 Fiers de notre avenir, scénario produit pour l'Assurance-Vie Desjardins. + +*1992 Responsible Leadership, scénario produit pour la compagnie papetière Donohue. (Prix Corpo Vision) + +*1992 Scénarisation d'un ensemble de huit vidéos destinées aux écoles secondaires et aux collèges du Québec, pour la Fondation de l'entrepreneurship Québécois. (Prix Adate) + +*1991 Guide à l'intention du nouveau personnel, rédaction d'une brochure d'accueil pour la Commission scolaire Louis-Fréchette. + +*1990 Comment ça va chez vous? scénario produit pour la Confédération des caisses Desjardins. + +*1990 Le choc est aussi grand pour les petits. I et II, scénario de deux vidéos pour la Régie de l'assurance automobile du Québec. + +*1990 Participation au concours de nouvelles de Radio- +Canada avec Alexandre et Cassiopée. + +*1989 Participation au concours de nouvelles de Radio- +Canada avec Le mystère de la cathédrale. + +*1989 La Double vie d'Antoine Gagnon, Ministre, scénario d'un téléfilm pour Radio-Canada. + +*1988 Passeport pour la liberté, Les Quinze Éditeurs, Montréal. +ISBN 2-89026-368-1. (Prix Robert Cliche) + +*1988 Co-édition aux Editions Jean Picollec, à Paris, du +roman Passeport pour la liberté, 303 pages, ISBN +2-86477-088-1. + +*1987 Participation au concours de nouvelles de Radio- +Canada avec Le secret. + +*1987 Collaboration au scénario et aux dialogues de Vie décolle, vidéo produite pour la Commission scolaire Abénakis (21 minutes). + +*1983 Rédaction et direction de C'est qui ma maman à moi? pièce montée par la troupe de théâtre de la Polyvalente Benoît-Vachon de Sainte-Marie de Beauce. + +*1982 Rédaction et direction de Au nom du père, de la fille et +du Sain d'esprit, pièce de théâtre montée par la troupe +de théâtre de la Polyvalente Benoît -Vachon de Sainte-Marie de Beauce. + +*1977 Co-rédaction et mise en scène de la pièce Coup de Théâtre à Ste-Onction jouée par les élèves de la Polyvalente Benoît-Vachon de Sainte-Marie de Beauce + +[[Catégorie:Écrivain québécois|Beaudet, Raymond]] + he2zhrdoahkhvcngapcygnfudm77278 + + + 35130401 + 35120372 + 2008-11-09T23:51:35Z + + 24.203.189.22 + + wikitext + text/x-wiki + '''Raymond Beaudet''' (Québec 1950 - ) est un écrivain et un scénariste [[québécois]]. Détenteur d’une maîtrise en [[philosophie]] de l’[[Université Laval]] (1975) on le retrouve successivement enseignant, syndicaliste, secrétaire particulier du Ministre des Richesses Naturelles,[[Yves Bérubé]], directeur d’école primaire et directeur d’école secondaire (Polyvalente Benoît-Vachon). Une passion l’anime pendant tout ce temps : l’écriture. Il est l’auteur de trois romans, d’un essai, d’une trentaine de scénarios, de quelques nouvelles et de trois pièces de théâtre.. +[[Image:Photo_Tom_Prague_08.jpg|250px|thumb|Raymond Beaudet]] +==Honneurs== +*[[Prix Robert-Cliche]] ([[1988]]), ''Passeport pour la liberté''[http://www.edvlb.com/prixcliche/pc1990-1987.html#laureat1988] +* Prix Corpo-vision (1992) +* Prix Adate (1993) + + +==Bibliographie== +*2008 ''Dans un mois, dans un an'', Roman publié dans la collection Les mots inventifs, Les Éditions du Mécène, 576 pages. ISBN 978-2-923150-61-1 + +*2007 ''L'écriture'', Projet personnel d'orientation, Ministère de l'Éducation du Loisir et du sport. + +*2005 ''29, rue des Remparts'', Roman publié dans la collection Les mots inventifs, Les éditions du Mécène, 192 pages. ISBN 2-923150-28-7 + +*2003 ''Vie 101'', Ouvrage publié dans la collection Les mots utiles, Les Éditions du Mécène. 126 pages. ISBN 2-923150-03-1 + +*2002 ''Le groupe conseil fiscalis'', scénario produit pour le groupe conseil Fiscalis. + +*2001 ''Lévis, ville nouvelle'', scénario de deux émissions de trente minutes pour le Comité de transition de la ville de Lévis et Canal Vox + +*2001 ''L’école québécoise, ce qu’il y a de mieux pour votre enfant'', scénario produit pour le Ministère de l’éducation du Québec. + +*2000 ''Le jeu en valait-il la chandelle?'' scénario produit pour le Centre québécois d’excellence pour la prévention et le traitement du jeu. (Université Laval) + +*1999 ''Le hasard, Lucky, on peut rien y changer'', scénario produit pour le Centre québécois d’excellence pour la prévention et le traitement du jeu. (Université Laval) + +*1999 ''Un pacte fiscal pour l’an 2000, des idées, de la solidarité'', scénario produit pour l’Union des Municipalités régionales de comté et des municipalités locales. + +*1999 ''Détect-o-max et Une journée avec Détect-o-max'', deux scénarios produits pour Conception Ro-main inc. + +*1999 ''Propane GRG, à l’écoute de ses clients'', scénario produit pour la firme Propane GRG inc. + +*1998 ''Maître du mètre'', scénario d’un documentaire sur les 25 ans du système métrique au Québec. + +*1997 ''Le temps des sucres'', scénario produit pour la firme Shady Maple Farms. + +*1996 ''Le Génie de campagne'', scénario produit pour les Forces armées canadiennes. + +*1996 ''La Compagnie franche de la Marine de Québec'', scénario produit pour les Forces armées canadiennes. + +*1995 ''Bon séjour à l'École navale de Québec'', scénario produit pour les Forces armées canadiennes. + +*1994 ''Un leadership, des services'', scénario produit pour la Fédération des commissions scolaires du Québec. + +*1993 ''Les clubs de recherche d'emploi'', scénario produit pour le Ministère de l'Emploi et de l'Immigration du Canada. + +*1992 ''Fiers de notre avenir'', scénario produit pour l'Assurance-Vie Desjardins. + +*1992 ''Responsible Leadership'', scénario produit pour la compagnie papetière Donohue. (Prix Corpo Vision) + +*1992 Scénarisation d'un ensemble de huit vidéos destinées aux écoles secondaires et aux collèges du Québec, pour la Fondation de l'entrepreneurship Québécois. (Prix Adate) + +*1991 ''Guide à l'intention du nouveau personnel'', rédaction d'une brochure d'accueil pour la Commission scolaire Louis-Fréchette. + +*1990 Comment ça va chez vous? scénario produit pour la Confédération des caisses Desjardins. + +*1990 ''Le choc est aussi grand pour les petits.'' I et II, scénario de deux vidéos pour la Régie de l'assurance automobile du Québec. + +*1990 Participation au concours de nouvelles de Radio- +Canada avec ''Alexandre et Cassiopée. +'' +*1989 Participation au concours de nouvelles de Radio- +Canada avec ''Le mystère de la cathédrale. +'' +*1989 ''La Double vie d'Antoine Gagnon, Ministre'', scénario d'un téléfilm pour Radio-Canada. + +*1988 ''Passeport pour la liberté'', Les Quinze Éditeurs, Montréal. +ISBN 2-89026-368-1. (Prix Robert Cliche) + +*1988 Co-édition aux Editions Jean Picollec, à Paris, du +roman ''Passeport pour la liberté'', 303 pages, ISBN +2-86477-088-1. + +*1987 Participation au concours de nouvelles de Radio- +''Canada avec Le secret''. + +*1987 Collaboration au scénario et aux dialogues de ''Vie décolle'', vidéo produite pour la Commission scolaire Abénakis (21 minutes). + +*1983 Rédaction et direction de ''C'est qui ma maman à moi?'' pièce montée par la troupe de théâtre de la Polyvalente Benoît-Vachon de Sainte-Marie de Beauce. + +*1982 Rédaction et direction de ''Au nom du père, de la fille et +du Sain d'esprit'', pièce de théâtre montée par la troupe +de théâtre de la Polyvalente Benoît -Vachon de Sainte-Marie de Beauce. + +*1977 Co-rédaction et mise en scène de la pièce ''Coup de Théâtre à Ste-Onction'' jouée par les élèves de la Polyvalente Benoît-Vachon de Sainte-Marie de Beauce + +[[Catégorie:Écrivain québécois|Beaudet, Raymond]] + bk2ap5lk8wvjn71d8h25vyx5yr1wp03 + + + 39734107 + 35130401 + 2009-04-09T12:10:58Z + + Brochon99 + 173284 + + + [[Wikipédia:AutoWikiBrowser/Typos|Typo]] using [[Project:AutoWikiBrowser|AWB]] + wikitext + text/x-wiki + [[Fichier:Photo Tom Prague 08.jpg|250px|thumb|Raymond Beaudet]] +'''Raymond Beaudet''' (Québec 1950 - ) est un écrivain et un scénariste [[québécois]]. Détenteur d’une maîtrise en [[philosophie]] de l’[[Université Laval]] (1975) on le retrouve successivement enseignant, syndicaliste, secrétaire particulier du Ministre des Richesses Naturelles, [[Yves Bérubé]], directeur d’école primaire et directeur d’école secondaire (Polyvalente Benoît-Vachon). Une passion l’anime pendant tout ce temps : l’écriture. Il est l’auteur de trois romans, d’un essai, d’une trentaine de scénarios, de quelques nouvelles et de trois pièces de théâtre.. + +==Honneurs== +*[[Prix Robert-Cliche]] ([[1988]]), ''Passeport pour la liberté''[http://www.edvlb.com/prixcliche/pc1990-1987.html#laureat1988] +* Prix Corpo-vision (1992) +* Prix Adate (1993) + +==Bibliographie== +*2008 ''Dans un mois, dans un an'', Roman publié dans la collection Les mots inventifs, Les Éditions du Mécène, 576 pages. ISBN 978-2-923150-61-1 + +*2007 ''L'écriture'', Projet personnel d'orientation, Ministère de l'Éducation du Loisir et du sport. + +*2005 ''29, rue des Remparts'', Roman publié dans la collection Les mots inventifs, Les éditions du Mécène, 192 pages. ISBN 2-923150-28-7 + +*2003 ''Vie 101'', Ouvrage publié dans la collection Les mots utiles, Les Éditions du Mécène. 126 pages. ISBN 2-923150-03-1 + +*2002 ''Le groupe conseil fiscalis'', scénario produit pour le groupe conseil Fiscalis. + +*2001 ''Lévis, ville nouvelle'', scénario de deux émissions de trente minutes pour le Comité de transition de la ville de Lévis et Canal Vox + +*2001 ''L’école québécoise, ce qu’il y a de mieux pour votre enfant'', scénario produit pour le Ministère de l’éducation du Québec. + +*2000 ''Le jeu en valait-il la chandelle?'' scénario produit pour le Centre québécois d’excellence pour la prévention et le traitement du jeu. (Université Laval) + +*1999 ''Le hasard, Lucky, on peut rien y changer'', scénario produit pour le Centre québécois d’excellence pour la prévention et le traitement du jeu. (Université Laval) + +*1999 ''Un pacte fiscal pour l’an 2000, des idées, de la solidarité'', scénario produit pour l’Union des Municipalités régionales de comté et des municipalités locales. + +*1999 ''Détect-o-max et Une journée avec Détect-o-max'', deux scénarios produits pour Conception Ro-main inc. + +*1999 ''Propane GRG, à l’écoute de ses clients'', scénario produit pour la firme Propane GRG inc. + +*1998 ''Maître du mètre'', scénario d’un documentaire sur les 25 ans du système métrique au Québec. + +*1997 ''Le temps des sucres'', scénario produit pour la firme Shady Maple Farms. + +*1996 ''Le Génie de campagne'', scénario produit pour les Forces armées canadiennes. + +*1996 ''La Compagnie franche de la Marine de Québec'', scénario produit pour les Forces armées canadiennes. + +*1995 ''Bon séjour à l'École navale de Québec'', scénario produit pour les Forces armées canadiennes. + +*1994 ''Un leadership, des services'', scénario produit pour la Fédération des commissions scolaires du Québec. + +*1993 ''Les clubs de recherche d'emploi'', scénario produit pour le Ministère de l'Emploi et de l'Immigration du Canada. + +*1992 ''Fiers de notre avenir'', scénario produit pour l'Assurance-Vie Desjardins. + +*1992 ''Responsible Leadership'', scénario produit pour la compagnie papetière Donohue. (Prix Corpo Vision) + +*1992 Scénarisation d'un ensemble de huit vidéos destinées aux écoles secondaires et aux collèges du Québec, pour la Fondation de l'entrepreneurship Québécois. (Prix Adate) + +*1991 ''Guide à l'intention du nouveau personnel'', rédaction d'une brochure d'accueil pour la Commission scolaire Louis-Fréchette. + +*1990 Comment ça va chez vous? scénario produit pour la Confédération des caisses Desjardins. + +*1990 ''Le choc est aussi grand pour les petits.'' I et II, scénario de deux vidéos pour la Régie de l'assurance automobile du Québec. + +*1990 Participation au concours de nouvelles de Radio- +Canada avec ''Alexandre et Cassiopée. +'' +*1989 Participation au concours de nouvelles de Radio- +Canada avec ''Le mystère de la cathédrale. +'' +*1989 ''La Double vie d'Antoine Gagnon, Ministre'', scénario d'un téléfilm pour Radio-Canada. + +*1988 ''Passeport pour la liberté'', Les Quinze Éditeurs, Montréal. +ISBN 2-89026-368-1. (Prix Robert Cliche) + +*1988 Co-édition aux Éditions Jean Picollec, à Paris, du +roman ''Passeport pour la liberté'', 303 pages, ISBN +2-86477-088-1. + +*1987 Participation au concours de nouvelles de Radio- +''Canada avec Le secret''. + +*1987 Collaboration au scénario et aux dialogues de ''Vie décolle'', vidéo produite pour la Commission scolaire Abénakis (21 minutes). + +*1983 Rédaction et direction de ''C'est qui ma maman à moi?'' pièce montée par la troupe de théâtre de la Polyvalente Benoît-Vachon de Sainte-Marie de Beauce. + +*1982 Rédaction et direction de ''Au nom du père, de la fille et +du Sain d'esprit'', pièce de théâtre montée par la troupe +de théâtre de la Polyvalente Benoît -Vachon de Sainte-Marie de Beauce. + +*1977 Co-rédaction et mise en scène de la pièce ''Coup de Théâtre à Ste-Onction'' jouée par les élèves de la Polyvalente Benoît-Vachon de Sainte-Marie de Beauce + +[[Catégorie:Écrivain québécois|Beaudet, Raymond]] + pvzbp30vlyhts3i4tundmn5d9rc5dg9 + + + 52337144 + 39734107 + 2010-04-18T04:25:56Z + + Asclepias + 73401 + + + wikitext + text/x-wiki + [[Fichier:Photo Tom Prague 08.jpg|thumb|Raymond Beaudet]] +'''Raymond Beaudet''' (Québec 1950 - ) est un écrivain et un scénariste [[québécois]]. Détenteur d’une maîtrise en [[philosophie]] de l’[[Université Laval]] (1975) on le retrouve successivement enseignant, syndicaliste, secrétaire particulier du Ministre des Richesses Naturelles, [[Yves Bérubé]], directeur d’école primaire et directeur d’école secondaire (Polyvalente Benoît-Vachon). Une passion l’anime pendant tout ce temps : l’écriture. Il est l’auteur de trois romans, d’un essai, d’une trentaine de scénarios, de quelques nouvelles et de trois pièces de théâtre.. + +==Honneurs== +*[[Prix Robert-Cliche]] ([[1988]]), ''Passeport pour la liberté''[http://www.edvlb.com/prixcliche/pc1990-1987.html#laureat1988] +* Prix Corpo-vision (1992) +* Prix Adate (1993) + +==Bibliographie== +*2008 ''Dans un mois, dans un an'', Roman publié dans la collection Les mots inventifs, Les Éditions du Mécène, 576 pages. ISBN 978-2-923150-61-1 + +*2007 ''L'écriture'', Projet personnel d'orientation, Ministère de l'Éducation du Loisir et du sport. + +*2005 ''29, rue des Remparts'', Roman publié dans la collection Les mots inventifs, Les éditions du Mécène, 192 pages. ISBN 2-923150-28-7 + +*2003 ''Vie 101'', Ouvrage publié dans la collection Les mots utiles, Les Éditions du Mécène. 126 pages. ISBN 2-923150-03-1 + +*2002 ''Le groupe conseil fiscalis'', scénario produit pour le groupe conseil Fiscalis. + +*2001 ''Lévis, ville nouvelle'', scénario de deux émissions de trente minutes pour le Comité de transition de la ville de Lévis et Canal Vox + +*2001 ''L’école québécoise, ce qu’il y a de mieux pour votre enfant'', scénario produit pour le Ministère de l’éducation du Québec. + +*2000 ''Le jeu en valait-il la chandelle?'' scénario produit pour le Centre québécois d’excellence pour la prévention et le traitement du jeu. (Université Laval) + +*1999 ''Le hasard, Lucky, on peut rien y changer'', scénario produit pour le Centre québécois d’excellence pour la prévention et le traitement du jeu. (Université Laval) + +*1999 ''Un pacte fiscal pour l’an 2000, des idées, de la solidarité'', scénario produit pour l’Union des Municipalités régionales de comté et des municipalités locales. + +*1999 ''Détect-o-max et Une journée avec Détect-o-max'', deux scénarios produits pour Conception Ro-main inc. + +*1999 ''Propane GRG, à l’écoute de ses clients'', scénario produit pour la firme Propane GRG inc. + +*1998 ''Maître du mètre'', scénario d’un documentaire sur les 25 ans du système métrique au Québec. + +*1997 ''Le temps des sucres'', scénario produit pour la firme Shady Maple Farms. + +*1996 ''Le Génie de campagne'', scénario produit pour les Forces armées canadiennes. + +*1996 ''La Compagnie franche de la Marine de Québec'', scénario produit pour les Forces armées canadiennes. + +*1995 ''Bon séjour à l'École navale de Québec'', scénario produit pour les Forces armées canadiennes. + +*1994 ''Un leadership, des services'', scénario produit pour la Fédération des commissions scolaires du Québec. + +*1993 ''Les clubs de recherche d'emploi'', scénario produit pour le Ministère de l'Emploi et de l'Immigration du Canada. + +*1992 ''Fiers de notre avenir'', scénario produit pour l'Assurance-Vie Desjardins. + +*1992 ''Responsible Leadership'', scénario produit pour la compagnie papetière Donohue. (Prix Corpo Vision) + +*1992 Scénarisation d'un ensemble de huit vidéos destinées aux écoles secondaires et aux collèges du Québec, pour la Fondation de l'entrepreneurship Québécois. (Prix Adate) + +*1991 ''Guide à l'intention du nouveau personnel'', rédaction d'une brochure d'accueil pour la Commission scolaire Louis-Fréchette. + +*1990 Comment ça va chez vous? scénario produit pour la Confédération des caisses Desjardins. + +*1990 ''Le choc est aussi grand pour les petits.'' I et II, scénario de deux vidéos pour la Régie de l'assurance automobile du Québec. + +*1990 Participation au concours de nouvelles de Radio- +Canada avec ''Alexandre et Cassiopée. +'' +*1989 Participation au concours de nouvelles de Radio- +Canada avec ''Le mystère de la cathédrale. +'' +*1989 ''La Double vie d'Antoine Gagnon, Ministre'', scénario d'un téléfilm pour Radio-Canada. + +*1988 ''Passeport pour la liberté'', Les Quinze Éditeurs, Montréal. +ISBN 2-89026-368-1. (Prix Robert Cliche) + +*1988 Co-édition aux Éditions Jean Picollec, à Paris, du +roman ''Passeport pour la liberté'', 303 pages, ISBN +2-86477-088-1. + +*1987 Participation au concours de nouvelles de Radio- +''Canada avec Le secret''. + +*1987 Collaboration au scénario et aux dialogues de ''Vie décolle'', vidéo produite pour la Commission scolaire Abénakis (21 minutes). + +*1983 Rédaction et direction de ''C'est qui ma maman à moi?'' pièce montée par la troupe de théâtre de la Polyvalente Benoît-Vachon de Sainte-Marie de Beauce. + +*1982 Rédaction et direction de ''Au nom du père, de la fille et +du Sain d'esprit'', pièce de théâtre montée par la troupe +de théâtre de la Polyvalente Benoît -Vachon de Sainte-Marie de Beauce. + +*1977 Co-rédaction et mise en scène de la pièce ''Coup de Théâtre à Ste-Onction'' jouée par les élèves de la Polyvalente Benoît-Vachon de Sainte-Marie de Beauce + +[[Catégorie:Écrivain québécois|Beaudet, Raymond]] + 2973ayl5whlqplilmoc3pibsbg3i62t + + + 63480986 + 52337144 + 2011-03-21T19:19:59Z + + Vlaam + 268672 + + + Correction des [[P:HOM|liens vers les pages d'homonymie]] - [[Québécois]] + wikitext + text/x-wiki + [[Fichier:Photo Tom Prague 08.jpg|thumb|Raymond Beaudet]] +'''Raymond Beaudet''' (Québec 1950 - ) est un écrivain et un scénariste [[Québec|québécois]]. Détenteur d’une maîtrise en [[philosophie]] de l’[[Université Laval]] (1975) on le retrouve successivement enseignant, syndicaliste, secrétaire particulier du Ministre des Richesses Naturelles, [[Yves Bérubé]], directeur d’école primaire et directeur d’école secondaire (Polyvalente Benoît-Vachon). Une passion l’anime pendant tout ce temps : l’écriture. Il est l’auteur de trois romans, d’un essai, d’une trentaine de scénarios, de quelques nouvelles et de trois pièces de théâtre.. + +==Honneurs== +*[[Prix Robert-Cliche]] ([[1988]]), ''Passeport pour la liberté''[http://www.edvlb.com/prixcliche/pc1990-1987.html#laureat1988] +* Prix Corpo-vision (1992) +* Prix Adate (1993) + +==Bibliographie== +*2008 ''Dans un mois, dans un an'', Roman publié dans la collection Les mots inventifs, Les Éditions du Mécène, 576 pages. ISBN 978-2-923150-61-1 + +*2007 ''L'écriture'', Projet personnel d'orientation, Ministère de l'Éducation du Loisir et du sport. + +*2005 ''29, rue des Remparts'', Roman publié dans la collection Les mots inventifs, Les éditions du Mécène, 192 pages. ISBN 2-923150-28-7 + +*2003 ''Vie 101'', Ouvrage publié dans la collection Les mots utiles, Les Éditions du Mécène. 126 pages. ISBN 2-923150-03-1 + +*2002 ''Le groupe conseil fiscalis'', scénario produit pour le groupe conseil Fiscalis. + +*2001 ''Lévis, ville nouvelle'', scénario de deux émissions de trente minutes pour le Comité de transition de la ville de Lévis et Canal Vox + +*2001 ''L’école québécoise, ce qu’il y a de mieux pour votre enfant'', scénario produit pour le Ministère de l’éducation du Québec. + +*2000 ''Le jeu en valait-il la chandelle?'' scénario produit pour le Centre québécois d’excellence pour la prévention et le traitement du jeu. (Université Laval) + +*1999 ''Le hasard, Lucky, on peut rien y changer'', scénario produit pour le Centre québécois d’excellence pour la prévention et le traitement du jeu. (Université Laval) + +*1999 ''Un pacte fiscal pour l’an 2000, des idées, de la solidarité'', scénario produit pour l’Union des Municipalités régionales de comté et des municipalités locales. + +*1999 ''Détect-o-max et Une journée avec Détect-o-max'', deux scénarios produits pour Conception Ro-main inc. + +*1999 ''Propane GRG, à l’écoute de ses clients'', scénario produit pour la firme Propane GRG inc. + +*1998 ''Maître du mètre'', scénario d’un documentaire sur les 25 ans du système métrique au Québec. + +*1997 ''Le temps des sucres'', scénario produit pour la firme Shady Maple Farms. + +*1996 ''Le Génie de campagne'', scénario produit pour les Forces armées canadiennes. + +*1996 ''La Compagnie franche de la Marine de Québec'', scénario produit pour les Forces armées canadiennes. + +*1995 ''Bon séjour à l'École navale de Québec'', scénario produit pour les Forces armées canadiennes. + +*1994 ''Un leadership, des services'', scénario produit pour la Fédération des commissions scolaires du Québec. + +*1993 ''Les clubs de recherche d'emploi'', scénario produit pour le Ministère de l'Emploi et de l'Immigration du Canada. + +*1992 ''Fiers de notre avenir'', scénario produit pour l'Assurance-Vie Desjardins. + +*1992 ''Responsible Leadership'', scénario produit pour la compagnie papetière Donohue. (Prix Corpo Vision) + +*1992 Scénarisation d'un ensemble de huit vidéos destinées aux écoles secondaires et aux collèges du Québec, pour la Fondation de l'entrepreneurship Québécois. (Prix Adate) + +*1991 ''Guide à l'intention du nouveau personnel'', rédaction d'une brochure d'accueil pour la Commission scolaire Louis-Fréchette. + +*1990 Comment ça va chez vous? scénario produit pour la Confédération des caisses Desjardins. + +*1990 ''Le choc est aussi grand pour les petits.'' I et II, scénario de deux vidéos pour la Régie de l'assurance automobile du Québec. + +*1990 Participation au concours de nouvelles de Radio- +Canada avec ''Alexandre et Cassiopée. +'' +*1989 Participation au concours de nouvelles de Radio- +Canada avec ''Le mystère de la cathédrale. +'' +*1989 ''La Double vie d'Antoine Gagnon, Ministre'', scénario d'un téléfilm pour Radio-Canada. + +*1988 ''Passeport pour la liberté'', Les Quinze Éditeurs, Montréal. +ISBN 2-89026-368-1. (Prix Robert Cliche) + +*1988 Co-édition aux Éditions Jean Picollec, à Paris, du +roman ''Passeport pour la liberté'', 303 pages, ISBN +2-86477-088-1. + +*1987 Participation au concours de nouvelles de Radio- +''Canada avec Le secret''. + +*1987 Collaboration au scénario et aux dialogues de ''Vie décolle'', vidéo produite pour la Commission scolaire Abénakis (21 minutes). + +*1983 Rédaction et direction de ''C'est qui ma maman à moi?'' pièce montée par la troupe de théâtre de la Polyvalente Benoît-Vachon de Sainte-Marie de Beauce. + +*1982 Rédaction et direction de ''Au nom du père, de la fille et +du Sain d'esprit'', pièce de théâtre montée par la troupe +de théâtre de la Polyvalente Benoît -Vachon de Sainte-Marie de Beauce. + +*1977 Co-rédaction et mise en scène de la pièce ''Coup de Théâtre à Ste-Onction'' jouée par les élèves de la Polyvalente Benoît-Vachon de Sainte-Marie de Beauce + +[[Catégorie:Écrivain québécois|Beaudet, Raymond]] + 6ta5xsja63bo23ria00uo5bc7ev9ew4 + + + 64526598 + 63480986 + 2011-04-20T12:52:08Z + + 75.154.173.34 + + Mise à jour incluant nouveau prix et nouvelles publications. + wikitext + text/x-wiki + [[Fichier:Photo Tom Prague 08.jpg|thumb|Raymond Beaudet]] +'''Raymond Beaudet''' (Québec 1950 - ) est un écrivain et un scénariste [[Québec|québécois]]. Détenteur d’une maîtrise en [[philosophie]] de l’[[Université Laval]] (1975) on le retrouve successivement enseignant, syndicaliste, secrétaire particulier du Ministre des Richesses Naturelles, [[Yves Bérubé]], directeur d’école primaire et directeur d’école secondaire (Polyvalente Benoît-Vachon). Une passion l’anime pendant tout ce temps : l’écriture. Il est l’auteur de trois romans, d’un essai, d’une trentaine de scénarios, de quelques nouvelles et de trois pièces de théâtre. + +==Honneurs== +* Prix du Patrimoine (2011) Catégorie Interprétation et Diffusion. +* [[Prix Robert-Cliche]] ([[1988]]), ''Passeport pour la liberté''[http://www.edvlb.com/prixcliche/pc1990-1987.html#laureat1988] +* Prix Corpo-vision (1992) +* Prix Adate (1993) + +==Bibliographie== +*2010 Biographie de Jeannine Rousseau et Rolland Massicotte, scénario. + +*2010 Le Projet Adam et Ève, nouvelle parue dans Écrits Mariverains 2010. + +*2009 Alexandre et Cassiopée, nouvelle parue dans Écrits Mariverains 2009. + +*2008 ''Dans un mois, dans un an'', Roman publié dans la collection Les mots inventifs, Les Éditions du Mécène, 576 pages. ISBN 978-2-923150-61-1 + +*2007 ''L'écriture'', Projet personnel d'orientation, Ministère de l'Éducation du Loisir et du sport. + +*2005 ''29, rue des Remparts'', Roman publié dans la collection Les mots inventifs, Les éditions du Mécène, 192 pages. ISBN 2-923150-28-7 + +*2003 ''Vie 101'', Ouvrage publié dans la collection Les mots utiles, Les Éditions du Mécène. 126 pages. ISBN 2-923150-03-1 + +*2002 ''Le groupe conseil fiscalis'', scénario produit pour le groupe conseil Fiscalis. + +*2001 ''Lévis, ville nouvelle'', scénario de deux émissions de trente minutes pour le Comité de transition de la ville de Lévis et Canal Vox + +*2001 ''L’école québécoise, ce qu’il y a de mieux pour votre enfant'', scénario produit pour le Ministère de l’éducation du Québec. + +*2000 ''Le jeu en valait-il la chandelle?'' scénario produit pour le Centre québécois d’excellence pour la prévention et le traitement du jeu. (Université Laval) + +*1999 ''Le hasard, Lucky, on peut rien y changer'', scénario produit pour le Centre québécois d’excellence pour la prévention et le traitement du jeu. (Université Laval) + +*1999 ''Un pacte fiscal pour l’an 2000, des idées, de la solidarité'', scénario produit pour l’Union des Municipalités régionales de comté et des municipalités locales. + +*1999 ''Détect-o-max et Une journée avec Détect-o-max'', deux scénarios produits pour Conception Ro-main inc. + +*1999 ''Propane GRG, à l’écoute de ses clients'', scénario produit pour la firme Propane GRG inc. + +*1998 ''Maître du mètre'', scénario d’un documentaire sur les 25 ans du système métrique au Québec. + +*1997 ''Le temps des sucres'', scénario produit pour la firme Shady Maple Farms. + +*1996 ''Le Génie de campagne'', scénario produit pour les Forces armées canadiennes. + +*1996 ''La Compagnie franche de la Marine de Québec'', scénario produit pour les Forces armées canadiennes. + +*1995 ''Bon séjour à l'École navale de Québec'', scénario produit pour les Forces armées canadiennes. + +*1994 ''Un leadership, des services'', scénario produit pour la Fédération des commissions scolaires du Québec. + +*1993 ''Les clubs de recherche d'emploi'', scénario produit pour le Ministère de l'Emploi et de l'Immigration du Canada. + +*1992 ''Fiers de notre avenir'', scénario produit pour l'Assurance-Vie Desjardins. + +*1992 ''Responsible Leadership'', scénario produit pour la compagnie papetière Donohue. (Prix Corpo Vision) + +*1992 Scénarisation d'un ensemble de huit vidéos destinées aux écoles secondaires et aux collèges du Québec, pour la Fondation de l'entrepreneurship Québécois. (Prix Adate) + +*1991 ''Guide à l'intention du nouveau personnel'', rédaction d'une brochure d'accueil pour la Commission scolaire Louis-Fréchette. + +*1990 Comment ça va chez vous? scénario produit pour la Confédération des caisses Desjardins. + +*1990 ''Le choc est aussi grand pour les petits.'' I et II, scénario de deux vidéos pour la Régie de l'assurance automobile du Québec. + +*1990 Participation au concours de nouvelles de Radio- +Canada avec ''Alexandre et Cassiopée. +'' +*1989 Participation au concours de nouvelles de Radio- +Canada avec ''Le mystère de la cathédrale. +'' +*1989 ''La Double vie d'Antoine Gagnon, Ministre'', scénario d'un téléfilm pour Radio-Canada. + +*1988 ''Passeport pour la liberté'', Les Quinze Éditeurs, Montréal. +ISBN 2-89026-368-1. (Prix Robert Cliche) + +*1988 Co-édition aux Éditions Jean Picollec, à Paris, du +roman ''Passeport pour la liberté'', 303 pages, ISBN +2-86477-088-1. + +*1987 Participation au concours de nouvelles de Radio- +''Canada avec Le secret''. + +*1987 Collaboration au scénario et aux dialogues de ''Vie décolle'', vidéo produite pour la Commission scolaire Abénakis (21 minutes). + +*1983 Rédaction et direction de ''C'est qui ma maman à moi?'' pièce montée par la troupe de théâtre de la Polyvalente Benoît-Vachon de Sainte-Marie de Beauce. + +*1982 Rédaction et direction de ''Au nom du père, de la fille et +du Sain d'esprit'', pièce de théâtre montée par la troupe +de théâtre de la Polyvalente Benoît -Vachon de Sainte-Marie de Beauce. + +*1977 Co-rédaction et mise en scène de la pièce ''Coup de Théâtre à Ste-Onction'' jouée par les élèves de la Polyvalente Benoît-Vachon de Sainte-Marie de Beauce + +[[Catégorie:Écrivain québécois|Beaudet, Raymond]] + 70m49x7cthdwxy9tebp0vn86i0ryk7t + + + 66731223 + 64526598 + 2011-06-24T08:01:08Z + + Perditax + 93028 + + + Ajout rapide de {{portail}} : + littérature ; avec [[Projet:JavaScript/Notices/BandeauxPortails|BandeauxPortails]], correction lien externe + wikitext + text/x-wiki + [[Fichier:Photo Tom Prague 08.jpg|thumb|Raymond Beaudet]] +'''Raymond Beaudet''' (Québec 1950 - ) est un écrivain et un scénariste [[Québec|québécois]]. Détenteur d’une maîtrise en [[philosophie]] de l’[[Université Laval]] (1975) on le retrouve successivement enseignant, syndicaliste, secrétaire particulier du Ministre des Richesses Naturelles, [[Yves Bérubé]], directeur d’école primaire et directeur d’école secondaire (Polyvalente Benoît-Vachon). Une passion l’anime pendant tout ce temps : l’écriture. Il est l’auteur de trois romans, d’un essai, d’une trentaine de scénarios, de quelques nouvelles et de trois pièces de théâtre. + +==Honneurs== +* Prix du Patrimoine (2011) Catégorie Interprétation et Diffusion. +* [[Prix Robert-Cliche]] ([[1988]]), ''Passeport pour la liberté''<ref>{{lien web | url=http://www.edvlb.com/prixrobertcliche/laureats.aspx | titre=Lauréats du prix Robert Cliche | consulté le=24 juin 2011}}</ref> +* Prix Corpo-vision (1992) +* Prix Adate (1993) + +==Bibliographie== +*2010 Biographie de Jeannine Rousseau et Rolland Massicotte, scénario. +*2010 Le Projet Adam et Ève, nouvelle parue dans Écrits Mariverains 2010. +*2009 Alexandre et Cassiopée, nouvelle parue dans Écrits Mariverains 2009. +*2008 ''Dans un mois, dans un an'', Roman publié dans la collection Les mots inventifs, Les Éditions du Mécène, 576 pages. ISBN 978-2-923150-61-1 +*2007 ''L'écriture'', Projet personnel d'orientation, Ministère de l'Éducation du Loisir et du sport. +*2005 ''29, rue des Remparts'', Roman publié dans la collection Les mots inventifs, Les éditions du Mécène, 192 pages. ISBN 2-923150-28-7 +*2003 ''Vie 101'', Ouvrage publié dans la collection Les mots utiles, Les Éditions du Mécène. 126 pages. ISBN 2-923150-03-1 +*2002 ''Le groupe conseil fiscalis'', scénario produit pour le groupe conseil Fiscalis. +*2001 ''Lévis, ville nouvelle'', scénario de deux émissions de trente minutes pour le Comité de transition de la ville de Lévis et Canal Vox +*2001 ''L’école québécoise, ce qu’il y a de mieux pour votre enfant'', scénario produit pour le Ministère de l’éducation du Québec. +*2000 ''Le jeu en valait-il la chandelle?'' scénario produit pour le Centre québécois d’excellence pour la prévention et le traitement du jeu. (Université Laval) +*1999 ''Le hasard, Lucky, on peut rien y changer'', scénario produit pour le Centre québécois d’excellence pour la prévention et le traitement du jeu. (Université Laval) +*1999 ''Un pacte fiscal pour l’an 2000, des idées, de la solidarité'', scénario produit pour l’Union des Municipalités régionales de comté et des municipalités locales. +*1999 ''Détect-o-max et Une journée avec Détect-o-max'', deux scénarios produits pour Conception Ro-main inc. +*1999 ''Propane GRG, à l’écoute de ses clients'', scénario produit pour la firme Propane GRG inc. +*1998 ''Maître du mètre'', scénario d’un documentaire sur les 25 ans du système métrique au Québec. +*1997 ''Le temps des sucres'', scénario produit pour la firme Shady Maple Farms. +*1996 ''Le Génie de campagne'', scénario produit pour les Forces armées canadiennes. +*1996 ''La Compagnie franche de la Marine de Québec'', scénario produit pour les Forces armées canadiennes. +*1995 ''Bon séjour à l'École navale de Québec'', scénario produit pour les Forces armées canadiennes. +*1994 ''Un leadership, des services'', scénario produit pour la Fédération des commissions scolaires du Québec. +*1993 ''Les clubs de recherche d'emploi'', scénario produit pour le Ministère de l'Emploi et de l'Immigration du Canada. +*1992 ''Fiers de notre avenir'', scénario produit pour l'Assurance-Vie Desjardins. +*1992 ''Responsible Leadership'', scénario produit pour la compagnie papetière Donohue. (Prix Corpo Vision) +*1992 Scénarisation d'un ensemble de huit vidéos destinées aux écoles secondaires et aux collèges du Québec, pour la Fondation de l'entrepreneurship Québécois. (Prix Adate) +*1991 ''Guide à l'intention du nouveau personnel'', rédaction d'une brochure d'accueil pour la Commission scolaire Louis-Fréchette. +*1990 Comment ça va chez vous? scénario produit pour la Confédération des caisses Desjardins. +*1990 ''Le choc est aussi grand pour les petits.'' I et II, scénario de deux vidéos pour la Régie de l'assurance automobile du Québec. +*1990 Participation au concours de nouvelles de Radio-Canada avec ''Alexandre et Cassiopée.'' +*1989 Participation au concours de nouvelles de Radio-Canada avec ''Le mystère de la cathédrale.'' +*1989 ''La Double vie d'Antoine Gagnon, Ministre'', scénario d'un téléfilm pour Radio-Canada. +*1988 ''Passeport pour la liberté'', Les Quinze Éditeurs, Montréal. ISBN 2-89026-368-1. (Prix Robert Cliche) +*1988 Co-édition aux Éditions Jean Picollec, à Paris, du roman ''Passeport pour la liberté'', 303 pages, ISBN 2-86477-088-1. +*1987 Participation au concours de nouvelles de Radio-''Canada avec Le secret''. +*1987 Collaboration au scénario et aux dialogues de ''Vie décolle'', vidéo produite pour la Commission scolaire Abénakis (21 minutes). +*1983 Rédaction et direction de ''C'est qui ma maman à moi?'' pièce montée par la troupe de théâtre de la Polyvalente Benoît-Vachon de Sainte-Marie de Beauce. +*1982 Rédaction et direction de ''Au nom du père, de la fille et du Sain d'esprit'', pièce de théâtre montée par la troupe de théâtre de la Polyvalente Benoît -Vachon de Sainte-Marie de Beauce. +*1977 Co-rédaction et mise en scène de la pièce ''Coup de Théâtre à Ste-Onction'' jouée par les élèves de la Polyvalente Benoît-Vachon de Sainte-Marie de Beauce + +== Références == +{{references}} + +{{Portail|littérature}} + +[[Catégorie:Écrivain québécois|Beaudet, Raymond]] + 76ap5p9tu377y8mgvwspf3eaepjjmgm + + + 82302570 + 66731223 + 2012-08-25T06:41:19Z + + DSisyphBot + 482497 + + + Bot, [[WP:RBOT]] remplace prix Albert Londres par prix Albert-Londres + wikitext + text/x-wiki + [[Fichier:Photo Tom Prague 08.jpg|thumb|Raymond Beaudet]] +'''Raymond Beaudet''' (Québec 1950 - ) est un écrivain et un scénariste [[Québec|québécois]]. Détenteur d’une maîtrise en [[philosophie]] de l’[[Université Laval]] (1975) on le retrouve successivement enseignant, syndicaliste, secrétaire particulier du Ministre des Richesses Naturelles, [[Yves Bérubé]], directeur d’école primaire et directeur d’école secondaire (Polyvalente Benoît-Vachon). Une passion l’anime pendant tout ce temps : l’écriture. Il est l’auteur de trois romans, d’un essai, d’une trentaine de scénarios, de quelques nouvelles et de trois pièces de théâtre. + +==Honneurs== +* Prix du Patrimoine (2011) Catégorie Interprétation et Diffusion. +* [[Prix Robert-Cliche]] ([[1988]]), ''Passeport pour la liberté''<ref>{{lien web | url=http://www.edvlb.com/prixrobertcliche/laureats.aspx | titre=Lauréats du prix Robert-Cliche | consulté le=24 juin 2011}}</ref> +* Prix Corpo-vision (1992) +* Prix Adate (1993) + +==Bibliographie== +*2010 Biographie de Jeannine Rousseau et Rolland Massicotte, scénario. +*2010 Le Projet Adam et Ève, nouvelle parue dans Écrits Mariverains 2010. +*2009 Alexandre et Cassiopée, nouvelle parue dans Écrits Mariverains 2009. +*2008 ''Dans un mois, dans un an'', Roman publié dans la collection Les mots inventifs, Les Éditions du Mécène, 576 pages. ISBN 978-2-923150-61-1 +*2007 ''L'écriture'', Projet personnel d'orientation, Ministère de l'Éducation du Loisir et du sport. +*2005 ''29, rue des Remparts'', Roman publié dans la collection Les mots inventifs, Les éditions du Mécène, 192 pages. ISBN 2-923150-28-7 +*2003 ''Vie 101'', Ouvrage publié dans la collection Les mots utiles, Les Éditions du Mécène. 126 pages. ISBN 2-923150-03-1 +*2002 ''Le groupe conseil fiscalis'', scénario produit pour le groupe conseil Fiscalis. +*2001 ''Lévis, ville nouvelle'', scénario de deux émissions de trente minutes pour le Comité de transition de la ville de Lévis et Canal Vox +*2001 ''L’école québécoise, ce qu’il y a de mieux pour votre enfant'', scénario produit pour le Ministère de l’éducation du Québec. +*2000 ''Le jeu en valait-il la chandelle?'' scénario produit pour le Centre québécois d’excellence pour la prévention et le traitement du jeu. (Université Laval) +*1999 ''Le hasard, Lucky, on peut rien y changer'', scénario produit pour le Centre québécois d’excellence pour la prévention et le traitement du jeu. (Université Laval) +*1999 ''Un pacte fiscal pour l’an 2000, des idées, de la solidarité'', scénario produit pour l’Union des Municipalités régionales de comté et des municipalités locales. +*1999 ''Détect-o-max et Une journée avec Détect-o-max'', deux scénarios produits pour Conception Ro-main inc. +*1999 ''Propane GRG, à l’écoute de ses clients'', scénario produit pour la firme Propane GRG inc. +*1998 ''Maître du mètre'', scénario d’un documentaire sur les 25 ans du système métrique au Québec. +*1997 ''Le temps des sucres'', scénario produit pour la firme Shady Maple Farms. +*1996 ''Le Génie de campagne'', scénario produit pour les Forces armées canadiennes. +*1996 ''La Compagnie franche de la Marine de Québec'', scénario produit pour les Forces armées canadiennes. +*1995 ''Bon séjour à l'École navale de Québec'', scénario produit pour les Forces armées canadiennes. +*1994 ''Un leadership, des services'', scénario produit pour la Fédération des commissions scolaires du Québec. +*1993 ''Les clubs de recherche d'emploi'', scénario produit pour le Ministère de l'Emploi et de l'Immigration du Canada. +*1992 ''Fiers de notre avenir'', scénario produit pour l'Assurance-Vie Desjardins. +*1992 ''Responsible Leadership'', scénario produit pour la compagnie papetière Donohue. (Prix Corpo Vision) +*1992 Scénarisation d'un ensemble de huit vidéos destinées aux écoles secondaires et aux collèges du Québec, pour la Fondation de l'entrepreneurship Québécois. (Prix Adate) +*1991 ''Guide à l'intention du nouveau personnel'', rédaction d'une brochure d'accueil pour la Commission scolaire Louis-Fréchette. +*1990 Comment ça va chez vous? scénario produit pour la Confédération des caisses Desjardins. +*1990 ''Le choc est aussi grand pour les petits.'' I et II, scénario de deux vidéos pour la Régie de l'assurance automobile du Québec. +*1990 Participation au concours de nouvelles de Radio-Canada avec ''Alexandre et Cassiopée.'' +*1989 Participation au concours de nouvelles de Radio-Canada avec ''Le mystère de la cathédrale.'' +*1989 ''La Double vie d'Antoine Gagnon, Ministre'', scénario d'un téléfilm pour Radio-Canada. +*1988 ''Passeport pour la liberté'', Les Quinze Éditeurs, Montréal. ISBN 2-89026-368-1. (Prix Robert-Cliche) +*1988 Co-édition aux Éditions Jean Picollec, à Paris, du roman ''Passeport pour la liberté'', 303 pages, ISBN 2-86477-088-1. +*1987 Participation au concours de nouvelles de Radio-''Canada avec Le secret''. +*1987 Collaboration au scénario et aux dialogues de ''Vie décolle'', vidéo produite pour la Commission scolaire Abénakis (21 minutes). +*1983 Rédaction et direction de ''C'est qui ma maman à moi?'' pièce montée par la troupe de théâtre de la Polyvalente Benoît-Vachon de Sainte-Marie de Beauce. +*1982 Rédaction et direction de ''Au nom du père, de la fille et du Sain d'esprit'', pièce de théâtre montée par la troupe de théâtre de la Polyvalente Benoît -Vachon de Sainte-Marie de Beauce. +*1977 Co-rédaction et mise en scène de la pièce ''Coup de Théâtre à Ste-Onction'' jouée par les élèves de la Polyvalente Benoît-Vachon de Sainte-Marie de Beauce + +== Références == +{{references}} + +{{Portail|littérature}} + +[[Catégorie:Écrivain québécois|Beaudet, Raymond]] + pz4ngh6s9m6jt2lldj36jkd7y3ldg5u + + + 92116190 + 82302570 + 2013-04-15T16:09:50Z + + Ggal + 362597 + + /* Bibliographie */ + wikitext + text/x-wiki + [[Fichier:Photo Tom Prague 08.jpg|thumb|Raymond Beaudet]] +'''Raymond Beaudet''' (Québec 1950 - ) est un écrivain et un scénariste [[Québec|québécois]]. Détenteur d’une maîtrise en [[philosophie]] de l’[[Université Laval]] (1975) on le retrouve successivement enseignant, syndicaliste, secrétaire particulier du Ministre des Richesses Naturelles, [[Yves Bérubé]], directeur d’école primaire et directeur d’école secondaire (Polyvalente Benoît-Vachon). Une passion l’anime pendant tout ce temps : l’écriture. Il est l’auteur de trois romans, d’un essai, d’une trentaine de scénarios, de quelques nouvelles et de trois pièces de théâtre. + +==Honneurs== +* Prix du Patrimoine (2011) Catégorie Interprétation et Diffusion. +* [[Prix Robert-Cliche]] ([[1988]]), ''Passeport pour la liberté''<ref>{{lien web | url=http://www.edvlb.com/prixrobertcliche/laureats.aspx | titre=Lauréats du prix Robert-Cliche | consulté le=24 juin 2011}}</ref> +* Prix Corpo-vision (1992) +* Prix Adate (1993) + +==Bibliographie== +*2010 Biographie de Jeannine Rousseau et Rolland Massicotte, scénario. +*2010 Le Projet Adam et Ève, nouvelle parue dans Écrits Mariverains 2010. +*2009 Alexandre et Cassiopée, nouvelle parue dans Écrits Mariverains 2009. +*2008 ''Dans un mois, dans un an'', Roman publié dans la collection Les mots inventifs, Les Éditions du Mécène, 576 pages. ISBN 978-2-923150-61-1 +*2007 ''L'écriture'', Projet personnel d'orientation, Ministère de l'Éducation du Loisir et du sport. +*2005 ''29, rue des Remparts'', Roman publié dans la collection Les mots inventifs, Les éditions du Mécène, 192 pages. ISBN 2-923150-28-7 +*2003 ''Vie 101'', Ouvrage publié dans la collection Les mots utiles, Les Éditions du Mécène. 126 pages. ISBN 2-923150-03-1 +*2002 ''Le groupe conseil fiscalis'', scénario produit pour le groupe conseil Fiscalis. +*2001 ''Lévis, ville nouvelle'', scénario de deux émissions de trente minutes pour le Comité de transition de la ville de Lévis et Canal Vox +*2001 ''L’école québécoise, ce qu’il y a de mieux pour votre enfant'', scénario produit pour le Ministère de l’éducation du Québec. +*2000 ''Le jeu en valait-il la chandelle?'' scénario produit pour le Centre québécois d’excellence pour la prévention et le traitement du jeu. (Université Laval) +*1999 ''Le hasard, Lucky, on peut rien y changer'', scénario produit pour le Centre québécois d’excellence pour la prévention et le traitement du jeu. (Université Laval) +*1999 ''Un pacte fiscal pour l’an 2000, des idées, de la solidarité'', scénario produit pour l’Union des Municipalités régionales de comté et des municipalités locales. +*1999 ''Détect-o-max et Une journée avec Détect-o-max'', deux scénarios produits pour Conception Ro-main inc. +*1999 ''Propane GRG, à l’écoute de ses clients'', scénario produit pour la firme Propane GRG inc. +*1998 ''Maître du mètre'', scénario d’un documentaire sur les 25 ans du système métrique au Québec. +*1997 ''Le temps des sucres'', scénario produit pour la firme Shady Maple Farms. +*1996 ''Le Génie de campagne'', scénario produit pour les Forces armées canadiennes. +*1996 ''La Compagnie franche de la Marine de Québec'', scénario produit pour les Forces armées canadiennes. +*1995 ''Bon séjour à l'École navale de Québec'', scénario produit pour les Forces armées canadiennes. +*1994 ''Un leadership, des services'', scénario produit pour la Fédération des commissions scolaires du Québec. +*1993 ''Les clubs de recherche d'emploi'', scénario produit pour le Ministère de l'Emploi et de l'Immigration du Canada. +*1992 ''Fiers de notre avenir'', scénario produit pour l'Assurance-Vie Desjardins. +*1992 ''Responsible Leadership'', scénario produit pour la compagnie papetière Donohue. (Prix Corpo Vision) +*1992 Scénarisation d'un ensemble de huit vidéos destinées aux écoles secondaires et aux collèges du Québec, pour la Fondation de l'entrepreneurship Québécois. (Prix Adate) +*1991 ''Guide à l'intention du nouveau personnel'', rédaction d'une brochure d'accueil pour la Commission scolaire Louis-Fréchette. +*1990 Comment ça va chez vous? scénario produit pour la Confédération des caisses Desjardins. +*1990 ''Le choc est aussi grand pour les petits.'' I et II, scénario de deux vidéos pour la Régie de l'assurance automobile du Québec. +*1990 Participation au concours de nouvelles de Radio-Canada avec ''Alexandre et Cassiopée.'' +*1989 Participation au concours de nouvelles de Radio-Canada avec ''Le mystère de la cathédrale.'' +*1989 ''La Double vie d'Antoine Gagnon, Ministre'', scénario d'un téléfilm pour Radio-Canada. +*1988 ''Passeport pour la liberté'', Les Quinze Éditeurs, Montréal. ISBN 2-89026-368-1. (Prix Robert-Cliche) +*1988 Coédition aux Éditions Jean Picollec, à Paris, du roman ''Passeport pour la liberté'', 303 pages, ISBN 2-86477-088-1. +*1987 Participation au concours de nouvelles de Radio-''Canada avec Le secret''. +*1987 Collaboration au scénario et aux dialogues de ''Vie décolle'', vidéo produite pour la Commission scolaire Abénakis (21 minutes). +*1983 Rédaction et direction de ''C'est qui ma maman à moi?'' pièce montée par la troupe de théâtre de la Polyvalente Benoît-Vachon de Sainte-Marie de Beauce. +*1982 Rédaction et direction de ''Au nom du père, de la fille et du Sain d'esprit'', pièce de théâtre montée par la troupe de théâtre de la Polyvalente Benoît -Vachon de Sainte-Marie de Beauce. +*1977 Corédaction et mise en scène de la pièce ''Coup de Théâtre à Ste-Onction'' jouée par les élèves de la Polyvalente Benoît-Vachon de Sainte-Marie de Beauce + +== Références == +{{references}} + +{{Portail|littérature}} + +[[Catégorie:Écrivain québécois|Beaudet, Raymond]] + fh5iv28ssji2xpuvot1snhq91ttgyh1 + + + 103475301 + 92116190 + 2014-05-03T12:58:49Z + + 24.204.159.151 + + /* Bibliographie */ Ajouts de diverses publications + wikitext + text/x-wiki + [[Fichier:Photo Tom Prague 08.jpg|thumb|Raymond Beaudet]] +'''Raymond Beaudet''' (Québec 1950 - ) est un écrivain et un scénariste [[Québec|québécois]]. Détenteur d’une maîtrise en [[philosophie]] de l’[[Université Laval]] (1975) on le retrouve successivement enseignant, syndicaliste, secrétaire particulier du Ministre des Richesses Naturelles, [[Yves Bérubé]], directeur d’école primaire et directeur d’école secondaire (Polyvalente Benoît-Vachon). Une passion l’anime pendant tout ce temps : l’écriture. Il est l’auteur de trois romans, d’un essai, d’une trentaine de scénarios, de quelques nouvelles et de trois pièces de théâtre. + +==Honneurs== +* Prix du Patrimoine (2011) Catégorie Interprétation et Diffusion. +* [[Prix Robert-Cliche]] ([[1988]]), ''Passeport pour la liberté''<ref>{{lien web | url=http://www.edvlb.com/prixrobertcliche/laureats.aspx | titre=Lauréats du prix Robert-Cliche | consulté le=24 juin 2011}}</ref> +* Prix Corpo-vision (1992) +* Prix Adate (1993) + +==Bibliographie== +*2014 Carapaces, Roman publié aux Éditions Textes et Contextes, 279 pages. ISBN 978-2-923706-63-4 +* 2013 Napoléon, nouvelle parue dans Les Écrits mariverains 2013. ISBN 978-2-9809683-4-1 +* 2012 Ménage de cave, nouvelle parue dans Les Écrits mariverains, 2012.ISBN-978-2-980-9683-3-4 +* 2012 Finaliste dans deux concours de Zone d’écriture de Radio-Canada en twittérature. +* 2011 En deuxième vitesse, nouvelle parue dans Les Écrits mariverains 2011. ISBN 978-2-980-9683-2-3 +* 2010 Biographie de Jeannine Rousseau et Rolland Massicotte, scénario. +*2010 Le Projet Adam et Ève, nouvelle parue dans Écrits mariverains 2010. +*2009 Alexandre et Cassiopée, nouvelle parue dans Écrits mariverains 2009. +*2008 ''Dans un mois, dans un an'', Roman publié dans la collection Les mots inventifs, Les Éditions du Mécène, 576 pages. ISBN 978-2-923150-61-1 +*2007 ''L'écriture'', Projet personnel d'orientation, Ministère de l'Éducation du Loisir et du sport. +*2005 ''29, rue des Remparts'', Roman publié dans la collection Les mots inventifs, Les éditions du Mécène, 192 pages. ISBN 2-923150-28-7 +*2003 ''Vie 101'', Ouvrage publié dans la collection Les mots utiles, Les Éditions du Mécène. 126 pages. ISBN 2-923150-03-1 +*2002 ''Le groupe conseil fiscalis'', scénario produit pour le groupe conseil Fiscalis. +*2001 ''Lévis, ville nouvelle'', scénario de deux émissions de trente minutes pour le Comité de transition de la ville de Lévis et Canal Vox +*2001 ''L’école québécoise, ce qu’il y a de mieux pour votre enfant'', scénario produit pour le Ministère de l’éducation du Québec. +*2000 ''Le jeu en valait-il la chandelle?'' scénario produit pour le Centre québécois d’excellence pour la prévention et le traitement du jeu. (Université Laval) +*1999 ''Le hasard, Lucky, on peut rien y changer'', scénario produit pour le Centre québécois d’excellence pour la prévention et le traitement du jeu. (Université Laval) +*1999 ''Un pacte fiscal pour l’an 2000, des idées, de la solidarité'', scénario produit pour l’Union des Municipalités régionales de comté et des municipalités locales. +*1999 ''Détect-o-max et Une journée avec Détect-o-max'', deux scénarios produits pour Conception Ro-main inc. +*1999 ''Propane GRG, à l’écoute de ses clients'', scénario produit pour la firme Propane GRG inc. +*1998 ''Maître du mètre'', scénario d’un documentaire sur les 25 ans du système métrique au Québec. +*1997 ''Le temps des sucres'', scénario produit pour la firme Shady Maple Farms. +*1996 ''Le Génie de campagne'', scénario produit pour les Forces armées canadiennes. +*1996 ''La Compagnie franche de la Marine de Québec'', scénario produit pour les Forces armées canadiennes. +*1995 ''Bon séjour à l'École navale de Québec'', scénario produit pour les Forces armées canadiennes. +*1994 ''Un leadership, des services'', scénario produit pour la Fédération des commissions scolaires du Québec. +*1993 ''Les clubs de recherche d'emploi'', scénario produit pour le Ministère de l'Emploi et de l'Immigration du Canada. +*1992 ''Fiers de notre avenir'', scénario produit pour l'Assurance-Vie Desjardins. +*1992 ''Responsible Leadership'', scénario produit pour la compagnie papetière Donohue. (Prix Corpo Vision) +*1992 Scénarisation d'un ensemble de huit vidéos destinées aux écoles secondaires et aux collèges du Québec, pour la Fondation de l'entrepreneurship Québécois. (Prix Adate) +*1991 ''Guide à l'intention du nouveau personnel'', rédaction d'une brochure d'accueil pour la Commission scolaire Louis-Fréchette. +*1990 Comment ça va chez vous? scénario produit pour la Confédération des caisses Desjardins. +*1990 ''Le choc est aussi grand pour les petits.'' I et II, scénario de deux vidéos pour la Régie de l'assurance automobile du Québec. +*1990 Participation au concours de nouvelles de Radio-Canada avec ''Alexandre et Cassiopée.'' +*1989 Participation au concours de nouvelles de Radio-Canada avec ''Le mystère de la cathédrale.'' +*1989 ''La Double vie d'Antoine Gagnon, Ministre'', scénario d'un téléfilm pour Radio-Canada. +*1988 ''Passeport pour la liberté'', Les Quinze Éditeurs, Montréal. ISBN 2-89026-368-1. (Prix Robert-Cliche) +*1988 Coédition aux Éditions Jean Picollec, à Paris, du roman ''Passeport pour la liberté'', 303 pages, ISBN 2-86477-088-1. +*1987 Participation au concours de nouvelles de Radio-''Canada avec Le secret''. +*1987 Collaboration au scénario et aux dialogues de ''Vie décolle'', vidéo produite pour la Commission scolaire Abénakis (21 minutes). +*1983 Rédaction et direction de ''C'est qui ma maman à moi?'' pièce montée par la troupe de théâtre de la Polyvalente Benoît-Vachon de Sainte-Marie de Beauce. +*1982 Rédaction et direction de ''Au nom du père, de la fille et du Sain d'esprit'', pièce de théâtre montée par la troupe de théâtre de la Polyvalente Benoît -Vachon de Sainte-Marie de Beauce. +*1977 Corédaction et mise en scène de la pièce ''Coup de Théâtre à Ste-Onction'' jouée par les élèves de la Polyvalente Benoît-Vachon de Sainte-Marie de Beauce + +== Références == +{{references}} + +{{Portail|littérature}} + +[[Catégorie:Écrivain québécois|Beaudet, Raymond]] + 5z7nhb9r1brv90299bmp54cu0vwhx1h + + + 103475353 + 103475301 + 2014-05-03T13:01:08Z + + 24.204.159.151 + + wikitext + text/x-wiki + [[Fichier:Photo Tom Prague 08.jpg|thumb|Raymond Beaudet]] +'''Raymond Beaudet''' (Québec 1950 - ) est un écrivain et un scénariste [[Québec|québécois]]. Détenteur d’une maîtrise en [[philosophie]] de l’[[Université Laval]] (1975) on le retrouve successivement enseignant, syndicaliste, secrétaire particulier du Ministre des Richesses Naturelles, [[Yves Bérubé]], directeur d’école primaire et directeur d’école secondaire (Polyvalente Benoît-Vachon). Une passion l’anime pendant tout ce temps : l’écriture. Il est l’auteur de quatre romans, d’un essai, d’une trentaine de scénarios, de quelques nouvelles et de trois pièces de théâtre. + +==Honneurs== +* Prix du Patrimoine (2011) Catégorie Interprétation et Diffusion. +* [[Prix Robert-Cliche]] ([[1988]]), ''Passeport pour la liberté''<ref>{{lien web | url=http://www.edvlb.com/prixrobertcliche/laureats.aspx | titre=Lauréats du prix Robert-Cliche | consulté le=24 juin 2011}}</ref> +* Prix Corpo-vision (1992) +* Prix Adate (1993) + +==Bibliographie== +*2014 Carapaces, Roman publié aux Éditions Textes et Contextes, 279 pages. ISBN 978-2-923706-63-4 +* 2013 Napoléon, nouvelle parue dans Les Écrits mariverains 2013. ISBN 978-2-9809683-4-1 +* 2012 Ménage de cave, nouvelle parue dans Les Écrits mariverains, 2012.ISBN-978-2-980-9683-3-4 +* 2012 Finaliste dans deux concours de Zone d’écriture de Radio-Canada en twittérature. +* 2011 En deuxième vitesse, nouvelle parue dans Les Écrits mariverains 2011. ISBN 978-2-980-9683-2-3 +* 2010 Biographie de Jeannine Rousseau et Rolland Massicotte, scénario. +*2010 Le Projet Adam et Ève, nouvelle parue dans Écrits mariverains 2010. +*2009 Alexandre et Cassiopée, nouvelle parue dans Écrits mariverains 2009. +*2008 ''Dans un mois, dans un an'', Roman publié dans la collection Les mots inventifs, Les Éditions du Mécène, 576 pages. ISBN 978-2-923150-61-1 +*2007 ''L'écriture'', Projet personnel d'orientation, Ministère de l'Éducation du Loisir et du sport. +*2005 ''29, rue des Remparts'', Roman publié dans la collection Les mots inventifs, Les éditions du Mécène, 192 pages. ISBN 2-923150-28-7 +*2003 ''Vie 101'', Ouvrage publié dans la collection Les mots utiles, Les Éditions du Mécène. 126 pages. ISBN 2-923150-03-1 +*2002 ''Le groupe conseil fiscalis'', scénario produit pour le groupe conseil Fiscalis. +*2001 ''Lévis, ville nouvelle'', scénario de deux émissions de trente minutes pour le Comité de transition de la ville de Lévis et Canal Vox +*2001 ''L’école québécoise, ce qu’il y a de mieux pour votre enfant'', scénario produit pour le Ministère de l’éducation du Québec. +*2000 ''Le jeu en valait-il la chandelle?'' scénario produit pour le Centre québécois d’excellence pour la prévention et le traitement du jeu. (Université Laval) +*1999 ''Le hasard, Lucky, on peut rien y changer'', scénario produit pour le Centre québécois d’excellence pour la prévention et le traitement du jeu. (Université Laval) +*1999 ''Un pacte fiscal pour l’an 2000, des idées, de la solidarité'', scénario produit pour l’Union des Municipalités régionales de comté et des municipalités locales. +*1999 ''Détect-o-max et Une journée avec Détect-o-max'', deux scénarios produits pour Conception Ro-main inc. +*1999 ''Propane GRG, à l’écoute de ses clients'', scénario produit pour la firme Propane GRG inc. +*1998 ''Maître du mètre'', scénario d’un documentaire sur les 25 ans du système métrique au Québec. +*1997 ''Le temps des sucres'', scénario produit pour la firme Shady Maple Farms. +*1996 ''Le Génie de campagne'', scénario produit pour les Forces armées canadiennes. +*1996 ''La Compagnie franche de la Marine de Québec'', scénario produit pour les Forces armées canadiennes. +*1995 ''Bon séjour à l'École navale de Québec'', scénario produit pour les Forces armées canadiennes. +*1994 ''Un leadership, des services'', scénario produit pour la Fédération des commissions scolaires du Québec. +*1993 ''Les clubs de recherche d'emploi'', scénario produit pour le Ministère de l'Emploi et de l'Immigration du Canada. +*1992 ''Fiers de notre avenir'', scénario produit pour l'Assurance-Vie Desjardins. +*1992 ''Responsible Leadership'', scénario produit pour la compagnie papetière Donohue. (Prix Corpo Vision) +*1992 Scénarisation d'un ensemble de huit vidéos destinées aux écoles secondaires et aux collèges du Québec, pour la Fondation de l'entrepreneurship Québécois. (Prix Adate) +*1991 ''Guide à l'intention du nouveau personnel'', rédaction d'une brochure d'accueil pour la Commission scolaire Louis-Fréchette. +*1990 Comment ça va chez vous? scénario produit pour la Confédération des caisses Desjardins. +*1990 ''Le choc est aussi grand pour les petits.'' I et II, scénario de deux vidéos pour la Régie de l'assurance automobile du Québec. +*1990 Participation au concours de nouvelles de Radio-Canada avec ''Alexandre et Cassiopée.'' +*1989 Participation au concours de nouvelles de Radio-Canada avec ''Le mystère de la cathédrale.'' +*1989 ''La Double vie d'Antoine Gagnon, Ministre'', scénario d'un téléfilm pour Radio-Canada. +*1988 ''Passeport pour la liberté'', Les Quinze Éditeurs, Montréal. ISBN 2-89026-368-1. (Prix Robert-Cliche) +*1988 Coédition aux Éditions Jean Picollec, à Paris, du roman ''Passeport pour la liberté'', 303 pages, ISBN 2-86477-088-1. +*1987 Participation au concours de nouvelles de Radio-''Canada avec Le secret''. +*1987 Collaboration au scénario et aux dialogues de ''Vie décolle'', vidéo produite pour la Commission scolaire Abénakis (21 minutes). +*1983 Rédaction et direction de ''C'est qui ma maman à moi?'' pièce montée par la troupe de théâtre de la Polyvalente Benoît-Vachon de Sainte-Marie de Beauce. +*1982 Rédaction et direction de ''Au nom du père, de la fille et du Sain d'esprit'', pièce de théâtre montée par la troupe de théâtre de la Polyvalente Benoît -Vachon de Sainte-Marie de Beauce. +*1977 Corédaction et mise en scène de la pièce ''Coup de Théâtre à Ste-Onction'' jouée par les élèves de la Polyvalente Benoît-Vachon de Sainte-Marie de Beauce + +== Références == +{{references}} + +{{Portail|littérature}} + +[[Catégorie:Écrivain québécois|Beaudet, Raymond]] + hlahiquyy5rj2qylnzadixhdp5ikref + + + 103501390 + 103475353 + 2014-05-04T12:57:29Z + + 24.204.159.151 + + Mise à jour des publications + wikitext + text/x-wiki + [[Fichier:Photo Tom Prague 08.jpg|thumb|Raymond Beaudet]] +'''Raymond Beaudet''' (Québec 1950 - ) est un écrivain et un scénariste [[Québec|québécois]]. Détenteur d’une maîtrise en [[philosophie]] de l’[[Université Laval]] (1975) on le retrouve successivement enseignant, syndicaliste, secrétaire particulier du Ministre des Richesses Naturelles, [[Yves Bérubé]], directeur d’école primaire et directeur d’école secondaire (Polyvalente Benoît-Vachon). Une passion l’anime pendant tout ce temps : l’écriture. Il est l’auteur de quatre romans, d’un essai, d’une trentaine de scénarios, de quelques nouvelles et de trois pièces de théâtre. + +==Honneurs== +* Prix du Patrimoine (2011) Catégorie Interprétation et Diffusion. +* [[Prix Robert-Cliche]] ([[1988]]), ''Passeport pour la liberté''<ref>{{lien web | url=http://www.edvlb.com/prixrobertcliche/laureats.aspx | titre=Lauréats du prix Robert-Cliche | consulté le=24 juin 2011}}</ref> +* Prix Corpo-vision (1992) +* Prix Adate (1993) + +==Bibliographie== +*2014 Carapaces, Roman publié aux Éditions Textes et Contextes, 279 pages. ISBN 978-2-923706-63-4 +* 2013 La Politique, Projet personnel d'orientation, Ministère de l'Éducation du Loisir et du sport. +* 2013 Napoléon, nouvelle parue dans Les Écrits mariverains 2013. ISBN 978-2-9809683-4-1 +* 2012 Ménage de cave, nouvelle parue dans Les Écrits mariverains, 2012.ISBN-978-2-980-9683-3-4 +* 2012 Finaliste dans deux concours de Zone d’écriture de Radio-Canada en twittérature. +* 2011 En deuxième vitesse, nouvelle parue dans Les Écrits mariverains 2011. ISBN 978-2-980-9683-2-3 +* 2010 Biographie de Jeannine Rousseau et Rolland Massicotte, scénario. +*2010 Le Projet Adam et Ève, nouvelle parue dans Écrits mariverains 2010. +*2009 Alexandre et Cassiopée, nouvelle parue dans Écrits mariverains 2009. +*2008 ''Dans un mois, dans un an'', Roman publié dans la collection Les mots inventifs, Les Éditions du Mécène, 576 pages. ISBN 978-2-923150-61-1 +*2007 ''L'écriture'', Projet personnel d'orientation, Ministère de l'Éducation du Loisir et du sport. +*2005 ''29, rue des Remparts'', Roman publié dans la collection Les mots inventifs, Les éditions du Mécène, 192 pages. ISBN 2-923150-28-7 +*2003 ''Vie 101'', Essai publié dans la collection Les mots utiles, Les Éditions du Mécène. 126 pages. ISBN 2-923150-03-1 +*2002 ''Le groupe conseil fiscalis'', scénario produit pour le groupe conseil Fiscalis. +*2001 ''Lévis, ville nouvelle'', scénario de deux émissions de trente minutes pour le Comité de transition de la ville de Lévis et Canal Vox +*2001 ''L’école québécoise, ce qu’il y a de mieux pour votre enfant'', scénario produit pour le Ministère de l’éducation du Québec. +*2000 ''Le jeu en valait-il la chandelle?'' scénario produit pour le Centre québécois d’excellence pour la prévention et le traitement du jeu. (Université Laval) +*1999 ''Le hasard, Lucky, on peut rien y changer'', scénario produit pour le Centre québécois d’excellence pour la prévention et le traitement du jeu. (Université Laval) +*1999 ''Un pacte fiscal pour l’an 2000, des idées, de la solidarité'', scénario produit pour l’Union des Municipalités régionales de comté et des municipalités locales. +*1999 ''Détect-o-max et Une journée avec Détect-o-max'', deux scénarios produits pour Conception Ro-main inc. +*1999 ''Propane GRG, à l’écoute de ses clients'', scénario produit pour la firme Propane GRG inc. +*1998 ''Maître du mètre'', scénario d’un documentaire sur les 25 ans du système métrique au Québec. +*1997 ''Le temps des sucres'', scénario produit pour la firme Shady Maple Farms. +*1996 ''Le Génie de campagne'', scénario produit pour les Forces armées canadiennes. +*1996 ''La Compagnie franche de la Marine de Québec'', scénario produit pour les Forces armées canadiennes. +*1995 ''Bon séjour à l'École navale de Québec'', scénario produit pour les Forces armées canadiennes. +*1994 ''Un leadership, des services'', scénario produit pour la Fédération des commissions scolaires du Québec. +*1993 ''Les clubs de recherche d'emploi'', scénario produit pour le Ministère de l'Emploi et de l'Immigration du Canada. +*1992 ''Fiers de notre avenir'', scénario produit pour l'Assurance-Vie Desjardins. +*1992 ''Responsible Leadership'', scénario produit pour la compagnie papetière Donohue. (Prix Corpo Vision) +*1992 Scénarisation d'un ensemble de huit vidéos destinées aux écoles secondaires et aux collèges du Québec, pour la Fondation de l'entrepreneurship Québécois. (Prix Adate) +*1991 ''Guide à l'intention du nouveau personnel'', rédaction d'une brochure d'accueil pour la Commission scolaire Louis-Fréchette. +*1990 Comment ça va chez vous? scénario produit pour la Confédération des caisses Desjardins. +*1990 ''Le choc est aussi grand pour les petits.'' I et II, scénario de deux vidéos pour la Régie de l'assurance automobile du Québec. +*1990 Participation au concours de nouvelles de Radio-Canada avec ''Alexandre et Cassiopée.'' +*1989 Participation au concours de nouvelles de Radio-Canada avec ''Le mystère de la cathédrale.'' +*1989 ''La Double vie d'Antoine Gagnon, Ministre'', scénario d'un téléfilm pour Radio-Canada. +*1988 ''Passeport pour la liberté'', Les Quinze Éditeurs, Montréal. ISBN 2-89026-368-1. (Prix Robert-Cliche) +*1988 Coédition aux Éditions Jean Picollec, à Paris, du roman ''Passeport pour la liberté'', 303 pages, ISBN 2-86477-088-1. +*1987 Participation au concours de nouvelles de Radio-''Canada avec Le secret''. +*1987 Collaboration au scénario et aux dialogues de ''Vie décolle'', vidéo produite pour la Commission scolaire Abénakis (21 minutes). +*1983 Rédaction et direction de ''C'est qui ma maman à moi?'' pièce montée par la troupe de théâtre de la Polyvalente Benoît-Vachon de Sainte-Marie de Beauce. +*1982 Rédaction et direction de ''Au nom du père, de la fille et du Sain d'esprit'', pièce de théâtre montée par la troupe de théâtre de la Polyvalente Benoît -Vachon de Sainte-Marie de Beauce. +*1977 Corédaction et mise en scène de la pièce ''Coup de Théâtre à Ste-Onction'' jouée par les élèves de la Polyvalente Benoît-Vachon de Sainte-Marie de Beauce + +== Références == +{{references}} + +{{Portail|littérature}} + +[[Catégorie:Écrivain québécois|Beaudet, Raymond]] + lradzmzitgc8eq93r4a2w670he796m8 + + + 103542412 + 103501390 + 2014-05-05T17:04:30Z + + WikiCleanerBot + 351003 + + + [[WP:WPC|WPCleaner]] v1.32 - [[P:CS|Correction syntaxique]] (Numéro ISBN : syntaxe erronée) + wikitext + text/x-wiki + [[Fichier:Photo Tom Prague 08.jpg|thumb|Raymond Beaudet]] +'''Raymond Beaudet''' (Québec 1950 - ) est un écrivain et un scénariste [[Québec|québécois]]. Détenteur d’une maîtrise en [[philosophie]] de l’[[Université Laval]] (1975) on le retrouve successivement enseignant, syndicaliste, secrétaire particulier du Ministre des Richesses Naturelles, [[Yves Bérubé]], directeur d’école primaire et directeur d’école secondaire (Polyvalente Benoît-Vachon). Une passion l’anime pendant tout ce temps : l’écriture. Il est l’auteur de quatre romans, d’un essai, d’une trentaine de scénarios, de quelques nouvelles et de trois pièces de théâtre. + +== Honneurs == +* Prix du Patrimoine (2011) Catégorie Interprétation et Diffusion. +* [[Prix Robert-Cliche]] ([[1988]]), ''Passeport pour la liberté''<ref>{{lien web | url=http://www.edvlb.com/prixrobertcliche/laureats.aspx | titre=Lauréats du prix Robert-Cliche | consulté le=24 juin 2011}}</ref> +* Prix Corpo-vision (1992) +* Prix Adate (1993) + +== Bibliographie == +*2014 Carapaces, Roman publié aux Éditions Textes et Contextes, 279 pages. ISBN 978-2-923706-63-4 +* 2013 La Politique, Projet personnel d'orientation, Ministère de l'Éducation du Loisir et du sport. +* 2013 Napoléon, nouvelle parue dans Les Écrits mariverains 2013. ISBN 978-2-9809683-4-1 +* 2012 Ménage de cave, nouvelle parue dans Les Écrits mariverains, 2012.ISBN 978-2-980-9683-3-4 +* 2012 Finaliste dans deux concours de Zone d’écriture de Radio-Canada en twittérature. +* 2011 En deuxième vitesse, nouvelle parue dans Les Écrits mariverains 2011. {{ISBN à vérifier|978-2-980-9683-2-3|raison=Le calcul de la somme de contrôle donne 7 et non 3|date=5 mai 2014}} +* 2010 Biographie de Jeannine Rousseau et Rolland Massicotte, scénario. +*2010 Le Projet Adam et Ève, nouvelle parue dans Écrits mariverains 2010. +*2009 Alexandre et Cassiopée, nouvelle parue dans Écrits mariverains 2009. +*2008 ''Dans un mois, dans un an'', Roman publié dans la collection Les mots inventifs, Les Éditions du Mécène, 576 pages. ISBN 978-2-923150-61-1 +*2007 ''L'écriture'', Projet personnel d'orientation, Ministère de l'Éducation du Loisir et du sport. +*2005 ''29, rue des Remparts'', Roman publié dans la collection Les mots inventifs, Les éditions du Mécène, 192 pages. ISBN 2-923150-28-7 +*2003 ''Vie 101'', Essai publié dans la collection Les mots utiles, Les Éditions du Mécène. 126 pages. ISBN 2-923150-03-1 +*2002 ''Le groupe conseil fiscalis'', scénario produit pour le groupe conseil Fiscalis. +*2001 ''Lévis, ville nouvelle'', scénario de deux émissions de trente minutes pour le Comité de transition de la ville de Lévis et Canal Vox +*2001 ''L’école québécoise, ce qu’il y a de mieux pour votre enfant'', scénario produit pour le Ministère de l’éducation du Québec. +*2000 ''Le jeu en valait-il la chandelle?'' scénario produit pour le Centre québécois d’excellence pour la prévention et le traitement du jeu. (Université Laval) +*1999 ''Le hasard, Lucky, on peut rien y changer'', scénario produit pour le Centre québécois d’excellence pour la prévention et le traitement du jeu. (Université Laval) +*1999 ''Un pacte fiscal pour l’an 2000, des idées, de la solidarité'', scénario produit pour l’Union des Municipalités régionales de comté et des municipalités locales. +*1999 ''Détect-o-max et Une journée avec Détect-o-max'', deux scénarios produits pour Conception Ro-main inc. +*1999 ''Propane GRG, à l’écoute de ses clients'', scénario produit pour la firme Propane GRG inc. +*1998 ''Maître du mètre'', scénario d’un documentaire sur les 25 ans du système métrique au Québec. +*1997 ''Le temps des sucres'', scénario produit pour la firme Shady Maple Farms. +*1996 ''Le Génie de campagne'', scénario produit pour les Forces armées canadiennes. +*1996 ''La Compagnie franche de la Marine de Québec'', scénario produit pour les Forces armées canadiennes. +*1995 ''Bon séjour à l'École navale de Québec'', scénario produit pour les Forces armées canadiennes. +*1994 ''Un leadership, des services'', scénario produit pour la Fédération des commissions scolaires du Québec. +*1993 ''Les clubs de recherche d'emploi'', scénario produit pour le Ministère de l'Emploi et de l'Immigration du Canada. +*1992 ''Fiers de notre avenir'', scénario produit pour l'Assurance-Vie Desjardins. +*1992 ''Responsible Leadership'', scénario produit pour la compagnie papetière Donohue. (Prix Corpo Vision) +*1992 Scénarisation d'un ensemble de huit vidéos destinées aux écoles secondaires et aux collèges du Québec, pour la Fondation de l'entrepreneurship Québécois. (Prix Adate) +*1991 ''Guide à l'intention du nouveau personnel'', rédaction d'une brochure d'accueil pour la Commission scolaire Louis-Fréchette. +*1990 Comment ça va chez vous? scénario produit pour la Confédération des caisses Desjardins. +*1990 ''Le choc est aussi grand pour les petits.'' I et II, scénario de deux vidéos pour la Régie de l'assurance automobile du Québec. +*1990 Participation au concours de nouvelles de Radio-Canada avec ''Alexandre et Cassiopée.'' +*1989 Participation au concours de nouvelles de Radio-Canada avec ''Le mystère de la cathédrale.'' +*1989 ''La Double vie d'Antoine Gagnon, Ministre'', scénario d'un téléfilm pour Radio-Canada. +*1988 ''Passeport pour la liberté'', Les Quinze Éditeurs, Montréal. ISBN 2-89026-368-1. (Prix Robert-Cliche) +*1988 Coédition aux Éditions Jean Picollec, à Paris, du roman ''Passeport pour la liberté'', 303 pages, ISBN 2-86477-088-1. +*1987 Participation au concours de nouvelles de Radio-''Canada avec Le secret''. +*1987 Collaboration au scénario et aux dialogues de ''Vie décolle'', vidéo produite pour la Commission scolaire Abénakis (21 minutes). +*1983 Rédaction et direction de ''C'est qui ma maman à moi?'' pièce montée par la troupe de théâtre de la Polyvalente Benoît-Vachon de Sainte-Marie de Beauce. +*1982 Rédaction et direction de ''Au nom du père, de la fille et du Sain d'esprit'', pièce de théâtre montée par la troupe de théâtre de la Polyvalente Benoît -Vachon de Sainte-Marie de Beauce. +*1977 Corédaction et mise en scène de la pièce ''Coup de Théâtre à Ste-Onction'' jouée par les élèves de la Polyvalente Benoît-Vachon de Sainte-Marie de Beauce + +== Références == +{{references}} + +{{Portail|littérature}} + +[[Catégorie:Écrivain québécois|Beaudet, Raymond]] + h8coyd8q0bm0g2rtxqfwhrvfn5c9hal + + + 104660829 + 103542412 + 2014-06-14T19:20:29Z + + Patag70 + 1701443 + + + Modification ISBN + wikitext + text/x-wiki + [[Fichier:Photo Tom Prague 08.jpg|thumb|Raymond Beaudet]] +'''Raymond Beaudet''' (Québec 1950 - ) est un écrivain et un scénariste [[Québec|québécois]]. Détenteur d’une maîtrise en [[philosophie]] de l’[[Université Laval]] (1975) on le retrouve successivement enseignant, syndicaliste, secrétaire particulier du Ministre des Richesses Naturelles, [[Yves Bérubé]], directeur d’école primaire et directeur d’école secondaire (Polyvalente Benoît-Vachon). Une passion l’anime pendant tout ce temps : l’écriture. Il est l’auteur de quatre romans, d’un essai, d’une trentaine de scénarios, de quelques nouvelles et de trois pièces de théâtre. + +== Honneurs == +* Prix du Patrimoine (2011) Catégorie Interprétation et Diffusion. +* [[Prix Robert-Cliche]] ([[1988]]), ''Passeport pour la liberté''<ref>{{lien web | url=http://www.edvlb.com/prixrobertcliche/laureats.aspx | titre=Lauréats du prix Robert-Cliche | consulté le=24 juin 2011}}</ref> +* Prix Corpo-vision (1992) +* Prix Adate (1993) + +== Bibliographie == +*2014 Carapaces, Roman publié aux Éditions Textes et Contextes, 279 pages. ISBN 978-2-923706-63-4 +* 2013 La Politique, Projet personnel d'orientation, Ministère de l'Éducation du Loisir et du sport. +* 2013 Napoléon, nouvelle parue dans Les Écrits mariverains 2013. ISBN 978-2-9809683-4-1 +* 2012 Ménage de cave, nouvelle parue dans Les Écrits mariverains, 2012.ISBN 978-2-980-9683-3-4 +* 2012 Finaliste dans deux concours de Zone d’écriture de Radio-Canada en twittérature. +* 2011 En deuxième vitesse, nouvelle parue dans Les Écrits mariverains 2011. {{ISBN|978-2-980-9683-1-0|}} +* 2010 Biographie de Jeannine Rousseau et Rolland Massicotte, scénario. +*2010 Le Projet Adam et Ève, nouvelle parue dans Écrits mariverains 2010. +*2009 Alexandre et Cassiopée, nouvelle parue dans Écrits mariverains 2009. +*2008 ''Dans un mois, dans un an'', Roman publié dans la collection Les mots inventifs, Les Éditions du Mécène, 576 pages. ISBN 978-2-923150-61-1 +*2007 ''L'écriture'', Projet personnel d'orientation, Ministère de l'Éducation du Loisir et du sport. +*2005 ''29, rue des Remparts'', Roman publié dans la collection Les mots inventifs, Les éditions du Mécène, 192 pages. ISBN 2-923150-28-7 +*2003 ''Vie 101'', Essai publié dans la collection Les mots utiles, Les Éditions du Mécène. 126 pages. ISBN 2-923150-03-1 +*2002 ''Le groupe conseil fiscalis'', scénario produit pour le groupe conseil Fiscalis. +*2001 ''Lévis, ville nouvelle'', scénario de deux émissions de trente minutes pour le Comité de transition de la ville de Lévis et Canal Vox +*2001 ''L’école québécoise, ce qu’il y a de mieux pour votre enfant'', scénario produit pour le Ministère de l’éducation du Québec. +*2000 ''Le jeu en valait-il la chandelle?'' scénario produit pour le Centre québécois d’excellence pour la prévention et le traitement du jeu. (Université Laval) +*1999 ''Le hasard, Lucky, on peut rien y changer'', scénario produit pour le Centre québécois d’excellence pour la prévention et le traitement du jeu. (Université Laval) +*1999 ''Un pacte fiscal pour l’an 2000, des idées, de la solidarité'', scénario produit pour l’Union des Municipalités régionales de comté et des municipalités locales. +*1999 ''Détect-o-max et Une journée avec Détect-o-max'', deux scénarios produits pour Conception Ro-main inc. +*1999 ''Propane GRG, à l’écoute de ses clients'', scénario produit pour la firme Propane GRG inc. +*1998 ''Maître du mètre'', scénario d’un documentaire sur les 25 ans du système métrique au Québec. +*1997 ''Le temps des sucres'', scénario produit pour la firme Shady Maple Farms. +*1996 ''Le Génie de campagne'', scénario produit pour les Forces armées canadiennes. +*1996 ''La Compagnie franche de la Marine de Québec'', scénario produit pour les Forces armées canadiennes. +*1995 ''Bon séjour à l'École navale de Québec'', scénario produit pour les Forces armées canadiennes. +*1994 ''Un leadership, des services'', scénario produit pour la Fédération des commissions scolaires du Québec. +*1993 ''Les clubs de recherche d'emploi'', scénario produit pour le Ministère de l'Emploi et de l'Immigration du Canada. +*1992 ''Fiers de notre avenir'', scénario produit pour l'Assurance-Vie Desjardins. +*1992 ''Responsible Leadership'', scénario produit pour la compagnie papetière Donohue. (Prix Corpo Vision) +*1992 Scénarisation d'un ensemble de huit vidéos destinées aux écoles secondaires et aux collèges du Québec, pour la Fondation de l'entrepreneurship Québécois. (Prix Adate) +*1991 ''Guide à l'intention du nouveau personnel'', rédaction d'une brochure d'accueil pour la Commission scolaire Louis-Fréchette. +*1990 Comment ça va chez vous? scénario produit pour la Confédération des caisses Desjardins. +*1990 ''Le choc est aussi grand pour les petits.'' I et II, scénario de deux vidéos pour la Régie de l'assurance automobile du Québec. +*1990 Participation au concours de nouvelles de Radio-Canada avec ''Alexandre et Cassiopée.'' +*1989 Participation au concours de nouvelles de Radio-Canada avec ''Le mystère de la cathédrale.'' +*1989 ''La Double vie d'Antoine Gagnon, Ministre'', scénario d'un téléfilm pour Radio-Canada. +*1988 ''Passeport pour la liberté'', Les Quinze Éditeurs, Montréal. ISBN 2-89026-368-1. (Prix Robert-Cliche) +*1988 Coédition aux Éditions Jean Picollec, à Paris, du roman ''Passeport pour la liberté'', 303 pages, ISBN 2-86477-088-1. +*1987 Participation au concours de nouvelles de Radio-''Canada avec Le secret''. +*1987 Collaboration au scénario et aux dialogues de ''Vie décolle'', vidéo produite pour la Commission scolaire Abénakis (21 minutes). +*1983 Rédaction et direction de ''C'est qui ma maman à moi?'' pièce montée par la troupe de théâtre de la Polyvalente Benoît-Vachon de Sainte-Marie de Beauce. +*1982 Rédaction et direction de ''Au nom du père, de la fille et du Sain d'esprit'', pièce de théâtre montée par la troupe de théâtre de la Polyvalente Benoît -Vachon de Sainte-Marie de Beauce. +*1977 Corédaction et mise en scène de la pièce ''Coup de Théâtre à Ste-Onction'' jouée par les élèves de la Polyvalente Benoît-Vachon de Sainte-Marie de Beauce + +== Références == +{{references}} + +{{Portail|littérature}} + +[[Catégorie:Écrivain québécois|Beaudet, Raymond]] + c681kslws33po1iam7pndjnzh5ltje4 + + + 104798164 + 104660829 + 2014-06-19T14:38:36Z + + 24.204.159.151 + + /* Bibliographie */ ajout d'une publication + wikitext + text/x-wiki + [[Fichier:Photo Tom Prague 08.jpg|thumb|Raymond Beaudet]] +'''Raymond Beaudet''' (Québec 1950 - ) est un écrivain et un scénariste [[Québec|québécois]]. Détenteur d’une maîtrise en [[philosophie]] de l’[[Université Laval]] (1975) on le retrouve successivement enseignant, syndicaliste, secrétaire particulier du Ministre des Richesses Naturelles, [[Yves Bérubé]], directeur d’école primaire et directeur d’école secondaire (Polyvalente Benoît-Vachon). Une passion l’anime pendant tout ce temps : l’écriture. Il est l’auteur de quatre romans, d’un essai, d’une trentaine de scénarios, de quelques nouvelles et de trois pièces de théâtre. + +== Honneurs == +* Prix du Patrimoine (2011) Catégorie Interprétation et Diffusion. +* [[Prix Robert-Cliche]] ([[1988]]), ''Passeport pour la liberté''<ref>{{lien web | url=http://www.edvlb.com/prixrobertcliche/laureats.aspx | titre=Lauréats du prix Robert-Cliche | consulté le=24 juin 2011}}</ref> +* Prix Corpo-vision (1992) +* Prix Adate (1993) + +== Bibliographie == +*2014 Le désastreux destin d'Arlette Mallette, nouvelle parue dans Les Écrits mariverains 2014, ISBN-978-2-9809683-5-8 +* 2014 Carapaces, Roman publié aux Éditions Textes et Contextes, 279 pages. ISBN 978-2-923706-63-4 +* 2013 La Politique, Projet personnel d'orientation, Ministère de l'Éducation du Loisir et du sport. +* 2013 Napoléon, nouvelle parue dans Les Écrits mariverains 2013. ISBN 978-2-9809683-4-1 +* 2012 Ménage de cave, nouvelle parue dans Les Écrits mariverains, 2012.ISBN 978-2-980-9683-3-4 +* 2012 Finaliste dans deux concours de Zone d’écriture de Radio-Canada en twittérature. +* 2011 En deuxième vitesse, nouvelle parue dans Les Écrits mariverains 2011. {{ISBN|978-2-980-9683-1-0|}} +* 2010 Biographie de Jeannine Rousseau et Rolland Massicotte, scénario. +*2010 Le Projet Adam et Ève, nouvelle parue dans Écrits mariverains 2010, ISBN-978-2-980-9683-1-0 +*2009 Alexandre et Cassiopée, nouvelle parue dans Écrits mariverains 2009. +*2008 ''Dans un mois, dans un an'', Roman publié dans la collection Les mots inventifs, Les Éditions du Mécène, 576 pages. ISBN 978-2-923150-61-1 +*2007 ''L'écriture'', Projet personnel d'orientation, Ministère de l'Éducation du Loisir et du sport. +*2005 ''29, rue des Remparts'', Roman publié dans la collection Les mots inventifs, Les éditions du Mécène, 192 pages. ISBN 2-923150-28-7 +*2003 ''Vie 101'', Essai publié dans la collection Les mots utiles, Les Éditions du Mécène. 126 pages. ISBN 2-923150-03-1 +*2002 ''Le groupe conseil fiscalis'', scénario produit pour le groupe conseil Fiscalis. +*2001 ''Lévis, ville nouvelle'', scénario de deux émissions de trente minutes pour le Comité de transition de la ville de Lévis et Canal Vox +*2001 ''L’école québécoise, ce qu’il y a de mieux pour votre enfant'', scénario produit pour le Ministère de l’éducation du Québec. +*2000 ''Le jeu en valait-il la chandelle?'' scénario produit pour le Centre québécois d’excellence pour la prévention et le traitement du jeu. (Université Laval) +*1999 ''Le hasard, Lucky, on peut rien y changer'', scénario produit pour le Centre québécois d’excellence pour la prévention et le traitement du jeu. (Université Laval) +*1999 ''Un pacte fiscal pour l’an 2000, des idées, de la solidarité'', scénario produit pour l’Union des Municipalités régionales de comté et des municipalités locales. +*1999 ''Détect-o-max et Une journée avec Détect-o-max'', deux scénarios produits pour Conception Ro-main inc. +*1999 ''Propane GRG, à l’écoute de ses clients'', scénario produit pour la firme Propane GRG inc. +*1998 ''Maître du mètre'', scénario d’un documentaire sur les 25 ans du système métrique au Québec. +*1997 ''Le temps des sucres'', scénario produit pour la firme Shady Maple Farms. +*1996 ''Le Génie de campagne'', scénario produit pour les Forces armées canadiennes. +*1996 ''La Compagnie franche de la Marine de Québec'', scénario produit pour les Forces armées canadiennes. +*1995 ''Bon séjour à l'École navale de Québec'', scénario produit pour les Forces armées canadiennes. +*1994 ''Un leadership, des services'', scénario produit pour la Fédération des commissions scolaires du Québec. +*1993 ''Les clubs de recherche d'emploi'', scénario produit pour le Ministère de l'Emploi et de l'Immigration du Canada. +*1992 ''Fiers de notre avenir'', scénario produit pour l'Assurance-Vie Desjardins. +*1992 ''Responsible Leadership'', scénario produit pour la compagnie papetière Donohue. (Prix Corpo Vision) +*1992 Scénarisation d'un ensemble de huit vidéos destinées aux écoles secondaires et aux collèges du Québec, pour la Fondation de l'entrepreneurship Québécois. (Prix Adate) +*1991 ''Guide à l'intention du nouveau personnel'', rédaction d'une brochure d'accueil pour la Commission scolaire Louis-Fréchette. +*1990 Comment ça va chez vous? scénario produit pour la Confédération des caisses Desjardins. +*1990 ''Le choc est aussi grand pour les petits.'' I et II, scénario de deux vidéos pour la Régie de l'assurance automobile du Québec. +*1990 Participation au concours de nouvelles de Radio-Canada avec ''Alexandre et Cassiopée.'' +*1989 Participation au concours de nouvelles de Radio-Canada avec ''Le mystère de la cathédrale.'' +*1989 ''La Double vie d'Antoine Gagnon, Ministre'', scénario d'un téléfilm pour Radio-Canada. +*1988 ''Passeport pour la liberté'', Les Quinze Éditeurs, Montréal. ISBN 2-89026-368-1. (Prix Robert-Cliche) +*1988 Coédition aux Éditions Jean Picollec, à Paris, du roman ''Passeport pour la liberté'', 303 pages, ISBN 2-86477-088-1. +*1987 Participation au concours de nouvelles de Radio-''Canada avec Le secret''. +*1987 Collaboration au scénario et aux dialogues de ''Vie décolle'', vidéo produite pour la Commission scolaire Abénakis (21 minutes). +*1983 Rédaction et direction de ''C'est qui ma maman à moi?'' pièce montée par la troupe de théâtre de la Polyvalente Benoît-Vachon de Sainte-Marie de Beauce. +*1982 Rédaction et direction de ''Au nom du père, de la fille et du Sain d'esprit'', pièce de théâtre montée par la troupe de théâtre de la Polyvalente Benoît -Vachon de Sainte-Marie de Beauce. +*1977 Corédaction et mise en scène de la pièce ''Coup de Théâtre à Ste-Onction'' jouée par les élèves de la Polyvalente Benoît-Vachon de Sainte-Marie de Beauce + +== Références == +{{references}} + +{{Portail|littérature}} + +[[Catégorie:Écrivain québécois|Beaudet, Raymond]] + notrdbtoijmsip0ec3l23qux55gtqqh + + + 104829495 + 104798164 + 2014-06-20T15:58:25Z + + WikiCleanerBot + 351003 + + + [[WP:WPC|WPCleaner]] v1.33 - [[P:CS|Correction syntaxique]] (Numéro ISBN : syntaxe erronée) + wikitext + text/x-wiki + [[Fichier:Photo Tom Prague 08.jpg|thumb|Raymond Beaudet]] +'''Raymond Beaudet''' (Québec 1950 - ) est un écrivain et un scénariste [[Québec|québécois]]. Détenteur d’une maîtrise en [[philosophie]] de l’[[Université Laval]] (1975) on le retrouve successivement enseignant, syndicaliste, secrétaire particulier du Ministre des Richesses Naturelles, [[Yves Bérubé]], directeur d’école primaire et directeur d’école secondaire (Polyvalente Benoît-Vachon). Une passion l’anime pendant tout ce temps : l’écriture. Il est l’auteur de quatre romans, d’un essai, d’une trentaine de scénarios, de quelques nouvelles et de trois pièces de théâtre. + +== Honneurs == +* Prix du Patrimoine (2011) Catégorie Interprétation et Diffusion. +* [[Prix Robert-Cliche]] ([[1988]]), ''Passeport pour la liberté''<ref>{{lien web | url=http://www.edvlb.com/prixrobertcliche/laureats.aspx | titre=Lauréats du prix Robert-Cliche | consulté le=24 juin 2011}}</ref> +* Prix Corpo-vision (1992) +* Prix Adate (1993) + +== Bibliographie == +*2014 Le désastreux destin d'Arlette Mallette, nouvelle parue dans Les Écrits mariverains 2014, ISBN 978-2-9809683-5-8 +* 2014 Carapaces, Roman publié aux Éditions Textes et Contextes, 279 pages. ISBN 978-2-923706-63-4 +* 2013 La Politique, Projet personnel d'orientation, Ministère de l'Éducation du Loisir et du sport. +* 2013 Napoléon, nouvelle parue dans Les Écrits mariverains 2013. ISBN 978-2-9809683-4-1 +* 2012 Ménage de cave, nouvelle parue dans Les Écrits mariverains, 2012.ISBN 978-2-980-9683-3-4 +* 2012 Finaliste dans deux concours de Zone d’écriture de Radio-Canada en twittérature. +* 2011 En deuxième vitesse, nouvelle parue dans Les Écrits mariverains 2011. {{ISBN|978-2-980-9683-1-0|}} +* 2010 Biographie de Jeannine Rousseau et Rolland Massicotte, scénario. +*2010 Le Projet Adam et Ève, nouvelle parue dans Écrits mariverains 2010, ISBN 978-2-980-9683-1-0 +*2009 Alexandre et Cassiopée, nouvelle parue dans Écrits mariverains 2009. +*2008 ''Dans un mois, dans un an'', Roman publié dans la collection Les mots inventifs, Les Éditions du Mécène, 576 pages. ISBN 978-2-923150-61-1 +*2007 ''L'écriture'', Projet personnel d'orientation, Ministère de l'Éducation du Loisir et du sport. +*2005 ''29, rue des Remparts'', Roman publié dans la collection Les mots inventifs, Les éditions du Mécène, 192 pages. ISBN 2-923150-28-7 +*2003 ''Vie 101'', Essai publié dans la collection Les mots utiles, Les Éditions du Mécène. 126 pages. ISBN 2-923150-03-1 +*2002 ''Le groupe conseil fiscalis'', scénario produit pour le groupe conseil Fiscalis. +*2001 ''Lévis, ville nouvelle'', scénario de deux émissions de trente minutes pour le Comité de transition de la ville de Lévis et Canal Vox +*2001 ''L’école québécoise, ce qu’il y a de mieux pour votre enfant'', scénario produit pour le Ministère de l’éducation du Québec. +*2000 ''Le jeu en valait-il la chandelle?'' scénario produit pour le Centre québécois d’excellence pour la prévention et le traitement du jeu. (Université Laval) +*1999 ''Le hasard, Lucky, on peut rien y changer'', scénario produit pour le Centre québécois d’excellence pour la prévention et le traitement du jeu. (Université Laval) +*1999 ''Un pacte fiscal pour l’an 2000, des idées, de la solidarité'', scénario produit pour l’Union des Municipalités régionales de comté et des municipalités locales. +*1999 ''Détect-o-max et Une journée avec Détect-o-max'', deux scénarios produits pour Conception Ro-main inc. +*1999 ''Propane GRG, à l’écoute de ses clients'', scénario produit pour la firme Propane GRG inc. +*1998 ''Maître du mètre'', scénario d’un documentaire sur les 25 ans du système métrique au Québec. +*1997 ''Le temps des sucres'', scénario produit pour la firme Shady Maple Farms. +*1996 ''Le Génie de campagne'', scénario produit pour les Forces armées canadiennes. +*1996 ''La Compagnie franche de la Marine de Québec'', scénario produit pour les Forces armées canadiennes. +*1995 ''Bon séjour à l'École navale de Québec'', scénario produit pour les Forces armées canadiennes. +*1994 ''Un leadership, des services'', scénario produit pour la Fédération des commissions scolaires du Québec. +*1993 ''Les clubs de recherche d'emploi'', scénario produit pour le Ministère de l'Emploi et de l'Immigration du Canada. +*1992 ''Fiers de notre avenir'', scénario produit pour l'Assurance-Vie Desjardins. +*1992 ''Responsible Leadership'', scénario produit pour la compagnie papetière Donohue. (Prix Corpo Vision) +*1992 Scénarisation d'un ensemble de huit vidéos destinées aux écoles secondaires et aux collèges du Québec, pour la Fondation de l'entrepreneurship Québécois. (Prix Adate) +*1991 ''Guide à l'intention du nouveau personnel'', rédaction d'une brochure d'accueil pour la Commission scolaire Louis-Fréchette. +*1990 Comment ça va chez vous? scénario produit pour la Confédération des caisses Desjardins. +*1990 ''Le choc est aussi grand pour les petits.'' I et II, scénario de deux vidéos pour la Régie de l'assurance automobile du Québec. +*1990 Participation au concours de nouvelles de Radio-Canada avec ''Alexandre et Cassiopée.'' +*1989 Participation au concours de nouvelles de Radio-Canada avec ''Le mystère de la cathédrale.'' +*1989 ''La Double vie d'Antoine Gagnon, Ministre'', scénario d'un téléfilm pour Radio-Canada. +*1988 ''Passeport pour la liberté'', Les Quinze Éditeurs, Montréal. ISBN 2-89026-368-1. (Prix Robert-Cliche) +*1988 Coédition aux Éditions Jean Picollec, à Paris, du roman ''Passeport pour la liberté'', 303 pages, ISBN 2-86477-088-1. +*1987 Participation au concours de nouvelles de Radio-''Canada avec Le secret''. +*1987 Collaboration au scénario et aux dialogues de ''Vie décolle'', vidéo produite pour la Commission scolaire Abénakis (21 minutes). +*1983 Rédaction et direction de ''C'est qui ma maman à moi?'' pièce montée par la troupe de théâtre de la Polyvalente Benoît-Vachon de Sainte-Marie de Beauce. +*1982 Rédaction et direction de ''Au nom du père, de la fille et du Sain d'esprit'', pièce de théâtre montée par la troupe de théâtre de la Polyvalente Benoît -Vachon de Sainte-Marie de Beauce. +*1977 Corédaction et mise en scène de la pièce ''Coup de Théâtre à Ste-Onction'' jouée par les élèves de la Polyvalente Benoît-Vachon de Sainte-Marie de Beauce + +== Références == +{{references}} + +{{Portail|littérature}} + +[[Catégorie:Écrivain québécois|Beaudet, Raymond]] + g3qfkquj8mfi8tnndikp87px43go6jj + + + 104922470 + 104829495 + 2014-06-24T10:35:17Z + + Le pro du 94 :) + 1061593 + + + + lien vers homonymes + wikitext + text/x-wiki + {{voir homonymes|Beaudet}} +[[Fichier:Photo Tom Prague 08.jpg|thumb|Raymond Beaudet]] +'''Raymond Beaudet''' (Québec 1950 - ) est un écrivain et un scénariste [[Québec|québécois]]. Détenteur d’une maîtrise en [[philosophie]] de l’[[Université Laval]] (1975) on le retrouve successivement enseignant, syndicaliste, secrétaire particulier du Ministre des Richesses Naturelles, [[Yves Bérubé]], directeur d’école primaire et directeur d’école secondaire (Polyvalente Benoît-Vachon). Une passion l’anime pendant tout ce temps : l’écriture. Il est l’auteur de quatre romans, d’un essai, d’une trentaine de scénarios, de quelques nouvelles et de trois pièces de théâtre. + +== Honneurs == +* Prix du Patrimoine (2011) Catégorie Interprétation et Diffusion. +* [[Prix Robert-Cliche]] ([[1988]]), ''Passeport pour la liberté''<ref>{{lien web | url=http://www.edvlb.com/prixrobertcliche/laureats.aspx | titre=Lauréats du prix Robert-Cliche | consulté le=24 juin 2011}}</ref> +* Prix Corpo-vision (1992) +* Prix Adate (1993) + +== Bibliographie == +*2014 Le désastreux destin d'Arlette Mallette, nouvelle parue dans Les Écrits mariverains 2014, ISBN 978-2-9809683-5-8 +* 2014 Carapaces, Roman publié aux Éditions Textes et Contextes, 279 pages. ISBN 978-2-923706-63-4 +* 2013 La Politique, Projet personnel d'orientation, Ministère de l'Éducation du Loisir et du sport. +* 2013 Napoléon, nouvelle parue dans Les Écrits mariverains 2013. ISBN 978-2-9809683-4-1 +* 2012 Ménage de cave, nouvelle parue dans Les Écrits mariverains, 2012.ISBN 978-2-980-9683-3-4 +* 2012 Finaliste dans deux concours de Zone d’écriture de Radio-Canada en twittérature. +* 2011 En deuxième vitesse, nouvelle parue dans Les Écrits mariverains 2011. {{ISBN|978-2-980-9683-1-0|}} +* 2010 Biographie de Jeannine Rousseau et Rolland Massicotte, scénario. +*2010 Le Projet Adam et Ève, nouvelle parue dans Écrits mariverains 2010, ISBN 978-2-980-9683-1-0 +*2009 Alexandre et Cassiopée, nouvelle parue dans Écrits mariverains 2009. +*2008 ''Dans un mois, dans un an'', Roman publié dans la collection Les mots inventifs, Les Éditions du Mécène, 576 pages. ISBN 978-2-923150-61-1 +*2007 ''L'écriture'', Projet personnel d'orientation, Ministère de l'Éducation du Loisir et du sport. +*2005 ''29, rue des Remparts'', Roman publié dans la collection Les mots inventifs, Les éditions du Mécène, 192 pages. ISBN 2-923150-28-7 +*2003 ''Vie 101'', Essai publié dans la collection Les mots utiles, Les Éditions du Mécène. 126 pages. ISBN 2-923150-03-1 +*2002 ''Le groupe conseil fiscalis'', scénario produit pour le groupe conseil Fiscalis. +*2001 ''Lévis, ville nouvelle'', scénario de deux émissions de trente minutes pour le Comité de transition de la ville de Lévis et Canal Vox +*2001 ''L’école québécoise, ce qu’il y a de mieux pour votre enfant'', scénario produit pour le Ministère de l’éducation du Québec. +*2000 ''Le jeu en valait-il la chandelle?'' scénario produit pour le Centre québécois d’excellence pour la prévention et le traitement du jeu. (Université Laval) +*1999 ''Le hasard, Lucky, on peut rien y changer'', scénario produit pour le Centre québécois d’excellence pour la prévention et le traitement du jeu. (Université Laval) +*1999 ''Un pacte fiscal pour l’an 2000, des idées, de la solidarité'', scénario produit pour l’Union des Municipalités régionales de comté et des municipalités locales. +*1999 ''Détect-o-max et Une journée avec Détect-o-max'', deux scénarios produits pour Conception Ro-main inc. +*1999 ''Propane GRG, à l’écoute de ses clients'', scénario produit pour la firme Propane GRG inc. +*1998 ''Maître du mètre'', scénario d’un documentaire sur les 25 ans du système métrique au Québec. +*1997 ''Le temps des sucres'', scénario produit pour la firme Shady Maple Farms. +*1996 ''Le Génie de campagne'', scénario produit pour les Forces armées canadiennes. +*1996 ''La Compagnie franche de la Marine de Québec'', scénario produit pour les Forces armées canadiennes. +*1995 ''Bon séjour à l'École navale de Québec'', scénario produit pour les Forces armées canadiennes. +*1994 ''Un leadership, des services'', scénario produit pour la Fédération des commissions scolaires du Québec. +*1993 ''Les clubs de recherche d'emploi'', scénario produit pour le Ministère de l'Emploi et de l'Immigration du Canada. +*1992 ''Fiers de notre avenir'', scénario produit pour l'Assurance-Vie Desjardins. +*1992 ''Responsible Leadership'', scénario produit pour la compagnie papetière Donohue. (Prix Corpo Vision) +*1992 Scénarisation d'un ensemble de huit vidéos destinées aux écoles secondaires et aux collèges du Québec, pour la Fondation de l'entrepreneurship Québécois. (Prix Adate) +*1991 ''Guide à l'intention du nouveau personnel'', rédaction d'une brochure d'accueil pour la Commission scolaire Louis-Fréchette. +*1990 Comment ça va chez vous? scénario produit pour la Confédération des caisses Desjardins. +*1990 ''Le choc est aussi grand pour les petits.'' I et II, scénario de deux vidéos pour la Régie de l'assurance automobile du Québec. +*1990 Participation au concours de nouvelles de Radio-Canada avec ''Alexandre et Cassiopée.'' +*1989 Participation au concours de nouvelles de Radio-Canada avec ''Le mystère de la cathédrale.'' +*1989 ''La Double vie d'Antoine Gagnon, Ministre'', scénario d'un téléfilm pour Radio-Canada. +*1988 ''Passeport pour la liberté'', Les Quinze Éditeurs, Montréal. ISBN 2-89026-368-1. (Prix Robert-Cliche) +*1988 Coédition aux Éditions Jean Picollec, à Paris, du roman ''Passeport pour la liberté'', 303 pages, ISBN 2-86477-088-1. +*1987 Participation au concours de nouvelles de Radio-''Canada avec Le secret''. +*1987 Collaboration au scénario et aux dialogues de ''Vie décolle'', vidéo produite pour la Commission scolaire Abénakis (21 minutes). +*1983 Rédaction et direction de ''C'est qui ma maman à moi?'' pièce montée par la troupe de théâtre de la Polyvalente Benoît-Vachon de Sainte-Marie de Beauce. +*1982 Rédaction et direction de ''Au nom du père, de la fille et du Sain d'esprit'', pièce de théâtre montée par la troupe de théâtre de la Polyvalente Benoît -Vachon de Sainte-Marie de Beauce. +*1977 Corédaction et mise en scène de la pièce ''Coup de Théâtre à Ste-Onction'' jouée par les élèves de la Polyvalente Benoît-Vachon de Sainte-Marie de Beauce + +== Références == +{{references}} + +{{Portail|littérature}} + +[[Catégorie:Écrivain québécois|Beaudet, Raymond]] + 29kmhrlbn7t70ahkklrzu1pacva47mi + + + 114360018 + 104922470 + 2015-04-21T21:17:46Z + + 199.102.205.160 + + /* Bibliographie */ mise à jour des publications + wikitext + text/x-wiki + {{voir homonymes|Beaudet}} +[[Fichier:Photo Tom Prague 08.jpg|thumb|Raymond Beaudet]] +'''Raymond Beaudet''' (Québec 1950 - ) est un écrivain et un scénariste [[Québec|québécois]]. Détenteur d’une maîtrise en [[philosophie]] de l’[[Université Laval]] (1975) on le retrouve successivement enseignant, syndicaliste, secrétaire particulier du Ministre des Richesses Naturelles, [[Yves Bérubé]], directeur d’école primaire et directeur d’école secondaire (Polyvalente Benoît-Vachon). Une passion l’anime pendant tout ce temps : l’écriture. Il est l’auteur de quatre romans, d’un essai, d’une trentaine de scénarios, de quelques nouvelles et de trois pièces de théâtre. + +== Honneurs == +* Prix du Patrimoine (2011) Catégorie Interprétation et Diffusion. +* [[Prix Robert-Cliche]] ([[1988]]), ''Passeport pour la liberté''<ref>{{lien web | url=http://www.edvlb.com/prixrobertcliche/laureats.aspx | titre=Lauréats du prix Robert-Cliche | consulté le=24 juin 2011}}</ref> +* Prix Corpo-vision (1992) +* Prix Adate (1993) + +== Bibliographie == +*2015 La CIA, version 5.0, scénario du spectacle de la Corporation des Instrumentistes Associés. +*2014 Le désastreux destin d'Arlette Mallette, nouvelle parue dans Les Écrits mariverains 2014, ISBN 978-2-9809683-5-8 +* 2014 La CIA, L'espace d'une vie, scénario du spectacle de la Corporation des Instrumentistes Associés. +* 2014 Carapaces, Roman publié aux Éditions Textes et Contextes, 279 pages. ISBN 978-2-923706-63-4 +* 2013 La Politique, Projet personnel d'orientation, Ministère de l'Éducation du Loisir et du sport. +* 2013 La CIA poursuit son enquête, scénario du spectacle de la Corporation des Instrumentistes Associés. +* 2013 Napoléon, nouvelle parue dans Les Écrits mariverains 2013. ISBN 978-2-9809683-4-1 +* 2012 Ménage de cave, nouvelle parue dans Les Écrits mariverains, 2012.ISBN 978-2-980-9683-3-4 +* 2012 En quête de mission, scénario du spectacle de la Corporation des Instrumentistes Associés. +* 2012 Finaliste dans deux concours de Zone d’écriture de Radio-Canada en twittérature. +* 2011 La CIA autour du monde, scénario du spectacle de la Corporation des Instrumentistes Associés. +* 2011 En deuxième vitesse, nouvelle parue dans Les Écrits mariverains 2011. {{ISBN|978-2-980-9683-1-0|}} +* 2010 Biographie de Jeannine Rousseau et Rolland Massicotte, scénario. +*2010 Le Projet Adam et Ève, nouvelle parue dans Écrits mariverains 2010, ISBN 978-2-980-9683-1-0 +*2009 Alexandre et Cassiopée, nouvelle parue dans Écrits mariverains 2009. +*2008 ''Dans un mois, dans un an'', Roman publié dans la collection Les mots inventifs, Les Éditions du Mécène, 576 pages. ISBN 978-2-923150-61-1 +*2007 ''L'écriture'', Projet personnel d'orientation, Ministère de l'Éducation du Loisir et du sport. +*2005 ''29, rue des Remparts'', Roman publié dans la collection Les mots inventifs, Les éditions du Mécène, 192 pages. ISBN 2-923150-28-7 +*2003 ''Vie 101'', Essai publié dans la collection Les mots utiles, Les Éditions du Mécène. 126 pages. ISBN 2-923150-03-1 +*2002 ''Le groupe conseil fiscalis'', scénario produit pour le groupe conseil Fiscalis. +*2001 ''Lévis, ville nouvelle'', scénario de deux émissions de trente minutes pour le Comité de transition de la ville de Lévis et Canal Vox +*2001 ''L’école québécoise, ce qu’il y a de mieux pour votre enfant'', scénario produit pour le Ministère de l’éducation du Québec. +*2000 ''Le jeu en valait-il la chandelle?'' scénario produit pour le Centre québécois d’excellence pour la prévention et le traitement du jeu. (Université Laval) +*1999 ''Le hasard, Lucky, on peut rien y changer'', scénario produit pour le Centre québécois d’excellence pour la prévention et le traitement du jeu. (Université Laval) +*1999 ''Un pacte fiscal pour l’an 2000, des idées, de la solidarité'', scénario produit pour l’Union des Municipalités régionales de comté et des municipalités locales. +*1999 ''Détect-o-max et Une journée avec Détect-o-max'', deux scénarios produits pour Conception Ro-main inc. +*1999 ''Propane GRG, à l’écoute de ses clients'', scénario produit pour la firme Propane GRG inc. +*1998 ''Maître du mètre'', scénario d’un documentaire sur les 25 ans du système métrique au Québec. +*1997 ''Le temps des sucres'', scénario produit pour la firme Shady Maple Farms. +*1996 ''Le Génie de campagne'', scénario produit pour les Forces armées canadiennes. +*1996 ''La Compagnie franche de la Marine de Québec'', scénario produit pour les Forces armées canadiennes. +*1995 ''Bon séjour à l'École navale de Québec'', scénario produit pour les Forces armées canadiennes. +*1994 ''Un leadership, des services'', scénario produit pour la Fédération des commissions scolaires du Québec. +*1993 ''Les clubs de recherche d'emploi'', scénario produit pour le Ministère de l'Emploi et de l'Immigration du Canada. +*1992 ''Fiers de notre avenir'', scénario produit pour l'Assurance-Vie Desjardins. +*1992 ''Responsible Leadership'', scénario produit pour la compagnie papetière Donohue. (Prix Corpo Vision) +*1992 Scénarisation d'un ensemble de huit vidéos destinées aux écoles secondaires et aux collèges du Québec, pour la Fondation de l'entrepreneurship Québécois. (Prix Adate) +*1991 ''Guide à l'intention du nouveau personnel'', rédaction d'une brochure d'accueil pour la Commission scolaire Louis-Fréchette. +*1990 Comment ça va chez vous? scénario produit pour la Confédération des caisses Desjardins. +*1990 ''Le choc est aussi grand pour les petits.'' I et II, scénario de deux vidéos pour la Régie de l'assurance automobile du Québec. +*1990 Participation au concours de nouvelles de Radio-Canada avec ''Alexandre et Cassiopée.'' +*1989 Participation au concours de nouvelles de Radio-Canada avec ''Le mystère de la cathédrale.'' +*1989 ''La Double vie d'Antoine Gagnon, Ministre'', scénario d'un téléfilm pour Radio-Canada. +*1988 ''Passeport pour la liberté'', Les Quinze Éditeurs, Montréal. ISBN 2-89026-368-1. (Prix Robert-Cliche) +*1988 Coédition aux Éditions Jean Picollec, à Paris, du roman ''Passeport pour la liberté'', 303 pages, ISBN 2-86477-088-1. +*1987 Participation au concours de nouvelles de Radio-''Canada avec Le secret''. +*1987 Collaboration au scénario et aux dialogues de ''Vie décolle'', vidéo produite pour la Commission scolaire Abénakis (21 minutes). +*1983 Rédaction et direction de ''C'est qui ma maman à moi?'' pièce montée par la troupe de théâtre de la Polyvalente Benoît-Vachon de Sainte-Marie de Beauce. +*1982 Rédaction et direction de ''Au nom du père, de la fille et du Sain d'esprit'', pièce de théâtre montée par la troupe de théâtre de la Polyvalente Benoît -Vachon de Sainte-Marie de Beauce. +*1977 Corédaction et mise en scène de la pièce ''Coup de Théâtre à Ste-Onction'' jouée par les élèves de la Polyvalente Benoît-Vachon de Sainte-Marie de Beauce + +== Références == +{{references}} + +{{Portail|littérature}} + +[[Catégorie:Écrivain québécois|Beaudet, Raymond]] + 24qrcl6pdxb2w45k97u1s6yrp79i1ll + + + 116045152 + 114360018 + 2015-06-16T13:35:48Z + + 199.102.205.160 + + Ajout d'une publication + wikitext + text/x-wiki + {{voir homonymes|Beaudet}} +[[Fichier:Photo Tom Prague 08.jpg|thumb|Raymond Beaudet]] +'''Raymond Beaudet''' (Québec 1950 - ) est un écrivain et un scénariste [[Québec|québécois]]. Détenteur d’une maîtrise en [[philosophie]] de l’[[Université Laval]] (1975) on le retrouve successivement enseignant, syndicaliste, secrétaire particulier du Ministre des Richesses Naturelles, [[Yves Bérubé]], directeur d’école primaire et directeur d’école secondaire (Polyvalente Benoît-Vachon). Une passion l’anime pendant tout ce temps : l’écriture. Il est l’auteur de quatre romans, d’un essai, d’une trentaine de scénarios, de quelques nouvelles et de trois pièces de théâtre. + +== Honneurs == +* Prix du Patrimoine (2011) Catégorie Interprétation et Diffusion. +* [[Prix Robert-Cliche]] ([[1988]]), ''Passeport pour la liberté''<ref>{{lien web | url=http://www.edvlb.com/prixrobertcliche/laureats.aspx | titre=Lauréats du prix Robert-Cliche | consulté le=24 juin 2011}}</ref> +* Prix Corpo-vision (1992) +* Prix Adate (1993) + +== Bibliographie == +*2015 Impressions de voyage : le Chili, nouvelle parue dans Les Écrits mariverains 2015, ISBN 978-2-9809683-6-5 +*2015 La CIA, version 5.0, scénario du spectacle de la Corporation des Instrumentistes Associés. +*2014 Le désastreux destin d'Arlette Mallette, nouvelle parue dans Les Écrits mariverains 2014, ISBN 978-2-9809683-5-8 +* 2014 La CIA, L'espace d'une vie, scénario du spectacle de la Corporation des Instrumentistes Associés. +* 2014 Carapaces, Roman publié aux Éditions Textes et Contextes, 279 pages. ISBN 978-2-923706-63-4 +* 2013 La Politique, Projet personnel d'orientation, Ministère de l'Éducation du Loisir et du sport. +* 2013 La CIA poursuit son enquête, scénario du spectacle de la Corporation des Instrumentistes Associés. +* 2013 Napoléon, nouvelle parue dans Les Écrits mariverains 2013. ISBN 978-2-9809683-4-1 +* 2012 Ménage de cave, nouvelle parue dans Les Écrits mariverains, 2012.ISBN 978-2-980-9683-3-4 +* 2012 En quête de mission, scénario du spectacle de la Corporation des Instrumentistes Associés. +* 2012 Finaliste dans deux concours de Zone d’écriture de Radio-Canada en twittérature. +* 2011 La CIA autour du monde, scénario du spectacle de la Corporation des Instrumentistes Associés. +* 2011 En deuxième vitesse, nouvelle parue dans Les Écrits mariverains 2011. {{ISBN|978-2-980-9683-1-0|}} +* 2010 Biographie de Jeannine Rousseau et Rolland Massicotte, scénario. +*2010 Le Projet Adam et Ève, nouvelle parue dans Écrits mariverains 2010, ISBN 978-2-980-9683-1-0 +*2009 Alexandre et Cassiopée, nouvelle parue dans Écrits mariverains 2009. +*2008 ''Dans un mois, dans un an'', Roman publié dans la collection Les mots inventifs, Les Éditions du Mécène, 576 pages. ISBN 978-2-923150-61-1 +*2007 ''L'écriture'', Projet personnel d'orientation, Ministère de l'Éducation du Loisir et du sport. +*2005 ''29, rue des Remparts'', Roman publié dans la collection Les mots inventifs, Les éditions du Mécène, 192 pages. ISBN 2-923150-28-7 +*2003 ''Vie 101'', Essai publié dans la collection Les mots utiles, Les Éditions du Mécène. 126 pages. ISBN 2-923150-03-1 +*2002 ''Le groupe conseil fiscalis'', scénario produit pour le groupe conseil Fiscalis. +*2001 ''Lévis, ville nouvelle'', scénario de deux émissions de trente minutes pour le Comité de transition de la ville de Lévis et Canal Vox +*2001 ''L’école québécoise, ce qu’il y a de mieux pour votre enfant'', scénario produit pour le Ministère de l’éducation du Québec. +*2000 ''Le jeu en valait-il la chandelle?'' scénario produit pour le Centre québécois d’excellence pour la prévention et le traitement du jeu. (Université Laval) +*1999 ''Le hasard, Lucky, on peut rien y changer'', scénario produit pour le Centre québécois d’excellence pour la prévention et le traitement du jeu. (Université Laval) +*1999 ''Un pacte fiscal pour l’an 2000, des idées, de la solidarité'', scénario produit pour l’Union des Municipalités régionales de comté et des municipalités locales. +*1999 ''Détect-o-max et Une journée avec Détect-o-max'', deux scénarios produits pour Conception Ro-main inc. +*1999 ''Propane GRG, à l’écoute de ses clients'', scénario produit pour la firme Propane GRG inc. +*1998 ''Maître du mètre'', scénario d’un documentaire sur les 25 ans du système métrique au Québec. +*1997 ''Le temps des sucres'', scénario produit pour la firme Shady Maple Farms. +*1996 ''Le Génie de campagne'', scénario produit pour les Forces armées canadiennes. +*1996 ''La Compagnie franche de la Marine de Québec'', scénario produit pour les Forces armées canadiennes. +*1995 ''Bon séjour à l'École navale de Québec'', scénario produit pour les Forces armées canadiennes. +*1994 ''Un leadership, des services'', scénario produit pour la Fédération des commissions scolaires du Québec. +*1993 ''Les clubs de recherche d'emploi'', scénario produit pour le Ministère de l'Emploi et de l'Immigration du Canada. +*1992 ''Fiers de notre avenir'', scénario produit pour l'Assurance-Vie Desjardins. +*1992 ''Responsible Leadership'', scénario produit pour la compagnie papetière Donohue. (Prix Corpo Vision) +*1992 Scénarisation d'un ensemble de huit vidéos destinées aux écoles secondaires et aux collèges du Québec, pour la Fondation de l'entrepreneurship Québécois. (Prix Adate) +*1991 ''Guide à l'intention du nouveau personnel'', rédaction d'une brochure d'accueil pour la Commission scolaire Louis-Fréchette. +*1990 Comment ça va chez vous? scénario produit pour la Confédération des caisses Desjardins. +*1990 ''Le choc est aussi grand pour les petits.'' I et II, scénario de deux vidéos pour la Régie de l'assurance automobile du Québec. +*1990 Participation au concours de nouvelles de Radio-Canada avec ''Alexandre et Cassiopée.'' +*1989 Participation au concours de nouvelles de Radio-Canada avec ''Le mystère de la cathédrale.'' +*1989 ''La Double vie d'Antoine Gagnon, Ministre'', scénario d'un téléfilm pour Radio-Canada. +*1988 ''Passeport pour la liberté'', Les Quinze Éditeurs, Montréal. ISBN 2-89026-368-1. (Prix Robert-Cliche) +*1988 Coédition aux Éditions Jean Picollec, à Paris, du roman ''Passeport pour la liberté'', 303 pages, ISBN 2-86477-088-1. +*1987 Participation au concours de nouvelles de Radio-''Canada avec Le secret''. +*1987 Collaboration au scénario et aux dialogues de ''Vie décolle'', vidéo produite pour la Commission scolaire Abénakis (21 minutes). +*1983 Rédaction et direction de ''C'est qui ma maman à moi?'' pièce montée par la troupe de théâtre de la Polyvalente Benoît-Vachon de Sainte-Marie de Beauce. +*1982 Rédaction et direction de ''Au nom du père, de la fille et du Sain d'esprit'', pièce de théâtre montée par la troupe de théâtre de la Polyvalente Benoît -Vachon de Sainte-Marie de Beauce. +*1977 Corédaction et mise en scène de la pièce ''Coup de Théâtre à Ste-Onction'' jouée par les élèves de la Polyvalente Benoît-Vachon de Sainte-Marie de Beauce + +== Références == +{{references}} + +{{Portail|littérature}} + +[[Catégorie:Écrivain québécois|Beaudet, Raymond]] + l7tpdq2a8xnn374bzoiqxqc1qtalr8i + + + 125830324 + 116045152 + 2016-05-02T21:51:14Z + + 72.11.179.203 + + /* Honneurs */ ajout d'un prix + wikitext + text/x-wiki + {{voir homonymes|Beaudet}} +[[Fichier:Photo Tom Prague 08.jpg|thumb|Raymond Beaudet]] +'''Raymond Beaudet''' (Québec 1950 - ) est un écrivain et un scénariste [[Québec|québécois]]. Détenteur d’une maîtrise en [[philosophie]] de l’[[Université Laval]] (1975) on le retrouve successivement enseignant, syndicaliste, secrétaire particulier du Ministre des Richesses Naturelles, [[Yves Bérubé]], directeur d’école primaire et directeur d’école secondaire (Polyvalente Benoît-Vachon). Une passion l’anime pendant tout ce temps : l’écriture. Il est l’auteur de quatre romans, d’un essai, d’une trentaine de scénarios, de plusieurs nouvelles et de trois pièces de théâtre. Depuis 2014, il est actif en twittérature. + +== Honneurs == +* Prix coup de cœur du jury au Concours de twittérature du Centre de la Francophonie des Amériques 2016 +* Prix du Patrimoine (2011) Catégorie Interprétation et Diffusion. +* [[Prix Robert-Cliche]] ([[1988]]), ''Passeport pour la liberté''<ref>{{lien web | url=http://www.edvlb.com/prixrobertcliche/laureats.aspx | titre=Lauréats du prix Robert-Cliche | consulté le=24 juin 2011}}</ref> +* Prix Corpo-vision (1992) +* Prix Adate (1993) + +== Bibliographie == +*2016 La CIA sème le trouble, scénario du spectacle de la Corporation des Instrumentistes Associés. +*2015 La photographie numérique, Projet personnel d'orientation, Ministère de l'Éducation du Loisir et du sport. +*2015 Impressions de voyage : le Chili, nouvelle parue dans Les Écrits mariverains 2015, ISBN 978-2-9809683-6-5 +*2015 La CIA, version 5.0, scénario du spectacle de la Corporation des Instrumentistes Associés. +*2014 Le désastreux destin d'Arlette Mallette, nouvelle parue dans Les Écrits mariverains 2014, ISBN 978-2-9809683-5-8 +* 2014 La CIA, L'espace d'une vie, scénario du spectacle de la Corporation des Instrumentistes Associés. +* 2014 Carapaces, Roman publié aux Éditions Textes et Contextes, 279 pages. ISBN 978-2-923706-63-4 +* 2013 La Politique, Projet personnel d'orientation, Ministère de l'Éducation du Loisir et du sport. +* 2013 La CIA poursuit son enquête, scénario du spectacle de la Corporation des Instrumentistes Associés. +* 2013 Napoléon, nouvelle parue dans Les Écrits mariverains 2013. ISBN 978-2-9809683-4-1 +* 2012 Ménage de cave, nouvelle parue dans Les Écrits mariverains, 2012.ISBN 978-2-980-9683-3-4 +* 2012 En quête de mission, scénario du spectacle de la Corporation des Instrumentistes Associés. +* 2012 Finaliste dans deux concours de Zone d’écriture de Radio-Canada en twittérature. +* 2011 La CIA autour du monde, scénario du spectacle de la Corporation des Instrumentistes Associés. +* 2011 En deuxième vitesse, nouvelle parue dans Les Écrits mariverains 2011. {{ISBN|978-2-980-9683-1-0|}} +* 2010 Biographie de Jeannine Rousseau et Rolland Massicotte, scénario. +*2010 Le Projet Adam et Ève, nouvelle parue dans Écrits mariverains 2010, ISBN 978-2-980-9683-1-0 +*2009 Alexandre et Cassiopée, nouvelle parue dans Écrits mariverains 2009. +*2008 ''Dans un mois, dans un an'', Roman publié dans la collection Les mots inventifs, Les Éditions du Mécène, 576 pages. ISBN 978-2-923150-61-1 +*2007 ''L'écriture'', Projet personnel d'orientation, Ministère de l'Éducation du Loisir et du sport. +*2005 ''29, rue des Remparts'', Roman publié dans la collection Les mots inventifs, Les éditions du Mécène, 192 pages. ISBN 2-923150-28-7 +*2003 ''Vie 101'', Essai publié dans la collection Les mots utiles, Les Éditions du Mécène. 126 pages. ISBN 2-923150-03-1 +*2002 ''Le groupe conseil fiscalis'', scénario produit pour le groupe conseil Fiscalis. +*2001 ''Lévis, ville nouvelle'', scénario de deux émissions de trente minutes pour le Comité de transition de la ville de Lévis et Canal Vox +*2001 ''L’école québécoise, ce qu’il y a de mieux pour votre enfant'', scénario produit pour le Ministère de l’éducation du Québec. +*2000 ''Le jeu en valait-il la chandelle?'' scénario produit pour le Centre québécois d’excellence pour la prévention et le traitement du jeu. (Université Laval) +*1999 ''Le hasard, Lucky, on peut rien y changer'', scénario produit pour le Centre québécois d’excellence pour la prévention et le traitement du jeu. (Université Laval) +*1999 ''Un pacte fiscal pour l’an 2000, des idées, de la solidarité'', scénario produit pour l’Union des Municipalités régionales de comté et des municipalités locales. +*1999 ''Détect-o-max et Une journée avec Détect-o-max'', deux scénarios produits pour Conception Ro-main inc. +*1999 ''Propane GRG, à l’écoute de ses clients'', scénario produit pour la firme Propane GRG inc. +*1998 ''Maître du mètre'', scénario d’un documentaire sur les 25 ans du système métrique au Québec. +*1997 ''Le temps des sucres'', scénario produit pour la firme Shady Maple Farms. +*1996 ''Le Génie de campagne'', scénario produit pour les Forces armées canadiennes. +*1996 ''La Compagnie franche de la Marine de Québec'', scénario produit pour les Forces armées canadiennes. +*1995 ''Bon séjour à l'École navale de Québec'', scénario produit pour les Forces armées canadiennes. +*1994 ''Un leadership, des services'', scénario produit pour la Fédération des commissions scolaires du Québec. +*1993 ''Les clubs de recherche d'emploi'', scénario produit pour le Ministère de l'Emploi et de l'Immigration du Canada. +*1992 ''Fiers de notre avenir'', scénario produit pour l'Assurance-Vie Desjardins. +*1992 ''Responsible Leadership'', scénario produit pour la compagnie papetière Donohue. (Prix Corpo Vision) +*1992 Scénarisation d'un ensemble de huit vidéos destinées aux écoles secondaires et aux collèges du Québec, pour la Fondation de l'entrepreneurship Québécois. (Prix Adate) +*1991 ''Guide à l'intention du nouveau personnel'', rédaction d'une brochure d'accueil pour la Commission scolaire Louis-Fréchette. +*1990 Comment ça va chez vous? scénario produit pour la Confédération des caisses Desjardins. +*1990 ''Le choc est aussi grand pour les petits.'' I et II, scénario de deux vidéos pour la Régie de l'assurance automobile du Québec. +*1990 Participation au concours de nouvelles de Radio-Canada avec ''Alexandre et Cassiopée.'' +*1989 Participation au concours de nouvelles de Radio-Canada avec ''Le mystère de la cathédrale.'' +*1989 ''La Double vie d'Antoine Gagnon, Ministre'', scénario d'un téléfilm pour Radio-Canada. +*1988 ''Passeport pour la liberté'', Les Quinze Éditeurs, Montréal. ISBN 2-89026-368-1. (Prix Robert-Cliche) +*1988 Coédition aux Éditions Jean Picollec, à Paris, du roman ''Passeport pour la liberté'', 303 pages, ISBN 2-86477-088-1. +*1987 Participation au concours de nouvelles de Radio-''Canada avec Le secret''. +*1987 Collaboration au scénario et aux dialogues de ''Vie décolle'', vidéo produite pour la Commission scolaire Abénakis (21 minutes). +*1983 Rédaction et direction de ''C'est qui ma maman à moi?'' pièce montée par la troupe de théâtre de la Polyvalente Benoît-Vachon de Sainte-Marie de Beauce. +*1982 Rédaction et direction de ''Au nom du père, de la fille et du Sain d'esprit'', pièce de théâtre montée par la troupe de théâtre de la Polyvalente Benoît -Vachon de Sainte-Marie de Beauce. +*1977 Corédaction et mise en scène de la pièce ''Coup de Théâtre à Ste-Onction'' jouée par les élèves de la Polyvalente Benoît-Vachon de Sainte-Marie de Beauce + +== Références == +{{references}} + +{{Portail|littérature}} + +[[Catégorie:Écrivain québécois|Beaudet, Raymond]] + soz1cjozlh0emkwzhott2w4pcpnjglv + + + 127424529 + 125830324 + 2016-06-28T12:55:23Z + + 72.11.179.203 + + /* Bibliographie */ ajout d'une publication. + wikitext + text/x-wiki + {{voir homonymes|Beaudet}} +[[Fichier:Photo Tom Prague 08.jpg|thumb|Raymond Beaudet]] +'''Raymond Beaudet''' (Québec 1950 - ) est un écrivain et un scénariste [[Québec|québécois]]. Détenteur d’une maîtrise en [[philosophie]] de l’[[Université Laval]] (1975) on le retrouve successivement enseignant, syndicaliste, secrétaire particulier du Ministre des Richesses Naturelles, [[Yves Bérubé]], directeur d’école primaire et directeur d’école secondaire (Polyvalente Benoît-Vachon). Une passion l’anime pendant tout ce temps : l’écriture. Il est l’auteur de quatre romans, d’un essai, d’une trentaine de scénarios, de plusieurs nouvelles et de trois pièces de théâtre. Depuis 2014, il est actif en twittérature. + +== Honneurs == +* Prix coup de cœur du jury au Concours de twittérature du Centre de la Francophonie des Amériques 2016 +* Prix du Patrimoine (2011) Catégorie Interprétation et Diffusion. +* [[Prix Robert-Cliche]] ([[1988]]), ''Passeport pour la liberté''<ref>{{lien web | url=http://www.edvlb.com/prixrobertcliche/laureats.aspx | titre=Lauréats du prix Robert-Cliche | consulté le=24 juin 2011}}</ref> +* Prix Corpo-vision (1992) +* Prix Adate (1993) + +== Bibliographie == +*2016 Éliza Caztel de Sainte-Marie, nouvelle parue dans Les Écrits mariverains 2016, ISBN-978-2-9809683-7-2 +*2016 La CIA sème le trouble, scénario du spectacle de la Corporation des Instrumentistes Associés. +*2015 La photographie numérique, Projet personnel d'orientation, Ministère de l'Éducation du Loisir et du sport. +*2015 Impressions de voyage : le Chili, nouvelle parue dans Les Écrits mariverains 2015, ISBN 978-2-9809683-6-5 +*2015 La CIA, version 5.0, scénario du spectacle de la Corporation des Instrumentistes Associés. +*2014 Le désastreux destin d'Arlette Mallette, nouvelle parue dans Les Écrits mariverains 2014, ISBN 978-2-9809683-5-8 +* 2014 La CIA, L'espace d'une vie, scénario du spectacle de la Corporation des Instrumentistes Associés. +* 2014 Carapaces, Roman publié aux Éditions Textes et Contextes, 279 pages. ISBN 978-2-923706-63-4 +* 2013 La Politique, Projet personnel d'orientation, Ministère de l'Éducation du Loisir et du sport. +* 2013 La CIA poursuit son enquête, scénario du spectacle de la Corporation des Instrumentistes Associés. +* 2013 Napoléon, nouvelle parue dans Les Écrits mariverains 2013. ISBN 978-2-9809683-4-1 +* 2012 Ménage de cave, nouvelle parue dans Les Écrits mariverains, 2012.ISBN 978-2-980-9683-3-4 +* 2012 En quête de mission, scénario du spectacle de la Corporation des Instrumentistes Associés. +* 2012 Finaliste dans deux concours de Zone d’écriture de Radio-Canada en twittérature. +* 2011 La CIA autour du monde, scénario du spectacle de la Corporation des Instrumentistes Associés. +* 2011 En deuxième vitesse, nouvelle parue dans Les Écrits mariverains 2011. {{ISBN|978-2-980-9683-1-0|}} +* 2010 Biographie de Jeannine Rousseau et Rolland Massicotte, scénario. +*2010 Le Projet Adam et Ève, nouvelle parue dans Écrits mariverains 2010, ISBN 978-2-980-9683-1-0 +*2009 Alexandre et Cassiopée, nouvelle parue dans Écrits mariverains 2009. +*2008 ''Dans un mois, dans un an'', Roman publié dans la collection Les mots inventifs, Les Éditions du Mécène, 576 pages. ISBN 978-2-923150-61-1 +*2007 ''L'écriture'', Projet personnel d'orientation, Ministère de l'Éducation du Loisir et du sport. +*2005 ''29, rue des Remparts'', Roman publié dans la collection Les mots inventifs, Les éditions du Mécène, 192 pages. ISBN 2-923150-28-7 +*2003 ''Vie 101'', Essai publié dans la collection Les mots utiles, Les Éditions du Mécène. 126 pages. ISBN 2-923150-03-1 +*2002 ''Le groupe conseil fiscalis'', scénario produit pour le groupe conseil Fiscalis. +*2001 ''Lévis, ville nouvelle'', scénario de deux émissions de trente minutes pour le Comité de transition de la ville de Lévis et Canal Vox +*2001 ''L’école québécoise, ce qu’il y a de mieux pour votre enfant'', scénario produit pour le Ministère de l’éducation du Québec. +*2000 ''Le jeu en valait-il la chandelle?'' scénario produit pour le Centre québécois d’excellence pour la prévention et le traitement du jeu. (Université Laval) +*1999 ''Le hasard, Lucky, on peut rien y changer'', scénario produit pour le Centre québécois d’excellence pour la prévention et le traitement du jeu. (Université Laval) +*1999 ''Un pacte fiscal pour l’an 2000, des idées, de la solidarité'', scénario produit pour l’Union des Municipalités régionales de comté et des municipalités locales. +*1999 ''Détect-o-max et Une journée avec Détect-o-max'', deux scénarios produits pour Conception Ro-main inc. +*1999 ''Propane GRG, à l’écoute de ses clients'', scénario produit pour la firme Propane GRG inc. +*1998 ''Maître du mètre'', scénario d’un documentaire sur les 25 ans du système métrique au Québec. +*1997 ''Le temps des sucres'', scénario produit pour la firme Shady Maple Farms. +*1996 ''Le Génie de campagne'', scénario produit pour les Forces armées canadiennes. +*1996 ''La Compagnie franche de la Marine de Québec'', scénario produit pour les Forces armées canadiennes. +*1995 ''Bon séjour à l'École navale de Québec'', scénario produit pour les Forces armées canadiennes. +*1994 ''Un leadership, des services'', scénario produit pour la Fédération des commissions scolaires du Québec. +*1993 ''Les clubs de recherche d'emploi'', scénario produit pour le Ministère de l'Emploi et de l'Immigration du Canada. +*1992 ''Fiers de notre avenir'', scénario produit pour l'Assurance-Vie Desjardins. +*1992 ''Responsible Leadership'', scénario produit pour la compagnie papetière Donohue. (Prix Corpo Vision) +*1992 Scénarisation d'un ensemble de huit vidéos destinées aux écoles secondaires et aux collèges du Québec, pour la Fondation de l'entrepreneurship Québécois. (Prix Adate) +*1991 ''Guide à l'intention du nouveau personnel'', rédaction d'une brochure d'accueil pour la Commission scolaire Louis-Fréchette. +*1990 Comment ça va chez vous? scénario produit pour la Confédération des caisses Desjardins. +*1990 ''Le choc est aussi grand pour les petits.'' I et II, scénario de deux vidéos pour la Régie de l'assurance automobile du Québec. +*1990 Participation au concours de nouvelles de Radio-Canada avec ''Alexandre et Cassiopée.'' +*1989 Participation au concours de nouvelles de Radio-Canada avec ''Le mystère de la cathédrale.'' +*1989 ''La Double vie d'Antoine Gagnon, Ministre'', scénario d'un téléfilm pour Radio-Canada. +*1988 ''Passeport pour la liberté'', Les Quinze Éditeurs, Montréal. ISBN 2-89026-368-1. (Prix Robert-Cliche) +*1988 Coédition aux Éditions Jean Picollec, à Paris, du roman ''Passeport pour la liberté'', 303 pages, ISBN 2-86477-088-1. +*1987 Participation au concours de nouvelles de Radio-''Canada avec Le secret''. +*1987 Collaboration au scénario et aux dialogues de ''Vie décolle'', vidéo produite pour la Commission scolaire Abénakis (21 minutes). +*1983 Rédaction et direction de ''C'est qui ma maman à moi?'' pièce montée par la troupe de théâtre de la Polyvalente Benoît-Vachon de Sainte-Marie de Beauce. +*1982 Rédaction et direction de ''Au nom du père, de la fille et du Sain d'esprit'', pièce de théâtre montée par la troupe de théâtre de la Polyvalente Benoît -Vachon de Sainte-Marie de Beauce. +*1977 Corédaction et mise en scène de la pièce ''Coup de Théâtre à Ste-Onction'' jouée par les élèves de la Polyvalente Benoît-Vachon de Sainte-Marie de Beauce + +== Références == +{{references}} + +{{Portail|littérature}} + +[[Catégorie:Écrivain québécois|Beaudet, Raymond]] + 16y29ghcezoqaj0how37rtv3zt8c60c + + + 127443489 + 127424529 + 2016-06-29T06:50:16Z + + WikiCleanerBot + 351003 + + + v1.39 - [[P:CS|Correction syntaxique]] (Numéro ISBN : syntaxe erronée) + wikitext + text/x-wiki + {{voir homonymes|Beaudet}} +[[Fichier:Photo Tom Prague 08.jpg|thumb|Raymond Beaudet]] +'''Raymond Beaudet''' (Québec 1950 - ) est un écrivain et un scénariste [[Québec|québécois]]. Détenteur d’une maîtrise en [[philosophie]] de l’[[Université Laval]] (1975) on le retrouve successivement enseignant, syndicaliste, secrétaire particulier du Ministre des Richesses Naturelles, [[Yves Bérubé]], directeur d’école primaire et directeur d’école secondaire (Polyvalente Benoît-Vachon). Une passion l’anime pendant tout ce temps : l’écriture. Il est l’auteur de quatre romans, d’un essai, d’une trentaine de scénarios, de plusieurs nouvelles et de trois pièces de théâtre. Depuis 2014, il est actif en twittérature. + +== Honneurs == +* Prix coup de cœur du jury au Concours de twittérature du Centre de la Francophonie des Amériques 2016 +* Prix du Patrimoine (2011) Catégorie Interprétation et Diffusion. +* [[Prix Robert-Cliche]] ([[1988]]), ''Passeport pour la liberté''<ref>{{lien web | url=http://www.edvlb.com/prixrobertcliche/laureats.aspx | titre=Lauréats du prix Robert-Cliche | consulté le=24 juin 2011}}</ref> +* Prix Corpo-vision (1992) +* Prix Adate (1993) + +== Bibliographie == +*2016 Éliza Caztel de Sainte-Marie, nouvelle parue dans Les Écrits mariverains 2016, {{ISBN|978-2-9809683-7-2}} +*2016 La CIA sème le trouble, scénario du spectacle de la Corporation des Instrumentistes Associés. +*2015 La photographie numérique, Projet personnel d'orientation, Ministère de l'Éducation du Loisir et du sport. +*2015 Impressions de voyage : le Chili, nouvelle parue dans Les Écrits mariverains 2015, {{ISBN|978-2-9809683-6-5}} +*2015 La CIA, version 5.0, scénario du spectacle de la Corporation des Instrumentistes Associés. +*2014 Le désastreux destin d'Arlette Mallette, nouvelle parue dans Les Écrits mariverains 2014, {{ISBN|978-2-9809683-5-8}} +* 2014 La CIA, L'espace d'une vie, scénario du spectacle de la Corporation des Instrumentistes Associés. +* 2014 Carapaces, Roman publié aux Éditions Textes et Contextes, 279 pages. {{ISBN|978-2-923706-63-4}} +* 2013 La Politique, Projet personnel d'orientation, Ministère de l'Éducation du Loisir et du sport. +* 2013 La CIA poursuit son enquête, scénario du spectacle de la Corporation des Instrumentistes Associés. +* 2013 Napoléon, nouvelle parue dans Les Écrits mariverains 2013. {{ISBN|978-2-9809683-4-1}} +* 2012 Ménage de cave, nouvelle parue dans Les Écrits mariverains, 2012. {{ISBN|978-2-980-9683-3-4}} +* 2012 En quête de mission, scénario du spectacle de la Corporation des Instrumentistes Associés. +* 2012 Finaliste dans deux concours de Zone d’écriture de Radio-Canada en twittérature. +* 2011 La CIA autour du monde, scénario du spectacle de la Corporation des Instrumentistes Associés. +* 2011 En deuxième vitesse, nouvelle parue dans Les Écrits mariverains 2011. {{ISBN|978-2-980-9683-1-0|}} +* 2010 Biographie de Jeannine Rousseau et Rolland Massicotte, scénario. +*2010 Le Projet Adam et Ève, nouvelle parue dans Écrits mariverains 2010, {{ISBN|978-2-980-9683-1-0}} +*2009 Alexandre et Cassiopée, nouvelle parue dans Écrits mariverains 2009. +*2008 ''Dans un mois, dans un an'', Roman publié dans la collection Les mots inventifs, Les Éditions du Mécène, 576 pages. {{ISBN|978-2-923150-61-1}} +*2007 ''L'écriture'', Projet personnel d'orientation, Ministère de l'Éducation du Loisir et du sport. +*2005 ''29, rue des Remparts'', Roman publié dans la collection Les mots inventifs, Les éditions du Mécène, 192 pages. {{ISBN|2-923150-28-7}} +*2003 ''Vie 101'', Essai publié dans la collection Les mots utiles, Les Éditions du Mécène. 126 pages. {{ISBN|2-923150-03-1}} +*2002 ''Le groupe conseil fiscalis'', scénario produit pour le groupe conseil Fiscalis. +*2001 ''Lévis, ville nouvelle'', scénario de deux émissions de trente minutes pour le Comité de transition de la ville de Lévis et Canal Vox +*2001 ''L’école québécoise, ce qu’il y a de mieux pour votre enfant'', scénario produit pour le Ministère de l’éducation du Québec. +*2000 ''Le jeu en valait-il la chandelle?'' scénario produit pour le Centre québécois d’excellence pour la prévention et le traitement du jeu. (Université Laval) +*1999 ''Le hasard, Lucky, on peut rien y changer'', scénario produit pour le Centre québécois d’excellence pour la prévention et le traitement du jeu. (Université Laval) +*1999 ''Un pacte fiscal pour l’an 2000, des idées, de la solidarité'', scénario produit pour l’Union des Municipalités régionales de comté et des municipalités locales. +*1999 ''Détect-o-max et Une journée avec Détect-o-max'', deux scénarios produits pour Conception Ro-main inc. +*1999 ''Propane GRG, à l’écoute de ses clients'', scénario produit pour la firme Propane GRG inc. +*1998 ''Maître du mètre'', scénario d’un documentaire sur les 25 ans du système métrique au Québec. +*1997 ''Le temps des sucres'', scénario produit pour la firme Shady Maple Farms. +*1996 ''Le Génie de campagne'', scénario produit pour les Forces armées canadiennes. +*1996 ''La Compagnie franche de la Marine de Québec'', scénario produit pour les Forces armées canadiennes. +*1995 ''Bon séjour à l'École navale de Québec'', scénario produit pour les Forces armées canadiennes. +*1994 ''Un leadership, des services'', scénario produit pour la Fédération des commissions scolaires du Québec. +*1993 ''Les clubs de recherche d'emploi'', scénario produit pour le Ministère de l'Emploi et de l'Immigration du Canada. +*1992 ''Fiers de notre avenir'', scénario produit pour l'Assurance-Vie Desjardins. +*1992 ''Responsible Leadership'', scénario produit pour la compagnie papetière Donohue. (Prix Corpo Vision) +*1992 Scénarisation d'un ensemble de huit vidéos destinées aux écoles secondaires et aux collèges du Québec, pour la Fondation de l'entrepreneurship Québécois. (Prix Adate) +*1991 ''Guide à l'intention du nouveau personnel'', rédaction d'une brochure d'accueil pour la Commission scolaire Louis-Fréchette. +*1990 Comment ça va chez vous? scénario produit pour la Confédération des caisses Desjardins. +*1990 ''Le choc est aussi grand pour les petits.'' I et II, scénario de deux vidéos pour la Régie de l'assurance automobile du Québec. +*1990 Participation au concours de nouvelles de Radio-Canada avec ''Alexandre et Cassiopée.'' +*1989 Participation au concours de nouvelles de Radio-Canada avec ''Le mystère de la cathédrale.'' +*1989 ''La Double vie d'Antoine Gagnon, Ministre'', scénario d'un téléfilm pour Radio-Canada. +*1988 ''Passeport pour la liberté'', Les Quinze Éditeurs, Montréal. {{ISBN|2-89026-368-1}}. (Prix Robert-Cliche) +*1988 Coédition aux Éditions Jean Picollec, à Paris, du roman ''Passeport pour la liberté'', 303 pages, {{ISBN|2-86477-088-1}}. +*1987 Participation au concours de nouvelles de Radio-''Canada avec Le secret''. +*1987 Collaboration au scénario et aux dialogues de ''Vie décolle'', vidéo produite pour la Commission scolaire Abénakis (21 minutes). +*1983 Rédaction et direction de ''C'est qui ma maman à moi?'' pièce montée par la troupe de théâtre de la Polyvalente Benoît-Vachon de Sainte-Marie de Beauce. +*1982 Rédaction et direction de ''Au nom du père, de la fille et du Sain d'esprit'', pièce de théâtre montée par la troupe de théâtre de la Polyvalente Benoît -Vachon de Sainte-Marie de Beauce. +*1977 Corédaction et mise en scène de la pièce ''Coup de Théâtre à Ste-Onction'' jouée par les élèves de la Polyvalente Benoît-Vachon de Sainte-Marie de Beauce + +== Références == +{{references}} + +{{Portail|littérature}} + +[[Catégorie:Écrivain québécois|Beaudet, Raymond]] + 77zictr5lzs4bgivlz4tt2csqrnulvm + + + 141501976 + 127443489 + 2017-10-14T03:54:01Z + + Gounter Rudolph + 2074968 + + + wikitext + text/x-wiki + {{voir homonymes|Beaudet}} +[[Fichier:Photo Tom Prague 08.jpg|thumb|Raymond Beaudet]] +'''Raymond Beaudet''' (Québec 1950 - ) est un écrivain et un scénariste [[Québec|québécois]]. Détenteur d’une maîtrise en [[philosophie]] de l’[[Université Laval]] (1975) on le retrouve successivement enseignant, syndicaliste, secrétaire particulier du Ministre des Richesses Naturelles, [[Yves Bérubé]], directeur d’école primaire et directeur d’école secondaire (Polyvalente Benoît-Vachon). Une passion l’anime pendant tout ce temps : l’écriture. Il est l’auteur de quatre romans, d’un essai, d’une trentaine de scénarios, de plusieurs nouvelles et de trois pièces de théâtre. Depuis 2014, il est actif en [[twittérature]]. + +== Honneurs == +* Prix coup de cœur du jury au Concours de twittérature du Centre de la Francophonie des Amériques 2016 +* Prix du Patrimoine (2011) Catégorie Interprétation et Diffusion. +* [[Prix Robert-Cliche]] ([[1988]]), ''Passeport pour la liberté''<ref>{{lien web | url=http://www.edvlb.com/prixrobertcliche/laureats.aspx | titre=Lauréats du prix Robert-Cliche | consulté le=24 juin 2011}}</ref> +* Prix Corpo-vision (1992) +* Prix Adate (1993) + +== Bibliographie == +*2016 Éliza Caztel de Sainte-Marie, nouvelle parue dans Les Écrits mariverains 2016, {{ISBN|978-2-9809683-7-2}} +*2016 La CIA sème le trouble, scénario du spectacle de la Corporation des Instrumentistes Associés. +*2015 La photographie numérique, Projet personnel d'orientation, Ministère de l'Éducation du Loisir et du sport. +*2015 Impressions de voyage : le Chili, nouvelle parue dans Les Écrits mariverains 2015, {{ISBN|978-2-9809683-6-5}} +*2015 La CIA, version 5.0, scénario du spectacle de la Corporation des Instrumentistes Associés. +*2014 Le désastreux destin d'Arlette Mallette, nouvelle parue dans Les Écrits mariverains 2014, {{ISBN|978-2-9809683-5-8}} +* 2014 La CIA, L'espace d'une vie, scénario du spectacle de la Corporation des Instrumentistes Associés. +* 2014 Carapaces, Roman publié aux Éditions Textes et Contextes, 279 pages. {{ISBN|978-2-923706-63-4}} +* 2013 La Politique, Projet personnel d'orientation, Ministère de l'Éducation du Loisir et du sport. +* 2013 La CIA poursuit son enquête, scénario du spectacle de la Corporation des Instrumentistes Associés. +* 2013 Napoléon, nouvelle parue dans Les Écrits mariverains 2013. {{ISBN|978-2-9809683-4-1}} +* 2012 Ménage de cave, nouvelle parue dans Les Écrits mariverains, 2012. {{ISBN|978-2-980-9683-3-4}} +* 2012 En quête de mission, scénario du spectacle de la Corporation des Instrumentistes Associés. +* 2012 Finaliste dans deux concours de Zone d’écriture de Radio-Canada en twittérature. +* 2011 La CIA autour du monde, scénario du spectacle de la Corporation des Instrumentistes Associés. +* 2011 En deuxième vitesse, nouvelle parue dans Les Écrits mariverains 2011. {{ISBN|978-2-980-9683-1-0|}} +* 2010 Biographie de Jeannine Rousseau et Rolland Massicotte, scénario. +*2010 Le Projet Adam et Ève, nouvelle parue dans Écrits mariverains 2010, {{ISBN|978-2-980-9683-1-0}} +*2009 Alexandre et Cassiopée, nouvelle parue dans Écrits mariverains 2009. +*2008 ''Dans un mois, dans un an'', Roman publié dans la collection Les mots inventifs, Les Éditions du Mécène, 576 pages. {{ISBN|978-2-923150-61-1}} +*2007 ''L'écriture'', Projet personnel d'orientation, Ministère de l'Éducation du Loisir et du sport. +*2005 ''29, rue des Remparts'', Roman publié dans la collection Les mots inventifs, Les éditions du Mécène, 192 pages. {{ISBN|2-923150-28-7}} +*2003 ''Vie 101'', Essai publié dans la collection Les mots utiles, Les Éditions du Mécène. 126 pages. {{ISBN|2-923150-03-1}} +*2002 ''Le groupe conseil fiscalis'', scénario produit pour le groupe conseil Fiscalis. +*2001 ''Lévis, ville nouvelle'', scénario de deux émissions de trente minutes pour le Comité de transition de la ville de Lévis et Canal Vox +*2001 ''L’école québécoise, ce qu’il y a de mieux pour votre enfant'', scénario produit pour le Ministère de l’éducation du Québec. +*2000 ''Le jeu en valait-il la chandelle?'' scénario produit pour le Centre québécois d’excellence pour la prévention et le traitement du jeu. (Université Laval) +*1999 ''Le hasard, Lucky, on peut rien y changer'', scénario produit pour le Centre québécois d’excellence pour la prévention et le traitement du jeu. (Université Laval) +*1999 ''Un pacte fiscal pour l’an 2000, des idées, de la solidarité'', scénario produit pour l’Union des Municipalités régionales de comté et des municipalités locales. +*1999 ''Détect-o-max et Une journée avec Détect-o-max'', deux scénarios produits pour Conception Ro-main inc. +*1999 ''Propane GRG, à l’écoute de ses clients'', scénario produit pour la firme Propane GRG inc. +*1998 ''Maître du mètre'', scénario d’un documentaire sur les 25 ans du système métrique au Québec. +*1997 ''Le temps des sucres'', scénario produit pour la firme Shady Maple Farms. +*1996 ''Le Génie de campagne'', scénario produit pour les Forces armées canadiennes. +*1996 ''La Compagnie franche de la Marine de Québec'', scénario produit pour les Forces armées canadiennes. +*1995 ''Bon séjour à l'École navale de Québec'', scénario produit pour les Forces armées canadiennes. +*1994 ''Un leadership, des services'', scénario produit pour la Fédération des commissions scolaires du Québec. +*1993 ''Les clubs de recherche d'emploi'', scénario produit pour le Ministère de l'Emploi et de l'Immigration du Canada. +*1992 ''Fiers de notre avenir'', scénario produit pour l'Assurance-Vie Desjardins. +*1992 ''Responsible Leadership'', scénario produit pour la compagnie papetière Donohue. (Prix Corpo Vision) +*1992 Scénarisation d'un ensemble de huit vidéos destinées aux écoles secondaires et aux collèges du Québec, pour la Fondation de l'entrepreneurship Québécois. (Prix Adate) +*1991 ''Guide à l'intention du nouveau personnel'', rédaction d'une brochure d'accueil pour la Commission scolaire Louis-Fréchette. +*1990 Comment ça va chez vous? scénario produit pour la Confédération des caisses Desjardins. +*1990 ''Le choc est aussi grand pour les petits.'' I et II, scénario de deux vidéos pour la Régie de l'assurance automobile du Québec. +*1990 Participation au concours de nouvelles de Radio-Canada avec ''Alexandre et Cassiopée.'' +*1989 Participation au concours de nouvelles de Radio-Canada avec ''Le mystère de la cathédrale.'' +*1989 ''La Double vie d'Antoine Gagnon, Ministre'', scénario d'un téléfilm pour Radio-Canada. +*1988 ''Passeport pour la liberté'', Les Quinze Éditeurs, Montréal. {{ISBN|2-89026-368-1}}. (Prix Robert-Cliche) +*1988 Coédition aux Éditions Jean Picollec, à Paris, du roman ''Passeport pour la liberté'', 303 pages, {{ISBN|2-86477-088-1}}. +*1987 Participation au concours de nouvelles de Radio-''Canada avec Le secret''. +*1987 Collaboration au scénario et aux dialogues de ''Vie décolle'', vidéo produite pour la Commission scolaire Abénakis (21 minutes). +*1983 Rédaction et direction de ''C'est qui ma maman à moi?'' pièce montée par la troupe de théâtre de la Polyvalente Benoît-Vachon de Sainte-Marie de Beauce. +*1982 Rédaction et direction de ''Au nom du père, de la fille et du Sain d'esprit'', pièce de théâtre montée par la troupe de théâtre de la Polyvalente Benoît -Vachon de Sainte-Marie de Beauce. +*1977 Corédaction et mise en scène de la pièce ''Coup de Théâtre à Ste-Onction'' jouée par les élèves de la Polyvalente Benoît-Vachon de Sainte-Marie de Beauce + +== Références == +{{references}} + +{{Portail|littérature}} + +[[Catégorie:Écrivain québécois|Beaudet, Raymond]] + 4j174ks1ta0bfwfjq9m3s5e0jujk9be + + + 143550695 + 141501976 + 2017-12-15T15:24:47Z + + 72.11.179.203 + + /* Bibliographie */ mise à jour des publications + wikitext + text/x-wiki + {{voir homonymes|Beaudet}} +[[Fichier:Photo Tom Prague 08.jpg|thumb|Raymond Beaudet]] +'''Raymond Beaudet''' (Québec 1950 - ) est un écrivain et un scénariste [[Québec|québécois]]. Détenteur d’une maîtrise en [[philosophie]] de l’[[Université Laval]] (1975) on le retrouve successivement enseignant, syndicaliste, secrétaire particulier du Ministre des Richesses Naturelles, [[Yves Bérubé]], directeur d’école primaire et directeur d’école secondaire (Polyvalente Benoît-Vachon). Une passion l’anime pendant tout ce temps : l’écriture. Il est l’auteur de quatre romans, d’un essai, d’une trentaine de scénarios, de plusieurs nouvelles et de trois pièces de théâtre. Depuis 2014, il est actif en [[twittérature]]. + +== Honneurs == +* Prix coup de cœur du jury au Concours de twittérature du Centre de la Francophonie des Amériques 2016 +* Prix du Patrimoine (2011) Catégorie Interprétation et Diffusion. +* [[Prix Robert-Cliche]] ([[1988]]), ''Passeport pour la liberté''<ref>{{lien web | url=http://www.edvlb.com/prixrobertcliche/laureats.aspx | titre=Lauréats du prix Robert-Cliche | consulté le=24 juin 2011}}</ref> +* Prix Corpo-vision (1992) +* Prix Adate (1993) + +== Bibliographie == +*2017 L'idée perdue, nouvelle parue dans Les Écrits mariverains 2017, (<small>([[International Standard Book Number|ISBN]] [[Spécial:Ouvrages de référence/978-2-9809683-7-2|978-2-9809683-8-9]])</small> +*2017 Coups de cœur, scénario du spectacle de la Corporation des Instrumentistes Associés. +*2016 Éliza Caztel de Sainte-Marie, nouvelle parue dans Les Écrits mariverains 2016, {{ISBN|978-2-9809683-7-2}} +*2016 La CIA sème le trouble, scénario du spectacle de la Corporation des Instrumentistes Associés. +*2015 La photographie numérique, Projet personnel d'orientation, Ministère de l'Éducation du Loisir et du sport. +*2015 Impressions de voyage : le Chili, nouvelle parue dans Les Écrits mariverains 2015, {{ISBN|978-2-9809683-6-5}} +*2015 La CIA, version 5.0, scénario du spectacle de la Corporation des Instrumentistes Associés. +*2014 Le désastreux destin d'Arlette Mallette, nouvelle parue dans Les Écrits mariverains 2014, {{ISBN|978-2-9809683-5-8}} +* 2014 La CIA, L'espace d'une vie, scénario du spectacle de la Corporation des Instrumentistes Associés. +* 2014 Carapaces, Roman publié aux Éditions Textes et Contextes, 279 pages. {{ISBN|978-2-923706-63-4}} +* 2013 La Politique, Projet personnel d'orientation, Ministère de l'Éducation du Loisir et du sport. +* 2013 La CIA poursuit son enquête, scénario du spectacle de la Corporation des Instrumentistes Associés. +* 2013 Napoléon, nouvelle parue dans Les Écrits mariverains 2013. {{ISBN|978-2-9809683-4-1}} +* 2012 Ménage de cave, nouvelle parue dans Les Écrits mariverains, 2012. {{ISBN|978-2-980-9683-3-4}} +* 2012 En quête de mission, scénario du spectacle de la Corporation des Instrumentistes Associés. +* 2012 Finaliste dans deux concours de Zone d’écriture de Radio-Canada en twittérature. +* 2011 La CIA autour du monde, scénario du spectacle de la Corporation des Instrumentistes Associés. +* 2011 En deuxième vitesse, nouvelle parue dans Les Écrits mariverains 2011. {{ISBN|978-2-980-9683-1-0|}} +* 2010 Biographie de Jeannine Rousseau et Rolland Massicotte, scénario. +*2010 Le Projet Adam et Ève, nouvelle parue dans Écrits mariverains 2010, {{ISBN|978-2-980-9683-1-0}} +*2009 Alexandre et Cassiopée, nouvelle parue dans Écrits mariverains 2009. +*2008 ''Dans un mois, dans un an'', Roman publié dans la collection Les mots inventifs, Les Éditions du Mécène, 576 pages. {{ISBN|978-2-923150-61-1}} +*2007 ''L'écriture'', Projet personnel d'orientation, Ministère de l'Éducation du Loisir et du sport. +*2005 ''29, rue des Remparts'', Roman publié dans la collection Les mots inventifs, Les éditions du Mécène, 192 pages. {{ISBN|2-923150-28-7}} +*2003 ''Vie 101'', Essai publié dans la collection Les mots utiles, Les Éditions du Mécène. 126 pages. {{ISBN|2-923150-03-1}} +*2002 ''Le groupe conseil fiscalis'', scénario produit pour le groupe conseil Fiscalis. +*2001 ''Lévis, ville nouvelle'', scénario de deux émissions de trente minutes pour le Comité de transition de la ville de Lévis et Canal Vox +*2001 ''L’école québécoise, ce qu’il y a de mieux pour votre enfant'', scénario produit pour le Ministère de l’éducation du Québec. +*2000 ''Le jeu en valait-il la chandelle?'' scénario produit pour le Centre québécois d’excellence pour la prévention et le traitement du jeu. (Université Laval) +*1999 ''Le hasard, Lucky, on peut rien y changer'', scénario produit pour le Centre québécois d’excellence pour la prévention et le traitement du jeu. (Université Laval) +*1999 ''Un pacte fiscal pour l’an 2000, des idées, de la solidarité'', scénario produit pour l’Union des Municipalités régionales de comté et des municipalités locales. +*1999 ''Détect-o-max et Une journée avec Détect-o-max'', deux scénarios produits pour Conception Ro-main inc. +*1999 ''Propane GRG, à l’écoute de ses clients'', scénario produit pour la firme Propane GRG inc. +*1998 ''Maître du mètre'', scénario d’un documentaire sur les 25 ans du système métrique au Québec. +*1997 ''Le temps des sucres'', scénario produit pour la firme Shady Maple Farms. +*1996 ''Le Génie de campagne'', scénario produit pour les Forces armées canadiennes. +*1996 ''La Compagnie franche de la Marine de Québec'', scénario produit pour les Forces armées canadiennes. +*1995 ''Bon séjour à l'École navale de Québec'', scénario produit pour les Forces armées canadiennes. +*1994 ''Un leadership, des services'', scénario produit pour la Fédération des commissions scolaires du Québec. +*1993 ''Les clubs de recherche d'emploi'', scénario produit pour le Ministère de l'Emploi et de l'Immigration du Canada. +*1992 ''Fiers de notre avenir'', scénario produit pour l'Assurance-Vie Desjardins. +*1992 ''Responsible Leadership'', scénario produit pour la compagnie papetière Donohue. (Prix Corpo Vision) +*1992 Scénarisation d'un ensemble de huit vidéos destinées aux écoles secondaires et aux collèges du Québec, pour la Fondation de l'entrepreneurship Québécois. (Prix Adate) +*1991 ''Guide à l'intention du nouveau personnel'', rédaction d'une brochure d'accueil pour la Commission scolaire Louis-Fréchette. +*1990 Comment ça va chez vous? scénario produit pour la Confédération des caisses Desjardins. +*1990 ''Le choc est aussi grand pour les petits.'' I et II, scénario de deux vidéos pour la Régie de l'assurance automobile du Québec. +*1990 Participation au concours de nouvelles de Radio-Canada avec ''Alexandre et Cassiopée.'' +*1989 Participation au concours de nouvelles de Radio-Canada avec ''Le mystère de la cathédrale.'' +*1989 ''La Double vie d'Antoine Gagnon, Ministre'', scénario d'un téléfilm pour Radio-Canada. +*1988 ''Passeport pour la liberté'', Les Quinze Éditeurs, Montréal. {{ISBN|2-89026-368-1}}. (Prix Robert-Cliche) +*1988 Coédition aux Éditions Jean Picollec, à Paris, du roman ''Passeport pour la liberté'', 303 pages, {{ISBN|2-86477-088-1}}. +*1987 Participation au concours de nouvelles de Radio-''Canada avec Le secret''. +*1987 Collaboration au scénario et aux dialogues de ''Vie décolle'', vidéo produite pour la Commission scolaire Abénakis (21 minutes). +*1983 Rédaction et direction de ''C'est qui ma maman à moi?'' pièce montée par la troupe de théâtre de la Polyvalente Benoît-Vachon de Sainte-Marie de Beauce. +*1982 Rédaction et direction de ''Au nom du père, de la fille et du Sain d'esprit'', pièce de théâtre montée par la troupe de théâtre de la Polyvalente Benoît -Vachon de Sainte-Marie de Beauce. +*1977 Corédaction et mise en scène de la pièce ''Coup de Théâtre à Ste-Onction'' jouée par les élèves de la Polyvalente Benoît-Vachon de Sainte-Marie de Beauce + +== Références == +{{references}} + +{{Portail|littérature}} + +[[Catégorie:Écrivain québécois|Beaudet, Raymond]] + 3mfev99mvf1o9g5r7cf7lkq89xn6s1v + + + 143782758 + 143550695 + 2017-12-23T15:55:06Z + + WikiCleanerBot + 351003 + + + v1.43 - [[P:CS|Correction syntaxique]] (Numéro ISBN : syntaxe erronée) + wikitext + text/x-wiki + {{voir homonymes|Beaudet}} +[[Fichier:Photo Tom Prague 08.jpg|thumb|Raymond Beaudet]] +'''Raymond Beaudet''' (Québec 1950 - ) est un écrivain et un scénariste [[Québec|québécois]]. Détenteur d’une maîtrise en [[philosophie]] de l’[[Université Laval]] (1975) on le retrouve successivement enseignant, syndicaliste, secrétaire particulier du Ministre des Richesses Naturelles, [[Yves Bérubé]], directeur d’école primaire et directeur d’école secondaire (Polyvalente Benoît-Vachon). Une passion l’anime pendant tout ce temps : l’écriture. Il est l’auteur de quatre romans, d’un essai, d’une trentaine de scénarios, de plusieurs nouvelles et de trois pièces de théâtre. Depuis 2014, il est actif en [[twittérature]]. + +== Honneurs == +* Prix coup de cœur du jury au Concours de twittérature du Centre de la Francophonie des Amériques 2016 +* Prix du Patrimoine (2011) Catégorie Interprétation et Diffusion. +* [[Prix Robert-Cliche]] ([[1988]]), ''Passeport pour la liberté''<ref>{{lien web | url=http://www.edvlb.com/prixrobertcliche/laureats.aspx | titre=Lauréats du prix Robert-Cliche | consulté le=24 juin 2011}}</ref> +* Prix Corpo-vision (1992) +* Prix Adate (1993) + +== Bibliographie == +*2017 L'idée perdue, nouvelle parue dans Les Écrits mariverains 2017, {{ISBN|978-2-9809683-8-9}} +*2017 Coups de cœur, scénario du spectacle de la Corporation des Instrumentistes Associés. +*2016 Éliza Caztel de Sainte-Marie, nouvelle parue dans Les Écrits mariverains 2016, {{ISBN|978-2-9809683-7-2}} +*2016 La CIA sème le trouble, scénario du spectacle de la Corporation des Instrumentistes Associés. +*2015 La photographie numérique, Projet personnel d'orientation, Ministère de l'Éducation du Loisir et du sport. +*2015 Impressions de voyage : le Chili, nouvelle parue dans Les Écrits mariverains 2015, {{ISBN|978-2-9809683-6-5}} +*2015 La CIA, version 5.0, scénario du spectacle de la Corporation des Instrumentistes Associés. +*2014 Le désastreux destin d'Arlette Mallette, nouvelle parue dans Les Écrits mariverains 2014, {{ISBN|978-2-9809683-5-8}} +* 2014 La CIA, L'espace d'une vie, scénario du spectacle de la Corporation des Instrumentistes Associés. +* 2014 Carapaces, Roman publié aux Éditions Textes et Contextes, 279 pages. {{ISBN|978-2-923706-63-4}} +* 2013 La Politique, Projet personnel d'orientation, Ministère de l'Éducation du Loisir et du sport. +* 2013 La CIA poursuit son enquête, scénario du spectacle de la Corporation des Instrumentistes Associés. +* 2013 Napoléon, nouvelle parue dans Les Écrits mariverains 2013. {{ISBN|978-2-9809683-4-1}} +* 2012 Ménage de cave, nouvelle parue dans Les Écrits mariverains, 2012. {{ISBN|978-2-980-9683-3-4}} +* 2012 En quête de mission, scénario du spectacle de la Corporation des Instrumentistes Associés. +* 2012 Finaliste dans deux concours de Zone d’écriture de Radio-Canada en twittérature. +* 2011 La CIA autour du monde, scénario du spectacle de la Corporation des Instrumentistes Associés. +* 2011 En deuxième vitesse, nouvelle parue dans Les Écrits mariverains 2011. {{ISBN|978-2-980-9683-1-0|}} +* 2010 Biographie de Jeannine Rousseau et Rolland Massicotte, scénario. +*2010 Le Projet Adam et Ève, nouvelle parue dans Écrits mariverains 2010, {{ISBN|978-2-980-9683-1-0}} +*2009 Alexandre et Cassiopée, nouvelle parue dans Écrits mariverains 2009. +*2008 ''Dans un mois, dans un an'', Roman publié dans la collection Les mots inventifs, Les Éditions du Mécène, 576 pages. {{ISBN|978-2-923150-61-1}} +*2007 ''L'écriture'', Projet personnel d'orientation, Ministère de l'Éducation du Loisir et du sport. +*2005 ''29, rue des Remparts'', Roman publié dans la collection Les mots inventifs, Les éditions du Mécène, 192 pages. {{ISBN|2-923150-28-7}} +*2003 ''Vie 101'', Essai publié dans la collection Les mots utiles, Les Éditions du Mécène. 126 pages. {{ISBN|2-923150-03-1}} +*2002 ''Le groupe conseil fiscalis'', scénario produit pour le groupe conseil Fiscalis. +*2001 ''Lévis, ville nouvelle'', scénario de deux émissions de trente minutes pour le Comité de transition de la ville de Lévis et Canal Vox +*2001 ''L’école québécoise, ce qu’il y a de mieux pour votre enfant'', scénario produit pour le Ministère de l’éducation du Québec. +*2000 ''Le jeu en valait-il la chandelle?'' scénario produit pour le Centre québécois d’excellence pour la prévention et le traitement du jeu. (Université Laval) +*1999 ''Le hasard, Lucky, on peut rien y changer'', scénario produit pour le Centre québécois d’excellence pour la prévention et le traitement du jeu. (Université Laval) +*1999 ''Un pacte fiscal pour l’an 2000, des idées, de la solidarité'', scénario produit pour l’Union des Municipalités régionales de comté et des municipalités locales. +*1999 ''Détect-o-max et Une journée avec Détect-o-max'', deux scénarios produits pour Conception Ro-main inc. +*1999 ''Propane GRG, à l’écoute de ses clients'', scénario produit pour la firme Propane GRG inc. +*1998 ''Maître du mètre'', scénario d’un documentaire sur les 25 ans du système métrique au Québec. +*1997 ''Le temps des sucres'', scénario produit pour la firme Shady Maple Farms. +*1996 ''Le Génie de campagne'', scénario produit pour les Forces armées canadiennes. +*1996 ''La Compagnie franche de la Marine de Québec'', scénario produit pour les Forces armées canadiennes. +*1995 ''Bon séjour à l'École navale de Québec'', scénario produit pour les Forces armées canadiennes. +*1994 ''Un leadership, des services'', scénario produit pour la Fédération des commissions scolaires du Québec. +*1993 ''Les clubs de recherche d'emploi'', scénario produit pour le Ministère de l'Emploi et de l'Immigration du Canada. +*1992 ''Fiers de notre avenir'', scénario produit pour l'Assurance-Vie Desjardins. +*1992 ''Responsible Leadership'', scénario produit pour la compagnie papetière Donohue. (Prix Corpo Vision) +*1992 Scénarisation d'un ensemble de huit vidéos destinées aux écoles secondaires et aux collèges du Québec, pour la Fondation de l'entrepreneurship Québécois. (Prix Adate) +*1991 ''Guide à l'intention du nouveau personnel'', rédaction d'une brochure d'accueil pour la Commission scolaire Louis-Fréchette. +*1990 Comment ça va chez vous? scénario produit pour la Confédération des caisses Desjardins. +*1990 ''Le choc est aussi grand pour les petits.'' I et II, scénario de deux vidéos pour la Régie de l'assurance automobile du Québec. +*1990 Participation au concours de nouvelles de Radio-Canada avec ''Alexandre et Cassiopée.'' +*1989 Participation au concours de nouvelles de Radio-Canada avec ''Le mystère de la cathédrale.'' +*1989 ''La Double vie d'Antoine Gagnon, Ministre'', scénario d'un téléfilm pour Radio-Canada. +*1988 ''Passeport pour la liberté'', Les Quinze Éditeurs, Montréal. {{ISBN|2-89026-368-1}}. (Prix Robert-Cliche) +*1988 Coédition aux Éditions Jean Picollec, à Paris, du roman ''Passeport pour la liberté'', 303 pages, {{ISBN|2-86477-088-1}}. +*1987 Participation au concours de nouvelles de Radio-''Canada avec Le secret''. +*1987 Collaboration au scénario et aux dialogues de ''Vie décolle'', vidéo produite pour la Commission scolaire Abénakis (21 minutes). +*1983 Rédaction et direction de ''C'est qui ma maman à moi?'' pièce montée par la troupe de théâtre de la Polyvalente Benoît-Vachon de Sainte-Marie de Beauce. +*1982 Rédaction et direction de ''Au nom du père, de la fille et du Sain d'esprit'', pièce de théâtre montée par la troupe de théâtre de la Polyvalente Benoît -Vachon de Sainte-Marie de Beauce. +*1977 Corédaction et mise en scène de la pièce ''Coup de Théâtre à Ste-Onction'' jouée par les élèves de la Polyvalente Benoît-Vachon de Sainte-Marie de Beauce + +== Références == +{{references}} + +{{Portail|littérature}} + +[[Catégorie:Écrivain québécois|Beaudet, Raymond]] + 81hwfkky17dg88r9zodld2j4ri93rk3 + + + 153109835 + 143782758 + 2018-10-16T16:26:41Z + + Raymond Beaudet + 479201 + + Mise à jour des publications. + wikitext + text/x-wiki + {{voir homonymes|Beaudet}} +[[Fichier:Photo Tom Prague 08.jpg|thumb|Raymond Beaudet]] +'''Raymond Beaudet''' (Québec 1950 - ) est un écrivain et un scénariste [[Québec|québécois]]. Détenteur d’une maîtrise en [[philosophie]] de l’[[Université Laval]] (1975) on le retrouve successivement enseignant, syndicaliste, secrétaire particulier du Ministre des Richesses Naturelles, [[Yves Bérubé]], directeur d’école primaire et directeur d’école secondaire (Polyvalente Benoît-Vachon). Une passion l’anime pendant tout ce temps : l’écriture. Il est l’auteur de quatre romans, d’un essai, d’une trentaine de scénarios, de plusieurs nouvelles et de trois pièces de théâtre. Depuis 2014, il est actif en [[twittérature]]. + +== Honneurs == +* Prix coup de cœur du jury au Concours de twittérature du Centre de la Francophonie des Amériques 2016 +* Prix du Patrimoine (2011) Catégorie Interprétation et Diffusion. +* [[Prix Robert-Cliche]] ([[1988]]), ''Passeport pour la liberté''<ref>{{lien web | url=http://www.edvlb.com/prixrobertcliche/laureats.aspx | titre=Lauréats du prix Robert-Cliche | consulté le=24 juin 2011}}</ref> +* Prix Corpo-vision (1992) +* Prix Adate (1993) + +== Bibliographie == +*2018 Marie-Claire et moi, nouvelle parue dans Les Écrits mariverains 2018, (ISBN 978-2-9809683-9-6) +*2018 La dernière scène, scénario du spectacle de la Corporation des Instrumentistes Associés. +*2018 La boucherie, Projet personnel d'orientation, Ministère de l'Éducation et de l'Enseignement supérieur. +*2017 L'idée perdue, nouvelle parue dans Les Écrits mariverains 2017, {{ISBN|978-2-9809683-8-9}} +*2017 Coups de cœur, scénario du spectacle de la Corporation des Instrumentistes Associés. +*2016 Éliza Caztel de Sainte-Marie, nouvelle parue dans Les Écrits mariverains 2016, {{ISBN|978-2-9809683-7-2}} +*2016 La CIA sème le trouble, scénario du spectacle de la Corporation des Instrumentistes Associés. +*2015 La photographie numérique, Projet personnel d'orientation, Ministère de l'Éducation du Loisir et du sport. +*2015 Impressions de voyage : le Chili, nouvelle parue dans Les Écrits mariverains 2015, {{ISBN|978-2-9809683-6-5}} +*2015 La CIA, version 5.0, scénario du spectacle de la Corporation des Instrumentistes Associés. +*2014 Le désastreux destin d'Arlette Mallette, nouvelle parue dans Les Écrits mariverains 2014, {{ISBN|978-2-9809683-5-8}} +* 2014 La CIA, L'espace d'une vie, scénario du spectacle de la Corporation des Instrumentistes Associés. +* 2014 Carapaces, Roman publié aux Éditions Textes et Contextes, 279 pages. {{ISBN|978-2-923706-63-4}} +* 2013 La Politique, Projet personnel d'orientation, Ministère de l'Éducation du Loisir et du sport. +* 2013 La CIA poursuit son enquête, scénario du spectacle de la Corporation des Instrumentistes Associés. +* 2013 Napoléon, nouvelle parue dans Les Écrits mariverains 2013. {{ISBN|978-2-9809683-4-1}} +* 2012 Ménage de cave, nouvelle parue dans Les Écrits mariverains, 2012. {{ISBN|978-2-980-9683-3-4}} +* 2012 En quête de mission, scénario du spectacle de la Corporation des Instrumentistes Associés. +* 2012 Finaliste dans deux concours de Zone d’écriture de Radio-Canada en twittérature. +* 2011 La CIA autour du monde, scénario du spectacle de la Corporation des Instrumentistes Associés. +* 2011 En deuxième vitesse, nouvelle parue dans Les Écrits mariverains 2011. {{ISBN|978-2-980-9683-1-0|}} +* 2010 Biographie de Jeannine Rousseau et Rolland Massicotte, scénario. +*2010 Le Projet Adam et Ève, nouvelle parue dans Écrits mariverains 2010, {{ISBN|978-2-980-9683-1-0}} +*2009 Alexandre et Cassiopée, nouvelle parue dans Écrits mariverains 2009. +*2008 ''Dans un mois, dans un an'', Roman publié dans la collection Les mots inventifs, Les Éditions du Mécène, 576 pages. {{ISBN|978-2-923150-61-1}} +*2007 ''L'écriture'', Projet personnel d'orientation, Ministère de l'Éducation du Loisir et du sport. +*2005 ''29, rue des Remparts'', Roman publié dans la collection Les mots inventifs, Les éditions du Mécène, 192 pages. {{ISBN|2-923150-28-7}} +*2003 ''Vie 101'', Essai publié dans la collection Les mots utiles, Les Éditions du Mécène. 126 pages. {{ISBN|2-923150-03-1}} +*2002 ''Le groupe conseil fiscalis'', scénario produit pour le groupe conseil Fiscalis. +*2001 ''Lévis, ville nouvelle'', scénario de deux émissions de trente minutes pour le Comité de transition de la ville de Lévis et Canal Vox +*2001 ''L’école québécoise, ce qu’il y a de mieux pour votre enfant'', scénario produit pour le Ministère de l’éducation du Québec. +*2000 ''Le jeu en valait-il la chandelle?'' scénario produit pour le Centre québécois d’excellence pour la prévention et le traitement du jeu. (Université Laval) +*1999 ''Le hasard, Lucky, on peut rien y changer'', scénario produit pour le Centre québécois d’excellence pour la prévention et le traitement du jeu. (Université Laval) +*1999 ''Un pacte fiscal pour l’an 2000, des idées, de la solidarité'', scénario produit pour l’Union des Municipalités régionales de comté et des municipalités locales. +*1999 ''Détect-o-max et Une journée avec Détect-o-max'', deux scénarios produits pour Conception Ro-main inc. +*1999 ''Propane GRG, à l’écoute de ses clients'', scénario produit pour la firme Propane GRG inc. +*1998 ''Maître du mètre'', scénario d’un documentaire sur les 25 ans du système métrique au Québec. +*1997 ''Le temps des sucres'', scénario produit pour la firme Shady Maple Farms. +*1996 ''Le Génie de campagne'', scénario produit pour les Forces armées canadiennes. +*1996 ''La Compagnie franche de la Marine de Québec'', scénario produit pour les Forces armées canadiennes. +*1995 ''Bon séjour à l'École navale de Québec'', scénario produit pour les Forces armées canadiennes. +*1994 ''Un leadership, des services'', scénario produit pour la Fédération des commissions scolaires du Québec. +*1993 ''Les clubs de recherche d'emploi'', scénario produit pour le Ministère de l'Emploi et de l'Immigration du Canada. +*1992 ''Fiers de notre avenir'', scénario produit pour l'Assurance-Vie Desjardins. +*1992 ''Responsible Leadership'', scénario produit pour la compagnie papetière Donohue. (Prix Corpo Vision) +*1992 Scénarisation d'un ensemble de huit vidéos destinées aux écoles secondaires et aux collèges du Québec, pour la Fondation de l'entrepreneurship Québécois. (Prix Adate) +*1991 ''Guide à l'intention du nouveau personnel'', rédaction d'une brochure d'accueil pour la Commission scolaire Louis-Fréchette. +*1990 Comment ça va chez vous? scénario produit pour la Confédération des caisses Desjardins. +*1990 ''Le choc est aussi grand pour les petits.'' I et II, scénario de deux vidéos pour la Régie de l'assurance automobile du Québec. +*1990 Participation au concours de nouvelles de Radio-Canada avec ''Alexandre et Cassiopée.'' +*1989 Participation au concours de nouvelles de Radio-Canada avec ''Le mystère de la cathédrale.'' +*1989 ''La Double vie d'Antoine Gagnon, Ministre'', scénario d'un téléfilm pour Radio-Canada. +*1988 ''Passeport pour la liberté'', Les Quinze Éditeurs, Montréal. {{ISBN|2-89026-368-1}}. (Prix Robert-Cliche) +*1988 Coédition aux Éditions Jean Picollec, à Paris, du roman ''Passeport pour la liberté'', 303 pages, {{ISBN|2-86477-088-1}}. +*1987 Participation au concours de nouvelles de Radio-''Canada avec Le secret''. +*1987 Collaboration au scénario et aux dialogues de ''Vie décolle'', vidéo produite pour la Commission scolaire Abénakis (21 minutes). +*1983 Rédaction et direction de ''C'est qui ma maman à moi?'' pièce montée par la troupe de théâtre de la Polyvalente Benoît-Vachon de Sainte-Marie de Beauce. +*1982 Rédaction et direction de ''Au nom du père, de la fille et du Sain d'esprit'', pièce de théâtre montée par la troupe de théâtre de la Polyvalente Benoît -Vachon de Sainte-Marie de Beauce. +*1977 Corédaction et mise en scène de la pièce ''Coup de Théâtre à Ste-Onction'' jouée par les élèves de la Polyvalente Benoît-Vachon de Sainte-Marie de Beauce + +== Références == +{{references}} + +{{Portail|littérature}} + +[[Catégorie:Écrivain québécois|Beaudet, Raymond]] + 37k8h6pczx4hxpz6pl0t5bz2ptre34c + + + 154384783 + 153109835 + 2018-11-30T10:37:46Z + + Authueil + 142917 + + wikitext + text/x-wiki + {{voir homonymes|Beaudet}} +{{Infobox Biographie2}} + +'''Raymond Beaudet''' (Québec 1950 - ) est un écrivain et un scénariste [[Québec|québécois]]. Détenteur d’une maîtrise en [[philosophie]] de l’[[Université Laval]] (1975) on le retrouve successivement enseignant, syndicaliste, secrétaire particulier du Ministre des Richesses Naturelles, [[Yves Bérubé]], directeur d’école primaire et directeur d’école secondaire (Polyvalente Benoît-Vachon). Une passion l’anime pendant tout ce temps : l’écriture. Il est l’auteur de quatre romans, d’un essai, d’une trentaine de scénarios, de plusieurs nouvelles et de trois pièces de théâtre. Depuis 2014, il est actif en [[twittérature]]. + +== Honneurs == +* Prix coup de cœur du jury au Concours de twittérature du Centre de la Francophonie des Amériques 2016 +* Prix du Patrimoine (2011) Catégorie Interprétation et Diffusion. +* [[Prix Robert-Cliche]] ([[1988]]), ''Passeport pour la liberté''<ref>{{lien web | url=http://www.edvlb.com/prixrobertcliche/laureats.aspx | titre=Lauréats du prix Robert-Cliche | consulté le=24 juin 2011}}</ref> +* Prix Corpo-vision (1992) +* Prix Adate (1993) + +== Bibliographie == +*2018 Marie-Claire et moi, nouvelle parue dans Les Écrits mariverains 2018, (ISBN 978-2-9809683-9-6) +*2018 La dernière scène, scénario du spectacle de la Corporation des Instrumentistes Associés. +*2018 La boucherie, Projet personnel d'orientation, Ministère de l'Éducation et de l'Enseignement supérieur. +*2017 L'idée perdue, nouvelle parue dans Les Écrits mariverains 2017, {{ISBN|978-2-9809683-8-9}} +*2017 Coups de cœur, scénario du spectacle de la Corporation des Instrumentistes Associés. +*2016 Éliza Caztel de Sainte-Marie, nouvelle parue dans Les Écrits mariverains 2016, {{ISBN|978-2-9809683-7-2}} +*2016 La CIA sème le trouble, scénario du spectacle de la Corporation des Instrumentistes Associés. +*2015 La photographie numérique, Projet personnel d'orientation, Ministère de l'Éducation du Loisir et du sport. +*2015 Impressions de voyage : le Chili, nouvelle parue dans Les Écrits mariverains 2015, {{ISBN|978-2-9809683-6-5}} +*2015 La CIA, version 5.0, scénario du spectacle de la Corporation des Instrumentistes Associés. +*2014 Le désastreux destin d'Arlette Mallette, nouvelle parue dans Les Écrits mariverains 2014, {{ISBN|978-2-9809683-5-8}} +* 2014 La CIA, L'espace d'une vie, scénario du spectacle de la Corporation des Instrumentistes Associés. +* 2014 Carapaces, Roman publié aux Éditions Textes et Contextes, 279 pages. {{ISBN|978-2-923706-63-4}} +* 2013 La Politique, Projet personnel d'orientation, Ministère de l'Éducation du Loisir et du sport. +* 2013 La CIA poursuit son enquête, scénario du spectacle de la Corporation des Instrumentistes Associés. +* 2013 Napoléon, nouvelle parue dans Les Écrits mariverains 2013. {{ISBN|978-2-9809683-4-1}} +* 2012 Ménage de cave, nouvelle parue dans Les Écrits mariverains, 2012. {{ISBN|978-2-980-9683-3-4}} +* 2012 En quête de mission, scénario du spectacle de la Corporation des Instrumentistes Associés. +* 2012 Finaliste dans deux concours de Zone d’écriture de Radio-Canada en twittérature. +* 2011 La CIA autour du monde, scénario du spectacle de la Corporation des Instrumentistes Associés. +* 2011 En deuxième vitesse, nouvelle parue dans Les Écrits mariverains 2011. {{ISBN|978-2-980-9683-1-0|}} +* 2010 Biographie de Jeannine Rousseau et Rolland Massicotte, scénario. +*2010 Le Projet Adam et Ève, nouvelle parue dans Écrits mariverains 2010, {{ISBN|978-2-980-9683-1-0}} +*2009 Alexandre et Cassiopée, nouvelle parue dans Écrits mariverains 2009. +*2008 ''Dans un mois, dans un an'', Roman publié dans la collection Les mots inventifs, Les Éditions du Mécène, 576 pages. {{ISBN|978-2-923150-61-1}} +*2007 ''L'écriture'', Projet personnel d'orientation, Ministère de l'Éducation du Loisir et du sport. +*2005 ''29, rue des Remparts'', Roman publié dans la collection Les mots inventifs, Les éditions du Mécène, 192 pages. {{ISBN|2-923150-28-7}} +*2003 ''Vie 101'', Essai publié dans la collection Les mots utiles, Les Éditions du Mécène. 126 pages. {{ISBN|2-923150-03-1}} +*2002 ''Le groupe conseil fiscalis'', scénario produit pour le groupe conseil Fiscalis. +*2001 ''Lévis, ville nouvelle'', scénario de deux émissions de trente minutes pour le Comité de transition de la ville de Lévis et Canal Vox +*2001 ''L’école québécoise, ce qu’il y a de mieux pour votre enfant'', scénario produit pour le Ministère de l’éducation du Québec. +*2000 ''Le jeu en valait-il la chandelle?'' scénario produit pour le Centre québécois d’excellence pour la prévention et le traitement du jeu. (Université Laval) +*1999 ''Le hasard, Lucky, on peut rien y changer'', scénario produit pour le Centre québécois d’excellence pour la prévention et le traitement du jeu. (Université Laval) +*1999 ''Un pacte fiscal pour l’an 2000, des idées, de la solidarité'', scénario produit pour l’Union des Municipalités régionales de comté et des municipalités locales. +*1999 ''Détect-o-max et Une journée avec Détect-o-max'', deux scénarios produits pour Conception Ro-main inc. +*1999 ''Propane GRG, à l’écoute de ses clients'', scénario produit pour la firme Propane GRG inc. +*1998 ''Maître du mètre'', scénario d’un documentaire sur les 25 ans du système métrique au Québec. +*1997 ''Le temps des sucres'', scénario produit pour la firme Shady Maple Farms. +*1996 ''Le Génie de campagne'', scénario produit pour les Forces armées canadiennes. +*1996 ''La Compagnie franche de la Marine de Québec'', scénario produit pour les Forces armées canadiennes. +*1995 ''Bon séjour à l'École navale de Québec'', scénario produit pour les Forces armées canadiennes. +*1994 ''Un leadership, des services'', scénario produit pour la Fédération des commissions scolaires du Québec. +*1993 ''Les clubs de recherche d'emploi'', scénario produit pour le Ministère de l'Emploi et de l'Immigration du Canada. +*1992 ''Fiers de notre avenir'', scénario produit pour l'Assurance-Vie Desjardins. +*1992 ''Responsible Leadership'', scénario produit pour la compagnie papetière Donohue. (Prix Corpo Vision) +*1992 Scénarisation d'un ensemble de huit vidéos destinées aux écoles secondaires et aux collèges du Québec, pour la Fondation de l'entrepreneurship Québécois. (Prix Adate) +*1991 ''Guide à l'intention du nouveau personnel'', rédaction d'une brochure d'accueil pour la Commission scolaire Louis-Fréchette. +*1990 Comment ça va chez vous? scénario produit pour la Confédération des caisses Desjardins. +*1990 ''Le choc est aussi grand pour les petits.'' I et II, scénario de deux vidéos pour la Régie de l'assurance automobile du Québec. +*1990 Participation au concours de nouvelles de Radio-Canada avec ''Alexandre et Cassiopée.'' +*1989 Participation au concours de nouvelles de Radio-Canada avec ''Le mystère de la cathédrale.'' +*1989 ''La Double vie d'Antoine Gagnon, Ministre'', scénario d'un téléfilm pour Radio-Canada. +*1988 ''Passeport pour la liberté'', Les Quinze Éditeurs, Montréal. {{ISBN|2-89026-368-1}}. (Prix Robert-Cliche) +*1988 Coédition aux Éditions Jean Picollec, à Paris, du roman ''Passeport pour la liberté'', 303 pages, {{ISBN|2-86477-088-1}}. +*1987 Participation au concours de nouvelles de Radio-''Canada avec Le secret''. +*1987 Collaboration au scénario et aux dialogues de ''Vie décolle'', vidéo produite pour la Commission scolaire Abénakis (21 minutes). +*1983 Rédaction et direction de ''C'est qui ma maman à moi?'' pièce montée par la troupe de théâtre de la Polyvalente Benoît-Vachon de Sainte-Marie de Beauce. +*1982 Rédaction et direction de ''Au nom du père, de la fille et du Sain d'esprit'', pièce de théâtre montée par la troupe de théâtre de la Polyvalente Benoît -Vachon de Sainte-Marie de Beauce. +*1977 Corédaction et mise en scène de la pièce ''Coup de Théâtre à Ste-Onction'' jouée par les élèves de la Polyvalente Benoît-Vachon de Sainte-Marie de Beauce + +== Références == +{{references}} + +{{Portail|littérature}} + +[[Catégorie:Écrivain québécois|Beaudet, Raymond]] + 7yj8eibn7xm7h4dw1jq7ft9swa79bsv + + + 157911197 + 154384783 + 2019-03-27T12:41:12Z + + WikiCleanerBot + 351003 + + + v2.01 - [[P:CS|Correction syntaxique]] (Lien magique ISBN obsolète) + wikitext + text/x-wiki + {{À sourcer|date=mars 2019}} +{{voir homonymes|Beaudet}} +{{Infobox Biographie2}} + +'''Raymond Beaudet''' (Québec 1950 - ) est un écrivain et un scénariste [[Québec|québécois]]. Détenteur d’une maîtrise en [[philosophie]] de l’[[Université Laval]] (1975) on le retrouve successivement enseignant, syndicaliste, secrétaire particulier du Ministre des Richesses Naturelles, [[Yves Bérubé]], directeur d’école primaire et directeur d’école secondaire (Polyvalente Benoît-Vachon). Une passion l’anime pendant tout ce temps : l’écriture. Il est l’auteur de quatre romans, d’un essai, d’une trentaine de scénarios, de plusieurs nouvelles et de trois pièces de théâtre. Depuis 2014, il est actif en [[twittérature]]. + +== Honneurs == +* Prix coup de cœur du jury au Concours de twittérature du Centre de la Francophonie des Amériques 2016 +* Prix du Patrimoine (2011) Catégorie Interprétation et Diffusion. +* [[Prix Robert-Cliche]] ([[1988]]), ''Passeport pour la liberté''<ref>{{lien web | url=http://www.edvlb.com/prixrobertcliche/laureats.aspx | titre=Lauréats du prix Robert-Cliche | consulté le=24 juin 2011}}</ref> +* Prix Corpo-vision (1992) +* Prix Adate (1993) + +== Bibliographie == +*2018 Marie-Claire et moi, nouvelle parue dans Les Écrits mariverains 2018, {{ISBN|978-2-9809683-9-6}} +*2018 La dernière scène, scénario du spectacle de la Corporation des Instrumentistes Associés. +*2018 La boucherie, Projet personnel d'orientation, Ministère de l'Éducation et de l'Enseignement supérieur. +*2017 L'idée perdue, nouvelle parue dans Les Écrits mariverains 2017, {{ISBN|978-2-9809683-8-9}} +*2017 Coups de cœur, scénario du spectacle de la Corporation des Instrumentistes Associés. +*2016 Éliza Caztel de Sainte-Marie, nouvelle parue dans Les Écrits mariverains 2016, {{ISBN|978-2-9809683-7-2}} +*2016 La CIA sème le trouble, scénario du spectacle de la Corporation des Instrumentistes Associés. +*2015 La photographie numérique, Projet personnel d'orientation, Ministère de l'Éducation du Loisir et du sport. +*2015 Impressions de voyage : le Chili, nouvelle parue dans Les Écrits mariverains 2015, {{ISBN|978-2-9809683-6-5}} +*2015 La CIA, version 5.0, scénario du spectacle de la Corporation des Instrumentistes Associés. +*2014 Le désastreux destin d'Arlette Mallette, nouvelle parue dans Les Écrits mariverains 2014, {{ISBN|978-2-9809683-5-8}} +* 2014 La CIA, L'espace d'une vie, scénario du spectacle de la Corporation des Instrumentistes Associés. +* 2014 Carapaces, Roman publié aux Éditions Textes et Contextes, 279 pages. {{ISBN|978-2-923706-63-4}} +* 2013 La Politique, Projet personnel d'orientation, Ministère de l'Éducation du Loisir et du sport. +* 2013 La CIA poursuit son enquête, scénario du spectacle de la Corporation des Instrumentistes Associés. +* 2013 Napoléon, nouvelle parue dans Les Écrits mariverains 2013. {{ISBN|978-2-9809683-4-1}} +* 2012 Ménage de cave, nouvelle parue dans Les Écrits mariverains, 2012. {{ISBN|978-2-980-9683-3-4}} +* 2012 En quête de mission, scénario du spectacle de la Corporation des Instrumentistes Associés. +* 2012 Finaliste dans deux concours de Zone d’écriture de Radio-Canada en twittérature. +* 2011 La CIA autour du monde, scénario du spectacle de la Corporation des Instrumentistes Associés. +* 2011 En deuxième vitesse, nouvelle parue dans Les Écrits mariverains 2011. {{ISBN|978-2-980-9683-1-0|}} +* 2010 Biographie de Jeannine Rousseau et Rolland Massicotte, scénario. +*2010 Le Projet Adam et Ève, nouvelle parue dans Écrits mariverains 2010, {{ISBN|978-2-980-9683-1-0}} +*2009 Alexandre et Cassiopée, nouvelle parue dans Écrits mariverains 2009. +*2008 ''Dans un mois, dans un an'', Roman publié dans la collection Les mots inventifs, Les Éditions du Mécène, 576 pages. {{ISBN|978-2-923150-61-1}} +*2007 ''L'écriture'', Projet personnel d'orientation, Ministère de l'Éducation du Loisir et du sport. +*2005 ''29, rue des Remparts'', Roman publié dans la collection Les mots inventifs, Les éditions du Mécène, 192 pages. {{ISBN|2-923150-28-7}} +*2003 ''Vie 101'', Essai publié dans la collection Les mots utiles, Les Éditions du Mécène. 126 pages. {{ISBN|2-923150-03-1}} +*2002 ''Le groupe conseil fiscalis'', scénario produit pour le groupe conseil Fiscalis. +*2001 ''Lévis, ville nouvelle'', scénario de deux émissions de trente minutes pour le Comité de transition de la ville de Lévis et Canal Vox +*2001 ''L’école québécoise, ce qu’il y a de mieux pour votre enfant'', scénario produit pour le Ministère de l’éducation du Québec. +*2000 ''Le jeu en valait-il la chandelle?'' scénario produit pour le Centre québécois d’excellence pour la prévention et le traitement du jeu. (Université Laval) +*1999 ''Le hasard, Lucky, on peut rien y changer'', scénario produit pour le Centre québécois d’excellence pour la prévention et le traitement du jeu. (Université Laval) +*1999 ''Un pacte fiscal pour l’an 2000, des idées, de la solidarité'', scénario produit pour l’Union des Municipalités régionales de comté et des municipalités locales. +*1999 ''Détect-o-max et Une journée avec Détect-o-max'', deux scénarios produits pour Conception Ro-main inc. +*1999 ''Propane GRG, à l’écoute de ses clients'', scénario produit pour la firme Propane GRG inc. +*1998 ''Maître du mètre'', scénario d’un documentaire sur les 25 ans du système métrique au Québec. +*1997 ''Le temps des sucres'', scénario produit pour la firme Shady Maple Farms. +*1996 ''Le Génie de campagne'', scénario produit pour les Forces armées canadiennes. +*1996 ''La Compagnie franche de la Marine de Québec'', scénario produit pour les Forces armées canadiennes. +*1995 ''Bon séjour à l'École navale de Québec'', scénario produit pour les Forces armées canadiennes. +*1994 ''Un leadership, des services'', scénario produit pour la Fédération des commissions scolaires du Québec. +*1993 ''Les clubs de recherche d'emploi'', scénario produit pour le Ministère de l'Emploi et de l'Immigration du Canada. +*1992 ''Fiers de notre avenir'', scénario produit pour l'Assurance-Vie Desjardins. +*1992 ''Responsible Leadership'', scénario produit pour la compagnie papetière Donohue. (Prix Corpo Vision) +*1992 Scénarisation d'un ensemble de huit vidéos destinées aux écoles secondaires et aux collèges du Québec, pour la Fondation de l'entrepreneurship Québécois. (Prix Adate) +*1991 ''Guide à l'intention du nouveau personnel'', rédaction d'une brochure d'accueil pour la Commission scolaire Louis-Fréchette. +*1990 Comment ça va chez vous? scénario produit pour la Confédération des caisses Desjardins. +*1990 ''Le choc est aussi grand pour les petits.'' I et II, scénario de deux vidéos pour la Régie de l'assurance automobile du Québec. +*1990 Participation au concours de nouvelles de Radio-Canada avec ''Alexandre et Cassiopée.'' +*1989 Participation au concours de nouvelles de Radio-Canada avec ''Le mystère de la cathédrale.'' +*1989 ''La Double vie d'Antoine Gagnon, Ministre'', scénario d'un téléfilm pour Radio-Canada. +*1988 ''Passeport pour la liberté'', Les Quinze Éditeurs, Montréal. {{ISBN|2-89026-368-1}}. (Prix Robert-Cliche) +*1988 Coédition aux Éditions Jean Picollec, à Paris, du roman ''Passeport pour la liberté'', 303 pages, {{ISBN|2-86477-088-1}}. +*1987 Participation au concours de nouvelles de Radio-''Canada avec Le secret''. +*1987 Collaboration au scénario et aux dialogues de ''Vie décolle'', vidéo produite pour la Commission scolaire Abénakis (21 minutes). +*1983 Rédaction et direction de ''C'est qui ma maman à moi?'' pièce montée par la troupe de théâtre de la Polyvalente Benoît-Vachon de Sainte-Marie de Beauce. +*1982 Rédaction et direction de ''Au nom du père, de la fille et du Sain d'esprit'', pièce de théâtre montée par la troupe de théâtre de la Polyvalente Benoît -Vachon de Sainte-Marie de Beauce. +*1977 Corédaction et mise en scène de la pièce ''Coup de Théâtre à Ste-Onction'' jouée par les élèves de la Polyvalente Benoît-Vachon de Sainte-Marie de Beauce + +== Références == +{{references}} + +{{Portail|littérature}} + +[[Catégorie:Écrivain québécois|Beaudet, Raymond]] + m16kjqp7wer42r10j74s8c8axcfznnu + + + 159485992 + 157911197 + 2019-05-22T17:47:46Z + + SuperTom4277 + 3477067 + + + /* Honneurs */ MRC Nouvelle-Beauce + wikitext + text/x-wiki + {{À sourcer|date=mars 2019}} +{{voir homonymes|Beaudet}} +{{Infobox Biographie2}} + +'''Raymond Beaudet''' (Québec 1950 - ) est un écrivain et un scénariste [[Québec|québécois]]. Détenteur d’une maîtrise en [[philosophie]] de l’[[Université Laval]] (1975) on le retrouve successivement enseignant, syndicaliste, secrétaire particulier du Ministre des Richesses Naturelles, [[Yves Bérubé]], directeur d’école primaire et directeur d’école secondaire (Polyvalente Benoît-Vachon). Une passion l’anime pendant tout ce temps : l’écriture. Il est l’auteur de quatre romans, d’un essai, d’une trentaine de scénarios, de plusieurs nouvelles et de trois pièces de théâtre. Depuis 2014, il est actif en [[twittérature]]. + +== Honneurs == +* Prix du Patrimoine (2019) Catégorie Interprétation et Diffusion +*Prix coup de cœur du jury au Concours de twittérature du Centre de la Francophonie des Amériques 2016 +* Prix du Patrimoine (2011) Catégorie Interprétation et Diffusion +* [[Prix Robert-Cliche]] ([[1988]]), ''Passeport pour la liberté''<ref>{{lien web | url=http://www.edvlb.com/prixrobertcliche/laureats.aspx | titre=Lauréats du prix Robert-Cliche | consulté le=24 juin 2011}}</ref> +* Prix Corpo-vision (1992) +* Prix Adate (1993) + +== Bibliographie == +*2019 Voix de dépassement, scénario du spectacle de la Corporation des Instrumentistes Associés. +*2018 Marie-Claire et moi, nouvelle parue dans Les Écrits mariverains 2018, {{ISBN|978-2-9809683-9-6}} +*2018 La dernière scène, scénario du spectacle de la Corporation des Instrumentistes Associés. +*2018 La boucherie, Projet personnel d'orientation, Ministère de l'Éducation et de l'Enseignement supérieur. +*2017 L'idée perdue, nouvelle parue dans Les Écrits mariverains 2017, {{ISBN|978-2-9809683-8-9}} +*2017 Coups de cœur, scénario du spectacle de la Corporation des Instrumentistes Associés. +*2016 Éliza Caztel de Sainte-Marie, nouvelle parue dans Les Écrits mariverains 2016, {{ISBN|978-2-9809683-7-2}} +*2016 La CIA sème le trouble, scénario du spectacle de la Corporation des Instrumentistes Associés. +*2015 La photographie numérique, Projet personnel d'orientation, Ministère de l'Éducation du Loisir et du sport. +*2015 Impressions de voyage : le Chili, nouvelle parue dans Les Écrits mariverains 2015, {{ISBN|978-2-9809683-6-5}} +*2015 La CIA, version 5.0, scénario du spectacle de la Corporation des Instrumentistes Associés. +*2014 Le désastreux destin d'Arlette Mallette, nouvelle parue dans Les Écrits mariverains 2014, {{ISBN|978-2-9809683-5-8}} +* 2014 La CIA, L'espace d'une vie, scénario du spectacle de la Corporation des Instrumentistes Associés. +* 2014 Carapaces, Roman publié aux Éditions Textes et Contextes, 279 pages. {{ISBN|978-2-923706-63-4}} +* 2013 La Politique, Projet personnel d'orientation, Ministère de l'Éducation du Loisir et du sport. +* 2013 La CIA poursuit son enquête, scénario du spectacle de la Corporation des Instrumentistes Associés. +* 2013 Napoléon, nouvelle parue dans Les Écrits mariverains 2013. {{ISBN|978-2-9809683-4-1}} +* 2012 Ménage de cave, nouvelle parue dans Les Écrits mariverains, 2012. {{ISBN|978-2-980-9683-3-4}} +* 2012 En quête de mission, scénario du spectacle de la Corporation des Instrumentistes Associés. +* 2012 Finaliste dans deux concours de Zone d’écriture de Radio-Canada en twittérature. +* 2011 La CIA autour du monde, scénario du spectacle de la Corporation des Instrumentistes Associés. +* 2011 En deuxième vitesse, nouvelle parue dans Les Écrits mariverains 2011. {{ISBN|978-2-980-9683-1-0|}} +* 2010 Biographie de Jeannine Rousseau et Rolland Massicotte, scénario. +*2010 Le Projet Adam et Ève, nouvelle parue dans Écrits mariverains 2010, {{ISBN|978-2-980-9683-1-0}} +*2009 Alexandre et Cassiopée, nouvelle parue dans Écrits mariverains 2009. +*2008 ''Dans un mois, dans un an'', Roman publié dans la collection Les mots inventifs, Les Éditions du Mécène, 576 pages. {{ISBN|978-2-923150-61-1}} +*2007 ''L'écriture'', Projet personnel d'orientation, Ministère de l'Éducation du Loisir et du sport. +*2005 ''29, rue des Remparts'', Roman publié dans la collection Les mots inventifs, Les éditions du Mécène, 192 pages. {{ISBN|2-923150-28-7}} +*2003 ''Vie 101'', Essai publié dans la collection Les mots utiles, Les Éditions du Mécène. 126 pages. {{ISBN|2-923150-03-1}} +*2002 ''Le groupe conseil fiscalis'', scénario produit pour le groupe conseil Fiscalis. +*2001 ''Lévis, ville nouvelle'', scénario de deux émissions de trente minutes pour le Comité de transition de la ville de Lévis et Canal Vox +*2001 ''L’école québécoise, ce qu’il y a de mieux pour votre enfant'', scénario produit pour le Ministère de l’éducation du Québec. +*2000 ''Le jeu en valait-il la chandelle?'' scénario produit pour le Centre québécois d’excellence pour la prévention et le traitement du jeu. (Université Laval) +*1999 ''Le hasard, Lucky, on peut rien y changer'', scénario produit pour le Centre québécois d’excellence pour la prévention et le traitement du jeu. (Université Laval) +*1999 ''Un pacte fiscal pour l’an 2000, des idées, de la solidarité'', scénario produit pour l’Union des Municipalités régionales de comté et des municipalités locales. +*1999 ''Détect-o-max et Une journée avec Détect-o-max'', deux scénarios produits pour Conception Ro-main inc. +*1999 ''Propane GRG, à l’écoute de ses clients'', scénario produit pour la firme Propane GRG inc. +*1998 ''Maître du mètre'', scénario d’un documentaire sur les 25 ans du système métrique au Québec. +*1997 ''Le temps des sucres'', scénario produit pour la firme Shady Maple Farms. +*1996 ''Le Génie de campagne'', scénario produit pour les Forces armées canadiennes. +*1996 ''La Compagnie franche de la Marine de Québec'', scénario produit pour les Forces armées canadiennes. +*1995 ''Bon séjour à l'École navale de Québec'', scénario produit pour les Forces armées canadiennes. +*1994 ''Un leadership, des services'', scénario produit pour la Fédération des commissions scolaires du Québec. +*1993 ''Les clubs de recherche d'emploi'', scénario produit pour le Ministère de l'Emploi et de l'Immigration du Canada. +*1992 ''Fiers de notre avenir'', scénario produit pour l'Assurance-Vie Desjardins. +*1992 ''Responsible Leadership'', scénario produit pour la compagnie papetière Donohue. (Prix Corpo Vision) +*1992 Scénarisation d'un ensemble de huit vidéos destinées aux écoles secondaires et aux collèges du Québec, pour la Fondation de l'entrepreneurship Québécois. (Prix Adate) +*1991 ''Guide à l'intention du nouveau personnel'', rédaction d'une brochure d'accueil pour la Commission scolaire Louis-Fréchette. +*1990 Comment ça va chez vous? scénario produit pour la Confédération des caisses Desjardins. +*1990 ''Le choc est aussi grand pour les petits.'' I et II, scénario de deux vidéos pour la Régie de l'assurance automobile du Québec. +*1990 Participation au concours de nouvelles de Radio-Canada avec ''Alexandre et Cassiopée.'' +*1989 Participation au concours de nouvelles de Radio-Canada avec ''Le mystère de la cathédrale.'' +*1989 ''La Double vie d'Antoine Gagnon, Ministre'', scénario d'un téléfilm pour Radio-Canada. +*1988 ''Passeport pour la liberté'', Les Quinze Éditeurs, Montréal. {{ISBN|2-89026-368-1}}. (Prix Robert-Cliche) +*1988 Coédition aux Éditions Jean Picollec, à Paris, du roman ''Passeport pour la liberté'', 303 pages, {{ISBN|2-86477-088-1}}. +*1987 Participation au concours de nouvelles de Radio-''Canada avec Le secret''. +*1987 Collaboration au scénario et aux dialogues de ''Vie décolle'', vidéo produite pour la Commission scolaire Abénakis (21 minutes). +*1983 Rédaction et direction de ''C'est qui ma maman à moi?'' pièce montée par la troupe de théâtre de la Polyvalente Benoît-Vachon de Sainte-Marie de Beauce. +*1982 Rédaction et direction de ''Au nom du père, de la fille et du Sain d'esprit'', pièce de théâtre montée par la troupe de théâtre de la Polyvalente Benoît -Vachon de Sainte-Marie de Beauce. +*1977 Corédaction et mise en scène de la pièce ''Coup de Théâtre à Ste-Onction'' jouée par les élèves de la Polyvalente Benoît-Vachon de Sainte-Marie de Beauce + +== Références == +{{references}} + +{{Portail|littérature}} + +[[Catégorie:Écrivain québécois|Beaudet, Raymond]] + 1h70u57obhrx1yb2asoawr4uoimbq0g + + + 163613183 + 159485992 + 2019-10-17T14:20:46Z + + 24.204.148.251 + + Nouvelle publication + wikitext + text/x-wiki + {{À sourcer|date=mars 2019}} +{{voir homonymes|Beaudet}} +{{Infobox Biographie2}} + +'''Raymond Beaudet''' (Québec 1950 - ) est un écrivain et un scénariste [[Québec|québécois]]. Détenteur d’une maîtrise en [[philosophie]] de l’[[Université Laval]] (1975) on le retrouve successivement enseignant, syndicaliste, secrétaire particulier du Ministre des Richesses Naturelles, [[Yves Bérubé]], directeur d’école primaire et directeur d’école secondaire (Polyvalente Benoît-Vachon). Une passion l’anime pendant tout ce temps : l’écriture. Il est l’auteur de quatre romans, d’un essai, d’une trentaine de scénarios, de plusieurs nouvelles et de trois pièces de théâtre. Depuis 2014, il est actif en [[twittérature]]. + +== Honneurs == +* Prix du Patrimoine (2019) Catégorie Interprétation et Diffusion +*Prix coup de cœur du jury au Concours de twittérature du Centre de la Francophonie des Amériques 2016 +* Prix du Patrimoine (2011) Catégorie Interprétation et Diffusion +* [[Prix Robert-Cliche]] ([[1988]]), ''Passeport pour la liberté''<ref>{{lien web | url=http://www.edvlb.com/prixrobertcliche/laureats.aspx | titre=Lauréats du prix Robert-Cliche | consulté le=24 juin 2011}}</ref> +* Prix Corpo-vision (1992) +* Prix Adate (1993) + +== Bibliographie == +*2019 Carnet d'un passager clandestin, nouvelle parue dans Les Écrits Mariverains 2019, (ISBN-978-2-9810768-0-9) +*2019 Voix de dépassement, scénario du spectacle de la Corporation des Instrumentistes Associés. +*2018 Marie-Claire et moi, nouvelle parue dans Les Écrits mariverains 2018, {{ISBN|978-2-9809683-9-6}} +*2018 La dernière scène, scénario du spectacle de la Corporation des Instrumentistes Associés. +*2018 La boucherie, Projet personnel d'orientation, Ministère de l'Éducation et de l'Enseignement supérieur. +*2017 L'idée perdue, nouvelle parue dans Les Écrits mariverains 2017, {{ISBN|978-2-9809683-8-9}} +*2017 Coups de cœur, scénario du spectacle de la Corporation des Instrumentistes Associés. +*2016 Éliza Caztel de Sainte-Marie, nouvelle parue dans Les Écrits mariverains 2016, {{ISBN|978-2-9809683-7-2}} +*2016 La CIA sème le trouble, scénario du spectacle de la Corporation des Instrumentistes Associés. +*2015 La photographie numérique, Projet personnel d'orientation, Ministère de l'Éducation du Loisir et du sport. +*2015 Impressions de voyage : le Chili, nouvelle parue dans Les Écrits mariverains 2015, {{ISBN|978-2-9809683-6-5}} +*2015 La CIA, version 5.0, scénario du spectacle de la Corporation des Instrumentistes Associés. +*2014 Le désastreux destin d'Arlette Mallette, nouvelle parue dans Les Écrits mariverains 2014, {{ISBN|978-2-9809683-5-8}} +* 2014 La CIA, L'espace d'une vie, scénario du spectacle de la Corporation des Instrumentistes Associés. +* 2014 Carapaces, Roman publié aux Éditions Textes et Contextes, 279 pages. {{ISBN|978-2-923706-63-4}} +* 2013 La Politique, Projet personnel d'orientation, Ministère de l'Éducation du Loisir et du sport. +* 2013 La CIA poursuit son enquête, scénario du spectacle de la Corporation des Instrumentistes Associés. +* 2013 Napoléon, nouvelle parue dans Les Écrits mariverains 2013. {{ISBN|978-2-9809683-4-1}} +* 2012 Ménage de cave, nouvelle parue dans Les Écrits mariverains, 2012. {{ISBN|978-2-980-9683-3-4}} +* 2012 En quête de mission, scénario du spectacle de la Corporation des Instrumentistes Associés. +* 2012 Finaliste dans deux concours de Zone d’écriture de Radio-Canada en twittérature. +* 2011 La CIA autour du monde, scénario du spectacle de la Corporation des Instrumentistes Associés. +* 2011 En deuxième vitesse, nouvelle parue dans Les Écrits mariverains 2011. {{ISBN|978-2-980-9683-1-0|}} +* 2010 Biographie de Jeannine Rousseau et Rolland Massicotte, scénario. +*2010 Le Projet Adam et Ève, nouvelle parue dans Écrits mariverains 2010, {{ISBN|978-2-980-9683-1-0}} +*2009 Alexandre et Cassiopée, nouvelle parue dans Écrits mariverains 2009. +*2008 ''Dans un mois, dans un an'', Roman publié dans la collection Les mots inventifs, Les Éditions du Mécène, 576 pages. {{ISBN|978-2-923150-61-1}} +*2007 ''L'écriture'', Projet personnel d'orientation, Ministère de l'Éducation du Loisir et du sport. +*2005 ''29, rue des Remparts'', Roman publié dans la collection Les mots inventifs, Les éditions du Mécène, 192 pages. {{ISBN|2-923150-28-7}} +*2003 ''Vie 101'', Essai publié dans la collection Les mots utiles, Les Éditions du Mécène. 126 pages. {{ISBN|2-923150-03-1}} +*2002 ''Le groupe conseil fiscalis'', scénario produit pour le groupe conseil Fiscalis. +*2001 ''Lévis, ville nouvelle'', scénario de deux émissions de trente minutes pour le Comité de transition de la ville de Lévis et Canal Vox +*2001 ''L’école québécoise, ce qu’il y a de mieux pour votre enfant'', scénario produit pour le Ministère de l’éducation du Québec. +*2000 ''Le jeu en valait-il la chandelle?'' scénario produit pour le Centre québécois d’excellence pour la prévention et le traitement du jeu. (Université Laval) +*1999 ''Le hasard, Lucky, on peut rien y changer'', scénario produit pour le Centre québécois d’excellence pour la prévention et le traitement du jeu. (Université Laval) +*1999 ''Un pacte fiscal pour l’an 2000, des idées, de la solidarité'', scénario produit pour l’Union des Municipalités régionales de comté et des municipalités locales. +*1999 ''Détect-o-max et Une journée avec Détect-o-max'', deux scénarios produits pour Conception Ro-main inc. +*1999 ''Propane GRG, à l’écoute de ses clients'', scénario produit pour la firme Propane GRG inc. +*1998 ''Maître du mètre'', scénario d’un documentaire sur les 25 ans du système métrique au Québec. +*1997 ''Le temps des sucres'', scénario produit pour la firme Shady Maple Farms. +*1996 ''Le Génie de campagne'', scénario produit pour les Forces armées canadiennes. +*1996 ''La Compagnie franche de la Marine de Québec'', scénario produit pour les Forces armées canadiennes. +*1995 ''Bon séjour à l'École navale de Québec'', scénario produit pour les Forces armées canadiennes. +*1994 ''Un leadership, des services'', scénario produit pour la Fédération des commissions scolaires du Québec. +*1993 ''Les clubs de recherche d'emploi'', scénario produit pour le Ministère de l'Emploi et de l'Immigration du Canada. +*1992 ''Fiers de notre avenir'', scénario produit pour l'Assurance-Vie Desjardins. +*1992 ''Responsible Leadership'', scénario produit pour la compagnie papetière Donohue. (Prix Corpo Vision) +*1992 Scénarisation d'un ensemble de huit vidéos destinées aux écoles secondaires et aux collèges du Québec, pour la Fondation de l'entrepreneurship Québécois. (Prix Adate) +*1991 ''Guide à l'intention du nouveau personnel'', rédaction d'une brochure d'accueil pour la Commission scolaire Louis-Fréchette. +*1990 Comment ça va chez vous? scénario produit pour la Confédération des caisses Desjardins. +*1990 ''Le choc est aussi grand pour les petits.'' I et II, scénario de deux vidéos pour la Régie de l'assurance automobile du Québec. +*1990 Participation au concours de nouvelles de Radio-Canada avec ''Alexandre et Cassiopée.'' +*1989 Participation au concours de nouvelles de Radio-Canada avec ''Le mystère de la cathédrale.'' +*1989 ''La Double vie d'Antoine Gagnon, Ministre'', scénario d'un téléfilm pour Radio-Canada. +*1988 ''Passeport pour la liberté'', Les Quinze Éditeurs, Montréal. {{ISBN|2-89026-368-1}}. (Prix Robert-Cliche) +*1988 Coédition aux Éditions Jean Picollec, à Paris, du roman ''Passeport pour la liberté'', 303 pages, {{ISBN|2-86477-088-1}}. +*1987 Participation au concours de nouvelles de Radio-''Canada avec Le secret''. +*1987 Collaboration au scénario et aux dialogues de ''Vie décolle'', vidéo produite pour la Commission scolaire Abénakis (21 minutes). +*1983 Rédaction et direction de ''C'est qui ma maman à moi?'' pièce montée par la troupe de théâtre de la Polyvalente Benoît-Vachon de Sainte-Marie de Beauce. +*1982 Rédaction et direction de ''Au nom du père, de la fille et du Sain d'esprit'', pièce de théâtre montée par la troupe de théâtre de la Polyvalente Benoît -Vachon de Sainte-Marie de Beauce. +*1977 Corédaction et mise en scène de la pièce ''Coup de Théâtre à Ste-Onction'' jouée par les élèves de la Polyvalente Benoît-Vachon de Sainte-Marie de Beauce + +== Références == +{{references}} + +{{Portail|littérature}} + +[[Catégorie:Écrivain québécois|Beaudet, Raymond]] + h83xf1wv1fyuu1o8in77418kc27bofd + + + 163756443 + 163613183 + 2019-10-22T19:01:10Z + + WikiCleanerBot + 351003 + + + v2.02 - [[P:CS|Correction syntaxique]] (Numéro ISBN : syntaxe erronée) + wikitext + text/x-wiki + {{À sourcer|date=mars 2019}} +{{voir homonymes|Beaudet}} +{{Infobox Biographie2}} + +'''Raymond Beaudet''' (Québec 1950 - ) est un écrivain et un scénariste [[Québec|québécois]]. Détenteur d’une maîtrise en [[philosophie]] de l’[[Université Laval]] (1975) on le retrouve successivement enseignant, syndicaliste, secrétaire particulier du Ministre des Richesses Naturelles, [[Yves Bérubé]], directeur d’école primaire et directeur d’école secondaire (Polyvalente Benoît-Vachon). Une passion l’anime pendant tout ce temps : l’écriture. Il est l’auteur de quatre romans, d’un essai, d’une trentaine de scénarios, de plusieurs nouvelles et de trois pièces de théâtre. Depuis 2014, il est actif en [[twittérature]]. + +== Honneurs == +* Prix du Patrimoine (2019) Catégorie Interprétation et Diffusion +*Prix coup de cœur du jury au Concours de twittérature du Centre de la Francophonie des Amériques 2016 +* Prix du Patrimoine (2011) Catégorie Interprétation et Diffusion +* [[Prix Robert-Cliche]] ([[1988]]), ''Passeport pour la liberté''<ref>{{lien web | url=http://www.edvlb.com/prixrobertcliche/laureats.aspx | titre=Lauréats du prix Robert-Cliche | consulté le=24 juin 2011}}</ref> +* Prix Corpo-vision (1992) +* Prix Adate (1993) + +== Bibliographie == +*2019 Carnet d'un passager clandestin, nouvelle parue dans Les Écrits Mariverains 2019, {{ISBN|978-2-9810768-0-9}} +*2019 Voix de dépassement, scénario du spectacle de la Corporation des Instrumentistes Associés. +*2018 Marie-Claire et moi, nouvelle parue dans Les Écrits mariverains 2018, {{ISBN|978-2-9809683-9-6}} +*2018 La dernière scène, scénario du spectacle de la Corporation des Instrumentistes Associés. +*2018 La boucherie, Projet personnel d'orientation, Ministère de l'Éducation et de l'Enseignement supérieur. +*2017 L'idée perdue, nouvelle parue dans Les Écrits mariverains 2017, {{ISBN|978-2-9809683-8-9}} +*2017 Coups de cœur, scénario du spectacle de la Corporation des Instrumentistes Associés. +*2016 Éliza Caztel de Sainte-Marie, nouvelle parue dans Les Écrits mariverains 2016, {{ISBN|978-2-9809683-7-2}} +*2016 La CIA sème le trouble, scénario du spectacle de la Corporation des Instrumentistes Associés. +*2015 La photographie numérique, Projet personnel d'orientation, Ministère de l'Éducation du Loisir et du sport. +*2015 Impressions de voyage : le Chili, nouvelle parue dans Les Écrits mariverains 2015, {{ISBN|978-2-9809683-6-5}} +*2015 La CIA, version 5.0, scénario du spectacle de la Corporation des Instrumentistes Associés. +*2014 Le désastreux destin d'Arlette Mallette, nouvelle parue dans Les Écrits mariverains 2014, {{ISBN|978-2-9809683-5-8}} +* 2014 La CIA, L'espace d'une vie, scénario du spectacle de la Corporation des Instrumentistes Associés. +* 2014 Carapaces, Roman publié aux Éditions Textes et Contextes, 279 pages. {{ISBN|978-2-923706-63-4}} +* 2013 La Politique, Projet personnel d'orientation, Ministère de l'Éducation du Loisir et du sport. +* 2013 La CIA poursuit son enquête, scénario du spectacle de la Corporation des Instrumentistes Associés. +* 2013 Napoléon, nouvelle parue dans Les Écrits mariverains 2013. {{ISBN|978-2-9809683-4-1}} +* 2012 Ménage de cave, nouvelle parue dans Les Écrits mariverains, 2012. {{ISBN|978-2-980-9683-3-4}} +* 2012 En quête de mission, scénario du spectacle de la Corporation des Instrumentistes Associés. +* 2012 Finaliste dans deux concours de Zone d’écriture de Radio-Canada en twittérature. +* 2011 La CIA autour du monde, scénario du spectacle de la Corporation des Instrumentistes Associés. +* 2011 En deuxième vitesse, nouvelle parue dans Les Écrits mariverains 2011. {{ISBN|978-2-980-9683-1-0|}} +* 2010 Biographie de Jeannine Rousseau et Rolland Massicotte, scénario. +*2010 Le Projet Adam et Ève, nouvelle parue dans Écrits mariverains 2010, {{ISBN|978-2-980-9683-1-0}} +*2009 Alexandre et Cassiopée, nouvelle parue dans Écrits mariverains 2009. +*2008 ''Dans un mois, dans un an'', Roman publié dans la collection Les mots inventifs, Les Éditions du Mécène, 576 pages. {{ISBN|978-2-923150-61-1}} +*2007 ''L'écriture'', Projet personnel d'orientation, Ministère de l'Éducation du Loisir et du sport. +*2005 ''29, rue des Remparts'', Roman publié dans la collection Les mots inventifs, Les éditions du Mécène, 192 pages. {{ISBN|2-923150-28-7}} +*2003 ''Vie 101'', Essai publié dans la collection Les mots utiles, Les Éditions du Mécène. 126 pages. {{ISBN|2-923150-03-1}} +*2002 ''Le groupe conseil fiscalis'', scénario produit pour le groupe conseil Fiscalis. +*2001 ''Lévis, ville nouvelle'', scénario de deux émissions de trente minutes pour le Comité de transition de la ville de Lévis et Canal Vox +*2001 ''L’école québécoise, ce qu’il y a de mieux pour votre enfant'', scénario produit pour le Ministère de l’éducation du Québec. +*2000 ''Le jeu en valait-il la chandelle?'' scénario produit pour le Centre québécois d’excellence pour la prévention et le traitement du jeu. (Université Laval) +*1999 ''Le hasard, Lucky, on peut rien y changer'', scénario produit pour le Centre québécois d’excellence pour la prévention et le traitement du jeu. (Université Laval) +*1999 ''Un pacte fiscal pour l’an 2000, des idées, de la solidarité'', scénario produit pour l’Union des Municipalités régionales de comté et des municipalités locales. +*1999 ''Détect-o-max et Une journée avec Détect-o-max'', deux scénarios produits pour Conception Ro-main inc. +*1999 ''Propane GRG, à l’écoute de ses clients'', scénario produit pour la firme Propane GRG inc. +*1998 ''Maître du mètre'', scénario d’un documentaire sur les 25 ans du système métrique au Québec. +*1997 ''Le temps des sucres'', scénario produit pour la firme Shady Maple Farms. +*1996 ''Le Génie de campagne'', scénario produit pour les Forces armées canadiennes. +*1996 ''La Compagnie franche de la Marine de Québec'', scénario produit pour les Forces armées canadiennes. +*1995 ''Bon séjour à l'École navale de Québec'', scénario produit pour les Forces armées canadiennes. +*1994 ''Un leadership, des services'', scénario produit pour la Fédération des commissions scolaires du Québec. +*1993 ''Les clubs de recherche d'emploi'', scénario produit pour le Ministère de l'Emploi et de l'Immigration du Canada. +*1992 ''Fiers de notre avenir'', scénario produit pour l'Assurance-Vie Desjardins. +*1992 ''Responsible Leadership'', scénario produit pour la compagnie papetière Donohue. (Prix Corpo Vision) +*1992 Scénarisation d'un ensemble de huit vidéos destinées aux écoles secondaires et aux collèges du Québec, pour la Fondation de l'entrepreneurship Québécois. (Prix Adate) +*1991 ''Guide à l'intention du nouveau personnel'', rédaction d'une brochure d'accueil pour la Commission scolaire Louis-Fréchette. +*1990 Comment ça va chez vous? scénario produit pour la Confédération des caisses Desjardins. +*1990 ''Le choc est aussi grand pour les petits.'' I et II, scénario de deux vidéos pour la Régie de l'assurance automobile du Québec. +*1990 Participation au concours de nouvelles de Radio-Canada avec ''Alexandre et Cassiopée.'' +*1989 Participation au concours de nouvelles de Radio-Canada avec ''Le mystère de la cathédrale.'' +*1989 ''La Double vie d'Antoine Gagnon, Ministre'', scénario d'un téléfilm pour Radio-Canada. +*1988 ''Passeport pour la liberté'', Les Quinze Éditeurs, Montréal. {{ISBN|2-89026-368-1}}. (Prix Robert-Cliche) +*1988 Coédition aux Éditions Jean Picollec, à Paris, du roman ''Passeport pour la liberté'', 303 pages, {{ISBN|2-86477-088-1}}. +*1987 Participation au concours de nouvelles de Radio-''Canada avec Le secret''. +*1987 Collaboration au scénario et aux dialogues de ''Vie décolle'', vidéo produite pour la Commission scolaire Abénakis (21 minutes). +*1983 Rédaction et direction de ''C'est qui ma maman à moi?'' pièce montée par la troupe de théâtre de la Polyvalente Benoît-Vachon de Sainte-Marie de Beauce. +*1982 Rédaction et direction de ''Au nom du père, de la fille et du Sain d'esprit'', pièce de théâtre montée par la troupe de théâtre de la Polyvalente Benoît -Vachon de Sainte-Marie de Beauce. +*1977 Corédaction et mise en scène de la pièce ''Coup de Théâtre à Ste-Onction'' jouée par les élèves de la Polyvalente Benoît-Vachon de Sainte-Marie de Beauce + +== Références == +{{references}} + +{{Portail|littérature}} + +[[Catégorie:Écrivain québécois|Beaudet, Raymond]] + gjqgf7ii3zdhphf5wkt1a8xbnpvox73 + + + 165463529 + 163756443 + 2019-12-16T17:16:49Z + + SuperTom4277 + 3477067 + + /* Bibliographie */ ajout d'une publication + wikitext + text/x-wiki + {{À sourcer|date=mars 2019}} +{{voir homonymes|Beaudet}} +{{Infobox Biographie2}} + +'''Raymond Beaudet''' (Québec 1950 - ) est un écrivain et un scénariste [[Québec|québécois]]. Détenteur d’une maîtrise en [[philosophie]] de l’[[Université Laval]] (1975) on le retrouve successivement enseignant, syndicaliste, secrétaire particulier du Ministre des Richesses Naturelles, [[Yves Bérubé]], directeur d’école primaire et directeur d’école secondaire (Polyvalente Benoît-Vachon). Une passion l’anime pendant tout ce temps : l’écriture. Il est l’auteur de quatre romans, d’un essai, d’une trentaine de scénarios, de plusieurs nouvelles et de trois pièces de théâtre. Depuis 2014, il est actif en [[twittérature]]. + +== Honneurs == +* Prix du Patrimoine (2019) Catégorie Interprétation et Diffusion +*Prix coup de cœur du jury au Concours de twittérature du Centre de la Francophonie des Amériques 2016 +* Prix du Patrimoine (2011) Catégorie Interprétation et Diffusion +* [[Prix Robert-Cliche]] ([[1988]]), ''Passeport pour la liberté''<ref>{{lien web | url=http://www.edvlb.com/prixrobertcliche/laureats.aspx | titre=Lauréats du prix Robert-Cliche | consulté le=24 juin 2011}}</ref> +* Prix Corpo-vision (1992) +* Prix Adate (1993) + +== Bibliographie == +*2019 Tableaux et portraits mariverains, Capsules historiques, (<nowiki>ISBN 978-2-9810768-2-3</nowiki>). +*2019 Carnet d'un passager clandestin, nouvelle parue dans Les Écrits Mariverains 2019, {{ISBN|978-2-9810768-0-9}} +*2019 Voix de dépassement, scénario du spectacle de la Corporation des Instrumentistes Associés. +*2018 Marie-Claire et moi, nouvelle parue dans Les Écrits mariverains 2018, {{ISBN|978-2-9809683-9-6}} +*2018 La dernière scène, scénario du spectacle de la Corporation des Instrumentistes Associés. +*2018 La boucherie, Projet personnel d'orientation, Ministère de l'Éducation et de l'Enseignement supérieur. +*2017 L'idée perdue, nouvelle parue dans Les Écrits mariverains 2017, {{ISBN|978-2-9809683-8-9}} +*2017 Coups de cœur, scénario du spectacle de la Corporation des Instrumentistes Associés. +*2016 Éliza Caztel de Sainte-Marie, nouvelle parue dans Les Écrits mariverains 2016, {{ISBN|978-2-9809683-7-2}} +*2016 La CIA sème le trouble, scénario du spectacle de la Corporation des Instrumentistes Associés. +*2015 La photographie numérique, Projet personnel d'orientation, Ministère de l'Éducation du Loisir et du sport. +*2015 Impressions de voyage : le Chili, nouvelle parue dans Les Écrits mariverains 2015, {{ISBN|978-2-9809683-6-5}} +*2015 La CIA, version 5.0, scénario du spectacle de la Corporation des Instrumentistes Associés. +*2014 Le désastreux destin d'Arlette Mallette, nouvelle parue dans Les Écrits mariverains 2014, {{ISBN|978-2-9809683-5-8}} +* 2014 La CIA, L'espace d'une vie, scénario du spectacle de la Corporation des Instrumentistes Associés. +* 2014 Carapaces, Roman publié aux Éditions Textes et Contextes, 279 pages. {{ISBN|978-2-923706-63-4}} +* 2013 La Politique, Projet personnel d'orientation, Ministère de l'Éducation du Loisir et du sport. +* 2013 La CIA poursuit son enquête, scénario du spectacle de la Corporation des Instrumentistes Associés. +* 2013 Napoléon, nouvelle parue dans Les Écrits mariverains 2013. {{ISBN|978-2-9809683-4-1}} +* 2012 Ménage de cave, nouvelle parue dans Les Écrits mariverains, 2012. {{ISBN|978-2-980-9683-3-4}} +* 2012 En quête de mission, scénario du spectacle de la Corporation des Instrumentistes Associés. +* 2012 Finaliste dans deux concours de Zone d’écriture de Radio-Canada en twittérature. +* 2011 La CIA autour du monde, scénario du spectacle de la Corporation des Instrumentistes Associés. +* 2011 En deuxième vitesse, nouvelle parue dans Les Écrits mariverains 2011. {{ISBN|978-2-980-9683-1-0|}} +* 2010 Biographie de Jeannine Rousseau et Rolland Massicotte, scénario. +*2010 Le Projet Adam et Ève, nouvelle parue dans Écrits mariverains 2010, {{ISBN|978-2-980-9683-1-0}} +*2009 Alexandre et Cassiopée, nouvelle parue dans Écrits mariverains 2009. +*2008 ''Dans un mois, dans un an'', Roman publié dans la collection Les mots inventifs, Les Éditions du Mécène, 576 pages. {{ISBN|978-2-923150-61-1}} +*2007 ''L'écriture'', Projet personnel d'orientation, Ministère de l'Éducation du Loisir et du sport. +*2005 ''29, rue des Remparts'', Roman publié dans la collection Les mots inventifs, Les éditions du Mécène, 192 pages. {{ISBN|2-923150-28-7}} +*2003 ''Vie 101'', Essai publié dans la collection Les mots utiles, Les Éditions du Mécène. 126 pages. {{ISBN|2-923150-03-1}} +*2002 ''Le groupe conseil fiscalis'', scénario produit pour le groupe conseil Fiscalis. +*2001 ''Lévis, ville nouvelle'', scénario de deux émissions de trente minutes pour le Comité de transition de la ville de Lévis et Canal Vox +*2001 ''L’école québécoise, ce qu’il y a de mieux pour votre enfant'', scénario produit pour le Ministère de l’éducation du Québec. +*2000 ''Le jeu en valait-il la chandelle?'' scénario produit pour le Centre québécois d’excellence pour la prévention et le traitement du jeu. (Université Laval) +*1999 ''Le hasard, Lucky, on peut rien y changer'', scénario produit pour le Centre québécois d’excellence pour la prévention et le traitement du jeu. (Université Laval) +*1999 ''Un pacte fiscal pour l’an 2000, des idées, de la solidarité'', scénario produit pour l’Union des Municipalités régionales de comté et des municipalités locales. +*1999 ''Détect-o-max et Une journée avec Détect-o-max'', deux scénarios produits pour Conception Ro-main inc. +*1999 ''Propane GRG, à l’écoute de ses clients'', scénario produit pour la firme Propane GRG inc. +*1998 ''Maître du mètre'', scénario d’un documentaire sur les 25 ans du système métrique au Québec. +*1997 ''Le temps des sucres'', scénario produit pour la firme Shady Maple Farms. +*1996 ''Le Génie de campagne'', scénario produit pour les Forces armées canadiennes. +*1996 ''La Compagnie franche de la Marine de Québec'', scénario produit pour les Forces armées canadiennes. +*1995 ''Bon séjour à l'École navale de Québec'', scénario produit pour les Forces armées canadiennes. +*1994 ''Un leadership, des services'', scénario produit pour la Fédération des commissions scolaires du Québec. +*1993 ''Les clubs de recherche d'emploi'', scénario produit pour le Ministère de l'Emploi et de l'Immigration du Canada. +*1992 ''Fiers de notre avenir'', scénario produit pour l'Assurance-Vie Desjardins. +*1992 ''Responsible Leadership'', scénario produit pour la compagnie papetière Donohue. (Prix Corpo Vision) +*1992 Scénarisation d'un ensemble de huit vidéos destinées aux écoles secondaires et aux collèges du Québec, pour la Fondation de l'entrepreneurship Québécois. (Prix Adate) +*1991 ''Guide à l'intention du nouveau personnel'', rédaction d'une brochure d'accueil pour la Commission scolaire Louis-Fréchette. +*1990 Comment ça va chez vous? scénario produit pour la Confédération des caisses Desjardins. +*1990 ''Le choc est aussi grand pour les petits.'' I et II, scénario de deux vidéos pour la Régie de l'assurance automobile du Québec. +*1990 Participation au concours de nouvelles de Radio-Canada avec ''Alexandre et Cassiopée.'' +*1989 Participation au concours de nouvelles de Radio-Canada avec ''Le mystère de la cathédrale.'' +*1989 ''La Double vie d'Antoine Gagnon, Ministre'', scénario d'un téléfilm pour Radio-Canada. +*1988 ''Passeport pour la liberté'', Les Quinze Éditeurs, Montréal. {{ISBN|2-89026-368-1}}. (Prix Robert-Cliche) +*1988 Coédition aux Éditions Jean Picollec, à Paris, du roman ''Passeport pour la liberté'', 303 pages, {{ISBN|2-86477-088-1}}. +*1987 Participation au concours de nouvelles de Radio-''Canada avec Le secret''. +*1987 Collaboration au scénario et aux dialogues de ''Vie décolle'', vidéo produite pour la Commission scolaire Abénakis (21 minutes). +*1983 Rédaction et direction de ''C'est qui ma maman à moi?'' pièce montée par la troupe de théâtre de la Polyvalente Benoît-Vachon de Sainte-Marie de Beauce. +*1982 Rédaction et direction de ''Au nom du père, de la fille et du Sain d'esprit'', pièce de théâtre montée par la troupe de théâtre de la Polyvalente Benoît -Vachon de Sainte-Marie de Beauce. +*1977 Corédaction et mise en scène de la pièce ''Coup de Théâtre à Ste-Onction'' jouée par les élèves de la Polyvalente Benoît-Vachon de Sainte-Marie de Beauce + +== Références == +{{references}} + +{{Portail|littérature}} + +[[Catégorie:Écrivain québécois|Beaudet, Raymond]] + blt8tqtvdx0itbid3l3woct2i5y0au2 + + + 165586805 + 165463529 + 2019-12-21T11:51:28Z + + WikiCleanerBot + 351003 + + + v2.02 - [[P:CS|Correction syntaxique]] (Numéro ISBN : syntaxe erronée - Balises <nowiki>) + wikitext + text/x-wiki + {{À sourcer|date=mars 2019}} +{{voir homonymes|Beaudet}} +{{Infobox Biographie2}} + +'''Raymond Beaudet''' (Québec 1950 - ) est un écrivain et un scénariste [[Québec|québécois]]. Détenteur d’une maîtrise en [[philosophie]] de l’[[Université Laval]] (1975) on le retrouve successivement enseignant, syndicaliste, secrétaire particulier du Ministre des Richesses Naturelles, [[Yves Bérubé]], directeur d’école primaire et directeur d’école secondaire (Polyvalente Benoît-Vachon). Une passion l’anime pendant tout ce temps : l’écriture. Il est l’auteur de quatre romans, d’un essai, d’une trentaine de scénarios, de plusieurs nouvelles et de trois pièces de théâtre. Depuis 2014, il est actif en [[twittérature]]. + +== Honneurs == +* Prix du Patrimoine (2019) Catégorie Interprétation et Diffusion +*Prix coup de cœur du jury au Concours de twittérature du Centre de la Francophonie des Amériques 2016 +* Prix du Patrimoine (2011) Catégorie Interprétation et Diffusion +* [[Prix Robert-Cliche]] ([[1988]]), ''Passeport pour la liberté''<ref>{{lien web | url=http://www.edvlb.com/prixrobertcliche/laureats.aspx | titre=Lauréats du prix Robert-Cliche | consulté le=24 juin 2011}}</ref> +* Prix Corpo-vision (1992) +* Prix Adate (1993) + +== Bibliographie == +*2019 Tableaux et portraits mariverains, Capsules historiques, {{ISBN|978-2-9810768-2-3}}. +*2019 Carnet d'un passager clandestin, nouvelle parue dans Les Écrits Mariverains 2019, {{ISBN|978-2-9810768-0-9}} +*2019 Voix de dépassement, scénario du spectacle de la Corporation des Instrumentistes Associés. +*2018 Marie-Claire et moi, nouvelle parue dans Les Écrits mariverains 2018, {{ISBN|978-2-9809683-9-6}} +*2018 La dernière scène, scénario du spectacle de la Corporation des Instrumentistes Associés. +*2018 La boucherie, Projet personnel d'orientation, Ministère de l'Éducation et de l'Enseignement supérieur. +*2017 L'idée perdue, nouvelle parue dans Les Écrits mariverains 2017, {{ISBN|978-2-9809683-8-9}} +*2017 Coups de cœur, scénario du spectacle de la Corporation des Instrumentistes Associés. +*2016 Éliza Caztel de Sainte-Marie, nouvelle parue dans Les Écrits mariverains 2016, {{ISBN|978-2-9809683-7-2}} +*2016 La CIA sème le trouble, scénario du spectacle de la Corporation des Instrumentistes Associés. +*2015 La photographie numérique, Projet personnel d'orientation, Ministère de l'Éducation du Loisir et du sport. +*2015 Impressions de voyage : le Chili, nouvelle parue dans Les Écrits mariverains 2015, {{ISBN|978-2-9809683-6-5}} +*2015 La CIA, version 5.0, scénario du spectacle de la Corporation des Instrumentistes Associés. +*2014 Le désastreux destin d'Arlette Mallette, nouvelle parue dans Les Écrits mariverains 2014, {{ISBN|978-2-9809683-5-8}} +* 2014 La CIA, L'espace d'une vie, scénario du spectacle de la Corporation des Instrumentistes Associés. +* 2014 Carapaces, Roman publié aux Éditions Textes et Contextes, 279 pages. {{ISBN|978-2-923706-63-4}} +* 2013 La Politique, Projet personnel d'orientation, Ministère de l'Éducation du Loisir et du sport. +* 2013 La CIA poursuit son enquête, scénario du spectacle de la Corporation des Instrumentistes Associés. +* 2013 Napoléon, nouvelle parue dans Les Écrits mariverains 2013. {{ISBN|978-2-9809683-4-1}} +* 2012 Ménage de cave, nouvelle parue dans Les Écrits mariverains, 2012. {{ISBN|978-2-980-9683-3-4}} +* 2012 En quête de mission, scénario du spectacle de la Corporation des Instrumentistes Associés. +* 2012 Finaliste dans deux concours de Zone d’écriture de Radio-Canada en twittérature. +* 2011 La CIA autour du monde, scénario du spectacle de la Corporation des Instrumentistes Associés. +* 2011 En deuxième vitesse, nouvelle parue dans Les Écrits mariverains 2011. {{ISBN|978-2-980-9683-1-0|}} +* 2010 Biographie de Jeannine Rousseau et Rolland Massicotte, scénario. +*2010 Le Projet Adam et Ève, nouvelle parue dans Écrits mariverains 2010, {{ISBN|978-2-980-9683-1-0}} +*2009 Alexandre et Cassiopée, nouvelle parue dans Écrits mariverains 2009. +*2008 ''Dans un mois, dans un an'', Roman publié dans la collection Les mots inventifs, Les Éditions du Mécène, 576 pages. {{ISBN|978-2-923150-61-1}} +*2007 ''L'écriture'', Projet personnel d'orientation, Ministère de l'Éducation du Loisir et du sport. +*2005 ''29, rue des Remparts'', Roman publié dans la collection Les mots inventifs, Les éditions du Mécène, 192 pages. {{ISBN|2-923150-28-7}} +*2003 ''Vie 101'', Essai publié dans la collection Les mots utiles, Les Éditions du Mécène. 126 pages. {{ISBN|2-923150-03-1}} +*2002 ''Le groupe conseil fiscalis'', scénario produit pour le groupe conseil Fiscalis. +*2001 ''Lévis, ville nouvelle'', scénario de deux émissions de trente minutes pour le Comité de transition de la ville de Lévis et Canal Vox +*2001 ''L’école québécoise, ce qu’il y a de mieux pour votre enfant'', scénario produit pour le Ministère de l’éducation du Québec. +*2000 ''Le jeu en valait-il la chandelle?'' scénario produit pour le Centre québécois d’excellence pour la prévention et le traitement du jeu. (Université Laval) +*1999 ''Le hasard, Lucky, on peut rien y changer'', scénario produit pour le Centre québécois d’excellence pour la prévention et le traitement du jeu. (Université Laval) +*1999 ''Un pacte fiscal pour l’an 2000, des idées, de la solidarité'', scénario produit pour l’Union des Municipalités régionales de comté et des municipalités locales. +*1999 ''Détect-o-max et Une journée avec Détect-o-max'', deux scénarios produits pour Conception Ro-main inc. +*1999 ''Propane GRG, à l’écoute de ses clients'', scénario produit pour la firme Propane GRG inc. +*1998 ''Maître du mètre'', scénario d’un documentaire sur les 25 ans du système métrique au Québec. +*1997 ''Le temps des sucres'', scénario produit pour la firme Shady Maple Farms. +*1996 ''Le Génie de campagne'', scénario produit pour les Forces armées canadiennes. +*1996 ''La Compagnie franche de la Marine de Québec'', scénario produit pour les Forces armées canadiennes. +*1995 ''Bon séjour à l'École navale de Québec'', scénario produit pour les Forces armées canadiennes. +*1994 ''Un leadership, des services'', scénario produit pour la Fédération des commissions scolaires du Québec. +*1993 ''Les clubs de recherche d'emploi'', scénario produit pour le Ministère de l'Emploi et de l'Immigration du Canada. +*1992 ''Fiers de notre avenir'', scénario produit pour l'Assurance-Vie Desjardins. +*1992 ''Responsible Leadership'', scénario produit pour la compagnie papetière Donohue. (Prix Corpo Vision) +*1992 Scénarisation d'un ensemble de huit vidéos destinées aux écoles secondaires et aux collèges du Québec, pour la Fondation de l'entrepreneurship Québécois. (Prix Adate) +*1991 ''Guide à l'intention du nouveau personnel'', rédaction d'une brochure d'accueil pour la Commission scolaire Louis-Fréchette. +*1990 Comment ça va chez vous? scénario produit pour la Confédération des caisses Desjardins. +*1990 ''Le choc est aussi grand pour les petits.'' I et II, scénario de deux vidéos pour la Régie de l'assurance automobile du Québec. +*1990 Participation au concours de nouvelles de Radio-Canada avec ''Alexandre et Cassiopée.'' +*1989 Participation au concours de nouvelles de Radio-Canada avec ''Le mystère de la cathédrale.'' +*1989 ''La Double vie d'Antoine Gagnon, Ministre'', scénario d'un téléfilm pour Radio-Canada. +*1988 ''Passeport pour la liberté'', Les Quinze Éditeurs, Montréal. {{ISBN|2-89026-368-1}}. (Prix Robert-Cliche) +*1988 Coédition aux Éditions Jean Picollec, à Paris, du roman ''Passeport pour la liberté'', 303 pages, {{ISBN|2-86477-088-1}}. +*1987 Participation au concours de nouvelles de Radio-''Canada avec Le secret''. +*1987 Collaboration au scénario et aux dialogues de ''Vie décolle'', vidéo produite pour la Commission scolaire Abénakis (21 minutes). +*1983 Rédaction et direction de ''C'est qui ma maman à moi?'' pièce montée par la troupe de théâtre de la Polyvalente Benoît-Vachon de Sainte-Marie de Beauce. +*1982 Rédaction et direction de ''Au nom du père, de la fille et du Sain d'esprit'', pièce de théâtre montée par la troupe de théâtre de la Polyvalente Benoît -Vachon de Sainte-Marie de Beauce. +*1977 Corédaction et mise en scène de la pièce ''Coup de Théâtre à Ste-Onction'' jouée par les élèves de la Polyvalente Benoît-Vachon de Sainte-Marie de Beauce + +== Références == +{{references}} + +{{Portail|littérature}} + +[[Catégorie:Écrivain québécois|Beaudet, Raymond]] + 1w99ewcqr7d62gaa69ciklw9a8j8fds + + + 174832748 + 165586805 + 2020-09-19T05:38:47Z + + Jmax + 68688 + + + + [[Catégorie:Naissance en 1950]] + wikitext + text/x-wiki + {{À sourcer|date=mars 2019}} +{{voir homonymes|Beaudet}} +{{Infobox Biographie2}} + +'''Raymond Beaudet''' (Québec 1950 - ) est un écrivain et un scénariste [[Québec|québécois]]. Détenteur d’une maîtrise en [[philosophie]] de l’[[Université Laval]] (1975) on le retrouve successivement enseignant, syndicaliste, secrétaire particulier du Ministre des Richesses Naturelles, [[Yves Bérubé]], directeur d’école primaire et directeur d’école secondaire (Polyvalente Benoît-Vachon). Une passion l’anime pendant tout ce temps : l’écriture. Il est l’auteur de quatre romans, d’un essai, d’une trentaine de scénarios, de plusieurs nouvelles et de trois pièces de théâtre. Depuis 2014, il est actif en [[twittérature]]. + +== Honneurs == +* Prix du Patrimoine (2019) Catégorie Interprétation et Diffusion +*Prix coup de cœur du jury au Concours de twittérature du Centre de la Francophonie des Amériques 2016 +* Prix du Patrimoine (2011) Catégorie Interprétation et Diffusion +* [[Prix Robert-Cliche]] ([[1988]]), ''Passeport pour la liberté''<ref>{{lien web | url=http://www.edvlb.com/prixrobertcliche/laureats.aspx | titre=Lauréats du prix Robert-Cliche | consulté le=24 juin 2011}}</ref> +* Prix Corpo-vision (1992) +* Prix Adate (1993) + +== Bibliographie == +*2019 Tableaux et portraits mariverains, Capsules historiques, {{ISBN|978-2-9810768-2-3}}. +*2019 Carnet d'un passager clandestin, nouvelle parue dans Les Écrits Mariverains 2019, {{ISBN|978-2-9810768-0-9}} +*2019 Voix de dépassement, scénario du spectacle de la Corporation des Instrumentistes Associés. +*2018 Marie-Claire et moi, nouvelle parue dans Les Écrits mariverains 2018, {{ISBN|978-2-9809683-9-6}} +*2018 La dernière scène, scénario du spectacle de la Corporation des Instrumentistes Associés. +*2018 La boucherie, Projet personnel d'orientation, Ministère de l'Éducation et de l'Enseignement supérieur. +*2017 L'idée perdue, nouvelle parue dans Les Écrits mariverains 2017, {{ISBN|978-2-9809683-8-9}} +*2017 Coups de cœur, scénario du spectacle de la Corporation des Instrumentistes Associés. +*2016 Éliza Caztel de Sainte-Marie, nouvelle parue dans Les Écrits mariverains 2016, {{ISBN|978-2-9809683-7-2}} +*2016 La CIA sème le trouble, scénario du spectacle de la Corporation des Instrumentistes Associés. +*2015 La photographie numérique, Projet personnel d'orientation, Ministère de l'Éducation du Loisir et du sport. +*2015 Impressions de voyage : le Chili, nouvelle parue dans Les Écrits mariverains 2015, {{ISBN|978-2-9809683-6-5}} +*2015 La CIA, version 5.0, scénario du spectacle de la Corporation des Instrumentistes Associés. +*2014 Le désastreux destin d'Arlette Mallette, nouvelle parue dans Les Écrits mariverains 2014, {{ISBN|978-2-9809683-5-8}} +* 2014 La CIA, L'espace d'une vie, scénario du spectacle de la Corporation des Instrumentistes Associés. +* 2014 Carapaces, Roman publié aux Éditions Textes et Contextes, 279 pages. {{ISBN|978-2-923706-63-4}} +* 2013 La Politique, Projet personnel d'orientation, Ministère de l'Éducation du Loisir et du sport. +* 2013 La CIA poursuit son enquête, scénario du spectacle de la Corporation des Instrumentistes Associés. +* 2013 Napoléon, nouvelle parue dans Les Écrits mariverains 2013. {{ISBN|978-2-9809683-4-1}} +* 2012 Ménage de cave, nouvelle parue dans Les Écrits mariverains, 2012. {{ISBN|978-2-980-9683-3-4}} +* 2012 En quête de mission, scénario du spectacle de la Corporation des Instrumentistes Associés. +* 2012 Finaliste dans deux concours de Zone d’écriture de Radio-Canada en twittérature. +* 2011 La CIA autour du monde, scénario du spectacle de la Corporation des Instrumentistes Associés. +* 2011 En deuxième vitesse, nouvelle parue dans Les Écrits mariverains 2011. {{ISBN|978-2-980-9683-1-0|}} +* 2010 Biographie de Jeannine Rousseau et Rolland Massicotte, scénario. +*2010 Le Projet Adam et Ève, nouvelle parue dans Écrits mariverains 2010, {{ISBN|978-2-980-9683-1-0}} +*2009 Alexandre et Cassiopée, nouvelle parue dans Écrits mariverains 2009. +*2008 ''Dans un mois, dans un an'', Roman publié dans la collection Les mots inventifs, Les Éditions du Mécène, 576 pages. {{ISBN|978-2-923150-61-1}} +*2007 ''L'écriture'', Projet personnel d'orientation, Ministère de l'Éducation du Loisir et du sport. +*2005 ''29, rue des Remparts'', Roman publié dans la collection Les mots inventifs, Les éditions du Mécène, 192 pages. {{ISBN|2-923150-28-7}} +*2003 ''Vie 101'', Essai publié dans la collection Les mots utiles, Les Éditions du Mécène. 126 pages. {{ISBN|2-923150-03-1}} +*2002 ''Le groupe conseil fiscalis'', scénario produit pour le groupe conseil Fiscalis. +*2001 ''Lévis, ville nouvelle'', scénario de deux émissions de trente minutes pour le Comité de transition de la ville de Lévis et Canal Vox +*2001 ''L’école québécoise, ce qu’il y a de mieux pour votre enfant'', scénario produit pour le Ministère de l’éducation du Québec. +*2000 ''Le jeu en valait-il la chandelle?'' scénario produit pour le Centre québécois d’excellence pour la prévention et le traitement du jeu. (Université Laval) +*1999 ''Le hasard, Lucky, on peut rien y changer'', scénario produit pour le Centre québécois d’excellence pour la prévention et le traitement du jeu. (Université Laval) +*1999 ''Un pacte fiscal pour l’an 2000, des idées, de la solidarité'', scénario produit pour l’Union des Municipalités régionales de comté et des municipalités locales. +*1999 ''Détect-o-max et Une journée avec Détect-o-max'', deux scénarios produits pour Conception Ro-main inc. +*1999 ''Propane GRG, à l’écoute de ses clients'', scénario produit pour la firme Propane GRG inc. +*1998 ''Maître du mètre'', scénario d’un documentaire sur les 25 ans du système métrique au Québec. +*1997 ''Le temps des sucres'', scénario produit pour la firme Shady Maple Farms. +*1996 ''Le Génie de campagne'', scénario produit pour les Forces armées canadiennes. +*1996 ''La Compagnie franche de la Marine de Québec'', scénario produit pour les Forces armées canadiennes. +*1995 ''Bon séjour à l'École navale de Québec'', scénario produit pour les Forces armées canadiennes. +*1994 ''Un leadership, des services'', scénario produit pour la Fédération des commissions scolaires du Québec. +*1993 ''Les clubs de recherche d'emploi'', scénario produit pour le Ministère de l'Emploi et de l'Immigration du Canada. +*1992 ''Fiers de notre avenir'', scénario produit pour l'Assurance-Vie Desjardins. +*1992 ''Responsible Leadership'', scénario produit pour la compagnie papetière Donohue. (Prix Corpo Vision) +*1992 Scénarisation d'un ensemble de huit vidéos destinées aux écoles secondaires et aux collèges du Québec, pour la Fondation de l'entrepreneurship Québécois. (Prix Adate) +*1991 ''Guide à l'intention du nouveau personnel'', rédaction d'une brochure d'accueil pour la Commission scolaire Louis-Fréchette. +*1990 Comment ça va chez vous? scénario produit pour la Confédération des caisses Desjardins. +*1990 ''Le choc est aussi grand pour les petits.'' I et II, scénario de deux vidéos pour la Régie de l'assurance automobile du Québec. +*1990 Participation au concours de nouvelles de Radio-Canada avec ''Alexandre et Cassiopée.'' +*1989 Participation au concours de nouvelles de Radio-Canada avec ''Le mystère de la cathédrale.'' +*1989 ''La Double vie d'Antoine Gagnon, Ministre'', scénario d'un téléfilm pour Radio-Canada. +*1988 ''Passeport pour la liberté'', Les Quinze Éditeurs, Montréal. {{ISBN|2-89026-368-1}}. (Prix Robert-Cliche) +*1988 Coédition aux Éditions Jean Picollec, à Paris, du roman ''Passeport pour la liberté'', 303 pages, {{ISBN|2-86477-088-1}}. +*1987 Participation au concours de nouvelles de Radio-''Canada avec Le secret''. +*1987 Collaboration au scénario et aux dialogues de ''Vie décolle'', vidéo produite pour la Commission scolaire Abénakis (21 minutes). +*1983 Rédaction et direction de ''C'est qui ma maman à moi?'' pièce montée par la troupe de théâtre de la Polyvalente Benoît-Vachon de Sainte-Marie de Beauce. +*1982 Rédaction et direction de ''Au nom du père, de la fille et du Sain d'esprit'', pièce de théâtre montée par la troupe de théâtre de la Polyvalente Benoît -Vachon de Sainte-Marie de Beauce. +*1977 Corédaction et mise en scène de la pièce ''Coup de Théâtre à Ste-Onction'' jouée par les élèves de la Polyvalente Benoît-Vachon de Sainte-Marie de Beauce + +== Références == +{{references}} + +{{Portail|littérature}} + +[[Catégorie:Écrivain québécois|Beaudet, Raymond]] +[[Catégorie:Naissance en 1950]] + pa3lzux9ekc8305noo1srf9x3pik51s + + + 175708416 + 174832748 + 2020-10-19T06:47:23Z + + Mandariine + 205425 + + trop de crème dans les choux + wikitext + text/x-wiki + {{À sourcer|date=mars 2019}} +{{voir homonymes|Beaudet}} +{{Infobox Biographie2}} + +'''Raymond Beaudet''' (Québec 1950 - ) est un écrivain et un scénariste [[Québec|québécois]]. Détenteur d’une maîtrise en [[philosophie]] de l’[[Université Laval]] (1975) on le retrouve successivement enseignant, syndicaliste, secrétaire particulier du Ministre des Richesses Naturelles, [[Yves Bérubé]], directeur d’école primaire et directeur d’école secondaire (Polyvalente Benoît-Vachon). Une passion l’anime pendant tout ce temps : l’écriture. Il est l’auteur de quatre romans, d’un essai, d’une trentaine de scénarios, de plusieurs nouvelles et de trois pièces de théâtre. Depuis 2014, il est actif en [[twittérature]]. + +== Honneurs == +* Prix du Patrimoine (2019) Catégorie Interprétation et Diffusion +*Prix coup de cœur du jury au Concours de twittérature du Centre de la Francophonie des Amériques 2016 +* Prix du Patrimoine (2011) Catégorie Interprétation et Diffusion +* [[Prix Robert-Cliche]] ([[1988]]), ''Passeport pour la liberté''<ref>{{lien web | url=http://www.edvlb.com/prixrobertcliche/laureats.aspx | titre=Lauréats du prix Robert-Cliche | consulté le=24 juin 2011}}</ref> +* Prix Corpo-vision (1992) +* Prix Adate (1993) + +== Bibliographie == +*2019 Tableaux et portraits mariverains, Capsules historiques, {{ISBN|978-2-9810768-2-3}}. +*2019 Carnet d'un passager clandestin, nouvelle parue dans Les Écrits Mariverains 2019, {{ISBN|978-2-9810768-0-9}} +*2019 Voix de dépassement, scénario du spectacle de la Corporation des Instrumentistes Associés. +*2018 Marie-Claire et moi, nouvelle parue dans Les Écrits mariverains 2018, {{ISBN|978-2-9809683-9-6}} +*2018 La dernière scène, scénario du spectacle de la Corporation des Instrumentistes Associés. +*2018 La boucherie, Projet personnel d'orientation, Ministère de l'Éducation et de l'Enseignement supérieur. +*2017 L'idée perdue, nouvelle parue dans Les Écrits mariverains 2017, {{ISBN|978-2-9809683-8-9}} +*2017 Coups de cœur, scénario du spectacle de la Corporation des Instrumentistes Associés. +*2016 Éliza Caztel de Sainte-Marie, nouvelle parue dans Les Écrits mariverains 2016, {{ISBN|978-2-9809683-7-2}} +*2016 La CIA sème le trouble, scénario du spectacle de la Corporation des Instrumentistes Associés. +*2015 La photographie numérique, Projet personnel d'orientation, Ministère de l'Éducation du Loisir et du sport. +*2015 Impressions de voyage : le Chili, nouvelle parue dans Les Écrits mariverains 2015, {{ISBN|978-2-9809683-6-5}} +*2015 La CIA, version 5.0, scénario du spectacle de la Corporation des Instrumentistes Associés. +*2014 Le désastreux destin d'Arlette Mallette, nouvelle parue dans Les Écrits mariverains 2014, {{ISBN|978-2-9809683-5-8}} +* 2014 La CIA, L'espace d'une vie, scénario du spectacle de la Corporation des Instrumentistes Associés. +* 2014 Carapaces, Roman publié aux Éditions Textes et Contextes, 279 pages. {{ISBN|978-2-923706-63-4}} +* 2013 La Politique, Projet personnel d'orientation, Ministère de l'Éducation du Loisir et du sport. +* 2013 La CIA poursuit son enquête, scénario du spectacle de la Corporation des Instrumentistes Associés. +* 2013 Napoléon, nouvelle parue dans Les Écrits mariverains 2013. {{ISBN|978-2-9809683-4-1}} +* 2012 Ménage de cave, nouvelle parue dans Les Écrits mariverains, 2012. {{ISBN|978-2-980-9683-3-4}} +* 2012 En quête de mission, scénario du spectacle de la Corporation des Instrumentistes Associés. +* 2012 Finaliste dans deux concours de Zone d’écriture de Radio-Canada en twittérature. +* 2011 La CIA autour du monde, scénario du spectacle de la Corporation des Instrumentistes Associés. +* 2011 En deuxième vitesse, nouvelle parue dans Les Écrits mariverains 2011. {{ISBN|978-2-980-9683-1-0|}} +* 2010 Biographie de Jeannine Rousseau et Rolland Massicotte, scénario. +*2010 Le Projet Adam et Ève, nouvelle parue dans Écrits mariverains 2010, {{ISBN|978-2-980-9683-1-0}} +*2009 Alexandre et Cassiopée, nouvelle parue dans Écrits mariverains 2009. +*2008 ''Dans un mois, dans un an'', Roman publié dans la collection Les mots inventifs, Les Éditions du Mécène, 576 pages. {{ISBN|978-2-923150-61-1}} +*2007 ''L'écriture'', Projet personnel d'orientation, Ministère de l'Éducation du Loisir et du sport. +*2005 ''29, rue des Remparts'', Roman publié dans la collection Les mots inventifs, Les éditions du Mécène, 192 pages. {{ISBN|2-923150-28-7}} +*2003 ''Vie 101'', Essai publié dans la collection Les mots utiles, Les Éditions du Mécène. 126 pages. {{ISBN|2-923150-03-1}} +*2002 ''Le groupe conseil fiscalis'', scénario produit pour le groupe conseil Fiscalis. +*2001 ''Lévis, ville nouvelle'', scénario de deux émissions de trente minutes pour le Comité de transition de la ville de Lévis et Canal Vox +*2001 ''L’école québécoise, ce qu’il y a de mieux pour votre enfant'', scénario produit pour le Ministère de l’éducation du Québec. +*2000 ''Le jeu en valait-il la chandelle?'' scénario produit pour le Centre québécois d’excellence pour la prévention et le traitement du jeu. (Université Laval) +*1999 ''Le hasard, Lucky, on peut rien y changer'', scénario produit pour le Centre québécois d’excellence pour la prévention et le traitement du jeu. (Université Laval) +*1999 ''Un pacte fiscal pour l’an 2000, des idées, de la solidarité'', scénario produit pour l’Union des Municipalités régionales de comté et des municipalités locales. +*1999 ''Détect-o-max et Une journée avec Détect-o-max'', deux scénarios produits pour Conception Ro-main inc. +*1999 ''Propane GRG, à l’écoute de ses clients'', scénario produit pour la firme Propane GRG inc. +*1998 ''Maître du mètre'', scénario d’un documentaire sur les 25 ans du système métrique au Québec. +*1997 ''Le temps des sucres'', scénario produit pour la firme Shady Maple Farms. +*1996 ''Le Génie de campagne'', scénario produit pour les Forces armées canadiennes. +*1996 ''La Compagnie franche de la Marine de Québec'', scénario produit pour les Forces armées canadiennes. +*1995 ''Bon séjour à l'École navale de Québec'', scénario produit pour les Forces armées canadiennes. +*1994 ''Un leadership, des services'', scénario produit pour la Fédération des commissions scolaires du Québec. +*1993 ''Les clubs de recherche d'emploi'', scénario produit pour le Ministère de l'Emploi et de l'Immigration du Canada. +*1992 ''Fiers de notre avenir'', scénario produit pour l'Assurance-Vie Desjardins. +*1992 ''Responsible Leadership'', scénario produit pour la compagnie papetière Donohue. (Prix Corpo Vision) +*1992 Scénarisation d'un ensemble de huit vidéos destinées aux écoles secondaires et aux collèges du Québec, pour la Fondation de l'entrepreneurship Québécois. (Prix Adate) +*1991 ''Guide à l'intention du nouveau personnel'', rédaction d'une brochure d'accueil pour la Commission scolaire Louis-Fréchette. +*1990 Comment ça va chez vous? scénario produit pour la Confédération des caisses Desjardins. +*1990 ''Le choc est aussi grand pour les petits.'' I et II, scénario de deux vidéos pour la Régie de l'assurance automobile du Québec. +*1990 Participation au concours de nouvelles de Radio-Canada avec ''Alexandre et Cassiopée.'' +*1989 Participation au concours de nouvelles de Radio-Canada avec ''Le mystère de la cathédrale.'' +*1989 ''La Double vie d'Antoine Gagnon, Ministre'', scénario d'un téléfilm pour Radio-Canada. +*1988 ''Passeport pour la liberté'', Les Quinze Éditeurs, Montréal. {{ISBN|2-89026-368-1}}. (Prix Robert-Cliche) +*1988 Coédition aux Éditions Jean Picollec, à Paris, du roman ''Passeport pour la liberté'', 303 pages, {{ISBN|2-86477-088-1}}. +*1987 Participation au concours de nouvelles de Radio-''Canada avec Le secret''. +*1987 Collaboration au scénario et aux dialogues de ''Vie décolle'', vidéo produite pour la Commission scolaire Abénakis (21 minutes). +*1983 Rédaction et direction de ''C'est qui ma maman à moi?'' pièce de théâtre montée par la troupe de la Polyvalente Benoît-Vachon de Sainte-Marie de Beauce. +*1982 Rédaction et direction de ''Au nom du père, de la fille et du Sain d'esprit'', pièce de théâtre montée par la troupe de la Polyvalente Benoît -Vachon de Sainte-Marie de Beauce. +*1977 Corédaction et mise en scène de la pièce ''Coup de Théâtre à Ste-Onction'' jouée par les élèves de la Polyvalente Benoît-Vachon de Sainte-Marie de Beauce + +== Références == +{{references}} + +{{Portail|littérature}} + +[[Catégorie:Écrivain québécois|Beaudet, Raymond]] +[[Catégorie:Naissance en 1950]] + 66f2wrov6q0u3fssg4f16llo7e6u2ly + + + 178141694 + 175708416 + 2020-12-28T16:04:48Z + + SuperTom4277 + 3477067 + + Ajout d'une publication + wikitext + text/x-wiki + {{À sourcer|date=mars 2019}} +{{voir homonymes|Beaudet}} +{{Infobox Biographie2}} + +'''Raymond Beaudet''' (Québec 1950 - ) est un écrivain et un scénariste [[Québec|québécois]]. Détenteur d’une maîtrise en [[philosophie]] de l’[[Université Laval]] (1975) on le retrouve successivement enseignant, syndicaliste, secrétaire particulier du Ministre des Richesses Naturelles, [[Yves Bérubé]], directeur d’école primaire et directeur d’école secondaire (Polyvalente Benoît-Vachon). Une passion l’anime pendant tout ce temps : l’écriture. Il est l’auteur de quatre romans, d’un essai, d’une trentaine de scénarios, de plusieurs nouvelles et de trois pièces de théâtre. Depuis 2014, il est actif en [[twittérature]]. + +== Honneurs == +* Prix du Patrimoine (2019) Catégorie Interprétation et Diffusion +*Prix coup de cœur du jury au Concours de twittérature du Centre de la Francophonie des Amériques 2016 +* Prix du Patrimoine (2011) Catégorie Interprétation et Diffusion +* [[Prix Robert-Cliche]] ([[1988]]), ''Passeport pour la liberté''<ref>{{lien web | url=http://www.edvlb.com/prixrobertcliche/laureats.aspx | titre=Lauréats du prix Robert-Cliche | consulté le=24 juin 2011}}</ref> +* Prix Corpo-vision (1992) +* Prix Adate (1993) + +== Bibliographie == +*2020 EN décide de vendre, nouvelle parue dans Les Écrits mariverains 2020, {{ISBN|978-2-9810768-2-3}} +*2019 Tableaux et portraits mariverains, Capsules historiques, {{ISBN|978-2-9810768-2-3}}. +*2019 Carnet d'un passager clandestin, nouvelle parue dans Les Écrits Mariverains 2019, {{ISBN|978-2-9810768-0-9}} +*2019 Voix de dépassement, scénario du spectacle de la Corporation des Instrumentistes Associés. +*2018 Marie-Claire et moi, nouvelle parue dans Les Écrits mariverains 2018, {{ISBN|978-2-9809683-9-6}} +*2018 La dernière scène, scénario du spectacle de la Corporation des Instrumentistes Associés. +*2018 La boucherie, Projet personnel d'orientation, Ministère de l'Éducation et de l'Enseignement supérieur. +*2017 L'idée perdue, nouvelle parue dans Les Écrits mariverains 2017, {{ISBN|978-2-9809683-8-9}} +*2017 Coups de cœur, scénario du spectacle de la Corporation des Instrumentistes Associés. +*2016 Éliza Caztel de Sainte-Marie, nouvelle parue dans Les Écrits mariverains 2016, {{ISBN|978-2-9809683-7-2}} +*2016 La CIA sème le trouble, scénario du spectacle de la Corporation des Instrumentistes Associés. +*2015 La photographie numérique, Projet personnel d'orientation, Ministère de l'Éducation du Loisir et du sport. +*2015 Impressions de voyage : le Chili, nouvelle parue dans Les Écrits mariverains 2015, {{ISBN|978-2-9809683-6-5}} +*2015 La CIA, version 5.0, scénario du spectacle de la Corporation des Instrumentistes Associés. +*2014 Le désastreux destin d'Arlette Mallette, nouvelle parue dans Les Écrits mariverains 2014, {{ISBN|978-2-9809683-5-8}} +* 2014 La CIA, L'espace d'une vie, scénario du spectacle de la Corporation des Instrumentistes Associés. +* 2014 Carapaces, Roman publié aux Éditions Textes et Contextes, 279 pages. {{ISBN|978-2-923706-63-4}} +* 2013 La Politique, Projet personnel d'orientation, Ministère de l'Éducation du Loisir et du sport. +* 2013 La CIA poursuit son enquête, scénario du spectacle de la Corporation des Instrumentistes Associés. +* 2013 Napoléon, nouvelle parue dans Les Écrits mariverains 2013. {{ISBN|978-2-9809683-4-1}} +* 2012 Ménage de cave, nouvelle parue dans Les Écrits mariverains, 2012. {{ISBN|978-2-980-9683-3-4}} +* 2012 En quête de mission, scénario du spectacle de la Corporation des Instrumentistes Associés. +* 2012 Finaliste dans deux concours de Zone d’écriture de Radio-Canada en twittérature. +* 2011 La CIA autour du monde, scénario du spectacle de la Corporation des Instrumentistes Associés. +* 2011 En deuxième vitesse, nouvelle parue dans Les Écrits mariverains 2011. {{ISBN|978-2-980-9683-1-0|}} +* 2010 Biographie de Jeannine Rousseau et Rolland Massicotte, scénario. +*2010 Le Projet Adam et Ève, nouvelle parue dans Écrits mariverains 2010, {{ISBN|978-2-980-9683-1-0}} +*2009 Alexandre et Cassiopée, nouvelle parue dans Écrits mariverains 2009. +*2008 ''Dans un mois, dans un an'', Roman publié dans la collection Les mots inventifs, Les Éditions du Mécène, 576 pages. {{ISBN|978-2-923150-61-1}} +*2007 ''L'écriture'', Projet personnel d'orientation, Ministère de l'Éducation du Loisir et du sport. +*2005 ''29, rue des Remparts'', Roman publié dans la collection Les mots inventifs, Les éditions du Mécène, 192 pages. {{ISBN|2-923150-28-7}} +*2003 ''Vie 101'', Essai publié dans la collection Les mots utiles, Les Éditions du Mécène. 126 pages. {{ISBN|2-923150-03-1}} +*2002 ''Le groupe conseil fiscalis'', scénario produit pour le groupe conseil Fiscalis. +*2001 ''Lévis, ville nouvelle'', scénario de deux émissions de trente minutes pour le Comité de transition de la ville de Lévis et Canal Vox +*2001 ''L’école québécoise, ce qu’il y a de mieux pour votre enfant'', scénario produit pour le Ministère de l’éducation du Québec. +*2000 ''Le jeu en valait-il la chandelle?'' scénario produit pour le Centre québécois d’excellence pour la prévention et le traitement du jeu. (Université Laval) +*1999 ''Le hasard, Lucky, on peut rien y changer'', scénario produit pour le Centre québécois d’excellence pour la prévention et le traitement du jeu. (Université Laval) +*1999 ''Un pacte fiscal pour l’an 2000, des idées, de la solidarité'', scénario produit pour l’Union des Municipalités régionales de comté et des municipalités locales. +*1999 ''Détect-o-max et Une journée avec Détect-o-max'', deux scénarios produits pour Conception Ro-main inc. +*1999 ''Propane GRG, à l’écoute de ses clients'', scénario produit pour la firme Propane GRG inc. +*1998 ''Maître du mètre'', scénario d’un documentaire sur les 25 ans du système métrique au Québec. +*1997 ''Le temps des sucres'', scénario produit pour la firme Shady Maple Farms. +*1996 ''Le Génie de campagne'', scénario produit pour les Forces armées canadiennes. +*1996 ''La Compagnie franche de la Marine de Québec'', scénario produit pour les Forces armées canadiennes. +*1995 ''Bon séjour à l'École navale de Québec'', scénario produit pour les Forces armées canadiennes. +*1994 ''Un leadership, des services'', scénario produit pour la Fédération des commissions scolaires du Québec. +*1993 ''Les clubs de recherche d'emploi'', scénario produit pour le Ministère de l'Emploi et de l'Immigration du Canada. +*1992 ''Fiers de notre avenir'', scénario produit pour l'Assurance-Vie Desjardins. +*1992 ''Responsible Leadership'', scénario produit pour la compagnie papetière Donohue. (Prix Corpo Vision) +*1992 Scénarisation d'un ensemble de huit vidéos destinées aux écoles secondaires et aux collèges du Québec, pour la Fondation de l'entrepreneurship Québécois. (Prix Adate) +*1991 ''Guide à l'intention du nouveau personnel'', rédaction d'une brochure d'accueil pour la Commission scolaire Louis-Fréchette. +*1990 Comment ça va chez vous? scénario produit pour la Confédération des caisses Desjardins. +*1990 ''Le choc est aussi grand pour les petits.'' I et II, scénario de deux vidéos pour la Régie de l'assurance automobile du Québec. +*1990 Participation au concours de nouvelles de Radio-Canada avec ''Alexandre et Cassiopée.'' +*1989 Participation au concours de nouvelles de Radio-Canada avec ''Le mystère de la cathédrale.'' +*1989 ''La Double vie d'Antoine Gagnon, Ministre'', scénario d'un téléfilm pour Radio-Canada. +*1988 ''Passeport pour la liberté'', Les Quinze Éditeurs, Montréal. {{ISBN|2-89026-368-1}}. (Prix Robert-Cliche) +*1988 Coédition aux Éditions Jean Picollec, à Paris, du roman ''Passeport pour la liberté'', 303 pages, {{ISBN|2-86477-088-1}}. +*1987 Participation au concours de nouvelles de Radio-''Canada avec Le secret''. +*1987 Collaboration au scénario et aux dialogues de ''Vie décolle'', vidéo produite pour la Commission scolaire Abénakis (21 minutes). +*1983 Rédaction et direction de ''C'est qui ma maman à moi?'' pièce de théâtre montée par la troupe de la Polyvalente Benoît-Vachon de Sainte-Marie de Beauce. +*1982 Rédaction et direction de ''Au nom du père, de la fille et du Sain d'esprit'', pièce de théâtre montée par la troupe de la Polyvalente Benoît -Vachon de Sainte-Marie de Beauce. +*1977 Corédaction et mise en scène de la pièce ''Coup de Théâtre à Ste-Onction'' jouée par les élèves de la Polyvalente Benoît-Vachon de Sainte-Marie de Beauce + +== Références == +{{references}} + +{{Portail|littérature}} + +[[Catégorie:Écrivain québécois|Beaudet, Raymond]] +[[Catégorie:Naissance en 1950]] + a13kkqyxvuhsw2aitfl1pvtauiisewn + + + 178141731 + 178141694 + 2020-12-28T16:05:43Z + + SuperTom4277 + 3477067 + + /* Bibliographie */ correction d'un caractère + wikitext + text/x-wiki + {{À sourcer|date=mars 2019}} +{{voir homonymes|Beaudet}} +{{Infobox Biographie2}} + +'''Raymond Beaudet''' (Québec 1950 - ) est un écrivain et un scénariste [[Québec|québécois]]. Détenteur d’une maîtrise en [[philosophie]] de l’[[Université Laval]] (1975) on le retrouve successivement enseignant, syndicaliste, secrétaire particulier du Ministre des Richesses Naturelles, [[Yves Bérubé]], directeur d’école primaire et directeur d’école secondaire (Polyvalente Benoît-Vachon). Une passion l’anime pendant tout ce temps : l’écriture. Il est l’auteur de quatre romans, d’un essai, d’une trentaine de scénarios, de plusieurs nouvelles et de trois pièces de théâtre. Depuis 2014, il est actif en [[twittérature]]. + +== Honneurs == +* Prix du Patrimoine (2019) Catégorie Interprétation et Diffusion +*Prix coup de cœur du jury au Concours de twittérature du Centre de la Francophonie des Amériques 2016 +* Prix du Patrimoine (2011) Catégorie Interprétation et Diffusion +* [[Prix Robert-Cliche]] ([[1988]]), ''Passeport pour la liberté''<ref>{{lien web | url=http://www.edvlb.com/prixrobertcliche/laureats.aspx | titre=Lauréats du prix Robert-Cliche | consulté le=24 juin 2011}}</ref> +* Prix Corpo-vision (1992) +* Prix Adate (1993) + +== Bibliographie == +*2020 En décide de vendre, nouvelle parue dans Les Écrits mariverains 2020, {{ISBN|978-2-9810768-2-3}} +*2019 Tableaux et portraits mariverains, Capsules historiques, {{ISBN|978-2-9810768-2-3}}. +*2019 Carnet d'un passager clandestin, nouvelle parue dans Les Écrits Mariverains 2019, {{ISBN|978-2-9810768-0-9}} +*2019 Voix de dépassement, scénario du spectacle de la Corporation des Instrumentistes Associés. +*2018 Marie-Claire et moi, nouvelle parue dans Les Écrits mariverains 2018, {{ISBN|978-2-9809683-9-6}} +*2018 La dernière scène, scénario du spectacle de la Corporation des Instrumentistes Associés. +*2018 La boucherie, Projet personnel d'orientation, Ministère de l'Éducation et de l'Enseignement supérieur. +*2017 L'idée perdue, nouvelle parue dans Les Écrits mariverains 2017, {{ISBN|978-2-9809683-8-9}} +*2017 Coups de cœur, scénario du spectacle de la Corporation des Instrumentistes Associés. +*2016 Éliza Caztel de Sainte-Marie, nouvelle parue dans Les Écrits mariverains 2016, {{ISBN|978-2-9809683-7-2}} +*2016 La CIA sème le trouble, scénario du spectacle de la Corporation des Instrumentistes Associés. +*2015 La photographie numérique, Projet personnel d'orientation, Ministère de l'Éducation du Loisir et du sport. +*2015 Impressions de voyage : le Chili, nouvelle parue dans Les Écrits mariverains 2015, {{ISBN|978-2-9809683-6-5}} +*2015 La CIA, version 5.0, scénario du spectacle de la Corporation des Instrumentistes Associés. +*2014 Le désastreux destin d'Arlette Mallette, nouvelle parue dans Les Écrits mariverains 2014, {{ISBN|978-2-9809683-5-8}} +* 2014 La CIA, L'espace d'une vie, scénario du spectacle de la Corporation des Instrumentistes Associés. +* 2014 Carapaces, Roman publié aux Éditions Textes et Contextes, 279 pages. {{ISBN|978-2-923706-63-4}} +* 2013 La Politique, Projet personnel d'orientation, Ministère de l'Éducation du Loisir et du sport. +* 2013 La CIA poursuit son enquête, scénario du spectacle de la Corporation des Instrumentistes Associés. +* 2013 Napoléon, nouvelle parue dans Les Écrits mariverains 2013. {{ISBN|978-2-9809683-4-1}} +* 2012 Ménage de cave, nouvelle parue dans Les Écrits mariverains, 2012. {{ISBN|978-2-980-9683-3-4}} +* 2012 En quête de mission, scénario du spectacle de la Corporation des Instrumentistes Associés. +* 2012 Finaliste dans deux concours de Zone d’écriture de Radio-Canada en twittérature. +* 2011 La CIA autour du monde, scénario du spectacle de la Corporation des Instrumentistes Associés. +* 2011 En deuxième vitesse, nouvelle parue dans Les Écrits mariverains 2011. {{ISBN|978-2-980-9683-1-0|}} +* 2010 Biographie de Jeannine Rousseau et Rolland Massicotte, scénario. +*2010 Le Projet Adam et Ève, nouvelle parue dans Écrits mariverains 2010, {{ISBN|978-2-980-9683-1-0}} +*2009 Alexandre et Cassiopée, nouvelle parue dans Écrits mariverains 2009. +*2008 ''Dans un mois, dans un an'', Roman publié dans la collection Les mots inventifs, Les Éditions du Mécène, 576 pages. {{ISBN|978-2-923150-61-1}} +*2007 ''L'écriture'', Projet personnel d'orientation, Ministère de l'Éducation du Loisir et du sport. +*2005 ''29, rue des Remparts'', Roman publié dans la collection Les mots inventifs, Les éditions du Mécène, 192 pages. {{ISBN|2-923150-28-7}} +*2003 ''Vie 101'', Essai publié dans la collection Les mots utiles, Les Éditions du Mécène. 126 pages. {{ISBN|2-923150-03-1}} +*2002 ''Le groupe conseil fiscalis'', scénario produit pour le groupe conseil Fiscalis. +*2001 ''Lévis, ville nouvelle'', scénario de deux émissions de trente minutes pour le Comité de transition de la ville de Lévis et Canal Vox +*2001 ''L’école québécoise, ce qu’il y a de mieux pour votre enfant'', scénario produit pour le Ministère de l’éducation du Québec. +*2000 ''Le jeu en valait-il la chandelle?'' scénario produit pour le Centre québécois d’excellence pour la prévention et le traitement du jeu. (Université Laval) +*1999 ''Le hasard, Lucky, on peut rien y changer'', scénario produit pour le Centre québécois d’excellence pour la prévention et le traitement du jeu. (Université Laval) +*1999 ''Un pacte fiscal pour l’an 2000, des idées, de la solidarité'', scénario produit pour l’Union des Municipalités régionales de comté et des municipalités locales. +*1999 ''Détect-o-max et Une journée avec Détect-o-max'', deux scénarios produits pour Conception Ro-main inc. +*1999 ''Propane GRG, à l’écoute de ses clients'', scénario produit pour la firme Propane GRG inc. +*1998 ''Maître du mètre'', scénario d’un documentaire sur les 25 ans du système métrique au Québec. +*1997 ''Le temps des sucres'', scénario produit pour la firme Shady Maple Farms. +*1996 ''Le Génie de campagne'', scénario produit pour les Forces armées canadiennes. +*1996 ''La Compagnie franche de la Marine de Québec'', scénario produit pour les Forces armées canadiennes. +*1995 ''Bon séjour à l'École navale de Québec'', scénario produit pour les Forces armées canadiennes. +*1994 ''Un leadership, des services'', scénario produit pour la Fédération des commissions scolaires du Québec. +*1993 ''Les clubs de recherche d'emploi'', scénario produit pour le Ministère de l'Emploi et de l'Immigration du Canada. +*1992 ''Fiers de notre avenir'', scénario produit pour l'Assurance-Vie Desjardins. +*1992 ''Responsible Leadership'', scénario produit pour la compagnie papetière Donohue. (Prix Corpo Vision) +*1992 Scénarisation d'un ensemble de huit vidéos destinées aux écoles secondaires et aux collèges du Québec, pour la Fondation de l'entrepreneurship Québécois. (Prix Adate) +*1991 ''Guide à l'intention du nouveau personnel'', rédaction d'une brochure d'accueil pour la Commission scolaire Louis-Fréchette. +*1990 Comment ça va chez vous? scénario produit pour la Confédération des caisses Desjardins. +*1990 ''Le choc est aussi grand pour les petits.'' I et II, scénario de deux vidéos pour la Régie de l'assurance automobile du Québec. +*1990 Participation au concours de nouvelles de Radio-Canada avec ''Alexandre et Cassiopée.'' +*1989 Participation au concours de nouvelles de Radio-Canada avec ''Le mystère de la cathédrale.'' +*1989 ''La Double vie d'Antoine Gagnon, Ministre'', scénario d'un téléfilm pour Radio-Canada. +*1988 ''Passeport pour la liberté'', Les Quinze Éditeurs, Montréal. {{ISBN|2-89026-368-1}}. (Prix Robert-Cliche) +*1988 Coédition aux Éditions Jean Picollec, à Paris, du roman ''Passeport pour la liberté'', 303 pages, {{ISBN|2-86477-088-1}}. +*1987 Participation au concours de nouvelles de Radio-''Canada avec Le secret''. +*1987 Collaboration au scénario et aux dialogues de ''Vie décolle'', vidéo produite pour la Commission scolaire Abénakis (21 minutes). +*1983 Rédaction et direction de ''C'est qui ma maman à moi?'' pièce de théâtre montée par la troupe de la Polyvalente Benoît-Vachon de Sainte-Marie de Beauce. +*1982 Rédaction et direction de ''Au nom du père, de la fille et du Sain d'esprit'', pièce de théâtre montée par la troupe de la Polyvalente Benoît -Vachon de Sainte-Marie de Beauce. +*1977 Corédaction et mise en scène de la pièce ''Coup de Théâtre à Ste-Onction'' jouée par les élèves de la Polyvalente Benoît-Vachon de Sainte-Marie de Beauce + +== Références == +{{references}} + +{{Portail|littérature}} + +[[Catégorie:Écrivain québécois|Beaudet, Raymond]] +[[Catégorie:Naissance en 1950]] + fs44pljaq7apmco6ykx22ekoao7nkkh + + + 179272379 + 178141731 + 2021-01-27T13:57:09Z + + Etambot + 3780940 + + + clé de tri + wikitext + text/x-wiki + {{À sourcer|date=mars 2019}} +{{voir homonymes|Beaudet}} +{{Infobox Biographie2}} + +'''Raymond Beaudet''' (Québec 1950 - ) est un écrivain et un scénariste [[Québec|québécois]]. Détenteur d’une maîtrise en [[philosophie]] de l’[[Université Laval]] (1975) on le retrouve successivement enseignant, syndicaliste, secrétaire particulier du Ministre des Richesses Naturelles, [[Yves Bérubé]], directeur d’école primaire et directeur d’école secondaire (Polyvalente Benoît-Vachon). Une passion l’anime pendant tout ce temps : l’écriture. Il est l’auteur de quatre romans, d’un essai, d’une trentaine de scénarios, de plusieurs nouvelles et de trois pièces de théâtre. Depuis 2014, il est actif en [[twittérature]]. + +== Honneurs == +* Prix du Patrimoine (2019) Catégorie Interprétation et Diffusion +*Prix coup de cœur du jury au Concours de twittérature du Centre de la Francophonie des Amériques 2016 +* Prix du Patrimoine (2011) Catégorie Interprétation et Diffusion +* [[Prix Robert-Cliche]] ([[1988]]), ''Passeport pour la liberté''<ref>{{lien web | url=http://www.edvlb.com/prixrobertcliche/laureats.aspx | titre=Lauréats du prix Robert-Cliche | consulté le=24 juin 2011}}</ref> +* Prix Corpo-vision (1992) +* Prix Adate (1993) + +== Bibliographie == +*2020 En décide de vendre, nouvelle parue dans Les Écrits mariverains 2020, {{ISBN|978-2-9810768-2-3}} +*2019 Tableaux et portraits mariverains, Capsules historiques, {{ISBN|978-2-9810768-2-3}}. +*2019 Carnet d'un passager clandestin, nouvelle parue dans Les Écrits Mariverains 2019, {{ISBN|978-2-9810768-0-9}} +*2019 Voix de dépassement, scénario du spectacle de la Corporation des Instrumentistes Associés. +*2018 Marie-Claire et moi, nouvelle parue dans Les Écrits mariverains 2018, {{ISBN|978-2-9809683-9-6}} +*2018 La dernière scène, scénario du spectacle de la Corporation des Instrumentistes Associés. +*2018 La boucherie, Projet personnel d'orientation, Ministère de l'Éducation et de l'Enseignement supérieur. +*2017 L'idée perdue, nouvelle parue dans Les Écrits mariverains 2017, {{ISBN|978-2-9809683-8-9}} +*2017 Coups de cœur, scénario du spectacle de la Corporation des Instrumentistes Associés. +*2016 Éliza Caztel de Sainte-Marie, nouvelle parue dans Les Écrits mariverains 2016, {{ISBN|978-2-9809683-7-2}} +*2016 La CIA sème le trouble, scénario du spectacle de la Corporation des Instrumentistes Associés. +*2015 La photographie numérique, Projet personnel d'orientation, Ministère de l'Éducation du Loisir et du sport. +*2015 Impressions de voyage : le Chili, nouvelle parue dans Les Écrits mariverains 2015, {{ISBN|978-2-9809683-6-5}} +*2015 La CIA, version 5.0, scénario du spectacle de la Corporation des Instrumentistes Associés. +*2014 Le désastreux destin d'Arlette Mallette, nouvelle parue dans Les Écrits mariverains 2014, {{ISBN|978-2-9809683-5-8}} +* 2014 La CIA, L'espace d'une vie, scénario du spectacle de la Corporation des Instrumentistes Associés. +* 2014 Carapaces, Roman publié aux Éditions Textes et Contextes, 279 pages. {{ISBN|978-2-923706-63-4}} +* 2013 La Politique, Projet personnel d'orientation, Ministère de l'Éducation du Loisir et du sport. +* 2013 La CIA poursuit son enquête, scénario du spectacle de la Corporation des Instrumentistes Associés. +* 2013 Napoléon, nouvelle parue dans Les Écrits mariverains 2013. {{ISBN|978-2-9809683-4-1}} +* 2012 Ménage de cave, nouvelle parue dans Les Écrits mariverains, 2012. {{ISBN|978-2-980-9683-3-4}} +* 2012 En quête de mission, scénario du spectacle de la Corporation des Instrumentistes Associés. +* 2012 Finaliste dans deux concours de Zone d’écriture de Radio-Canada en twittérature. +* 2011 La CIA autour du monde, scénario du spectacle de la Corporation des Instrumentistes Associés. +* 2011 En deuxième vitesse, nouvelle parue dans Les Écrits mariverains 2011. {{ISBN|978-2-980-9683-1-0|}} +* 2010 Biographie de Jeannine Rousseau et Rolland Massicotte, scénario. +*2010 Le Projet Adam et Ève, nouvelle parue dans Écrits mariverains 2010, {{ISBN|978-2-980-9683-1-0}} +*2009 Alexandre et Cassiopée, nouvelle parue dans Écrits mariverains 2009. +*2008 ''Dans un mois, dans un an'', Roman publié dans la collection Les mots inventifs, Les Éditions du Mécène, 576 pages. {{ISBN|978-2-923150-61-1}} +*2007 ''L'écriture'', Projet personnel d'orientation, Ministère de l'Éducation du Loisir et du sport. +*2005 ''29, rue des Remparts'', Roman publié dans la collection Les mots inventifs, Les éditions du Mécène, 192 pages. {{ISBN|2-923150-28-7}} +*2003 ''Vie 101'', Essai publié dans la collection Les mots utiles, Les Éditions du Mécène. 126 pages. {{ISBN|2-923150-03-1}} +*2002 ''Le groupe conseil fiscalis'', scénario produit pour le groupe conseil Fiscalis. +*2001 ''Lévis, ville nouvelle'', scénario de deux émissions de trente minutes pour le Comité de transition de la ville de Lévis et Canal Vox +*2001 ''L’école québécoise, ce qu’il y a de mieux pour votre enfant'', scénario produit pour le Ministère de l’éducation du Québec. +*2000 ''Le jeu en valait-il la chandelle?'' scénario produit pour le Centre québécois d’excellence pour la prévention et le traitement du jeu. (Université Laval) +*1999 ''Le hasard, Lucky, on peut rien y changer'', scénario produit pour le Centre québécois d’excellence pour la prévention et le traitement du jeu. (Université Laval) +*1999 ''Un pacte fiscal pour l’an 2000, des idées, de la solidarité'', scénario produit pour l’Union des Municipalités régionales de comté et des municipalités locales. +*1999 ''Détect-o-max et Une journée avec Détect-o-max'', deux scénarios produits pour Conception Ro-main inc. +*1999 ''Propane GRG, à l’écoute de ses clients'', scénario produit pour la firme Propane GRG inc. +*1998 ''Maître du mètre'', scénario d’un documentaire sur les 25 ans du système métrique au Québec. +*1997 ''Le temps des sucres'', scénario produit pour la firme Shady Maple Farms. +*1996 ''Le Génie de campagne'', scénario produit pour les Forces armées canadiennes. +*1996 ''La Compagnie franche de la Marine de Québec'', scénario produit pour les Forces armées canadiennes. +*1995 ''Bon séjour à l'École navale de Québec'', scénario produit pour les Forces armées canadiennes. +*1994 ''Un leadership, des services'', scénario produit pour la Fédération des commissions scolaires du Québec. +*1993 ''Les clubs de recherche d'emploi'', scénario produit pour le Ministère de l'Emploi et de l'Immigration du Canada. +*1992 ''Fiers de notre avenir'', scénario produit pour l'Assurance-Vie Desjardins. +*1992 ''Responsible Leadership'', scénario produit pour la compagnie papetière Donohue. (Prix Corpo Vision) +*1992 Scénarisation d'un ensemble de huit vidéos destinées aux écoles secondaires et aux collèges du Québec, pour la Fondation de l'entrepreneurship Québécois. (Prix Adate) +*1991 ''Guide à l'intention du nouveau personnel'', rédaction d'une brochure d'accueil pour la Commission scolaire Louis-Fréchette. +*1990 Comment ça va chez vous? scénario produit pour la Confédération des caisses Desjardins. +*1990 ''Le choc est aussi grand pour les petits.'' I et II, scénario de deux vidéos pour la Régie de l'assurance automobile du Québec. +*1990 Participation au concours de nouvelles de Radio-Canada avec ''Alexandre et Cassiopée.'' +*1989 Participation au concours de nouvelles de Radio-Canada avec ''Le mystère de la cathédrale.'' +*1989 ''La Double vie d'Antoine Gagnon, Ministre'', scénario d'un téléfilm pour Radio-Canada. +*1988 ''Passeport pour la liberté'', Les Quinze Éditeurs, Montréal. {{ISBN|2-89026-368-1}}. (Prix Robert-Cliche) +*1988 Coédition aux Éditions Jean Picollec, à Paris, du roman ''Passeport pour la liberté'', 303 pages, {{ISBN|2-86477-088-1}}. +*1987 Participation au concours de nouvelles de Radio-''Canada avec Le secret''. +*1987 Collaboration au scénario et aux dialogues de ''Vie décolle'', vidéo produite pour la Commission scolaire Abénakis (21 minutes). +*1983 Rédaction et direction de ''C'est qui ma maman à moi?'' pièce de théâtre montée par la troupe de la Polyvalente Benoît-Vachon de Sainte-Marie de Beauce. +*1982 Rédaction et direction de ''Au nom du père, de la fille et du Sain d'esprit'', pièce de théâtre montée par la troupe de la Polyvalente Benoît -Vachon de Sainte-Marie de Beauce. +*1977 Corédaction et mise en scène de la pièce ''Coup de Théâtre à Ste-Onction'' jouée par les élèves de la Polyvalente Benoît-Vachon de Sainte-Marie de Beauce + +== Références == +{{references}} + +{{Portail|littérature}} + +{{CLEDETRI:Beaudet, Raymond}} +[[Catégorie:Écrivain québécois|Beaudet, Raymond]] +[[Catégorie:Naissance en 1950]] + rlgwkq5kbhyu9c1blnls0d6ngku7ji0 + + + 179875078 + 179272379 + 2021-02-13T15:56:52Z + + SuperTom4277 + 3477067 + + Ajout d'une publication + wikitext + text/x-wiki + {{À sourcer|date=mars 2019}} +{{voir homonymes|Beaudet}} +{{Infobox Biographie2}} + +'''Raymond Beaudet''' (Québec 1950 - ) est un écrivain et un scénariste [[Québec|québécois]]. Détenteur d’une maîtrise en [[philosophie]] de l’[[Université Laval]] (1975) on le retrouve successivement enseignant, syndicaliste, secrétaire particulier du Ministre des Richesses Naturelles, [[Yves Bérubé]], directeur d’école primaire et directeur d’école secondaire (Polyvalente Benoît-Vachon). Une passion l’anime pendant tout ce temps : l’écriture. Il est l’auteur de quatre romans, d’un essai, d’une trentaine de scénarios, de plusieurs nouvelles et de trois pièces de théâtre. Depuis 2014, il est actif en [[twittérature]]. + +== Honneurs == +*Prix du Patrimoine (2019) Catégorie Interprétation et Diffusion +*Prix coup de cœur du jury au Concours de twittérature du Centre de la Francophonie des Amériques 2016 +* Prix du Patrimoine (2011) Catégorie Interprétation et Diffusion +* [[Prix Robert-Cliche]] ([[1988]]), ''Passeport pour la liberté''<ref>{{lien web | url=http://www.edvlb.com/prixrobertcliche/laureats.aspx | titre=Lauréats du prix Robert-Cliche | consulté le=24 juin 2011}}</ref> +* Prix Corpo-vision (1992) +* Prix Adate (1993) + +== Bibliographie == +*2021 Le bonheur, chroniques d'une vie à la campagne, publié aux Éditions de la Roupille, 270 pages ISBN 978-2-924304-40-2 +2020 En décide de vendre, nouvelle parue dans Les Écrits mariverains 2020, {{ISBN|978-2-9810768-2-3}} +*2019 Tableaux et portraits mariverains, Capsules historiques, {{ISBN|978-2-9810768-2-3}}. +*2019 Carnet d'un passager clandestin, nouvelle parue dans Les Écrits Mariverains 2019, {{ISBN|978-2-9810768-0-9}} +*2019 Voix de dépassement, scénario du spectacle de la Corporation des Instrumentistes Associés. +*2018 Marie-Claire et moi, nouvelle parue dans Les Écrits mariverains 2018, {{ISBN|978-2-9809683-9-6}} +*2018 La dernière scène, scénario du spectacle de la Corporation des Instrumentistes Associés. +*2018 La boucherie, Projet personnel d'orientation, Ministère de l'Éducation et de l'Enseignement supérieur. +*2017 L'idée perdue, nouvelle parue dans Les Écrits mariverains 2017, {{ISBN|978-2-9809683-8-9}} +*2017 Coups de cœur, scénario du spectacle de la Corporation des Instrumentistes Associés. +*2016 Éliza Caztel de Sainte-Marie, nouvelle parue dans Les Écrits mariverains 2016, {{ISBN|978-2-9809683-7-2}} +*2016 La CIA sème le trouble, scénario du spectacle de la Corporation des Instrumentistes Associés. +*2015 La photographie numérique, Projet personnel d'orientation, Ministère de l'Éducation du Loisir et du sport. +*2015 Impressions de voyage : le Chili, nouvelle parue dans Les Écrits mariverains 2015, {{ISBN|978-2-9809683-6-5}} +*2015 La CIA, version 5.0, scénario du spectacle de la Corporation des Instrumentistes Associés. +*2014 Le désastreux destin d'Arlette Mallette, nouvelle parue dans Les Écrits mariverains 2014, {{ISBN|978-2-9809683-5-8}} +*2014 La CIA, L'espace d'une vie, scénario du spectacle de la Corporation des Instrumentistes Associés. +*2014 Carapaces, Roman publié aux Éditions Textes et Contextes, 279 pages. {{ISBN|978-2-923706-63-4}} +*2013 La Politique, Projet personnel d'orientation, Ministère de l'Éducation du Loisir et du sport. +*2013 La CIA poursuit son enquête, scénario du spectacle de la Corporation des Instrumentistes Associés. +*2013 Napoléon, nouvelle parue dans Les Écrits mariverains 2013. {{ISBN|978-2-9809683-4-1}} +*2012 Ménage de cave, nouvelle parue dans Les Écrits mariverains, 2012. {{ISBN|978-2-980-9683-3-4}} +*2012 En quête de mission, scénario du spectacle de la Corporation des Instrumentistes Associés. +*2012 Finaliste dans deux concours de Zone d’écriture de Radio-Canada en twittérature. +*2011 La CIA autour du monde, scénario du spectacle de la Corporation des Instrumentistes Associés. +*2011 En deuxième vitesse, nouvelle parue dans Les Écrits mariverains 2011. {{ISBN|978-2-980-9683-1-0|}} +*2010 Biographie de Jeannine Rousseau et Rolland Massicotte, scénario. +*2010 Le Projet Adam et Ève, nouvelle parue dans Écrits mariverains 2010, {{ISBN|978-2-980-9683-1-0}} +*2009 Alexandre et Cassiopée, nouvelle parue dans Écrits mariverains 2009. +*2008 ''Dans un mois, dans un an'', Roman publié dans la collection Les mots inventifs, Les Éditions du Mécène, 576 pages. {{ISBN|978-2-923150-61-1}} +*2007 ''L'écriture'', Projet personnel d'orientation, Ministère de l'Éducation du Loisir et du sport. +*2005 ''29, rue des Remparts'', Roman publié dans la collection Les mots inventifs, Les éditions du Mécène, 192 pages. {{ISBN|2-923150-28-7}} +*2003 ''Vie 101'', Essai publié dans la collection Les mots utiles, Les Éditions du Mécène. 126 pages. {{ISBN|2-923150-03-1}} +*2002 ''Le groupe conseil fiscalis'', scénario produit pour le groupe conseil Fiscalis. +*2001 ''Lévis, ville nouvelle'', scénario de deux émissions de trente minutes pour le Comité de transition de la ville de Lévis et Canal Vox +*2001 ''L’école québécoise, ce qu’il y a de mieux pour votre enfant'', scénario produit pour le Ministère de l’éducation du Québec. +*2000 ''Le jeu en valait-il la chandelle?'' scénario produit pour le Centre québécois d’excellence pour la prévention et le traitement du jeu. (Université Laval) +*1999 ''Le hasard, Lucky, on peut rien y changer'', scénario produit pour le Centre québécois d’excellence pour la prévention et le traitement du jeu. (Université Laval) +*1999 ''Un pacte fiscal pour l’an 2000, des idées, de la solidarité'', scénario produit pour l’Union des Municipalités régionales de comté et des municipalités locales. +*1999 ''Détect-o-max et Une journée avec Détect-o-max'', deux scénarios produits pour Conception Ro-main inc. +*1999 ''Propane GRG, à l’écoute de ses clients'', scénario produit pour la firme Propane GRG inc. +*1998 ''Maître du mètre'', scénario d’un documentaire sur les 25 ans du système métrique au Québec. +*1997 ''Le temps des sucres'', scénario produit pour la firme Shady Maple Farms. +*1996 ''Le Génie de campagne'', scénario produit pour les Forces armées canadiennes. +*1996 ''La Compagnie franche de la Marine de Québec'', scénario produit pour les Forces armées canadiennes. +*1995 ''Bon séjour à l'École navale de Québec'', scénario produit pour les Forces armées canadiennes. +*1994 ''Un leadership, des services'', scénario produit pour la Fédération des commissions scolaires du Québec. +*1993 ''Les clubs de recherche d'emploi'', scénario produit pour le Ministère de l'Emploi et de l'Immigration du Canada. +*1992 ''Fiers de notre avenir'', scénario produit pour l'Assurance-Vie Desjardins. +*1992 ''Responsible Leadership'', scénario produit pour la compagnie papetière Donohue. (Prix Corpo Vision) +*1992 Scénarisation d'un ensemble de huit vidéos destinées aux écoles secondaires et aux collèges du Québec, pour la Fondation de l'entrepreneurship Québécois. (Prix Adate) +*1991 ''Guide à l'intention du nouveau personnel'', rédaction d'une brochure d'accueil pour la Commission scolaire Louis-Fréchette. +*1990 Comment ça va chez vous? scénario produit pour la Confédération des caisses Desjardins. +*1990 ''Le choc est aussi grand pour les petits.'' I et II, scénario de deux vidéos pour la Régie de l'assurance automobile du Québec. +*1990 Participation au concours de nouvelles de Radio-Canada avec ''Alexandre et Cassiopée.'' +*1989 Participation au concours de nouvelles de Radio-Canada avec ''Le mystère de la cathédrale.'' +*1989 ''La Double vie d'Antoine Gagnon, Ministre'', scénario d'un téléfilm pour Radio-Canada. +*1988 ''Passeport pour la liberté'', Les Quinze Éditeurs, Montréal. {{ISBN|2-89026-368-1}}. (Prix Robert-Cliche) +*1988 Coédition aux Éditions Jean Picollec, à Paris, du roman ''Passeport pour la liberté'', 303 pages, {{ISBN|2-86477-088-1}}. +*1987 Participation au concours de nouvelles de Radio-''Canada avec Le secret''. +*1987 Collaboration au scénario et aux dialogues de ''Vie décolle'', vidéo produite pour la Commission scolaire Abénakis (21 minutes). +*1983 Rédaction et direction de ''C'est qui ma maman à moi?'' pièce de théâtre montée par la troupe de la Polyvalente Benoît-Vachon de Sainte-Marie de Beauce. +*1982 Rédaction et direction de ''Au nom du père, de la fille et du Sain d'esprit'', pièce de théâtre montée par la troupe de la Polyvalente Benoît -Vachon de Sainte-Marie de Beauce. +*1977 Corédaction et mise en scène de la pièce ''Coup de Théâtre à Ste-Onction'' jouée par les élèves de la Polyvalente Benoît-Vachon de Sainte-Marie de Beauce + +== Références == +{{references}} + +{{Portail|littérature}} + +{{CLEDETRI:Beaudet, Raymond}} +[[Catégorie:Écrivain québécois|Beaudet, Raymond]] +[[Catégorie:Naissance en 1950]] + 3nxfhoceqm52zwgrmgj6acew01o20j6 + + + 179875101 + 179875078 + 2021-02-13T15:57:45Z + + SuperTom4277 + 3477067 + + + /* Bibliographie */ ajour d'une publication + wikitext + text/x-wiki + {{À sourcer|date=mars 2019}} +{{voir homonymes|Beaudet}} +{{Infobox Biographie2}} + +'''Raymond Beaudet''' (Québec 1950 - ) est un écrivain et un scénariste [[Québec|québécois]]. Détenteur d’une maîtrise en [[philosophie]] de l’[[Université Laval]] (1975) on le retrouve successivement enseignant, syndicaliste, secrétaire particulier du Ministre des Richesses Naturelles, [[Yves Bérubé]], directeur d’école primaire et directeur d’école secondaire (Polyvalente Benoît-Vachon). Une passion l’anime pendant tout ce temps : l’écriture. Il est l’auteur de quatre romans, d’un essai, d’une trentaine de scénarios, de plusieurs nouvelles et de trois pièces de théâtre. Depuis 2014, il est actif en [[twittérature]]. + +== Honneurs == +*Prix du Patrimoine (2019) Catégorie Interprétation et Diffusion +*Prix coup de cœur du jury au Concours de twittérature du Centre de la Francophonie des Amériques 2016 +* Prix du Patrimoine (2011) Catégorie Interprétation et Diffusion +* [[Prix Robert-Cliche]] ([[1988]]), ''Passeport pour la liberté''<ref>{{lien web | url=http://www.edvlb.com/prixrobertcliche/laureats.aspx | titre=Lauréats du prix Robert-Cliche | consulté le=24 juin 2011}}</ref> +* Prix Corpo-vision (1992) +* Prix Adate (1993) + +== Bibliographie == +*2021 Le bonheur, chroniques d'une vie à la campagne, publié aux Éditions de la Roupille, 270 pages ISBN 978-2-924304-40-2 +*2020 En décide de vendre, nouvelle parue dans Les Écrits mariverains 2020, {{ISBN|978-2-9810768-2-3}} + +*2019 Tableaux et portraits mariverains, Capsules historiques, {{ISBN|978-2-9810768-2-3}}. +*2019 Carnet d'un passager clandestin, nouvelle parue dans Les Écrits Mariverains 2019, {{ISBN|978-2-9810768-0-9}} +*2019 Voix de dépassement, scénario du spectacle de la Corporation des Instrumentistes Associés. +*2018 Marie-Claire et moi, nouvelle parue dans Les Écrits mariverains 2018, {{ISBN|978-2-9809683-9-6}} +*2018 La dernière scène, scénario du spectacle de la Corporation des Instrumentistes Associés. +*2018 La boucherie, Projet personnel d'orientation, Ministère de l'Éducation et de l'Enseignement supérieur. +*2017 L'idée perdue, nouvelle parue dans Les Écrits mariverains 2017, {{ISBN|978-2-9809683-8-9}} +*2017 Coups de cœur, scénario du spectacle de la Corporation des Instrumentistes Associés. +*2016 Éliza Caztel de Sainte-Marie, nouvelle parue dans Les Écrits mariverains 2016, {{ISBN|978-2-9809683-7-2}} +*2016 La CIA sème le trouble, scénario du spectacle de la Corporation des Instrumentistes Associés. +*2015 La photographie numérique, Projet personnel d'orientation, Ministère de l'Éducation du Loisir et du sport. +*2015 Impressions de voyage : le Chili, nouvelle parue dans Les Écrits mariverains 2015, {{ISBN|978-2-9809683-6-5}} +*2015 La CIA, version 5.0, scénario du spectacle de la Corporation des Instrumentistes Associés. +*2014 Le désastreux destin d'Arlette Mallette, nouvelle parue dans Les Écrits mariverains 2014, {{ISBN|978-2-9809683-5-8}} +*2014 La CIA, L'espace d'une vie, scénario du spectacle de la Corporation des Instrumentistes Associés. +*2014 Carapaces, Roman publié aux Éditions Textes et Contextes, 279 pages. {{ISBN|978-2-923706-63-4}} +*2013 La Politique, Projet personnel d'orientation, Ministère de l'Éducation du Loisir et du sport. +*2013 La CIA poursuit son enquête, scénario du spectacle de la Corporation des Instrumentistes Associés. +*2013 Napoléon, nouvelle parue dans Les Écrits mariverains 2013. {{ISBN|978-2-9809683-4-1}} +*2012 Ménage de cave, nouvelle parue dans Les Écrits mariverains, 2012. {{ISBN|978-2-980-9683-3-4}} +*2012 En quête de mission, scénario du spectacle de la Corporation des Instrumentistes Associés. +*2012 Finaliste dans deux concours de Zone d’écriture de Radio-Canada en twittérature. +*2011 La CIA autour du monde, scénario du spectacle de la Corporation des Instrumentistes Associés. +*2011 En deuxième vitesse, nouvelle parue dans Les Écrits mariverains 2011. {{ISBN|978-2-980-9683-1-0|}} +*2010 Biographie de Jeannine Rousseau et Rolland Massicotte, scénario. +*2010 Le Projet Adam et Ève, nouvelle parue dans Écrits mariverains 2010, {{ISBN|978-2-980-9683-1-0}} +*2009 Alexandre et Cassiopée, nouvelle parue dans Écrits mariverains 2009. +*2008 ''Dans un mois, dans un an'', Roman publié dans la collection Les mots inventifs, Les Éditions du Mécène, 576 pages. {{ISBN|978-2-923150-61-1}} +*2007 ''L'écriture'', Projet personnel d'orientation, Ministère de l'Éducation du Loisir et du sport. +*2005 ''29, rue des Remparts'', Roman publié dans la collection Les mots inventifs, Les éditions du Mécène, 192 pages. {{ISBN|2-923150-28-7}} +*2003 ''Vie 101'', Essai publié dans la collection Les mots utiles, Les Éditions du Mécène. 126 pages. {{ISBN|2-923150-03-1}} +*2002 ''Le groupe conseil fiscalis'', scénario produit pour le groupe conseil Fiscalis. +*2001 ''Lévis, ville nouvelle'', scénario de deux émissions de trente minutes pour le Comité de transition de la ville de Lévis et Canal Vox +*2001 ''L’école québécoise, ce qu’il y a de mieux pour votre enfant'', scénario produit pour le Ministère de l’éducation du Québec. +*2000 ''Le jeu en valait-il la chandelle?'' scénario produit pour le Centre québécois d’excellence pour la prévention et le traitement du jeu. (Université Laval) +*1999 ''Le hasard, Lucky, on peut rien y changer'', scénario produit pour le Centre québécois d’excellence pour la prévention et le traitement du jeu. (Université Laval) +*1999 ''Un pacte fiscal pour l’an 2000, des idées, de la solidarité'', scénario produit pour l’Union des Municipalités régionales de comté et des municipalités locales. +*1999 ''Détect-o-max et Une journée avec Détect-o-max'', deux scénarios produits pour Conception Ro-main inc. +*1999 ''Propane GRG, à l’écoute de ses clients'', scénario produit pour la firme Propane GRG inc. +*1998 ''Maître du mètre'', scénario d’un documentaire sur les 25 ans du système métrique au Québec. +*1997 ''Le temps des sucres'', scénario produit pour la firme Shady Maple Farms. +*1996 ''Le Génie de campagne'', scénario produit pour les Forces armées canadiennes. +*1996 ''La Compagnie franche de la Marine de Québec'', scénario produit pour les Forces armées canadiennes. +*1995 ''Bon séjour à l'École navale de Québec'', scénario produit pour les Forces armées canadiennes. +*1994 ''Un leadership, des services'', scénario produit pour la Fédération des commissions scolaires du Québec. +*1993 ''Les clubs de recherche d'emploi'', scénario produit pour le Ministère de l'Emploi et de l'Immigration du Canada. +*1992 ''Fiers de notre avenir'', scénario produit pour l'Assurance-Vie Desjardins. +*1992 ''Responsible Leadership'', scénario produit pour la compagnie papetière Donohue. (Prix Corpo Vision) +*1992 Scénarisation d'un ensemble de huit vidéos destinées aux écoles secondaires et aux collèges du Québec, pour la Fondation de l'entrepreneurship Québécois. (Prix Adate) +*1991 ''Guide à l'intention du nouveau personnel'', rédaction d'une brochure d'accueil pour la Commission scolaire Louis-Fréchette. +*1990 Comment ça va chez vous? scénario produit pour la Confédération des caisses Desjardins. +*1990 ''Le choc est aussi grand pour les petits.'' I et II, scénario de deux vidéos pour la Régie de l'assurance automobile du Québec. +*1990 Participation au concours de nouvelles de Radio-Canada avec ''Alexandre et Cassiopée.'' +*1989 Participation au concours de nouvelles de Radio-Canada avec ''Le mystère de la cathédrale.'' +*1989 ''La Double vie d'Antoine Gagnon, Ministre'', scénario d'un téléfilm pour Radio-Canada. +*1988 ''Passeport pour la liberté'', Les Quinze Éditeurs, Montréal. {{ISBN|2-89026-368-1}}. (Prix Robert-Cliche) +*1988 Coédition aux Éditions Jean Picollec, à Paris, du roman ''Passeport pour la liberté'', 303 pages, {{ISBN|2-86477-088-1}}. +*1987 Participation au concours de nouvelles de Radio-''Canada avec Le secret''. +*1987 Collaboration au scénario et aux dialogues de ''Vie décolle'', vidéo produite pour la Commission scolaire Abénakis (21 minutes). +*1983 Rédaction et direction de ''C'est qui ma maman à moi?'' pièce de théâtre montée par la troupe de la Polyvalente Benoît-Vachon de Sainte-Marie de Beauce. +*1982 Rédaction et direction de ''Au nom du père, de la fille et du Sain d'esprit'', pièce de théâtre montée par la troupe de la Polyvalente Benoît -Vachon de Sainte-Marie de Beauce. +*1977 Corédaction et mise en scène de la pièce ''Coup de Théâtre à Ste-Onction'' jouée par les élèves de la Polyvalente Benoît-Vachon de Sainte-Marie de Beauce + +== Références == +{{references}} + +{{Portail|littérature}} + +{{CLEDETRI:Beaudet, Raymond}} +[[Catégorie:Écrivain québécois|Beaudet, Raymond]] +[[Catégorie:Naissance en 1950]] + 2tcmxp7bhalr0v1q85t3qbqfqul11nx + + + 179886647 + 179875101 + 2021-02-13T21:45:42Z + + Hyméros + 1956926 + + + v2.04 - [[P:CS|Correction syntaxique]] (Orthographe et typographie - Lien magique ISBN obsolète) + wikitext + text/x-wiki + {{À sourcer|date=mars 2019}} +{{voir homonymes|Beaudet}} +{{Infobox Biographie2}} +'''Raymond Beaudet''' (Québec 1950 - ) est un écrivain et un scénariste [[Québec|québécois]]. Détenteur d’une maîtrise en [[philosophie]] de l’[[Université Laval]] (1975) on le retrouve successivement enseignant, syndicaliste, secrétaire particulier du Ministre des Richesses Naturelles, [[Yves Bérubé]], directeur d’école primaire et directeur d’école secondaire (Polyvalente Benoît-Vachon). Une passion l’anime pendant tout ce temps : l’écriture. Il est l’auteur de quatre romans, d’un essai, d’une trentaine de scénarios, de plusieurs nouvelles et de trois pièces de théâtre. Depuis 2014, il est actif en [[twittérature]]. + +== Honneurs == +*Prix du Patrimoine (2019) Catégorie Interprétation et Diffusion +*Prix coup de cœur du jury au Concours de twittérature du Centre de la Francophonie des Amériques 2016 +* Prix du Patrimoine (2011) Catégorie Interprétation et Diffusion +* [[Prix Robert-Cliche]] ([[1988]]), ''Passeport pour la liberté''<ref>{{lien web | url=http://www.edvlb.com/prixrobertcliche/laureats.aspx | titre=Lauréats du prix Robert-Cliche | consulté le=24 juin 2011}}</ref> +* Prix Corpo-vision (1992) +* Prix Adate (1993) + +== Bibliographie == +*2021 Le bonheur, chroniques d'une vie à la campagne, publié aux Éditions de la Roupille, 270 pages {{ISBN|978-2-924304-40-2}} +*2020 En décide de vendre, nouvelle parue dans Les Écrits mariverains 2020, {{ISBN|978-2-9810768-2-3}} + +*2019 : +** Tableaux et portraits mariverains, Capsules historiques, {{ISBN|978-2-9810768-2-3}}. +** Carnet d'un passager clandestin, nouvelle parue dans Les Écrits Mariverains 2019, {{ISBN|978-2-9810768-0-9}} +** Voix de dépassement, scénario du spectacle de la Corporation des Instrumentistes Associés. +*2018 +** Marie-Claire et moi, nouvelle parue dans Les Écrits mariverains 2018, {{ISBN|978-2-9809683-9-6}} +** La dernière scène, scénario du spectacle de la Corporation des Instrumentistes Associés. +** La boucherie, Projet personnel d'orientation, Ministère de l'Éducation et de l'Enseignement supérieur. +*2017 +** L'idée perdue, nouvelle parue dans Les Écrits mariverains 2017, {{ISBN|978-2-9809683-8-9}} +** Coups de cœur, scénario du spectacle de la Corporation des Instrumentistes Associés. +*2016 +** Éliza Caztel de Sainte-Marie, nouvelle parue dans Les Écrits mariverains 2016, {{ISBN|978-2-9809683-7-2}} +** La CIA sème le trouble, scénario du spectacle de la Corporation des Instrumentistes Associés. +*2015 La photographie numérique, Projet personnel d'orientation, Ministère de l'Éducation du Loisir et du sport. +*2015 Impressions de voyage : le Chili, nouvelle parue dans Les Écrits mariverains 2015, {{ISBN|978-2-9809683-6-5}} +*2015 La CIA, version 5.0, scénario du spectacle de la Corporation des Instrumentistes Associés. +*2014 Le désastreux destin d'Arlette Mallette, nouvelle parue dans Les Écrits mariverains 2014, {{ISBN|978-2-9809683-5-8}} +*2014 La CIA, L'espace d'une vie, scénario du spectacle de la Corporation des Instrumentistes Associés. +*2014 Carapaces, Roman publié aux Éditions Textes et Contextes, 279 pages. {{ISBN|978-2-923706-63-4}} +*2013 La Politique, Projet personnel d'orientation, Ministère de l'Éducation du Loisir et du sport. +*2013 La CIA poursuit son enquête, scénario du spectacle de la Corporation des Instrumentistes Associés. +*2013 Napoléon, nouvelle parue dans Les Écrits mariverains 2013. {{ISBN|978-2-9809683-4-1}} +*2012 Ménage de cave, nouvelle parue dans Les Écrits mariverains, 2012. {{ISBN|978-2-980-9683-3-4}} +*2012 En quête de mission, scénario du spectacle de la Corporation des Instrumentistes Associés. +*2012 Finaliste dans deux concours de Zone d’écriture de Radio-Canada en twittérature. +*2011 La CIA autour du monde, scénario du spectacle de la Corporation des Instrumentistes Associés. +*2011 En deuxième vitesse, nouvelle parue dans Les Écrits mariverains 2011. {{ISBN|978-2-980-9683-1-0|}} +*2010 Biographie de Jeannine Rousseau et Rolland Massicotte, scénario. +*2010 Le Projet Adam et Ève, nouvelle parue dans Écrits mariverains 2010, {{ISBN|978-2-980-9683-1-0}} +*2009 Alexandre et Cassiopée, nouvelle parue dans Écrits mariverains 2009. +*2008 ''Dans un mois, dans un an'', Roman publié dans la collection Les mots inventifs, Les Éditions du Mécène, 576 pages. {{ISBN|978-2-923150-61-1}} +*2007 ''L'écriture'', Projet personnel d'orientation, Ministère de l'Éducation du Loisir et du sport. +*2005 ''29, rue des Remparts'', Roman publié dans la collection Les mots inventifs, Les éditions du Mécène, 192 pages. {{ISBN|2-923150-28-7}} +*2003 ''Vie 101'', Essai publié dans la collection Les mots utiles, Les Éditions du Mécène. 126 pages. {{ISBN|2-923150-03-1}} +*2002 ''Le groupe conseil fiscalis'', scénario produit pour le groupe conseil Fiscalis. +*2001 ''Lévis, ville nouvelle'', scénario de deux émissions de trente minutes pour le Comité de transition de la ville de Lévis et Canal Vox +*2001 ''L’école québécoise, ce qu’il y a de mieux pour votre enfant'', scénario produit pour le Ministère de l’éducation du Québec. +*2000 ''Le jeu en valait-il la chandelle?'' scénario produit pour le Centre québécois d’excellence pour la prévention et le traitement du jeu. (Université Laval) +*1999 ''Le hasard, Lucky, on peut rien y changer'', scénario produit pour le Centre québécois d’excellence pour la prévention et le traitement du jeu. (Université Laval) +*1999 ''Un pacte fiscal pour l’an 2000, des idées, de la solidarité'', scénario produit pour l’Union des Municipalités régionales de comté et des municipalités locales. +*1999 ''Détect-o-max et Une journée avec Détect-o-max'', deux scénarios produits pour Conception Ro-main inc. +*1999 ''Propane GRG, à l’écoute de ses clients'', scénario produit pour la firme Propane GRG inc. +*1998 ''Maître du mètre'', scénario d’un documentaire sur les 25 ans du système métrique au Québec. +*1997 ''Le temps des sucres'', scénario produit pour la firme Shady Maple Farms. +*1996 ''Le Génie de campagne'', scénario produit pour les Forces armées canadiennes. +*1996 ''La Compagnie franche de la Marine de Québec'', scénario produit pour les Forces armées canadiennes. +*1995 ''Bon séjour à l'École navale de Québec'', scénario produit pour les Forces armées canadiennes. +*1994 ''Un leadership, des services'', scénario produit pour la Fédération des commissions scolaires du Québec. +*1993 ''Les clubs de recherche d'emploi'', scénario produit pour le Ministère de l'Emploi et de l'Immigration du Canada. +*1992 ''Fiers de notre avenir'', scénario produit pour l'Assurance-Vie Desjardins. +*1992 ''Responsible Leadership'', scénario produit pour la compagnie papetière Donohue. (Prix Corpo Vision) +*1992 Scénarisation d'un ensemble de huit vidéos destinées aux écoles secondaires et aux collèges du Québec, pour la Fondation de l'entrepreneurship Québécois. (Prix Adate) +*1991 ''Guide à l'intention du nouveau personnel'', rédaction d'une brochure d'accueil pour la Commission scolaire Louis-Fréchette. +*1990 Comment ça va chez vous? scénario produit pour la Confédération des caisses Desjardins. +*1990 ''Le choc est aussi grand pour les petits.'' I et II, scénario de deux vidéos pour la Régie de l'assurance automobile du Québec. +*1990 Participation au concours de nouvelles de Radio-Canada avec ''Alexandre et Cassiopée.'' +*1989 Participation au concours de nouvelles de Radio-Canada avec ''Le mystère de la cathédrale.'' +*1989 ''La Double vie d'Antoine Gagnon, Ministre'', scénario d'un téléfilm pour Radio-Canada. +*1988 ''Passeport pour la liberté'', Les Quinze Éditeurs, Montréal. {{ISBN|2-89026-368-1}}. (Prix Robert-Cliche) +*1988 Coédition aux Éditions Jean Picollec, à Paris, du roman ''Passeport pour la liberté'', 303 pages, {{ISBN|2-86477-088-1}}. +*1987 Participation au concours de nouvelles de Radio-''Canada avec Le secret''. +*1987 Collaboration au scénario et aux dialogues de ''Vie décolle'', vidéo produite pour la Commission scolaire Abénakis (21 minutes). +*1983 Rédaction et direction de ''C'est qui ma maman à moi?'' pièce de théâtre montée par la troupe de la Polyvalente Benoît-Vachon de Sainte-Marie de Beauce. +*1982 Rédaction et direction de ''Au nom du père, de la fille et du Sain d'esprit'', pièce de théâtre montée par la troupe de la Polyvalente Benoît -Vachon de Sainte-Marie de Beauce. +*1977 Corédaction et mise en scène de la pièce ''Coup de Théâtre à Ste-Onction'' jouée par les élèves de la Polyvalente Benoît-Vachon de Sainte-Marie de Beauce + +== Références == +{{references}} + +{{Portail|littérature}} + +{{CLEDETRI:Beaudet, Raymond}} +[[Catégorie:Écrivain québécois|Beaudet, Raymond]] +[[Catégorie:Naissance en 1950]] + gcztym9pvfpkh5peu187doykx808uwp + + + 179886695 + 179886647 + 2021-02-13T21:47:05Z + + Hyméros + 1956926 + + Ajout de {{[[Modèle:Admissibilité à vérifier|Admissibilité à vérifier]]}} et {{[[Modèle:Sans source|Sans source]]}} + wikitext + text/x-wiki + {{Admissibilité à vérifier|date=février 2021|motif=Pas privatisée depuis sa création, pas de sources, rien démontrant autre chose qu'une recherche de notoriété.}} +{{Sans source|date=février 2021}} +{{À sourcer|date=mars 2019}} +{{voir homonymes|Beaudet}} +{{Infobox Biographie2}} +'''Raymond Beaudet''' (Québec 1950 - ) est un écrivain et un scénariste [[Québec|québécois]]. Détenteur d’une maîtrise en [[philosophie]] de l’[[Université Laval]] (1975) on le retrouve successivement enseignant, syndicaliste, secrétaire particulier du Ministre des Richesses Naturelles, [[Yves Bérubé]], directeur d’école primaire et directeur d’école secondaire (Polyvalente Benoît-Vachon). Une passion l’anime pendant tout ce temps : l’écriture. Il est l’auteur de quatre romans, d’un essai, d’une trentaine de scénarios, de plusieurs nouvelles et de trois pièces de théâtre. Depuis 2014, il est actif en [[twittérature]]. + +== Honneurs == +*Prix du Patrimoine (2019) Catégorie Interprétation et Diffusion +*Prix coup de cœur du jury au Concours de twittérature du Centre de la Francophonie des Amériques 2016 +* Prix du Patrimoine (2011) Catégorie Interprétation et Diffusion +* [[Prix Robert-Cliche]] ([[1988]]), ''Passeport pour la liberté''<ref>{{lien web | url=http://www.edvlb.com/prixrobertcliche/laureats.aspx | titre=Lauréats du prix Robert-Cliche | consulté le=24 juin 2011}}</ref> +* Prix Corpo-vision (1992) +* Prix Adate (1993) + +== Bibliographie == +*2021 Le bonheur, chroniques d'une vie à la campagne, publié aux Éditions de la Roupille, 270 pages {{ISBN|978-2-924304-40-2}} +*2020 En décide de vendre, nouvelle parue dans Les Écrits mariverains 2020, {{ISBN|978-2-9810768-2-3}} + +*2019 : +** Tableaux et portraits mariverains, Capsules historiques, {{ISBN|978-2-9810768-2-3}}. +** Carnet d'un passager clandestin, nouvelle parue dans Les Écrits Mariverains 2019, {{ISBN|978-2-9810768-0-9}} +** Voix de dépassement, scénario du spectacle de la Corporation des Instrumentistes Associés. +*2018 +** Marie-Claire et moi, nouvelle parue dans Les Écrits mariverains 2018, {{ISBN|978-2-9809683-9-6}} +** La dernière scène, scénario du spectacle de la Corporation des Instrumentistes Associés. +** La boucherie, Projet personnel d'orientation, Ministère de l'Éducation et de l'Enseignement supérieur. +*2017 +** L'idée perdue, nouvelle parue dans Les Écrits mariverains 2017, {{ISBN|978-2-9809683-8-9}} +** Coups de cœur, scénario du spectacle de la Corporation des Instrumentistes Associés. +*2016 +** Éliza Caztel de Sainte-Marie, nouvelle parue dans Les Écrits mariverains 2016, {{ISBN|978-2-9809683-7-2}} +** La CIA sème le trouble, scénario du spectacle de la Corporation des Instrumentistes Associés. +*2015 La photographie numérique, Projet personnel d'orientation, Ministère de l'Éducation du Loisir et du sport. +*2015 Impressions de voyage : le Chili, nouvelle parue dans Les Écrits mariverains 2015, {{ISBN|978-2-9809683-6-5}} +*2015 La CIA, version 5.0, scénario du spectacle de la Corporation des Instrumentistes Associés. +*2014 Le désastreux destin d'Arlette Mallette, nouvelle parue dans Les Écrits mariverains 2014, {{ISBN|978-2-9809683-5-8}} +*2014 La CIA, L'espace d'une vie, scénario du spectacle de la Corporation des Instrumentistes Associés. +*2014 Carapaces, Roman publié aux Éditions Textes et Contextes, 279 pages. {{ISBN|978-2-923706-63-4}} +*2013 La Politique, Projet personnel d'orientation, Ministère de l'Éducation du Loisir et du sport. +*2013 La CIA poursuit son enquête, scénario du spectacle de la Corporation des Instrumentistes Associés. +*2013 Napoléon, nouvelle parue dans Les Écrits mariverains 2013. {{ISBN|978-2-9809683-4-1}} +*2012 Ménage de cave, nouvelle parue dans Les Écrits mariverains, 2012. {{ISBN|978-2-980-9683-3-4}} +*2012 En quête de mission, scénario du spectacle de la Corporation des Instrumentistes Associés. +*2012 Finaliste dans deux concours de Zone d’écriture de Radio-Canada en twittérature. +*2011 La CIA autour du monde, scénario du spectacle de la Corporation des Instrumentistes Associés. +*2011 En deuxième vitesse, nouvelle parue dans Les Écrits mariverains 2011. {{ISBN|978-2-980-9683-1-0|}} +*2010 Biographie de Jeannine Rousseau et Rolland Massicotte, scénario. +*2010 Le Projet Adam et Ève, nouvelle parue dans Écrits mariverains 2010, {{ISBN|978-2-980-9683-1-0}} +*2009 Alexandre et Cassiopée, nouvelle parue dans Écrits mariverains 2009. +*2008 ''Dans un mois, dans un an'', Roman publié dans la collection Les mots inventifs, Les Éditions du Mécène, 576 pages. {{ISBN|978-2-923150-61-1}} +*2007 ''L'écriture'', Projet personnel d'orientation, Ministère de l'Éducation du Loisir et du sport. +*2005 ''29, rue des Remparts'', Roman publié dans la collection Les mots inventifs, Les éditions du Mécène, 192 pages. {{ISBN|2-923150-28-7}} +*2003 ''Vie 101'', Essai publié dans la collection Les mots utiles, Les Éditions du Mécène. 126 pages. {{ISBN|2-923150-03-1}} +*2002 ''Le groupe conseil fiscalis'', scénario produit pour le groupe conseil Fiscalis. +*2001 ''Lévis, ville nouvelle'', scénario de deux émissions de trente minutes pour le Comité de transition de la ville de Lévis et Canal Vox +*2001 ''L’école québécoise, ce qu’il y a de mieux pour votre enfant'', scénario produit pour le Ministère de l’éducation du Québec. +*2000 ''Le jeu en valait-il la chandelle?'' scénario produit pour le Centre québécois d’excellence pour la prévention et le traitement du jeu. (Université Laval) +*1999 ''Le hasard, Lucky, on peut rien y changer'', scénario produit pour le Centre québécois d’excellence pour la prévention et le traitement du jeu. (Université Laval) +*1999 ''Un pacte fiscal pour l’an 2000, des idées, de la solidarité'', scénario produit pour l’Union des Municipalités régionales de comté et des municipalités locales. +*1999 ''Détect-o-max et Une journée avec Détect-o-max'', deux scénarios produits pour Conception Ro-main inc. +*1999 ''Propane GRG, à l’écoute de ses clients'', scénario produit pour la firme Propane GRG inc. +*1998 ''Maître du mètre'', scénario d’un documentaire sur les 25 ans du système métrique au Québec. +*1997 ''Le temps des sucres'', scénario produit pour la firme Shady Maple Farms. +*1996 ''Le Génie de campagne'', scénario produit pour les Forces armées canadiennes. +*1996 ''La Compagnie franche de la Marine de Québec'', scénario produit pour les Forces armées canadiennes. +*1995 ''Bon séjour à l'École navale de Québec'', scénario produit pour les Forces armées canadiennes. +*1994 ''Un leadership, des services'', scénario produit pour la Fédération des commissions scolaires du Québec. +*1993 ''Les clubs de recherche d'emploi'', scénario produit pour le Ministère de l'Emploi et de l'Immigration du Canada. +*1992 ''Fiers de notre avenir'', scénario produit pour l'Assurance-Vie Desjardins. +*1992 ''Responsible Leadership'', scénario produit pour la compagnie papetière Donohue. (Prix Corpo Vision) +*1992 Scénarisation d'un ensemble de huit vidéos destinées aux écoles secondaires et aux collèges du Québec, pour la Fondation de l'entrepreneurship Québécois. (Prix Adate) +*1991 ''Guide à l'intention du nouveau personnel'', rédaction d'une brochure d'accueil pour la Commission scolaire Louis-Fréchette. +*1990 Comment ça va chez vous? scénario produit pour la Confédération des caisses Desjardins. +*1990 ''Le choc est aussi grand pour les petits.'' I et II, scénario de deux vidéos pour la Régie de l'assurance automobile du Québec. +*1990 Participation au concours de nouvelles de Radio-Canada avec ''Alexandre et Cassiopée.'' +*1989 Participation au concours de nouvelles de Radio-Canada avec ''Le mystère de la cathédrale.'' +*1989 ''La Double vie d'Antoine Gagnon, Ministre'', scénario d'un téléfilm pour Radio-Canada. +*1988 ''Passeport pour la liberté'', Les Quinze Éditeurs, Montréal. {{ISBN|2-89026-368-1}}. (Prix Robert-Cliche) +*1988 Coédition aux Éditions Jean Picollec, à Paris, du roman ''Passeport pour la liberté'', 303 pages, {{ISBN|2-86477-088-1}}. +*1987 Participation au concours de nouvelles de Radio-''Canada avec Le secret''. +*1987 Collaboration au scénario et aux dialogues de ''Vie décolle'', vidéo produite pour la Commission scolaire Abénakis (21 minutes). +*1983 Rédaction et direction de ''C'est qui ma maman à moi?'' pièce de théâtre montée par la troupe de la Polyvalente Benoît-Vachon de Sainte-Marie de Beauce. +*1982 Rédaction et direction de ''Au nom du père, de la fille et du Sain d'esprit'', pièce de théâtre montée par la troupe de la Polyvalente Benoît -Vachon de Sainte-Marie de Beauce. +*1977 Corédaction et mise en scène de la pièce ''Coup de Théâtre à Ste-Onction'' jouée par les élèves de la Polyvalente Benoît-Vachon de Sainte-Marie de Beauce + +== Références == +{{references}} + +{{Portail|littérature}} + +{{CLEDETRI:Beaudet, Raymond}} +[[Catégorie:Écrivain québécois|Beaudet, Raymond]] +[[Catégorie:Naissance en 1950]] + 5syx6fpzm5ahlfepf9sgkke6uozk6cp + + + 182036618 + 179886695 + 2021-04-18T14:54:05Z + + Mi Ga + 38974 + + Ajout + wikitext + text/x-wiki + {{Admissibilité à vérifier|date=février 2021|motif=Pas privatisée depuis sa création, pas de sources, rien démontrant autre chose qu'une recherche de notoriété.}} +{{Sans source|date=février 2021}} +{{À sourcer|date=mars 2019}} +{{voir homonymes|Beaudet}} +{{Infobox Biographie2}} +'''Raymond Beaudet''' (Québec 1950 - ) est un écrivain et un scénariste [[Québec|québécois]]. Détenteur d’une maîtrise en [[philosophie]] de l’[[Université Laval]] (1975) on le retrouve successivement enseignant, syndicaliste, secrétaire particulier du Ministre des Richesses Naturelles, [[Yves Bérubé]], directeur d’école primaire et directeur d’école secondaire (Polyvalente Benoît-Vachon). Une passion l’anime pendant tout ce temps : l’écriture. Il est l’auteur de quatre romans, d’un essai, d’une trentaine de scénarios, de plusieurs nouvelles et de trois pièces de théâtre. Depuis 2014, il est actif en [[twittérature]]. + +== Honneurs == +*Prix du Patrimoine (2019) Catégorie Interprétation et Diffusion +*Prix coup de cœur du jury au Concours de twittérature du Centre de la Francophonie des Amériques 2016 +* Prix du Patrimoine (2011) Catégorie Interprétation et Diffusion +* [[Prix Robert-Cliche]] ([[1988]]), ''Passeport pour la liberté''<ref>{{lien web | url=http://www.edvlb.com/prixrobertcliche/laureats.aspx | titre=Lauréats du prix Robert-Cliche | consulté le=24 juin 2011}}</ref> +* Prix Corpo-vision (1992) +* Prix Adate (1993) + +== Bibliographie == +*2021 Le bonheur, chroniques d'une vie à la campagne, publié aux Éditions de la Roupille, 270 pages {{ISBN|978-2-924304-40-2}} +*2020 En décide de vendre, nouvelle parue dans Les Écrits mariverains 2020, {{ISBN|978-2-9810768-2-3}} + +*2019 : +** Tableaux et portraits mariverains, Capsules historiques, {{ISBN|978-2-9810768-2-3}}. +** Carnet d'un passager clandestin, nouvelle parue dans Les Écrits Mariverains 2019, {{ISBN|978-2-9810768-0-9}} +** Voix de dépassement, scénario du spectacle de la Corporation des Instrumentistes Associés. +*2018 +** Marie-Claire et moi, nouvelle parue dans Les Écrits mariverains 2018, {{ISBN|978-2-9809683-9-6}} +** La dernière scène, scénario du spectacle de la Corporation des Instrumentistes Associés. +** La boucherie, Projet personnel d'orientation, Ministère de l'Éducation et de l'Enseignement supérieur. +*2017 +** L'idée perdue, nouvelle parue dans Les Écrits mariverains 2017, {{ISBN|978-2-9809683-8-9}} +** Coups de cœur, scénario du spectacle de la Corporation des Instrumentistes Associés. +*2016 +** Éliza Caztel de Sainte-Marie, nouvelle parue dans Les Écrits mariverains 2016, {{ISBN|978-2-9809683-7-2}} +** La CIA sème le trouble, scénario du spectacle de la Corporation des Instrumentistes Associés. +*2015 La photographie numérique, Projet personnel d'orientation, Ministère de l'Éducation du Loisir et du sport. +*2015 Impressions de voyage : le Chili, nouvelle parue dans Les Écrits mariverains 2015, {{ISBN|978-2-9809683-6-5}} +*2015 La CIA, version 5.0, scénario du spectacle de la Corporation des Instrumentistes Associés. +*2014 Le désastreux destin d'Arlette Mallette, nouvelle parue dans Les Écrits mariverains 2014, {{ISBN|978-2-9809683-5-8}} +*2014 La CIA, L'espace d'une vie, scénario du spectacle de la Corporation des Instrumentistes Associés. +*2014 Carapaces, Roman publié aux Éditions Textes et Contextes, 279 pages. {{ISBN|978-2-923706-63-4}} +*2013 La Politique, Projet personnel d'orientation, Ministère de l'Éducation du Loisir et du sport. +*2013 La CIA poursuit son enquête, scénario du spectacle de la Corporation des Instrumentistes Associés. +*2013 Napoléon, nouvelle parue dans Les Écrits mariverains 2013. {{ISBN|978-2-9809683-4-1}} +*2012 Ménage de cave, nouvelle parue dans Les Écrits mariverains, 2012. {{ISBN|978-2-980-9683-3-4}} +*2012 En quête de mission, scénario du spectacle de la Corporation des Instrumentistes Associés. +*2012 Finaliste dans deux concours de Zone d’écriture de Radio-Canada en twittérature. +*2011 La CIA autour du monde, scénario du spectacle de la Corporation des Instrumentistes Associés. +*2011 En deuxième vitesse, nouvelle parue dans Les Écrits mariverains 2011. {{ISBN|978-2-980-9683-1-0|}} +*2010 Biographie de Jeannine Rousseau et Rolland Massicotte, scénario. +*2010 Le Projet Adam et Ève, nouvelle parue dans Écrits mariverains 2010, {{ISBN|978-2-980-9683-1-0}} +*2009 Alexandre et Cassiopée, nouvelle parue dans Écrits mariverains 2009. +*2008 ''Dans un mois, dans un an'', Roman publié dans la collection Les mots inventifs, Les Éditions du Mécène, 576 pages. {{ISBN|978-2-923150-61-1}} +*2007 ''L'écriture'', Projet personnel d'orientation, Ministère de l'Éducation du Loisir et du sport. +*2005 ''29, rue des Remparts'', Roman publié dans la collection Les mots inventifs, Les éditions du Mécène, 192 pages. {{ISBN|2-923150-28-7}} +*2003 ''Vie 101'', Essai publié dans la collection Les mots utiles, Les Éditions du Mécène. 126 pages. {{ISBN|2-923150-03-1}} +*2002 ''Le groupe conseil fiscalis'', scénario produit pour le groupe conseil Fiscalis. +*2001 ''Lévis, ville nouvelle'', scénario de deux émissions de trente minutes pour le Comité de transition de la ville de Lévis et Canal Vox +*2001 ''L’école québécoise, ce qu’il y a de mieux pour votre enfant'', scénario produit pour le Ministère de l’éducation du Québec. +*2000 ''Le jeu en valait-il la chandelle?'' scénario produit pour le Centre québécois d’excellence pour la prévention et le traitement du jeu. (Université Laval) +*1999 ''Le hasard, Lucky, on peut rien y changer'', scénario produit pour le Centre québécois d’excellence pour la prévention et le traitement du jeu. (Université Laval) +*1999 ''Un pacte fiscal pour l’an 2000, des idées, de la solidarité'', scénario produit pour l’Union des Municipalités régionales de comté et des municipalités locales. +*1999 ''Détect-o-max et Une journée avec Détect-o-max'', deux scénarios produits pour Conception Ro-main inc. +*1999 ''Propane GRG, à l’écoute de ses clients'', scénario produit pour la firme Propane GRG inc. +*1998 ''Maître du mètre'', scénario d’un documentaire sur les 25 ans du système métrique au Québec. +*1997 ''Le temps des sucres'', scénario produit pour la firme Shady Maple Farms. +*1996 ''Le Génie de campagne'', scénario produit pour les Forces armées canadiennes. +*1996 ''La Compagnie franche de la Marine de Québec'', scénario produit pour les Forces armées canadiennes. +*1995 ''Bon séjour à l'École navale de Québec'', scénario produit pour les Forces armées canadiennes. +*1994 ''Un leadership, des services'', scénario produit pour la Fédération des commissions scolaires du Québec. +*1993 ''Les clubs de recherche d'emploi'', scénario produit pour le Ministère de l'Emploi et de l'Immigration du Canada. +*1992 ''Fiers de notre avenir'', scénario produit pour l'Assurance-Vie Desjardins. +*1992 ''Responsible Leadership'', scénario produit pour la compagnie papetière Donohue. (Prix Corpo Vision) +*1992 Scénarisation d'un ensemble de huit vidéos destinées aux écoles secondaires et aux collèges du Québec, pour la Fondation de l'entrepreneurship Québécois. (Prix Adate) +*1991 ''Guide à l'intention du nouveau personnel'', rédaction d'une brochure d'accueil pour la Commission scolaire Louis-Fréchette. +*1990 Comment ça va chez vous? scénario produit pour la Confédération des caisses Desjardins. +*1990 ''Le choc est aussi grand pour les petits.'' I et II, scénario de deux vidéos pour la Régie de l'assurance automobile du Québec. +*1990 Participation au concours de nouvelles de Radio-Canada avec ''Alexandre et Cassiopée.'' +*1989 Participation au concours de nouvelles de Radio-Canada avec ''Le mystère de la cathédrale.'' +*1989 ''La Double vie d'Antoine Gagnon, Ministre'', scénario d'un téléfilm pour Radio-Canada. +*1988 ''Passeport pour la liberté'', Les Quinze Éditeurs, Montréal. {{ISBN|2-89026-368-1}}. (Prix Robert-Cliche) +*1988 Coédition aux Éditions Jean Picollec, à Paris, du roman ''Passeport pour la liberté'', 303 pages, {{ISBN|2-86477-088-1}}. +*1987 Participation au concours de nouvelles de Radio-''Canada avec Le secret''. +*1987 Collaboration au scénario et aux dialogues de ''Vie décolle'', vidéo produite pour la Commission scolaire Abénakis (21 minutes). +*1983 Rédaction et direction de ''C'est qui ma maman à moi?'' pièce de théâtre montée par la troupe de la Polyvalente Benoît-Vachon de Sainte-Marie de Beauce. +*1982 Rédaction et direction de ''Au nom du père, de la fille et du Sain d'esprit'', pièce de théâtre montée par la troupe de la Polyvalente Benoît -Vachon de Sainte-Marie de Beauce. +*1977 Corédaction et mise en scène de la pièce ''Coup de Théâtre à Ste-Onction'' jouée par les élèves de la Polyvalente Benoît-Vachon de Sainte-Marie de Beauce + +== Références == +{{references}} + +{{Portail|Québec|littérature}} + +{{CLEDETRI:Beaudet, Raymond}} +[[Catégorie:Écrivain québécois|Beaudet, Raymond]] +[[Catégorie:Naissance en 1950]] + f01uxloeorrv0mxq12gvil0jni2hc60 + + + 186536193 + 182036618 + 2021-09-22T15:22:41Z + + SuperTom4277 + 3477067 + + Mise à jour en incluant de nouvelles publications + wikitext + text/x-wiki + {{Admissibilité à vérifier|date=février 2021|motif=Pas privatisée depuis sa création, pas de sources, rien démontrant autre chose qu'une recherche de notoriété.}} +{{Sans source|date=février 2021}} +{{À sourcer|date=mars 2019}} +{{voir homonymes|Beaudet}} +{{Infobox Biographie2}} +'''Raymond Beaudet''' (Québec 1950 - ) est un écrivain et un scénariste [[Québec|québécois]]. Détenteur d’une maîtrise en [[philosophie]] de l’[[Université Laval]] (1975) on le retrouve successivement enseignant, syndicaliste, secrétaire particulier du Ministre des Richesses Naturelles, [[Yves Bérubé]], directeur d’école primaire et directeur d’école secondaire (Polyvalente Benoît-Vachon). Une passion l’anime pendant tout ce temps : l’écriture. Il est l’auteur de quatre romans, d’un essai, d’une trentaine de scénarios, de plusieurs nouvelles et de trois pièces de théâtre. Depuis 2014, il est actif en [[twittérature]]. + +== Honneurs == +*Prix du Patrimoine (2019) Catégorie Interprétation et Diffusion +*Prix coup de cœur du jury au Concours de twittérature du Centre de la Francophonie des Amériques 2016 +* Prix du Patrimoine (2011) Catégorie Interprétation et Diffusion +* [[Prix Robert-Cliche]] ([[1988]]), ''Passeport pour la liberté''<ref>{{lien web | url=http://www.edvlb.com/prixrobertcliche/laureats.aspx | titre=Lauréats du prix Robert-Cliche | consulté le=24 juin 2011}}</ref> +* Prix Corpo-vision (1992) +* Prix Adate (1993) + +== Bibliographie == +*2021 Les lieux enchantés du Parc Taschereau, publié aux Éditions de la Roupille, 96 pages, ISBN : 978-2-924304-45-7 +*2021 Normand Maurice, père de la récupération au Québec, biographie publiée aux Éditions de la Roupille, 176 pages, ISBN : 978-2-924304-39-6 +*2021 Le bonheur, chroniques d'une vie à la campagne, publié aux Éditions de la Roupille, 270 pages {{ISBN|978-2-924304-40-2}} +*2020 En décide de vendre, nouvelle parue dans Les Écrits mariverains 2020, {{ISBN|978-2-9810768-2-3}} + +*2019 : +** Tableaux et portraits mariverains, Capsules historiques, {{ISBN|978-2-9810768-2-3}}. +** Carnet d'un passager clandestin, nouvelle parue dans Les Écrits Mariverains 2019, {{ISBN|978-2-9810768-0-9}} +** Voix de dépassement, scénario du spectacle de la Corporation des Instrumentistes Associés. +*2018 +** Marie-Claire et moi, nouvelle parue dans Les Écrits mariverains 2018, {{ISBN|978-2-9809683-9-6}} +** La dernière scène, scénario du spectacle de la Corporation des Instrumentistes Associés. +** La boucherie, Projet personnel d'orientation, Ministère de l'Éducation et de l'Enseignement supérieur. +*2017 +** L'idée perdue, nouvelle parue dans Les Écrits mariverains 2017, {{ISBN|978-2-9809683-8-9}} +** Coups de cœur, scénario du spectacle de la Corporation des Instrumentistes Associés. +*2016 +** Éliza Caztel de Sainte-Marie, nouvelle parue dans Les Écrits mariverains 2016, {{ISBN|978-2-9809683-7-2}} +** La CIA sème le trouble, scénario du spectacle de la Corporation des Instrumentistes Associés. +*2015 La photographie numérique, Projet personnel d'orientation, Ministère de l'Éducation du Loisir et du sport. +*2015 Impressions de voyage : le Chili, nouvelle parue dans Les Écrits mariverains 2015, {{ISBN|978-2-9809683-6-5}} +*2015 La CIA, version 5.0, scénario du spectacle de la Corporation des Instrumentistes Associés. +*2014 Le désastreux destin d'Arlette Mallette, nouvelle parue dans Les Écrits mariverains 2014, {{ISBN|978-2-9809683-5-8}} +*2014 La CIA, L'espace d'une vie, scénario du spectacle de la Corporation des Instrumentistes Associés. +*2014 Carapaces, Roman publié aux Éditions Textes et Contextes, 279 pages. {{ISBN|978-2-923706-63-4}} +*2013 La Politique, Projet personnel d'orientation, Ministère de l'Éducation du Loisir et du sport. +*2013 La CIA poursuit son enquête, scénario du spectacle de la Corporation des Instrumentistes Associés. +*2013 Napoléon, nouvelle parue dans Les Écrits mariverains 2013. {{ISBN|978-2-9809683-4-1}} +*2012 Ménage de cave, nouvelle parue dans Les Écrits mariverains, 2012. {{ISBN|978-2-980-9683-3-4}} +*2012 En quête de mission, scénario du spectacle de la Corporation des Instrumentistes Associés. +*2012 Finaliste dans deux concours de Zone d’écriture de Radio-Canada en twittérature. +*2011 La CIA autour du monde, scénario du spectacle de la Corporation des Instrumentistes Associés. +*2011 En deuxième vitesse, nouvelle parue dans Les Écrits mariverains 2011. {{ISBN|978-2-980-9683-1-0|}} +*2010 Biographie de Jeannine Rousseau et Rolland Massicotte, scénario. +*2010 Le Projet Adam et Ève, nouvelle parue dans Écrits mariverains 2010, {{ISBN|978-2-980-9683-1-0}} +*2009 Alexandre et Cassiopée, nouvelle parue dans Écrits mariverains 2009. +*2008 ''Dans un mois, dans un an'', Roman publié dans la collection Les mots inventifs, Les Éditions du Mécène, 576 pages. {{ISBN|978-2-923150-61-1}} +*2007 ''L'écriture'', Projet personnel d'orientation, Ministère de l'Éducation du Loisir et du sport. +*2005 ''29, rue des Remparts'', Roman publié dans la collection Les mots inventifs, Les éditions du Mécène, 192 pages. {{ISBN|2-923150-28-7}} +*2003 ''Vie 101'', Essai publié dans la collection Les mots utiles, Les Éditions du Mécène. 126 pages. {{ISBN|2-923150-03-1}} +*2002 ''Le groupe conseil fiscalis'', scénario produit pour le groupe conseil Fiscalis. +*2001 ''Lévis, ville nouvelle'', scénario de deux émissions de trente minutes pour le Comité de transition de la ville de Lévis et Canal Vox +*2001 ''L’école québécoise, ce qu’il y a de mieux pour votre enfant'', scénario produit pour le Ministère de l’éducation du Québec. +*2000 ''Le jeu en valait-il la chandelle?'' scénario produit pour le Centre québécois d’excellence pour la prévention et le traitement du jeu. (Université Laval) +*1999 ''Le hasard, Lucky, on peut rien y changer'', scénario produit pour le Centre québécois d’excellence pour la prévention et le traitement du jeu. (Université Laval) +*1999 ''Un pacte fiscal pour l’an 2000, des idées, de la solidarité'', scénario produit pour l’Union des Municipalités régionales de comté et des municipalités locales. +*1999 ''Détect-o-max et Une journée avec Détect-o-max'', deux scénarios produits pour Conception Ro-main inc. +*1999 ''Propane GRG, à l’écoute de ses clients'', scénario produit pour la firme Propane GRG inc. +*1998 ''Maître du mètre'', scénario d’un documentaire sur les 25 ans du système métrique au Québec. +*1997 ''Le temps des sucres'', scénario produit pour la firme Shady Maple Farms. +*1996 ''Le Génie de campagne'', scénario produit pour les Forces armées canadiennes. +*1996 ''La Compagnie franche de la Marine de Québec'', scénario produit pour les Forces armées canadiennes. +*1995 ''Bon séjour à l'École navale de Québec'', scénario produit pour les Forces armées canadiennes. +*1994 ''Un leadership, des services'', scénario produit pour la Fédération des commissions scolaires du Québec. +*1993 ''Les clubs de recherche d'emploi'', scénario produit pour le Ministère de l'Emploi et de l'Immigration du Canada. +*1992 ''Fiers de notre avenir'', scénario produit pour l'Assurance-Vie Desjardins. +*1992 ''Responsible Leadership'', scénario produit pour la compagnie papetière Donohue. (Prix Corpo Vision) +*1992 Scénarisation d'un ensemble de huit vidéos destinées aux écoles secondaires et aux collèges du Québec, pour la Fondation de l'entrepreneurship Québécois. (Prix Adate) +*1991 ''Guide à l'intention du nouveau personnel'', rédaction d'une brochure d'accueil pour la Commission scolaire Louis-Fréchette. +*1990 Comment ça va chez vous? scénario produit pour la Confédération des caisses Desjardins. +*1990 ''Le choc est aussi grand pour les petits.'' I et II, scénario de deux vidéos pour la Régie de l'assurance automobile du Québec. +*1990 Participation au concours de nouvelles de Radio-Canada avec ''Alexandre et Cassiopée.'' +*1989 Participation au concours de nouvelles de Radio-Canada avec ''Le mystère de la cathédrale.'' +*1989 ''La Double vie d'Antoine Gagnon, Ministre'', scénario d'un téléfilm pour Radio-Canada. +*1988 ''Passeport pour la liberté'', Les Quinze Éditeurs, Montréal. {{ISBN|2-89026-368-1}}. (Prix Robert-Cliche) +*1988 Coédition aux Éditions Jean Picollec, à Paris, du roman ''Passeport pour la liberté'', 303 pages, {{ISBN|2-86477-088-1}}. +*1987 Participation au concours de nouvelles de Radio-''Canada avec Le secret''. +*1987 Collaboration au scénario et aux dialogues de ''Vie décolle'', vidéo produite pour la Commission scolaire Abénakis (21 minutes). +*1983 Rédaction et direction de ''C'est qui ma maman à moi?'' pièce de théâtre montée par la troupe de la Polyvalente Benoît-Vachon de Sainte-Marie de Beauce. +*1982 Rédaction et direction de ''Au nom du père, de la fille et du Sain d'esprit'', pièce de théâtre montée par la troupe de la Polyvalente Benoît -Vachon de Sainte-Marie de Beauce. +*1977 Corédaction et mise en scène de la pièce ''Coup de Théâtre à Ste-Onction'' jouée par les élèves de la Polyvalente Benoît-Vachon de Sainte-Marie de Beauce + +== Références == +{{references}} + +{{Portail|Québec|littérature}} + +{{CLEDETRI:Beaudet, Raymond}} +[[Catégorie:Écrivain québécois|Beaudet, Raymond]] +[[Catégorie:Naissance en 1950]] + mv7yqxqjpw6793tytpofemlbh7det8j + + + 186586916 + 186536193 + 2021-09-24T15:24:48Z + + RG067 + 2867070 + + + v2.04 - [[P:CS|Correction syntaxique]] (Numéro ISBN : syntaxe erronée) + wikitext + text/x-wiki + {{Admissibilité à vérifier|date=février 2021|motif=Pas privatisée depuis sa création, pas de sources, rien démontrant autre chose qu'une recherche de notoriété.}} +{{Sans source|date=février 2021}} +{{À sourcer|date=mars 2019}} +{{voir homonymes|Beaudet}} +{{Infobox Biographie2}} +'''Raymond Beaudet''' (Québec 1950 - ) est un écrivain et un scénariste [[Québec|québécois]]. Détenteur d’une maîtrise en [[philosophie]] de l’[[Université Laval]] (1975) on le retrouve successivement enseignant, syndicaliste, secrétaire particulier du Ministre des Richesses Naturelles, [[Yves Bérubé]], directeur d’école primaire et directeur d’école secondaire (Polyvalente Benoît-Vachon). Une passion l’anime pendant tout ce temps : l’écriture. Il est l’auteur de quatre romans, d’un essai, d’une trentaine de scénarios, de plusieurs nouvelles et de trois pièces de théâtre. Depuis 2014, il est actif en [[twittérature]]. + +== Honneurs == +*Prix du Patrimoine (2019) Catégorie Interprétation et Diffusion +*Prix coup de cœur du jury au Concours de twittérature du Centre de la Francophonie des Amériques 2016 +* Prix du Patrimoine (2011) Catégorie Interprétation et Diffusion +* [[Prix Robert-Cliche]] ([[1988]]), ''Passeport pour la liberté''<ref>{{lien web | url=http://www.edvlb.com/prixrobertcliche/laureats.aspx | titre=Lauréats du prix Robert-Cliche | consulté le=24 juin 2011}}</ref> +* Prix Corpo-vision (1992) +* Prix Adate (1993) + +== Bibliographie == +*2021 Les lieux enchantés du Parc Taschereau, publié aux Éditions de la Roupille, 96 pages, {{ISBN|978-2-924304-45-7}} +*2021 Normand Maurice, père de la récupération au Québec, biographie publiée aux Éditions de la Roupille, 176 pages, {{ISBN|978-2-924304-39-6}} +*2021 Le bonheur, chroniques d'une vie à la campagne, publié aux Éditions de la Roupille, 270 pages {{ISBN|978-2-924304-40-2}} +*2020 En décide de vendre, nouvelle parue dans Les Écrits mariverains 2020, {{ISBN|978-2-9810768-2-3}} + +*2019 : +** Tableaux et portraits mariverains, Capsules historiques, {{ISBN|978-2-9810768-2-3}}. +** Carnet d'un passager clandestin, nouvelle parue dans Les Écrits Mariverains 2019, {{ISBN|978-2-9810768-0-9}} +** Voix de dépassement, scénario du spectacle de la Corporation des Instrumentistes Associés. +*2018 +** Marie-Claire et moi, nouvelle parue dans Les Écrits mariverains 2018, {{ISBN|978-2-9809683-9-6}} +** La dernière scène, scénario du spectacle de la Corporation des Instrumentistes Associés. +** La boucherie, Projet personnel d'orientation, Ministère de l'Éducation et de l'Enseignement supérieur. +*2017 +** L'idée perdue, nouvelle parue dans Les Écrits mariverains 2017, {{ISBN|978-2-9809683-8-9}} +** Coups de cœur, scénario du spectacle de la Corporation des Instrumentistes Associés. +*2016 +** Éliza Caztel de Sainte-Marie, nouvelle parue dans Les Écrits mariverains 2016, {{ISBN|978-2-9809683-7-2}} +** La CIA sème le trouble, scénario du spectacle de la Corporation des Instrumentistes Associés. +*2015 La photographie numérique, Projet personnel d'orientation, Ministère de l'Éducation du Loisir et du sport. +*2015 Impressions de voyage : le Chili, nouvelle parue dans Les Écrits mariverains 2015, {{ISBN|978-2-9809683-6-5}} +*2015 La CIA, version 5.0, scénario du spectacle de la Corporation des Instrumentistes Associés. +*2014 Le désastreux destin d'Arlette Mallette, nouvelle parue dans Les Écrits mariverains 2014, {{ISBN|978-2-9809683-5-8}} +*2014 La CIA, L'espace d'une vie, scénario du spectacle de la Corporation des Instrumentistes Associés. +*2014 Carapaces, Roman publié aux Éditions Textes et Contextes, 279 pages. {{ISBN|978-2-923706-63-4}} +*2013 La Politique, Projet personnel d'orientation, Ministère de l'Éducation du Loisir et du sport. +*2013 La CIA poursuit son enquête, scénario du spectacle de la Corporation des Instrumentistes Associés. +*2013 Napoléon, nouvelle parue dans Les Écrits mariverains 2013. {{ISBN|978-2-9809683-4-1}} +*2012 Ménage de cave, nouvelle parue dans Les Écrits mariverains, 2012. {{ISBN|978-2-980-9683-3-4}} +*2012 En quête de mission, scénario du spectacle de la Corporation des Instrumentistes Associés. +*2012 Finaliste dans deux concours de Zone d’écriture de Radio-Canada en twittérature. +*2011 La CIA autour du monde, scénario du spectacle de la Corporation des Instrumentistes Associés. +*2011 En deuxième vitesse, nouvelle parue dans Les Écrits mariverains 2011. {{ISBN|978-2-980-9683-1-0|}} +*2010 Biographie de Jeannine Rousseau et Rolland Massicotte, scénario. +*2010 Le Projet Adam et Ève, nouvelle parue dans Écrits mariverains 2010, {{ISBN|978-2-980-9683-1-0}} +*2009 Alexandre et Cassiopée, nouvelle parue dans Écrits mariverains 2009. +*2008 ''Dans un mois, dans un an'', Roman publié dans la collection Les mots inventifs, Les Éditions du Mécène, 576 pages. {{ISBN|978-2-923150-61-1}} +*2007 ''L'écriture'', Projet personnel d'orientation, Ministère de l'Éducation du Loisir et du sport. +*2005 ''29, rue des Remparts'', Roman publié dans la collection Les mots inventifs, Les éditions du Mécène, 192 pages. {{ISBN|2-923150-28-7}} +*2003 ''Vie 101'', Essai publié dans la collection Les mots utiles, Les Éditions du Mécène. 126 pages. {{ISBN|2-923150-03-1}} +*2002 ''Le groupe conseil fiscalis'', scénario produit pour le groupe conseil Fiscalis. +*2001 ''Lévis, ville nouvelle'', scénario de deux émissions de trente minutes pour le Comité de transition de la ville de Lévis et Canal Vox +*2001 ''L’école québécoise, ce qu’il y a de mieux pour votre enfant'', scénario produit pour le Ministère de l’éducation du Québec. +*2000 ''Le jeu en valait-il la chandelle?'' scénario produit pour le Centre québécois d’excellence pour la prévention et le traitement du jeu. (Université Laval) +*1999 ''Le hasard, Lucky, on peut rien y changer'', scénario produit pour le Centre québécois d’excellence pour la prévention et le traitement du jeu. (Université Laval) +*1999 ''Un pacte fiscal pour l’an 2000, des idées, de la solidarité'', scénario produit pour l’Union des Municipalités régionales de comté et des municipalités locales. +*1999 ''Détect-o-max et Une journée avec Détect-o-max'', deux scénarios produits pour Conception Ro-main inc. +*1999 ''Propane GRG, à l’écoute de ses clients'', scénario produit pour la firme Propane GRG inc. +*1998 ''Maître du mètre'', scénario d’un documentaire sur les 25 ans du système métrique au Québec. +*1997 ''Le temps des sucres'', scénario produit pour la firme Shady Maple Farms. +*1996 ''Le Génie de campagne'', scénario produit pour les Forces armées canadiennes. +*1996 ''La Compagnie franche de la Marine de Québec'', scénario produit pour les Forces armées canadiennes. +*1995 ''Bon séjour à l'École navale de Québec'', scénario produit pour les Forces armées canadiennes. +*1994 ''Un leadership, des services'', scénario produit pour la Fédération des commissions scolaires du Québec. +*1993 ''Les clubs de recherche d'emploi'', scénario produit pour le Ministère de l'Emploi et de l'Immigration du Canada. +*1992 ''Fiers de notre avenir'', scénario produit pour l'Assurance-Vie Desjardins. +*1992 ''Responsible Leadership'', scénario produit pour la compagnie papetière Donohue. (Prix Corpo Vision) +*1992 Scénarisation d'un ensemble de huit vidéos destinées aux écoles secondaires et aux collèges du Québec, pour la Fondation de l'entrepreneurship Québécois. (Prix Adate) +*1991 ''Guide à l'intention du nouveau personnel'', rédaction d'une brochure d'accueil pour la Commission scolaire Louis-Fréchette. +*1990 Comment ça va chez vous? scénario produit pour la Confédération des caisses Desjardins. +*1990 ''Le choc est aussi grand pour les petits.'' I et II, scénario de deux vidéos pour la Régie de l'assurance automobile du Québec. +*1990 Participation au concours de nouvelles de Radio-Canada avec ''Alexandre et Cassiopée.'' +*1989 Participation au concours de nouvelles de Radio-Canada avec ''Le mystère de la cathédrale.'' +*1989 ''La Double vie d'Antoine Gagnon, Ministre'', scénario d'un téléfilm pour Radio-Canada. +*1988 ''Passeport pour la liberté'', Les Quinze Éditeurs, Montréal. {{ISBN|2-89026-368-1}}. (Prix Robert-Cliche) +*1988 Coédition aux Éditions Jean Picollec, à Paris, du roman ''Passeport pour la liberté'', 303 pages, {{ISBN|2-86477-088-1}}. +*1987 Participation au concours de nouvelles de Radio-''Canada avec Le secret''. +*1987 Collaboration au scénario et aux dialogues de ''Vie décolle'', vidéo produite pour la Commission scolaire Abénakis (21 minutes). +*1983 Rédaction et direction de ''C'est qui ma maman à moi?'' pièce de théâtre montée par la troupe de la Polyvalente Benoît-Vachon de Sainte-Marie de Beauce. +*1982 Rédaction et direction de ''Au nom du père, de la fille et du Sain d'esprit'', pièce de théâtre montée par la troupe de la Polyvalente Benoît -Vachon de Sainte-Marie de Beauce. +*1977 Corédaction et mise en scène de la pièce ''Coup de Théâtre à Ste-Onction'' jouée par les élèves de la Polyvalente Benoît-Vachon de Sainte-Marie de Beauce + +== Références == +{{references}} + +{{Portail|Québec|littérature}} + +{{CLEDETRI:Beaudet, Raymond}} +[[Catégorie:Écrivain québécois|Beaudet, Raymond]] +[[Catégorie:Naissance en 1950]] + d0dj145oqdo8n3m7bj062hewypdk85n + + + 186646730 + 186586916 + 2021-09-26T21:16:59Z + + Chris a liege + 10340 + + wikitext + text/x-wiki + {{suppression}} +{{Sans source|date=février 2021}} +{{À sourcer|date=mars 2019}} +{{voir homonymes|Beaudet}} +{{Infobox Biographie2}} +'''Raymond Beaudet''' (Québec 1950 - ) est un écrivain et un scénariste [[Québec|québécois]]. Détenteur d’une maîtrise en [[philosophie]] de l’[[Université Laval]] (1975) on le retrouve successivement enseignant, syndicaliste, secrétaire particulier du Ministre des Richesses Naturelles, [[Yves Bérubé]], directeur d’école primaire et directeur d’école secondaire (Polyvalente Benoît-Vachon). Une passion l’anime pendant tout ce temps : l’écriture. Il est l’auteur de quatre romans, d’un essai, d’une trentaine de scénarios, de plusieurs nouvelles et de trois pièces de théâtre. Depuis 2014, il est actif en [[twittérature]]. + +== Honneurs == +*Prix du Patrimoine (2019) Catégorie Interprétation et Diffusion +*Prix coup de cœur du jury au Concours de twittérature du Centre de la Francophonie des Amériques 2016 +* Prix du Patrimoine (2011) Catégorie Interprétation et Diffusion +* [[Prix Robert-Cliche]] ([[1988]]), ''Passeport pour la liberté''<ref>{{lien web | url=http://www.edvlb.com/prixrobertcliche/laureats.aspx | titre=Lauréats du prix Robert-Cliche | consulté le=24 juin 2011}}</ref> +* Prix Corpo-vision (1992) +* Prix Adate (1993) + +== Bibliographie == +*2021 Les lieux enchantés du Parc Taschereau, publié aux Éditions de la Roupille, 96 pages, {{ISBN|978-2-924304-45-7}} +*2021 Normand Maurice, père de la récupération au Québec, biographie publiée aux Éditions de la Roupille, 176 pages, {{ISBN|978-2-924304-39-6}} +*2021 Le bonheur, chroniques d'une vie à la campagne, publié aux Éditions de la Roupille, 270 pages {{ISBN|978-2-924304-40-2}} +*2020 En décide de vendre, nouvelle parue dans Les Écrits mariverains 2020, {{ISBN|978-2-9810768-2-3}} + +*2019 : +** Tableaux et portraits mariverains, Capsules historiques, {{ISBN|978-2-9810768-2-3}}. +** Carnet d'un passager clandestin, nouvelle parue dans Les Écrits Mariverains 2019, {{ISBN|978-2-9810768-0-9}} +** Voix de dépassement, scénario du spectacle de la Corporation des Instrumentistes Associés. +*2018 +** Marie-Claire et moi, nouvelle parue dans Les Écrits mariverains 2018, {{ISBN|978-2-9809683-9-6}} +** La dernière scène, scénario du spectacle de la Corporation des Instrumentistes Associés. +** La boucherie, Projet personnel d'orientation, Ministère de l'Éducation et de l'Enseignement supérieur. +*2017 +** L'idée perdue, nouvelle parue dans Les Écrits mariverains 2017, {{ISBN|978-2-9809683-8-9}} +** Coups de cœur, scénario du spectacle de la Corporation des Instrumentistes Associés. +*2016 +** Éliza Caztel de Sainte-Marie, nouvelle parue dans Les Écrits mariverains 2016, {{ISBN|978-2-9809683-7-2}} +** La CIA sème le trouble, scénario du spectacle de la Corporation des Instrumentistes Associés. +*2015 La photographie numérique, Projet personnel d'orientation, Ministère de l'Éducation du Loisir et du sport. +*2015 Impressions de voyage : le Chili, nouvelle parue dans Les Écrits mariverains 2015, {{ISBN|978-2-9809683-6-5}} +*2015 La CIA, version 5.0, scénario du spectacle de la Corporation des Instrumentistes Associés. +*2014 Le désastreux destin d'Arlette Mallette, nouvelle parue dans Les Écrits mariverains 2014, {{ISBN|978-2-9809683-5-8}} +*2014 La CIA, L'espace d'une vie, scénario du spectacle de la Corporation des Instrumentistes Associés. +*2014 Carapaces, Roman publié aux Éditions Textes et Contextes, 279 pages. {{ISBN|978-2-923706-63-4}} +*2013 La Politique, Projet personnel d'orientation, Ministère de l'Éducation du Loisir et du sport. +*2013 La CIA poursuit son enquête, scénario du spectacle de la Corporation des Instrumentistes Associés. +*2013 Napoléon, nouvelle parue dans Les Écrits mariverains 2013. {{ISBN|978-2-9809683-4-1}} +*2012 Ménage de cave, nouvelle parue dans Les Écrits mariverains, 2012. {{ISBN|978-2-980-9683-3-4}} +*2012 En quête de mission, scénario du spectacle de la Corporation des Instrumentistes Associés. +*2012 Finaliste dans deux concours de Zone d’écriture de Radio-Canada en twittérature. +*2011 La CIA autour du monde, scénario du spectacle de la Corporation des Instrumentistes Associés. +*2011 En deuxième vitesse, nouvelle parue dans Les Écrits mariverains 2011. {{ISBN|978-2-980-9683-1-0|}} +*2010 Biographie de Jeannine Rousseau et Rolland Massicotte, scénario. +*2010 Le Projet Adam et Ève, nouvelle parue dans Écrits mariverains 2010, {{ISBN|978-2-980-9683-1-0}} +*2009 Alexandre et Cassiopée, nouvelle parue dans Écrits mariverains 2009. +*2008 ''Dans un mois, dans un an'', Roman publié dans la collection Les mots inventifs, Les Éditions du Mécène, 576 pages. {{ISBN|978-2-923150-61-1}} +*2007 ''L'écriture'', Projet personnel d'orientation, Ministère de l'Éducation du Loisir et du sport. +*2005 ''29, rue des Remparts'', Roman publié dans la collection Les mots inventifs, Les éditions du Mécène, 192 pages. {{ISBN|2-923150-28-7}} +*2003 ''Vie 101'', Essai publié dans la collection Les mots utiles, Les Éditions du Mécène. 126 pages. {{ISBN|2-923150-03-1}} +*2002 ''Le groupe conseil fiscalis'', scénario produit pour le groupe conseil Fiscalis. +*2001 ''Lévis, ville nouvelle'', scénario de deux émissions de trente minutes pour le Comité de transition de la ville de Lévis et Canal Vox +*2001 ''L’école québécoise, ce qu’il y a de mieux pour votre enfant'', scénario produit pour le Ministère de l’éducation du Québec. +*2000 ''Le jeu en valait-il la chandelle?'' scénario produit pour le Centre québécois d’excellence pour la prévention et le traitement du jeu. (Université Laval) +*1999 ''Le hasard, Lucky, on peut rien y changer'', scénario produit pour le Centre québécois d’excellence pour la prévention et le traitement du jeu. (Université Laval) +*1999 ''Un pacte fiscal pour l’an 2000, des idées, de la solidarité'', scénario produit pour l’Union des Municipalités régionales de comté et des municipalités locales. +*1999 ''Détect-o-max et Une journée avec Détect-o-max'', deux scénarios produits pour Conception Ro-main inc. +*1999 ''Propane GRG, à l’écoute de ses clients'', scénario produit pour la firme Propane GRG inc. +*1998 ''Maître du mètre'', scénario d’un documentaire sur les 25 ans du système métrique au Québec. +*1997 ''Le temps des sucres'', scénario produit pour la firme Shady Maple Farms. +*1996 ''Le Génie de campagne'', scénario produit pour les Forces armées canadiennes. +*1996 ''La Compagnie franche de la Marine de Québec'', scénario produit pour les Forces armées canadiennes. +*1995 ''Bon séjour à l'École navale de Québec'', scénario produit pour les Forces armées canadiennes. +*1994 ''Un leadership, des services'', scénario produit pour la Fédération des commissions scolaires du Québec. +*1993 ''Les clubs de recherche d'emploi'', scénario produit pour le Ministère de l'Emploi et de l'Immigration du Canada. +*1992 ''Fiers de notre avenir'', scénario produit pour l'Assurance-Vie Desjardins. +*1992 ''Responsible Leadership'', scénario produit pour la compagnie papetière Donohue. (Prix Corpo Vision) +*1992 Scénarisation d'un ensemble de huit vidéos destinées aux écoles secondaires et aux collèges du Québec, pour la Fondation de l'entrepreneurship Québécois. (Prix Adate) +*1991 ''Guide à l'intention du nouveau personnel'', rédaction d'une brochure d'accueil pour la Commission scolaire Louis-Fréchette. +*1990 Comment ça va chez vous? scénario produit pour la Confédération des caisses Desjardins. +*1990 ''Le choc est aussi grand pour les petits.'' I et II, scénario de deux vidéos pour la Régie de l'assurance automobile du Québec. +*1990 Participation au concours de nouvelles de Radio-Canada avec ''Alexandre et Cassiopée.'' +*1989 Participation au concours de nouvelles de Radio-Canada avec ''Le mystère de la cathédrale.'' +*1989 ''La Double vie d'Antoine Gagnon, Ministre'', scénario d'un téléfilm pour Radio-Canada. +*1988 ''Passeport pour la liberté'', Les Quinze Éditeurs, Montréal. {{ISBN|2-89026-368-1}}. (Prix Robert-Cliche) +*1988 Coédition aux Éditions Jean Picollec, à Paris, du roman ''Passeport pour la liberté'', 303 pages, {{ISBN|2-86477-088-1}}. +*1987 Participation au concours de nouvelles de Radio-''Canada avec Le secret''. +*1987 Collaboration au scénario et aux dialogues de ''Vie décolle'', vidéo produite pour la Commission scolaire Abénakis (21 minutes). +*1983 Rédaction et direction de ''C'est qui ma maman à moi?'' pièce de théâtre montée par la troupe de la Polyvalente Benoît-Vachon de Sainte-Marie de Beauce. +*1982 Rédaction et direction de ''Au nom du père, de la fille et du Sain d'esprit'', pièce de théâtre montée par la troupe de la Polyvalente Benoît -Vachon de Sainte-Marie de Beauce. +*1977 Corédaction et mise en scène de la pièce ''Coup de Théâtre à Ste-Onction'' jouée par les élèves de la Polyvalente Benoît-Vachon de Sainte-Marie de Beauce + +== Références == +{{references}} + +{{Portail|Québec|littérature}} + +{{CLEDETRI:Beaudet, Raymond}} +[[Catégorie:Écrivain québécois|Beaudet, Raymond]] +[[Catégorie:Naissance en 1950]] + 479d6yfpzps9kbqt1kcpn954kf6o4lm + + + 187043976 + 186646730 + 2021-10-10T17:37:16Z + + Nicoleon + 60074 + + /* Références */ + wikitext + text/x-wiki + {{suppression}} +{{Sans source|date=février 2021}} +{{À sourcer|date=mars 2019}} +{{voir homonymes|Beaudet}} +{{Infobox Biographie2}} +'''Raymond Beaudet''' (Québec 1950 - ) est un écrivain et un scénariste [[Québec|québécois]]. Détenteur d’une maîtrise en [[philosophie]] de l’[[Université Laval]] (1975) on le retrouve successivement enseignant, syndicaliste, secrétaire particulier du Ministre des Richesses Naturelles, [[Yves Bérubé]], directeur d’école primaire et directeur d’école secondaire (Polyvalente Benoît-Vachon). Une passion l’anime pendant tout ce temps : l’écriture. Il est l’auteur de quatre romans, d’un essai, d’une trentaine de scénarios, de plusieurs nouvelles et de trois pièces de théâtre. Depuis 2014, il est actif en [[twittérature]]. + +== Honneurs == +*Prix du Patrimoine (2019) Catégorie Interprétation et Diffusion +*Prix coup de cœur du jury au Concours de twittérature du Centre de la Francophonie des Amériques 2016 +* Prix du Patrimoine (2011) Catégorie Interprétation et Diffusion +* [[Prix Robert-Cliche]] ([[1988]]), ''Passeport pour la liberté''<ref>{{lien web | url=http://www.edvlb.com/prixrobertcliche/laureats.aspx | titre=Lauréats du prix Robert-Cliche | consulté le=24 juin 2011}}</ref> +* Prix Corpo-vision (1992) +* Prix Adate (1993) + +== Bibliographie == +*2021 Les lieux enchantés du Parc Taschereau, publié aux Éditions de la Roupille, 96 pages, {{ISBN|978-2-924304-45-7}} +*2021 Normand Maurice, père de la récupération au Québec, biographie publiée aux Éditions de la Roupille, 176 pages, {{ISBN|978-2-924304-39-6}} +*2021 Le bonheur, chroniques d'une vie à la campagne, publié aux Éditions de la Roupille, 270 pages {{ISBN|978-2-924304-40-2}} +*2020 En décide de vendre, nouvelle parue dans Les Écrits mariverains 2020, {{ISBN|978-2-9810768-2-3}} + +*2019 : +** Tableaux et portraits mariverains, Capsules historiques, {{ISBN|978-2-9810768-2-3}}. +** Carnet d'un passager clandestin, nouvelle parue dans Les Écrits Mariverains 2019, {{ISBN|978-2-9810768-0-9}} +** Voix de dépassement, scénario du spectacle de la Corporation des Instrumentistes Associés. +*2018 +** Marie-Claire et moi, nouvelle parue dans Les Écrits mariverains 2018, {{ISBN|978-2-9809683-9-6}} +** La dernière scène, scénario du spectacle de la Corporation des Instrumentistes Associés. +** La boucherie, Projet personnel d'orientation, Ministère de l'Éducation et de l'Enseignement supérieur. +*2017 +** L'idée perdue, nouvelle parue dans Les Écrits mariverains 2017, {{ISBN|978-2-9809683-8-9}} +** Coups de cœur, scénario du spectacle de la Corporation des Instrumentistes Associés. +*2016 +** Éliza Caztel de Sainte-Marie, nouvelle parue dans Les Écrits mariverains 2016, {{ISBN|978-2-9809683-7-2}} +** La CIA sème le trouble, scénario du spectacle de la Corporation des Instrumentistes Associés. +*2015 La photographie numérique, Projet personnel d'orientation, Ministère de l'Éducation du Loisir et du sport. +*2015 Impressions de voyage : le Chili, nouvelle parue dans Les Écrits mariverains 2015, {{ISBN|978-2-9809683-6-5}} +*2015 La CIA, version 5.0, scénario du spectacle de la Corporation des Instrumentistes Associés. +*2014 Le désastreux destin d'Arlette Mallette, nouvelle parue dans Les Écrits mariverains 2014, {{ISBN|978-2-9809683-5-8}} +*2014 La CIA, L'espace d'une vie, scénario du spectacle de la Corporation des Instrumentistes Associés. +*2014 Carapaces, Roman publié aux Éditions Textes et Contextes, 279 pages. {{ISBN|978-2-923706-63-4}} +*2013 La Politique, Projet personnel d'orientation, Ministère de l'Éducation du Loisir et du sport. +*2013 La CIA poursuit son enquête, scénario du spectacle de la Corporation des Instrumentistes Associés. +*2013 Napoléon, nouvelle parue dans Les Écrits mariverains 2013. {{ISBN|978-2-9809683-4-1}} +*2012 Ménage de cave, nouvelle parue dans Les Écrits mariverains, 2012. {{ISBN|978-2-980-9683-3-4}} +*2012 En quête de mission, scénario du spectacle de la Corporation des Instrumentistes Associés. +*2012 Finaliste dans deux concours de Zone d’écriture de Radio-Canada en twittérature. +*2011 La CIA autour du monde, scénario du spectacle de la Corporation des Instrumentistes Associés. +*2011 En deuxième vitesse, nouvelle parue dans Les Écrits mariverains 2011. {{ISBN|978-2-980-9683-1-0|}} +*2010 Biographie de Jeannine Rousseau et Rolland Massicotte, scénario. +*2010 Le Projet Adam et Ève, nouvelle parue dans Écrits mariverains 2010, {{ISBN|978-2-980-9683-1-0}} +*2009 Alexandre et Cassiopée, nouvelle parue dans Écrits mariverains 2009. +*2008 ''Dans un mois, dans un an'', Roman publié dans la collection Les mots inventifs, Les Éditions du Mécène, 576 pages. {{ISBN|978-2-923150-61-1}} +*2007 ''L'écriture'', Projet personnel d'orientation, Ministère de l'Éducation du Loisir et du sport. +*2005 ''29, rue des Remparts'', Roman publié dans la collection Les mots inventifs, Les éditions du Mécène, 192 pages. {{ISBN|2-923150-28-7}} +*2003 ''Vie 101'', Essai publié dans la collection Les mots utiles, Les Éditions du Mécène. 126 pages. {{ISBN|2-923150-03-1}} +*2002 ''Le groupe conseil fiscalis'', scénario produit pour le groupe conseil Fiscalis. +*2001 ''Lévis, ville nouvelle'', scénario de deux émissions de trente minutes pour le Comité de transition de la ville de Lévis et Canal Vox +*2001 ''L’école québécoise, ce qu’il y a de mieux pour votre enfant'', scénario produit pour le Ministère de l’éducation du Québec. +*2000 ''Le jeu en valait-il la chandelle?'' scénario produit pour le Centre québécois d’excellence pour la prévention et le traitement du jeu. (Université Laval) +*1999 ''Le hasard, Lucky, on peut rien y changer'', scénario produit pour le Centre québécois d’excellence pour la prévention et le traitement du jeu. (Université Laval) +*1999 ''Un pacte fiscal pour l’an 2000, des idées, de la solidarité'', scénario produit pour l’Union des Municipalités régionales de comté et des municipalités locales. +*1999 ''Détect-o-max et Une journée avec Détect-o-max'', deux scénarios produits pour Conception Ro-main inc. +*1999 ''Propane GRG, à l’écoute de ses clients'', scénario produit pour la firme Propane GRG inc. +*1998 ''Maître du mètre'', scénario d’un documentaire sur les 25 ans du système métrique au Québec. +*1997 ''Le temps des sucres'', scénario produit pour la firme Shady Maple Farms. +*1996 ''Le Génie de campagne'', scénario produit pour les Forces armées canadiennes. +*1996 ''La Compagnie franche de la Marine de Québec'', scénario produit pour les Forces armées canadiennes. +*1995 ''Bon séjour à l'École navale de Québec'', scénario produit pour les Forces armées canadiennes. +*1994 ''Un leadership, des services'', scénario produit pour la Fédération des commissions scolaires du Québec. +*1993 ''Les clubs de recherche d'emploi'', scénario produit pour le Ministère de l'Emploi et de l'Immigration du Canada. +*1992 ''Fiers de notre avenir'', scénario produit pour l'Assurance-Vie Desjardins. +*1992 ''Responsible Leadership'', scénario produit pour la compagnie papetière Donohue. (Prix Corpo Vision) +*1992 Scénarisation d'un ensemble de huit vidéos destinées aux écoles secondaires et aux collèges du Québec, pour la Fondation de l'entrepreneurship Québécois. (Prix Adate) +*1991 ''Guide à l'intention du nouveau personnel'', rédaction d'une brochure d'accueil pour la Commission scolaire Louis-Fréchette. +*1990 Comment ça va chez vous? scénario produit pour la Confédération des caisses Desjardins. +*1990 ''Le choc est aussi grand pour les petits.'' I et II, scénario de deux vidéos pour la Régie de l'assurance automobile du Québec. +*1990 Participation au concours de nouvelles de Radio-Canada avec ''Alexandre et Cassiopée.'' +*1989 Participation au concours de nouvelles de Radio-Canada avec ''Le mystère de la cathédrale.'' +*1989 ''La Double vie d'Antoine Gagnon, Ministre'', scénario d'un téléfilm pour Radio-Canada. +*1988 ''Passeport pour la liberté'', Les Quinze Éditeurs, Montréal. {{ISBN|2-89026-368-1}}. (Prix Robert-Cliche) +*1988 Coédition aux Éditions Jean Picollec, à Paris, du roman ''Passeport pour la liberté'', 303 pages, {{ISBN|2-86477-088-1}}. +*1987 Participation au concours de nouvelles de Radio-''Canada avec Le secret''. +*1987 Collaboration au scénario et aux dialogues de ''Vie décolle'', vidéo produite pour la Commission scolaire Abénakis (21 minutes). +*1983 Rédaction et direction de ''C'est qui ma maman à moi?'' pièce de théâtre montée par la troupe de la Polyvalente Benoît-Vachon de Sainte-Marie de Beauce. +*1982 Rédaction et direction de ''Au nom du père, de la fille et du Sain d'esprit'', pièce de théâtre montée par la troupe de la Polyvalente Benoît -Vachon de Sainte-Marie de Beauce. +*1977 Corédaction et mise en scène de la pièce ''Coup de Théâtre à Ste-Onction'' jouée par les élèves de la Polyvalente Benoît-Vachon de Sainte-Marie de Beauce + +== Références == +{{references}} +== Liens externes == +* {{Liens biographiques}} + +{{Portail|Québec|littérature}} + +{{CLEDETRI:Beaudet, Raymond}} +[[Catégorie:Écrivain québécois|Beaudet, Raymond]] +[[Catégorie:Naissance en 1950]] + sg0nr9pnxs6k058o6egh40g1ofycv96 + + + 187044051 + 187043976 + 2021-10-10T17:40:09Z + + Nicoleon + 60074 + + wikitext + text/x-wiki + {{suppression}} +{{Sans source|date=février 2021}} +{{À sourcer|date=mars 2019}} +{{voir homonymes|Beaudet}} +{{Infobox Biographie2}} +'''Raymond Beaudet''' (Québec 1950 - ) est un écrivain et un scénariste [[Québec|québécois]]<ref>[https://www.sainte-marie.ca/repertoire_culturel/raymond-beaudet sainte-marie.ca]/</ref>. Détenteur d’une maîtrise en [[philosophie]] de l’[[Université Laval]] (1975) on le retrouve successivement enseignant, syndicaliste, secrétaire particulier du Ministre des Richesses Naturelles, [[Yves Bérubé]], directeur d’école primaire et directeur d’école secondaire (Polyvalente Benoît-Vachon).Il est l’auteur de quatre romans, d’un essai, d’une trentaine de scénarios, de plusieurs nouvelles et de trois pièces de théâtre. Depuis 2014, il est actif en [[twittérature]]. + +== Honneurs == +*Prix du Patrimoine (2019) Catégorie Interprétation et Diffusion +*Prix coup de cœur du jury au Concours de twittérature du Centre de la Francophonie des Amériques 2016 +* Prix du Patrimoine (2011) Catégorie Interprétation et Diffusion +* [[Prix Robert-Cliche]] ([[1988]]), ''Passeport pour la liberté''<ref>{{lien web | url=http://www.edvlb.com/prixrobertcliche/laureats.aspx | titre=Lauréats du prix Robert-Cliche | consulté le=24 juin 2011}}</ref> +* Prix Corpo-vision (1992) +* Prix Adate (1993) + +== Bibliographie == +*2021 Les lieux enchantés du Parc Taschereau, publié aux Éditions de la Roupille, 96 pages, {{ISBN|978-2-924304-45-7}} +*2021 Normand Maurice, père de la récupération au Québec, biographie publiée aux Éditions de la Roupille, 176 pages, {{ISBN|978-2-924304-39-6}} +*2021 Le bonheur, chroniques d'une vie à la campagne, publié aux Éditions de la Roupille, 270 pages {{ISBN|978-2-924304-40-2}} +*2020 En décide de vendre, nouvelle parue dans Les Écrits mariverains 2020, {{ISBN|978-2-9810768-2-3}} + +*2019 : +** Tableaux et portraits mariverains, Capsules historiques, {{ISBN|978-2-9810768-2-3}}. +** Carnet d'un passager clandestin, nouvelle parue dans Les Écrits Mariverains 2019, {{ISBN|978-2-9810768-0-9}} +** Voix de dépassement, scénario du spectacle de la Corporation des Instrumentistes Associés. +*2018 +** Marie-Claire et moi, nouvelle parue dans Les Écrits mariverains 2018, {{ISBN|978-2-9809683-9-6}} +** La dernière scène, scénario du spectacle de la Corporation des Instrumentistes Associés. +** La boucherie, Projet personnel d'orientation, Ministère de l'Éducation et de l'Enseignement supérieur. +*2017 +** L'idée perdue, nouvelle parue dans Les Écrits mariverains 2017, {{ISBN|978-2-9809683-8-9}} +** Coups de cœur, scénario du spectacle de la Corporation des Instrumentistes Associés. +*2016 +** Éliza Caztel de Sainte-Marie, nouvelle parue dans Les Écrits mariverains 2016, {{ISBN|978-2-9809683-7-2}} +** La CIA sème le trouble, scénario du spectacle de la Corporation des Instrumentistes Associés. +*2015 La photographie numérique, Projet personnel d'orientation, Ministère de l'Éducation du Loisir et du sport. +*2015 Impressions de voyage : le Chili, nouvelle parue dans Les Écrits mariverains 2015, {{ISBN|978-2-9809683-6-5}} +*2015 La CIA, version 5.0, scénario du spectacle de la Corporation des Instrumentistes Associés. +*2014 Le désastreux destin d'Arlette Mallette, nouvelle parue dans Les Écrits mariverains 2014, {{ISBN|978-2-9809683-5-8}} +*2014 La CIA, L'espace d'une vie, scénario du spectacle de la Corporation des Instrumentistes Associés. +*2014 Carapaces, Roman publié aux Éditions Textes et Contextes, 279 pages. {{ISBN|978-2-923706-63-4}} +*2013 La Politique, Projet personnel d'orientation, Ministère de l'Éducation du Loisir et du sport. +*2013 La CIA poursuit son enquête, scénario du spectacle de la Corporation des Instrumentistes Associés. +*2013 Napoléon, nouvelle parue dans Les Écrits mariverains 2013. {{ISBN|978-2-9809683-4-1}} +*2012 Ménage de cave, nouvelle parue dans Les Écrits mariverains, 2012. {{ISBN|978-2-980-9683-3-4}} +*2012 En quête de mission, scénario du spectacle de la Corporation des Instrumentistes Associés. +*2012 Finaliste dans deux concours de Zone d’écriture de Radio-Canada en twittérature. +*2011 La CIA autour du monde, scénario du spectacle de la Corporation des Instrumentistes Associés. +*2011 En deuxième vitesse, nouvelle parue dans Les Écrits mariverains 2011. {{ISBN|978-2-980-9683-1-0|}} +*2010 Biographie de Jeannine Rousseau et Rolland Massicotte, scénario. +*2010 Le Projet Adam et Ève, nouvelle parue dans Écrits mariverains 2010, {{ISBN|978-2-980-9683-1-0}} +*2009 Alexandre et Cassiopée, nouvelle parue dans Écrits mariverains 2009. +*2008 ''Dans un mois, dans un an'', Roman publié dans la collection Les mots inventifs, Les Éditions du Mécène, 576 pages. {{ISBN|978-2-923150-61-1}} +*2007 ''L'écriture'', Projet personnel d'orientation, Ministère de l'Éducation du Loisir et du sport. +*2005 ''29, rue des Remparts'', Roman publié dans la collection Les mots inventifs, Les éditions du Mécène, 192 pages. {{ISBN|2-923150-28-7}} +*2003 ''Vie 101'', Essai publié dans la collection Les mots utiles, Les Éditions du Mécène. 126 pages. {{ISBN|2-923150-03-1}} +*2002 ''Le groupe conseil fiscalis'', scénario produit pour le groupe conseil Fiscalis. +*2001 ''Lévis, ville nouvelle'', scénario de deux émissions de trente minutes pour le Comité de transition de la ville de Lévis et Canal Vox +*2001 ''L’école québécoise, ce qu’il y a de mieux pour votre enfant'', scénario produit pour le Ministère de l’éducation du Québec. +*2000 ''Le jeu en valait-il la chandelle?'' scénario produit pour le Centre québécois d’excellence pour la prévention et le traitement du jeu. (Université Laval) +*1999 ''Le hasard, Lucky, on peut rien y changer'', scénario produit pour le Centre québécois d’excellence pour la prévention et le traitement du jeu. (Université Laval) +*1999 ''Un pacte fiscal pour l’an 2000, des idées, de la solidarité'', scénario produit pour l’Union des Municipalités régionales de comté et des municipalités locales. +*1999 ''Détect-o-max et Une journée avec Détect-o-max'', deux scénarios produits pour Conception Ro-main inc. +*1999 ''Propane GRG, à l’écoute de ses clients'', scénario produit pour la firme Propane GRG inc. +*1998 ''Maître du mètre'', scénario d’un documentaire sur les 25 ans du système métrique au Québec. +*1997 ''Le temps des sucres'', scénario produit pour la firme Shady Maple Farms. +*1996 ''Le Génie de campagne'', scénario produit pour les Forces armées canadiennes. +*1996 ''La Compagnie franche de la Marine de Québec'', scénario produit pour les Forces armées canadiennes. +*1995 ''Bon séjour à l'École navale de Québec'', scénario produit pour les Forces armées canadiennes. +*1994 ''Un leadership, des services'', scénario produit pour la Fédération des commissions scolaires du Québec. +*1993 ''Les clubs de recherche d'emploi'', scénario produit pour le Ministère de l'Emploi et de l'Immigration du Canada. +*1992 ''Fiers de notre avenir'', scénario produit pour l'Assurance-Vie Desjardins. +*1992 ''Responsible Leadership'', scénario produit pour la compagnie papetière Donohue. (Prix Corpo Vision) +*1992 Scénarisation d'un ensemble de huit vidéos destinées aux écoles secondaires et aux collèges du Québec, pour la Fondation de l'entrepreneurship Québécois. (Prix Adate) +*1991 ''Guide à l'intention du nouveau personnel'', rédaction d'une brochure d'accueil pour la Commission scolaire Louis-Fréchette. +*1990 Comment ça va chez vous? scénario produit pour la Confédération des caisses Desjardins. +*1990 ''Le choc est aussi grand pour les petits.'' I et II, scénario de deux vidéos pour la Régie de l'assurance automobile du Québec. +*1990 Participation au concours de nouvelles de Radio-Canada avec ''Alexandre et Cassiopée.'' +*1989 Participation au concours de nouvelles de Radio-Canada avec ''Le mystère de la cathédrale.'' +*1989 ''La Double vie d'Antoine Gagnon, Ministre'', scénario d'un téléfilm pour Radio-Canada. +*1988 ''Passeport pour la liberté'', Les Quinze Éditeurs, Montréal. {{ISBN|2-89026-368-1}}. (Prix Robert-Cliche) +*1988 Coédition aux Éditions Jean Picollec, à Paris, du roman ''Passeport pour la liberté'', 303 pages, {{ISBN|2-86477-088-1}}. +*1987 Participation au concours de nouvelles de Radio-''Canada avec Le secret''. +*1987 Collaboration au scénario et aux dialogues de ''Vie décolle'', vidéo produite pour la Commission scolaire Abénakis (21 minutes). +*1983 Rédaction et direction de ''C'est qui ma maman à moi?'' pièce de théâtre montée par la troupe de la Polyvalente Benoît-Vachon de Sainte-Marie de Beauce. +*1982 Rédaction et direction de ''Au nom du père, de la fille et du Sain d'esprit'', pièce de théâtre montée par la troupe de la Polyvalente Benoît -Vachon de Sainte-Marie de Beauce. +*1977 Corédaction et mise en scène de la pièce ''Coup de Théâtre à Ste-Onction'' jouée par les élèves de la Polyvalente Benoît-Vachon de Sainte-Marie de Beauce + +== Références == +{{references}} +== Liens externes == +* {{Liens biographiques}} + +{{Portail|Québec|littérature}} + +{{CLEDETRI:Beaudet, Raymond}} +[[Catégorie:Écrivain québécois|Beaudet, Raymond]] +[[Catégorie:Naissance en 1950]] + o9pqhgufie65rgqoca0rt6jwgfifkxo + + + 187057041 + 187044051 + 2021-10-11T06:22:19Z + + Kropotkine 113 + 124118 + + Raymond Beaudet conservation (retrait bandeau « Suppression ») ([[:Discussion:Raymond_Beaudet/Suppression|Voir]]) + wikitext + text/x-wiki + +{{Sans source|date=février 2021}} +{{À sourcer|date=mars 2019}} +{{voir homonymes|Beaudet}} +{{Infobox Biographie2}} +'''Raymond Beaudet''' (Québec 1950 - ) est un écrivain et un scénariste [[Québec|québécois]]<ref>[https://www.sainte-marie.ca/repertoire_culturel/raymond-beaudet sainte-marie.ca]/</ref>. Détenteur d’une maîtrise en [[philosophie]] de l’[[Université Laval]] (1975) on le retrouve successivement enseignant, syndicaliste, secrétaire particulier du Ministre des Richesses Naturelles, [[Yves Bérubé]], directeur d’école primaire et directeur d’école secondaire (Polyvalente Benoît-Vachon).Il est l’auteur de quatre romans, d’un essai, d’une trentaine de scénarios, de plusieurs nouvelles et de trois pièces de théâtre. Depuis 2014, il est actif en [[twittérature]]. + +== Honneurs == +*Prix du Patrimoine (2019) Catégorie Interprétation et Diffusion +*Prix coup de cœur du jury au Concours de twittérature du Centre de la Francophonie des Amériques 2016 +* Prix du Patrimoine (2011) Catégorie Interprétation et Diffusion +* [[Prix Robert-Cliche]] ([[1988]]), ''Passeport pour la liberté''<ref>{{lien web | url=http://www.edvlb.com/prixrobertcliche/laureats.aspx | titre=Lauréats du prix Robert-Cliche | consulté le=24 juin 2011}}</ref> +* Prix Corpo-vision (1992) +* Prix Adate (1993) + +== Bibliographie == +*2021 Les lieux enchantés du Parc Taschereau, publié aux Éditions de la Roupille, 96 pages, {{ISBN|978-2-924304-45-7}} +*2021 Normand Maurice, père de la récupération au Québec, biographie publiée aux Éditions de la Roupille, 176 pages, {{ISBN|978-2-924304-39-6}} +*2021 Le bonheur, chroniques d'une vie à la campagne, publié aux Éditions de la Roupille, 270 pages {{ISBN|978-2-924304-40-2}} +*2020 En décide de vendre, nouvelle parue dans Les Écrits mariverains 2020, {{ISBN|978-2-9810768-2-3}} + +*2019 : +** Tableaux et portraits mariverains, Capsules historiques, {{ISBN|978-2-9810768-2-3}}. +** Carnet d'un passager clandestin, nouvelle parue dans Les Écrits Mariverains 2019, {{ISBN|978-2-9810768-0-9}} +** Voix de dépassement, scénario du spectacle de la Corporation des Instrumentistes Associés. +*2018 +** Marie-Claire et moi, nouvelle parue dans Les Écrits mariverains 2018, {{ISBN|978-2-9809683-9-6}} +** La dernière scène, scénario du spectacle de la Corporation des Instrumentistes Associés. +** La boucherie, Projet personnel d'orientation, Ministère de l'Éducation et de l'Enseignement supérieur. +*2017 +** L'idée perdue, nouvelle parue dans Les Écrits mariverains 2017, {{ISBN|978-2-9809683-8-9}} +** Coups de cœur, scénario du spectacle de la Corporation des Instrumentistes Associés. +*2016 +** Éliza Caztel de Sainte-Marie, nouvelle parue dans Les Écrits mariverains 2016, {{ISBN|978-2-9809683-7-2}} +** La CIA sème le trouble, scénario du spectacle de la Corporation des Instrumentistes Associés. +*2015 La photographie numérique, Projet personnel d'orientation, Ministère de l'Éducation du Loisir et du sport. +*2015 Impressions de voyage : le Chili, nouvelle parue dans Les Écrits mariverains 2015, {{ISBN|978-2-9809683-6-5}} +*2015 La CIA, version 5.0, scénario du spectacle de la Corporation des Instrumentistes Associés. +*2014 Le désastreux destin d'Arlette Mallette, nouvelle parue dans Les Écrits mariverains 2014, {{ISBN|978-2-9809683-5-8}} +*2014 La CIA, L'espace d'une vie, scénario du spectacle de la Corporation des Instrumentistes Associés. +*2014 Carapaces, Roman publié aux Éditions Textes et Contextes, 279 pages. {{ISBN|978-2-923706-63-4}} +*2013 La Politique, Projet personnel d'orientation, Ministère de l'Éducation du Loisir et du sport. +*2013 La CIA poursuit son enquête, scénario du spectacle de la Corporation des Instrumentistes Associés. +*2013 Napoléon, nouvelle parue dans Les Écrits mariverains 2013. {{ISBN|978-2-9809683-4-1}} +*2012 Ménage de cave, nouvelle parue dans Les Écrits mariverains, 2012. {{ISBN|978-2-980-9683-3-4}} +*2012 En quête de mission, scénario du spectacle de la Corporation des Instrumentistes Associés. +*2012 Finaliste dans deux concours de Zone d’écriture de Radio-Canada en twittérature. +*2011 La CIA autour du monde, scénario du spectacle de la Corporation des Instrumentistes Associés. +*2011 En deuxième vitesse, nouvelle parue dans Les Écrits mariverains 2011. {{ISBN|978-2-980-9683-1-0|}} +*2010 Biographie de Jeannine Rousseau et Rolland Massicotte, scénario. +*2010 Le Projet Adam et Ève, nouvelle parue dans Écrits mariverains 2010, {{ISBN|978-2-980-9683-1-0}} +*2009 Alexandre et Cassiopée, nouvelle parue dans Écrits mariverains 2009. +*2008 ''Dans un mois, dans un an'', Roman publié dans la collection Les mots inventifs, Les Éditions du Mécène, 576 pages. {{ISBN|978-2-923150-61-1}} +*2007 ''L'écriture'', Projet personnel d'orientation, Ministère de l'Éducation du Loisir et du sport. +*2005 ''29, rue des Remparts'', Roman publié dans la collection Les mots inventifs, Les éditions du Mécène, 192 pages. {{ISBN|2-923150-28-7}} +*2003 ''Vie 101'', Essai publié dans la collection Les mots utiles, Les Éditions du Mécène. 126 pages. {{ISBN|2-923150-03-1}} +*2002 ''Le groupe conseil fiscalis'', scénario produit pour le groupe conseil Fiscalis. +*2001 ''Lévis, ville nouvelle'', scénario de deux émissions de trente minutes pour le Comité de transition de la ville de Lévis et Canal Vox +*2001 ''L’école québécoise, ce qu’il y a de mieux pour votre enfant'', scénario produit pour le Ministère de l’éducation du Québec. +*2000 ''Le jeu en valait-il la chandelle?'' scénario produit pour le Centre québécois d’excellence pour la prévention et le traitement du jeu. (Université Laval) +*1999 ''Le hasard, Lucky, on peut rien y changer'', scénario produit pour le Centre québécois d’excellence pour la prévention et le traitement du jeu. (Université Laval) +*1999 ''Un pacte fiscal pour l’an 2000, des idées, de la solidarité'', scénario produit pour l’Union des Municipalités régionales de comté et des municipalités locales. +*1999 ''Détect-o-max et Une journée avec Détect-o-max'', deux scénarios produits pour Conception Ro-main inc. +*1999 ''Propane GRG, à l’écoute de ses clients'', scénario produit pour la firme Propane GRG inc. +*1998 ''Maître du mètre'', scénario d’un documentaire sur les 25 ans du système métrique au Québec. +*1997 ''Le temps des sucres'', scénario produit pour la firme Shady Maple Farms. +*1996 ''Le Génie de campagne'', scénario produit pour les Forces armées canadiennes. +*1996 ''La Compagnie franche de la Marine de Québec'', scénario produit pour les Forces armées canadiennes. +*1995 ''Bon séjour à l'École navale de Québec'', scénario produit pour les Forces armées canadiennes. +*1994 ''Un leadership, des services'', scénario produit pour la Fédération des commissions scolaires du Québec. +*1993 ''Les clubs de recherche d'emploi'', scénario produit pour le Ministère de l'Emploi et de l'Immigration du Canada. +*1992 ''Fiers de notre avenir'', scénario produit pour l'Assurance-Vie Desjardins. +*1992 ''Responsible Leadership'', scénario produit pour la compagnie papetière Donohue. (Prix Corpo Vision) +*1992 Scénarisation d'un ensemble de huit vidéos destinées aux écoles secondaires et aux collèges du Québec, pour la Fondation de l'entrepreneurship Québécois. (Prix Adate) +*1991 ''Guide à l'intention du nouveau personnel'', rédaction d'une brochure d'accueil pour la Commission scolaire Louis-Fréchette. +*1990 Comment ça va chez vous? scénario produit pour la Confédération des caisses Desjardins. +*1990 ''Le choc est aussi grand pour les petits.'' I et II, scénario de deux vidéos pour la Régie de l'assurance automobile du Québec. +*1990 Participation au concours de nouvelles de Radio-Canada avec ''Alexandre et Cassiopée.'' +*1989 Participation au concours de nouvelles de Radio-Canada avec ''Le mystère de la cathédrale.'' +*1989 ''La Double vie d'Antoine Gagnon, Ministre'', scénario d'un téléfilm pour Radio-Canada. +*1988 ''Passeport pour la liberté'', Les Quinze Éditeurs, Montréal. {{ISBN|2-89026-368-1}}. (Prix Robert-Cliche) +*1988 Coédition aux Éditions Jean Picollec, à Paris, du roman ''Passeport pour la liberté'', 303 pages, {{ISBN|2-86477-088-1}}. +*1987 Participation au concours de nouvelles de Radio-''Canada avec Le secret''. +*1987 Collaboration au scénario et aux dialogues de ''Vie décolle'', vidéo produite pour la Commission scolaire Abénakis (21 minutes). +*1983 Rédaction et direction de ''C'est qui ma maman à moi?'' pièce de théâtre montée par la troupe de la Polyvalente Benoît-Vachon de Sainte-Marie de Beauce. +*1982 Rédaction et direction de ''Au nom du père, de la fille et du Sain d'esprit'', pièce de théâtre montée par la troupe de la Polyvalente Benoît -Vachon de Sainte-Marie de Beauce. +*1977 Corédaction et mise en scène de la pièce ''Coup de Théâtre à Ste-Onction'' jouée par les élèves de la Polyvalente Benoît-Vachon de Sainte-Marie de Beauce + +== Références == +{{references}} +== Liens externes == +* {{Liens biographiques}} + +{{Portail|Québec|littérature}} + +{{CLEDETRI:Beaudet, Raymond}} +[[Catégorie:Écrivain québécois|Beaudet, Raymond]] +[[Catégorie:Naissance en 1950]] + e18hrvc1p00rnr357fnnfgn15xw6f9u + + + 190655590 + 187057041 + 2022-02-08T14:54:13Z + + SuperTom4277 + 3477067 + + + J'ai ajouté des sources et des références. + wikitext + text/x-wiki + +{{Sans source|date=février 2021}} +{{À sourcer|date=mars 2019}} +{{voir homonymes|Beaudet}} +{{Infobox Biographie2}} +'''Raymond Beaudet''' (Québec 1950 - ) est un écrivain et un scénariste [[Québec|québécois]]<ref>[https://www.sainte-marie.ca/repertoire_culturel/raymond-beaudet sainte-marie.ca]/</ref>. Détenteur d’une maîtrise en [[philosophie]] de l’[[Université Laval]] (1975) on le retrouve successivement enseignant, syndicaliste, secrétaire particulier du Ministre des Richesses Naturelles, [[Yves Bérubé]], directeur d’école primaire et directeur d’école secondaire (Polyvalente Benoît-Vachon).Il est l’auteur de quatre romans, d’un essai, d’une trentaine de scénarios, de plusieurs nouvelles et de trois pièces de théâtre. Depuis 2014, il est actif en [[twittérature]]. + +== Honneurs == +*Prix du Patrimoine (2019) Catégorie Interprétation et Diffusion +*Prix coup de cœur du jury au Concours de twittérature du Centre de la Francophonie des Amériques 2016 +* Prix du Patrimoine (2011) Catégorie Interprétation et Diffusion +* [[Prix Robert-Cliche]] ([[1988]]), ''Passeport pour la liberté''<ref>{{lien web | url=http://www.edvlb.com/prixrobertcliche/laureats.aspx | titre=Lauréats du prix Robert-Cliche | consulté le=24 juin 2011}}</ref> +* Prix Corpo-vision (1992) +* Prix Adate (1993) + +== Bibliographie == +*2021 Les lieux enchantés du Parc Taschereau, publié aux Éditions de la Roupille, 96 pages, {{ISBN|978-2-924304-45-7}} +*2021 Normand Maurice, père de la récupération au Québec, biographie publiée aux Éditions de la Roupille, 176 pages, {{ISBN|978-2-924304-39-6}} +*2021 Le bonheur, chroniques d'une vie à la campagne, publié aux Éditions de la Roupille, 270 pages {{ISBN|978-2-924304-40-2}}<ref>{{Lien web |langue=fr |prénom=Hélène |nom=Moore |titre=Le bonheur. Chroniques d’une vie à la campagne par Raymond Beaudet, Hélène Moore {{!}} Biographies {{!}} Faits vécus/Bio divers {{!}} Leslibraires.ca |url=https://www.leslibraires.ca/livres/le-bonheur-chroniques-d-une-vie-raymond-beaudet-9782924304402.html |site=www.leslibraires.ca |consulté le=2022-02-08}}</ref>. +*2020 En décide de vendre, nouvelle parue dans Les Écrits mariverains 2020, {{ISBN|978-2-9810768-2-3}} + +*2019 : +** Tableaux et portraits mariverains, Capsules historiques, {{ISBN|978-2-9810768-2-3}}. +** Carnet d'un passager clandestin, nouvelle parue dans Les Écrits Mariverains 2019, {{ISBN|978-2-9810768-0-9}} +** Voix de dépassement, scénario du spectacle de la Corporation des Instrumentistes Associés. +*2018 +** Marie-Claire et moi, nouvelle parue dans Les Écrits mariverains 2018, {{ISBN|978-2-9809683-9-6}} +** La dernière scène, scénario du spectacle de la Corporation des Instrumentistes Associés. +** La boucherie, Projet personnel d'orientation, Ministère de l'Éducation et de l'Enseignement supérieur. +*2017 +** L'idée perdue, nouvelle parue dans Les Écrits mariverains 2017, {{ISBN|978-2-9809683-8-9}} +** Coups de cœur, scénario du spectacle de la Corporation des Instrumentistes Associés. +*2016 +** Éliza Caztel de Sainte-Marie, nouvelle parue dans Les Écrits mariverains 2016, {{ISBN|978-2-9809683-7-2}} +** La CIA sème le trouble, scénario du spectacle de la Corporation des Instrumentistes Associés. +*2015 La photographie numérique, Projet personnel d'orientation, Ministère de l'Éducation du Loisir et du sport. +*2015 Impressions de voyage : le Chili, nouvelle parue dans Les Écrits mariverains 2015, {{ISBN|978-2-9809683-6-5}} +*2015 La CIA, version 5.0, scénario du spectacle de la Corporation des Instrumentistes Associés. +*2014 Le désastreux destin d'Arlette Mallette, nouvelle parue dans Les Écrits mariverains 2014, {{ISBN|978-2-9809683-5-8}} +*2014 La CIA, L'espace d'une vie, scénario du spectacle de la Corporation des Instrumentistes Associés. +*2014 Carapaces, Roman publié aux Éditions Textes et Contextes, 279 pages. {{ISBN|978-2-923706-63-4}}<ref>{{Ouvrage|langue=en|titre=Carapaces par BEAUDET, RAYMOND|lire en ligne=http://www.renaud-bray.com/Livres_Produit.aspx?id=1531849&def=Carapaces%2cBEAUDET%2c+RAYMOND%2c9782923706634&utm_campaign=partage-réseaux-sociaux&utm_medium=réseaux-sociaux&utm_source=facebook-like|consulté le=2022-02-08}}</ref>[https://www.renaud-bray.com/Livres_Produit.aspx?id=1531849&def=Carapaces,BEAUDET,+RAYMOND,9782923706634 .] +*2013 La Politique, Projet personnel d'orientation, Ministère de l'Éducation du Loisir et du sport. +*2013 La CIA poursuit son enquête, scénario du spectacle de la Corporation des Instrumentistes Associés. +*2013 Napoléon, nouvelle parue dans Les Écrits mariverains 2013. {{ISBN|978-2-9809683-4-1}} +*2012 Ménage de cave, nouvelle parue dans Les Écrits mariverains, 2012. {{ISBN|978-2-980-9683-3-4}} +*2012 En quête de mission, scénario du spectacle de la Corporation des Instrumentistes Associés. +*2012 Finaliste dans deux concours de Zone d’écriture de Radio-Canada en twittérature. +*2011 La CIA autour du monde, scénario du spectacle de la Corporation des Instrumentistes Associés. +*2011 En deuxième vitesse, nouvelle parue dans Les Écrits mariverains 2011. {{ISBN|978-2-980-9683-1-0|}} +*2010 Biographie de Jeannine Rousseau et Rolland Massicotte, scénario. +*2010 Le Projet Adam et Ève, nouvelle parue dans Écrits mariverains 2010, {{ISBN|978-2-980-9683-1-0}} +*2009 Alexandre et Cassiopée, nouvelle parue dans Écrits mariverains 2009. +*2008 ''Dans un mois, dans un an'', Roman publié dans la collection Les mots inventifs, Les Éditions du Mécène, 576 pages. {{ISBN|978-2-923150-61-1}} +*2007 ''L'écriture'', Projet personnel d'orientation, Ministère de l'Éducation du Loisir et du sport. +*2005 ''29, rue des Remparts'', Roman publié dans la collection Les mots inventifs, Les éditions du Mécène, 192 pages. {{ISBN|2-923150-28-7}} +*2003 ''Vie 101'', Essai publié dans la collection Les mots utiles, Les Éditions du Mécène. 126 pages. {{ISBN|2-923150-03-1}} +*2002 ''Le groupe conseil fiscalis'', scénario produit pour le groupe conseil Fiscalis. +*2001 ''Lévis, ville nouvelle'', scénario de deux émissions de trente minutes pour le Comité de transition de la ville de Lévis et Canal Vox +*2001 ''L’école québécoise, ce qu’il y a de mieux pour votre enfant'', scénario produit pour le Ministère de l’éducation du Québec. +*2000 ''Le jeu en valait-il la chandelle?'' scénario produit pour le Centre québécois d’excellence pour la prévention et le traitement du jeu. (Université Laval) +*1999 ''Le hasard, Lucky, on peut rien y changer'', scénario produit pour le Centre québécois d’excellence pour la prévention et le traitement du jeu. (Université Laval) +*1999 ''Un pacte fiscal pour l’an 2000, des idées, de la solidarité'', scénario produit pour l’Union des Municipalités régionales de comté et des municipalités locales. +*1999 ''Détect-o-max et Une journée avec Détect-o-max'', deux scénarios produits pour Conception Ro-main inc. +*1999 ''Propane GRG, à l’écoute de ses clients'', scénario produit pour la firme Propane GRG inc. +*1998 ''Maître du mètre'', scénario d’un documentaire sur les 25 ans du système métrique au Québec. +*1997 ''Le temps des sucres'', scénario produit pour la firme Shady Maple Farms. +*1996 ''Le Génie de campagne'', scénario produit pour les Forces armées canadiennes. +*1996 ''La Compagnie franche de la Marine de Québec'', scénario produit pour les Forces armées canadiennes. +*1995 ''Bon séjour à l'École navale de Québec'', scénario produit pour les Forces armées canadiennes. +*1994 ''Un leadership, des services'', scénario produit pour la Fédération des commissions scolaires du Québec. +*1993 ''Les clubs de recherche d'emploi'', scénario produit pour le Ministère de l'Emploi et de l'Immigration du Canada. +*1992 ''Fiers de notre avenir'', scénario produit pour l'Assurance-Vie Desjardins. +*1992 ''Responsible Leadership'', scénario produit pour la compagnie papetière Donohue. (Prix Corpo Vision) +*1992 Scénarisation d'un ensemble de huit vidéos destinées aux écoles secondaires et aux collèges du Québec, pour la Fondation de l'entrepreneurship Québécois. (Prix Adate) +*1991 ''Guide à l'intention du nouveau personnel'', rédaction d'une brochure d'accueil pour la Commission scolaire Louis-Fréchette. +*1990 Comment ça va chez vous? scénario produit pour la Confédération des caisses Desjardins. +*1990 ''Le choc est aussi grand pour les petits.'' I et II, scénario de deux vidéos pour la Régie de l'assurance automobile du Québec. +*1990 Participation au concours de nouvelles de Radio-Canada avec ''Alexandre et Cassiopée.'' +*1989 Participation au concours de nouvelles de Radio-Canada avec ''Le mystère de la cathédrale.'' +*1989 ''La Double vie d'Antoine Gagnon, Ministre'', scénario d'un téléfilm pour Radio-Canada. +*1988 ''Passeport pour la liberté'', Les Quinze Éditeurs, Montréal. {{ISBN|2-89026-368-1}}. (Prix Robert-Cliche) +*1988 Coédition aux Éditions Jean Picollec, à Paris, du roman ''Passeport pour la liberté'', 303 pages, {{ISBN|2-86477-088-1}}. +*1987 Participation au concours de nouvelles de Radio-''Canada avec Le secret''. +*1987 Collaboration au scénario et aux dialogues de ''Vie décolle'', vidéo produite pour la Commission scolaire Abénakis (21 minutes). +*1983 Rédaction et direction de ''C'est qui ma maman à moi?'' pièce de théâtre montée par la troupe de la Polyvalente Benoît-Vachon de Sainte-Marie de Beauce. +*1982 Rédaction et direction de ''Au nom du père, de la fille et du Sain d'esprit'', pièce de théâtre montée par la troupe de la Polyvalente Benoît -Vachon de Sainte-Marie de Beauce. +*1977 Corédaction et mise en scène de la pièce ''Coup de Théâtre à Ste-Onction'' jouée par les élèves de la Polyvalente Benoît-Vachon de Sainte-Marie de Beauce + +== Références == +{{references}} +== Liens externes == +* {{Liens biographiques}} + +{{Portail|Québec|littérature}} + +{{CLEDETRI:Beaudet, Raymond}} +[[Catégorie:Écrivain québécois|Beaudet, Raymond]] +[[Catégorie:Naissance en 1950]] + 20eltp8bvn2jde1k1e6zmvry4caxckz + + + 190657550 + 190655590 + 2022-02-08T15:56:21Z + + SuperTom4277 + 3477067 + + Ajouté des sources et des références. + wikitext + text/x-wiki + +{{Sans source|date=février 2021}} +{{À sourcer|date=mars 2019}} +{{voir homonymes|Beaudet}} +{{Infobox Biographie2}} +'''Raymond Beaudet''' (Québec 1950 - ) est un écrivain et un scénariste [[Québec|québécois]]<ref>[https://www.sainte-marie.ca/repertoire_culturel/raymond-beaudet sainte-marie.ca]/</ref>. Détenteur d’une maîtrise en [[philosophie]] de l’[[Université Laval]] (1975) on le retrouve successivement enseignant, syndicaliste, secrétaire particulier du Ministre des Richesses Naturelles, [[Yves Bérubé]], directeur d’école primaire et directeur d’école secondaire (Polyvalente Benoît-Vachon).Il est l’auteur de quatre romans, d’un essai, d’une trentaine de scénarios, de plusieurs nouvelles et de trois pièces de théâtre. Depuis 2014, il est actif en [[twittérature]]. + +== Honneurs == +*Prix du Patrimoine (2019) Catégorie Interprétation et Diffusion +*Prix coup de cœur du jury au Concours de twittérature du Centre de la Francophonie des Amériques 2016 +* Prix du Patrimoine (2011) Catégorie Interprétation et Diffusion +* [[Prix Robert-Cliche]] ([[1988]]), ''Passeport pour la liberté''<ref>{{lien web | url=http://www.edvlb.com/prixrobertcliche/laureats.aspx | titre=Lauréats du prix Robert-Cliche | consulté le=24 juin 2011}}</ref> +* Prix Corpo-vision (1992) +* Prix Adate (1993) + +== Bibliographie == +*2021 Les lieux enchantés du Parc Taschereau, publié aux Éditions de la Roupille, 96 pages, {{ISBN|978-2-924304-45-7}} +*2021 Normand Maurice, père de la récupération au Québec, biographie publiée aux Éditions de la Roupille, 176 pages, {{ISBN|978-2-924304-39-6}} +*2021 Le bonheur, chroniques d'une vie à la campagne, publié aux Éditions de la Roupille, 270 pages {{ISBN|978-2-924304-40-2}}<ref>{{Lien web |langue=fr |prénom=Hélène |nom=Moore |titre=Le bonheur. Chroniques d’une vie à la campagne par Raymond Beaudet, Hélène Moore {{!}} Biographies {{!}} Faits vécus/Bio divers {{!}} Leslibraires.ca |url=https://www.leslibraires.ca/livres/le-bonheur-chroniques-d-une-vie-raymond-beaudet-9782924304402.html |site=www.leslibraires.ca |consulté le=2022-02-08}}</ref><ref>{{Lien web |langue=fr-ca |prénom=Cool 103,5 |nom=FM |titre="Le bonheur" 6ième ouvrage de l'auteur Raymond Beaudet |url=https://www.coolfm.biz/nouvelle/5205--le-bonheur-6ieme-ouvrage-de-l-auteur-raymond-beaudet |site=Cool 103,5 FM |consulté le=2022-02-08}}</ref><ref>{{Lien web |langue=fr-FR |prénom=Antoine |nom=Desrosiers |titre=Un sixième ouvrage pour l'auteur Raymond Beaudet de Sainte-Marie |url=https://mabeauce.com/un-sixieme-ouvrage-pour-lauteur-raymond-beaudet-de-sainte-marie/ |site=Ma Beauce |date=2021-02-25 |consulté le=2022-02-08}}</ref>. +*2020 En décide de vendre, nouvelle parue dans Les Écrits mariverains 2020, {{ISBN|978-2-9810768-2-3}} + +*2019 : +** Tableaux et portraits mariverains, Capsules historiques, {{ISBN|978-2-9810768-2-3}}. +** Carnet d'un passager clandestin, nouvelle parue dans Les Écrits Mariverains 2019, {{ISBN|978-2-9810768-0-9}} +** Voix de dépassement, scénario du spectacle de la Corporation des Instrumentistes Associés. +*2018 +** Marie-Claire et moi, nouvelle parue dans Les Écrits mariverains 2018, {{ISBN|978-2-9809683-9-6}} +** La dernière scène, scénario du spectacle de la Corporation des Instrumentistes Associés. +** La boucherie, Projet personnel d'orientation, Ministère de l'Éducation et de l'Enseignement supérieur. +*2017 +** L'idée perdue, nouvelle parue dans Les Écrits mariverains 2017, {{ISBN|978-2-9809683-8-9}} +** Coups de cœur, scénario du spectacle de la Corporation des Instrumentistes Associés. +*2016 +** Éliza Caztel de Sainte-Marie, nouvelle parue dans Les Écrits mariverains 2016, {{ISBN|978-2-9809683-7-2}} +** La CIA sème le trouble, scénario du spectacle de la Corporation des Instrumentistes Associés. +*2015 La photographie numérique, Projet personnel d'orientation, Ministère de l'Éducation du Loisir et du sport. +*2015 Impressions de voyage : le Chili, nouvelle parue dans Les Écrits mariverains 2015, {{ISBN|978-2-9809683-6-5}} +*2015 La CIA, version 5.0, scénario du spectacle de la Corporation des Instrumentistes Associés. +*2014 Le désastreux destin d'Arlette Mallette, nouvelle parue dans Les Écrits mariverains 2014, {{ISBN|978-2-9809683-5-8}} +*2014 La CIA, L'espace d'une vie, scénario du spectacle de la Corporation des Instrumentistes Associés. +*2014 Carapaces, Roman publié aux Éditions Textes et Contextes, 279 pages. {{ISBN|978-2-923706-63-4}}<ref>{{Ouvrage|langue=en|titre=Carapaces par BEAUDET, RAYMOND|lire en ligne=http://www.renaud-bray.com/Livres_Produit.aspx?id=1531849&def=Carapaces%2cBEAUDET%2c+RAYMOND%2c9782923706634&utm_campaign=partage-réseaux-sociaux&utm_medium=réseaux-sociaux&utm_source=facebook-like|consulté le=2022-02-08}}</ref>[https://www.renaud-bray.com/Livres_Produit.aspx?id=1531849&def=Carapaces,BEAUDET,+RAYMOND,9782923706634 .] +*2013 La Politique, Projet personnel d'orientation, Ministère de l'Éducation du Loisir et du sport. +*2013 La CIA poursuit son enquête, scénario du spectacle de la Corporation des Instrumentistes Associés. +*2013 Napoléon, nouvelle parue dans Les Écrits mariverains 2013. {{ISBN|978-2-9809683-4-1}} +*2012 Ménage de cave, nouvelle parue dans Les Écrits mariverains, 2012. {{ISBN|978-2-980-9683-3-4}} +*2012 En quête de mission, scénario du spectacle de la Corporation des Instrumentistes Associés. +*2012 Finaliste dans deux concours de Zone d’écriture de Radio-Canada en twittérature. +*2011 La CIA autour du monde, scénario du spectacle de la Corporation des Instrumentistes Associés. +*2011 En deuxième vitesse, nouvelle parue dans Les Écrits mariverains 2011. {{ISBN|978-2-980-9683-1-0|}} +*2010 Biographie de Jeannine Rousseau et Rolland Massicotte, scénario. +*2010 Le Projet Adam et Ève, nouvelle parue dans Écrits mariverains 2010, {{ISBN|978-2-980-9683-1-0}} +*2009 Alexandre et Cassiopée, nouvelle parue dans Écrits mariverains 2009. +*2008 ''Dans un mois, dans un an'', Roman publié dans la collection Les mots inventifs, Les Éditions du Mécène, 576 pages. {{ISBN|978-2-923150-61-1}} +*2007 ''L'écriture'', Projet personnel d'orientation, Ministère de l'Éducation du Loisir et du sport. +*2005 ''29, rue des Remparts'', Roman publié dans la collection Les mots inventifs, Les éditions du Mécène, 192 pages. {{ISBN|2-923150-28-7}} +*2003 ''Vie 101'', Essai publié dans la collection Les mots utiles, Les Éditions du Mécène. 126 pages. {{ISBN|2-923150-03-1}} +*2002 ''Le groupe conseil fiscalis'', scénario produit pour le groupe conseil Fiscalis. +*2001 ''Lévis, ville nouvelle'', scénario de deux émissions de trente minutes pour le Comité de transition de la ville de Lévis et Canal Vox +*2001 ''L’école québécoise, ce qu’il y a de mieux pour votre enfant'', scénario produit pour le Ministère de l’éducation du Québec. +*2000 ''Le jeu en valait-il la chandelle?'' scénario produit pour le Centre québécois d’excellence pour la prévention et le traitement du jeu. (Université Laval) +*1999 ''Le hasard, Lucky, on peut rien y changer'', scénario produit pour le Centre québécois d’excellence pour la prévention et le traitement du jeu. (Université Laval) +*1999 ''Un pacte fiscal pour l’an 2000, des idées, de la solidarité'', scénario produit pour l’Union des Municipalités régionales de comté et des municipalités locales. +*1999 ''Détect-o-max et Une journée avec Détect-o-max'', deux scénarios produits pour Conception Ro-main inc. +*1999 ''Propane GRG, à l’écoute de ses clients'', scénario produit pour la firme Propane GRG inc. +*1998 ''Maître du mètre'', scénario d’un documentaire sur les 25 ans du système métrique au Québec. +*1997 ''Le temps des sucres'', scénario produit pour la firme Shady Maple Farms. +*1996 ''Le Génie de campagne'', scénario produit pour les Forces armées canadiennes. +*1996 ''La Compagnie franche de la Marine de Québec'', scénario produit pour les Forces armées canadiennes. +*1995 ''Bon séjour à l'École navale de Québec'', scénario produit pour les Forces armées canadiennes. +*1994 ''Un leadership, des services'', scénario produit pour la Fédération des commissions scolaires du Québec. +*1993 ''Les clubs de recherche d'emploi'', scénario produit pour le Ministère de l'Emploi et de l'Immigration du Canada. +*1992 ''Fiers de notre avenir'', scénario produit pour l'Assurance-Vie Desjardins. +*1992 ''Responsible Leadership'', scénario produit pour la compagnie papetière Donohue. (Prix Corpo Vision) +*1992 Scénarisation d'un ensemble de huit vidéos destinées aux écoles secondaires et aux collèges du Québec, pour la Fondation de l'entrepreneurship Québécois. (Prix Adate) +*1991 ''Guide à l'intention du nouveau personnel'', rédaction d'une brochure d'accueil pour la Commission scolaire Louis-Fréchette. +*1990 Comment ça va chez vous? scénario produit pour la Confédération des caisses Desjardins. +*1990 ''Le choc est aussi grand pour les petits.'' I et II, scénario de deux vidéos pour la Régie de l'assurance automobile du Québec. +*1990 Participation au concours de nouvelles de Radio-Canada avec ''Alexandre et Cassiopée.'' +*1989 Participation au concours de nouvelles de Radio-Canada avec ''Le mystère de la cathédrale.'' +*1989 ''La Double vie d'Antoine Gagnon, Ministre'', scénario d'un téléfilm pour Radio-Canada. +*1988 ''Passeport pour la liberté'', Les Quinze Éditeurs, Montréal. {{ISBN|2-89026-368-1}}. (Prix Robert-Cliche) +*1988 Coédition aux Éditions Jean Picollec, à Paris, du roman ''Passeport pour la liberté'', 303 pages, {{ISBN|2-86477-088-1}}. +*1987 Participation au concours de nouvelles de Radio-''Canada avec Le secret''. +*1987 Collaboration au scénario et aux dialogues de ''Vie décolle'', vidéo produite pour la Commission scolaire Abénakis (21 minutes). +*1983 Rédaction et direction de ''C'est qui ma maman à moi?'' pièce de théâtre montée par la troupe de la Polyvalente Benoît-Vachon de Sainte-Marie de Beauce. +*1982 Rédaction et direction de ''Au nom du père, de la fille et du Sain d'esprit'', pièce de théâtre montée par la troupe de la Polyvalente Benoît -Vachon de Sainte-Marie de Beauce. +*1977 Corédaction et mise en scène de la pièce ''Coup de Théâtre à Ste-Onction'' jouée par les élèves de la Polyvalente Benoît-Vachon de Sainte-Marie de Beauce + +== Références == +{{references}} +== Liens externes == +* {{Liens biographiques}} + +{{Portail|Québec|littérature}} + +{{CLEDETRI:Beaudet, Raymond}} +[[Catégorie:Écrivain québécois|Beaudet, Raymond]] +[[Catégorie:Naissance en 1950]] + l3mkcre5f837urttxp196y24g55s7xa + + + 190659096 + 190657550 + 2022-02-08T16:36:04Z + + SuperTom4277 + 3477067 + + Ajouté des sources et des références. Mis à jour. + wikitext + text/x-wiki + +{{Sans source|date=février 2021}} +{{À sourcer|date=mars 2019}} +{{voir homonymes|Beaudet}} +{{Infobox Biographie2}} +'''Raymond Beaudet''' (Québec 1950 - ) est un écrivain et un scénariste [[Québec|québécois]]<ref>[https://www.sainte-marie.ca/repertoire_culturel/raymond-beaudet sainte-marie.ca]/</ref>. Détenteur d’une maîtrise en [[philosophie]] de l’[[Université Laval]] (1975) on le retrouve successivement enseignant, syndicaliste, secrétaire particulier du Ministre des Richesses Naturelles, [[Yves Bérubé]], directeur d’école primaire et directeur d’école secondaire (Polyvalente Benoît-Vachon).Il est l’auteur de 5 romans, d’un essai, d'une biographie, d'un recueil de contes, d’une trentaine de scénarios, de plusieurs nouvelles et capsules historiques, de même que de trois pièces de théâtre. Depuis 2014, il est actif en [[twittérature]]<ref>{{Lien web |langue=fr |titre=https://twitter.com/raymondbeaudet |url=https://twitter.com/raymondbeaudet |site=Twitter |consulté le=2022-02-08}}</ref>. + +== Honneurs == +*Prix du Patrimoine (2019) Catégorie Interprétation et Diffusion<ref>{{Lien web |langue=fr |nom=iClic (www.iclic.com) |titre=Les lauréats du Prix du patrimoine de Nouvelle-Beauce sont dévoilés |url=https://www.enbeauce.com/actualites/culturel/21829/les-laureats-du-prix-du-patrimoine-de-nouvelle-beauce-sont-devoiles |site=EnBeauce.com |consulté le=2022-02-08}}</ref>. +*Prix coup de cœur du jury au Concours de twittérature du Centre de la Francophonie des Amériques 2016 +* Prix du Patrimoine (2011) Catégorie Interprétation et Diffusion<ref>{{Lien web |langue=fr |nom=iClic (www.iclic.com) |titre=Les lauréats des Prix du patrimoine 2019 MRC Nouvelle-Beauce dévoilés |url=https://www.enbeauce.com/actualites/culturel/364234/les-laureats-des-prix-du-patrimoine-2019-mrc-nouvelle-beauce-devoiles |site=EnBeauce.com |consulté le=2022-02-08}}</ref>. +* [[Prix Robert-Cliche]] ([[1988]]), ''Passeport pour la liberté''<ref>{{lien web | url=http://www.edvlb.com/prixrobertcliche/laureats.aspx | titre=Lauréats du prix Robert-Cliche | consulté le=24 juin 2011}}</ref> +* Prix Corpo-vision (1992) +* Prix Adate (1993) + +== Bibliographie == +*2021 Les lieux enchantés du Parc Taschereau, publié aux Éditions de la Roupille, 96 pages, {{ISBN|978-2-924304-45-7}}<ref>{{Lien web |langue=fr-CA |titre=Des guides accrédités pour découvrir la Beauce |url=https://www.leclaireurprogres.ca/des-guides-accredites-pour-decouvrir-la-beauce/ |site=L'Éclaireur Progrès |date=2021-03-11 |consulté le=2022-02-08}}</ref><ref>{{Lien web |langue=fr-FR |prénom=Antoine |nom=Desrosiers |titre=Journée internationale des droits des femmes: huit femmes qui ont marqué Sainte-Marie à leur façon |url=https://mabeauce.com/journee-internationale-des-droits-des-femmes-huit-femmes-qui-ont-marque-sainte-marie-a-leur-facon/ |site=Ma Beauce |date=2021-03-08 |consulté le=2022-02-08}}</ref><ref>{{Lien web |langue=en |titre=Conférence - L'écriture sa passion avec Raymond Beaudet à l'Éco-refuge du Domaine Taschereau -10$/p. - Sainte-Marie, 2021-06-29 |url=https://ca.datescloud.com/conference-lecriture-sa-passion-avec-raymond-beaudet-a-leco-sainte-marie-305685960.html |site=dates.cloud |consulté le=2022-02-08}}</ref><ref>{{Lien web |langue=fr-FR |titre=Visites guidées et groupes touristiques {{!}} Domaine Taschereau |url=http://www.domainetaschereau.com/?page_id=634 |consulté le=2022-02-08}}</ref><ref>{{Lien web |langue=fr |titre=Se connecter à Facebook |url=https://www.facebook.com/ |site=Facebook |consulté le=2022-02-08}}</ref><ref>{{Lien web |langue=fr |nom=iClic (www.iclic.com) |titre=Les Lieux enchantés du parc Taschereau : des contes qui prennent vie |url=https://www.enbeauce.com/actualites/culturel/437952/les-lieux-enchantes-du-parc-taschereau-des-contes-qui-prennent-vie |site=EnBeauce.com |consulté le=2022-02-08}}</ref>. +*2021 Normand Maurice, père de la récupération au Québec, biographie publiée aux Éditions de la Roupille, 176 pages, {{ISBN|978-2-924304-39-6}}<ref>{{Lien web |langue=fr-CA |titre=Un livre neuf pour le père de la récupération |url=http://www.beaucemedia.ca/2021/06/25/un-livre-neuf-pour-le-pere-de-la-recuperation/ |site=Beauce Média |date=2021-06-25 |consulté le=2022-02-08}}</ref><ref>{{Lien web |langue=fr |prénom=Raymond |nom=Beaudet |titre=Normand Maurice : père de la récupération au Québec par Raymond Beaudet {{!}} Biographies {{!}} Gens d'affaire {{!}} Leslibraires.ca |url=https://www.leslibraires.ca/livres/normand-maurice-pere-de-la-recuperation-raymond-beaudet-9782924304396.html |site=www.leslibraires.ca |consulté le=2022-02-08}}</ref><ref>{{Lien web |langue=fr-FR |titre=Réseau CFER » Lancement du livre sur Normand Maurice |url=https://reseaucfer.ca/nouvelles/lancement-du-livre-sur-normand-maurice/ |consulté le=2022-02-08}}</ref><ref>{{Ouvrage|langue=en|titre=Normand Maurice, père de la récupération au Québec par BEAUDET, RAYMOND|lire en ligne=http://www.renaud-bray.com/Livres_Produit.aspx?id=3353354&def=Normand+Maurice%2c+p%c3%a8re+de+la+r%c3%a9cup%c3%a9ration+au+Qu%c3%a9bec%2cBEAUDET%2c+RAYMOND%2c9782924304396&utm_campaign=partage-réseaux-sociaux&utm_medium=réseaux-sociaux&utm_source=facebook-like|consulté le=2022-02-08}}</ref>. +*2021 Le bonheur, chroniques d'une vie à la campagne, publié aux Éditions de la Roupille, 270 pages {{ISBN|978-2-924304-40-2}}<ref>{{Lien web |langue=fr |prénom=Hélène |nom=Moore |titre=Le bonheur. Chroniques d’une vie à la campagne par Raymond Beaudet, Hélène Moore {{!}} Biographies {{!}} Faits vécus/Bio divers {{!}} Leslibraires.ca |url=https://www.leslibraires.ca/livres/le-bonheur-chroniques-d-une-vie-raymond-beaudet-9782924304402.html |site=www.leslibraires.ca |consulté le=2022-02-08}}</ref><ref>{{Lien web |langue=fr-ca |prénom=Cool 103,5 |nom=FM |titre="Le bonheur" 6ième ouvrage de l'auteur Raymond Beaudet |url=https://www.coolfm.biz/nouvelle/5205--le-bonheur-6ieme-ouvrage-de-l-auteur-raymond-beaudet |site=Cool 103,5 FM |consulté le=2022-02-08}}</ref><ref>{{Lien web |langue=fr-FR |prénom=Antoine |nom=Desrosiers |titre=Un sixième ouvrage pour l'auteur Raymond Beaudet de Sainte-Marie |url=https://mabeauce.com/un-sixieme-ouvrage-pour-lauteur-raymond-beaudet-de-sainte-marie/ |site=Ma Beauce |date=2021-02-25 |consulté le=2022-02-08}}</ref><ref>{{Lien web |langue=fr-ca |prénom=Cool 103,5 |nom=FM |titre="Le bonheur" 6ième ouvrage de l'auteur Raymond Beaudet |url=https://www.coolfm.biz/nouvelle/5205--le-bonheur-6ieme-ouvrage-de-l-auteur-raymond-beaudet |site=Cool 103,5 FM |consulté le=2022-02-08}}</ref><ref>{{Lien web |langue=ne |titre=Le bonheur, par Raymond BEAUDET et Hélène MOORE |url=https://ne-np.facebook.com/laroupille/videos/531892437783096/ |consulté le=2022-02-08}}</ref><ref>{{Lien web |langue=fr |titre=L'écrivain... - Éditions La Roupille, Service d'édition |url=https://www.facebook.com/laroupille/videos/772815796737521/ |consulté le=2022-02-08}}</ref><ref>{{Lien web |langue=hi |titre=BIBLIOTHÈQUE {{!}} « Le bonheur :... - Ville de Sainte-Marie |url=https://hi-in.facebook.com/villesaintemarie/videos/128982392487598/ |consulté le=2022-02-08}}</ref><ref>{{Lien web |langue=fr-CA |titre=Trouver le bonheur à la campagne |url=http://www.beaucemedia.ca/2021/02/24/trouver-le-bonheur-a-la-campagne/ |site=Beauce Média |date=2021-02-24 |consulté le=2022-02-08}}</ref>. +*2020 En décide de vendre, nouvelle parue dans Les Écrits mariverains 2020, {{ISBN|978-2-9810768-2-3}} + +*2019: +** Tableaux et portraits mariverains, Capsules historiques, {{ISBN|978-2-9810768-2-3}}<ref>{{Lien web |langue=th |titre=เข้าสู่ระบบ Facebook |url=https://th-th.facebook.com/login/?next=https%3A%2F%2Fth-th.facebook.com%2Fcheqfm%2Fposts%2F3625148174272475%2F |site=Facebook |consulté le=2022-02-08}}</ref><ref>{{Lien web |langue=ms |titre=LES 1001 MÉTIERS DE LA CULTURE {{!}} M. Raymond Beaudet |url=https://ms-my.facebook.com/villesaintemarie/videos/327787105117018/ |consulté le=2022-02-08}}</ref><ref>{{Lien web |langue=fr |titre=Se connecter à Facebook |url=https://www.facebook.com/login/?next=https%3A%2F%2Fwww.facebook.com%2Fgroups%2F1442110362673421%2Fpermalink%2F2755449721339472%2F%3Fcomment_id%3D2755539654663812 |site=Facebook |consulté le=2022-02-08}}</ref><ref>{{Lien web |langue=fr-CA |titre=Des guides accrédités pour découvrir la Beauce |url=http://www.beaucemedia.ca/2021/03/11/des-guides-accredites-pour-decouvrir-la-beauce/ |site=Beauce Média |date=2021-03-11 |consulté le=2022-02-08}}</ref><ref>{{Lien web |langue=fr |titre=Chronique à Raymond {{!}} Mon site web |url=https://genealogiestemarie.ca/chronique-a-raymond |site=genealogiestemarie.ca |consulté le=2022-02-08}}</ref><ref>{{Lien web |langue=fr-FR |titre=Capsules historiques |url=https://www.sainte-marie.ca/loisirs-culture/programmation/275e-anniversaire-capsules-historiques/ |site=Ville de Sainte-Marie |consulté le=2022-02-08}}</ref>. +** Carnet d'un passager clandestin, nouvelle parue dans Les Écrits Mariverains 2019, {{ISBN|978-2-9810768-0-9}} +** Voix de dépassement, scénario du spectacle de la Corporation des Instrumentistes Associés. +*2018 +** Marie-Claire et moi, nouvelle parue dans Les Écrits mariverains 2018, {{ISBN|978-2-9809683-9-6}} +** La dernière scène, scénario du spectacle de la Corporation des Instrumentistes Associés. +** La boucherie, Projet personnel d'orientation, Ministère de l'Éducation et de l'Enseignement supérieur. +*2017 +** L'idée perdue, nouvelle parue dans Les Écrits mariverains 2017, {{ISBN|978-2-9809683-8-9}} +** Coups de cœur, scénario du spectacle de la Corporation des Instrumentistes Associés. +*2016 +** Prix coup de cœur du jury au Concours de twittérature du Centre de la Francophonie des Amériques 2016<ref>{{Lien web |langue=fr-CA |titre=La twittérature est victorieuse à Sainte-Marie |url=https://www.beaucemedia.ca/2016/05/20/la-twitterature-est-victorieuse-a-sainte-marie/ |site=Beauce Média |date=2016-05-20 |consulté le=2022-02-08}}</ref><ref>{{Lien web |langue=fr |nom=iClic (www.iclic.com) |titre=La twittérature s'invite au CFER de Beauce à Sainte-Marie |url=https://www.enbeauce.com/actualites/culturel/305797/la-twitterature-sinvite-au-cfer-de-beauce-a-sainte-marie |site=EnBeauce.com |consulté le=2022-02-08}}</ref>. +** Éliza Caztel de Sainte-Marie, nouvelle parue dans Les Écrits mariverains 2016, {{ISBN|978-2-9809683-7-2}} +** La CIA sème le trouble, scénario du spectacle de la Corporation des Instrumentistes Associés. +*2015 La photographie numérique, Projet personnel d'orientation, Ministère de l'Éducation du Loisir et du sport. +*2015 Impressions de voyage: le Chili, nouvelle parue dans Les Écrits mariverains 2015, {{ISBN|978-2-9809683-6-5}} +*2015 La CIA, version 5.0, scénario du spectacle de la Corporation des Instrumentistes Associés. +*2014, 26 juin, TEDx Sainte-Marie, La paternelle<ref>{{Lien web |langue=fr-FR |titre=La paternelle {{!}} Raymond Beaudet {{!}} TEDxSainteMarie |url=https://www.youtube.com/watch?v=wGqQ2FS-P-A |consulté le=2022-02-08}}</ref><ref>{{Lien web |langue=fr |nom=iClic (www.iclic.com) |titre=TEDx Sainte-Marie dévoile le nom de trois conférenciers |url=https://www.enbeauce.com/actualites/societe/125807/tedx-sainte-marie-devoile-le-nom-de-trois-conferenciers |site=EnBeauce.com |consulté le=2022-02-08}}</ref>. +*2014 Le désastreux destin d'Arlette Mallette, nouvelle parue dans Les Écrits mariverains 2014, {{ISBN|978-2-9809683-5-8}} +*2014 La CIA, L'espace d'une vie, scénario du spectacle de la Corporation des Instrumentistes Associés. +*2014 Carapaces, Roman publié aux Éditions Textes et Contextes, 279 pages. {{ISBN|978-2-923706-63-4}}<ref>{{Ouvrage|langue=en|titre=Carapaces par BEAUDET, RAYMOND|lire en ligne=http://www.renaud-bray.com/Livres_Produit.aspx?id=1531849&def=Carapaces%2cBEAUDET%2c+RAYMOND%2c9782923706634&utm_campaign=partage-réseaux-sociaux&utm_medium=réseaux-sociaux&utm_source=facebook-like|consulté le=2022-02-08}}</ref><ref>{{Lien web |titre=http://biblio.villemontlaurier.qc.ca/in/faces/details.xhtml?id=p%3A%3Ausmarcdef_0000064212 |url=http://biblio.villemontlaurier.qc.ca/in/faces/details.xhtml?id=p%3A%3Ausmarcdef_0000064212 |site=biblio.villemontlaurier.qc.ca |consulté le=2022-02-08}}</ref>[https://www.renaud-bray.com/Livres_Produit.aspx?id=1531849&def=Carapaces,BEAUDET,+RAYMOND,9782923706634 .] +*2013 La Politique, Projet personnel d'orientation, Ministère de l'Éducation du Loisir et du sport. +*2013 La CIA poursuit son enquête, scénario du spectacle de la Corporation des Instrumentistes Associés. +*2013 Napoléon, nouvelle parue dans Les Écrits mariverains 2013. {{ISBN|978-2-9809683-4-1}} +*2012 Ménage de cave, nouvelle parue dans Les Écrits mariverains, 2012. {{ISBN|978-2-980-9683-3-4}} +*2012 En quête de mission, scénario du spectacle de la Corporation des Instrumentistes Associés. +*2012 Finaliste dans deux concours de Zone d’écriture de Radio-Canada en twittérature. +*2011 La CIA autour du monde, scénario du spectacle de la Corporation des Instrumentistes Associés. +*2011 En deuxième vitesse, nouvelle parue dans Les Écrits mariverains 2011. {{ISBN|978-2-980-9683-1-0|}} +*2010 Biographie de Jeannine Rousseau et Rolland Massicotte, scénario. +*2010 Le Projet Adam et Ève, nouvelle parue dans Écrits mariverains 2010, {{ISBN|978-2-980-9683-1-0}} +*2009 Alexandre et Cassiopée, nouvelle parue dans Écrits mariverains 2009. +*2008 ''Dans un mois, dans un an'', Roman publié dans la collection Les mots inventifs, Les Éditions du Mécène, 576 pages. {{ISBN|978-2-923150-61-1}} +*2007 ''L'écriture'', Projet personnel d'orientation, Ministère de l'Éducation du Loisir et du sport. +*2005 ''29, rue des Remparts'', Roman publié dans la collection Les mots inventifs, Les éditions du Mécène, 192 pages. {{ISBN|2-923150-28-7}} +*2003 ''Vie 101'', Essai publié dans la collection Les mots utiles, Les Éditions du Mécène. 126 pages. {{ISBN|2-923150-03-1}} +*2002 ''Le groupe conseil fiscalis'', scénario produit pour le groupe conseil Fiscalis. +*2001 ''Lévis, ville nouvelle'', scénario de deux émissions de trente minutes pour le Comité de transition de la ville de Lévis et Canal Vox +*2001 ''L’école québécoise, ce qu’il y a de mieux pour votre enfant'', scénario produit pour le Ministère de l’éducation du Québec. +*2000 ''Le jeu en valait-il la chandelle?'' scénario produit pour le Centre québécois d’excellence pour la prévention et le traitement du jeu. (Université Laval) +*1999 ''Le hasard, Lucky, on peut rien y changer'', scénario produit pour le Centre québécois d’excellence pour la prévention et le traitement du jeu. (Université Laval) +*1999 ''Un pacte fiscal pour l’an 2000, des idées, de la solidarité'', scénario produit pour l’Union des Municipalités régionales de comté et des municipalités locales. +*1999 ''Détect-o-max et Une journée avec Détect-o-max'', deux scénarios produits pour Conception Ro-main inc. +*1999 ''Propane GRG, à l’écoute de ses clients'', scénario produit pour la firme Propane GRG inc. +*1998 ''Maître du mètre'', scénario d’un documentaire sur les 25 ans du système métrique au Québec. +*1997 ''Le temps des sucres'', scénario produit pour la firme Shady Maple Farms. +*1996 ''Le Génie de campagne'', scénario produit pour les Forces armées canadiennes. +*1996 ''La Compagnie franche de la Marine de Québec'', scénario produit pour les Forces armées canadiennes. +*1995 ''Bon séjour à l'École navale de Québec'', scénario produit pour les Forces armées canadiennes. +*1994 ''Un leadership, des services'', scénario produit pour la Fédération des commissions scolaires du Québec. +*1993 ''Les clubs de recherche d'emploi'', scénario produit pour le Ministère de l'Emploi et de l'Immigration du Canada. +*1992 ''Fiers de notre avenir'', scénario produit pour l'Assurance-Vie Desjardins. +*1992 ''Responsible Leadership'', scénario produit pour la compagnie papetière Donohue. (Prix Corpo Vision) +*1992 Scénarisation d'un ensemble de huit vidéos destinées aux écoles secondaires et aux collèges du Québec, pour la Fondation de l'entrepreneurship Québécois. (Prix Adate) +*1991 ''Guide à l'intention du nouveau personnel'', rédaction d'une brochure d'accueil pour la Commission scolaire Louis-Fréchette. +*1990 Comment ça va chez vous? scénario produit pour la Confédération des caisses Desjardins. +*1990 ''Le choc est aussi grand pour les petits.'' I et II, scénario de deux vidéos pour la Régie de l'assurance automobile du Québec. +*1990 Participation au concours de nouvelles de Radio-Canada avec ''Alexandre et Cassiopée.'' +*1989 Participation au concours de nouvelles de Radio-Canada avec ''Le mystère de la cathédrale.'' +*1989 ''La Double vie d'Antoine Gagnon, Ministre'', scénario d'un téléfilm pour Radio-Canada. +*1988 ''Passeport pour la liberté'', Les Quinze Éditeurs, Montréal. {{ISBN|2-89026-368-1}}. (Prix Robert-Cliche)<ref>{{Lien web |langue=en |titre=PASSEPORT POUR LA LIBERTE. ROMAN by RAYMOND BEAUDET: bon Couverture souple (1988) {{!}} Le-Livre |url=https://www.abebooks.com/9782864770886/PASSEPORT-LIBERTE-ROMAN-RAYMOND-BEAUDET-2864770881/plp |site=www.abebooks.com |consulté le=2022-02-08}}</ref>. +*1988 Coédition aux Éditions Jean Picollec, à Paris, du roman ''Passeport pour la liberté'', 303 pages, {{ISBN|2-86477-088-1}}<ref>{{Lien web |titre=Raymond Beaudet |url=https://www.goodreads.com/author/show/1956588.Raymond_Beaudet |site=www.goodreads.com |consulté le=2022-02-08}}</ref>. +*1987 Participation au concours de nouvelles de Radio-''Canada avec Le secret''. +*1987 Collaboration au scénario et aux dialogues de ''Vie décolle'', vidéo produite pour la Commission scolaire Abénakis (21 minutes). +*1983 Rédaction et direction de ''C'est qui ma maman à moi?'' pièce de théâtre montée par la troupe de la Polyvalente Benoît-Vachon de Sainte-Marie de Beauce. +*1982 Rédaction et direction de ''Au nom du père, de la fille et du Sain d'esprit'', pièce de théâtre montée par la troupe de la Polyvalente Benoît -Vachon de Sainte-Marie de Beauce. +*1977 Corédaction et mise en scène de la pièce ''Coup de Théâtre à Ste-Onction'' jouée par les élèves de la Polyvalente Benoît-Vachon de Sainte-Marie de Beauce + +== Références == +{{references}} +== Liens externes == +* {{Liens biographiques}} + +{{Portail|Québec|littérature}} + +{{CLEDETRI:Beaudet, Raymond}} +[[Catégorie:Écrivain québécois|Beaudet, Raymond]] +[[Catégorie:Naissance en 1950]] + 1hzh5iro8r4w98irmnuetfdiazjfnkp + + + 190659479 + 190659096 + 2022-02-08T16:45:26Z + + SuperTom4277 + 3477067 + + /* Références */ mise à jour + wikitext + text/x-wiki + +{{Sans source|date=février 2021}} +{{À sourcer|date=mars 2019}} +{{voir homonymes|Beaudet}} +{{Infobox Biographie2}} +'''Raymond Beaudet''' (Québec 1950 - ) est un écrivain et un scénariste [[Québec|québécois]]<ref>[https://www.sainte-marie.ca/repertoire_culturel/raymond-beaudet sainte-marie.ca]/</ref>. Détenteur d’une maîtrise en [[philosophie]] de l’[[Université Laval]] (1975) on le retrouve successivement enseignant, syndicaliste, secrétaire particulier du Ministre des Richesses Naturelles, [[Yves Bérubé]], directeur d’école primaire et directeur d’école secondaire (Polyvalente Benoît-Vachon).Il est l’auteur de 5 romans, d’un essai, d'une biographie, d'un recueil de contes, d’une trentaine de scénarios, de plusieurs nouvelles et capsules historiques, de même que de trois pièces de théâtre. Depuis 2014, il est actif en [[twittérature]]<ref>{{Lien web |langue=fr |titre=https://twitter.com/raymondbeaudet |url=https://twitter.com/raymondbeaudet |site=Twitter |consulté le=2022-02-08}}</ref>. + +== Honneurs == +*Prix du Patrimoine (2019) Catégorie Interprétation et Diffusion<ref>{{Lien web |langue=fr |nom=iClic (www.iclic.com) |titre=Les lauréats du Prix du patrimoine de Nouvelle-Beauce sont dévoilés |url=https://www.enbeauce.com/actualites/culturel/21829/les-laureats-du-prix-du-patrimoine-de-nouvelle-beauce-sont-devoiles |site=EnBeauce.com |consulté le=2022-02-08}}</ref>. +*Prix coup de cœur du jury au Concours de twittérature du Centre de la Francophonie des Amériques 2016 +* Prix du Patrimoine (2011) Catégorie Interprétation et Diffusion<ref>{{Lien web |langue=fr |nom=iClic (www.iclic.com) |titre=Les lauréats des Prix du patrimoine 2019 MRC Nouvelle-Beauce dévoilés |url=https://www.enbeauce.com/actualites/culturel/364234/les-laureats-des-prix-du-patrimoine-2019-mrc-nouvelle-beauce-devoiles |site=EnBeauce.com |consulté le=2022-02-08}}</ref>. +* [[Prix Robert-Cliche]] ([[1988]]), ''Passeport pour la liberté''<ref>{{lien web | url=http://www.edvlb.com/prixrobertcliche/laureats.aspx | titre=Lauréats du prix Robert-Cliche | consulté le=24 juin 2011}}</ref> +* Prix Corpo-vision (1992) +* Prix Adate (1993) + +== Bibliographie == +*2021 Les lieux enchantés du Parc Taschereau, publié aux Éditions de la Roupille, 96 pages, {{ISBN|978-2-924304-45-7}}<ref>{{Lien web |langue=fr-CA |titre=Des guides accrédités pour découvrir la Beauce |url=https://www.leclaireurprogres.ca/des-guides-accredites-pour-decouvrir-la-beauce/ |site=L'Éclaireur Progrès |date=2021-03-11 |consulté le=2022-02-08}}</ref><ref>{{Lien web |langue=fr-FR |prénom=Antoine |nom=Desrosiers |titre=Journée internationale des droits des femmes: huit femmes qui ont marqué Sainte-Marie à leur façon |url=https://mabeauce.com/journee-internationale-des-droits-des-femmes-huit-femmes-qui-ont-marque-sainte-marie-a-leur-facon/ |site=Ma Beauce |date=2021-03-08 |consulté le=2022-02-08}}</ref><ref>{{Lien web |langue=en |titre=Conférence - L'écriture sa passion avec Raymond Beaudet à l'Éco-refuge du Domaine Taschereau -10$/p. - Sainte-Marie, 2021-06-29 |url=https://ca.datescloud.com/conference-lecriture-sa-passion-avec-raymond-beaudet-a-leco-sainte-marie-305685960.html |site=dates.cloud |consulté le=2022-02-08}}</ref><ref>{{Lien web |langue=fr-FR |titre=Visites guidées et groupes touristiques {{!}} Domaine Taschereau |url=http://www.domainetaschereau.com/?page_id=634 |consulté le=2022-02-08}}</ref><ref>{{Lien web |langue=fr |titre=Se connecter à Facebook |url=https://www.facebook.com/ |site=Facebook |consulté le=2022-02-08}}</ref><ref>{{Lien web |langue=fr |nom=iClic (www.iclic.com) |titre=Les Lieux enchantés du parc Taschereau : des contes qui prennent vie |url=https://www.enbeauce.com/actualites/culturel/437952/les-lieux-enchantes-du-parc-taschereau-des-contes-qui-prennent-vie |site=EnBeauce.com |consulté le=2022-02-08}}</ref>. +*2021 Normand Maurice, père de la récupération au Québec, biographie publiée aux Éditions de la Roupille, 176 pages, {{ISBN|978-2-924304-39-6}}<ref>{{Lien web |langue=fr-CA |titre=Un livre neuf pour le père de la récupération |url=http://www.beaucemedia.ca/2021/06/25/un-livre-neuf-pour-le-pere-de-la-recuperation/ |site=Beauce Média |date=2021-06-25 |consulté le=2022-02-08}}</ref><ref>{{Lien web |langue=fr |prénom=Raymond |nom=Beaudet |titre=Normand Maurice : père de la récupération au Québec par Raymond Beaudet {{!}} Biographies {{!}} Gens d'affaire {{!}} Leslibraires.ca |url=https://www.leslibraires.ca/livres/normand-maurice-pere-de-la-recuperation-raymond-beaudet-9782924304396.html |site=www.leslibraires.ca |consulté le=2022-02-08}}</ref><ref>{{Lien web |langue=fr-FR |titre=Réseau CFER » Lancement du livre sur Normand Maurice |url=https://reseaucfer.ca/nouvelles/lancement-du-livre-sur-normand-maurice/ |consulté le=2022-02-08}}</ref><ref>{{Ouvrage|langue=en|titre=Normand Maurice, père de la récupération au Québec par BEAUDET, RAYMOND|lire en ligne=http://www.renaud-bray.com/Livres_Produit.aspx?id=3353354&def=Normand+Maurice%2c+p%c3%a8re+de+la+r%c3%a9cup%c3%a9ration+au+Qu%c3%a9bec%2cBEAUDET%2c+RAYMOND%2c9782924304396&utm_campaign=partage-réseaux-sociaux&utm_medium=réseaux-sociaux&utm_source=facebook-like|consulté le=2022-02-08}}</ref>. +*2021 Le bonheur, chroniques d'une vie à la campagne, publié aux Éditions de la Roupille, 270 pages {{ISBN|978-2-924304-40-2}}<ref>{{Lien web |langue=fr |prénom=Hélène |nom=Moore |titre=Le bonheur. Chroniques d’une vie à la campagne par Raymond Beaudet, Hélène Moore {{!}} Biographies {{!}} Faits vécus/Bio divers {{!}} Leslibraires.ca |url=https://www.leslibraires.ca/livres/le-bonheur-chroniques-d-une-vie-raymond-beaudet-9782924304402.html |site=www.leslibraires.ca |consulté le=2022-02-08}}</ref><ref>{{Lien web |langue=fr-ca |prénom=Cool 103,5 |nom=FM |titre="Le bonheur" 6ième ouvrage de l'auteur Raymond Beaudet |url=https://www.coolfm.biz/nouvelle/5205--le-bonheur-6ieme-ouvrage-de-l-auteur-raymond-beaudet |site=Cool 103,5 FM |consulté le=2022-02-08}}</ref><ref>{{Lien web |langue=fr-FR |prénom=Antoine |nom=Desrosiers |titre=Un sixième ouvrage pour l'auteur Raymond Beaudet de Sainte-Marie |url=https://mabeauce.com/un-sixieme-ouvrage-pour-lauteur-raymond-beaudet-de-sainte-marie/ |site=Ma Beauce |date=2021-02-25 |consulté le=2022-02-08}}</ref><ref>{{Lien web |langue=fr-ca |prénom=Cool 103,5 |nom=FM |titre="Le bonheur" 6ième ouvrage de l'auteur Raymond Beaudet |url=https://www.coolfm.biz/nouvelle/5205--le-bonheur-6ieme-ouvrage-de-l-auteur-raymond-beaudet |site=Cool 103,5 FM |consulté le=2022-02-08}}</ref><ref>{{Lien web |langue=ne |titre=Le bonheur, par Raymond BEAUDET et Hélène MOORE |url=https://ne-np.facebook.com/laroupille/videos/531892437783096/ |consulté le=2022-02-08}}</ref><ref>{{Lien web |langue=fr |titre=L'écrivain... - Éditions La Roupille, Service d'édition |url=https://www.facebook.com/laroupille/videos/772815796737521/ |consulté le=2022-02-08}}</ref><ref>{{Lien web |langue=hi |titre=BIBLIOTHÈQUE {{!}} « Le bonheur :... - Ville de Sainte-Marie |url=https://hi-in.facebook.com/villesaintemarie/videos/128982392487598/ |consulté le=2022-02-08}}</ref><ref>{{Lien web |langue=fr-CA |titre=Trouver le bonheur à la campagne |url=http://www.beaucemedia.ca/2021/02/24/trouver-le-bonheur-a-la-campagne/ |site=Beauce Média |date=2021-02-24 |consulté le=2022-02-08}}</ref>. +*2020 En décide de vendre, nouvelle parue dans Les Écrits mariverains 2020, {{ISBN|978-2-9810768-2-3}} + +*2019: +** Tableaux et portraits mariverains, Capsules historiques, {{ISBN|978-2-9810768-2-3}}<ref>{{Lien web |langue=th |titre=เข้าสู่ระบบ Facebook |url=https://th-th.facebook.com/login/?next=https%3A%2F%2Fth-th.facebook.com%2Fcheqfm%2Fposts%2F3625148174272475%2F |site=Facebook |consulté le=2022-02-08}}</ref><ref>{{Lien web |langue=ms |titre=LES 1001 MÉTIERS DE LA CULTURE {{!}} M. Raymond Beaudet |url=https://ms-my.facebook.com/villesaintemarie/videos/327787105117018/ |consulté le=2022-02-08}}</ref><ref>{{Lien web |langue=fr-CA |titre=Des guides accrédités pour découvrir la Beauce |url=http://www.beaucemedia.ca/2021/03/11/des-guides-accredites-pour-decouvrir-la-beauce/ |site=Beauce Média |date=2021-03-11 |consulté le=2022-02-08}}</ref><ref>{{Lien web |langue=fr |titre=Chronique à Raymond {{!}} Mon site web |url=https://genealogiestemarie.ca/chronique-a-raymond |site=genealogiestemarie.ca |consulté le=2022-02-08}}</ref><ref>{{Lien web |langue=fr-FR |titre=Capsules historiques |url=https://www.sainte-marie.ca/loisirs-culture/programmation/275e-anniversaire-capsules-historiques/ |site=Ville de Sainte-Marie |consulté le=2022-02-08}}</ref>. +** Carnet d'un passager clandestin, nouvelle parue dans Les Écrits Mariverains 2019, {{ISBN|978-2-9810768-0-9}} +** Voix de dépassement, scénario du spectacle de la Corporation des Instrumentistes Associés. +*2018 +** Marie-Claire et moi, nouvelle parue dans Les Écrits mariverains 2018, {{ISBN|978-2-9809683-9-6}} +** La dernière scène, scénario du spectacle de la Corporation des Instrumentistes Associés. +** La boucherie, Projet personnel d'orientation, Ministère de l'Éducation et de l'Enseignement supérieur. +*2017 +** L'idée perdue, nouvelle parue dans Les Écrits mariverains 2017, {{ISBN|978-2-9809683-8-9}} +** Coups de cœur, scénario du spectacle de la Corporation des Instrumentistes Associés. +*2016 +** Prix coup de cœur du jury au Concours de twittérature du Centre de la Francophonie des Amériques 2016<ref>{{Lien web |langue=fr-CA |titre=La twittérature est victorieuse à Sainte-Marie |url=https://www.beaucemedia.ca/2016/05/20/la-twitterature-est-victorieuse-a-sainte-marie/ |site=Beauce Média |date=2016-05-20 |consulté le=2022-02-08}}</ref><ref>{{Lien web |langue=fr |nom=iClic (www.iclic.com) |titre=La twittérature s'invite au CFER de Beauce à Sainte-Marie |url=https://www.enbeauce.com/actualites/culturel/305797/la-twitterature-sinvite-au-cfer-de-beauce-a-sainte-marie |site=EnBeauce.com |consulté le=2022-02-08}}</ref>. +** Éliza Caztel de Sainte-Marie, nouvelle parue dans Les Écrits mariverains 2016, {{ISBN|978-2-9809683-7-2}} +** La CIA sème le trouble, scénario du spectacle de la Corporation des Instrumentistes Associés. +*2015 La photographie numérique, Projet personnel d'orientation, Ministère de l'Éducation du Loisir et du sport. +*2015 Impressions de voyage: le Chili, nouvelle parue dans Les Écrits mariverains 2015, {{ISBN|978-2-9809683-6-5}} +*2015 La CIA, version 5.0, scénario du spectacle de la Corporation des Instrumentistes Associés. +*2014, 26 juin, TEDx Sainte-Marie, La paternelle<ref>{{Lien web |langue=fr-FR |titre=La paternelle {{!}} Raymond Beaudet {{!}} TEDxSainteMarie |url=https://www.youtube.com/watch?v=wGqQ2FS-P-A |consulté le=2022-02-08}}</ref><ref>{{Lien web |langue=fr |nom=iClic (www.iclic.com) |titre=TEDx Sainte-Marie dévoile le nom de trois conférenciers |url=https://www.enbeauce.com/actualites/societe/125807/tedx-sainte-marie-devoile-le-nom-de-trois-conferenciers |site=EnBeauce.com |consulté le=2022-02-08}}</ref>. +*2014 Le désastreux destin d'Arlette Mallette, nouvelle parue dans Les Écrits mariverains 2014, {{ISBN|978-2-9809683-5-8}} +*2014 La CIA, L'espace d'une vie, scénario du spectacle de la Corporation des Instrumentistes Associés. +*2014 Carapaces, Roman publié aux Éditions Textes et Contextes, 279 pages. {{ISBN|978-2-923706-63-4}}<ref>{{Ouvrage|langue=en|titre=Carapaces par BEAUDET, RAYMOND|lire en ligne=http://www.renaud-bray.com/Livres_Produit.aspx?id=1531849&def=Carapaces%2cBEAUDET%2c+RAYMOND%2c9782923706634&utm_campaign=partage-réseaux-sociaux&utm_medium=réseaux-sociaux&utm_source=facebook-like|consulté le=2022-02-08}}</ref><ref>{{Lien web |titre=http://biblio.villemontlaurier.qc.ca/in/faces/details.xhtml?id=p%3A%3Ausmarcdef_0000064212 |url=http://biblio.villemontlaurier.qc.ca/in/faces/details.xhtml?id=p%3A%3Ausmarcdef_0000064212 |site=biblio.villemontlaurier.qc.ca |consulté le=2022-02-08}}</ref>[https://www.renaud-bray.com/Livres_Produit.aspx?id=1531849&def=Carapaces,BEAUDET,+RAYMOND,9782923706634 .] +*2013 La Politique, Projet personnel d'orientation, Ministère de l'Éducation du Loisir et du sport. +*2013 La CIA poursuit son enquête, scénario du spectacle de la Corporation des Instrumentistes Associés. +*2013 Napoléon, nouvelle parue dans Les Écrits mariverains 2013. {{ISBN|978-2-9809683-4-1}} +*2012 Ménage de cave, nouvelle parue dans Les Écrits mariverains, 2012. {{ISBN|978-2-980-9683-3-4}} +*2012 En quête de mission, scénario du spectacle de la Corporation des Instrumentistes Associés. +*2012 Finaliste dans deux concours de Zone d’écriture de Radio-Canada en twittérature. +*2011 La CIA autour du monde, scénario du spectacle de la Corporation des Instrumentistes Associés. +*2011 En deuxième vitesse, nouvelle parue dans Les Écrits mariverains 2011. {{ISBN|978-2-980-9683-1-0|}} +*2010 Biographie de Jeannine Rousseau et Rolland Massicotte, scénario. +*2010 Le Projet Adam et Ève, nouvelle parue dans Écrits mariverains 2010, {{ISBN|978-2-980-9683-1-0}} +*2009 Alexandre et Cassiopée, nouvelle parue dans Écrits mariverains 2009. +*2008 ''Dans un mois, dans un an'', Roman publié dans la collection Les mots inventifs, Les Éditions du Mécène, 576 pages. {{ISBN|978-2-923150-61-1}} +*2007 ''L'écriture'', Projet personnel d'orientation, Ministère de l'Éducation du Loisir et du sport. +*2005 ''29, rue des Remparts'', Roman publié dans la collection Les mots inventifs, Les éditions du Mécène, 192 pages. {{ISBN|2-923150-28-7}} +*2003 ''Vie 101'', Essai publié dans la collection Les mots utiles, Les Éditions du Mécène. 126 pages. {{ISBN|2-923150-03-1}} +*2002 ''Le groupe conseil fiscalis'', scénario produit pour le groupe conseil Fiscalis. +*2001 ''Lévis, ville nouvelle'', scénario de deux émissions de trente minutes pour le Comité de transition de la ville de Lévis et Canal Vox +*2001 ''L’école québécoise, ce qu’il y a de mieux pour votre enfant'', scénario produit pour le Ministère de l’éducation du Québec. +*2000 ''Le jeu en valait-il la chandelle?'' scénario produit pour le Centre québécois d’excellence pour la prévention et le traitement du jeu. (Université Laval) +*1999 ''Le hasard, Lucky, on peut rien y changer'', scénario produit pour le Centre québécois d’excellence pour la prévention et le traitement du jeu. (Université Laval) +*1999 ''Un pacte fiscal pour l’an 2000, des idées, de la solidarité'', scénario produit pour l’Union des Municipalités régionales de comté et des municipalités locales. +*1999 ''Détect-o-max et Une journée avec Détect-o-max'', deux scénarios produits pour Conception Ro-main inc. +*1999 ''Propane GRG, à l’écoute de ses clients'', scénario produit pour la firme Propane GRG inc. +*1998 ''Maître du mètre'', scénario d’un documentaire sur les 25 ans du système métrique au Québec. +*1997 ''Le temps des sucres'', scénario produit pour la firme Shady Maple Farms. +*1996 ''Le Génie de campagne'', scénario produit pour les Forces armées canadiennes. +*1996 ''La Compagnie franche de la Marine de Québec'', scénario produit pour les Forces armées canadiennes. +*1995 ''Bon séjour à l'École navale de Québec'', scénario produit pour les Forces armées canadiennes. +*1994 ''Un leadership, des services'', scénario produit pour la Fédération des commissions scolaires du Québec. +*1993 ''Les clubs de recherche d'emploi'', scénario produit pour le Ministère de l'Emploi et de l'Immigration du Canada. +*1992 ''Fiers de notre avenir'', scénario produit pour l'Assurance-Vie Desjardins. +*1992 ''Responsible Leadership'', scénario produit pour la compagnie papetière Donohue. (Prix Corpo Vision) +*1992 Scénarisation d'un ensemble de huit vidéos destinées aux écoles secondaires et aux collèges du Québec, pour la Fondation de l'entrepreneurship Québécois. (Prix Adate) +*1991 ''Guide à l'intention du nouveau personnel'', rédaction d'une brochure d'accueil pour la Commission scolaire Louis-Fréchette. +*1990 Comment ça va chez vous? scénario produit pour la Confédération des caisses Desjardins. +*1990 ''Le choc est aussi grand pour les petits.'' I et II, scénario de deux vidéos pour la Régie de l'assurance automobile du Québec. +*1990 Participation au concours de nouvelles de Radio-Canada avec ''Alexandre et Cassiopée.'' +*1989 Participation au concours de nouvelles de Radio-Canada avec ''Le mystère de la cathédrale.'' +*1989 ''La Double vie d'Antoine Gagnon, Ministre'', scénario d'un téléfilm pour Radio-Canada. +*1988 ''Passeport pour la liberté'', Les Quinze Éditeurs, Montréal. {{ISBN|2-89026-368-1}}. (Prix Robert-Cliche)<ref>{{Lien web |langue=en |titre=PASSEPORT POUR LA LIBERTE. ROMAN by RAYMOND BEAUDET: bon Couverture souple (1988) {{!}} Le-Livre |url=https://www.abebooks.com/9782864770886/PASSEPORT-LIBERTE-ROMAN-RAYMOND-BEAUDET-2864770881/plp |site=www.abebooks.com |consulté le=2022-02-08}}</ref>. +*1988 Coédition aux Éditions Jean Picollec, à Paris, du roman ''Passeport pour la liberté'', 303 pages, {{ISBN|2-86477-088-1}}<ref>{{Lien web |titre=Raymond Beaudet |url=https://www.goodreads.com/author/show/1956588.Raymond_Beaudet |site=www.goodreads.com |consulté le=2022-02-08}}</ref>. +*1987 Participation au concours de nouvelles de Radio-''Canada avec Le secret''. +*1987 Collaboration au scénario et aux dialogues de ''Vie décolle'', vidéo produite pour la Commission scolaire Abénakis (21 minutes). +*1983 Rédaction et direction de ''C'est qui ma maman à moi?'' pièce de théâtre montée par la troupe de la Polyvalente Benoît-Vachon de Sainte-Marie de Beauce. +*1982 Rédaction et direction de ''Au nom du père, de la fille et du Sain d'esprit'', pièce de théâtre montée par la troupe de la Polyvalente Benoît -Vachon de Sainte-Marie de Beauce. +*1977 Corédaction et mise en scène de la pièce ''Coup de Théâtre à Ste-Onction'' jouée par les élèves de la Polyvalente Benoît-Vachon de Sainte-Marie de Beauce + +== Références == +{{references}} +== Liens externes == +* {{Liens biographiques}} + +{{Portail|Québec|littérature}} + +{{CLEDETRI:Beaudet, Raymond}} +[[Catégorie:Écrivain québécois|Beaudet, Raymond]] +[[Catégorie:Naissance en 1950]] + g03fm0zx3lz42pbuexlphxurcrpyitp + + + 190661732 + 190659479 + 2022-02-08T17:52:58Z + + SuperTom4277 + 3477067 + + + Ajouté des sources et des références. + wikitext + text/x-wiki + +{{Sans source|date=février 2021}} +{{À sourcer|date=mars 2019}} +{{voir homonymes|Beaudet}} +{{Infobox Biographie2}} +'''Raymond Beaudet''' (Québec 1950 - ) est un écrivain et un scénariste [[Québec|québécois]]<ref>[https://www.sainte-marie.ca/repertoire_culturel/raymond-beaudet sainte-marie.ca]/</ref>. Détenteur d’une maîtrise en [[philosophie]] de l’[[Université Laval]] (1975) on le retrouve successivement enseignant, syndicaliste, secrétaire particulier du Ministre des Richesses Naturelles, [[Yves Bérubé]], directeur d’école primaire et directeur d’école secondaire (Polyvalente Benoît-Vachon).Il est l’auteur de 5 romans, d’un essai, d'une biographie, d'un recueil de contes, d’une trentaine de scénarios, de plusieurs nouvelles et capsules historiques, de même que de trois pièces de théâtre. Depuis 2014, il est actif en [[twittérature]]<ref>{{Lien web |langue=fr |titre=https://twitter.com/raymondbeaudet |url=https://twitter.com/raymondbeaudet |site=Twitter |consulté le=2022-02-08}}</ref>. + +== Honneurs == +*Prix du Patrimoine (2019) Catégorie Interprétation et Diffusion<ref>{{Lien web |langue=fr |nom=iClic (www.iclic.com) |titre=Les lauréats du Prix du patrimoine de Nouvelle-Beauce sont dévoilés |url=https://www.enbeauce.com/actualites/culturel/21829/les-laureats-du-prix-du-patrimoine-de-nouvelle-beauce-sont-devoiles |site=EnBeauce.com |consulté le=2022-02-08}}</ref>. +*Prix coup de cœur du jury au Concours de twittérature du Centre de la Francophonie des Amériques 2016 +* Prix du Patrimoine (2011) Catégorie Interprétation et Diffusion<ref>{{Lien web |langue=fr |nom=iClic (www.iclic.com) |titre=Les lauréats des Prix du patrimoine 2019 MRC Nouvelle-Beauce dévoilés |url=https://www.enbeauce.com/actualites/culturel/364234/les-laureats-des-prix-du-patrimoine-2019-mrc-nouvelle-beauce-devoiles |site=EnBeauce.com |consulté le=2022-02-08}}</ref>. +* [[Prix Robert-Cliche]] ([[1988]]), ''Passeport pour la liberté''<ref>{{lien web | url=http://www.edvlb.com/prixrobertcliche/laureats.aspx | titre=Lauréats du prix Robert-Cliche | consulté le=24 juin 2011}}</ref> +* Prix Corpo-vision (1992) +* Prix Adate (1993) + +== Bibliographie == +*2021 Les lieux enchantés du Parc Taschereau, publié aux Éditions de la Roupille, 96 pages, {{ISBN|978-2-924304-45-7}}<ref>{{Lien web |langue=fr-CA |titre=Des guides accrédités pour découvrir la Beauce |url=https://www.leclaireurprogres.ca/des-guides-accredites-pour-decouvrir-la-beauce/ |site=L'Éclaireur Progrès |date=2021-03-11 |consulté le=2022-02-08}}</ref><ref>{{Lien web |langue=fr-FR |prénom=Antoine |nom=Desrosiers |titre=Journée internationale des droits des femmes: huit femmes qui ont marqué Sainte-Marie à leur façon |url=https://mabeauce.com/journee-internationale-des-droits-des-femmes-huit-femmes-qui-ont-marque-sainte-marie-a-leur-facon/ |site=Ma Beauce |date=2021-03-08 |consulté le=2022-02-08}}</ref><ref>{{Lien web |langue=en |titre=Conférence - L'écriture sa passion avec Raymond Beaudet à l'Éco-refuge du Domaine Taschereau -10$/p. - Sainte-Marie, 2021-06-29 |url=https://ca.datescloud.com/conference-lecriture-sa-passion-avec-raymond-beaudet-a-leco-sainte-marie-305685960.html |site=dates.cloud |consulté le=2022-02-08}}</ref><ref>{{Lien web |langue=fr-FR |titre=Visites guidées et groupes touristiques {{!}} Domaine Taschereau |url=http://www.domainetaschereau.com/?page_id=634 |consulté le=2022-02-08}}</ref><ref>{{Lien web |langue=fr |titre=Se connecter à Facebook |url=https://www.facebook.com/ |site=Facebook |consulté le=2022-02-08}}</ref><ref>{{Lien web |langue=fr |nom=iClic (www.iclic.com) |titre=Les Lieux enchantés du parc Taschereau : des contes qui prennent vie |url=https://www.enbeauce.com/actualites/culturel/437952/les-lieux-enchantes-du-parc-taschereau-des-contes-qui-prennent-vie |site=EnBeauce.com |consulté le=2022-02-08}}</ref>. +*2021 Normand Maurice, père de la récupération au Québec, biographie publiée aux Éditions de la Roupille, 176 pages, {{ISBN|978-2-924304-39-6}}<ref>{{Lien web |langue=fr-CA |titre=Un livre neuf pour le père de la récupération |url=http://www.beaucemedia.ca/2021/06/25/un-livre-neuf-pour-le-pere-de-la-recuperation/ |site=Beauce Média |date=2021-06-25 |consulté le=2022-02-08}}</ref><ref>{{Lien web |langue=fr |prénom=Raymond |nom=Beaudet |titre=Normand Maurice : père de la récupération au Québec par Raymond Beaudet {{!}} Biographies {{!}} Gens d'affaire {{!}} Leslibraires.ca |url=https://www.leslibraires.ca/livres/normand-maurice-pere-de-la-recuperation-raymond-beaudet-9782924304396.html |site=www.leslibraires.ca |consulté le=2022-02-08}}</ref><ref>{{Lien web |langue=fr-FR |titre=Réseau CFER » Lancement du livre sur Normand Maurice |url=https://reseaucfer.ca/nouvelles/lancement-du-livre-sur-normand-maurice/ |consulté le=2022-02-08}}</ref><ref>{{Ouvrage|langue=en|titre=Normand Maurice, père de la récupération au Québec par BEAUDET, RAYMOND|lire en ligne=http://www.renaud-bray.com/Livres_Produit.aspx?id=3353354&def=Normand+Maurice%2c+p%c3%a8re+de+la+r%c3%a9cup%c3%a9ration+au+Qu%c3%a9bec%2cBEAUDET%2c+RAYMOND%2c9782924304396&utm_campaign=partage-réseaux-sociaux&utm_medium=réseaux-sociaux&utm_source=facebook-like|consulté le=2022-02-08}}</ref>. +*2021 Le bonheur, chroniques d'une vie à la campagne, publié aux Éditions de la Roupille, 270 pages {{ISBN|978-2-924304-40-2}}<ref>{{Lien web |langue=fr |prénom=Hélène |nom=Moore |titre=Le bonheur. Chroniques d’une vie à la campagne par Raymond Beaudet, Hélène Moore {{!}} Biographies {{!}} Faits vécus/Bio divers {{!}} Leslibraires.ca |url=https://www.leslibraires.ca/livres/le-bonheur-chroniques-d-une-vie-raymond-beaudet-9782924304402.html |site=www.leslibraires.ca |consulté le=2022-02-08}}</ref><ref>{{Lien web |langue=fr-ca |prénom=Cool 103,5 |nom=FM |titre="Le bonheur" 6ième ouvrage de l'auteur Raymond Beaudet |url=https://www.coolfm.biz/nouvelle/5205--le-bonheur-6ieme-ouvrage-de-l-auteur-raymond-beaudet |site=Cool 103,5 FM |consulté le=2022-02-08}}</ref><ref>{{Lien web |langue=fr-FR |prénom=Antoine |nom=Desrosiers |titre=Un sixième ouvrage pour l'auteur Raymond Beaudet de Sainte-Marie |url=https://mabeauce.com/un-sixieme-ouvrage-pour-lauteur-raymond-beaudet-de-sainte-marie/ |site=Ma Beauce |date=2021-02-25 |consulté le=2022-02-08}}</ref><ref>{{Lien web |langue=fr-ca |prénom=Cool 103,5 |nom=FM |titre="Le bonheur" 6ième ouvrage de l'auteur Raymond Beaudet |url=https://www.coolfm.biz/nouvelle/5205--le-bonheur-6ieme-ouvrage-de-l-auteur-raymond-beaudet |site=Cool 103,5 FM |consulté le=2022-02-08}}</ref><ref>{{Lien web |langue=ne |titre=Le bonheur, par Raymond BEAUDET et Hélène MOORE |url=https://ne-np.facebook.com/laroupille/videos/531892437783096/ |consulté le=2022-02-08}}</ref><ref>{{Lien web |langue=fr |titre=L'écrivain... - Éditions La Roupille, Service d'édition |url=https://www.facebook.com/laroupille/videos/772815796737521/ |consulté le=2022-02-08}}</ref><ref>{{Lien web |langue=hi |titre=BIBLIOTHÈQUE {{!}} « Le bonheur :... - Ville de Sainte-Marie |url=https://hi-in.facebook.com/villesaintemarie/videos/128982392487598/ |consulté le=2022-02-08}}</ref><ref>{{Lien web |langue=fr-CA |titre=Trouver le bonheur à la campagne |url=http://www.beaucemedia.ca/2021/02/24/trouver-le-bonheur-a-la-campagne/ |site=Beauce Média |date=2021-02-24 |consulté le=2022-02-08}}</ref>. +*2020 En décide de vendre, nouvelle parue dans Les Écrits mariverains 2020, {{ISBN|978-2-9810768-2-3}} + +*2019: +** Tableaux et portraits mariverains, Capsules historiques, {{ISBN|978-2-9810768-2-3}}<ref>{{Lien web |langue=th |titre=เข้าสู่ระบบ Facebook |url=https://th-th.facebook.com/login/?next=https%3A%2F%2Fth-th.facebook.com%2Fcheqfm%2Fposts%2F3625148174272475%2F |site=Facebook |consulté le=2022-02-08}}</ref><ref>{{Lien web |langue=ms |titre=LES 1001 MÉTIERS DE LA CULTURE {{!}} M. Raymond Beaudet |url=https://ms-my.facebook.com/villesaintemarie/videos/327787105117018/ |consulté le=2022-02-08}}</ref><ref>{{Lien web |langue=fr-CA |titre=Des guides accrédités pour découvrir la Beauce |url=http://www.beaucemedia.ca/2021/03/11/des-guides-accredites-pour-decouvrir-la-beauce/ |site=Beauce Média |date=2021-03-11 |consulté le=2022-02-08}}</ref><ref>{{Lien web |langue=fr |titre=Chronique à Raymond {{!}} Mon site web |url=https://genealogiestemarie.ca/chronique-a-raymond |site=genealogiestemarie.ca |consulté le=2022-02-08}}</ref><ref>{{Lien web |langue=fr-FR |titre=Capsules historiques |url=https://www.sainte-marie.ca/loisirs-culture/programmation/275e-anniversaire-capsules-historiques/ |site=Ville de Sainte-Marie |consulté le=2022-02-08}}</ref>. +** Carnet d'un passager clandestin, nouvelle parue dans Les Écrits Mariverains 2019, {{ISBN|978-2-9810768-0-9}}<ref name=":0">{{Lien web |langue=fr-FR |titre=Écrits mariverains |url=https://www.sainte-marie.ca/loisirs-culture/ecrits-mariverains/ |site=Ville de Sainte-Marie |consulté le=2022-02-08}}</ref>. +** Voix de dépassement, scénario du spectacle de la Corporation des Instrumentistes Associés. +*2018 +** Marie-Claire et moi, nouvelle parue dans Les Écrits mariverains 2018, {{ISBN|978-2-9809683-9-6}}<ref name=":0" />. +** La dernière scène, scénario du spectacle de la Corporation des Instrumentistes Associés. +** La boucherie, Projet personnel d'orientation, Ministère de l'Éducation et de l'Enseignement supérieur. +*2017 +** L'idée perdue, nouvelle parue dans Les Écrits mariverains 2017, {{ISBN|978-2-9809683-8-9}} +** Coups de cœur, scénario du spectacle de la Corporation des Instrumentistes Associés. +*2016 +** Prix coup de cœur du jury au Concours de twittérature du Centre de la Francophonie des Amériques 2016<ref>{{Lien web |langue=fr-CA |titre=La twittérature est victorieuse à Sainte-Marie |url=https://www.beaucemedia.ca/2016/05/20/la-twitterature-est-victorieuse-a-sainte-marie/ |site=Beauce Média |date=2016-05-20 |consulté le=2022-02-08}}</ref><ref>{{Lien web |langue=fr |nom=iClic (www.iclic.com) |titre=La twittérature s'invite au CFER de Beauce à Sainte-Marie |url=https://www.enbeauce.com/actualites/culturel/305797/la-twitterature-sinvite-au-cfer-de-beauce-a-sainte-marie |site=EnBeauce.com |consulté le=2022-02-08}}</ref>. +** Éliza Caztel de Sainte-Marie, nouvelle parue dans Les Écrits mariverains 2016, {{ISBN|978-2-9809683-7-2}}<ref name=":0" />. +** La CIA sème le trouble, scénario du spectacle de la Corporation des Instrumentistes Associés. +*2015 La photographie numérique, Projet personnel d'orientation, Ministère de l'Éducation du Loisir et du sport. +*2015 Impressions de voyage: le Chili, nouvelle parue dans Les Écrits mariverains 2015, {{ISBN|978-2-9809683-6-5}}<ref name=":0" />. +*2015 La CIA, version 5.0, scénario du spectacle de la Corporation des Instrumentistes Associés. +*2014, 26 juin, TEDx Sainte-Marie, La paternelle<ref>{{Lien web |langue=fr-FR |titre=La paternelle {{!}} Raymond Beaudet {{!}} TEDxSainteMarie |url=https://www.youtube.com/watch?v=wGqQ2FS-P-A |consulté le=2022-02-08}}</ref><ref>{{Lien web |langue=fr |nom=iClic (www.iclic.com) |titre=TEDx Sainte-Marie dévoile le nom de trois conférenciers |url=https://www.enbeauce.com/actualites/societe/125807/tedx-sainte-marie-devoile-le-nom-de-trois-conferenciers |site=EnBeauce.com |consulté le=2022-02-08}}</ref>. +*2014 Le désastreux destin d'Arlette Mallette, nouvelle parue dans Les Écrits mariverains 2014, {{ISBN|978-2-9809683-5-8}}<ref name=":0" />. +*2014 La CIA, L'espace d'une vie, scénario du spectacle de la Corporation des Instrumentistes Associés. +*2014 Carapaces, Roman publié aux Éditions Textes et Contextes, 279 pages. {{ISBN|978-2-923706-63-4}}<ref>{{Ouvrage|langue=en|titre=Carapaces par BEAUDET, RAYMOND|lire en ligne=http://www.renaud-bray.com/Livres_Produit.aspx?id=1531849&def=Carapaces%2cBEAUDET%2c+RAYMOND%2c9782923706634&utm_campaign=partage-réseaux-sociaux&utm_medium=réseaux-sociaux&utm_source=facebook-like|consulté le=2022-02-08}}</ref><ref>{{Lien web |titre=http://biblio.villemontlaurier.qc.ca/in/faces/details.xhtml?id=p%3A%3Ausmarcdef_0000064212 |url=http://biblio.villemontlaurier.qc.ca/in/faces/details.xhtml?id=p%3A%3Ausmarcdef_0000064212 |site=biblio.villemontlaurier.qc.ca |consulté le=2022-02-08}}</ref>[https://www.renaud-bray.com/Livres_Produit.aspx?id=1531849&def=Carapaces,BEAUDET,+RAYMOND,9782923706634 .] +*2013 La Politique, Projet personnel d'orientation, Ministère de l'Éducation du Loisir et du sport. +*2013 La CIA poursuit son enquête, scénario du spectacle de la Corporation des Instrumentistes Associés. +*2013 Napoléon, nouvelle parue dans Les Écrits mariverains 2013. {{ISBN|978-2-9809683-4-1}}<ref name=":0" />. +*2012 Ménage de cave, nouvelle parue dans Les Écrits mariverains, 2012. {{ISBN|978-2-980-9683-3-4}}<ref name=":0" />. +*2012 En quête de mission, scénario du spectacle de la Corporation des Instrumentistes Associés. +*2012 Finaliste dans deux concours de Zone d’écriture de Radio-Canada en twittérature. +*2011 La CIA autour du monde, scénario du spectacle de la Corporation des Instrumentistes Associés. +*2011 En deuxième vitesse, nouvelle parue dans Les Écrits mariverains 2011. {{ISBN|978-2-980-9683-1-0|}}<ref name=":0" />. +*2010 Biographie de Jeannine Rousseau et Rolland Massicotte, scénario. +*2010 Le Projet Adam et Ève, nouvelle parue dans Écrits mariverains 2010, {{ISBN|978-2-980-9683-1-0}}<ref name=":0" />. +*2009 Alexandre et Cassiopée, nouvelle parue dans Écrits mariverains 2009. +*2008 ''Dans un mois, dans un an'', Roman publié dans la collection Les mots inventifs, Les Éditions du Mécène, 576 pages. {{ISBN|978-2-923150-61-1}} +*2007 ''L'écriture'', Projet personnel d'orientation, Ministère de l'Éducation du Loisir et du sport. +*2005 ''29, rue des Remparts'', Roman publié dans la collection Les mots inventifs, Les éditions du Mécène, 192 pages. {{ISBN|2-923150-28-7}} +*2003 ''Vie 101'', Essai publié dans la collection Les mots utiles, Les Éditions du Mécène. 126 pages. {{ISBN|2-923150-03-1}} +*2002 ''Le groupe conseil fiscalis'', scénario produit pour le groupe conseil Fiscalis. +*2001 ''Lévis, ville nouvelle'', scénario de deux émissions de trente minutes pour le Comité de transition de la ville de Lévis et Canal Vox +*2001 ''L’école québécoise, ce qu’il y a de mieux pour votre enfant'', scénario produit pour le Ministère de l’éducation du Québec. +*2000 ''Le jeu en valait-il la chandelle?'' scénario produit pour le Centre québécois d’excellence pour la prévention et le traitement du jeu. (Université Laval) +*1999 ''Le hasard, Lucky, on peut rien y changer'', scénario produit pour le Centre québécois d’excellence pour la prévention et le traitement du jeu. (Université Laval) +*1999 ''Un pacte fiscal pour l’an 2000, des idées, de la solidarité'', scénario produit pour l’Union des Municipalités régionales de comté et des municipalités locales. +*1999 ''Détect-o-max et Une journée avec Détect-o-max'', deux scénarios produits pour Conception Ro-main inc. +*1999 ''Propane GRG, à l’écoute de ses clients'', scénario produit pour la firme Propane GRG inc. +*1998 ''Maître du mètre'', scénario d’un documentaire sur les 25 ans du système métrique au Québec. +*1997 ''Le temps des sucres'', scénario produit pour la firme Shady Maple Farms. +*1996 ''Le Génie de campagne'', scénario produit pour les Forces armées canadiennes. +*1996 ''La Compagnie franche de la Marine de Québec'', scénario produit pour les Forces armées canadiennes. +*1995 ''Bon séjour à l'École navale de Québec'', scénario produit pour les Forces armées canadiennes. +*1994 ''Un leadership, des services'', scénario produit pour la Fédération des commissions scolaires du Québec. +*1993 ''Les clubs de recherche d'emploi'', scénario produit pour le Ministère de l'Emploi et de l'Immigration du Canada. +*1992 ''Fiers de notre avenir'', scénario produit pour l'Assurance-Vie Desjardins. +*1992 ''Responsible Leadership'', scénario produit pour la compagnie papetière Donohue. (Prix Corpo Vision) +*1992 Scénarisation d'un ensemble de huit vidéos destinées aux écoles secondaires et aux collèges du Québec, pour la Fondation de l'entrepreneurship Québécois. (Prix Adate) +*1991 ''Guide à l'intention du nouveau personnel'', rédaction d'une brochure d'accueil pour la Commission scolaire Louis-Fréchette. +*1990 Comment ça va chez vous? scénario produit pour la Confédération des caisses Desjardins. +*1990 ''Le choc est aussi grand pour les petits.'' I et II, scénario de deux vidéos pour la Régie de l'assurance automobile du Québec. +*1990 Participation au concours de nouvelles de Radio-Canada avec ''Alexandre et Cassiopée.'' +*1989 Participation au concours de nouvelles de Radio-Canada avec ''Le mystère de la cathédrale.'' +*1989 ''La Double vie d'Antoine Gagnon, Ministre'', scénario d'un téléfilm pour Radio-Canada. +*1988 ''Passeport pour la liberté'', Les Quinze Éditeurs, Montréal. {{ISBN|2-89026-368-1}}. (Prix Robert-Cliche)<ref>{{Lien web |langue=en |titre=PASSEPORT POUR LA LIBERTE. ROMAN by RAYMOND BEAUDET: bon Couverture souple (1988) {{!}} Le-Livre |url=https://www.abebooks.com/9782864770886/PASSEPORT-LIBERTE-ROMAN-RAYMOND-BEAUDET-2864770881/plp |site=www.abebooks.com |consulté le=2022-02-08}}</ref>. +*1988 Coédition aux Éditions Jean Picollec, à Paris, du roman ''Passeport pour la liberté'', 303 pages, {{ISBN|2-86477-088-1}}<ref>{{Lien web |titre=Raymond Beaudet |url=https://www.goodreads.com/author/show/1956588.Raymond_Beaudet |site=www.goodreads.com |consulté le=2022-02-08}}</ref>. +*1987 Participation au concours de nouvelles de Radio-''Canada avec Le secret''. +*1987 Collaboration au scénario et aux dialogues de ''Vie décolle'', vidéo produite pour la Commission scolaire Abénakis (21 minutes). +*1983 Rédaction et direction de ''C'est qui ma maman à moi?'' pièce de théâtre montée par la troupe de la Polyvalente Benoît-Vachon de Sainte-Marie de Beauce. +*1982 Rédaction et direction de ''Au nom du père, de la fille et du Sain d'esprit'', pièce de théâtre montée par la troupe de la Polyvalente Benoît -Vachon de Sainte-Marie de Beauce. +*1977 Corédaction et mise en scène de la pièce ''Coup de Théâtre à Ste-Onction'' jouée par les élèves de la Polyvalente Benoît-Vachon de Sainte-Marie de Beauce + +== Références == +{{references}} +== Liens externes == +* {{Liens biographiques}} + +{{Portail|Québec|littérature}} + +{{CLEDETRI:Beaudet, Raymond}} +[[Catégorie:Écrivain québécois|Beaudet, Raymond]] +[[Catégorie:Naissance en 1950]] + ad1dn86m7p9ebjiyigwxuhukshundo3 + + + 190661934 + 190661732 + 2022-02-08T18:01:17Z + + SuperTom4277 + 3477067 + + Ajouté des sources et des références. + wikitext + text/x-wiki + +{{Sans source|date=février 2021}} +{{À sourcer|date=mars 2019}} +{{voir homonymes|Beaudet}} +{{Infobox Biographie2}} +'''Raymond Beaudet''' (Québec 1950 - ) est un écrivain et un scénariste [[Québec|québécois]]<ref>[https://www.sainte-marie.ca/repertoire_culturel/raymond-beaudet sainte-marie.ca]/</ref>. Détenteur d’une maîtrise en [[philosophie]] de l’[[Université Laval]] (1975) on le retrouve successivement enseignant, syndicaliste, secrétaire particulier du Ministre des Richesses Naturelles, [[Yves Bérubé]], directeur d’école primaire et directeur d’école secondaire (Polyvalente Benoît-Vachon).Il est l’auteur de 5 romans, d’un essai, d'une biographie, d'un recueil de contes, d’une trentaine de scénarios, de plusieurs nouvelles et capsules historiques, de même que de trois pièces de théâtre. Depuis 2014, il est actif en [[twittérature]]<ref>{{Lien web |langue=fr |titre=https://twitter.com/raymondbeaudet |url=https://twitter.com/raymondbeaudet |site=Twitter |consulté le=2022-02-08}}</ref>. + +== Honneurs == +*Prix du Patrimoine (2019) Catégorie Interprétation et Diffusion<ref>{{Lien web |langue=fr |nom=iClic (www.iclic.com) |titre=Les lauréats du Prix du patrimoine de Nouvelle-Beauce sont dévoilés |url=https://www.enbeauce.com/actualites/culturel/21829/les-laureats-du-prix-du-patrimoine-de-nouvelle-beauce-sont-devoiles |site=EnBeauce.com |consulté le=2022-02-08}}</ref>. +*Prix coup de cœur du jury au Concours de twittérature du Centre de la Francophonie des Amériques 2016 +* Prix du Patrimoine (2011) Catégorie Interprétation et Diffusion<ref>{{Lien web |langue=fr |nom=iClic (www.iclic.com) |titre=Les lauréats des Prix du patrimoine 2019 MRC Nouvelle-Beauce dévoilés |url=https://www.enbeauce.com/actualites/culturel/364234/les-laureats-des-prix-du-patrimoine-2019-mrc-nouvelle-beauce-devoiles |site=EnBeauce.com |consulté le=2022-02-08}}</ref>. +* [[Prix Robert-Cliche]] ([[1988]]), ''Passeport pour la liberté''<ref>{{lien web | url=http://www.edvlb.com/prixrobertcliche/laureats.aspx | titre=Lauréats du prix Robert-Cliche | consulté le=24 juin 2011}}</ref> +* Prix Corpo-vision (1992) +* Prix Adate (1993) + +== Bibliographie == +*2021 Les lieux enchantés du Parc Taschereau, publié aux Éditions de la Roupille, 96 pages, {{ISBN|978-2-924304-45-7}}<ref>{{Lien web |langue=fr-CA |titre=Des guides accrédités pour découvrir la Beauce |url=https://www.leclaireurprogres.ca/des-guides-accredites-pour-decouvrir-la-beauce/ |site=L'Éclaireur Progrès |date=2021-03-11 |consulté le=2022-02-08}}</ref><ref>{{Lien web |langue=fr-FR |prénom=Antoine |nom=Desrosiers |titre=Journée internationale des droits des femmes: huit femmes qui ont marqué Sainte-Marie à leur façon |url=https://mabeauce.com/journee-internationale-des-droits-des-femmes-huit-femmes-qui-ont-marque-sainte-marie-a-leur-facon/ |site=Ma Beauce |date=2021-03-08 |consulté le=2022-02-08}}</ref><ref>{{Lien web |langue=en |titre=Conférence - L'écriture sa passion avec Raymond Beaudet à l'Éco-refuge du Domaine Taschereau -10$/p. - Sainte-Marie, 2021-06-29 |url=https://ca.datescloud.com/conference-lecriture-sa-passion-avec-raymond-beaudet-a-leco-sainte-marie-305685960.html |site=dates.cloud |consulté le=2022-02-08}}</ref><ref>{{Lien web |langue=fr-FR |titre=Visites guidées et groupes touristiques {{!}} Domaine Taschereau |url=http://www.domainetaschereau.com/?page_id=634 |consulté le=2022-02-08}}</ref><ref>{{Lien web |langue=fr |titre=Se connecter à Facebook |url=https://www.facebook.com/ |site=Facebook |consulté le=2022-02-08}}</ref><ref>{{Lien web |langue=fr |nom=iClic (www.iclic.com) |titre=Les Lieux enchantés du parc Taschereau : des contes qui prennent vie |url=https://www.enbeauce.com/actualites/culturel/437952/les-lieux-enchantes-du-parc-taschereau-des-contes-qui-prennent-vie |site=EnBeauce.com |consulté le=2022-02-08}}</ref>. +*2021 Normand Maurice, père de la récupération au Québec, biographie publiée aux Éditions de la Roupille, 176 pages, {{ISBN|978-2-924304-39-6}}<ref>{{Lien web |langue=fr-CA |titre=Un livre neuf pour le père de la récupération |url=http://www.beaucemedia.ca/2021/06/25/un-livre-neuf-pour-le-pere-de-la-recuperation/ |site=Beauce Média |date=2021-06-25 |consulté le=2022-02-08}}</ref><ref>{{Lien web |langue=fr |prénom=Raymond |nom=Beaudet |titre=Normand Maurice : père de la récupération au Québec par Raymond Beaudet {{!}} Biographies {{!}} Gens d'affaire {{!}} Leslibraires.ca |url=https://www.leslibraires.ca/livres/normand-maurice-pere-de-la-recuperation-raymond-beaudet-9782924304396.html |site=www.leslibraires.ca |consulté le=2022-02-08}}</ref><ref>{{Lien web |langue=fr-FR |titre=Réseau CFER » Lancement du livre sur Normand Maurice |url=https://reseaucfer.ca/nouvelles/lancement-du-livre-sur-normand-maurice/ |consulté le=2022-02-08}}</ref><ref>{{Ouvrage|langue=en|titre=Normand Maurice, père de la récupération au Québec par BEAUDET, RAYMOND|lire en ligne=http://www.renaud-bray.com/Livres_Produit.aspx?id=3353354&def=Normand+Maurice%2c+p%c3%a8re+de+la+r%c3%a9cup%c3%a9ration+au+Qu%c3%a9bec%2cBEAUDET%2c+RAYMOND%2c9782924304396&utm_campaign=partage-réseaux-sociaux&utm_medium=réseaux-sociaux&utm_source=facebook-like|consulté le=2022-02-08}}</ref>. +*2021 Le bonheur, chroniques d'une vie à la campagne, publié aux Éditions de la Roupille, 270 pages {{ISBN|978-2-924304-40-2}}<ref>{{Lien web |langue=fr |prénom=Hélène |nom=Moore |titre=Le bonheur. Chroniques d’une vie à la campagne par Raymond Beaudet, Hélène Moore {{!}} Biographies {{!}} Faits vécus/Bio divers {{!}} Leslibraires.ca |url=https://www.leslibraires.ca/livres/le-bonheur-chroniques-d-une-vie-raymond-beaudet-9782924304402.html |site=www.leslibraires.ca |consulté le=2022-02-08}}</ref><ref>{{Lien web |langue=fr-ca |prénom=Cool 103,5 |nom=FM |titre="Le bonheur" 6ième ouvrage de l'auteur Raymond Beaudet |url=https://www.coolfm.biz/nouvelle/5205--le-bonheur-6ieme-ouvrage-de-l-auteur-raymond-beaudet |site=Cool 103,5 FM |consulté le=2022-02-08}}</ref><ref>{{Lien web |langue=fr-FR |prénom=Antoine |nom=Desrosiers |titre=Un sixième ouvrage pour l'auteur Raymond Beaudet de Sainte-Marie |url=https://mabeauce.com/un-sixieme-ouvrage-pour-lauteur-raymond-beaudet-de-sainte-marie/ |site=Ma Beauce |date=2021-02-25 |consulté le=2022-02-08}}</ref><ref>{{Lien web |langue=fr-ca |prénom=Cool 103,5 |nom=FM |titre="Le bonheur" 6ième ouvrage de l'auteur Raymond Beaudet |url=https://www.coolfm.biz/nouvelle/5205--le-bonheur-6ieme-ouvrage-de-l-auteur-raymond-beaudet |site=Cool 103,5 FM |consulté le=2022-02-08}}</ref><ref>{{Lien web |langue=ne |titre=Le bonheur, par Raymond BEAUDET et Hélène MOORE |url=https://ne-np.facebook.com/laroupille/videos/531892437783096/ |consulté le=2022-02-08}}</ref><ref>{{Lien web |langue=fr |titre=L'écrivain... - Éditions La Roupille, Service d'édition |url=https://www.facebook.com/laroupille/videos/772815796737521/ |consulté le=2022-02-08}}</ref><ref>{{Lien web |langue=hi |titre=BIBLIOTHÈQUE {{!}} « Le bonheur :... - Ville de Sainte-Marie |url=https://hi-in.facebook.com/villesaintemarie/videos/128982392487598/ |consulté le=2022-02-08}}</ref><ref>{{Lien web |langue=fr-CA |titre=Trouver le bonheur à la campagne |url=http://www.beaucemedia.ca/2021/02/24/trouver-le-bonheur-a-la-campagne/ |site=Beauce Média |date=2021-02-24 |consulté le=2022-02-08}}</ref>. +*2020 En décide de vendre, nouvelle parue dans Les Écrits mariverains 2020, {{ISBN|978-2-9810768-2-3}}<ref name=":0" />. + +*2019: +** Tableaux et portraits mariverains, Capsules historiques, {{ISBN|978-2-9810768-2-3}}<ref>{{Lien web |langue=th |titre=เข้าสู่ระบบ Facebook |url=https://th-th.facebook.com/login/?next=https%3A%2F%2Fth-th.facebook.com%2Fcheqfm%2Fposts%2F3625148174272475%2F |site=Facebook |consulté le=2022-02-08}}</ref><ref>{{Lien web |langue=ms |titre=LES 1001 MÉTIERS DE LA CULTURE {{!}} M. Raymond Beaudet |url=https://ms-my.facebook.com/villesaintemarie/videos/327787105117018/ |consulté le=2022-02-08}}</ref><ref>{{Lien web |langue=fr-CA |titre=Des guides accrédités pour découvrir la Beauce |url=http://www.beaucemedia.ca/2021/03/11/des-guides-accredites-pour-decouvrir-la-beauce/ |site=Beauce Média |date=2021-03-11 |consulté le=2022-02-08}}</ref><ref>{{Lien web |langue=fr |titre=Chronique à Raymond {{!}} Mon site web |url=https://genealogiestemarie.ca/chronique-a-raymond |site=genealogiestemarie.ca |consulté le=2022-02-08}}</ref><ref>{{Lien web |langue=fr-FR |titre=Capsules historiques |url=https://www.sainte-marie.ca/loisirs-culture/programmation/275e-anniversaire-capsules-historiques/ |site=Ville de Sainte-Marie |consulté le=2022-02-08}}</ref>. +** Carnet d'un passager clandestin, nouvelle parue dans Les Écrits Mariverains 2019, {{ISBN|978-2-9810768-0-9}}<ref name=":0">{{Lien web |langue=fr-FR |titre=Écrits mariverains |url=https://www.sainte-marie.ca/loisirs-culture/ecrits-mariverains/ |site=Ville de Sainte-Marie |consulté le=2022-02-08}}</ref>. +** Voix de dépassement, scénario du spectacle de la Corporation des Instrumentistes Associés<ref name=":1">{{Lien web |langue=fr-CA |titre=La CIA célébrera son 10e anniversaire le 15 avril |url=http://www.beaucemedia.ca/2021/11/25/la-cia-celebrera-son-10e-anniversaire-le-15-avril/ |site=Beauce Média |date=2021-11-25 |consulté le=2022-02-08}}</ref>. +*2018 +** Marie-Claire et moi, nouvelle parue dans Les Écrits mariverains 2018, {{ISBN|978-2-9809683-9-6}}<ref name=":0" />. +** La dernière scène, scénario du spectacle de la Corporation des Instrumentistes Associés<ref name=":1" />. +** La boucherie, Projet personnel d'orientation, Ministère de l'Éducation et de l'Enseignement supérieur. +*2017 +** L'idée perdue, nouvelle parue dans Les Écrits mariverains 2017, {{ISBN|978-2-9809683-8-9}} +** Coups de cœur, scénario du spectacle de la Corporation des Instrumentistes Associés. +*2016 +** Prix coup de cœur du jury au Concours de twittérature du Centre de la Francophonie des Amériques 2016<ref>{{Lien web |langue=fr-CA |titre=La twittérature est victorieuse à Sainte-Marie |url=https://www.beaucemedia.ca/2016/05/20/la-twitterature-est-victorieuse-a-sainte-marie/ |site=Beauce Média |date=2016-05-20 |consulté le=2022-02-08}}</ref><ref>{{Lien web |langue=fr |nom=iClic (www.iclic.com) |titre=La twittérature s'invite au CFER de Beauce à Sainte-Marie |url=https://www.enbeauce.com/actualites/culturel/305797/la-twitterature-sinvite-au-cfer-de-beauce-a-sainte-marie |site=EnBeauce.com |consulté le=2022-02-08}}</ref>. +** Éliza Caztel de Sainte-Marie, nouvelle parue dans Les Écrits mariverains 2016, {{ISBN|978-2-9809683-7-2}}<ref name=":0" />. +** La CIA sème le trouble, scénario du spectacle de la Corporation des Instrumentistes Associés. +*2015 La photographie numérique, Projet personnel d'orientation, Ministère de l'Éducation du Loisir et du sport. +*2015 Impressions de voyage: le Chili, nouvelle parue dans Les Écrits mariverains 2015, {{ISBN|978-2-9809683-6-5}}<ref name=":0" />. +*2015 La CIA, version 5.0, scénario du spectacle de la Corporation des Instrumentistes Associés. +*2014, 26 juin, TEDx Sainte-Marie, La paternelle<ref>{{Lien web |langue=fr-FR |titre=La paternelle {{!}} Raymond Beaudet {{!}} TEDxSainteMarie |url=https://www.youtube.com/watch?v=wGqQ2FS-P-A |consulté le=2022-02-08}}</ref><ref>{{Lien web |langue=fr |nom=iClic (www.iclic.com) |titre=TEDx Sainte-Marie dévoile le nom de trois conférenciers |url=https://www.enbeauce.com/actualites/societe/125807/tedx-sainte-marie-devoile-le-nom-de-trois-conferenciers |site=EnBeauce.com |consulté le=2022-02-08}}</ref>. +*2014 Le désastreux destin d'Arlette Mallette, nouvelle parue dans Les Écrits mariverains 2014, {{ISBN|978-2-9809683-5-8}}<ref name=":0" />. +*2014 La CIA, L'espace d'une vie, scénario du spectacle de la Corporation des Instrumentistes Associés. +*2014 Carapaces, Roman publié aux Éditions Textes et Contextes, 279 pages. {{ISBN|978-2-923706-63-4}}<ref>{{Ouvrage|langue=en|titre=Carapaces par BEAUDET, RAYMOND|lire en ligne=http://www.renaud-bray.com/Livres_Produit.aspx?id=1531849&def=Carapaces%2cBEAUDET%2c+RAYMOND%2c9782923706634&utm_campaign=partage-réseaux-sociaux&utm_medium=réseaux-sociaux&utm_source=facebook-like|consulté le=2022-02-08}}</ref><ref>{{Lien web |titre=http://biblio.villemontlaurier.qc.ca/in/faces/details.xhtml?id=p%3A%3Ausmarcdef_0000064212 |url=http://biblio.villemontlaurier.qc.ca/in/faces/details.xhtml?id=p%3A%3Ausmarcdef_0000064212 |site=biblio.villemontlaurier.qc.ca |consulté le=2022-02-08}}</ref>[https://www.renaud-bray.com/Livres_Produit.aspx?id=1531849&def=Carapaces,BEAUDET,+RAYMOND,9782923706634 .] +*2013 La Politique, Projet personnel d'orientation, Ministère de l'Éducation du Loisir et du sport. +*2013 La CIA poursuit son enquête, scénario du spectacle de la Corporation des Instrumentistes Associés. +*2013 Napoléon, nouvelle parue dans Les Écrits mariverains 2013. {{ISBN|978-2-9809683-4-1}}<ref name=":0" />. +*2012 Ménage de cave, nouvelle parue dans Les Écrits mariverains, 2012. {{ISBN|978-2-980-9683-3-4}}<ref name=":0" />. +*2012 En quête de mission, scénario du spectacle de la Corporation des Instrumentistes Associés. +*2012 Finaliste dans deux concours de Zone d’écriture de Radio-Canada en twittérature. +*2011 La CIA autour du monde, scénario du spectacle de la Corporation des Instrumentistes Associés. +*2011 En deuxième vitesse, nouvelle parue dans Les Écrits mariverains 2011. {{ISBN|978-2-980-9683-1-0|}}<ref name=":0" />. +*2010 Biographie de Jeannine Rousseau et Rolland Massicotte, scénario. +*2010 Le Projet Adam et Ève, nouvelle parue dans Écrits mariverains 2010, {{ISBN|978-2-980-9683-1-0}}<ref name=":0" />. +*2009 Alexandre et Cassiopée, nouvelle parue dans Écrits mariverains 2009. +*2008 ''Dans un mois, dans un an'', Roman publié dans la collection Les mots inventifs, Les Éditions du Mécène, 576 pages. {{ISBN|978-2-923150-61-1}} +*2007 ''L'écriture'', Projet personnel d'orientation, Ministère de l'Éducation du Loisir et du sport. +*2005 ''29, rue des Remparts'', Roman publié dans la collection Les mots inventifs, Les éditions du Mécène, 192 pages. {{ISBN|2-923150-28-7}} +*2003 ''Vie 101'', Essai publié dans la collection Les mots utiles, Les Éditions du Mécène. 126 pages. {{ISBN|2-923150-03-1}} +*2002 ''Le groupe conseil fiscalis'', scénario produit pour le groupe conseil Fiscalis. +*2001 ''Lévis, ville nouvelle'', scénario de deux émissions de trente minutes pour le Comité de transition de la ville de Lévis et Canal Vox +*2001 ''L’école québécoise, ce qu’il y a de mieux pour votre enfant'', scénario produit pour le Ministère de l’éducation du Québec. +*2000 ''Le jeu en valait-il la chandelle?'' scénario produit pour le Centre québécois d’excellence pour la prévention et le traitement du jeu. (Université Laval) +*1999 ''Le hasard, Lucky, on peut rien y changer'', scénario produit pour le Centre québécois d’excellence pour la prévention et le traitement du jeu. (Université Laval) +*1999 ''Un pacte fiscal pour l’an 2000, des idées, de la solidarité'', scénario produit pour l’Union des Municipalités régionales de comté et des municipalités locales. +*1999 ''Détect-o-max et Une journée avec Détect-o-max'', deux scénarios produits pour Conception Ro-main inc. +*1999 ''Propane GRG, à l’écoute de ses clients'', scénario produit pour la firme Propane GRG inc. +*1998 ''Maître du mètre'', scénario d’un documentaire sur les 25 ans du système métrique au Québec. +*1997 ''Le temps des sucres'', scénario produit pour la firme Shady Maple Farms. +*1996 ''Le Génie de campagne'', scénario produit pour les Forces armées canadiennes. +*1996 ''La Compagnie franche de la Marine de Québec'', scénario produit pour les Forces armées canadiennes. +*1995 ''Bon séjour à l'École navale de Québec'', scénario produit pour les Forces armées canadiennes. +*1994 ''Un leadership, des services'', scénario produit pour la Fédération des commissions scolaires du Québec. +*1993 ''Les clubs de recherche d'emploi'', scénario produit pour le Ministère de l'Emploi et de l'Immigration du Canada. +*1992 ''Fiers de notre avenir'', scénario produit pour l'Assurance-Vie Desjardins. +*1992 ''Responsible Leadership'', scénario produit pour la compagnie papetière Donohue. (Prix Corpo Vision) +*1992 Scénarisation d'un ensemble de huit vidéos destinées aux écoles secondaires et aux collèges du Québec, pour la Fondation de l'entrepreneurship Québécois. (Prix Adate) +*1991 ''Guide à l'intention du nouveau personnel'', rédaction d'une brochure d'accueil pour la Commission scolaire Louis-Fréchette. +*1990 Comment ça va chez vous? scénario produit pour la Confédération des caisses Desjardins. +*1990 ''Le choc est aussi grand pour les petits.'' I et II, scénario de deux vidéos pour la Régie de l'assurance automobile du Québec. +*1990 Participation au concours de nouvelles de Radio-Canada avec ''Alexandre et Cassiopée.'' +*1989 Participation au concours de nouvelles de Radio-Canada avec ''Le mystère de la cathédrale.'' +*1989 ''La Double vie d'Antoine Gagnon, Ministre'', scénario d'un téléfilm pour Radio-Canada. +*1988 ''Passeport pour la liberté'', Les Quinze Éditeurs, Montréal. {{ISBN|2-89026-368-1}}. (Prix Robert-Cliche)<ref>{{Lien web |langue=en |titre=PASSEPORT POUR LA LIBERTE. ROMAN by RAYMOND BEAUDET: bon Couverture souple (1988) {{!}} Le-Livre |url=https://www.abebooks.com/9782864770886/PASSEPORT-LIBERTE-ROMAN-RAYMOND-BEAUDET-2864770881/plp |site=www.abebooks.com |consulté le=2022-02-08}}</ref>. +*1988 Coédition aux Éditions Jean Picollec, à Paris, du roman ''Passeport pour la liberté'', 303 pages, {{ISBN|2-86477-088-1}}<ref>{{Lien web |titre=Raymond Beaudet |url=https://www.goodreads.com/author/show/1956588.Raymond_Beaudet |site=www.goodreads.com |consulté le=2022-02-08}}</ref>. +*1987 Participation au concours de nouvelles de Radio-''Canada avec Le secret''. +*1987 Collaboration au scénario et aux dialogues de ''Vie décolle'', vidéo produite pour la Commission scolaire Abénakis (21 minutes). +*1983 Rédaction et direction de ''C'est qui ma maman à moi?'' pièce de théâtre montée par la troupe de la Polyvalente Benoît-Vachon de Sainte-Marie de Beauce. +*1982 Rédaction et direction de ''Au nom du père, de la fille et du Sain d'esprit'', pièce de théâtre montée par la troupe de la Polyvalente Benoît -Vachon de Sainte-Marie de Beauce. +*1977 Corédaction et mise en scène de la pièce ''Coup de Théâtre à Ste-Onction'' jouée par les élèves de la Polyvalente Benoît-Vachon de Sainte-Marie de Beauce + +== Références == +{{references}} +== Liens externes == +* {{Liens biographiques}} + +{{Portail|Québec|littérature}} + +{{CLEDETRI:Beaudet, Raymond}} +[[Catégorie:Écrivain québécois|Beaudet, Raymond]] +[[Catégorie:Naissance en 1950]] + 6e32n0h6dyagpyegh0srut64vruwudd + + + 190662056 + 190661934 + 2022-02-08T18:05:56Z + + SuperTom4277 + 3477067 + + Ajouté des sources et des références. + wikitext + text/x-wiki + +{{Sans source|date=février 2021}} +{{À sourcer|date=mars 2019}} +{{voir homonymes|Beaudet}} +{{Infobox Biographie2}} +'''Raymond Beaudet''' (Québec 1950 - ) est un écrivain et un scénariste [[Québec|québécois]]<ref>[https://www.sainte-marie.ca/repertoire_culturel/raymond-beaudet sainte-marie.ca]/</ref>. Détenteur d’une maîtrise en [[philosophie]] de l’[[Université Laval]] (1975) on le retrouve successivement enseignant, syndicaliste, secrétaire particulier du Ministre des Richesses Naturelles, [[Yves Bérubé]], directeur d’école primaire et directeur d’école secondaire (Polyvalente Benoît-Vachon).Il est l’auteur de 5 romans, d’un essai, d'une biographie, d'un recueil de contes, d’une trentaine de scénarios, de plusieurs nouvelles et capsules historiques, de même que de trois pièces de théâtre. Depuis 2014, il est actif en [[twittérature]]<ref>{{Lien web |langue=fr |titre=https://twitter.com/raymondbeaudet |url=https://twitter.com/raymondbeaudet |site=Twitter |consulté le=2022-02-08}}</ref>. + +== Honneurs == +*Prix du Patrimoine (2019) Catégorie Interprétation et Diffusion<ref>{{Lien web |langue=fr |nom=iClic (www.iclic.com) |titre=Les lauréats du Prix du patrimoine de Nouvelle-Beauce sont dévoilés |url=https://www.enbeauce.com/actualites/culturel/21829/les-laureats-du-prix-du-patrimoine-de-nouvelle-beauce-sont-devoiles |site=EnBeauce.com |consulté le=2022-02-08}}</ref>. +*Prix coup de cœur du jury au Concours de twittérature du Centre de la Francophonie des Amériques 2016 +* Prix du Patrimoine (2011) Catégorie Interprétation et Diffusion<ref>{{Lien web |langue=fr |nom=iClic (www.iclic.com) |titre=Les lauréats des Prix du patrimoine 2019 MRC Nouvelle-Beauce dévoilés |url=https://www.enbeauce.com/actualites/culturel/364234/les-laureats-des-prix-du-patrimoine-2019-mrc-nouvelle-beauce-devoiles |site=EnBeauce.com |consulté le=2022-02-08}}</ref>. +* [[Prix Robert-Cliche]] ([[1988]]), ''Passeport pour la liberté''<ref>{{lien web | url=http://www.edvlb.com/prixrobertcliche/laureats.aspx | titre=Lauréats du prix Robert-Cliche | consulté le=24 juin 2011}}</ref> +* Prix Corpo-vision (1992) +* Prix Adate (1993) + +== Bibliographie == +*2021 Les lieux enchantés du Parc Taschereau, publié aux Éditions de la Roupille, 96 pages, {{ISBN|978-2-924304-45-7}}<ref>{{Lien web |langue=fr-CA |titre=Des guides accrédités pour découvrir la Beauce |url=https://www.leclaireurprogres.ca/des-guides-accredites-pour-decouvrir-la-beauce/ |site=L'Éclaireur Progrès |date=2021-03-11 |consulté le=2022-02-08}}</ref><ref>{{Lien web |langue=fr-FR |prénom=Antoine |nom=Desrosiers |titre=Journée internationale des droits des femmes: huit femmes qui ont marqué Sainte-Marie à leur façon |url=https://mabeauce.com/journee-internationale-des-droits-des-femmes-huit-femmes-qui-ont-marque-sainte-marie-a-leur-facon/ |site=Ma Beauce |date=2021-03-08 |consulté le=2022-02-08}}</ref><ref>{{Lien web |langue=en |titre=Conférence - L'écriture sa passion avec Raymond Beaudet à l'Éco-refuge du Domaine Taschereau -10$/p. - Sainte-Marie, 2021-06-29 |url=https://ca.datescloud.com/conference-lecriture-sa-passion-avec-raymond-beaudet-a-leco-sainte-marie-305685960.html |site=dates.cloud |consulté le=2022-02-08}}</ref><ref>{{Lien web |langue=fr-FR |titre=Visites guidées et groupes touristiques {{!}} Domaine Taschereau |url=http://www.domainetaschereau.com/?page_id=634 |consulté le=2022-02-08}}</ref><ref>{{Lien web |langue=fr |titre=Se connecter à Facebook |url=https://www.facebook.com/ |site=Facebook |consulté le=2022-02-08}}</ref><ref>{{Lien web |langue=fr |nom=iClic (www.iclic.com) |titre=Les Lieux enchantés du parc Taschereau : des contes qui prennent vie |url=https://www.enbeauce.com/actualites/culturel/437952/les-lieux-enchantes-du-parc-taschereau-des-contes-qui-prennent-vie |site=EnBeauce.com |consulté le=2022-02-08}}</ref>. +*2021 Normand Maurice, père de la récupération au Québec, biographie publiée aux Éditions de la Roupille, 176 pages, {{ISBN|978-2-924304-39-6}}<ref>{{Lien web |langue=fr-CA |titre=Un livre neuf pour le père de la récupération |url=http://www.beaucemedia.ca/2021/06/25/un-livre-neuf-pour-le-pere-de-la-recuperation/ |site=Beauce Média |date=2021-06-25 |consulté le=2022-02-08}}</ref><ref>{{Lien web |langue=fr |prénom=Raymond |nom=Beaudet |titre=Normand Maurice : père de la récupération au Québec par Raymond Beaudet {{!}} Biographies {{!}} Gens d'affaire {{!}} Leslibraires.ca |url=https://www.leslibraires.ca/livres/normand-maurice-pere-de-la-recuperation-raymond-beaudet-9782924304396.html |site=www.leslibraires.ca |consulté le=2022-02-08}}</ref><ref>{{Lien web |langue=fr-FR |titre=Réseau CFER » Lancement du livre sur Normand Maurice |url=https://reseaucfer.ca/nouvelles/lancement-du-livre-sur-normand-maurice/ |consulté le=2022-02-08}}</ref><ref>{{Ouvrage|langue=en|titre=Normand Maurice, père de la récupération au Québec par BEAUDET, RAYMOND|lire en ligne=http://www.renaud-bray.com/Livres_Produit.aspx?id=3353354&def=Normand+Maurice%2c+p%c3%a8re+de+la+r%c3%a9cup%c3%a9ration+au+Qu%c3%a9bec%2cBEAUDET%2c+RAYMOND%2c9782924304396&utm_campaign=partage-réseaux-sociaux&utm_medium=réseaux-sociaux&utm_source=facebook-like|consulté le=2022-02-08}}</ref>. +*2021 Le bonheur, chroniques d'une vie à la campagne, publié aux Éditions de la Roupille, 270 pages {{ISBN|978-2-924304-40-2}}<ref>{{Lien web |langue=fr |prénom=Hélène |nom=Moore |titre=Le bonheur. Chroniques d’une vie à la campagne par Raymond Beaudet, Hélène Moore {{!}} Biographies {{!}} Faits vécus/Bio divers {{!}} Leslibraires.ca |url=https://www.leslibraires.ca/livres/le-bonheur-chroniques-d-une-vie-raymond-beaudet-9782924304402.html |site=www.leslibraires.ca |consulté le=2022-02-08}}</ref><ref>{{Lien web |langue=fr-ca |prénom=Cool 103,5 |nom=FM |titre="Le bonheur" 6ième ouvrage de l'auteur Raymond Beaudet |url=https://www.coolfm.biz/nouvelle/5205--le-bonheur-6ieme-ouvrage-de-l-auteur-raymond-beaudet |site=Cool 103,5 FM |consulté le=2022-02-08}}</ref><ref>{{Lien web |langue=fr-FR |prénom=Antoine |nom=Desrosiers |titre=Un sixième ouvrage pour l'auteur Raymond Beaudet de Sainte-Marie |url=https://mabeauce.com/un-sixieme-ouvrage-pour-lauteur-raymond-beaudet-de-sainte-marie/ |site=Ma Beauce |date=2021-02-25 |consulté le=2022-02-08}}</ref><ref>{{Lien web |langue=fr-ca |prénom=Cool 103,5 |nom=FM |titre="Le bonheur" 6ième ouvrage de l'auteur Raymond Beaudet |url=https://www.coolfm.biz/nouvelle/5205--le-bonheur-6ieme-ouvrage-de-l-auteur-raymond-beaudet |site=Cool 103,5 FM |consulté le=2022-02-08}}</ref><ref>{{Lien web |langue=ne |titre=Le bonheur, par Raymond BEAUDET et Hélène MOORE |url=https://ne-np.facebook.com/laroupille/videos/531892437783096/ |consulté le=2022-02-08}}</ref><ref>{{Lien web |langue=fr |titre=L'écrivain... - Éditions La Roupille, Service d'édition |url=https://www.facebook.com/laroupille/videos/772815796737521/ |consulté le=2022-02-08}}</ref><ref>{{Lien web |langue=hi |titre=BIBLIOTHÈQUE {{!}} « Le bonheur :... - Ville de Sainte-Marie |url=https://hi-in.facebook.com/villesaintemarie/videos/128982392487598/ |consulté le=2022-02-08}}</ref><ref>{{Lien web |langue=fr-CA |titre=Trouver le bonheur à la campagne |url=http://www.beaucemedia.ca/2021/02/24/trouver-le-bonheur-a-la-campagne/ |site=Beauce Média |date=2021-02-24 |consulté le=2022-02-08}}</ref>. +*2020 En décide de vendre, nouvelle parue dans Les Écrits mariverains 2020, {{ISBN|978-2-9810768-2-3}}<ref name=":0" />. + +*2019: +** Tableaux et portraits mariverains, Capsules historiques, {{ISBN|978-2-9810768-2-3}}<ref>{{Lien web |langue=th |titre=เข้าสู่ระบบ Facebook |url=https://th-th.facebook.com/login/?next=https%3A%2F%2Fth-th.facebook.com%2Fcheqfm%2Fposts%2F3625148174272475%2F |site=Facebook |consulté le=2022-02-08}}</ref><ref>{{Lien web |langue=ms |titre=LES 1001 MÉTIERS DE LA CULTURE {{!}} M. Raymond Beaudet |url=https://ms-my.facebook.com/villesaintemarie/videos/327787105117018/ |consulté le=2022-02-08}}</ref><ref>{{Lien web |langue=fr-CA |titre=Des guides accrédités pour découvrir la Beauce |url=http://www.beaucemedia.ca/2021/03/11/des-guides-accredites-pour-decouvrir-la-beauce/ |site=Beauce Média |date=2021-03-11 |consulté le=2022-02-08}}</ref><ref>{{Lien web |langue=fr |titre=Chronique à Raymond {{!}} Mon site web |url=https://genealogiestemarie.ca/chronique-a-raymond |site=genealogiestemarie.ca |consulté le=2022-02-08}}</ref><ref>{{Lien web |langue=fr-FR |titre=Capsules historiques |url=https://www.sainte-marie.ca/loisirs-culture/programmation/275e-anniversaire-capsules-historiques/ |site=Ville de Sainte-Marie |consulté le=2022-02-08}}</ref>. +** Carnet d'un passager clandestin, nouvelle parue dans Les Écrits Mariverains 2019, {{ISBN|978-2-9810768-0-9}}<ref name=":0">{{Lien web |langue=fr-FR |titre=Écrits mariverains |url=https://www.sainte-marie.ca/loisirs-culture/ecrits-mariverains/ |site=Ville de Sainte-Marie |consulté le=2022-02-08}}</ref>. +** Voix de dépassement, scénario du spectacle de la Corporation des Instrumentistes Associés<ref name=":1">{{Lien web |langue=fr-CA |titre=La CIA célébrera son 10e anniversaire le 15 avril |url=http://www.beaucemedia.ca/2021/11/25/la-cia-celebrera-son-10e-anniversaire-le-15-avril/ |site=Beauce Média |date=2021-11-25 |consulté le=2022-02-08}}</ref>. +*2018 +** Marie-Claire et moi, nouvelle parue dans Les Écrits mariverains 2018, {{ISBN|978-2-9809683-9-6}}<ref name=":0" />. +** La dernière scène, scénario du spectacle de la Corporation des Instrumentistes Associés<ref name=":1" />. +** La boucherie, Projet personnel d'orientation, Ministère de l'Éducation et de l'Enseignement supérieur. +*2017 +** L'idée perdue, nouvelle parue dans Les Écrits mariverains 2017, {{ISBN|978-2-9809683-8-9}} +** Coups de cœur, scénario du spectacle de la Corporation des Instrumentistes Associés. +*2016 +** Prix coup de cœur du jury au Concours de twittérature du Centre de la Francophonie des Amériques 2016<ref>{{Lien web |langue=fr-CA |titre=La twittérature est victorieuse à Sainte-Marie |url=https://www.beaucemedia.ca/2016/05/20/la-twitterature-est-victorieuse-a-sainte-marie/ |site=Beauce Média |date=2016-05-20 |consulté le=2022-02-08}}</ref><ref>{{Lien web |langue=fr |nom=iClic (www.iclic.com) |titre=La twittérature s'invite au CFER de Beauce à Sainte-Marie |url=https://www.enbeauce.com/actualites/culturel/305797/la-twitterature-sinvite-au-cfer-de-beauce-a-sainte-marie |site=EnBeauce.com |consulté le=2022-02-08}}</ref>. +** Éliza Caztel de Sainte-Marie, nouvelle parue dans Les Écrits mariverains 2016, {{ISBN|978-2-9809683-7-2}}<ref name=":0" />. +** La CIA sème le trouble, scénario du spectacle de la Corporation des Instrumentistes Associés. +*2015 La photographie numérique, Projet personnel d'orientation, Ministère de l'Éducation du Loisir et du sport. +*2015 Impressions de voyage: le Chili, nouvelle parue dans Les Écrits mariverains 2015, {{ISBN|978-2-9809683-6-5}}<ref name=":0" />. +*2015 La CIA, version 5.0, scénario du spectacle de la Corporation des Instrumentistes Associés. +*2014, 26 juin, TEDx Sainte-Marie, La paternelle<ref>{{Lien web |langue=fr-FR |titre=La paternelle {{!}} Raymond Beaudet {{!}} TEDxSainteMarie |url=https://www.youtube.com/watch?v=wGqQ2FS-P-A |consulté le=2022-02-08}}</ref><ref>{{Lien web |langue=fr |nom=iClic (www.iclic.com) |titre=TEDx Sainte-Marie dévoile le nom de trois conférenciers |url=https://www.enbeauce.com/actualites/societe/125807/tedx-sainte-marie-devoile-le-nom-de-trois-conferenciers |site=EnBeauce.com |consulté le=2022-02-08}}</ref>. +*2014 Le désastreux destin d'Arlette Mallette, nouvelle parue dans Les Écrits mariverains 2014, {{ISBN|978-2-9809683-5-8}}<ref name=":0" />. +*2014 La CIA, L'espace d'une vie, scénario du spectacle de la Corporation des Instrumentistes Associés. +*2014 Carapaces, Roman publié aux Éditions Textes et Contextes, 279 pages. {{ISBN|978-2-923706-63-4}}<ref>{{Ouvrage|langue=en|titre=Carapaces par BEAUDET, RAYMOND|lire en ligne=http://www.renaud-bray.com/Livres_Produit.aspx?id=1531849&def=Carapaces%2cBEAUDET%2c+RAYMOND%2c9782923706634&utm_campaign=partage-réseaux-sociaux&utm_medium=réseaux-sociaux&utm_source=facebook-like|consulté le=2022-02-08}}</ref><ref>{{Lien web |titre=http://biblio.villemontlaurier.qc.ca/in/faces/details.xhtml?id=p%3A%3Ausmarcdef_0000064212 |url=http://biblio.villemontlaurier.qc.ca/in/faces/details.xhtml?id=p%3A%3Ausmarcdef_0000064212 |site=biblio.villemontlaurier.qc.ca |consulté le=2022-02-08}}</ref>[https://www.renaud-bray.com/Livres_Produit.aspx?id=1531849&def=Carapaces,BEAUDET,+RAYMOND,9782923706634 .] +*2013 La Politique, Projet personnel d'orientation, Ministère de l'Éducation du Loisir et du sport. +*2013 La CIA poursuit son enquête, scénario du spectacle de la Corporation des Instrumentistes Associés<ref>{{Lien web |langue=fr |nom=iClic (www.iclic.com) |titre=La CIA présente En quête de commissions à la Méchatigan |url=https://www.enbeauce.com/actualites/culturel/25305/la-cia-presente-en-quete-de-commissions-a-la-mechatigan |site=EnBeauce.com |consulté le=2022-02-08}}</ref>. +*2013 Napoléon, nouvelle parue dans Les Écrits mariverains 2013. {{ISBN|978-2-9809683-4-1}}<ref name=":0" />. +*2012 Ménage de cave, nouvelle parue dans Les Écrits mariverains, 2012. {{ISBN|978-2-980-9683-3-4}}<ref name=":0" />. +*2012 En quête de mission, scénario du spectacle de la Corporation des Instrumentistes Associés. +*2012 Finaliste dans deux concours de Zone d’écriture de Radio-Canada en twittérature. +*2011 La CIA autour du monde, scénario du spectacle de la Corporation des Instrumentistes Associés. +*2011 En deuxième vitesse, nouvelle parue dans Les Écrits mariverains 2011. {{ISBN|978-2-980-9683-1-0|}}<ref name=":0" />. +*2010 Biographie de Jeannine Rousseau et Rolland Massicotte, scénario. +*2010 Le Projet Adam et Ève, nouvelle parue dans Écrits mariverains 2010, {{ISBN|978-2-980-9683-1-0}}<ref name=":0" />. +*2009 Alexandre et Cassiopée, nouvelle parue dans Écrits mariverains 2009. +*2008 ''Dans un mois, dans un an'', Roman publié dans la collection Les mots inventifs, Les Éditions du Mécène, 576 pages. {{ISBN|978-2-923150-61-1}}<ref>{{Lien web |langue=fr-FR |titre=Raymond Beaudet |url=https://www.sainte-marie.ca/repertoire_culturel/raymond-beaudet/ |site=Ville de Sainte-Marie |consulté le=2022-02-08}}</ref>. +*2007 ''L'écriture'', Projet personnel d'orientation, Ministère de l'Éducation du Loisir et du sport. +*2005 ''29, rue des Remparts'', Roman publié dans la collection Les mots inventifs, Les éditions du Mécène, 192 pages. {{ISBN|2-923150-28-7}}<ref>{{Lien web |langue=fr-FR |titre=Raymond Beaudet |url=https://www.sainte-marie.ca/repertoire_culturel/raymond-beaudet/ |site=Ville de Sainte-Marie |consulté le=2022-02-08}}</ref>. +*2003 ''Vie 101'', Essai publié dans la collection Les mots utiles, Les Éditions du Mécène. 126 pages. {{ISBN|2-923150-03-1}} +*2002 ''Le groupe conseil fiscalis'', scénario produit pour le groupe conseil Fiscalis. +*2001 ''Lévis, ville nouvelle'', scénario de deux émissions de trente minutes pour le Comité de transition de la ville de Lévis et Canal Vox +*2001 ''L’école québécoise, ce qu’il y a de mieux pour votre enfant'', scénario produit pour le Ministère de l’éducation du Québec. +*2000 ''Le jeu en valait-il la chandelle?'' scénario produit pour le Centre québécois d’excellence pour la prévention et le traitement du jeu. (Université Laval) +*1999 ''Le hasard, Lucky, on peut rien y changer'', scénario produit pour le Centre québécois d’excellence pour la prévention et le traitement du jeu. (Université Laval) +*1999 ''Un pacte fiscal pour l’an 2000, des idées, de la solidarité'', scénario produit pour l’Union des Municipalités régionales de comté et des municipalités locales. +*1999 ''Détect-o-max et Une journée avec Détect-o-max'', deux scénarios produits pour Conception Ro-main inc. +*1999 ''Propane GRG, à l’écoute de ses clients'', scénario produit pour la firme Propane GRG inc. +*1998 ''Maître du mètre'', scénario d’un documentaire sur les 25 ans du système métrique au Québec. +*1997 ''Le temps des sucres'', scénario produit pour la firme Shady Maple Farms. +*1996 ''Le Génie de campagne'', scénario produit pour les Forces armées canadiennes. +*1996 ''La Compagnie franche de la Marine de Québec'', scénario produit pour les Forces armées canadiennes. +*1995 ''Bon séjour à l'École navale de Québec'', scénario produit pour les Forces armées canadiennes. +*1994 ''Un leadership, des services'', scénario produit pour la Fédération des commissions scolaires du Québec. +*1993 ''Les clubs de recherche d'emploi'', scénario produit pour le Ministère de l'Emploi et de l'Immigration du Canada. +*1992 ''Fiers de notre avenir'', scénario produit pour l'Assurance-Vie Desjardins. +*1992 ''Responsible Leadership'', scénario produit pour la compagnie papetière Donohue. (Prix Corpo Vision) +*1992 Scénarisation d'un ensemble de huit vidéos destinées aux écoles secondaires et aux collèges du Québec, pour la Fondation de l'entrepreneurship Québécois. (Prix Adate) +*1991 ''Guide à l'intention du nouveau personnel'', rédaction d'une brochure d'accueil pour la Commission scolaire Louis-Fréchette. +*1990 Comment ça va chez vous? scénario produit pour la Confédération des caisses Desjardins. +*1990 ''Le choc est aussi grand pour les petits.'' I et II, scénario de deux vidéos pour la Régie de l'assurance automobile du Québec. +*1990 Participation au concours de nouvelles de Radio-Canada avec ''Alexandre et Cassiopée.'' +*1989 Participation au concours de nouvelles de Radio-Canada avec ''Le mystère de la cathédrale.'' +*1989 ''La Double vie d'Antoine Gagnon, Ministre'', scénario d'un téléfilm pour Radio-Canada. +*1988 ''Passeport pour la liberté'', Les Quinze Éditeurs, Montréal. {{ISBN|2-89026-368-1}}. (Prix Robert-Cliche)<ref>{{Lien web |langue=en |titre=PASSEPORT POUR LA LIBERTE. ROMAN by RAYMOND BEAUDET: bon Couverture souple (1988) {{!}} Le-Livre |url=https://www.abebooks.com/9782864770886/PASSEPORT-LIBERTE-ROMAN-RAYMOND-BEAUDET-2864770881/plp |site=www.abebooks.com |consulté le=2022-02-08}}</ref>. +*1988 Coédition aux Éditions Jean Picollec, à Paris, du roman ''Passeport pour la liberté'', 303 pages, {{ISBN|2-86477-088-1}}<ref>{{Lien web |titre=Raymond Beaudet |url=https://www.goodreads.com/author/show/1956588.Raymond_Beaudet |site=www.goodreads.com |consulté le=2022-02-08}}</ref>. +*1987 Participation au concours de nouvelles de Radio-''Canada avec Le secret''. +*1987 Collaboration au scénario et aux dialogues de ''Vie décolle'', vidéo produite pour la Commission scolaire Abénakis (21 minutes). +*1983 Rédaction et direction de ''C'est qui ma maman à moi?'' pièce de théâtre montée par la troupe de la Polyvalente Benoît-Vachon de Sainte-Marie de Beauce. +*1982 Rédaction et direction de ''Au nom du père, de la fille et du Sain d'esprit'', pièce de théâtre montée par la troupe de la Polyvalente Benoît -Vachon de Sainte-Marie de Beauce. +*1977 Corédaction et mise en scène de la pièce ''Coup de Théâtre à Ste-Onction'' jouée par les élèves de la Polyvalente Benoît-Vachon de Sainte-Marie de Beauce + +== Références == +{{references}} +== Liens externes == +* {{Liens biographiques}} + +{{Portail|Québec|littérature}} + +{{CLEDETRI:Beaudet, Raymond}} +[[Catégorie:Écrivain québécois|Beaudet, Raymond]] +[[Catégorie:Naissance en 1950]] + ewecchmdr55xggkq0ifaa6j1wajfz74 + + + 190662400 + 190662056 + 2022-02-08T18:15:25Z + + SuperTom4277 + 3477067 + + Ajouté des sources et des références. + wikitext + text/x-wiki + +{{Sans source|date=février 2021}} +{{À sourcer|date=mars 2019}} +{{voir homonymes|Beaudet}} +{{Infobox Biographie2}} +'''Raymond Beaudet''' (Québec 1950 - ) est un écrivain et un scénariste [[Québec|québécois]]<ref>[https://www.sainte-marie.ca/repertoire_culturel/raymond-beaudet sainte-marie.ca]/</ref>. Détenteur d’une maîtrise en [[philosophie]] de l’[[Université Laval]] (1975) on le retrouve successivement enseignant, syndicaliste, secrétaire particulier du Ministre des Richesses Naturelles, [[Yves Bérubé]], directeur d’école primaire et directeur d’école secondaire (Polyvalente Benoît-Vachon).Il est l’auteur de 5 romans, d’un essai, d'une biographie, d'un recueil de contes, d’une trentaine de scénarios, de plusieurs nouvelles et capsules historiques, de même que de trois pièces de théâtre. Depuis 2014, il est actif en [[twittérature]]<ref>{{Lien web |langue=fr |titre=https://twitter.com/raymondbeaudet |url=https://twitter.com/raymondbeaudet |site=Twitter |consulté le=2022-02-08}}</ref>. + +== Honneurs == +*[https://www.prixdupatrimoine.ca Prix du Patrimoine] (2019) Catégorie Interprétation et Diffusion<ref>{{Lien web |langue=fr |nom=iClic (www.iclic.com) |titre=Les lauréats du Prix du patrimoine de Nouvelle-Beauce sont dévoilés |url=https://www.enbeauce.com/actualites/culturel/21829/les-laureats-du-prix-du-patrimoine-de-nouvelle-beauce-sont-devoiles |site=EnBeauce.com |consulté le=2022-02-08}}</ref>. +*Prix coup de cœur du jury au Concours de twittérature du [https://francophoniedesameriques.com Centre de la Francophonie des Amériques] 2016 +* [https://www.prixdupatrimoine.ca Prix du Patrimoine] (2011) Catégorie Interprétation et Diffusion<ref>{{Lien web |langue=fr |nom=iClic (www.iclic.com) |titre=Les lauréats des Prix du patrimoine 2019 MRC Nouvelle-Beauce dévoilés |url=https://www.enbeauce.com/actualites/culturel/364234/les-laureats-des-prix-du-patrimoine-2019-mrc-nouvelle-beauce-devoiles |site=EnBeauce.com |consulté le=2022-02-08}}</ref>. +* [[Prix Robert-Cliche]] ([[1988]]), ''Passeport pour la liberté''<ref>{{lien web | url=http://www.edvlb.com/prixrobertcliche/laureats.aspx | titre=Lauréats du prix Robert-Cliche | consulté le=24 juin 2011}}</ref> +* Prix Corpo-vision (1992) +* Prix Adate (1993) + +== Bibliographie == +*2021 Les lieux enchantés du Parc Taschereau, publié aux Éditions de la Roupille, 96 pages, {{ISBN|978-2-924304-45-7}}<ref>{{Lien web |langue=fr-CA |titre=Des guides accrédités pour découvrir la Beauce |url=https://www.leclaireurprogres.ca/des-guides-accredites-pour-decouvrir-la-beauce/ |site=L'Éclaireur Progrès |date=2021-03-11 |consulté le=2022-02-08}}</ref><ref>{{Lien web |langue=fr-FR |prénom=Antoine |nom=Desrosiers |titre=Journée internationale des droits des femmes: huit femmes qui ont marqué Sainte-Marie à leur façon |url=https://mabeauce.com/journee-internationale-des-droits-des-femmes-huit-femmes-qui-ont-marque-sainte-marie-a-leur-facon/ |site=Ma Beauce |date=2021-03-08 |consulté le=2022-02-08}}</ref><ref>{{Lien web |langue=en |titre=Conférence - L'écriture sa passion avec Raymond Beaudet à l'Éco-refuge du Domaine Taschereau -10$/p. - Sainte-Marie, 2021-06-29 |url=https://ca.datescloud.com/conference-lecriture-sa-passion-avec-raymond-beaudet-a-leco-sainte-marie-305685960.html |site=dates.cloud |consulté le=2022-02-08}}</ref><ref>{{Lien web |langue=fr-FR |titre=Visites guidées et groupes touristiques {{!}} Domaine Taschereau |url=http://www.domainetaschereau.com/?page_id=634 |consulté le=2022-02-08}}</ref><ref>{{Lien web |langue=fr |titre=Se connecter à Facebook |url=https://www.facebook.com/ |site=Facebook |consulté le=2022-02-08}}</ref><ref>{{Lien web |langue=fr |nom=iClic (www.iclic.com) |titre=Les Lieux enchantés du parc Taschereau : des contes qui prennent vie |url=https://www.enbeauce.com/actualites/culturel/437952/les-lieux-enchantes-du-parc-taschereau-des-contes-qui-prennent-vie |site=EnBeauce.com |consulté le=2022-02-08}}</ref>. +*2021 Normand Maurice, père de la récupération au Québec, biographie publiée aux Éditions de la Roupille, 176 pages, {{ISBN|978-2-924304-39-6}}<ref>{{Lien web |langue=fr-CA |titre=Un livre neuf pour le père de la récupération |url=http://www.beaucemedia.ca/2021/06/25/un-livre-neuf-pour-le-pere-de-la-recuperation/ |site=Beauce Média |date=2021-06-25 |consulté le=2022-02-08}}</ref><ref>{{Lien web |langue=fr |prénom=Raymond |nom=Beaudet |titre=Normand Maurice : père de la récupération au Québec par Raymond Beaudet {{!}} Biographies {{!}} Gens d'affaire {{!}} Leslibraires.ca |url=https://www.leslibraires.ca/livres/normand-maurice-pere-de-la-recuperation-raymond-beaudet-9782924304396.html |site=www.leslibraires.ca |consulté le=2022-02-08}}</ref><ref>{{Lien web |langue=fr-FR |titre=Réseau CFER » Lancement du livre sur Normand Maurice |url=https://reseaucfer.ca/nouvelles/lancement-du-livre-sur-normand-maurice/ |consulté le=2022-02-08}}</ref><ref>{{Ouvrage|langue=en|titre=Normand Maurice, père de la récupération au Québec par BEAUDET, RAYMOND|lire en ligne=http://www.renaud-bray.com/Livres_Produit.aspx?id=3353354&def=Normand+Maurice%2c+p%c3%a8re+de+la+r%c3%a9cup%c3%a9ration+au+Qu%c3%a9bec%2cBEAUDET%2c+RAYMOND%2c9782924304396&utm_campaign=partage-réseaux-sociaux&utm_medium=réseaux-sociaux&utm_source=facebook-like|consulté le=2022-02-08}}</ref>. +*2021 Le bonheur, chroniques d'une vie à la campagne, publié aux Éditions de la Roupille, 270 pages {{ISBN|978-2-924304-40-2}}<ref>{{Lien web |langue=fr |prénom=Hélène |nom=Moore |titre=Le bonheur. Chroniques d’une vie à la campagne par Raymond Beaudet, Hélène Moore {{!}} Biographies {{!}} Faits vécus/Bio divers {{!}} Leslibraires.ca |url=https://www.leslibraires.ca/livres/le-bonheur-chroniques-d-une-vie-raymond-beaudet-9782924304402.html |site=www.leslibraires.ca |consulté le=2022-02-08}}</ref><ref>{{Lien web |langue=fr-ca |prénom=Cool 103,5 |nom=FM |titre="Le bonheur" 6ième ouvrage de l'auteur Raymond Beaudet |url=https://www.coolfm.biz/nouvelle/5205--le-bonheur-6ieme-ouvrage-de-l-auteur-raymond-beaudet |site=Cool 103,5 FM |consulté le=2022-02-08}}</ref><ref>{{Lien web |langue=fr-FR |prénom=Antoine |nom=Desrosiers |titre=Un sixième ouvrage pour l'auteur Raymond Beaudet de Sainte-Marie |url=https://mabeauce.com/un-sixieme-ouvrage-pour-lauteur-raymond-beaudet-de-sainte-marie/ |site=Ma Beauce |date=2021-02-25 |consulté le=2022-02-08}}</ref><ref>{{Lien web |langue=fr-ca |prénom=Cool 103,5 |nom=FM |titre="Le bonheur" 6ième ouvrage de l'auteur Raymond Beaudet |url=https://www.coolfm.biz/nouvelle/5205--le-bonheur-6ieme-ouvrage-de-l-auteur-raymond-beaudet |site=Cool 103,5 FM |consulté le=2022-02-08}}</ref><ref>{{Lien web |langue=ne |titre=Le bonheur, par Raymond BEAUDET et Hélène MOORE |url=https://ne-np.facebook.com/laroupille/videos/531892437783096/ |consulté le=2022-02-08}}</ref><ref>{{Lien web |langue=fr |titre=L'écrivain... - Éditions La Roupille, Service d'édition |url=https://www.facebook.com/laroupille/videos/772815796737521/ |consulté le=2022-02-08}}</ref><ref>{{Lien web |langue=hi |titre=BIBLIOTHÈQUE {{!}} « Le bonheur :... - Ville de Sainte-Marie |url=https://hi-in.facebook.com/villesaintemarie/videos/128982392487598/ |consulté le=2022-02-08}}</ref><ref>{{Lien web |langue=fr-CA |titre=Trouver le bonheur à la campagne |url=http://www.beaucemedia.ca/2021/02/24/trouver-le-bonheur-a-la-campagne/ |site=Beauce Média |date=2021-02-24 |consulté le=2022-02-08}}</ref>. +*2020 En décide de vendre, nouvelle parue dans Les Écrits mariverains 2020, {{ISBN|978-2-9810768-2-3}}<ref name=":0" />. + +*2019: +** Tableaux et portraits mariverains, Capsules historiques, {{ISBN|978-2-9810768-2-3}}<ref>{{Lien web |langue=th |titre=เข้าสู่ระบบ Facebook |url=https://th-th.facebook.com/login/?next=https%3A%2F%2Fth-th.facebook.com%2Fcheqfm%2Fposts%2F3625148174272475%2F |site=Facebook |consulté le=2022-02-08}}</ref><ref>{{Lien web |langue=ms |titre=LES 1001 MÉTIERS DE LA CULTURE {{!}} M. Raymond Beaudet |url=https://ms-my.facebook.com/villesaintemarie/videos/327787105117018/ |consulté le=2022-02-08}}</ref><ref>{{Lien web |langue=fr-CA |titre=Des guides accrédités pour découvrir la Beauce |url=http://www.beaucemedia.ca/2021/03/11/des-guides-accredites-pour-decouvrir-la-beauce/ |site=Beauce Média |date=2021-03-11 |consulté le=2022-02-08}}</ref><ref>{{Lien web |langue=fr |titre=Chronique à Raymond {{!}} Mon site web |url=https://genealogiestemarie.ca/chronique-a-raymond |site=genealogiestemarie.ca |consulté le=2022-02-08}}</ref><ref>{{Lien web |langue=fr-FR |titre=Capsules historiques |url=https://www.sainte-marie.ca/loisirs-culture/programmation/275e-anniversaire-capsules-historiques/ |site=Ville de Sainte-Marie |consulté le=2022-02-08}}</ref>. +** Carnet d'un passager clandestin, nouvelle parue dans Les Écrits Mariverains 2019, {{ISBN|978-2-9810768-0-9}}<ref name=":0">{{Lien web |langue=fr-FR |titre=Écrits mariverains |url=https://www.sainte-marie.ca/loisirs-culture/ecrits-mariverains/ |site=Ville de Sainte-Marie |consulté le=2022-02-08}}</ref>. +** Voix de dépassement, scénario du spectacle de la Corporation des Instrumentistes Associés<ref name=":1">{{Lien web |langue=fr-CA |titre=La CIA célébrera son 10e anniversaire le 15 avril |url=http://www.beaucemedia.ca/2021/11/25/la-cia-celebrera-son-10e-anniversaire-le-15-avril/ |site=Beauce Média |date=2021-11-25 |consulté le=2022-02-08}}</ref>. +*2018 +** Marie-Claire et moi, nouvelle parue dans Les Écrits mariverains 2018, {{ISBN|978-2-9809683-9-6}}<ref name=":0" />. +** La dernière scène, scénario du spectacle de la Corporation des Instrumentistes Associés<ref name=":1" />. +** La boucherie, Projet personnel d'orientation, Ministère de l'Éducation et de l'Enseignement supérieur. +*2017 +** L'idée perdue, nouvelle parue dans Les Écrits mariverains 2017, {{ISBN|978-2-9809683-8-9}}<ref name=":0" />. +** Coups de cœur, scénario du spectacle de la Corporation des Instrumentistes Associés. +*2016 +** Prix coup de cœur du jury au Concours de twittérature du Centre de la Francophonie des Amériques 2016<ref>{{Lien web |langue=fr-CA |titre=La twittérature est victorieuse à Sainte-Marie |url=https://www.beaucemedia.ca/2016/05/20/la-twitterature-est-victorieuse-a-sainte-marie/ |site=Beauce Média |date=2016-05-20 |consulté le=2022-02-08}}</ref><ref>{{Lien web |langue=fr |nom=iClic (www.iclic.com) |titre=La twittérature s'invite au CFER de Beauce à Sainte-Marie |url=https://www.enbeauce.com/actualites/culturel/305797/la-twitterature-sinvite-au-cfer-de-beauce-a-sainte-marie |site=EnBeauce.com |consulté le=2022-02-08}}</ref>. +** Éliza Caztel de Sainte-Marie, nouvelle parue dans Les Écrits mariverains 2016, {{ISBN|978-2-9809683-7-2}}<ref name=":0" />. +** La CIA sème le trouble, scénario du spectacle de la Corporation des Instrumentistes Associés. +*2015 La photographie numérique, Projet personnel d'orientation, Ministère de l'Éducation du Loisir et du sport. +*2015 Impressions de voyage: le Chili, nouvelle parue dans Les Écrits mariverains 2015, {{ISBN|978-2-9809683-6-5}}<ref name=":0" />. +*2015 La CIA, version 5.0, scénario du spectacle de la Corporation des Instrumentistes Associés. +*2014, 26 juin, TEDx Sainte-Marie, La paternelle<ref>{{Lien web |langue=fr-FR |titre=La paternelle {{!}} Raymond Beaudet {{!}} TEDxSainteMarie |url=https://www.youtube.com/watch?v=wGqQ2FS-P-A |consulté le=2022-02-08}}</ref><ref>{{Lien web |langue=fr |nom=iClic (www.iclic.com) |titre=TEDx Sainte-Marie dévoile le nom de trois conférenciers |url=https://www.enbeauce.com/actualites/societe/125807/tedx-sainte-marie-devoile-le-nom-de-trois-conferenciers |site=EnBeauce.com |consulté le=2022-02-08}}</ref>. +*2014 Le désastreux destin d'Arlette Mallette, nouvelle parue dans Les Écrits mariverains 2014, {{ISBN|978-2-9809683-5-8}}<ref name=":0" />. +*2014 La CIA, L'espace d'une vie, scénario du spectacle de la Corporation des Instrumentistes Associés. +*2014 Carapaces, Roman publié aux Éditions Textes et Contextes, 279 pages. {{ISBN|978-2-923706-63-4}}<ref>{{Ouvrage|langue=en|titre=Carapaces par BEAUDET, RAYMOND|lire en ligne=http://www.renaud-bray.com/Livres_Produit.aspx?id=1531849&def=Carapaces%2cBEAUDET%2c+RAYMOND%2c9782923706634&utm_campaign=partage-réseaux-sociaux&utm_medium=réseaux-sociaux&utm_source=facebook-like|consulté le=2022-02-08}}</ref><ref>{{Lien web |titre=http://biblio.villemontlaurier.qc.ca/in/faces/details.xhtml?id=p%3A%3Ausmarcdef_0000064212 |url=http://biblio.villemontlaurier.qc.ca/in/faces/details.xhtml?id=p%3A%3Ausmarcdef_0000064212 |site=biblio.villemontlaurier.qc.ca |consulté le=2022-02-08}}</ref>[https://www.renaud-bray.com/Livres_Produit.aspx?id=1531849&def=Carapaces,BEAUDET,+RAYMOND,9782923706634 .] +*2013 La Politique, Projet personnel d'orientation, Ministère de l'Éducation du Loisir et du sport. +*2013 La CIA poursuit son enquête, scénario du spectacle de la Corporation des Instrumentistes Associés<ref>{{Lien web |langue=fr |nom=iClic (www.iclic.com) |titre=La CIA présente En quête de commissions à la Méchatigan |url=https://www.enbeauce.com/actualites/culturel/25305/la-cia-presente-en-quete-de-commissions-a-la-mechatigan |site=EnBeauce.com |consulté le=2022-02-08}}</ref>. +*2013 Napoléon, nouvelle parue dans Les Écrits mariverains 2013. {{ISBN|978-2-9809683-4-1}}<ref name=":0" />. +*2012 Ménage de cave, nouvelle parue dans Les Écrits mariverains, 2012. {{ISBN|978-2-980-9683-3-4}}<ref name=":0" />. +*2012 En quête de mission, scénario du spectacle de la Corporation des Instrumentistes Associés. +*2012 Finaliste dans deux concours de Zone d’écriture de [[Société Radio-Canada|Radio-Canada]] en twittérature. +*2011 La CIA autour du monde, scénario du spectacle de la Corporation des Instrumentistes Associés. +*2011 En deuxième vitesse, nouvelle parue dans Les Écrits mariverains 2011. {{ISBN|978-2-980-9683-1-0|}}<ref name=":0" />. +*2010 Biographie de Jeannine Rousseau et Rolland Massicotte, scénario. Ocus Pocus Production. +*2010 Le Projet Adam et Ève, nouvelle parue dans Écrits mariverains 2010, {{ISBN|978-2-980-9683-1-0}}<ref name=":0" />. +*2009 Alexandre et Cassiopée, nouvelle parue dans Écrits mariverains 2009<ref name=":0" />. +*2008 ''Dans un mois, dans un an'', Roman publié dans la collection Les mots inventifs, Les Éditions du Mécène, 576 pages. {{ISBN|978-2-923150-61-1}}<ref>{{Lien web |langue=fr-FR |titre=Raymond Beaudet |url=https://www.sainte-marie.ca/repertoire_culturel/raymond-beaudet/ |site=Ville de Sainte-Marie |consulté le=2022-02-08}}</ref>. +*2007 ''L'écriture'', Projet personnel d'orientation, Ministère de l'Éducation du Loisir et du sport. +*2005 ''29, rue des Remparts'', Roman publié dans la collection Les mots inventifs, Les éditions du Mécène, 192 pages. {{ISBN|2-923150-28-7}}<ref>{{Lien web |langue=fr-FR |titre=Raymond Beaudet |url=https://www.sainte-marie.ca/repertoire_culturel/raymond-beaudet/ |site=Ville de Sainte-Marie |consulté le=2022-02-08}}</ref>. +*2003 ''Vie 101'', Essai publié dans la collection Les mots utiles, Les Éditions du Mécène. 126 pages. {{ISBN|2-923150-03-1}} +*2002 ''Le groupe conseil fiscalis'', scénario produit pour le groupe conseil Fiscalis. +*2001 ''Lévis, ville nouvelle'', scénario de deux émissions de trente minutes pour le Comité de transition de la ville de Lévis et Canal Vox +*2001 ''L’école québécoise, ce qu’il y a de mieux pour votre enfant'', scénario produit pour le Ministère de l’éducation du Québec. +*2000 ''Le jeu en valait-il la chandelle?'' scénario produit pour le Centre québécois d’excellence pour la prévention et le traitement du jeu. (Université Laval) +*1999 ''Le hasard, Lucky, on peut rien y changer'', scénario produit pour le Centre québécois d’excellence pour la prévention et le traitement du jeu. (Université Laval) +*1999 ''Un pacte fiscal pour l’an 2000, des idées, de la solidarité'', scénario produit pour l’Union des Municipalités régionales de comté et des municipalités locales. +*1999 ''Détect-o-max et Une journée avec Détect-o-max'', deux scénarios produits pour Conception Ro-main inc. +*1999 ''Propane GRG, à l’écoute de ses clients'', scénario produit pour la firme Propane GRG inc. +*1998 ''Maître du mètre'', scénario d’un documentaire sur les 25 ans du système métrique au Québec. +*1997 ''Le temps des sucres'', scénario produit pour la firme Shady Maple Farms. +*1996 ''Le Génie de campagne'', scénario produit pour les Forces armées canadiennes. +*1996 ''La Compagnie franche de la Marine de Québec'', scénario produit pour les Forces armées canadiennes. +*1995 ''Bon séjour à l'École navale de Québec'', scénario produit pour les Forces armées canadiennes. +*1994 ''Un leadership, des services'', scénario produit pour la Fédération des commissions scolaires du Québec. +*1993 ''Les clubs de recherche d'emploi'', scénario produit pour le Ministère de l'Emploi et de l'Immigration du Canada. +*1992 ''Fiers de notre avenir'', scénario produit pour l'Assurance-Vie Desjardins. +*1992 ''Responsible Leadership'', scénario produit pour la compagnie papetière Donohue. (Prix Corpo Vision) +*1992 Scénarisation d'un ensemble de huit vidéos destinées aux écoles secondaires et aux collèges du Québec, pour la Fondation de l'entrepreneurship Québécois. (Prix Adate) +*1991 ''Guide à l'intention du nouveau personnel'', rédaction d'une brochure d'accueil pour la Commission scolaire Louis-Fréchette. +*1990 Comment ça va chez vous? scénario produit pour la Confédération des caisses Desjardins. +*1990 ''Le choc est aussi grand pour les petits.'' I et II, scénario de deux vidéos pour la Régie de l'assurance automobile du Québec. +*1990 Participation au concours de nouvelles de Radio-Canada avec ''Alexandre et Cassiopée.'' +*1989 Participation au concours de nouvelles de Radio-Canada avec ''Le mystère de la cathédrale.'' +*1989 ''La Double vie d'Antoine Gagnon, Ministre'', scénario d'un téléfilm pour Radio-Canada. +*1988 ''Passeport pour la liberté'', Les Quinze Éditeurs, Montréal. {{ISBN|2-89026-368-1}}. (Prix Robert-Cliche)<ref>{{Lien web |langue=en |titre=PASSEPORT POUR LA LIBERTE. ROMAN by RAYMOND BEAUDET: bon Couverture souple (1988) {{!}} Le-Livre |url=https://www.abebooks.com/9782864770886/PASSEPORT-LIBERTE-ROMAN-RAYMOND-BEAUDET-2864770881/plp |site=www.abebooks.com |consulté le=2022-02-08}}</ref>. +*1988 Coédition aux Éditions Jean Picollec, à Paris, du roman ''Passeport pour la liberté'', 303 pages, {{ISBN|2-86477-088-1}}<ref>{{Lien web |titre=Raymond Beaudet |url=https://www.goodreads.com/author/show/1956588.Raymond_Beaudet |site=www.goodreads.com |consulté le=2022-02-08}}</ref>. +*1987 Participation au concours de nouvelles de Radio-''Canada avec Le secret''. +*1987 Collaboration au scénario et aux dialogues de ''Vie décolle'', vidéo produite pour la Commission scolaire Abénakis (21 minutes). +*1983 Rédaction et direction de ''C'est qui ma maman à moi?'' pièce de théâtre montée par la troupe de la Polyvalente Benoît-Vachon de Sainte-Marie de Beauce. +*1982 Rédaction et direction de ''Au nom du père, de la fille et du Sain d'esprit'', pièce de théâtre montée par la troupe de la Polyvalente Benoît -Vachon de Sainte-Marie de Beauce. +*1977 Corédaction et mise en scène de la pièce ''Coup de Théâtre à Ste-Onction'' jouée par les élèves de la Polyvalente Benoît-Vachon de Sainte-Marie de Beauce + +== Références == +{{references}} +== Liens externes == +* {{Liens biographiques}} + +{{Portail|Québec|littérature}} + +{{CLEDETRI:Beaudet, Raymond}} +[[Catégorie:Écrivain québécois|Beaudet, Raymond]] +[[Catégorie:Naissance en 1950]] + cihw7am9pms2hc9pjc8uha78k3ooioo + + + 190663859 + 190662400 + 2022-02-08T19:08:39Z + + RobokoBot + 2090299 + + + Ajout d’une [[Modèle:,|virgule]] entre plusieurs références. + wikitext + text/x-wiki + +{{Sans source|date=février 2021}} +{{À sourcer|date=mars 2019}} +{{voir homonymes|Beaudet}} +{{Infobox Biographie2}} +'''Raymond Beaudet''' (Québec 1950 - ) est un écrivain et un scénariste [[Québec|québécois]]<ref>[https://www.sainte-marie.ca/repertoire_culturel/raymond-beaudet sainte-marie.ca]/</ref>. Détenteur d’une maîtrise en [[philosophie]] de l’[[Université Laval]] (1975) on le retrouve successivement enseignant, syndicaliste, secrétaire particulier du Ministre des Richesses Naturelles, [[Yves Bérubé]], directeur d’école primaire et directeur d’école secondaire (Polyvalente Benoît-Vachon).Il est l’auteur de 5 romans, d’un essai, d'une biographie, d'un recueil de contes, d’une trentaine de scénarios, de plusieurs nouvelles et capsules historiques, de même que de trois pièces de théâtre. Depuis 2014, il est actif en [[twittérature]]<ref>{{Lien web |langue=fr |titre=https://twitter.com/raymondbeaudet |url=https://twitter.com/raymondbeaudet |site=Twitter |consulté le=2022-02-08}}</ref>. + +== Honneurs == +*[https://www.prixdupatrimoine.ca Prix du Patrimoine] (2019) Catégorie Interprétation et Diffusion<ref>{{Lien web |langue=fr |nom=iClic (www.iclic.com) |titre=Les lauréats du Prix du patrimoine de Nouvelle-Beauce sont dévoilés |url=https://www.enbeauce.com/actualites/culturel/21829/les-laureats-du-prix-du-patrimoine-de-nouvelle-beauce-sont-devoiles |site=EnBeauce.com |consulté le=2022-02-08}}</ref>. +*Prix coup de cœur du jury au Concours de twittérature du [https://francophoniedesameriques.com Centre de la Francophonie des Amériques] 2016 +* [https://www.prixdupatrimoine.ca Prix du Patrimoine] (2011) Catégorie Interprétation et Diffusion<ref>{{Lien web |langue=fr |nom=iClic (www.iclic.com) |titre=Les lauréats des Prix du patrimoine 2019 MRC Nouvelle-Beauce dévoilés |url=https://www.enbeauce.com/actualites/culturel/364234/les-laureats-des-prix-du-patrimoine-2019-mrc-nouvelle-beauce-devoiles |site=EnBeauce.com |consulté le=2022-02-08}}</ref>. +* [[Prix Robert-Cliche]] ([[1988]]), ''Passeport pour la liberté''<ref>{{lien web | url=http://www.edvlb.com/prixrobertcliche/laureats.aspx | titre=Lauréats du prix Robert-Cliche | consulté le=24 juin 2011}}</ref> +* Prix Corpo-vision (1992) +* Prix Adate (1993) + +== Bibliographie == +*2021 Les lieux enchantés du Parc Taschereau, publié aux Éditions de la Roupille, 96 pages, {{ISBN|978-2-924304-45-7}}<ref>{{Lien web |langue=fr-CA |titre=Des guides accrédités pour découvrir la Beauce |url=https://www.leclaireurprogres.ca/des-guides-accredites-pour-decouvrir-la-beauce/ |site=L'Éclaireur Progrès |date=2021-03-11 |consulté le=2022-02-08}}</ref>{{,}}<ref>{{Lien web |langue=fr-FR |prénom=Antoine |nom=Desrosiers |titre=Journée internationale des droits des femmes: huit femmes qui ont marqué Sainte-Marie à leur façon |url=https://mabeauce.com/journee-internationale-des-droits-des-femmes-huit-femmes-qui-ont-marque-sainte-marie-a-leur-facon/ |site=Ma Beauce |date=2021-03-08 |consulté le=2022-02-08}}</ref>{{,}}<ref>{{Lien web |langue=en |titre=Conférence - L'écriture sa passion avec Raymond Beaudet à l'Éco-refuge du Domaine Taschereau -10$/p. - Sainte-Marie, 2021-06-29 |url=https://ca.datescloud.com/conference-lecriture-sa-passion-avec-raymond-beaudet-a-leco-sainte-marie-305685960.html |site=dates.cloud |consulté le=2022-02-08}}</ref>{{,}}<ref>{{Lien web |langue=fr-FR |titre=Visites guidées et groupes touristiques {{!}} Domaine Taschereau |url=http://www.domainetaschereau.com/?page_id=634 |consulté le=2022-02-08}}</ref>{{,}}<ref>{{Lien web |langue=fr |titre=Se connecter à Facebook |url=https://www.facebook.com/ |site=Facebook |consulté le=2022-02-08}}</ref>{{,}}<ref>{{Lien web |langue=fr |nom=iClic (www.iclic.com) |titre=Les Lieux enchantés du parc Taschereau : des contes qui prennent vie |url=https://www.enbeauce.com/actualites/culturel/437952/les-lieux-enchantes-du-parc-taschereau-des-contes-qui-prennent-vie |site=EnBeauce.com |consulté le=2022-02-08}}</ref>. +*2021 Normand Maurice, père de la récupération au Québec, biographie publiée aux Éditions de la Roupille, 176 pages, {{ISBN|978-2-924304-39-6}}<ref>{{Lien web |langue=fr-CA |titre=Un livre neuf pour le père de la récupération |url=http://www.beaucemedia.ca/2021/06/25/un-livre-neuf-pour-le-pere-de-la-recuperation/ |site=Beauce Média |date=2021-06-25 |consulté le=2022-02-08}}</ref>{{,}}<ref>{{Lien web |langue=fr |prénom=Raymond |nom=Beaudet |titre=Normand Maurice : père de la récupération au Québec par Raymond Beaudet {{!}} Biographies {{!}} Gens d'affaire {{!}} Leslibraires.ca |url=https://www.leslibraires.ca/livres/normand-maurice-pere-de-la-recuperation-raymond-beaudet-9782924304396.html |site=www.leslibraires.ca |consulté le=2022-02-08}}</ref>{{,}}<ref>{{Lien web |langue=fr-FR |titre=Réseau CFER » Lancement du livre sur Normand Maurice |url=https://reseaucfer.ca/nouvelles/lancement-du-livre-sur-normand-maurice/ |consulté le=2022-02-08}}</ref>{{,}}<ref>{{Ouvrage|langue=en|titre=Normand Maurice, père de la récupération au Québec par BEAUDET, RAYMOND|lire en ligne=http://www.renaud-bray.com/Livres_Produit.aspx?id=3353354&def=Normand+Maurice%2c+p%c3%a8re+de+la+r%c3%a9cup%c3%a9ration+au+Qu%c3%a9bec%2cBEAUDET%2c+RAYMOND%2c9782924304396&utm_campaign=partage-réseaux-sociaux&utm_medium=réseaux-sociaux&utm_source=facebook-like|consulté le=2022-02-08}}</ref>. +*2021 Le bonheur, chroniques d'une vie à la campagne, publié aux Éditions de la Roupille, 270 pages {{ISBN|978-2-924304-40-2}}<ref>{{Lien web |langue=fr |prénom=Hélène |nom=Moore |titre=Le bonheur. Chroniques d’une vie à la campagne par Raymond Beaudet, Hélène Moore {{!}} Biographies {{!}} Faits vécus/Bio divers {{!}} Leslibraires.ca |url=https://www.leslibraires.ca/livres/le-bonheur-chroniques-d-une-vie-raymond-beaudet-9782924304402.html |site=www.leslibraires.ca |consulté le=2022-02-08}}</ref>{{,}}<ref>{{Lien web |langue=fr-ca |prénom=Cool 103,5 |nom=FM |titre="Le bonheur" 6ième ouvrage de l'auteur Raymond Beaudet |url=https://www.coolfm.biz/nouvelle/5205--le-bonheur-6ieme-ouvrage-de-l-auteur-raymond-beaudet |site=Cool 103,5 FM |consulté le=2022-02-08}}</ref>{{,}}<ref>{{Lien web |langue=fr-FR |prénom=Antoine |nom=Desrosiers |titre=Un sixième ouvrage pour l'auteur Raymond Beaudet de Sainte-Marie |url=https://mabeauce.com/un-sixieme-ouvrage-pour-lauteur-raymond-beaudet-de-sainte-marie/ |site=Ma Beauce |date=2021-02-25 |consulté le=2022-02-08}}</ref>{{,}}<ref>{{Lien web |langue=fr-ca |prénom=Cool 103,5 |nom=FM |titre="Le bonheur" 6ième ouvrage de l'auteur Raymond Beaudet |url=https://www.coolfm.biz/nouvelle/5205--le-bonheur-6ieme-ouvrage-de-l-auteur-raymond-beaudet |site=Cool 103,5 FM |consulté le=2022-02-08}}</ref>{{,}}<ref>{{Lien web |langue=ne |titre=Le bonheur, par Raymond BEAUDET et Hélène MOORE |url=https://ne-np.facebook.com/laroupille/videos/531892437783096/ |consulté le=2022-02-08}}</ref>{{,}}<ref>{{Lien web |langue=fr |titre=L'écrivain... - Éditions La Roupille, Service d'édition |url=https://www.facebook.com/laroupille/videos/772815796737521/ |consulté le=2022-02-08}}</ref>{{,}}<ref>{{Lien web |langue=hi |titre=BIBLIOTHÈQUE {{!}} « Le bonheur :... - Ville de Sainte-Marie |url=https://hi-in.facebook.com/villesaintemarie/videos/128982392487598/ |consulté le=2022-02-08}}</ref>{{,}}<ref>{{Lien web |langue=fr-CA |titre=Trouver le bonheur à la campagne |url=http://www.beaucemedia.ca/2021/02/24/trouver-le-bonheur-a-la-campagne/ |site=Beauce Média |date=2021-02-24 |consulté le=2022-02-08}}</ref>. +*2020 En décide de vendre, nouvelle parue dans Les Écrits mariverains 2020, {{ISBN|978-2-9810768-2-3}}<ref name=":0" />. + +*2019: +** Tableaux et portraits mariverains, Capsules historiques, {{ISBN|978-2-9810768-2-3}}<ref>{{Lien web |langue=th |titre=เข้าสู่ระบบ Facebook |url=https://th-th.facebook.com/login/?next=https%3A%2F%2Fth-th.facebook.com%2Fcheqfm%2Fposts%2F3625148174272475%2F |site=Facebook |consulté le=2022-02-08}}</ref>{{,}}<ref>{{Lien web |langue=ms |titre=LES 1001 MÉTIERS DE LA CULTURE {{!}} M. Raymond Beaudet |url=https://ms-my.facebook.com/villesaintemarie/videos/327787105117018/ |consulté le=2022-02-08}}</ref>{{,}}<ref>{{Lien web |langue=fr-CA |titre=Des guides accrédités pour découvrir la Beauce |url=http://www.beaucemedia.ca/2021/03/11/des-guides-accredites-pour-decouvrir-la-beauce/ |site=Beauce Média |date=2021-03-11 |consulté le=2022-02-08}}</ref>{{,}}<ref>{{Lien web |langue=fr |titre=Chronique à Raymond {{!}} Mon site web |url=https://genealogiestemarie.ca/chronique-a-raymond |site=genealogiestemarie.ca |consulté le=2022-02-08}}</ref>{{,}}<ref>{{Lien web |langue=fr-FR |titre=Capsules historiques |url=https://www.sainte-marie.ca/loisirs-culture/programmation/275e-anniversaire-capsules-historiques/ |site=Ville de Sainte-Marie |consulté le=2022-02-08}}</ref>. +** Carnet d'un passager clandestin, nouvelle parue dans Les Écrits Mariverains 2019, {{ISBN|978-2-9810768-0-9}}<ref name=":0">{{Lien web |langue=fr-FR |titre=Écrits mariverains |url=https://www.sainte-marie.ca/loisirs-culture/ecrits-mariverains/ |site=Ville de Sainte-Marie |consulté le=2022-02-08}}</ref>. +** Voix de dépassement, scénario du spectacle de la Corporation des Instrumentistes Associés<ref name=":1">{{Lien web |langue=fr-CA |titre=La CIA célébrera son 10e anniversaire le 15 avril |url=http://www.beaucemedia.ca/2021/11/25/la-cia-celebrera-son-10e-anniversaire-le-15-avril/ |site=Beauce Média |date=2021-11-25 |consulté le=2022-02-08}}</ref>. +*2018 +** Marie-Claire et moi, nouvelle parue dans Les Écrits mariverains 2018, {{ISBN|978-2-9809683-9-6}}<ref name=":0" />. +** La dernière scène, scénario du spectacle de la Corporation des Instrumentistes Associés<ref name=":1" />. +** La boucherie, Projet personnel d'orientation, Ministère de l'Éducation et de l'Enseignement supérieur. +*2017 +** L'idée perdue, nouvelle parue dans Les Écrits mariverains 2017, {{ISBN|978-2-9809683-8-9}}<ref name=":0" />. +** Coups de cœur, scénario du spectacle de la Corporation des Instrumentistes Associés. +*2016 +** Prix coup de cœur du jury au Concours de twittérature du Centre de la Francophonie des Amériques 2016<ref>{{Lien web |langue=fr-CA |titre=La twittérature est victorieuse à Sainte-Marie |url=https://www.beaucemedia.ca/2016/05/20/la-twitterature-est-victorieuse-a-sainte-marie/ |site=Beauce Média |date=2016-05-20 |consulté le=2022-02-08}}</ref>{{,}}<ref>{{Lien web |langue=fr |nom=iClic (www.iclic.com) |titre=La twittérature s'invite au CFER de Beauce à Sainte-Marie |url=https://www.enbeauce.com/actualites/culturel/305797/la-twitterature-sinvite-au-cfer-de-beauce-a-sainte-marie |site=EnBeauce.com |consulté le=2022-02-08}}</ref>. +** Éliza Caztel de Sainte-Marie, nouvelle parue dans Les Écrits mariverains 2016, {{ISBN|978-2-9809683-7-2}}<ref name=":0" />. +** La CIA sème le trouble, scénario du spectacle de la Corporation des Instrumentistes Associés. +*2015 La photographie numérique, Projet personnel d'orientation, Ministère de l'Éducation du Loisir et du sport. +*2015 Impressions de voyage: le Chili, nouvelle parue dans Les Écrits mariverains 2015, {{ISBN|978-2-9809683-6-5}}<ref name=":0" />. +*2015 La CIA, version 5.0, scénario du spectacle de la Corporation des Instrumentistes Associés. +*2014, 26 juin, TEDx Sainte-Marie, La paternelle<ref>{{Lien web |langue=fr-FR |titre=La paternelle {{!}} Raymond Beaudet {{!}} TEDxSainteMarie |url=https://www.youtube.com/watch?v=wGqQ2FS-P-A |consulté le=2022-02-08}}</ref>{{,}}<ref>{{Lien web |langue=fr |nom=iClic (www.iclic.com) |titre=TEDx Sainte-Marie dévoile le nom de trois conférenciers |url=https://www.enbeauce.com/actualites/societe/125807/tedx-sainte-marie-devoile-le-nom-de-trois-conferenciers |site=EnBeauce.com |consulté le=2022-02-08}}</ref>. +*2014 Le désastreux destin d'Arlette Mallette, nouvelle parue dans Les Écrits mariverains 2014, {{ISBN|978-2-9809683-5-8}}<ref name=":0" />. +*2014 La CIA, L'espace d'une vie, scénario du spectacle de la Corporation des Instrumentistes Associés. +*2014 Carapaces, Roman publié aux Éditions Textes et Contextes, 279 pages. {{ISBN|978-2-923706-63-4}}<ref>{{Ouvrage|langue=en|titre=Carapaces par BEAUDET, RAYMOND|lire en ligne=http://www.renaud-bray.com/Livres_Produit.aspx?id=1531849&def=Carapaces%2cBEAUDET%2c+RAYMOND%2c9782923706634&utm_campaign=partage-réseaux-sociaux&utm_medium=réseaux-sociaux&utm_source=facebook-like|consulté le=2022-02-08}}</ref>{{,}}<ref>{{Lien web |titre=http://biblio.villemontlaurier.qc.ca/in/faces/details.xhtml?id=p%3A%3Ausmarcdef_0000064212 |url=http://biblio.villemontlaurier.qc.ca/in/faces/details.xhtml?id=p%3A%3Ausmarcdef_0000064212 |site=biblio.villemontlaurier.qc.ca |consulté le=2022-02-08}}</ref>[https://www.renaud-bray.com/Livres_Produit.aspx?id=1531849&def=Carapaces,BEAUDET,+RAYMOND,9782923706634 .] +*2013 La Politique, Projet personnel d'orientation, Ministère de l'Éducation du Loisir et du sport. +*2013 La CIA poursuit son enquête, scénario du spectacle de la Corporation des Instrumentistes Associés<ref>{{Lien web |langue=fr |nom=iClic (www.iclic.com) |titre=La CIA présente En quête de commissions à la Méchatigan |url=https://www.enbeauce.com/actualites/culturel/25305/la-cia-presente-en-quete-de-commissions-a-la-mechatigan |site=EnBeauce.com |consulté le=2022-02-08}}</ref>. +*2013 Napoléon, nouvelle parue dans Les Écrits mariverains 2013. {{ISBN|978-2-9809683-4-1}}<ref name=":0" />. +*2012 Ménage de cave, nouvelle parue dans Les Écrits mariverains, 2012. {{ISBN|978-2-980-9683-3-4}}<ref name=":0" />. +*2012 En quête de mission, scénario du spectacle de la Corporation des Instrumentistes Associés. +*2012 Finaliste dans deux concours de Zone d’écriture de [[Société Radio-Canada|Radio-Canada]] en twittérature. +*2011 La CIA autour du monde, scénario du spectacle de la Corporation des Instrumentistes Associés. +*2011 En deuxième vitesse, nouvelle parue dans Les Écrits mariverains 2011. {{ISBN|978-2-980-9683-1-0|}}<ref name=":0" />. +*2010 Biographie de Jeannine Rousseau et Rolland Massicotte, scénario. Ocus Pocus Production. +*2010 Le Projet Adam et Ève, nouvelle parue dans Écrits mariverains 2010, {{ISBN|978-2-980-9683-1-0}}<ref name=":0" />. +*2009 Alexandre et Cassiopée, nouvelle parue dans Écrits mariverains 2009<ref name=":0" />. +*2008 ''Dans un mois, dans un an'', Roman publié dans la collection Les mots inventifs, Les Éditions du Mécène, 576 pages. {{ISBN|978-2-923150-61-1}}<ref>{{Lien web |langue=fr-FR |titre=Raymond Beaudet |url=https://www.sainte-marie.ca/repertoire_culturel/raymond-beaudet/ |site=Ville de Sainte-Marie |consulté le=2022-02-08}}</ref>. +*2007 ''L'écriture'', Projet personnel d'orientation, Ministère de l'Éducation du Loisir et du sport. +*2005 ''29, rue des Remparts'', Roman publié dans la collection Les mots inventifs, Les éditions du Mécène, 192 pages. {{ISBN|2-923150-28-7}}<ref>{{Lien web |langue=fr-FR |titre=Raymond Beaudet |url=https://www.sainte-marie.ca/repertoire_culturel/raymond-beaudet/ |site=Ville de Sainte-Marie |consulté le=2022-02-08}}</ref>. +*2003 ''Vie 101'', Essai publié dans la collection Les mots utiles, Les Éditions du Mécène. 126 pages. {{ISBN|2-923150-03-1}} +*2002 ''Le groupe conseil fiscalis'', scénario produit pour le groupe conseil Fiscalis. +*2001 ''Lévis, ville nouvelle'', scénario de deux émissions de trente minutes pour le Comité de transition de la ville de Lévis et Canal Vox +*2001 ''L’école québécoise, ce qu’il y a de mieux pour votre enfant'', scénario produit pour le Ministère de l’éducation du Québec. +*2000 ''Le jeu en valait-il la chandelle?'' scénario produit pour le Centre québécois d’excellence pour la prévention et le traitement du jeu. (Université Laval) +*1999 ''Le hasard, Lucky, on peut rien y changer'', scénario produit pour le Centre québécois d’excellence pour la prévention et le traitement du jeu. (Université Laval) +*1999 ''Un pacte fiscal pour l’an 2000, des idées, de la solidarité'', scénario produit pour l’Union des Municipalités régionales de comté et des municipalités locales. +*1999 ''Détect-o-max et Une journée avec Détect-o-max'', deux scénarios produits pour Conception Ro-main inc. +*1999 ''Propane GRG, à l’écoute de ses clients'', scénario produit pour la firme Propane GRG inc. +*1998 ''Maître du mètre'', scénario d’un documentaire sur les 25 ans du système métrique au Québec. +*1997 ''Le temps des sucres'', scénario produit pour la firme Shady Maple Farms. +*1996 ''Le Génie de campagne'', scénario produit pour les Forces armées canadiennes. +*1996 ''La Compagnie franche de la Marine de Québec'', scénario produit pour les Forces armées canadiennes. +*1995 ''Bon séjour à l'École navale de Québec'', scénario produit pour les Forces armées canadiennes. +*1994 ''Un leadership, des services'', scénario produit pour la Fédération des commissions scolaires du Québec. +*1993 ''Les clubs de recherche d'emploi'', scénario produit pour le Ministère de l'Emploi et de l'Immigration du Canada. +*1992 ''Fiers de notre avenir'', scénario produit pour l'Assurance-Vie Desjardins. +*1992 ''Responsible Leadership'', scénario produit pour la compagnie papetière Donohue. (Prix Corpo Vision) +*1992 Scénarisation d'un ensemble de huit vidéos destinées aux écoles secondaires et aux collèges du Québec, pour la Fondation de l'entrepreneurship Québécois. (Prix Adate) +*1991 ''Guide à l'intention du nouveau personnel'', rédaction d'une brochure d'accueil pour la Commission scolaire Louis-Fréchette. +*1990 Comment ça va chez vous? scénario produit pour la Confédération des caisses Desjardins. +*1990 ''Le choc est aussi grand pour les petits.'' I et II, scénario de deux vidéos pour la Régie de l'assurance automobile du Québec. +*1990 Participation au concours de nouvelles de Radio-Canada avec ''Alexandre et Cassiopée.'' +*1989 Participation au concours de nouvelles de Radio-Canada avec ''Le mystère de la cathédrale.'' +*1989 ''La Double vie d'Antoine Gagnon, Ministre'', scénario d'un téléfilm pour Radio-Canada. +*1988 ''Passeport pour la liberté'', Les Quinze Éditeurs, Montréal. {{ISBN|2-89026-368-1}}. (Prix Robert-Cliche)<ref>{{Lien web |langue=en |titre=PASSEPORT POUR LA LIBERTE. ROMAN by RAYMOND BEAUDET: bon Couverture souple (1988) {{!}} Le-Livre |url=https://www.abebooks.com/9782864770886/PASSEPORT-LIBERTE-ROMAN-RAYMOND-BEAUDET-2864770881/plp |site=www.abebooks.com |consulté le=2022-02-08}}</ref>. +*1988 Coédition aux Éditions Jean Picollec, à Paris, du roman ''Passeport pour la liberté'', 303 pages, {{ISBN|2-86477-088-1}}<ref>{{Lien web |titre=Raymond Beaudet |url=https://www.goodreads.com/author/show/1956588.Raymond_Beaudet |site=www.goodreads.com |consulté le=2022-02-08}}</ref>. +*1987 Participation au concours de nouvelles de Radio-''Canada avec Le secret''. +*1987 Collaboration au scénario et aux dialogues de ''Vie décolle'', vidéo produite pour la Commission scolaire Abénakis (21 minutes). +*1983 Rédaction et direction de ''C'est qui ma maman à moi?'' pièce de théâtre montée par la troupe de la Polyvalente Benoît-Vachon de Sainte-Marie de Beauce. +*1982 Rédaction et direction de ''Au nom du père, de la fille et du Sain d'esprit'', pièce de théâtre montée par la troupe de la Polyvalente Benoît -Vachon de Sainte-Marie de Beauce. +*1977 Corédaction et mise en scène de la pièce ''Coup de Théâtre à Ste-Onction'' jouée par les élèves de la Polyvalente Benoît-Vachon de Sainte-Marie de Beauce + +== Références == +{{references}} +== Liens externes == +* {{Liens biographiques}} + +{{Portail|Québec|littérature}} + +{{CLEDETRI:Beaudet, Raymond}} +[[Catégorie:Écrivain québécois|Beaudet, Raymond]] +[[Catégorie:Naissance en 1950]] + 961g6mmin44q2q90lx3q423cpsl4gw3 + + + 190685748 + 190663859 + 2022-02-09T15:29:20Z + + FrederiqueDube + 4146818 + + wikitext + text/x-wiki + {{voir homonymes|Beaudet}} +{{Infobox Biographie2}} +'''Raymond Beaudet''' (Québec 1950 - ) est un écrivain et un scénariste [[Québec|québécois]]<ref>[https://www.sainte-marie.ca/repertoire_culturel/raymond-beaudet sainte-marie.ca]/</ref>. Détenteur d’une maîtrise en [[philosophie]] de l’[[Université Laval]] (1975) on le retrouve successivement enseignant, syndicaliste, secrétaire particulier du Ministre des Richesses Naturelles, [[Yves Bérubé]], directeur d’école primaire et directeur d’école secondaire (Polyvalente Benoît-Vachon).Il est l’auteur de 5 romans, d’un essai, d'une biographie, d'un recueil de contes, d’une trentaine de scénarios, de plusieurs nouvelles et capsules historiques, de même que de trois pièces de théâtre. Depuis 2014, il est actif en [[twittérature]]<ref>{{Lien web |langue=fr |titre=https://twitter.com/raymondbeaudet |url=https://twitter.com/raymondbeaudet |site=Twitter |consulté le=2022-02-08}}</ref>. + +== Honneurs == +*[https://www.prixdupatrimoine.ca Prix du Patrimoine] (2019) Catégorie Interprétation et Diffusion<ref>{{Lien web |langue=fr |nom=iClic (www.iclic.com) |titre=Les lauréats du Prix du patrimoine de Nouvelle-Beauce sont dévoilés |url=https://www.enbeauce.com/actualites/culturel/21829/les-laureats-du-prix-du-patrimoine-de-nouvelle-beauce-sont-devoiles |site=EnBeauce.com |consulté le=2022-02-08}}</ref>. +*Prix coup de cœur du jury au Concours de twittérature du [https://francophoniedesameriques.com Centre de la Francophonie des Amériques] 2016 +* [https://www.prixdupatrimoine.ca Prix du Patrimoine] (2011) Catégorie Interprétation et Diffusion<ref>{{Lien web |langue=fr |nom=iClic (www.iclic.com) |titre=Les lauréats des Prix du patrimoine 2019 MRC Nouvelle-Beauce dévoilés |url=https://www.enbeauce.com/actualites/culturel/364234/les-laureats-des-prix-du-patrimoine-2019-mrc-nouvelle-beauce-devoiles |site=EnBeauce.com |consulté le=2022-02-08}}</ref>. +* [[Prix Robert-Cliche]] ([[1988]]), ''Passeport pour la liberté''<ref>{{lien web | url=http://www.edvlb.com/prixrobertcliche/laureats.aspx | titre=Lauréats du prix Robert-Cliche | consulté le=24 juin 2011}}</ref> +* Prix Corpo-vision (1992) +* Prix Adate (1993) + +== Bibliographie == +*2021 Les lieux enchantés du Parc Taschereau, publié aux Éditions de la Roupille, 96 pages, {{ISBN|978-2-924304-45-7}}<ref>{{Lien web |langue=fr-CA |titre=Des guides accrédités pour découvrir la Beauce |url=https://www.leclaireurprogres.ca/des-guides-accredites-pour-decouvrir-la-beauce/ |site=L'Éclaireur Progrès |date=2021-03-11 |consulté le=2022-02-08}}</ref>{{,}}<ref>{{Lien web |langue=fr-FR |prénom=Antoine |nom=Desrosiers |titre=Journée internationale des droits des femmes: huit femmes qui ont marqué Sainte-Marie à leur façon |url=https://mabeauce.com/journee-internationale-des-droits-des-femmes-huit-femmes-qui-ont-marque-sainte-marie-a-leur-facon/ |site=Ma Beauce |date=2021-03-08 |consulté le=2022-02-08}}</ref>{{,}}<ref>{{Lien web |langue=en |titre=Conférence - L'écriture sa passion avec Raymond Beaudet à l'Éco-refuge du Domaine Taschereau -10$/p. - Sainte-Marie, 2021-06-29 |url=https://ca.datescloud.com/conference-lecriture-sa-passion-avec-raymond-beaudet-a-leco-sainte-marie-305685960.html |site=dates.cloud |consulté le=2022-02-08}}</ref>{{,}}<ref>{{Lien web |langue=fr-FR |titre=Visites guidées et groupes touristiques {{!}} Domaine Taschereau |url=http://www.domainetaschereau.com/?page_id=634 |consulté le=2022-02-08}}</ref>{{,}}<ref>{{Lien web |langue=fr |titre=Se connecter à Facebook |url=https://www.facebook.com/ |site=Facebook |consulté le=2022-02-08}}</ref>{{,}}<ref>{{Lien web |langue=fr |nom=iClic (www.iclic.com) |titre=Les Lieux enchantés du parc Taschereau : des contes qui prennent vie |url=https://www.enbeauce.com/actualites/culturel/437952/les-lieux-enchantes-du-parc-taschereau-des-contes-qui-prennent-vie |site=EnBeauce.com |consulté le=2022-02-08}}</ref>. +*2021 Normand Maurice, père de la récupération au Québec, biographie publiée aux Éditions de la Roupille, 176 pages, {{ISBN|978-2-924304-39-6}}<ref>{{Lien web |langue=fr-CA |titre=Un livre neuf pour le père de la récupération |url=http://www.beaucemedia.ca/2021/06/25/un-livre-neuf-pour-le-pere-de-la-recuperation/ |site=Beauce Média |date=2021-06-25 |consulté le=2022-02-08}}</ref>{{,}}<ref>{{Lien web |langue=fr |prénom=Raymond |nom=Beaudet |titre=Normand Maurice : père de la récupération au Québec par Raymond Beaudet {{!}} Biographies {{!}} Gens d'affaire {{!}} Leslibraires.ca |url=https://www.leslibraires.ca/livres/normand-maurice-pere-de-la-recuperation-raymond-beaudet-9782924304396.html |site=www.leslibraires.ca |consulté le=2022-02-08}}</ref>{{,}}<ref>{{Lien web |langue=fr-FR |titre=Réseau CFER » Lancement du livre sur Normand Maurice |url=https://reseaucfer.ca/nouvelles/lancement-du-livre-sur-normand-maurice/ |consulté le=2022-02-08}}</ref>{{,}}<ref>{{Ouvrage|langue=en|titre=Normand Maurice, père de la récupération au Québec par BEAUDET, RAYMOND|lire en ligne=http://www.renaud-bray.com/Livres_Produit.aspx?id=3353354&def=Normand+Maurice%2c+p%c3%a8re+de+la+r%c3%a9cup%c3%a9ration+au+Qu%c3%a9bec%2cBEAUDET%2c+RAYMOND%2c9782924304396&utm_campaign=partage-réseaux-sociaux&utm_medium=réseaux-sociaux&utm_source=facebook-like|consulté le=2022-02-08}}</ref>. +*2021 Le bonheur, chroniques d'une vie à la campagne, publié aux Éditions de la Roupille, 270 pages {{ISBN|978-2-924304-40-2}}<ref>{{Lien web |langue=fr |prénom=Hélène |nom=Moore |titre=Le bonheur. Chroniques d’une vie à la campagne par Raymond Beaudet, Hélène Moore {{!}} Biographies {{!}} Faits vécus/Bio divers {{!}} Leslibraires.ca |url=https://www.leslibraires.ca/livres/le-bonheur-chroniques-d-une-vie-raymond-beaudet-9782924304402.html |site=www.leslibraires.ca |consulté le=2022-02-08}}</ref>{{,}}<ref>{{Lien web |langue=fr-ca |prénom=Cool 103,5 |nom=FM |titre="Le bonheur" 6ième ouvrage de l'auteur Raymond Beaudet |url=https://www.coolfm.biz/nouvelle/5205--le-bonheur-6ieme-ouvrage-de-l-auteur-raymond-beaudet |site=Cool 103,5 FM |consulté le=2022-02-08}}</ref>{{,}}<ref>{{Lien web |langue=fr-FR |prénom=Antoine |nom=Desrosiers |titre=Un sixième ouvrage pour l'auteur Raymond Beaudet de Sainte-Marie |url=https://mabeauce.com/un-sixieme-ouvrage-pour-lauteur-raymond-beaudet-de-sainte-marie/ |site=Ma Beauce |date=2021-02-25 |consulté le=2022-02-08}}</ref>{{,}}<ref>{{Lien web |langue=fr-ca |prénom=Cool 103,5 |nom=FM |titre="Le bonheur" 6ième ouvrage de l'auteur Raymond Beaudet |url=https://www.coolfm.biz/nouvelle/5205--le-bonheur-6ieme-ouvrage-de-l-auteur-raymond-beaudet |site=Cool 103,5 FM |consulté le=2022-02-08}}</ref>{{,}}<ref>{{Lien web |langue=ne |titre=Le bonheur, par Raymond BEAUDET et Hélène MOORE |url=https://ne-np.facebook.com/laroupille/videos/531892437783096/ |consulté le=2022-02-08}}</ref>{{,}}<ref>{{Lien web |langue=fr |titre=L'écrivain... - Éditions La Roupille, Service d'édition |url=https://www.facebook.com/laroupille/videos/772815796737521/ |consulté le=2022-02-08}}</ref>{{,}}<ref>{{Lien web |langue=hi |titre=BIBLIOTHÈQUE {{!}} « Le bonheur :... - Ville de Sainte-Marie |url=https://hi-in.facebook.com/villesaintemarie/videos/128982392487598/ |consulté le=2022-02-08}}</ref>{{,}}<ref>{{Lien web |langue=fr-CA |titre=Trouver le bonheur à la campagne |url=http://www.beaucemedia.ca/2021/02/24/trouver-le-bonheur-a-la-campagne/ |site=Beauce Média |date=2021-02-24 |consulté le=2022-02-08}}</ref>. +*2020 En décide de vendre, nouvelle parue dans Les Écrits mariverains 2020, {{ISBN|978-2-9810768-2-3}}<ref name=":0" />. + +*2019: +** Tableaux et portraits mariverains, Capsules historiques, {{ISBN|978-2-9810768-2-3}}<ref>{{Lien web |langue=th |titre=เข้าสู่ระบบ Facebook |url=https://th-th.facebook.com/login/?next=https%3A%2F%2Fth-th.facebook.com%2Fcheqfm%2Fposts%2F3625148174272475%2F |site=Facebook |consulté le=2022-02-08}}</ref>{{,}}<ref>{{Lien web |langue=ms |titre=LES 1001 MÉTIERS DE LA CULTURE {{!}} M. Raymond Beaudet |url=https://ms-my.facebook.com/villesaintemarie/videos/327787105117018/ |consulté le=2022-02-08}}</ref>{{,}}<ref>{{Lien web |langue=fr-CA |titre=Des guides accrédités pour découvrir la Beauce |url=http://www.beaucemedia.ca/2021/03/11/des-guides-accredites-pour-decouvrir-la-beauce/ |site=Beauce Média |date=2021-03-11 |consulté le=2022-02-08}}</ref>{{,}}<ref>{{Lien web |langue=fr |titre=Chronique à Raymond {{!}} Mon site web |url=https://genealogiestemarie.ca/chronique-a-raymond |site=genealogiestemarie.ca |consulté le=2022-02-08}}</ref>{{,}}<ref>{{Lien web |langue=fr-FR |titre=Capsules historiques |url=https://www.sainte-marie.ca/loisirs-culture/programmation/275e-anniversaire-capsules-historiques/ |site=Ville de Sainte-Marie |consulté le=2022-02-08}}</ref>. +** Carnet d'un passager clandestin, nouvelle parue dans Les Écrits Mariverains 2019, {{ISBN|978-2-9810768-0-9}}<ref name=":0">{{Lien web |langue=fr-FR |titre=Écrits mariverains |url=https://www.sainte-marie.ca/loisirs-culture/ecrits-mariverains/ |site=Ville de Sainte-Marie |consulté le=2022-02-08}}</ref>. +** Voix de dépassement, scénario du spectacle de la Corporation des Instrumentistes Associés<ref name=":1">{{Lien web |langue=fr-CA |titre=La CIA célébrera son 10e anniversaire le 15 avril |url=http://www.beaucemedia.ca/2021/11/25/la-cia-celebrera-son-10e-anniversaire-le-15-avril/ |site=Beauce Média |date=2021-11-25 |consulté le=2022-02-08}}</ref>. +*2018 +** Marie-Claire et moi, nouvelle parue dans Les Écrits mariverains 2018, {{ISBN|978-2-9809683-9-6}}<ref name=":0" />. +** La dernière scène, scénario du spectacle de la Corporation des Instrumentistes Associés<ref name=":1" />. +** La boucherie, Projet personnel d'orientation, Ministère de l'Éducation et de l'Enseignement supérieur. +*2017 +** L'idée perdue, nouvelle parue dans Les Écrits mariverains 2017, {{ISBN|978-2-9809683-8-9}}<ref name=":0" />. +** Coups de cœur, scénario du spectacle de la Corporation des Instrumentistes Associés. +*2016 +** Prix coup de cœur du jury au Concours de twittérature du Centre de la Francophonie des Amériques 2016<ref>{{Lien web |langue=fr-CA |titre=La twittérature est victorieuse à Sainte-Marie |url=https://www.beaucemedia.ca/2016/05/20/la-twitterature-est-victorieuse-a-sainte-marie/ |site=Beauce Média |date=2016-05-20 |consulté le=2022-02-08}}</ref>{{,}}<ref>{{Lien web |langue=fr |nom=iClic (www.iclic.com) |titre=La twittérature s'invite au CFER de Beauce à Sainte-Marie |url=https://www.enbeauce.com/actualites/culturel/305797/la-twitterature-sinvite-au-cfer-de-beauce-a-sainte-marie |site=EnBeauce.com |consulté le=2022-02-08}}</ref>. +** Éliza Caztel de Sainte-Marie, nouvelle parue dans Les Écrits mariverains 2016, {{ISBN|978-2-9809683-7-2}}<ref name=":0" />. +** La CIA sème le trouble, scénario du spectacle de la Corporation des Instrumentistes Associés. +*2015 La photographie numérique, Projet personnel d'orientation, Ministère de l'Éducation du Loisir et du sport. +*2015 Impressions de voyage: le Chili, nouvelle parue dans Les Écrits mariverains 2015, {{ISBN|978-2-9809683-6-5}}<ref name=":0" />. +*2015 La CIA, version 5.0, scénario du spectacle de la Corporation des Instrumentistes Associés. +*2014, 26 juin, TEDx Sainte-Marie, La paternelle<ref>{{Lien web |langue=fr-FR |titre=La paternelle {{!}} Raymond Beaudet {{!}} TEDxSainteMarie |url=https://www.youtube.com/watch?v=wGqQ2FS-P-A |consulté le=2022-02-08}}</ref>{{,}}<ref>{{Lien web |langue=fr |nom=iClic (www.iclic.com) |titre=TEDx Sainte-Marie dévoile le nom de trois conférenciers |url=https://www.enbeauce.com/actualites/societe/125807/tedx-sainte-marie-devoile-le-nom-de-trois-conferenciers |site=EnBeauce.com |consulté le=2022-02-08}}</ref>. +*2014 Le désastreux destin d'Arlette Mallette, nouvelle parue dans Les Écrits mariverains 2014, {{ISBN|978-2-9809683-5-8}}<ref name=":0" />. +*2014 La CIA, L'espace d'une vie, scénario du spectacle de la Corporation des Instrumentistes Associés. +*2014 Carapaces, Roman publié aux Éditions Textes et Contextes, 279 pages. {{ISBN|978-2-923706-63-4}}<ref>{{Ouvrage|langue=en|titre=Carapaces par BEAUDET, RAYMOND|lire en ligne=http://www.renaud-bray.com/Livres_Produit.aspx?id=1531849&def=Carapaces%2cBEAUDET%2c+RAYMOND%2c9782923706634&utm_campaign=partage-réseaux-sociaux&utm_medium=réseaux-sociaux&utm_source=facebook-like|consulté le=2022-02-08}}</ref>{{,}}<ref>{{Lien web |titre=http://biblio.villemontlaurier.qc.ca/in/faces/details.xhtml?id=p%3A%3Ausmarcdef_0000064212 |url=http://biblio.villemontlaurier.qc.ca/in/faces/details.xhtml?id=p%3A%3Ausmarcdef_0000064212 |site=biblio.villemontlaurier.qc.ca |consulté le=2022-02-08}}</ref>[https://www.renaud-bray.com/Livres_Produit.aspx?id=1531849&def=Carapaces,BEAUDET,+RAYMOND,9782923706634 .] +*2013 La Politique, Projet personnel d'orientation, Ministère de l'Éducation du Loisir et du sport. +*2013 La CIA poursuit son enquête, scénario du spectacle de la Corporation des Instrumentistes Associés<ref>{{Lien web |langue=fr |nom=iClic (www.iclic.com) |titre=La CIA présente En quête de commissions à la Méchatigan |url=https://www.enbeauce.com/actualites/culturel/25305/la-cia-presente-en-quete-de-commissions-a-la-mechatigan |site=EnBeauce.com |consulté le=2022-02-08}}</ref>. +*2013 Napoléon, nouvelle parue dans Les Écrits mariverains 2013. {{ISBN|978-2-9809683-4-1}}<ref name=":0" />. +*2012 Ménage de cave, nouvelle parue dans Les Écrits mariverains, 2012. {{ISBN|978-2-980-9683-3-4}}<ref name=":0" />. +*2012 En quête de mission, scénario du spectacle de la Corporation des Instrumentistes Associés. +*2012 Finaliste dans deux concours de Zone d’écriture de [[Société Radio-Canada|Radio-Canada]] en twittérature. +*2011 La CIA autour du monde, scénario du spectacle de la Corporation des Instrumentistes Associés. +*2011 En deuxième vitesse, nouvelle parue dans Les Écrits mariverains 2011. {{ISBN|978-2-980-9683-1-0|}}<ref name=":0" />. +*2010 Biographie de Jeannine Rousseau et Rolland Massicotte, scénario. Ocus Pocus Production. +*2010 Le Projet Adam et Ève, nouvelle parue dans Écrits mariverains 2010, {{ISBN|978-2-980-9683-1-0}}<ref name=":0" />. +*2009 Alexandre et Cassiopée, nouvelle parue dans Écrits mariverains 2009<ref name=":0" />. +*2008 ''Dans un mois, dans un an'', Roman publié dans la collection Les mots inventifs, Les Éditions du Mécène, 576 pages. {{ISBN|978-2-923150-61-1}}<ref>{{Lien web |langue=fr-FR |titre=Raymond Beaudet |url=https://www.sainte-marie.ca/repertoire_culturel/raymond-beaudet/ |site=Ville de Sainte-Marie |consulté le=2022-02-08}}</ref>. +*2007 ''L'écriture'', Projet personnel d'orientation, Ministère de l'Éducation du Loisir et du sport. +*2005 ''29, rue des Remparts'', Roman publié dans la collection Les mots inventifs, Les éditions du Mécène, 192 pages. {{ISBN|2-923150-28-7}}<ref>{{Lien web |langue=fr-FR |titre=Raymond Beaudet |url=https://www.sainte-marie.ca/repertoire_culturel/raymond-beaudet/ |site=Ville de Sainte-Marie |consulté le=2022-02-08}}</ref>. +*2003 ''Vie 101'', Essai publié dans la collection Les mots utiles, Les Éditions du Mécène. 126 pages. {{ISBN|2-923150-03-1}} +*2002 ''Le groupe conseil fiscalis'', scénario produit pour le groupe conseil Fiscalis. +*2001 ''Lévis, ville nouvelle'', scénario de deux émissions de trente minutes pour le Comité de transition de la ville de Lévis et Canal Vox +*2001 ''L’école québécoise, ce qu’il y a de mieux pour votre enfant'', scénario produit pour le Ministère de l’éducation du Québec. +*2000 ''Le jeu en valait-il la chandelle?'' scénario produit pour le Centre québécois d’excellence pour la prévention et le traitement du jeu. (Université Laval) +*1999 ''Le hasard, Lucky, on peut rien y changer'', scénario produit pour le Centre québécois d’excellence pour la prévention et le traitement du jeu. (Université Laval) +*1999 ''Un pacte fiscal pour l’an 2000, des idées, de la solidarité'', scénario produit pour l’Union des Municipalités régionales de comté et des municipalités locales. +*1999 ''Détect-o-max et Une journée avec Détect-o-max'', deux scénarios produits pour Conception Ro-main inc. +*1999 ''Propane GRG, à l’écoute de ses clients'', scénario produit pour la firme Propane GRG inc. +*1998 ''Maître du mètre'', scénario d’un documentaire sur les 25 ans du système métrique au Québec. +*1997 ''Le temps des sucres'', scénario produit pour la firme Shady Maple Farms. +*1996 ''Le Génie de campagne'', scénario produit pour les Forces armées canadiennes. +*1996 ''La Compagnie franche de la Marine de Québec'', scénario produit pour les Forces armées canadiennes. +*1995 ''Bon séjour à l'École navale de Québec'', scénario produit pour les Forces armées canadiennes. +*1994 ''Un leadership, des services'', scénario produit pour la Fédération des commissions scolaires du Québec. +*1993 ''Les clubs de recherche d'emploi'', scénario produit pour le Ministère de l'Emploi et de l'Immigration du Canada. +*1992 ''Fiers de notre avenir'', scénario produit pour l'Assurance-Vie Desjardins. +*1992 ''Responsible Leadership'', scénario produit pour la compagnie papetière Donohue. (Prix Corpo Vision) +*1992 Scénarisation d'un ensemble de huit vidéos destinées aux écoles secondaires et aux collèges du Québec, pour la Fondation de l'entrepreneurship Québécois. (Prix Adate) +*1991 ''Guide à l'intention du nouveau personnel'', rédaction d'une brochure d'accueil pour la Commission scolaire Louis-Fréchette. +*1990 Comment ça va chez vous? scénario produit pour la Confédération des caisses Desjardins. +*1990 ''Le choc est aussi grand pour les petits.'' I et II, scénario de deux vidéos pour la Régie de l'assurance automobile du Québec. +*1990 Participation au concours de nouvelles de Radio-Canada avec ''Alexandre et Cassiopée.'' +*1989 Participation au concours de nouvelles de Radio-Canada avec ''Le mystère de la cathédrale.'' +*1989 ''La Double vie d'Antoine Gagnon, Ministre'', scénario d'un téléfilm pour Radio-Canada. +*1988 ''Passeport pour la liberté'', Les Quinze Éditeurs, Montréal. {{ISBN|2-89026-368-1}}. (Prix Robert-Cliche)<ref>{{Lien web |langue=en |titre=PASSEPORT POUR LA LIBERTE. ROMAN by RAYMOND BEAUDET: bon Couverture souple (1988) {{!}} Le-Livre |url=https://www.abebooks.com/9782864770886/PASSEPORT-LIBERTE-ROMAN-RAYMOND-BEAUDET-2864770881/plp |site=www.abebooks.com |consulté le=2022-02-08}}</ref>. +*1988 Coédition aux Éditions Jean Picollec, à Paris, du roman ''Passeport pour la liberté'', 303 pages, {{ISBN|2-86477-088-1}}<ref>{{Lien web |titre=Raymond Beaudet |url=https://www.goodreads.com/author/show/1956588.Raymond_Beaudet |site=www.goodreads.com |consulté le=2022-02-08}}</ref>. +*1987 Participation au concours de nouvelles de Radio-''Canada avec Le secret''. +*1987 Collaboration au scénario et aux dialogues de ''Vie décolle'', vidéo produite pour la Commission scolaire Abénakis (21 minutes). +*1983 Rédaction et direction de ''C'est qui ma maman à moi?'' pièce de théâtre montée par la troupe de la Polyvalente Benoît-Vachon de Sainte-Marie de Beauce. +*1982 Rédaction et direction de ''Au nom du père, de la fille et du Sain d'esprit'', pièce de théâtre montée par la troupe de la Polyvalente Benoît -Vachon de Sainte-Marie de Beauce. +*1977 Corédaction et mise en scène de la pièce ''Coup de Théâtre à Ste-Onction'' jouée par les élèves de la Polyvalente Benoît-Vachon de Sainte-Marie de Beauce + +== Références == +{{references}} +== Liens externes == +* {{Liens biographiques}} + +{{Portail|Québec|littérature}} + +{{CLEDETRI:Beaudet, Raymond}} +[[Catégorie:Écrivain québécois|Beaudet, Raymond]] +[[Catégorie:Naissance en 1950]] + fgmxuzmlrqo2c96qbvh9dgllqc35i7e + + + 191090598 + 190685748 + 2022-02-21T11:55:35Z + + WikiCleanerBot + 351003 + + + v2.04b - [[Utilisateur:WikiCleanerBot#T3|Bot T3 PCS#558]] - [[P:CS|Correction syntaxique]] (Référence dupliquée - Orthographe et typographie) + wikitext + text/x-wiki + {{voir homonymes|Beaudet}} +{{Infobox Biographie2}} +'''Raymond Beaudet''' (Québec 1950 - ) est un écrivain et un scénariste [[Québec|québécois]]<ref>[https://www.sainte-marie.ca/repertoire_culturel/raymond-beaudet sainte-marie.ca]/</ref>. Détenteur d’une maîtrise en [[philosophie]] de l’[[Université Laval]] (1975) on le retrouve successivement enseignant, syndicaliste, secrétaire particulier du Ministre des Richesses Naturelles, [[Yves Bérubé]], directeur d’école primaire et directeur d’école secondaire (Polyvalente Benoît-Vachon).Il est l’auteur de 5 romans, d’un essai, d'une biographie, d'un recueil de contes, d’une trentaine de scénarios, de plusieurs nouvelles et capsules historiques, de même que de trois pièces de théâtre. Depuis 2014, il est actif en [[twittérature]]<ref>{{Lien web |langue=fr |titre=https://twitter.com/raymondbeaudet |url=https://twitter.com/raymondbeaudet |site=Twitter |consulté le=2022-02-08}}</ref>. + +== Honneurs == +*[https://www.prixdupatrimoine.ca Prix du Patrimoine] (2019) Catégorie Interprétation et Diffusion<ref>{{Lien web |langue=fr |nom=iClic (www.iclic.com) |titre=Les lauréats du Prix du patrimoine de Nouvelle-Beauce sont dévoilés |url=https://www.enbeauce.com/actualites/culturel/21829/les-laureats-du-prix-du-patrimoine-de-nouvelle-beauce-sont-devoiles |site=EnBeauce.com |consulté le=2022-02-08}}</ref>. +*Prix coup de cœur du jury au Concours de twittérature du [https://francophoniedesameriques.com Centre de la Francophonie des Amériques] 2016 +* [https://www.prixdupatrimoine.ca Prix du Patrimoine] (2011) Catégorie Interprétation et Diffusion<ref>{{Lien web |langue=fr |nom=iClic (www.iclic.com) |titre=Les lauréats des Prix du patrimoine 2019 MRC Nouvelle-Beauce dévoilés |url=https://www.enbeauce.com/actualites/culturel/364234/les-laureats-des-prix-du-patrimoine-2019-mrc-nouvelle-beauce-devoiles |site=EnBeauce.com |consulté le=2022-02-08}}</ref>. +* [[Prix Robert-Cliche]] ([[1988]]), ''Passeport pour la liberté''<ref>{{lien web | url=http://www.edvlb.com/prixrobertcliche/laureats.aspx | titre=Lauréats du prix Robert-Cliche | consulté le=24 juin 2011}}</ref> +* Prix Corpo-vision (1992) +* Prix Adate (1993) + +== Bibliographie == +*2021 Les lieux enchantés du Parc Taschereau, publié aux Éditions de la Roupille, 96 pages, {{ISBN|978-2-924304-45-7}}<ref>{{Lien web |langue=fr-CA |titre=Des guides accrédités pour découvrir la Beauce |url=https://www.leclaireurprogres.ca/des-guides-accredites-pour-decouvrir-la-beauce/ |site=L'Éclaireur Progrès |date=2021-03-11 |consulté le=2022-02-08}}</ref>{{,}}<ref>{{Lien web |langue=fr-FR |prénom=Antoine |nom=Desrosiers |titre=Journée internationale des droits des femmes: huit femmes qui ont marqué Sainte-Marie à leur façon |url=https://mabeauce.com/journee-internationale-des-droits-des-femmes-huit-femmes-qui-ont-marque-sainte-marie-a-leur-facon/ |site=Ma Beauce |date=2021-03-08 |consulté le=2022-02-08}}</ref>{{,}}<ref>{{Lien web |langue=en |titre=Conférence - L'écriture sa passion avec Raymond Beaudet à l'Éco-refuge du Domaine Taschereau -10$/p. - Sainte-Marie, 2021-06-29 |url=https://ca.datescloud.com/conference-lecriture-sa-passion-avec-raymond-beaudet-a-leco-sainte-marie-305685960.html |site=dates.cloud |consulté le=2022-02-08}}</ref>{{,}}<ref>{{Lien web |langue=fr-FR |titre=Visites guidées et groupes touristiques {{!}} Domaine Taschereau |url=http://www.domainetaschereau.com/?page_id=634 |consulté le=2022-02-08}}</ref>{{,}}<ref>{{Lien web |langue=fr |titre=Se connecter à Facebook |url=https://www.facebook.com/ |site=Facebook |consulté le=2022-02-08}}</ref>{{,}}<ref>{{Lien web |langue=fr |nom=iClic (www.iclic.com) |titre=Les Lieux enchantés du parc Taschereau : des contes qui prennent vie |url=https://www.enbeauce.com/actualites/culturel/437952/les-lieux-enchantes-du-parc-taschereau-des-contes-qui-prennent-vie |site=EnBeauce.com |consulté le=2022-02-08}}</ref>. +*2021 Normand Maurice, père de la récupération au Québec, biographie publiée aux Éditions de la Roupille, 176 pages, {{ISBN|978-2-924304-39-6}}<ref>{{Lien web |langue=fr-CA |titre=Un livre neuf pour le père de la récupération |url=http://www.beaucemedia.ca/2021/06/25/un-livre-neuf-pour-le-pere-de-la-recuperation/ |site=Beauce Média |date=2021-06-25 |consulté le=2022-02-08}}</ref>{{,}}<ref>{{Lien web |langue=fr |prénom=Raymond |nom=Beaudet |titre=Normand Maurice : père de la récupération au Québec par Raymond Beaudet {{!}} Biographies {{!}} Gens d'affaire {{!}} Leslibraires.ca |url=https://www.leslibraires.ca/livres/normand-maurice-pere-de-la-recuperation-raymond-beaudet-9782924304396.html |site=www.leslibraires.ca |consulté le=2022-02-08}}</ref>{{,}}<ref>{{Lien web |langue=fr-FR |titre=Réseau CFER » Lancement du livre sur Normand Maurice |url=https://reseaucfer.ca/nouvelles/lancement-du-livre-sur-normand-maurice/ |consulté le=2022-02-08}}</ref>{{,}}<ref>{{Ouvrage|langue=en|titre=Normand Maurice, père de la récupération au Québec par BEAUDET, RAYMOND|lire en ligne=http://www.renaud-bray.com/Livres_Produit.aspx?id=3353354&def=Normand+Maurice%2c+p%c3%a8re+de+la+r%c3%a9cup%c3%a9ration+au+Qu%c3%a9bec%2cBEAUDET%2c+RAYMOND%2c9782924304396&utm_campaign=partage-réseaux-sociaux&utm_medium=réseaux-sociaux&utm_source=facebook-like|consulté le=2022-02-08}}</ref>. +*2021 Le bonheur, chroniques d'une vie à la campagne, publié aux Éditions de la Roupille, 270 pages {{ISBN|978-2-924304-40-2}}<ref>{{Lien web |langue=fr |prénom=Hélène |nom=Moore |titre=Le bonheur. Chroniques d’une vie à la campagne par Raymond Beaudet, Hélène Moore {{!}} Biographies {{!}} Faits vécus/Bio divers {{!}} Leslibraires.ca |url=https://www.leslibraires.ca/livres/le-bonheur-chroniques-d-une-vie-raymond-beaudet-9782924304402.html |site=www.leslibraires.ca |consulté le=2022-02-08}}</ref>{{,}}<ref>{{Lien web |langue=fr-ca |prénom=Cool 103,5 |nom=FM |titre="Le bonheur" 6ième ouvrage de l'auteur Raymond Beaudet |url=https://www.coolfm.biz/nouvelle/5205--le-bonheur-6ieme-ouvrage-de-l-auteur-raymond-beaudet |site=Cool 103,5 FM |consulté le=2022-02-08}}</ref>{{,}}<ref>{{Lien web |langue=fr-FR |prénom=Antoine |nom=Desrosiers |titre=Un sixième ouvrage pour l'auteur Raymond Beaudet de Sainte-Marie |url=https://mabeauce.com/un-sixieme-ouvrage-pour-lauteur-raymond-beaudet-de-sainte-marie/ |site=Ma Beauce |date=2021-02-25 |consulté le=2022-02-08}}</ref>{{,}}<ref>{{Lien web |langue=ne |titre=Le bonheur, par Raymond BEAUDET et Hélène MOORE |url=https://ne-np.facebook.com/laroupille/videos/531892437783096/ |consulté le=2022-02-08}}</ref>{{,}}<ref>{{Lien web |langue=fr |titre=L'écrivain... - Éditions La Roupille, Service d'édition |url=https://www.facebook.com/laroupille/videos/772815796737521/ |consulté le=2022-02-08}}</ref>{{,}}<ref>{{Lien web |langue=hi |titre=BIBLIOTHÈQUE {{!}} « Le bonheur :... - Ville de Sainte-Marie |url=https://hi-in.facebook.com/villesaintemarie/videos/128982392487598/ |consulté le=2022-02-08}}</ref>{{,}}<ref>{{Lien web |langue=fr-CA |titre=Trouver le bonheur à la campagne |url=http://www.beaucemedia.ca/2021/02/24/trouver-le-bonheur-a-la-campagne/ |site=Beauce Média |date=2021-02-24 |consulté le=2022-02-08}}</ref>. +*2020 En décide de vendre, nouvelle parue dans Les Écrits mariverains 2020, {{ISBN|978-2-9810768-2-3}}<ref name=":0" />. + +*2019: +** Tableaux et portraits mariverains, Capsules historiques, {{ISBN|978-2-9810768-2-3}}<ref>{{Lien web |langue=th |titre=เข้าสู่ระบบ Facebook |url=https://th-th.facebook.com/login/?next=https%3A%2F%2Fth-th.facebook.com%2Fcheqfm%2Fposts%2F3625148174272475%2F |site=Facebook |consulté le=2022-02-08}}</ref>{{,}}<ref>{{Lien web |langue=ms |titre=LES 1001 MÉTIERS DE LA CULTURE {{!}} M. Raymond Beaudet |url=https://ms-my.facebook.com/villesaintemarie/videos/327787105117018/ |consulté le=2022-02-08}}</ref>{{,}}<ref>{{Lien web |langue=fr-CA |titre=Des guides accrédités pour découvrir la Beauce |url=http://www.beaucemedia.ca/2021/03/11/des-guides-accredites-pour-decouvrir-la-beauce/ |site=Beauce Média |date=2021-03-11 |consulté le=2022-02-08}}</ref>{{,}}<ref>{{Lien web |langue=fr |titre=Chronique à Raymond {{!}} Mon site web |url=https://genealogiestemarie.ca/chronique-a-raymond |site=genealogiestemarie.ca |consulté le=2022-02-08}}</ref>{{,}}<ref>{{Lien web |langue=fr-FR |titre=Capsules historiques |url=https://www.sainte-marie.ca/loisirs-culture/programmation/275e-anniversaire-capsules-historiques/ |site=Ville de Sainte-Marie |consulté le=2022-02-08}}</ref>. +** Carnet d'un passager clandestin, nouvelle parue dans Les Écrits Mariverains 2019, {{ISBN|978-2-9810768-0-9}}<ref name=":0">{{Lien web |langue=fr-FR |titre=Écrits mariverains |url=https://www.sainte-marie.ca/loisirs-culture/ecrits-mariverains/ |site=Ville de Sainte-Marie |consulté le=2022-02-08}}</ref>. +** Voix de dépassement, scénario du spectacle de la Corporation des Instrumentistes Associés<ref name=":1">{{Lien web |langue=fr-CA |titre=La CIA célébrera son 10e anniversaire le 15 avril |url=http://www.beaucemedia.ca/2021/11/25/la-cia-celebrera-son-10e-anniversaire-le-15-avril/ |site=Beauce Média |date=2021-11-25 |consulté le=2022-02-08}}</ref>. +*2018 +** Marie-Claire et moi, nouvelle parue dans Les Écrits mariverains 2018, {{ISBN|978-2-9809683-9-6}}<ref name=":0" />. +** La dernière scène, scénario du spectacle de la Corporation des Instrumentistes Associés<ref name=":1" />. +** La boucherie, Projet personnel d'orientation, Ministère de l'Éducation et de l'Enseignement supérieur. +*2017 +** L'idée perdue, nouvelle parue dans Les Écrits mariverains 2017, {{ISBN|978-2-9809683-8-9}}<ref name=":0" />. +** Coups de cœur, scénario du spectacle de la Corporation des Instrumentistes Associés. +*2016 +** Prix coup de cœur du jury au Concours de twittérature du Centre de la Francophonie des Amériques 2016<ref>{{Lien web |langue=fr-CA |titre=La twittérature est victorieuse à Sainte-Marie |url=https://www.beaucemedia.ca/2016/05/20/la-twitterature-est-victorieuse-a-sainte-marie/ |site=Beauce Média |date=2016-05-20 |consulté le=2022-02-08}}</ref>{{,}}<ref>{{Lien web |langue=fr |nom=iClic (www.iclic.com) |titre=La twittérature s'invite au CFER de Beauce à Sainte-Marie |url=https://www.enbeauce.com/actualites/culturel/305797/la-twitterature-sinvite-au-cfer-de-beauce-a-sainte-marie |site=EnBeauce.com |consulté le=2022-02-08}}</ref>. +** Éliza Caztel de Sainte-Marie, nouvelle parue dans Les Écrits mariverains 2016, {{ISBN|978-2-9809683-7-2}}<ref name=":0" />. +** La CIA sème le trouble, scénario du spectacle de la Corporation des Instrumentistes Associés. +*2015 La photographie numérique, Projet personnel d'orientation, Ministère de l'Éducation du Loisir et du sport. +*2015 Impressions de voyage: le Chili, nouvelle parue dans Les Écrits mariverains 2015, {{ISBN|978-2-9809683-6-5}}<ref name=":0" />. +*2015 La CIA, version 5.0, scénario du spectacle de la Corporation des Instrumentistes Associés. +*2014, 26 juin, TEDx Sainte-Marie, La paternelle<ref>{{Lien web |langue=fr-FR |titre=La paternelle {{!}} Raymond Beaudet {{!}} TEDxSainteMarie |url=https://www.youtube.com/watch?v=wGqQ2FS-P-A |consulté le=2022-02-08}}</ref>{{,}}<ref>{{Lien web |langue=fr |nom=iClic (www.iclic.com) |titre=TEDx Sainte-Marie dévoile le nom de trois conférenciers |url=https://www.enbeauce.com/actualites/societe/125807/tedx-sainte-marie-devoile-le-nom-de-trois-conferenciers |site=EnBeauce.com |consulté le=2022-02-08}}</ref>. +*2014 Le désastreux destin d'Arlette Mallette, nouvelle parue dans Les Écrits mariverains 2014, {{ISBN|978-2-9809683-5-8}}<ref name=":0" />. +*2014 La CIA, L'espace d'une vie, scénario du spectacle de la Corporation des Instrumentistes Associés. +*2014 Carapaces, Roman publié aux Éditions Textes et Contextes, 279 pages. {{ISBN|978-2-923706-63-4}}<ref>{{Ouvrage|langue=en|titre=Carapaces par BEAUDET, RAYMOND|lire en ligne=http://www.renaud-bray.com/Livres_Produit.aspx?id=1531849&def=Carapaces%2cBEAUDET%2c+RAYMOND%2c9782923706634&utm_campaign=partage-réseaux-sociaux&utm_medium=réseaux-sociaux&utm_source=facebook-like|consulté le=2022-02-08}}</ref>{{,}}<ref>{{Lien web |titre=http://biblio.villemontlaurier.qc.ca/in/faces/details.xhtml?id=p%3A%3Ausmarcdef_0000064212 |url=http://biblio.villemontlaurier.qc.ca/in/faces/details.xhtml?id=p%3A%3Ausmarcdef_0000064212 |site=biblio.villemontlaurier.qc.ca |consulté le=2022-02-08}}</ref>[https://www.renaud-bray.com/Livres_Produit.aspx?id=1531849&def=Carapaces,BEAUDET,+RAYMOND,9782923706634 .] +*2013 La Politique, Projet personnel d'orientation, Ministère de l'Éducation du Loisir et du sport. +*2013 La CIA poursuit son enquête, scénario du spectacle de la Corporation des Instrumentistes Associés<ref>{{Lien web |langue=fr |nom=iClic (www.iclic.com) |titre=La CIA présente En quête de commissions à la Méchatigan |url=https://www.enbeauce.com/actualites/culturel/25305/la-cia-presente-en-quete-de-commissions-a-la-mechatigan |site=EnBeauce.com |consulté le=2022-02-08}}</ref>. +*2013 Napoléon, nouvelle parue dans Les Écrits mariverains 2013. {{ISBN|978-2-9809683-4-1}}<ref name=":0" />. +*2012 Ménage de cave, nouvelle parue dans Les Écrits mariverains, 2012. {{ISBN|978-2-980-9683-3-4}}<ref name=":0" />. +*2012 En quête de mission, scénario du spectacle de la Corporation des Instrumentistes Associés. +*2012 Finaliste dans deux concours de Zone d’écriture de [[Société Radio-Canada|Radio-Canada]] en twittérature. +*2011 La CIA autour du monde, scénario du spectacle de la Corporation des Instrumentistes Associés. +*2011 En deuxième vitesse, nouvelle parue dans Les Écrits mariverains 2011. {{ISBN|978-2-980-9683-1-0|}}<ref name=":0" />. +*2010 Biographie de Jeannine Rousseau et Rolland Massicotte, scénario. Ocus Pocus Production. +*2010 Le Projet Adam et Ève, nouvelle parue dans Écrits mariverains 2010, {{ISBN|978-2-980-9683-1-0}}<ref name=":0" />. +*2009 Alexandre et Cassiopée, nouvelle parue dans Écrits mariverains 2009<ref name=":0" />. +*2008 ''Dans un mois, dans un an'', Roman publié dans la collection Les mots inventifs, Les Éditions du Mécène, 576 pages. {{ISBN|978-2-923150-61-1}}<ref>{{Lien web |langue=fr-FR |titre=Raymond Beaudet |url=https://www.sainte-marie.ca/repertoire_culturel/raymond-beaudet/ |site=Ville de Sainte-Marie |consulté le=2022-02-08}}</ref>. +*2007 ''L'écriture'', Projet personnel d'orientation, Ministère de l'Éducation du Loisir et du sport. +*2005 ''29, rue des Remparts'', Roman publié dans la collection Les mots inventifs, Les éditions du Mécène, 192 pages. {{ISBN|2-923150-28-7}}<ref>{{Lien web |langue=fr-FR |titre=Raymond Beaudet |url=https://www.sainte-marie.ca/repertoire_culturel/raymond-beaudet/ |site=Ville de Sainte-Marie |consulté le=2022-02-08}}</ref>. +*2003 ''Vie 101'', Essai publié dans la collection Les mots utiles, Les Éditions du Mécène. 126 pages. {{ISBN|2-923150-03-1}} +*2002 ''Le groupe conseil fiscalis'', scénario produit pour le groupe conseil Fiscalis. +*2001 ''Lévis, ville nouvelle'', scénario de deux émissions de trente minutes pour le Comité de transition de la ville de Lévis et Canal Vox +*2001 ''L’école québécoise, ce qu’il y a de mieux pour votre enfant'', scénario produit pour le Ministère de l’éducation du Québec. +*2000 ''Le jeu en valait-il la chandelle?'' scénario produit pour le Centre québécois d’excellence pour la prévention et le traitement du jeu. (Université Laval) +*1999 ''Le hasard, Lucky, on peut rien y changer'', scénario produit pour le Centre québécois d’excellence pour la prévention et le traitement du jeu. (Université Laval) +*1999 ''Un pacte fiscal pour l’an 2000, des idées, de la solidarité'', scénario produit pour l’Union des Municipalités régionales de comté et des municipalités locales. +*1999 ''Détect-o-max et Une journée avec Détect-o-max'', deux scénarios produits pour Conception Ro-main inc. +*1999 ''Propane GRG, à l’écoute de ses clients'', scénario produit pour la firme Propane GRG inc. +*1998 ''Maître du mètre'', scénario d’un documentaire sur les 25 ans du système métrique au Québec. +*1997 ''Le temps des sucres'', scénario produit pour la firme Shady Maple Farms. +*1996 ''Le Génie de campagne'', scénario produit pour les Forces armées canadiennes. +*1996 ''La Compagnie franche de la Marine de Québec'', scénario produit pour les Forces armées canadiennes. +*1995 ''Bon séjour à l'École navale de Québec'', scénario produit pour les Forces armées canadiennes. +*1994 ''Un leadership, des services'', scénario produit pour la Fédération des commissions scolaires du Québec. +*1993 ''Les clubs de recherche d'emploi'', scénario produit pour le Ministère de l'Emploi et de l'Immigration du Canada. +*1992 ''Fiers de notre avenir'', scénario produit pour l'Assurance-Vie Desjardins. +*1992 ''Responsible Leadership'', scénario produit pour la compagnie papetière Donohue. (Prix Corpo Vision) +*1992 Scénarisation d'un ensemble de huit vidéos destinées aux écoles secondaires et aux collèges du Québec, pour la Fondation de l'entrepreneurship Québécois. (Prix Adate) +*1991 ''Guide à l'intention du nouveau personnel'', rédaction d'une brochure d'accueil pour la Commission scolaire Louis-Fréchette. +*1990 Comment ça va chez vous? scénario produit pour la Confédération des caisses Desjardins. +*1990 ''Le choc est aussi grand pour les petits.'' I et II, scénario de deux vidéos pour la Régie de l'assurance automobile du Québec. +*1990 Participation au concours de nouvelles de Radio-Canada avec ''Alexandre et Cassiopée.'' +*1989 Participation au concours de nouvelles de Radio-Canada avec ''Le mystère de la cathédrale.'' +*1989 ''La Double vie d'Antoine Gagnon, Ministre'', scénario d'un téléfilm pour Radio-Canada. +*1988 ''Passeport pour la liberté'', Les Quinze Éditeurs, Montréal. {{ISBN|2-89026-368-1}}. (Prix Robert-Cliche)<ref>{{Lien web |langue=en |titre=PASSEPORT POUR LA LIBERTE. ROMAN by RAYMOND BEAUDET: bon Couverture souple (1988) {{!}} Le-Livre |url=https://www.abebooks.com/9782864770886/PASSEPORT-LIBERTE-ROMAN-RAYMOND-BEAUDET-2864770881/plp |site=www.abebooks.com |consulté le=2022-02-08}}</ref>. +*1988 Coédition aux Éditions Jean Picollec, à Paris, du roman ''Passeport pour la liberté'', 303 pages, {{ISBN|2-86477-088-1}}<ref>{{Lien web |titre=Raymond Beaudet |url=https://www.goodreads.com/author/show/1956588.Raymond_Beaudet |site=www.goodreads.com |consulté le=2022-02-08}}</ref>. +*1987 Participation au concours de nouvelles de Radio-''Canada avec Le secret''. +*1987 Collaboration au scénario et aux dialogues de ''Vie décolle'', vidéo produite pour la Commission scolaire Abénakis (21 minutes). +*1983 Rédaction et direction de ''C'est qui ma maman à moi?'' pièce de théâtre montée par la troupe de la Polyvalente Benoît-Vachon de Sainte-Marie de Beauce. +*1982 Rédaction et direction de ''Au nom du père, de la fille et du Sain d'esprit'', pièce de théâtre montée par la troupe de la Polyvalente Benoît -Vachon de Sainte-Marie de Beauce. +*1977 Corédaction et mise en scène de la pièce ''Coup de Théâtre à Ste-Onction'' jouée par les élèves de la Polyvalente Benoît-Vachon de Sainte-Marie de Beauce + +== Références == +{{references}} +== Liens externes == +* {{Liens biographiques}} + +{{Portail|Québec|littérature}} + +{{CLEDETRI:Beaudet, Raymond}} +[[Catégorie:Écrivain québécois|Beaudet, Raymond]] +[[Catégorie:Naissance en 1950]] + 8arpguhi0avpjqv36yazq3ncthok4uf + + + 192971746 + 191090598 + 2022-04-19T05:46:55Z + + WikiCleanerBot + 351003 + + + v2.04b - [[User:WikiCleanerBot#T12|Bot T12 CW#548]] - [[P:CS|Correction syntaxique]] (Ponctuation dans un lien) + wikitext + text/x-wiki + {{voir homonymes|Beaudet}} +{{Infobox Biographie2}} +'''Raymond Beaudet''' (Québec 1950 - ) est un écrivain et un scénariste [[Québec|québécois]]<ref>[https://www.sainte-marie.ca/repertoire_culturel/raymond-beaudet sainte-marie.ca]/</ref>. Détenteur d’une maîtrise en [[philosophie]] de l’[[Université Laval]] (1975) on le retrouve successivement enseignant, syndicaliste, secrétaire particulier du Ministre des Richesses Naturelles, [[Yves Bérubé]], directeur d’école primaire et directeur d’école secondaire (Polyvalente Benoît-Vachon).Il est l’auteur de 5 romans, d’un essai, d'une biographie, d'un recueil de contes, d’une trentaine de scénarios, de plusieurs nouvelles et capsules historiques, de même que de trois pièces de théâtre. Depuis 2014, il est actif en [[twittérature]]<ref>{{Lien web |langue=fr |titre=https://twitter.com/raymondbeaudet |url=https://twitter.com/raymondbeaudet |site=Twitter |consulté le=2022-02-08}}</ref>. + +== Honneurs == +*[https://www.prixdupatrimoine.ca Prix du Patrimoine] (2019) Catégorie Interprétation et Diffusion<ref>{{Lien web |langue=fr |nom=iClic (www.iclic.com) |titre=Les lauréats du Prix du patrimoine de Nouvelle-Beauce sont dévoilés |url=https://www.enbeauce.com/actualites/culturel/21829/les-laureats-du-prix-du-patrimoine-de-nouvelle-beauce-sont-devoiles |site=EnBeauce.com |consulté le=2022-02-08}}</ref>. +*Prix coup de cœur du jury au Concours de twittérature du [https://francophoniedesameriques.com Centre de la Francophonie des Amériques] 2016 +* [https://www.prixdupatrimoine.ca Prix du Patrimoine] (2011) Catégorie Interprétation et Diffusion<ref>{{Lien web |langue=fr |nom=iClic (www.iclic.com) |titre=Les lauréats des Prix du patrimoine 2019 MRC Nouvelle-Beauce dévoilés |url=https://www.enbeauce.com/actualites/culturel/364234/les-laureats-des-prix-du-patrimoine-2019-mrc-nouvelle-beauce-devoiles |site=EnBeauce.com |consulté le=2022-02-08}}</ref>. +* [[Prix Robert-Cliche]] ([[1988]]), ''Passeport pour la liberté''<ref>{{lien web | url=http://www.edvlb.com/prixrobertcliche/laureats.aspx | titre=Lauréats du prix Robert-Cliche | consulté le=24 juin 2011}}</ref> +* Prix Corpo-vision (1992) +* Prix Adate (1993) + +== Bibliographie == +*2021 Les lieux enchantés du Parc Taschereau, publié aux Éditions de la Roupille, 96 pages, {{ISBN|978-2-924304-45-7}}<ref>{{Lien web |langue=fr-CA |titre=Des guides accrédités pour découvrir la Beauce |url=https://www.leclaireurprogres.ca/des-guides-accredites-pour-decouvrir-la-beauce/ |site=L'Éclaireur Progrès |date=2021-03-11 |consulté le=2022-02-08}}</ref>{{,}}<ref>{{Lien web |langue=fr-FR |prénom=Antoine |nom=Desrosiers |titre=Journée internationale des droits des femmes: huit femmes qui ont marqué Sainte-Marie à leur façon |url=https://mabeauce.com/journee-internationale-des-droits-des-femmes-huit-femmes-qui-ont-marque-sainte-marie-a-leur-facon/ |site=Ma Beauce |date=2021-03-08 |consulté le=2022-02-08}}</ref>{{,}}<ref>{{Lien web |langue=en |titre=Conférence - L'écriture sa passion avec Raymond Beaudet à l'Éco-refuge du Domaine Taschereau -10$/p. - Sainte-Marie, 2021-06-29 |url=https://ca.datescloud.com/conference-lecriture-sa-passion-avec-raymond-beaudet-a-leco-sainte-marie-305685960.html |site=dates.cloud |consulté le=2022-02-08}}</ref>{{,}}<ref>{{Lien web |langue=fr-FR |titre=Visites guidées et groupes touristiques {{!}} Domaine Taschereau |url=http://www.domainetaschereau.com/?page_id=634 |consulté le=2022-02-08}}</ref>{{,}}<ref>{{Lien web |langue=fr |titre=Se connecter à Facebook |url=https://www.facebook.com/ |site=Facebook |consulté le=2022-02-08}}</ref>{{,}}<ref>{{Lien web |langue=fr |nom=iClic (www.iclic.com) |titre=Les Lieux enchantés du parc Taschereau : des contes qui prennent vie |url=https://www.enbeauce.com/actualites/culturel/437952/les-lieux-enchantes-du-parc-taschereau-des-contes-qui-prennent-vie |site=EnBeauce.com |consulté le=2022-02-08}}</ref>. +*2021 Normand Maurice, père de la récupération au Québec, biographie publiée aux Éditions de la Roupille, 176 pages, {{ISBN|978-2-924304-39-6}}<ref>{{Lien web |langue=fr-CA |titre=Un livre neuf pour le père de la récupération |url=http://www.beaucemedia.ca/2021/06/25/un-livre-neuf-pour-le-pere-de-la-recuperation/ |site=Beauce Média |date=2021-06-25 |consulté le=2022-02-08}}</ref>{{,}}<ref>{{Lien web |langue=fr |prénom=Raymond |nom=Beaudet |titre=Normand Maurice : père de la récupération au Québec par Raymond Beaudet {{!}} Biographies {{!}} Gens d'affaire {{!}} Leslibraires.ca |url=https://www.leslibraires.ca/livres/normand-maurice-pere-de-la-recuperation-raymond-beaudet-9782924304396.html |site=www.leslibraires.ca |consulté le=2022-02-08}}</ref>{{,}}<ref>{{Lien web |langue=fr-FR |titre=Réseau CFER » Lancement du livre sur Normand Maurice |url=https://reseaucfer.ca/nouvelles/lancement-du-livre-sur-normand-maurice/ |consulté le=2022-02-08}}</ref>{{,}}<ref>{{Ouvrage|langue=en|titre=Normand Maurice, père de la récupération au Québec par BEAUDET, RAYMOND|lire en ligne=http://www.renaud-bray.com/Livres_Produit.aspx?id=3353354&def=Normand+Maurice%2c+p%c3%a8re+de+la+r%c3%a9cup%c3%a9ration+au+Qu%c3%a9bec%2cBEAUDET%2c+RAYMOND%2c9782924304396&utm_campaign=partage-réseaux-sociaux&utm_medium=réseaux-sociaux&utm_source=facebook-like|consulté le=2022-02-08}}</ref>. +*2021 Le bonheur, chroniques d'une vie à la campagne, publié aux Éditions de la Roupille, 270 pages {{ISBN|978-2-924304-40-2}}<ref>{{Lien web |langue=fr |prénom=Hélène |nom=Moore |titre=Le bonheur. Chroniques d’une vie à la campagne par Raymond Beaudet, Hélène Moore {{!}} Biographies {{!}} Faits vécus/Bio divers {{!}} Leslibraires.ca |url=https://www.leslibraires.ca/livres/le-bonheur-chroniques-d-une-vie-raymond-beaudet-9782924304402.html |site=www.leslibraires.ca |consulté le=2022-02-08}}</ref>{{,}}<ref>{{Lien web |langue=fr-ca |prénom=Cool 103,5 |nom=FM |titre="Le bonheur" 6ième ouvrage de l'auteur Raymond Beaudet |url=https://www.coolfm.biz/nouvelle/5205--le-bonheur-6ieme-ouvrage-de-l-auteur-raymond-beaudet |site=Cool 103,5 FM |consulté le=2022-02-08}}</ref>{{,}}<ref>{{Lien web |langue=fr-FR |prénom=Antoine |nom=Desrosiers |titre=Un sixième ouvrage pour l'auteur Raymond Beaudet de Sainte-Marie |url=https://mabeauce.com/un-sixieme-ouvrage-pour-lauteur-raymond-beaudet-de-sainte-marie/ |site=Ma Beauce |date=2021-02-25 |consulté le=2022-02-08}}</ref>{{,}}<ref>{{Lien web |langue=ne |titre=Le bonheur, par Raymond BEAUDET et Hélène MOORE |url=https://ne-np.facebook.com/laroupille/videos/531892437783096/ |consulté le=2022-02-08}}</ref>{{,}}<ref>{{Lien web |langue=fr |titre=L'écrivain... - Éditions La Roupille, Service d'édition |url=https://www.facebook.com/laroupille/videos/772815796737521/ |consulté le=2022-02-08}}</ref>{{,}}<ref>{{Lien web |langue=hi |titre=BIBLIOTHÈQUE {{!}} « Le bonheur :... - Ville de Sainte-Marie |url=https://hi-in.facebook.com/villesaintemarie/videos/128982392487598/ |consulté le=2022-02-08}}</ref>{{,}}<ref>{{Lien web |langue=fr-CA |titre=Trouver le bonheur à la campagne |url=http://www.beaucemedia.ca/2021/02/24/trouver-le-bonheur-a-la-campagne/ |site=Beauce Média |date=2021-02-24 |consulté le=2022-02-08}}</ref>. +*2020 En décide de vendre, nouvelle parue dans Les Écrits mariverains 2020, {{ISBN|978-2-9810768-2-3}}<ref name=":0" />. + +*2019: +** Tableaux et portraits mariverains, Capsules historiques, {{ISBN|978-2-9810768-2-3}}<ref>{{Lien web |langue=th |titre=เข้าสู่ระบบ Facebook |url=https://th-th.facebook.com/login/?next=https%3A%2F%2Fth-th.facebook.com%2Fcheqfm%2Fposts%2F3625148174272475%2F |site=Facebook |consulté le=2022-02-08}}</ref>{{,}}<ref>{{Lien web |langue=ms |titre=LES 1001 MÉTIERS DE LA CULTURE {{!}} M. Raymond Beaudet |url=https://ms-my.facebook.com/villesaintemarie/videos/327787105117018/ |consulté le=2022-02-08}}</ref>{{,}}<ref>{{Lien web |langue=fr-CA |titre=Des guides accrédités pour découvrir la Beauce |url=http://www.beaucemedia.ca/2021/03/11/des-guides-accredites-pour-decouvrir-la-beauce/ |site=Beauce Média |date=2021-03-11 |consulté le=2022-02-08}}</ref>{{,}}<ref>{{Lien web |langue=fr |titre=Chronique à Raymond {{!}} Mon site web |url=https://genealogiestemarie.ca/chronique-a-raymond |site=genealogiestemarie.ca |consulté le=2022-02-08}}</ref>{{,}}<ref>{{Lien web |langue=fr-FR |titre=Capsules historiques |url=https://www.sainte-marie.ca/loisirs-culture/programmation/275e-anniversaire-capsules-historiques/ |site=Ville de Sainte-Marie |consulté le=2022-02-08}}</ref>. +** Carnet d'un passager clandestin, nouvelle parue dans Les Écrits Mariverains 2019, {{ISBN|978-2-9810768-0-9}}<ref name=":0">{{Lien web |langue=fr-FR |titre=Écrits mariverains |url=https://www.sainte-marie.ca/loisirs-culture/ecrits-mariverains/ |site=Ville de Sainte-Marie |consulté le=2022-02-08}}</ref>. +** Voix de dépassement, scénario du spectacle de la Corporation des Instrumentistes Associés<ref name=":1">{{Lien web |langue=fr-CA |titre=La CIA célébrera son 10e anniversaire le 15 avril |url=http://www.beaucemedia.ca/2021/11/25/la-cia-celebrera-son-10e-anniversaire-le-15-avril/ |site=Beauce Média |date=2021-11-25 |consulté le=2022-02-08}}</ref>. +*2018 +** Marie-Claire et moi, nouvelle parue dans Les Écrits mariverains 2018, {{ISBN|978-2-9809683-9-6}}<ref name=":0" />. +** La dernière scène, scénario du spectacle de la Corporation des Instrumentistes Associés<ref name=":1" />. +** La boucherie, Projet personnel d'orientation, Ministère de l'Éducation et de l'Enseignement supérieur. +*2017 +** L'idée perdue, nouvelle parue dans Les Écrits mariverains 2017, {{ISBN|978-2-9809683-8-9}}<ref name=":0" />. +** Coups de cœur, scénario du spectacle de la Corporation des Instrumentistes Associés. +*2016 +** Prix coup de cœur du jury au Concours de twittérature du Centre de la Francophonie des Amériques 2016<ref>{{Lien web |langue=fr-CA |titre=La twittérature est victorieuse à Sainte-Marie |url=https://www.beaucemedia.ca/2016/05/20/la-twitterature-est-victorieuse-a-sainte-marie/ |site=Beauce Média |date=2016-05-20 |consulté le=2022-02-08}}</ref>{{,}}<ref>{{Lien web |langue=fr |nom=iClic (www.iclic.com) |titre=La twittérature s'invite au CFER de Beauce à Sainte-Marie |url=https://www.enbeauce.com/actualites/culturel/305797/la-twitterature-sinvite-au-cfer-de-beauce-a-sainte-marie |site=EnBeauce.com |consulté le=2022-02-08}}</ref>. +** Éliza Caztel de Sainte-Marie, nouvelle parue dans Les Écrits mariverains 2016, {{ISBN|978-2-9809683-7-2}}<ref name=":0" />. +** La CIA sème le trouble, scénario du spectacle de la Corporation des Instrumentistes Associés. +*2015 La photographie numérique, Projet personnel d'orientation, Ministère de l'Éducation du Loisir et du sport. +*2015 Impressions de voyage: le Chili, nouvelle parue dans Les Écrits mariverains 2015, {{ISBN|978-2-9809683-6-5}}<ref name=":0" />. +*2015 La CIA, version 5.0, scénario du spectacle de la Corporation des Instrumentistes Associés. +*2014, 26 juin, TEDx Sainte-Marie, La paternelle<ref>{{Lien web |langue=fr-FR |titre=La paternelle {{!}} Raymond Beaudet {{!}} TEDxSainteMarie |url=https://www.youtube.com/watch?v=wGqQ2FS-P-A |consulté le=2022-02-08}}</ref>{{,}}<ref>{{Lien web |langue=fr |nom=iClic (www.iclic.com) |titre=TEDx Sainte-Marie dévoile le nom de trois conférenciers |url=https://www.enbeauce.com/actualites/societe/125807/tedx-sainte-marie-devoile-le-nom-de-trois-conferenciers |site=EnBeauce.com |consulté le=2022-02-08}}</ref>. +*2014 Le désastreux destin d'Arlette Mallette, nouvelle parue dans Les Écrits mariverains 2014, {{ISBN|978-2-9809683-5-8}}<ref name=":0" />. +*2014 La CIA, L'espace d'une vie, scénario du spectacle de la Corporation des Instrumentistes Associés. +*2014 Carapaces, Roman publié aux Éditions Textes et Contextes, 279 pages. {{ISBN|978-2-923706-63-4}}<ref>{{Ouvrage|langue=en|titre=Carapaces par BEAUDET, RAYMOND|lire en ligne=http://www.renaud-bray.com/Livres_Produit.aspx?id=1531849&def=Carapaces%2cBEAUDET%2c+RAYMOND%2c9782923706634&utm_campaign=partage-réseaux-sociaux&utm_medium=réseaux-sociaux&utm_source=facebook-like|consulté le=2022-02-08}}</ref>{{,}}<ref>{{Lien web |titre=http://biblio.villemontlaurier.qc.ca/in/faces/details.xhtml?id=p%3A%3Ausmarcdef_0000064212 |url=http://biblio.villemontlaurier.qc.ca/in/faces/details.xhtml?id=p%3A%3Ausmarcdef_0000064212 |site=biblio.villemontlaurier.qc.ca |consulté le=2022-02-08}}</ref>. +*2013 La Politique, Projet personnel d'orientation, Ministère de l'Éducation du Loisir et du sport. +*2013 La CIA poursuit son enquête, scénario du spectacle de la Corporation des Instrumentistes Associés<ref>{{Lien web |langue=fr |nom=iClic (www.iclic.com) |titre=La CIA présente En quête de commissions à la Méchatigan |url=https://www.enbeauce.com/actualites/culturel/25305/la-cia-presente-en-quete-de-commissions-a-la-mechatigan |site=EnBeauce.com |consulté le=2022-02-08}}</ref>. +*2013 Napoléon, nouvelle parue dans Les Écrits mariverains 2013. {{ISBN|978-2-9809683-4-1}}<ref name=":0" />. +*2012 Ménage de cave, nouvelle parue dans Les Écrits mariverains, 2012. {{ISBN|978-2-980-9683-3-4}}<ref name=":0" />. +*2012 En quête de mission, scénario du spectacle de la Corporation des Instrumentistes Associés. +*2012 Finaliste dans deux concours de Zone d’écriture de [[Société Radio-Canada|Radio-Canada]] en twittérature. +*2011 La CIA autour du monde, scénario du spectacle de la Corporation des Instrumentistes Associés. +*2011 En deuxième vitesse, nouvelle parue dans Les Écrits mariverains 2011. {{ISBN|978-2-980-9683-1-0|}}<ref name=":0" />. +*2010 Biographie de Jeannine Rousseau et Rolland Massicotte, scénario. Ocus Pocus Production. +*2010 Le Projet Adam et Ève, nouvelle parue dans Écrits mariverains 2010, {{ISBN|978-2-980-9683-1-0}}<ref name=":0" />. +*2009 Alexandre et Cassiopée, nouvelle parue dans Écrits mariverains 2009<ref name=":0" />. +*2008 ''Dans un mois, dans un an'', Roman publié dans la collection Les mots inventifs, Les Éditions du Mécène, 576 pages. {{ISBN|978-2-923150-61-1}}<ref>{{Lien web |langue=fr-FR |titre=Raymond Beaudet |url=https://www.sainte-marie.ca/repertoire_culturel/raymond-beaudet/ |site=Ville de Sainte-Marie |consulté le=2022-02-08}}</ref>. +*2007 ''L'écriture'', Projet personnel d'orientation, Ministère de l'Éducation du Loisir et du sport. +*2005 ''29, rue des Remparts'', Roman publié dans la collection Les mots inventifs, Les éditions du Mécène, 192 pages. {{ISBN|2-923150-28-7}}<ref>{{Lien web |langue=fr-FR |titre=Raymond Beaudet |url=https://www.sainte-marie.ca/repertoire_culturel/raymond-beaudet/ |site=Ville de Sainte-Marie |consulté le=2022-02-08}}</ref>. +*2003 ''Vie 101'', Essai publié dans la collection Les mots utiles, Les Éditions du Mécène. 126 pages. {{ISBN|2-923150-03-1}} +*2002 ''Le groupe conseil fiscalis'', scénario produit pour le groupe conseil Fiscalis. +*2001 ''Lévis, ville nouvelle'', scénario de deux émissions de trente minutes pour le Comité de transition de la ville de Lévis et Canal Vox +*2001 ''L’école québécoise, ce qu’il y a de mieux pour votre enfant'', scénario produit pour le Ministère de l’éducation du Québec. +*2000 ''Le jeu en valait-il la chandelle?'' scénario produit pour le Centre québécois d’excellence pour la prévention et le traitement du jeu. (Université Laval) +*1999 ''Le hasard, Lucky, on peut rien y changer'', scénario produit pour le Centre québécois d’excellence pour la prévention et le traitement du jeu. (Université Laval) +*1999 ''Un pacte fiscal pour l’an 2000, des idées, de la solidarité'', scénario produit pour l’Union des Municipalités régionales de comté et des municipalités locales. +*1999 ''Détect-o-max et Une journée avec Détect-o-max'', deux scénarios produits pour Conception Ro-main inc. +*1999 ''Propane GRG, à l’écoute de ses clients'', scénario produit pour la firme Propane GRG inc. +*1998 ''Maître du mètre'', scénario d’un documentaire sur les 25 ans du système métrique au Québec. +*1997 ''Le temps des sucres'', scénario produit pour la firme Shady Maple Farms. +*1996 ''Le Génie de campagne'', scénario produit pour les Forces armées canadiennes. +*1996 ''La Compagnie franche de la Marine de Québec'', scénario produit pour les Forces armées canadiennes. +*1995 ''Bon séjour à l'École navale de Québec'', scénario produit pour les Forces armées canadiennes. +*1994 ''Un leadership, des services'', scénario produit pour la Fédération des commissions scolaires du Québec. +*1993 ''Les clubs de recherche d'emploi'', scénario produit pour le Ministère de l'Emploi et de l'Immigration du Canada. +*1992 ''Fiers de notre avenir'', scénario produit pour l'Assurance-Vie Desjardins. +*1992 ''Responsible Leadership'', scénario produit pour la compagnie papetière Donohue. (Prix Corpo Vision) +*1992 Scénarisation d'un ensemble de huit vidéos destinées aux écoles secondaires et aux collèges du Québec, pour la Fondation de l'entrepreneurship Québécois. (Prix Adate) +*1991 ''Guide à l'intention du nouveau personnel'', rédaction d'une brochure d'accueil pour la Commission scolaire Louis-Fréchette. +*1990 Comment ça va chez vous? scénario produit pour la Confédération des caisses Desjardins. +*1990 ''Le choc est aussi grand pour les petits.'' I et II, scénario de deux vidéos pour la Régie de l'assurance automobile du Québec. +*1990 Participation au concours de nouvelles de Radio-Canada avec ''Alexandre et Cassiopée.'' +*1989 Participation au concours de nouvelles de Radio-Canada avec ''Le mystère de la cathédrale.'' +*1989 ''La Double vie d'Antoine Gagnon, Ministre'', scénario d'un téléfilm pour Radio-Canada. +*1988 ''Passeport pour la liberté'', Les Quinze Éditeurs, Montréal. {{ISBN|2-89026-368-1}}. (Prix Robert-Cliche)<ref>{{Lien web |langue=en |titre=PASSEPORT POUR LA LIBERTE. ROMAN by RAYMOND BEAUDET: bon Couverture souple (1988) {{!}} Le-Livre |url=https://www.abebooks.com/9782864770886/PASSEPORT-LIBERTE-ROMAN-RAYMOND-BEAUDET-2864770881/plp |site=www.abebooks.com |consulté le=2022-02-08}}</ref>. +*1988 Coédition aux Éditions Jean Picollec, à Paris, du roman ''Passeport pour la liberté'', 303 pages, {{ISBN|2-86477-088-1}}<ref>{{Lien web |titre=Raymond Beaudet |url=https://www.goodreads.com/author/show/1956588.Raymond_Beaudet |site=www.goodreads.com |consulté le=2022-02-08}}</ref>. +*1987 Participation au concours de nouvelles de Radio-''Canada avec Le secret''. +*1987 Collaboration au scénario et aux dialogues de ''Vie décolle'', vidéo produite pour la Commission scolaire Abénakis (21 minutes). +*1983 Rédaction et direction de ''C'est qui ma maman à moi?'' pièce de théâtre montée par la troupe de la Polyvalente Benoît-Vachon de Sainte-Marie de Beauce. +*1982 Rédaction et direction de ''Au nom du père, de la fille et du Sain d'esprit'', pièce de théâtre montée par la troupe de la Polyvalente Benoît -Vachon de Sainte-Marie de Beauce. +*1977 Corédaction et mise en scène de la pièce ''Coup de Théâtre à Ste-Onction'' jouée par les élèves de la Polyvalente Benoît-Vachon de Sainte-Marie de Beauce + +== Références == +{{references}} +== Liens externes == +* {{Liens biographiques}} + +{{Portail|Québec|littérature}} + +{{CLEDETRI:Beaudet, Raymond}} +[[Catégorie:Écrivain québécois|Beaudet, Raymond]] +[[Catégorie:Naissance en 1950]] + a2pct8gy31cl2cng9iylj5mlwfjaiw2 + + + 194244595 + 192971746 + 2022-06-04T07:12:28Z + + Ange Gabriel + 263831 + + + v2.04 - [[P:CS|Correction syntaxique]] (Référence en double) + wikitext + text/x-wiki + {{voir homonymes|Beaudet}} +{{Infobox Biographie2}} +'''Raymond Beaudet''' (Québec 1950 - ) est un écrivain et un scénariste [[Québec|québécois]]<ref>[https://www.sainte-marie.ca/repertoire_culturel/raymond-beaudet sainte-marie.ca]/</ref>. Détenteur d’une maîtrise en [[philosophie]] de l’[[Université Laval]] (1975) on le retrouve successivement enseignant, syndicaliste, secrétaire particulier du Ministre des Richesses Naturelles, [[Yves Bérubé]], directeur d’école primaire et directeur d’école secondaire (Polyvalente Benoît-Vachon).Il est l’auteur de 5 romans, d’un essai, d'une biographie, d'un recueil de contes, d’une trentaine de scénarios, de plusieurs nouvelles et capsules historiques, de même que de trois pièces de théâtre. Depuis 2014, il est actif en [[twittérature]]<ref>{{Lien web |langue=fr |titre=https://twitter.com/raymondbeaudet |url=https://twitter.com/raymondbeaudet |site=Twitter |consulté le=2022-02-08}}</ref>. + +== Honneurs == +*[https://www.prixdupatrimoine.ca Prix du Patrimoine] (2019) Catégorie Interprétation et Diffusion<ref>{{Lien web |langue=fr |nom=iClic (www.iclic.com) |titre=Les lauréats du Prix du patrimoine de Nouvelle-Beauce sont dévoilés |url=https://www.enbeauce.com/actualites/culturel/21829/les-laureats-du-prix-du-patrimoine-de-nouvelle-beauce-sont-devoiles |site=EnBeauce.com |consulté le=2022-02-08}}</ref>. +*Prix coup de cœur du jury au Concours de twittérature du [https://francophoniedesameriques.com Centre de la Francophonie des Amériques] 2016 +* [https://www.prixdupatrimoine.ca Prix du Patrimoine] (2011) Catégorie Interprétation et Diffusion<ref>{{Lien web |langue=fr |nom=iClic (www.iclic.com) |titre=Les lauréats des Prix du patrimoine 2019 MRC Nouvelle-Beauce dévoilés |url=https://www.enbeauce.com/actualites/culturel/364234/les-laureats-des-prix-du-patrimoine-2019-mrc-nouvelle-beauce-devoiles |site=EnBeauce.com |consulté le=2022-02-08}}</ref>. +* [[Prix Robert-Cliche]] ([[1988]]), ''Passeport pour la liberté''<ref>{{lien web | url=http://www.edvlb.com/prixrobertcliche/laureats.aspx | titre=Lauréats du prix Robert-Cliche | consulté le=24 juin 2011}}</ref> +* Prix Corpo-vision (1992) +* Prix Adate (1993) + +== Bibliographie == +*2021 Les lieux enchantés du Parc Taschereau, publié aux Éditions de la Roupille, 96 pages, {{ISBN|978-2-924304-45-7}}<ref>{{Lien web |langue=fr-CA |titre=Des guides accrédités pour découvrir la Beauce |url=https://www.leclaireurprogres.ca/des-guides-accredites-pour-decouvrir-la-beauce/ |site=L'Éclaireur Progrès |date=2021-03-11 |consulté le=2022-02-08}}</ref>{{,}}<ref>{{Lien web |langue=fr-FR |prénom=Antoine |nom=Desrosiers |titre=Journée internationale des droits des femmes: huit femmes qui ont marqué Sainte-Marie à leur façon |url=https://mabeauce.com/journee-internationale-des-droits-des-femmes-huit-femmes-qui-ont-marque-sainte-marie-a-leur-facon/ |site=Ma Beauce |date=2021-03-08 |consulté le=2022-02-08}}</ref>{{,}}<ref>{{Lien web |langue=en |titre=Conférence - L'écriture sa passion avec Raymond Beaudet à l'Éco-refuge du Domaine Taschereau -10$/p. - Sainte-Marie, 2021-06-29 |url=https://ca.datescloud.com/conference-lecriture-sa-passion-avec-raymond-beaudet-a-leco-sainte-marie-305685960.html |site=dates.cloud |consulté le=2022-02-08}}</ref>{{,}}<ref>{{Lien web |langue=fr-FR |titre=Visites guidées et groupes touristiques {{!}} Domaine Taschereau |url=http://www.domainetaschereau.com/?page_id=634 |consulté le=2022-02-08}}</ref>{{,}}<ref>{{Lien web |langue=fr |titre=Se connecter à Facebook |url=https://www.facebook.com/ |site=Facebook |consulté le=2022-02-08}}</ref>{{,}}<ref>{{Lien web |langue=fr |nom=iClic (www.iclic.com) |titre=Les Lieux enchantés du parc Taschereau : des contes qui prennent vie |url=https://www.enbeauce.com/actualites/culturel/437952/les-lieux-enchantes-du-parc-taschereau-des-contes-qui-prennent-vie |site=EnBeauce.com |consulté le=2022-02-08}}</ref>. +*2021 Normand Maurice, père de la récupération au Québec, biographie publiée aux Éditions de la Roupille, 176 pages, {{ISBN|978-2-924304-39-6}}<ref>{{Lien web |langue=fr-CA |titre=Un livre neuf pour le père de la récupération |url=http://www.beaucemedia.ca/2021/06/25/un-livre-neuf-pour-le-pere-de-la-recuperation/ |site=Beauce Média |date=2021-06-25 |consulté le=2022-02-08}}</ref>{{,}}<ref>{{Lien web |langue=fr |prénom=Raymond |nom=Beaudet |titre=Normand Maurice : père de la récupération au Québec par Raymond Beaudet {{!}} Biographies {{!}} Gens d'affaire {{!}} Leslibraires.ca |url=https://www.leslibraires.ca/livres/normand-maurice-pere-de-la-recuperation-raymond-beaudet-9782924304396.html |site=www.leslibraires.ca |consulté le=2022-02-08}}</ref>{{,}}<ref>{{Lien web |langue=fr-FR |titre=Réseau CFER » Lancement du livre sur Normand Maurice |url=https://reseaucfer.ca/nouvelles/lancement-du-livre-sur-normand-maurice/ |consulté le=2022-02-08}}</ref>{{,}}<ref>{{Ouvrage|langue=en|titre=Normand Maurice, père de la récupération au Québec par BEAUDET, RAYMOND|lire en ligne=http://www.renaud-bray.com/Livres_Produit.aspx?id=3353354&def=Normand+Maurice%2c+p%c3%a8re+de+la+r%c3%a9cup%c3%a9ration+au+Qu%c3%a9bec%2cBEAUDET%2c+RAYMOND%2c9782924304396&utm_campaign=partage-réseaux-sociaux&utm_medium=réseaux-sociaux&utm_source=facebook-like|consulté le=2022-02-08}}</ref>. +*2021 Le bonheur, chroniques d'une vie à la campagne, publié aux Éditions de la Roupille, 270 pages {{ISBN|978-2-924304-40-2}}<ref>{{Lien web |langue=fr |prénom=Hélène |nom=Moore |titre=Le bonheur. Chroniques d’une vie à la campagne par Raymond Beaudet, Hélène Moore {{!}} Biographies {{!}} Faits vécus/Bio divers {{!}} Leslibraires.ca |url=https://www.leslibraires.ca/livres/le-bonheur-chroniques-d-une-vie-raymond-beaudet-9782924304402.html |site=www.leslibraires.ca |consulté le=2022-02-08}}</ref>{{,}}<ref>{{Lien web |langue=fr-ca |prénom=Cool 103,5 |nom=FM |titre="Le bonheur" 6ième ouvrage de l'auteur Raymond Beaudet |url=https://www.coolfm.biz/nouvelle/5205--le-bonheur-6ieme-ouvrage-de-l-auteur-raymond-beaudet |site=Cool 103,5 FM |consulté le=2022-02-08}}</ref>{{,}}<ref>{{Lien web |langue=fr-FR |prénom=Antoine |nom=Desrosiers |titre=Un sixième ouvrage pour l'auteur Raymond Beaudet de Sainte-Marie |url=https://mabeauce.com/un-sixieme-ouvrage-pour-lauteur-raymond-beaudet-de-sainte-marie/ |site=Ma Beauce |date=2021-02-25 |consulté le=2022-02-08}}</ref>{{,}}<ref>{{Lien web |langue=ne |titre=Le bonheur, par Raymond BEAUDET et Hélène MOORE |url=https://ne-np.facebook.com/laroupille/videos/531892437783096/ |consulté le=2022-02-08}}</ref>{{,}}<ref>{{Lien web |langue=fr |titre=L'écrivain... - Éditions La Roupille, Service d'édition |url=https://www.facebook.com/laroupille/videos/772815796737521/ |consulté le=2022-02-08}}</ref>{{,}}<ref>{{Lien web |langue=hi |titre=BIBLIOTHÈQUE {{!}} « Le bonheur :... - Ville de Sainte-Marie |url=https://hi-in.facebook.com/villesaintemarie/videos/128982392487598/ |consulté le=2022-02-08}}</ref>{{,}}<ref>{{Lien web |langue=fr-CA |titre=Trouver le bonheur à la campagne |url=http://www.beaucemedia.ca/2021/02/24/trouver-le-bonheur-a-la-campagne/ |site=Beauce Média |date=2021-02-24 |consulté le=2022-02-08}}</ref>. +*2020 En décide de vendre, nouvelle parue dans Les Écrits mariverains 2020, {{ISBN|978-2-9810768-2-3}}<ref name=":0" />. + +*2019: +** Tableaux et portraits mariverains, Capsules historiques, {{ISBN|978-2-9810768-2-3}}<ref>{{Lien web |langue=th |titre=เข้าสู่ระบบ Facebook |url=https://th-th.facebook.com/login/?next=https%3A%2F%2Fth-th.facebook.com%2Fcheqfm%2Fposts%2F3625148174272475%2F |site=Facebook |consulté le=2022-02-08}}</ref>{{,}}<ref>{{Lien web |langue=ms |titre=LES 1001 MÉTIERS DE LA CULTURE {{!}} M. Raymond Beaudet |url=https://ms-my.facebook.com/villesaintemarie/videos/327787105117018/ |consulté le=2022-02-08}}</ref>{{,}}<ref>{{Lien web |langue=fr-CA |titre=Des guides accrédités pour découvrir la Beauce |url=http://www.beaucemedia.ca/2021/03/11/des-guides-accredites-pour-decouvrir-la-beauce/ |site=Beauce Média |date=2021-03-11 |consulté le=2022-02-08}}</ref>{{,}}<ref>{{Lien web |langue=fr |titre=Chronique à Raymond {{!}} Mon site web |url=https://genealogiestemarie.ca/chronique-a-raymond |site=genealogiestemarie.ca |consulté le=2022-02-08}}</ref>{{,}}<ref>{{Lien web |langue=fr-FR |titre=Capsules historiques |url=https://www.sainte-marie.ca/loisirs-culture/programmation/275e-anniversaire-capsules-historiques/ |site=Ville de Sainte-Marie |consulté le=2022-02-08}}</ref>. +** Carnet d'un passager clandestin, nouvelle parue dans Les Écrits Mariverains 2019, {{ISBN|978-2-9810768-0-9}}<ref name=":0">{{Lien web |langue=fr-FR |titre=Écrits mariverains |url=https://www.sainte-marie.ca/loisirs-culture/ecrits-mariverains/ |site=Ville de Sainte-Marie |consulté le=2022-02-08}}</ref>. +** Voix de dépassement, scénario du spectacle de la Corporation des Instrumentistes Associés<ref name=":1">{{Lien web |langue=fr-CA |titre=La CIA célébrera son 10e anniversaire le 15 avril |url=http://www.beaucemedia.ca/2021/11/25/la-cia-celebrera-son-10e-anniversaire-le-15-avril/ |site=Beauce Média |date=2021-11-25 |consulté le=2022-02-08}}</ref>. +*2018 +** Marie-Claire et moi, nouvelle parue dans Les Écrits mariverains 2018, {{ISBN|978-2-9809683-9-6}}<ref name=":0" />. +** La dernière scène, scénario du spectacle de la Corporation des Instrumentistes Associés<ref name=":1" />. +** La boucherie, Projet personnel d'orientation, Ministère de l'Éducation et de l'Enseignement supérieur. +*2017 +** L'idée perdue, nouvelle parue dans Les Écrits mariverains 2017, {{ISBN|978-2-9809683-8-9}}<ref name=":0" />. +** Coups de cœur, scénario du spectacle de la Corporation des Instrumentistes Associés. +*2016 +** Prix coup de cœur du jury au Concours de twittérature du Centre de la Francophonie des Amériques 2016<ref>{{Lien web |langue=fr-CA |titre=La twittérature est victorieuse à Sainte-Marie |url=https://www.beaucemedia.ca/2016/05/20/la-twitterature-est-victorieuse-a-sainte-marie/ |site=Beauce Média |date=2016-05-20 |consulté le=2022-02-08}}</ref>{{,}}<ref>{{Lien web |langue=fr |nom=iClic (www.iclic.com) |titre=La twittérature s'invite au CFER de Beauce à Sainte-Marie |url=https://www.enbeauce.com/actualites/culturel/305797/la-twitterature-sinvite-au-cfer-de-beauce-a-sainte-marie |site=EnBeauce.com |consulté le=2022-02-08}}</ref>. +** Éliza Caztel de Sainte-Marie, nouvelle parue dans Les Écrits mariverains 2016, {{ISBN|978-2-9809683-7-2}}<ref name=":0" />. +** La CIA sème le trouble, scénario du spectacle de la Corporation des Instrumentistes Associés. +*2015 La photographie numérique, Projet personnel d'orientation, Ministère de l'Éducation du Loisir et du sport. +*2015 Impressions de voyage: le Chili, nouvelle parue dans Les Écrits mariverains 2015, {{ISBN|978-2-9809683-6-5}}<ref name=":0" />. +*2015 La CIA, version 5.0, scénario du spectacle de la Corporation des Instrumentistes Associés. +*2014, 26 juin, TEDx Sainte-Marie, La paternelle<ref>{{Lien web |langue=fr-FR |titre=La paternelle {{!}} Raymond Beaudet {{!}} TEDxSainteMarie |url=https://www.youtube.com/watch?v=wGqQ2FS-P-A |consulté le=2022-02-08}}</ref>{{,}}<ref>{{Lien web |langue=fr |nom=iClic (www.iclic.com) |titre=TEDx Sainte-Marie dévoile le nom de trois conférenciers |url=https://www.enbeauce.com/actualites/societe/125807/tedx-sainte-marie-devoile-le-nom-de-trois-conferenciers |site=EnBeauce.com |consulté le=2022-02-08}}</ref>. +*2014 Le désastreux destin d'Arlette Mallette, nouvelle parue dans Les Écrits mariverains 2014, {{ISBN|978-2-9809683-5-8}}<ref name=":0" />. +*2014 La CIA, L'espace d'une vie, scénario du spectacle de la Corporation des Instrumentistes Associés. +*2014 Carapaces, Roman publié aux Éditions Textes et Contextes, 279 pages. {{ISBN|978-2-923706-63-4}}<ref>{{Ouvrage|langue=en|titre=Carapaces par BEAUDET, RAYMOND|lire en ligne=http://www.renaud-bray.com/Livres_Produit.aspx?id=1531849&def=Carapaces%2cBEAUDET%2c+RAYMOND%2c9782923706634&utm_campaign=partage-réseaux-sociaux&utm_medium=réseaux-sociaux&utm_source=facebook-like|consulté le=2022-02-08}}</ref>{{,}}<ref>{{Lien web |titre=http://biblio.villemontlaurier.qc.ca/in/faces/details.xhtml?id=p%3A%3Ausmarcdef_0000064212 |url=http://biblio.villemontlaurier.qc.ca/in/faces/details.xhtml?id=p%3A%3Ausmarcdef_0000064212 |site=biblio.villemontlaurier.qc.ca |consulté le=2022-02-08}}</ref>. +*2013 La Politique, Projet personnel d'orientation, Ministère de l'Éducation du Loisir et du sport. +*2013 La CIA poursuit son enquête, scénario du spectacle de la Corporation des Instrumentistes Associés<ref>{{Lien web |langue=fr |nom=iClic (www.iclic.com) |titre=La CIA présente En quête de commissions à la Méchatigan |url=https://www.enbeauce.com/actualites/culturel/25305/la-cia-presente-en-quete-de-commissions-a-la-mechatigan |site=EnBeauce.com |consulté le=2022-02-08}}</ref>. +*2013 Napoléon, nouvelle parue dans Les Écrits mariverains 2013. {{ISBN|978-2-9809683-4-1}}<ref name=":0" />. +*2012 Ménage de cave, nouvelle parue dans Les Écrits mariverains, 2012. {{ISBN|978-2-980-9683-3-4}}<ref name=":0" />. +*2012 En quête de mission, scénario du spectacle de la Corporation des Instrumentistes Associés. +*2012 Finaliste dans deux concours de Zone d’écriture de [[Société Radio-Canada|Radio-Canada]] en twittérature. +*2011 La CIA autour du monde, scénario du spectacle de la Corporation des Instrumentistes Associés. +*2011 En deuxième vitesse, nouvelle parue dans Les Écrits mariverains 2011. {{ISBN|978-2-980-9683-1-0|}}<ref name=":0" />. +*2010 Biographie de Jeannine Rousseau et Rolland Massicotte, scénario. Ocus Pocus Production. +*2010 Le Projet Adam et Ève, nouvelle parue dans Écrits mariverains 2010, {{ISBN|978-2-980-9683-1-0}}<ref name=":0" />. +*2009 Alexandre et Cassiopée, nouvelle parue dans Écrits mariverains 2009<ref name=":0" />. +*2008 ''Dans un mois, dans un an'', Roman publié dans la collection Les mots inventifs, Les Éditions du Mécène, 576 pages. {{ISBN|978-2-923150-61-1}}<ref name="d9">{{Lien web |langue=fr-FR |titre=Raymond Beaudet |url=https://www.sainte-marie.ca/repertoire_culturel/raymond-beaudet/ |site=Ville de Sainte-Marie |consulté le=2022-02-08}}</ref>. +*2007 ''L'écriture'', Projet personnel d'orientation, Ministère de l'Éducation du Loisir et du sport. +*2005 ''29, rue des Remparts'', Roman publié dans la collection Les mots inventifs, Les éditions du Mécène, 192 pages. {{ISBN|2-923150-28-7}}<ref name="d9" />. +*2003 ''Vie 101'', Essai publié dans la collection Les mots utiles, Les Éditions du Mécène. 126 pages. {{ISBN|2-923150-03-1}} +*2002 ''Le groupe conseil fiscalis'', scénario produit pour le groupe conseil Fiscalis. +*2001 ''Lévis, ville nouvelle'', scénario de deux émissions de trente minutes pour le Comité de transition de la ville de Lévis et Canal Vox +*2001 ''L’école québécoise, ce qu’il y a de mieux pour votre enfant'', scénario produit pour le Ministère de l’éducation du Québec. +*2000 ''Le jeu en valait-il la chandelle?'' scénario produit pour le Centre québécois d’excellence pour la prévention et le traitement du jeu. (Université Laval) +*1999 ''Le hasard, Lucky, on peut rien y changer'', scénario produit pour le Centre québécois d’excellence pour la prévention et le traitement du jeu. (Université Laval) +*1999 ''Un pacte fiscal pour l’an 2000, des idées, de la solidarité'', scénario produit pour l’Union des Municipalités régionales de comté et des municipalités locales. +*1999 ''Détect-o-max et Une journée avec Détect-o-max'', deux scénarios produits pour Conception Ro-main inc. +*1999 ''Propane GRG, à l’écoute de ses clients'', scénario produit pour la firme Propane GRG inc. +*1998 ''Maître du mètre'', scénario d’un documentaire sur les 25 ans du système métrique au Québec. +*1997 ''Le temps des sucres'', scénario produit pour la firme Shady Maple Farms. +*1996 ''Le Génie de campagne'', scénario produit pour les Forces armées canadiennes. +*1996 ''La Compagnie franche de la Marine de Québec'', scénario produit pour les Forces armées canadiennes. +*1995 ''Bon séjour à l'École navale de Québec'', scénario produit pour les Forces armées canadiennes. +*1994 ''Un leadership, des services'', scénario produit pour la Fédération des commissions scolaires du Québec. +*1993 ''Les clubs de recherche d'emploi'', scénario produit pour le Ministère de l'Emploi et de l'Immigration du Canada. +*1992 ''Fiers de notre avenir'', scénario produit pour l'Assurance-Vie Desjardins. +*1992 ''Responsible Leadership'', scénario produit pour la compagnie papetière Donohue. (Prix Corpo Vision) +*1992 Scénarisation d'un ensemble de huit vidéos destinées aux écoles secondaires et aux collèges du Québec, pour la Fondation de l'entrepreneurship Québécois. (Prix Adate) +*1991 ''Guide à l'intention du nouveau personnel'', rédaction d'une brochure d'accueil pour la Commission scolaire Louis-Fréchette. +*1990 Comment ça va chez vous? scénario produit pour la Confédération des caisses Desjardins. +*1990 ''Le choc est aussi grand pour les petits.'' I et II, scénario de deux vidéos pour la Régie de l'assurance automobile du Québec. +*1990 Participation au concours de nouvelles de Radio-Canada avec ''Alexandre et Cassiopée.'' +*1989 Participation au concours de nouvelles de Radio-Canada avec ''Le mystère de la cathédrale.'' +*1989 ''La Double vie d'Antoine Gagnon, Ministre'', scénario d'un téléfilm pour Radio-Canada. +*1988 ''Passeport pour la liberté'', Les Quinze Éditeurs, Montréal. {{ISBN|2-89026-368-1}}. (Prix Robert-Cliche)<ref>{{Lien web |langue=en |titre=PASSEPORT POUR LA LIBERTE. ROMAN by RAYMOND BEAUDET: bon Couverture souple (1988) {{!}} Le-Livre |url=https://www.abebooks.com/9782864770886/PASSEPORT-LIBERTE-ROMAN-RAYMOND-BEAUDET-2864770881/plp |site=www.abebooks.com |consulté le=2022-02-08}}</ref>. +*1988 Coédition aux Éditions Jean Picollec, à Paris, du roman ''Passeport pour la liberté'', 303 pages, {{ISBN|2-86477-088-1}}<ref>{{Lien web |titre=Raymond Beaudet |url=https://www.goodreads.com/author/show/1956588.Raymond_Beaudet |site=www.goodreads.com |consulté le=2022-02-08}}</ref>. +*1987 Participation au concours de nouvelles de Radio-''Canada avec Le secret''. +*1987 Collaboration au scénario et aux dialogues de ''Vie décolle'', vidéo produite pour la Commission scolaire Abénakis (21 minutes). +*1983 Rédaction et direction de ''C'est qui ma maman à moi?'' pièce de théâtre montée par la troupe de la Polyvalente Benoît-Vachon de Sainte-Marie de Beauce. +*1982 Rédaction et direction de ''Au nom du père, de la fille et du Sain d'esprit'', pièce de théâtre montée par la troupe de la Polyvalente Benoît -Vachon de Sainte-Marie de Beauce. +*1977 Corédaction et mise en scène de la pièce ''Coup de Théâtre à Ste-Onction'' jouée par les élèves de la Polyvalente Benoît-Vachon de Sainte-Marie de Beauce + +== Références == +{{references}} +== Liens externes == +* {{Liens biographiques}} + +{{Portail|Québec|littérature}} + +{{CLEDETRI:Beaudet, Raymond}} +[[Catégorie:Écrivain québécois|Beaudet, Raymond]] +[[Catégorie:Naissance en 1950]] + 4lurt78z7g25uswavb40kkclo4li695 + + + 196122612 + 194244595 + 2022-08-14T23:03:40Z + + 80.215.130.232 + + Liens ajoutés + wikitext + text/x-wiki + {{voir homonymes|Beaudet}} +{{Infobox Biographie2}} +'''Raymond Beaudet''' (Québec 1950 - ) est un [[écrivain]] et [[scénariste]] [[Québec|québécois]]<ref>[https://www.sainte-marie.ca/repertoire_culturel/raymond-beaudet sainte-marie.ca]/</ref>. Détenteur d’une maîtrise en [[philosophie]] de l’[[Université Laval]] (1975) on le retrouve successivement enseignant, syndicaliste, secrétaire particulier du Ministre des Richesses Naturelles, [[Yves Bérubé]], directeur d’école primaire et directeur d’école secondaire (Polyvalente Benoît-Vachon).Il est l’auteur de 5 romans, d’un essai, d'une biographie, d'un recueil de contes, d’une trentaine de scénarios, de plusieurs nouvelles et capsules historiques, de même que de trois pièces de théâtre. Depuis 2014, il est actif en [[twittérature]]<ref>{{Lien web |langue=fr |titre=https://twitter.com/raymondbeaudet |url=https://twitter.com/raymondbeaudet |site=Twitter |consulté le=2022-02-08}}</ref>. + +== Honneurs == +*[https://www.prixdupatrimoine.ca Prix du Patrimoine] (2019) Catégorie Interprétation et Diffusion<ref>{{Lien web |langue=fr |nom=iClic (www.iclic.com) |titre=Les lauréats du Prix du patrimoine de Nouvelle-Beauce sont dévoilés |url=https://www.enbeauce.com/actualites/culturel/21829/les-laureats-du-prix-du-patrimoine-de-nouvelle-beauce-sont-devoiles |site=EnBeauce.com |consulté le=2022-02-08}}</ref>. +*Prix coup de cœur du jury au Concours de twittérature du [https://francophoniedesameriques.com Centre de la Francophonie des Amériques] 2016 +* [https://www.prixdupatrimoine.ca Prix du Patrimoine] (2011) Catégorie Interprétation et Diffusion<ref>{{Lien web |langue=fr |nom=iClic (www.iclic.com) |titre=Les lauréats des Prix du patrimoine 2019 MRC Nouvelle-Beauce dévoilés |url=https://www.enbeauce.com/actualites/culturel/364234/les-laureats-des-prix-du-patrimoine-2019-mrc-nouvelle-beauce-devoiles |site=EnBeauce.com |consulté le=2022-02-08}}</ref>. +* [[Prix Robert-Cliche]] ([[1988]]), ''Passeport pour la liberté''<ref>{{lien web | url=http://www.edvlb.com/prixrobertcliche/laureats.aspx | titre=Lauréats du prix Robert-Cliche | consulté le=24 juin 2011}}</ref> +* Prix Corpo-vision (1992) +* Prix Adate (1993) + +== Bibliographie == +*2021 Les lieux enchantés du Parc Taschereau, publié aux Éditions de la Roupille, 96 pages, {{ISBN|978-2-924304-45-7}}<ref>{{Lien web |langue=fr-CA |titre=Des guides accrédités pour découvrir la Beauce |url=https://www.leclaireurprogres.ca/des-guides-accredites-pour-decouvrir-la-beauce/ |site=L'Éclaireur Progrès |date=2021-03-11 |consulté le=2022-02-08}}</ref>{{,}}<ref>{{Lien web |langue=fr-FR |prénom=Antoine |nom=Desrosiers |titre=Journée internationale des droits des femmes: huit femmes qui ont marqué Sainte-Marie à leur façon |url=https://mabeauce.com/journee-internationale-des-droits-des-femmes-huit-femmes-qui-ont-marque-sainte-marie-a-leur-facon/ |site=Ma Beauce |date=2021-03-08 |consulté le=2022-02-08}}</ref>{{,}}<ref>{{Lien web |langue=en |titre=Conférence - L'écriture sa passion avec Raymond Beaudet à l'Éco-refuge du Domaine Taschereau -10$/p. - Sainte-Marie, 2021-06-29 |url=https://ca.datescloud.com/conference-lecriture-sa-passion-avec-raymond-beaudet-a-leco-sainte-marie-305685960.html |site=dates.cloud |consulté le=2022-02-08}}</ref>{{,}}<ref>{{Lien web |langue=fr-FR |titre=Visites guidées et groupes touristiques {{!}} Domaine Taschereau |url=http://www.domainetaschereau.com/?page_id=634 |consulté le=2022-02-08}}</ref>{{,}}<ref>{{Lien web |langue=fr |titre=Se connecter à Facebook |url=https://www.facebook.com/ |site=Facebook |consulté le=2022-02-08}}</ref>{{,}}<ref>{{Lien web |langue=fr |nom=iClic (www.iclic.com) |titre=Les Lieux enchantés du parc Taschereau : des contes qui prennent vie |url=https://www.enbeauce.com/actualites/culturel/437952/les-lieux-enchantes-du-parc-taschereau-des-contes-qui-prennent-vie |site=EnBeauce.com |consulté le=2022-02-08}}</ref>. +*2021 Normand Maurice, père de la récupération au Québec, biographie publiée aux Éditions de la Roupille, 176 pages, {{ISBN|978-2-924304-39-6}}<ref>{{Lien web |langue=fr-CA |titre=Un livre neuf pour le père de la récupération |url=http://www.beaucemedia.ca/2021/06/25/un-livre-neuf-pour-le-pere-de-la-recuperation/ |site=Beauce Média |date=2021-06-25 |consulté le=2022-02-08}}</ref>{{,}}<ref>{{Lien web |langue=fr |prénom=Raymond |nom=Beaudet |titre=Normand Maurice : père de la récupération au Québec par Raymond Beaudet {{!}} Biographies {{!}} Gens d'affaire {{!}} Leslibraires.ca |url=https://www.leslibraires.ca/livres/normand-maurice-pere-de-la-recuperation-raymond-beaudet-9782924304396.html |site=www.leslibraires.ca |consulté le=2022-02-08}}</ref>{{,}}<ref>{{Lien web |langue=fr-FR |titre=Réseau CFER » Lancement du livre sur Normand Maurice |url=https://reseaucfer.ca/nouvelles/lancement-du-livre-sur-normand-maurice/ |consulté le=2022-02-08}}</ref>{{,}}<ref>{{Ouvrage|langue=en|titre=Normand Maurice, père de la récupération au Québec par BEAUDET, RAYMOND|lire en ligne=http://www.renaud-bray.com/Livres_Produit.aspx?id=3353354&def=Normand+Maurice%2c+p%c3%a8re+de+la+r%c3%a9cup%c3%a9ration+au+Qu%c3%a9bec%2cBEAUDET%2c+RAYMOND%2c9782924304396&utm_campaign=partage-réseaux-sociaux&utm_medium=réseaux-sociaux&utm_source=facebook-like|consulté le=2022-02-08}}</ref>. +*2021 Le bonheur, chroniques d'une vie à la campagne, publié aux Éditions de la Roupille, 270 pages {{ISBN|978-2-924304-40-2}}<ref>{{Lien web |langue=fr |prénom=Hélène |nom=Moore |titre=Le bonheur. Chroniques d’une vie à la campagne par Raymond Beaudet, Hélène Moore {{!}} Biographies {{!}} Faits vécus/Bio divers {{!}} Leslibraires.ca |url=https://www.leslibraires.ca/livres/le-bonheur-chroniques-d-une-vie-raymond-beaudet-9782924304402.html |site=www.leslibraires.ca |consulté le=2022-02-08}}</ref>{{,}}<ref>{{Lien web |langue=fr-ca |prénom=Cool 103,5 |nom=FM |titre="Le bonheur" 6ième ouvrage de l'auteur Raymond Beaudet |url=https://www.coolfm.biz/nouvelle/5205--le-bonheur-6ieme-ouvrage-de-l-auteur-raymond-beaudet |site=Cool 103,5 FM |consulté le=2022-02-08}}</ref>{{,}}<ref>{{Lien web |langue=fr-FR |prénom=Antoine |nom=Desrosiers |titre=Un sixième ouvrage pour l'auteur Raymond Beaudet de Sainte-Marie |url=https://mabeauce.com/un-sixieme-ouvrage-pour-lauteur-raymond-beaudet-de-sainte-marie/ |site=Ma Beauce |date=2021-02-25 |consulté le=2022-02-08}}</ref>{{,}}<ref>{{Lien web |langue=ne |titre=Le bonheur, par Raymond BEAUDET et Hélène MOORE |url=https://ne-np.facebook.com/laroupille/videos/531892437783096/ |consulté le=2022-02-08}}</ref>{{,}}<ref>{{Lien web |langue=fr |titre=L'écrivain... - Éditions La Roupille, Service d'édition |url=https://www.facebook.com/laroupille/videos/772815796737521/ |consulté le=2022-02-08}}</ref>{{,}}<ref>{{Lien web |langue=hi |titre=BIBLIOTHÈQUE {{!}} « Le bonheur :... - Ville de Sainte-Marie |url=https://hi-in.facebook.com/villesaintemarie/videos/128982392487598/ |consulté le=2022-02-08}}</ref>{{,}}<ref>{{Lien web |langue=fr-CA |titre=Trouver le bonheur à la campagne |url=http://www.beaucemedia.ca/2021/02/24/trouver-le-bonheur-a-la-campagne/ |site=Beauce Média |date=2021-02-24 |consulté le=2022-02-08}}</ref>. +*2020 En décide de vendre, nouvelle parue dans Les Écrits mariverains 2020, {{ISBN|978-2-9810768-2-3}}<ref name=":0" />. + +*2019: +** Tableaux et portraits mariverains, Capsules historiques, {{ISBN|978-2-9810768-2-3}}<ref>{{Lien web |langue=th |titre=เข้าสู่ระบบ Facebook |url=https://th-th.facebook.com/login/?next=https%3A%2F%2Fth-th.facebook.com%2Fcheqfm%2Fposts%2F3625148174272475%2F |site=Facebook |consulté le=2022-02-08}}</ref>{{,}}<ref>{{Lien web |langue=ms |titre=LES 1001 MÉTIERS DE LA CULTURE {{!}} M. Raymond Beaudet |url=https://ms-my.facebook.com/villesaintemarie/videos/327787105117018/ |consulté le=2022-02-08}}</ref>{{,}}<ref>{{Lien web |langue=fr-CA |titre=Des guides accrédités pour découvrir la Beauce |url=http://www.beaucemedia.ca/2021/03/11/des-guides-accredites-pour-decouvrir-la-beauce/ |site=Beauce Média |date=2021-03-11 |consulté le=2022-02-08}}</ref>{{,}}<ref>{{Lien web |langue=fr |titre=Chronique à Raymond {{!}} Mon site web |url=https://genealogiestemarie.ca/chronique-a-raymond |site=genealogiestemarie.ca |consulté le=2022-02-08}}</ref>{{,}}<ref>{{Lien web |langue=fr-FR |titre=Capsules historiques |url=https://www.sainte-marie.ca/loisirs-culture/programmation/275e-anniversaire-capsules-historiques/ |site=Ville de Sainte-Marie |consulté le=2022-02-08}}</ref>. +** Carnet d'un passager clandestin, nouvelle parue dans Les Écrits Mariverains 2019, {{ISBN|978-2-9810768-0-9}}<ref name=":0">{{Lien web |langue=fr-FR |titre=Écrits mariverains |url=https://www.sainte-marie.ca/loisirs-culture/ecrits-mariverains/ |site=Ville de Sainte-Marie |consulté le=2022-02-08}}</ref>. +** Voix de dépassement, scénario du spectacle de la Corporation des Instrumentistes Associés<ref name=":1">{{Lien web |langue=fr-CA |titre=La CIA célébrera son 10e anniversaire le 15 avril |url=http://www.beaucemedia.ca/2021/11/25/la-cia-celebrera-son-10e-anniversaire-le-15-avril/ |site=Beauce Média |date=2021-11-25 |consulté le=2022-02-08}}</ref>. +*2018 +** Marie-Claire et moi, nouvelle parue dans Les Écrits mariverains 2018, {{ISBN|978-2-9809683-9-6}}<ref name=":0" />. +** La dernière scène, scénario du spectacle de la Corporation des Instrumentistes Associés<ref name=":1" />. +** La boucherie, Projet personnel d'orientation, Ministère de l'Éducation et de l'Enseignement supérieur. +*2017 +** L'idée perdue, nouvelle parue dans Les Écrits mariverains 2017, {{ISBN|978-2-9809683-8-9}}<ref name=":0" />. +** Coups de cœur, scénario du spectacle de la Corporation des Instrumentistes Associés. +*2016 +** Prix coup de cœur du jury au Concours de twittérature du Centre de la Francophonie des Amériques 2016<ref>{{Lien web |langue=fr-CA |titre=La twittérature est victorieuse à Sainte-Marie |url=https://www.beaucemedia.ca/2016/05/20/la-twitterature-est-victorieuse-a-sainte-marie/ |site=Beauce Média |date=2016-05-20 |consulté le=2022-02-08}}</ref>{{,}}<ref>{{Lien web |langue=fr |nom=iClic (www.iclic.com) |titre=La twittérature s'invite au CFER de Beauce à Sainte-Marie |url=https://www.enbeauce.com/actualites/culturel/305797/la-twitterature-sinvite-au-cfer-de-beauce-a-sainte-marie |site=EnBeauce.com |consulté le=2022-02-08}}</ref>. +** Éliza Caztel de Sainte-Marie, nouvelle parue dans Les Écrits mariverains 2016, {{ISBN|978-2-9809683-7-2}}<ref name=":0" />. +** La CIA sème le trouble, scénario du spectacle de la Corporation des Instrumentistes Associés. +*2015 La photographie numérique, Projet personnel d'orientation, Ministère de l'Éducation du Loisir et du sport. +*2015 Impressions de voyage: le Chili, nouvelle parue dans Les Écrits mariverains 2015, {{ISBN|978-2-9809683-6-5}}<ref name=":0" />. +*2015 La CIA, version 5.0, scénario du spectacle de la Corporation des Instrumentistes Associés. +*2014, 26 juin, TEDx Sainte-Marie, La paternelle<ref>{{Lien web |langue=fr-FR |titre=La paternelle {{!}} Raymond Beaudet {{!}} TEDxSainteMarie |url=https://www.youtube.com/watch?v=wGqQ2FS-P-A |consulté le=2022-02-08}}</ref>{{,}}<ref>{{Lien web |langue=fr |nom=iClic (www.iclic.com) |titre=TEDx Sainte-Marie dévoile le nom de trois conférenciers |url=https://www.enbeauce.com/actualites/societe/125807/tedx-sainte-marie-devoile-le-nom-de-trois-conferenciers |site=EnBeauce.com |consulté le=2022-02-08}}</ref>. +*2014 Le désastreux destin d'Arlette Mallette, nouvelle parue dans Les Écrits mariverains 2014, {{ISBN|978-2-9809683-5-8}}<ref name=":0" />. +*2014 La CIA, L'espace d'une vie, scénario du spectacle de la Corporation des Instrumentistes Associés. +*2014 Carapaces, Roman publié aux Éditions Textes et Contextes, 279 pages. {{ISBN|978-2-923706-63-4}}<ref>{{Ouvrage|langue=en|titre=Carapaces par BEAUDET, RAYMOND|lire en ligne=http://www.renaud-bray.com/Livres_Produit.aspx?id=1531849&def=Carapaces%2cBEAUDET%2c+RAYMOND%2c9782923706634&utm_campaign=partage-réseaux-sociaux&utm_medium=réseaux-sociaux&utm_source=facebook-like|consulté le=2022-02-08}}</ref>{{,}}<ref>{{Lien web |titre=http://biblio.villemontlaurier.qc.ca/in/faces/details.xhtml?id=p%3A%3Ausmarcdef_0000064212 |url=http://biblio.villemontlaurier.qc.ca/in/faces/details.xhtml?id=p%3A%3Ausmarcdef_0000064212 |site=biblio.villemontlaurier.qc.ca |consulté le=2022-02-08}}</ref>. +*2013 La Politique, Projet personnel d'orientation, Ministère de l'Éducation du Loisir et du sport. +*2013 La CIA poursuit son enquête, scénario du spectacle de la Corporation des Instrumentistes Associés<ref>{{Lien web |langue=fr |nom=iClic (www.iclic.com) |titre=La CIA présente En quête de commissions à la Méchatigan |url=https://www.enbeauce.com/actualites/culturel/25305/la-cia-presente-en-quete-de-commissions-a-la-mechatigan |site=EnBeauce.com |consulté le=2022-02-08}}</ref>. +*2013 Napoléon, nouvelle parue dans Les Écrits mariverains 2013. {{ISBN|978-2-9809683-4-1}}<ref name=":0" />. +*2012 Ménage de cave, nouvelle parue dans Les Écrits mariverains, 2012. {{ISBN|978-2-980-9683-3-4}}<ref name=":0" />. +*2012 En quête de mission, scénario du spectacle de la Corporation des Instrumentistes Associés. +*2012 Finaliste dans deux concours de Zone d’écriture de [[Société Radio-Canada|Radio-Canada]] en twittérature. +*2011 La CIA autour du monde, scénario du spectacle de la Corporation des Instrumentistes Associés. +*2011 En deuxième vitesse, nouvelle parue dans Les Écrits mariverains 2011. {{ISBN|978-2-980-9683-1-0|}}<ref name=":0" />. +*2010 Biographie de Jeannine Rousseau et Rolland Massicotte, scénario. Ocus Pocus Production. +*2010 Le Projet Adam et Ève, nouvelle parue dans Écrits mariverains 2010, {{ISBN|978-2-980-9683-1-0}}<ref name=":0" />. +*2009 Alexandre et Cassiopée, nouvelle parue dans Écrits mariverains 2009<ref name=":0" />. +*2008 ''Dans un mois, dans un an'', Roman publié dans la collection Les mots inventifs, Les Éditions du Mécène, 576 pages. {{ISBN|978-2-923150-61-1}}<ref name="d9">{{Lien web |langue=fr-FR |titre=Raymond Beaudet |url=https://www.sainte-marie.ca/repertoire_culturel/raymond-beaudet/ |site=Ville de Sainte-Marie |consulté le=2022-02-08}}</ref>. +*2007 ''L'écriture'', Projet personnel d'orientation, Ministère de l'Éducation du Loisir et du sport. +*2005 ''29, rue des Remparts'', Roman publié dans la collection Les mots inventifs, Les éditions du Mécène, 192 pages. {{ISBN|2-923150-28-7}}<ref name="d9" />. +*2003 ''Vie 101'', Essai publié dans la collection Les mots utiles, Les Éditions du Mécène. 126 pages. {{ISBN|2-923150-03-1}} +*2002 ''Le groupe conseil fiscalis'', scénario produit pour le groupe conseil Fiscalis. +*2001 ''Lévis, ville nouvelle'', scénario de deux émissions de trente minutes pour le Comité de transition de la ville de Lévis et Canal Vox +*2001 ''L’école québécoise, ce qu’il y a de mieux pour votre enfant'', scénario produit pour le Ministère de l’éducation du Québec. +*2000 ''Le jeu en valait-il la chandelle?'' scénario produit pour le Centre québécois d’excellence pour la prévention et le traitement du jeu. (Université Laval) +*1999 ''Le hasard, Lucky, on peut rien y changer'', scénario produit pour le Centre québécois d’excellence pour la prévention et le traitement du jeu. (Université Laval) +*1999 ''Un pacte fiscal pour l’an 2000, des idées, de la solidarité'', scénario produit pour l’Union des Municipalités régionales de comté et des municipalités locales. +*1999 ''Détect-o-max et Une journée avec Détect-o-max'', deux scénarios produits pour Conception Ro-main inc. +*1999 ''Propane GRG, à l’écoute de ses clients'', scénario produit pour la firme Propane GRG inc. +*1998 ''Maître du mètre'', scénario d’un documentaire sur les 25 ans du système métrique au Québec. +*1997 ''Le temps des sucres'', scénario produit pour la firme Shady Maple Farms. +*1996 ''Le Génie de campagne'', scénario produit pour les Forces armées canadiennes. +*1996 ''La Compagnie franche de la Marine de Québec'', scénario produit pour les Forces armées canadiennes. +*1995 ''Bon séjour à l'École navale de Québec'', scénario produit pour les Forces armées canadiennes. +*1994 ''Un leadership, des services'', scénario produit pour la Fédération des commissions scolaires du Québec. +*1993 ''Les clubs de recherche d'emploi'', scénario produit pour le Ministère de l'Emploi et de l'Immigration du Canada. +*1992 ''Fiers de notre avenir'', scénario produit pour l'Assurance-Vie Desjardins. +*1992 ''Responsible Leadership'', scénario produit pour la compagnie papetière Donohue. (Prix Corpo Vision) +*1992 Scénarisation d'un ensemble de huit vidéos destinées aux écoles secondaires et aux collèges du Québec, pour la Fondation de l'entrepreneurship Québécois. (Prix Adate) +*1991 ''Guide à l'intention du nouveau personnel'', rédaction d'une brochure d'accueil pour la Commission scolaire Louis-Fréchette. +*1990 Comment ça va chez vous? scénario produit pour la Confédération des caisses Desjardins. +*1990 ''Le choc est aussi grand pour les petits.'' I et II, scénario de deux vidéos pour la Régie de l'assurance automobile du Québec. +*1990 Participation au concours de nouvelles de Radio-Canada avec ''Alexandre et Cassiopée.'' +*1989 Participation au concours de nouvelles de Radio-Canada avec ''Le mystère de la cathédrale.'' +*1989 ''La Double vie d'Antoine Gagnon, Ministre'', scénario d'un téléfilm pour Radio-Canada. +*1988 ''Passeport pour la liberté'', Les Quinze Éditeurs, Montréal. {{ISBN|2-89026-368-1}}. (Prix Robert-Cliche)<ref>{{Lien web |langue=en |titre=PASSEPORT POUR LA LIBERTE. ROMAN by RAYMOND BEAUDET: bon Couverture souple (1988) {{!}} Le-Livre |url=https://www.abebooks.com/9782864770886/PASSEPORT-LIBERTE-ROMAN-RAYMOND-BEAUDET-2864770881/plp |site=www.abebooks.com |consulté le=2022-02-08}}</ref>. +*1988 Coédition aux Éditions Jean Picollec, à Paris, du roman ''Passeport pour la liberté'', 303 pages, {{ISBN|2-86477-088-1}}<ref>{{Lien web |titre=Raymond Beaudet |url=https://www.goodreads.com/author/show/1956588.Raymond_Beaudet |site=www.goodreads.com |consulté le=2022-02-08}}</ref>. +*1987 Participation au concours de nouvelles de Radio-''Canada avec Le secret''. +*1987 Collaboration au scénario et aux dialogues de ''Vie décolle'', vidéo produite pour la Commission scolaire Abénakis (21 minutes). +*1983 Rédaction et direction de ''C'est qui ma maman à moi?'' pièce de théâtre montée par la troupe de la Polyvalente Benoît-Vachon de Sainte-Marie de Beauce. +*1982 Rédaction et direction de ''Au nom du père, de la fille et du Sain d'esprit'', pièce de théâtre montée par la troupe de la Polyvalente Benoît -Vachon de Sainte-Marie de Beauce. +*1977 Corédaction et mise en scène de la pièce ''Coup de Théâtre à Ste-Onction'' jouée par les élèves de la Polyvalente Benoît-Vachon de Sainte-Marie de Beauce + +== Références == +{{references}} +== Liens externes == +* {{Liens biographiques}} + +{{Portail|Québec|littérature}} + +{{CLEDETRI:Beaudet, Raymond}} +[[Catégorie:Écrivain québécois|Beaudet, Raymond]] +[[Catégorie:Naissance en 1950]] + cu6ayyqtb37qq2pfzv87cpyw6m9ppva + + + 196447925 + 196122612 + 2022-08-26T17:34:14Z + + Cephas + 219201 + + + Catégorie + wikitext + text/x-wiki + {{voir homonymes|Beaudet}} +{{Infobox Biographie2}} +'''Raymond Beaudet''' (Québec 1950 - ) est un [[écrivain]] et [[scénariste]] [[Québec|québécois]]<ref>[https://www.sainte-marie.ca/repertoire_culturel/raymond-beaudet sainte-marie.ca]/</ref>. Détenteur d’une maîtrise en [[philosophie]] de l’[[Université Laval]] (1975) on le retrouve successivement enseignant, syndicaliste, secrétaire particulier du Ministre des Richesses Naturelles, [[Yves Bérubé]], directeur d’école primaire et directeur d’école secondaire (Polyvalente Benoît-Vachon).Il est l’auteur de 5 romans, d’un essai, d'une biographie, d'un recueil de contes, d’une trentaine de scénarios, de plusieurs nouvelles et capsules historiques, de même que de trois pièces de théâtre. Depuis 2014, il est actif en [[twittérature]]<ref>{{Lien web |langue=fr |titre=https://twitter.com/raymondbeaudet |url=https://twitter.com/raymondbeaudet |site=Twitter |consulté le=2022-02-08}}</ref>. + +== Honneurs == +*[https://www.prixdupatrimoine.ca Prix du Patrimoine] (2019) Catégorie Interprétation et Diffusion<ref>{{Lien web |langue=fr |nom=iClic (www.iclic.com) |titre=Les lauréats du Prix du patrimoine de Nouvelle-Beauce sont dévoilés |url=https://www.enbeauce.com/actualites/culturel/21829/les-laureats-du-prix-du-patrimoine-de-nouvelle-beauce-sont-devoiles |site=EnBeauce.com |consulté le=2022-02-08}}</ref>. +*Prix coup de cœur du jury au Concours de twittérature du [https://francophoniedesameriques.com Centre de la Francophonie des Amériques] 2016 +* [https://www.prixdupatrimoine.ca Prix du Patrimoine] (2011) Catégorie Interprétation et Diffusion<ref>{{Lien web |langue=fr |nom=iClic (www.iclic.com) |titre=Les lauréats des Prix du patrimoine 2019 MRC Nouvelle-Beauce dévoilés |url=https://www.enbeauce.com/actualites/culturel/364234/les-laureats-des-prix-du-patrimoine-2019-mrc-nouvelle-beauce-devoiles |site=EnBeauce.com |consulté le=2022-02-08}}</ref>. +* [[Prix Robert-Cliche]] ([[1988]]), ''Passeport pour la liberté''<ref>{{lien web | url=http://www.edvlb.com/prixrobertcliche/laureats.aspx | titre=Lauréats du prix Robert-Cliche | consulté le=24 juin 2011}}</ref> +* Prix Corpo-vision (1992) +* Prix Adate (1993) + +== Bibliographie == +*2021 Les lieux enchantés du Parc Taschereau, publié aux Éditions de la Roupille, 96 pages, {{ISBN|978-2-924304-45-7}}<ref>{{Lien web |langue=fr-CA |titre=Des guides accrédités pour découvrir la Beauce |url=https://www.leclaireurprogres.ca/des-guides-accredites-pour-decouvrir-la-beauce/ |site=L'Éclaireur Progrès |date=2021-03-11 |consulté le=2022-02-08}}</ref>{{,}}<ref>{{Lien web |langue=fr-FR |prénom=Antoine |nom=Desrosiers |titre=Journée internationale des droits des femmes: huit femmes qui ont marqué Sainte-Marie à leur façon |url=https://mabeauce.com/journee-internationale-des-droits-des-femmes-huit-femmes-qui-ont-marque-sainte-marie-a-leur-facon/ |site=Ma Beauce |date=2021-03-08 |consulté le=2022-02-08}}</ref>{{,}}<ref>{{Lien web |langue=en |titre=Conférence - L'écriture sa passion avec Raymond Beaudet à l'Éco-refuge du Domaine Taschereau -10$/p. - Sainte-Marie, 2021-06-29 |url=https://ca.datescloud.com/conference-lecriture-sa-passion-avec-raymond-beaudet-a-leco-sainte-marie-305685960.html |site=dates.cloud |consulté le=2022-02-08}}</ref>{{,}}<ref>{{Lien web |langue=fr-FR |titre=Visites guidées et groupes touristiques {{!}} Domaine Taschereau |url=http://www.domainetaschereau.com/?page_id=634 |consulté le=2022-02-08}}</ref>{{,}}<ref>{{Lien web |langue=fr |titre=Se connecter à Facebook |url=https://www.facebook.com/ |site=Facebook |consulté le=2022-02-08}}</ref>{{,}}<ref>{{Lien web |langue=fr |nom=iClic (www.iclic.com) |titre=Les Lieux enchantés du parc Taschereau : des contes qui prennent vie |url=https://www.enbeauce.com/actualites/culturel/437952/les-lieux-enchantes-du-parc-taschereau-des-contes-qui-prennent-vie |site=EnBeauce.com |consulté le=2022-02-08}}</ref>. +*2021 Normand Maurice, père de la récupération au Québec, biographie publiée aux Éditions de la Roupille, 176 pages, {{ISBN|978-2-924304-39-6}}<ref>{{Lien web |langue=fr-CA |titre=Un livre neuf pour le père de la récupération |url=http://www.beaucemedia.ca/2021/06/25/un-livre-neuf-pour-le-pere-de-la-recuperation/ |site=Beauce Média |date=2021-06-25 |consulté le=2022-02-08}}</ref>{{,}}<ref>{{Lien web |langue=fr |prénom=Raymond |nom=Beaudet |titre=Normand Maurice : père de la récupération au Québec par Raymond Beaudet {{!}} Biographies {{!}} Gens d'affaire {{!}} Leslibraires.ca |url=https://www.leslibraires.ca/livres/normand-maurice-pere-de-la-recuperation-raymond-beaudet-9782924304396.html |site=www.leslibraires.ca |consulté le=2022-02-08}}</ref>{{,}}<ref>{{Lien web |langue=fr-FR |titre=Réseau CFER » Lancement du livre sur Normand Maurice |url=https://reseaucfer.ca/nouvelles/lancement-du-livre-sur-normand-maurice/ |consulté le=2022-02-08}}</ref>{{,}}<ref>{{Ouvrage|langue=en|titre=Normand Maurice, père de la récupération au Québec par BEAUDET, RAYMOND|lire en ligne=http://www.renaud-bray.com/Livres_Produit.aspx?id=3353354&def=Normand+Maurice%2c+p%c3%a8re+de+la+r%c3%a9cup%c3%a9ration+au+Qu%c3%a9bec%2cBEAUDET%2c+RAYMOND%2c9782924304396&utm_campaign=partage-réseaux-sociaux&utm_medium=réseaux-sociaux&utm_source=facebook-like|consulté le=2022-02-08}}</ref>. +*2021 Le bonheur, chroniques d'une vie à la campagne, publié aux Éditions de la Roupille, 270 pages {{ISBN|978-2-924304-40-2}}<ref>{{Lien web |langue=fr |prénom=Hélène |nom=Moore |titre=Le bonheur. Chroniques d’une vie à la campagne par Raymond Beaudet, Hélène Moore {{!}} Biographies {{!}} Faits vécus/Bio divers {{!}} Leslibraires.ca |url=https://www.leslibraires.ca/livres/le-bonheur-chroniques-d-une-vie-raymond-beaudet-9782924304402.html |site=www.leslibraires.ca |consulté le=2022-02-08}}</ref>{{,}}<ref>{{Lien web |langue=fr-ca |prénom=Cool 103,5 |nom=FM |titre="Le bonheur" 6ième ouvrage de l'auteur Raymond Beaudet |url=https://www.coolfm.biz/nouvelle/5205--le-bonheur-6ieme-ouvrage-de-l-auteur-raymond-beaudet |site=Cool 103,5 FM |consulté le=2022-02-08}}</ref>{{,}}<ref>{{Lien web |langue=fr-FR |prénom=Antoine |nom=Desrosiers |titre=Un sixième ouvrage pour l'auteur Raymond Beaudet de Sainte-Marie |url=https://mabeauce.com/un-sixieme-ouvrage-pour-lauteur-raymond-beaudet-de-sainte-marie/ |site=Ma Beauce |date=2021-02-25 |consulté le=2022-02-08}}</ref>{{,}}<ref>{{Lien web |langue=ne |titre=Le bonheur, par Raymond BEAUDET et Hélène MOORE |url=https://ne-np.facebook.com/laroupille/videos/531892437783096/ |consulté le=2022-02-08}}</ref>{{,}}<ref>{{Lien web |langue=fr |titre=L'écrivain... - Éditions La Roupille, Service d'édition |url=https://www.facebook.com/laroupille/videos/772815796737521/ |consulté le=2022-02-08}}</ref>{{,}}<ref>{{Lien web |langue=hi |titre=BIBLIOTHÈQUE {{!}} « Le bonheur :... - Ville de Sainte-Marie |url=https://hi-in.facebook.com/villesaintemarie/videos/128982392487598/ |consulté le=2022-02-08}}</ref>{{,}}<ref>{{Lien web |langue=fr-CA |titre=Trouver le bonheur à la campagne |url=http://www.beaucemedia.ca/2021/02/24/trouver-le-bonheur-a-la-campagne/ |site=Beauce Média |date=2021-02-24 |consulté le=2022-02-08}}</ref>. +*2020 En décide de vendre, nouvelle parue dans Les Écrits mariverains 2020, {{ISBN|978-2-9810768-2-3}}<ref name=":0" />. + +*2019: +** Tableaux et portraits mariverains, Capsules historiques, {{ISBN|978-2-9810768-2-3}}<ref>{{Lien web |langue=th |titre=เข้าสู่ระบบ Facebook |url=https://th-th.facebook.com/login/?next=https%3A%2F%2Fth-th.facebook.com%2Fcheqfm%2Fposts%2F3625148174272475%2F |site=Facebook |consulté le=2022-02-08}}</ref>{{,}}<ref>{{Lien web |langue=ms |titre=LES 1001 MÉTIERS DE LA CULTURE {{!}} M. Raymond Beaudet |url=https://ms-my.facebook.com/villesaintemarie/videos/327787105117018/ |consulté le=2022-02-08}}</ref>{{,}}<ref>{{Lien web |langue=fr-CA |titre=Des guides accrédités pour découvrir la Beauce |url=http://www.beaucemedia.ca/2021/03/11/des-guides-accredites-pour-decouvrir-la-beauce/ |site=Beauce Média |date=2021-03-11 |consulté le=2022-02-08}}</ref>{{,}}<ref>{{Lien web |langue=fr |titre=Chronique à Raymond {{!}} Mon site web |url=https://genealogiestemarie.ca/chronique-a-raymond |site=genealogiestemarie.ca |consulté le=2022-02-08}}</ref>{{,}}<ref>{{Lien web |langue=fr-FR |titre=Capsules historiques |url=https://www.sainte-marie.ca/loisirs-culture/programmation/275e-anniversaire-capsules-historiques/ |site=Ville de Sainte-Marie |consulté le=2022-02-08}}</ref>. +** Carnet d'un passager clandestin, nouvelle parue dans Les Écrits Mariverains 2019, {{ISBN|978-2-9810768-0-9}}<ref name=":0">{{Lien web |langue=fr-FR |titre=Écrits mariverains |url=https://www.sainte-marie.ca/loisirs-culture/ecrits-mariverains/ |site=Ville de Sainte-Marie |consulté le=2022-02-08}}</ref>. +** Voix de dépassement, scénario du spectacle de la Corporation des Instrumentistes Associés<ref name=":1">{{Lien web |langue=fr-CA |titre=La CIA célébrera son 10e anniversaire le 15 avril |url=http://www.beaucemedia.ca/2021/11/25/la-cia-celebrera-son-10e-anniversaire-le-15-avril/ |site=Beauce Média |date=2021-11-25 |consulté le=2022-02-08}}</ref>. +*2018 +** Marie-Claire et moi, nouvelle parue dans Les Écrits mariverains 2018, {{ISBN|978-2-9809683-9-6}}<ref name=":0" />. +** La dernière scène, scénario du spectacle de la Corporation des Instrumentistes Associés<ref name=":1" />. +** La boucherie, Projet personnel d'orientation, Ministère de l'Éducation et de l'Enseignement supérieur. +*2017 +** L'idée perdue, nouvelle parue dans Les Écrits mariverains 2017, {{ISBN|978-2-9809683-8-9}}<ref name=":0" />. +** Coups de cœur, scénario du spectacle de la Corporation des Instrumentistes Associés. +*2016 +** Prix coup de cœur du jury au Concours de twittérature du Centre de la Francophonie des Amériques 2016<ref>{{Lien web |langue=fr-CA |titre=La twittérature est victorieuse à Sainte-Marie |url=https://www.beaucemedia.ca/2016/05/20/la-twitterature-est-victorieuse-a-sainte-marie/ |site=Beauce Média |date=2016-05-20 |consulté le=2022-02-08}}</ref>{{,}}<ref>{{Lien web |langue=fr |nom=iClic (www.iclic.com) |titre=La twittérature s'invite au CFER de Beauce à Sainte-Marie |url=https://www.enbeauce.com/actualites/culturel/305797/la-twitterature-sinvite-au-cfer-de-beauce-a-sainte-marie |site=EnBeauce.com |consulté le=2022-02-08}}</ref>. +** Éliza Caztel de Sainte-Marie, nouvelle parue dans Les Écrits mariverains 2016, {{ISBN|978-2-9809683-7-2}}<ref name=":0" />. +** La CIA sème le trouble, scénario du spectacle de la Corporation des Instrumentistes Associés. +*2015 La photographie numérique, Projet personnel d'orientation, Ministère de l'Éducation du Loisir et du sport. +*2015 Impressions de voyage: le Chili, nouvelle parue dans Les Écrits mariverains 2015, {{ISBN|978-2-9809683-6-5}}<ref name=":0" />. +*2015 La CIA, version 5.0, scénario du spectacle de la Corporation des Instrumentistes Associés. +*2014, 26 juin, TEDx Sainte-Marie, La paternelle<ref>{{Lien web |langue=fr-FR |titre=La paternelle {{!}} Raymond Beaudet {{!}} TEDxSainteMarie |url=https://www.youtube.com/watch?v=wGqQ2FS-P-A |consulté le=2022-02-08}}</ref>{{,}}<ref>{{Lien web |langue=fr |nom=iClic (www.iclic.com) |titre=TEDx Sainte-Marie dévoile le nom de trois conférenciers |url=https://www.enbeauce.com/actualites/societe/125807/tedx-sainte-marie-devoile-le-nom-de-trois-conferenciers |site=EnBeauce.com |consulté le=2022-02-08}}</ref>. +*2014 Le désastreux destin d'Arlette Mallette, nouvelle parue dans Les Écrits mariverains 2014, {{ISBN|978-2-9809683-5-8}}<ref name=":0" />. +*2014 La CIA, L'espace d'une vie, scénario du spectacle de la Corporation des Instrumentistes Associés. +*2014 Carapaces, Roman publié aux Éditions Textes et Contextes, 279 pages. {{ISBN|978-2-923706-63-4}}<ref>{{Ouvrage|langue=en|titre=Carapaces par BEAUDET, RAYMOND|lire en ligne=http://www.renaud-bray.com/Livres_Produit.aspx?id=1531849&def=Carapaces%2cBEAUDET%2c+RAYMOND%2c9782923706634&utm_campaign=partage-réseaux-sociaux&utm_medium=réseaux-sociaux&utm_source=facebook-like|consulté le=2022-02-08}}</ref>{{,}}<ref>{{Lien web |titre=http://biblio.villemontlaurier.qc.ca/in/faces/details.xhtml?id=p%3A%3Ausmarcdef_0000064212 |url=http://biblio.villemontlaurier.qc.ca/in/faces/details.xhtml?id=p%3A%3Ausmarcdef_0000064212 |site=biblio.villemontlaurier.qc.ca |consulté le=2022-02-08}}</ref>. +*2013 La Politique, Projet personnel d'orientation, Ministère de l'Éducation du Loisir et du sport. +*2013 La CIA poursuit son enquête, scénario du spectacle de la Corporation des Instrumentistes Associés<ref>{{Lien web |langue=fr |nom=iClic (www.iclic.com) |titre=La CIA présente En quête de commissions à la Méchatigan |url=https://www.enbeauce.com/actualites/culturel/25305/la-cia-presente-en-quete-de-commissions-a-la-mechatigan |site=EnBeauce.com |consulté le=2022-02-08}}</ref>. +*2013 Napoléon, nouvelle parue dans Les Écrits mariverains 2013. {{ISBN|978-2-9809683-4-1}}<ref name=":0" />. +*2012 Ménage de cave, nouvelle parue dans Les Écrits mariverains, 2012. {{ISBN|978-2-980-9683-3-4}}<ref name=":0" />. +*2012 En quête de mission, scénario du spectacle de la Corporation des Instrumentistes Associés. +*2012 Finaliste dans deux concours de Zone d’écriture de [[Société Radio-Canada|Radio-Canada]] en twittérature. +*2011 La CIA autour du monde, scénario du spectacle de la Corporation des Instrumentistes Associés. +*2011 En deuxième vitesse, nouvelle parue dans Les Écrits mariverains 2011. {{ISBN|978-2-980-9683-1-0|}}<ref name=":0" />. +*2010 Biographie de Jeannine Rousseau et Rolland Massicotte, scénario. Ocus Pocus Production. +*2010 Le Projet Adam et Ève, nouvelle parue dans Écrits mariverains 2010, {{ISBN|978-2-980-9683-1-0}}<ref name=":0" />. +*2009 Alexandre et Cassiopée, nouvelle parue dans Écrits mariverains 2009<ref name=":0" />. +*2008 ''Dans un mois, dans un an'', Roman publié dans la collection Les mots inventifs, Les Éditions du Mécène, 576 pages. {{ISBN|978-2-923150-61-1}}<ref name="d9">{{Lien web |langue=fr-FR |titre=Raymond Beaudet |url=https://www.sainte-marie.ca/repertoire_culturel/raymond-beaudet/ |site=Ville de Sainte-Marie |consulté le=2022-02-08}}</ref>. +*2007 ''L'écriture'', Projet personnel d'orientation, Ministère de l'Éducation du Loisir et du sport. +*2005 ''29, rue des Remparts'', Roman publié dans la collection Les mots inventifs, Les éditions du Mécène, 192 pages. {{ISBN|2-923150-28-7}}<ref name="d9" />. +*2003 ''Vie 101'', Essai publié dans la collection Les mots utiles, Les Éditions du Mécène. 126 pages. {{ISBN|2-923150-03-1}} +*2002 ''Le groupe conseil fiscalis'', scénario produit pour le groupe conseil Fiscalis. +*2001 ''Lévis, ville nouvelle'', scénario de deux émissions de trente minutes pour le Comité de transition de la ville de Lévis et Canal Vox +*2001 ''L’école québécoise, ce qu’il y a de mieux pour votre enfant'', scénario produit pour le Ministère de l’éducation du Québec. +*2000 ''Le jeu en valait-il la chandelle?'' scénario produit pour le Centre québécois d’excellence pour la prévention et le traitement du jeu. (Université Laval) +*1999 ''Le hasard, Lucky, on peut rien y changer'', scénario produit pour le Centre québécois d’excellence pour la prévention et le traitement du jeu. (Université Laval) +*1999 ''Un pacte fiscal pour l’an 2000, des idées, de la solidarité'', scénario produit pour l’Union des Municipalités régionales de comté et des municipalités locales. +*1999 ''Détect-o-max et Une journée avec Détect-o-max'', deux scénarios produits pour Conception Ro-main inc. +*1999 ''Propane GRG, à l’écoute de ses clients'', scénario produit pour la firme Propane GRG inc. +*1998 ''Maître du mètre'', scénario d’un documentaire sur les 25 ans du système métrique au Québec. +*1997 ''Le temps des sucres'', scénario produit pour la firme Shady Maple Farms. +*1996 ''Le Génie de campagne'', scénario produit pour les Forces armées canadiennes. +*1996 ''La Compagnie franche de la Marine de Québec'', scénario produit pour les Forces armées canadiennes. +*1995 ''Bon séjour à l'École navale de Québec'', scénario produit pour les Forces armées canadiennes. +*1994 ''Un leadership, des services'', scénario produit pour la Fédération des commissions scolaires du Québec. +*1993 ''Les clubs de recherche d'emploi'', scénario produit pour le Ministère de l'Emploi et de l'Immigration du Canada. +*1992 ''Fiers de notre avenir'', scénario produit pour l'Assurance-Vie Desjardins. +*1992 ''Responsible Leadership'', scénario produit pour la compagnie papetière Donohue. (Prix Corpo Vision) +*1992 Scénarisation d'un ensemble de huit vidéos destinées aux écoles secondaires et aux collèges du Québec, pour la Fondation de l'entrepreneurship Québécois. (Prix Adate) +*1991 ''Guide à l'intention du nouveau personnel'', rédaction d'une brochure d'accueil pour la Commission scolaire Louis-Fréchette. +*1990 Comment ça va chez vous? scénario produit pour la Confédération des caisses Desjardins. +*1990 ''Le choc est aussi grand pour les petits.'' I et II, scénario de deux vidéos pour la Régie de l'assurance automobile du Québec. +*1990 Participation au concours de nouvelles de Radio-Canada avec ''Alexandre et Cassiopée.'' +*1989 Participation au concours de nouvelles de Radio-Canada avec ''Le mystère de la cathédrale.'' +*1989 ''La Double vie d'Antoine Gagnon, Ministre'', scénario d'un téléfilm pour Radio-Canada. +*1988 ''Passeport pour la liberté'', Les Quinze Éditeurs, Montréal. {{ISBN|2-89026-368-1}}. (Prix Robert-Cliche)<ref>{{Lien web |langue=en |titre=PASSEPORT POUR LA LIBERTE. ROMAN by RAYMOND BEAUDET: bon Couverture souple (1988) {{!}} Le-Livre |url=https://www.abebooks.com/9782864770886/PASSEPORT-LIBERTE-ROMAN-RAYMOND-BEAUDET-2864770881/plp |site=www.abebooks.com |consulté le=2022-02-08}}</ref>. +*1988 Coédition aux Éditions Jean Picollec, à Paris, du roman ''Passeport pour la liberté'', 303 pages, {{ISBN|2-86477-088-1}}<ref>{{Lien web |titre=Raymond Beaudet |url=https://www.goodreads.com/author/show/1956588.Raymond_Beaudet |site=www.goodreads.com |consulté le=2022-02-08}}</ref>. +*1987 Participation au concours de nouvelles de Radio-''Canada avec Le secret''. +*1987 Collaboration au scénario et aux dialogues de ''Vie décolle'', vidéo produite pour la Commission scolaire Abénakis (21 minutes). +*1983 Rédaction et direction de ''C'est qui ma maman à moi?'' pièce de théâtre montée par la troupe de la Polyvalente Benoît-Vachon de Sainte-Marie de Beauce. +*1982 Rédaction et direction de ''Au nom du père, de la fille et du Sain d'esprit'', pièce de théâtre montée par la troupe de la Polyvalente Benoît -Vachon de Sainte-Marie de Beauce. +*1977 Corédaction et mise en scène de la pièce ''Coup de Théâtre à Ste-Onction'' jouée par les élèves de la Polyvalente Benoît-Vachon de Sainte-Marie de Beauce + +== Références == +{{references}} +== Liens externes == +* {{Liens biographiques}} + +{{Portail|Québec|littérature}} + +{{CLEDETRI:Beaudet, Raymond}} +[[Catégorie:Écrivain québécois|Beaudet, Raymond]] +[[Catégorie:Naissance en 1950]] +[[Catégorie:Étudiant de l'Université Laval]] + rsligzq2ieidd3dv2vdsrqfzlzdv08w + + + \ No newline at end of file diff --git a/history/sample-xml-dump/frwiki/20220101/frwiki-20220101-template-redirects.obj b/history/sample-xml-dump/frwiki/20220101/frwiki-20220101-template-redirects.obj new file mode 100644 index 0000000000000000000000000000000000000000..ededaa0a918d66f027ace07a26618b45c420aa63 GIT binary patch literal 61 zcmZ4UmVvdnh(V(`IWZ?uFF8LaCpEbwGe1u+GdH)iBrz!`RnIrEK*cq;prjJSFg{{? Oss7CJrA!PA6$JpuAQwOY literal 0 HcmV?d00001 diff --git a/history/src/main/java/org/dbpedia/extraction/sources/WikipediaDumpParserHistory.java b/history/src/main/java/org/dbpedia/extraction/sources/WikipediaDumpParserHistory.java new file mode 100644 index 0000000000..ed6336d289 --- /dev/null +++ b/history/src/main/java/org/dbpedia/extraction/sources/WikipediaDumpParserHistory.java @@ -0,0 +1,564 @@ +package org.dbpedia.extraction.sources; + +import org.apache.jena.base.Sys; +import org.dbpedia.extraction.util.Language; +import org.dbpedia.extraction.util.RecordSeverity; +import org.dbpedia.extraction.wikiparser.*; +import org.dbpedia.extraction.wikiparser.impl.wikipedia.Namespaces; +import org.dbpedia.util.Exceptions; +import org.dbpedia.util.text.xml.XMLStreamUtils; +import scala.Enumeration; +import scala.Function1; +import scala.Tuple3; +import scala.util.control.ControlThrowable; +import javax.xml.stream.XMLInputFactory; +import javax.xml.stream.XMLStreamException; +import javax.xml.stream.XMLStreamReader; +import java.io.IOException; +import java.io.Reader; +import java.util.ArrayList; +import java.util.NoSuchElementException; + +import static javax.xml.stream.XMLStreamConstants.START_ELEMENT; + +public class WikipediaDumpParserHistory +{ + /** */ + private static final String ROOT_ELEM = "mediawiki"; + + /** */ + private static final String SITEINFO_ELEM = "siteinfo"; + + /** */ + private static final String BASE_ELEM = "base"; + + /** */ + private static final String PAGE_ELEM = "page"; + + /** */ + private static final String TITLE_ELEM = "title"; + + /** */ + private static final String REDIRECT_ELEM = "redirect"; + + /** */ + private static final String ID_ELEM = "id"; + + /** */ + private static final String NS_ELEM = "ns"; + + /** */ + private static final String REVISION_ELEM = "revision"; + + /** */ + private static final String CONTRIBUTOR_ELEM = "contributor"; + private static final String CONTRIBUTOR_ID = "id"; + private static final String CONTRIBUTOR_IP = "ip"; + private static final String CONTRIBUTOR_NAME = "username"; + + /** NEW PARAMS */ + private static final String REVISION_MINOR_UPDATE = "minor"; + private static final String REVISION_PARENT_ID = "parentid"; + private static final String REVISION_COMMENT = "comment"; + private static final String REVISION_ID = "id"; + + /** */ + private static final String TEXT_ELEM = "text"; + + private static final String TIMESTAMP_ELEM = "timestamp"; + + private static final String FORMAT_ELEM = "format"; + + /** the character stream */ + private Reader _stream; + + /** the reader, null before and after run() */ + private XMLStreamReader _reader; + + /** + * This parser is currently only compatible with the 0.8 format. + * TODO: make the parser smarter, ignore elements that are not present in older formats. + */ + private final String _namespace = null; //"http://www.mediawiki.org/xml/export-0.8/"; + + /** + * Language used to parse page titles. If null, get language from siteinfo. + * If given, ignore siteinfo element. + */ + private Language _language; + + /** */ + private final Function1 _filter; + + /** page processor, called for each page */ + private final Function1 _processor; + + /** + * @param stream The character stream. Will be closed after reading. We have to use a Reader instead + * of an InputStream because of this bug: https://issues.apache.org/jira/browse/XERCESJ-1257 + * @param language language used to parse page titles. If null, get language from siteinfo. + * If given, ignore siteinfo element. TODO: use a boolean parameter instead to decide if siteinfo should be used. + * @param filter page filter. Only matching pages will be processed. + * @param processor page processor + */ + public WikipediaDumpParserHistory(Reader stream, Language language, Function1 filter, Function1 processor) + { + if (stream == null) throw new NullPointerException("file"); + if (processor == null) throw new NullPointerException("processor"); + + _stream = stream; + _language = language; + _filter = filter; + _processor = processor; + } + + public void run() + throws IOException, XMLStreamException, InterruptedException + { + XMLInputFactory factory = XMLInputFactory.newInstance(); + _reader = factory.createXMLStreamReader(_stream); + try + { + readDump(); + } + finally + { + _stream.close(); + _stream = null; + _reader.close(); + _reader = null; + } + } + + private void readDump() + throws XMLStreamException, InterruptedException + { + nextTag(); + // consume tag + requireStartElement(ROOT_ELEM); + nextTag(); + + if (_language == null) + { + _language = readSiteInfo(); + } + else + { + if (isStartElement(SITEINFO_ELEM)) skipElement(SITEINFO_ELEM, true); + } + // now after + System.out.println("XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX"); + readPages(); + + requireEndElement(ROOT_ELEM); + } + + private Language readSiteInfo() + throws XMLStreamException + { + requireStartElement(SITEINFO_ELEM); + nextTag(); + + // Consume tag + skipElement("sitename", true); + + // Read contents of : http://xx.wikipedia.org/wiki/... + String uri = readString(BASE_ELEM, true); + String wikiCode = uri.substring(uri.indexOf("://") + 3, uri.indexOf('.')); + Language language = Language.apply(wikiCode); + + // Consume tag + // TODO: read MediaWiki version from generator element + skipElement("generator", true); + + // Consume tag + skipElement("case", true); + + // Consume tag + // TODO: read namespaces, use them to parse page titles? + skipElement("namespaces", true); + + requireEndElement(SITEINFO_ELEM); + // now at + nextTag(); + + return language; + } + + private void readPages() + throws XMLStreamException, InterruptedException + { + System.out.println("readPages"); + while (isStartElement(PAGE_ELEM)) + { + System.out.println("XXXXXXXXXXXX FIRST PAGE"); + readPage(); + // now at + System.out.println("XXXXXXXXXXXX NEXT PAGE"); + nextTag(); + } + } + + private void readPage() + throws XMLStreamException, InterruptedException + { + + System.out.println("XX BEGIN readPage"); + //record any error or warning + ArrayList> records = new ArrayList<>(); + + requireStartElement(PAGE_ELEM); + nextTag(); + + //Read title + String titleStr = readString(TITLE_ELEM, true); + // now after + + int nsCode; + try + { + nsCode = Integer.parseInt(readString(NS_ELEM, true)); + } + catch (NumberFormatException e) + { + throw new IllegalArgumentException("cannot parse content of element ["+NS_ELEM+"] as int", e); + } + + //Read page id + String pageId = readString(ID_ELEM, false); + + System.out.println("PAGE >"+pageId); + // now at + + //create title now with pageId + + WikiTitle title = null; + try + { + title = parseTitle(titleStr, pageId); + } + catch (Exception e) + { + records.add(new Tuple3("Error parsing page title " + titleStr, e, RecordSeverity.Warning())); + //logger.log(Level.WARNING, _language.wikiCode() + ": error parsing page title ["+titleString+"]: "+Exceptions.toString(e, 200)); + } + + + // now after + + if (title != null && title.namespace().code() != nsCode) + { + try + { + Namespace expNs = new Namespace(nsCode, Namespaces.names(_language).get(nsCode).get(), false); + records.add(new Tuple3("Error parsing title: found namespace " + title.namespace() + ", expected " + expNs + " in title " + titleStr, null, RecordSeverity.Info())); + //logger.log(Level.WARNING, _language.wikiCode() + ": Error parsing title: found namespace " + title.namespace() + ", expected " + expNs + " in title " + titleStr); + title.otherNamespace_$eq(expNs); + } + catch (NoSuchElementException e) + { + records.add(new Tuple3(String.format("Error parsing title: found namespace %s, title %s , key %s", title.namespace(),titleStr, nsCode), e, RecordSeverity.Warning())); + //logger.log(Level.WARNING, String.format(_language.wikiCode() + ": Error parsing title: found namespace %s, title %s , key %s", title.namespace(),titleStr, nsCode)); + skipTitle(); + return; + } + } + + //Skip bad titles and filtered pages + if (title == null || ! _filter.apply(title)) + { + skipTitle(); + return; + } + + //Read page + WikiPageWithRevisions page = null; + WikiTitle redirect = null; + //Long lastRev_id=0; + ArrayList RevisionList = new ArrayList<>(); + while (nextTag() == START_ELEMENT) + { + if (isStartElement(REDIRECT_ELEM)) + { + String titleString = _reader.getAttributeValue(null, TITLE_ELEM); + try + { + redirect = parseTitle(titleString, null); + } + catch (Exception e) + { + records.add(new Tuple3("Error parsing page title " + titleString, e, RecordSeverity.Warning())); + } + nextTag(); + // now at + } + else if (isStartElement(REVISION_ELEM)) + { + + RevisionNode current_revision= null; + + + while( isStartElement(REVISION_ELEM) ){ + + System.out.println(">> new revision element"); + current_revision= readRevision(title, redirect, pageId); + RevisionList.add(current_revision); + + requireEndElement(REVISION_ELEM); + + nextTag(); + } + + System.out.println(">> create page"); + page = new WikiPageWithRevisions(title, redirect, pageId, "", "", "", "", "", "",RevisionList); + + //nextTag(); + + System.out.println(">> nextTag PAGE"); + // now at + } + else + { + // skip all other elements, don't care about the name, don't skip end tag + skipElement(null, false); + } + + System.out.println("XX END PAGE"); + } + + System.out.println("XX SAVE PAGE"); + if (page != null) + { + + System.out.println("XX HEY2"); + for(Tuple3 record : records){ + page.addExtractionRecord(record._1(), record._2(), record._3()); + } + try + { + + System.out.println("XX HEY TRY"); + _processor.apply(page); + System.out.println("XX HEY TRY END"); + } + catch (Exception e) + { + + System.out.println("XX HEY CATCH"); + // emulate Scala exception handling. Ugly... + if (e instanceof ControlThrowable) throw Exceptions.unchecked(e); + if (e instanceof InterruptedException) throw (InterruptedException)e; + else page.addExtractionRecord("Could not process page: " + page.title().encoded(), e, RecordSeverity.Warning()); + } + } + requireEndElement(PAGE_ELEM); + + System.out.println("XX end readPage"); + } + + private void skipTitle() throws XMLStreamException { + while(! isEndElement(PAGE_ELEM)) _reader.next(); + } + + private RevisionNode readRevision(WikiTitle title, WikiTitle redirect, String pageId) + throws XMLStreamException + { + String revision_id = null; + String parent_id= null; + String timestamp= null; + String contributorID= null; + String contributorName= null; + String contributorDeleted="false"; + String contributorIP= null; + String comment= null; + String text_size= ""; + String format= null; + String minor_edit= "false"; + + System.out.println(">> Begin readRevision "); + + while (nextTag() == START_ELEMENT) + { + if (isStartElement(TEXT_ELEM)) + { + //String deleted = _reader.getAttributeValue(null, "bytes"); + text_size = _reader.getAttributeValue(null, "bytes"); + System.out.println(text_size); + //text = readString(TEXT_ELEM, false); + // now at + } + else + if (isStartElement(TIMESTAMP_ELEM)) + { + timestamp = readString(TIMESTAMP_ELEM, false); + System.out.println(">timestamp : "+timestamp); + // now at + } + else if (isStartElement(REVISION_ID)) + { + + revision_id = readString(REVISION_ID, false); + System.out.println(">revision_id : "+revision_id); + + // now at + } + else if (isStartElement(REVISION_PARENT_ID)) + { + + parent_id = readString(REVISION_PARENT_ID, false); + System.out.println(">parent_id : "+parent_id); + + // now at + } else if (isStartElement(REVISION_COMMENT)) + { + + comment = readString(REVISION_COMMENT, false); + System.out.println(">comment : "+comment); + + // now at + }else if (isStartElement(REVISION_MINOR_UPDATE) && isEndElement(REVISION_MINOR_UPDATE)) + { + + minor_edit = "true"; + System.out.println(">minor_edit : "+minor_edit); + + //nextTag(); + + // now at + } + else if (isStartElement(CONTRIBUTOR_ELEM)) + { + // Check if this is an empty (deleted) contributor tag (i.e. ) + // which has no explicit end element. If it is - skip it. + String deleted = _reader.getAttributeValue(null, "deleted"); + if (deleted != null && deleted.equals("deleted")) { + contributorDeleted = "true"; + //System.out.println(">contributorDeleted : "+contributorDeleted); + nextTag(); + } else { + // now at , move to next tag + nextTag(); + // now should have ip / (author & id), when ip is present we don't have author / id + // TODO Create a getElementName function to make this cleaner + if (isStartElement(CONTRIBUTOR_IP)) { + contributorIP = readString(CONTRIBUTOR_IP, false); + //System.out.println(">contributorIP : "+contributorIP); + } + else + { + // usually we have contributor name first but we have to check + if (isStartElement(CONTRIBUTOR_NAME)) + { + contributorName = readString(CONTRIBUTOR_NAME, false); + //System.out.println(">contributorName : "+contributorName); + nextTag(); + if (isStartElement(CONTRIBUTOR_ID)) + contributorID = readString(CONTRIBUTOR_ID, false); + //System.out.println(">contributorID : "+contributorID); + } + else + { + // when contributor ID is first + if (isStartElement(CONTRIBUTOR_ID)) + { + contributorID = readString(CONTRIBUTOR_ID, false); + //System.out.println(">contributorID : "+contributorID); + nextTag(); + if (isStartElement(CONTRIBUTOR_NAME)) + contributorName = readString(CONTRIBUTOR_NAME, false); + //System.out.println(">contributorName : "+contributorName); + } + } + } + nextTag(); + requireEndElement(CONTRIBUTOR_ELEM); + } + } + else if (isStartElement(FORMAT_ELEM)) { + format = readString(FORMAT_ELEM, false); +// System.out.println(">format : "+format); + // now at + } + else + { + // skip all other elements, don't care about the name, don't skip end tag + skipElement(null, false); + } + } + + requireEndElement(REVISION_ELEM); + + System.out.println(">> End readRevision "); + // now at + return new RevisionNode(revision_id,parent_id,timestamp,contributorID,contributorName,contributorIP,contributorDeleted,comment,format,text_size,minor_edit); + } + + /* Methods for low-level work. Ideally, only these methods would access _reader while the + * higher-level methods would only use these. + */ + + /** + * @param titleString expected name of element. if null, don't check name. + * @return null if title cannot be parsed for some reason + */ + private WikiTitle parseTitle( String titleString, String pageId ) + { + Long id = null; + if(pageId != null) { + try { + id = Long.parseLong(pageId); + } catch (Throwable e) { + } + } + + return WikiTitle.parseCleanTitle(titleString, _language, scala.Option.apply(id)); + } + + /** + * @param name expected name of element. if null, don't check name. + * @param nextTag should we advance to the next tag after the closing tag of this element? + * @return long value + * @throws XMLStreamException + * @throws IllegalArgumentException if element content cannot be parsed as long + */ + private String readString( String name, boolean nextTag ) throws XMLStreamException + { + XMLStreamUtils.requireStartElement(_reader, _namespace, name); + String text = _reader.getElementText(); + if (nextTag) _reader.nextTag(); + return text; + } + + private void skipElement(String name, boolean nextTag) throws XMLStreamException + { + XMLStreamUtils.requireStartElement(_reader, _namespace, name); + XMLStreamUtils.skipElement(_reader); + if (nextTag) _reader.nextTag(); + } + + private boolean isStartElement(String name) + { + return XMLStreamUtils.isStartElement(_reader, _namespace, name); + } + + private boolean isEndElement(String name) + { + return XMLStreamUtils.isEndElement(_reader, _namespace, name); + } + + private void requireStartElement(String name) throws XMLStreamException + { + XMLStreamUtils.requireStartElement(_reader, _namespace, name); + } + + private void requireEndElement(String name) throws XMLStreamException + { + XMLStreamUtils.requireEndElement(_reader, _namespace, name); + } + + private int nextTag() throws XMLStreamException + { + return _reader.nextTag(); + } + +} diff --git a/history/src/main/scala/META-INF/maven/archetype.xml b/history/src/main/scala/META-INF/maven/archetype.xml deleted file mode 100644 index 4f7b0d928a..0000000000 --- a/history/src/main/scala/META-INF/maven/archetype.xml +++ /dev/null @@ -1,9 +0,0 @@ - - history - - src/main/java/App.java - - - src/test/java/AppTest.java - - diff --git a/history/src/main/scala/org/dbpedia/extraction/dump/extract/ConfigLoader2.scala b/history/src/main/scala/org/dbpedia/extraction/dump/extract/ConfigLoader2.scala new file mode 100644 index 0000000000..824b8b34b7 --- /dev/null +++ b/history/src/main/scala/org/dbpedia/extraction/dump/extract/ConfigLoader2.scala @@ -0,0 +1,416 @@ +package org.dbpedia.extraction.dump.extract + +import org.dbpedia.extraction.config.provenance.{DBpediaDatasets, Dataset} +import org.dbpedia.extraction.config.{Config, ConfigUtils} +import org.dbpedia.extraction.destinations._ +import org.dbpedia.extraction.mappings._ +import org.dbpedia.extraction.ontology.Ontology +import org.dbpedia.extraction.ontology.io.OntologyReader +import org.dbpedia.extraction.sources.{Source2, Source, WikiSource, XMLSource,XMLSource2} +import org.dbpedia.extraction.util.RichFile.wrapFile +import org.dbpedia.extraction.util._ +import org.dbpedia.extraction.wikiparser._ + +import java.io._ +import java.net.URL +import java.util.concurrent.ConcurrentHashMap +import java.util.logging.Logger +import scala.collection.convert.decorateAsScala._ +import scala.collection.mutable +import scala.collection.mutable.{ArrayBuffer, ListBuffer} +import scala.reflect._ + +/** + * Loads the dump extraction configuration. + * + * TODO: clean up. The relations between the objects, classes and methods have become a bit chaotic. + * There is no clean separation of concerns. + * + * TODO: get rid of all config file parsers, use Spring + */ +class ConfigLoader2(config: Config) +{ + //private val logger = Logger.getLogger(classOf[ConfigLoader2].getName) + + private val extractionJobs = new ConcurrentHashMap[Language, ExtractionJob]().asScala + + private val sparkExtractionJobs = new ConcurrentHashMap[Language, SparkExtractionJob]().asScala + + private val extractionRecorder = new mutable.HashMap[ClassTag[_], mutable.HashMap[Language, ExtractionRecorder[_]]]() + + //these lists are used when the ImageExtractor is amongst the selected Extractors + private val nonFreeImages = new ConcurrentHashMap[Language, Seq[String]]().asScala + private val freeImages = new ConcurrentHashMap[Language, Seq[String]]().asScala + + private val extractionMonitor = new ExtractionMonitor() + + def getExtractionRecorder[T: ClassTag](lang: Language, dataset : Dataset = null): org.dbpedia.extraction.util.ExtractionRecorder[T] = { + extractionRecorder.get(classTag[T]) match{ + case Some(s) => s.get(lang) match { + case None => + val datasetsParam = if (dataset == null) ListBuffer[Dataset]() else ListBuffer(dataset) + s(lang) = config.getDefaultExtractionRecorder[T](lang, 2000, null, null, datasetsParam, extractionMonitor) + s(lang).asInstanceOf[ExtractionRecorder[T]] + case Some(er) => + if(dataset != null) if(!er.datasets.contains(dataset)) er.datasets += dataset + er.asInstanceOf[ExtractionRecorder[T]] + } + case None => + extractionRecorder(classTag[T]) = new mutable.HashMap[Language, ExtractionRecorder[_]]() + getExtractionRecorder[T](lang, dataset) + } + } + + /** + * Creates ab extraction job for a specific language. + */ + val extractionJobWorker: Workers[(Language, Seq[Class[_ <: Extractor[_]]])] = SimpleWorkers(config.parallelProcesses, config.parallelProcesses) { input: (Language, Seq[Class[_ <: Extractor[_]]]) => + + val finder = new Finder[File](config.dumpDir, input._1, config.wikiName) + + val date = latestDate(finder) + + //Extraction Context + val context = new DumpExtractionContext + { + def ontology: Ontology = _ontology + + def commonsSource: Source = _commonsSource + + def language: Language = input._1 + + def recorder[T: ClassTag]: ExtractionRecorder[T] = getExtractionRecorder[T](input._1) + + private lazy val _mappingPageSource = + { + val namespace = Namespace.mappings(language) + + if (config.mappingsDir != null && config.mappingsDir.isDirectory) + { + val file = new File(config.mappingsDir, namespace.name(Language.Mappings).replace(' ','_')+".xml") + XMLSource.fromFile(file, Language.Mappings) + } + else + { + val namespaces = Set(namespace) + val url = new URL(Language.Mappings.apiUri) + WikiSource.fromNamespaces(namespaces,url,Language.Mappings) + } + } + + def mappingPageSource : Traversable[WikiPage] = _mappingPageSource + + private lazy val _mappings: Mappings = + { + MappingsLoader.load(this) + } + def mappings : Mappings = _mappings + + def articlesSource: Source = getArticlesSource(language, finder) + + private val _redirects = + { + finder.file(date, "template-redirects.obj") match{ + case Some(cache) => Redirects.load(articlesSource, cache, language) + case None => new Redirects(Map()) + } + + } + + def redirects : Redirects = _redirects + + private val _disambiguations = + { + try { + Disambiguations.load(reader(finder.file(date, config.disambiguations).get), finder.file(date, "disambiguations-ids.obj").get, language) + } catch { + case ex: Exception => + // logger.info("Could not load disambiguations - error: " + ex.getMessage) + null + } + } + + def disambiguations : Disambiguations = + if (_disambiguations != null) + _disambiguations + else + new Disambiguations(Set[Long]()) + + def configFile: Config = config + + def freeImages : Seq[String] = ConfigLoader2.this.freeImages.get(language) match{ + case Some(s) => s + case None => Seq() + } + + def nonFreeImages : Seq[String] = ConfigLoader2.this.nonFreeImages.get(language) match{ + case Some(s) => s ++ ConfigLoader2.this.nonFreeImages(Language.Commons) //always add commons to the list of non free images + case None => Seq() + } + } + + //Extractors + val extractor = CompositeParseExtractor.load(input._2, context) + val datasets = extractor.datasets + + val formatDestinations = new ArrayBuffer[Destination]() + + for ((suffix, format) <- config.formats) { + val datasetDestinations = new mutable.HashMap[Dataset, Destination]() + for (dataset <- datasets) { + finder.file(date, dataset.encoded.replace('_', '-')+'.'+suffix) match{ + case Some(file)=> datasetDestinations(dataset) = new DeduplicatingDestination(new WriterDestination(writer(file), format, getExtractionRecorder(context.language, dataset), dataset)) + case None => + } + } + formatDestinations += new DatasetDestination(datasetDestinations) + } + + val destination = new MarkerDestination( + new CompositeDestination(formatDestinations: _*), + finder.file(date, Extraction.Complete).get, + false + ) + + val extractionJobNS = if(context.language == Language.Commons) + ExtractorUtils.commonsNamespacesContainingMetadata + else config.namespaces + + val extractionJob = new ExtractionJob( + extractor, + context.articlesSource, + extractionJobNS, + destination, + context.language, + config.retryFailedPages, + getExtractionRecorder(context.language) + ) + + extractionJobs.put(context.language, extractionJob) + } + + /** + * Creates ab extraction job for a specific language. + */ + def buildSparkExtractionJob(lang: Language, extractors : Seq[Class[_ <: Extractor[_]]]) : Option[SparkExtractionJob] = { + val finder = new Finder[File](config.dumpDir, lang, config.wikiName) + + val date = latestDate(finder) + + def articlesSource: Source = getArticlesSource(lang, finder) + + //Extraction Context + val context = new SparkExtractionContext + { + def ontology: Ontology = _ontology + def language: Language = lang + + private val _redirects = + { + finder.file(date, "template-redirects.obj") match{ + case Some(cache) => Redirects.load(articlesSource, cache, language) + case None => new Redirects(Map()) + } + + } + + def redirects : Redirects = _redirects + + def recorder[T: ClassTag]: ExtractionRecorder[T] = getExtractionRecorder[T](lang) + + private lazy val _mappingPageSource = + { + val namespace = Namespace.mappings(language) + + if (config.mappingsDir != null && config.mappingsDir.isDirectory) + { + val file = new File(config.mappingsDir, namespace.name(Language.Mappings).replace(' ','_')+".xml") + XMLSource.fromFile(file, Language.Mappings) + } + else + { + val namespaces = Set(namespace) + val url = new URL(Language.Mappings.apiUri) + WikiSource.fromNamespaces(namespaces,url,Language.Mappings) + } + } + + def mappingPageSource : Traversable[WikiPage] = _mappingPageSource + + private lazy val _mappings: Mappings = + { + MappingsLoader.load(this) + } + def mappings : Mappings = _mappings + + private val _disambiguations = + { + try { + Disambiguations.load(reader(finder.file(date, config.disambiguations).get), finder.file(date, "disambiguations-ids.obj").get, language) + } catch { + case ex: Exception => + //logger.info("Could not load disambiguations - error: " + ex.getMessage) + null + } + } + + def disambiguations : Disambiguations = + if (_disambiguations != null) + _disambiguations + else + new Disambiguations(Set[Long]()) + + } + + // TODO: Find a better way to do this (?) + val datasets = CompositeParseExtractor.load(extractors, context).datasets + + val formatDestinations = new ArrayBuffer[Destination]() + + for ((suffix, format) <- config.formats) { + val datasetDestinations = new mutable.HashMap[Dataset, Destination]() + for (dataset <- datasets) { + finder.file(date, dataset.encoded.replace('_', '-')+'.'+suffix) match{ + case Some(file)=> datasetDestinations(dataset) = new DeduplicatingDestination(new WriterDestination(writer(file), format, getExtractionRecorder(lang, dataset), dataset)) + case None => + } + } + formatDestinations += new DatasetDestination(datasetDestinations) + } + + val destination = new MarkerDestination( + new CompositeDestination(formatDestinations: _*), + finder.file(date, Extraction.Complete).get, + false + ) + + val extractionJobNS = if(lang == Language.Commons) + ExtractorUtils.commonsNamespacesContainingMetadata + else config.namespaces + + val sparkExtractionJob = new SparkExtractionJob( + extractors, + context, + extractionJobNS, + destination, + lang, + config.retryFailedPages, + getExtractionRecorder(lang) + ) + + sparkExtractionJobs.put(lang, sparkExtractionJob) + } + + /** + * Creates ab extraction job for a specific language. + */ + val imageCategoryWorker: Workers[Language] = SimpleWorkers(config.parallelProcesses, config.parallelProcesses) { lang: Language => + val finder = new Finder[File](config.dumpDir, lang, config.wikiName) + val imageCategories = ConfigUtils.loadImages(getArticlesSource(lang, finder), lang.wikiCode, getExtractionRecorder(lang, DBpediaDatasets.Images)) + this.freeImages.put(lang, imageCategories._1) + this.nonFreeImages.put(lang, imageCategories._2) + } + + /** + * Loads the configuration and creates extraction jobs for all configured languages. + * + * @return Non-strict Traversable over all configured extraction jobs i.e. an extractions job will not be created until it is explicitly requested. + */ + def getExtractionJobs: Traversable[ExtractionJob] = + { + if(config.copyrightCheck) { + // Image Extractor pre-processing: Extract Free & Non-Free Images prior to the main Extraction + var zw = config.extractorClasses.filter(x => x._2.map(y => y.getSimpleName).contains("ImageExtractorNew")) + if (zw.isEmpty) { + zw = config.extractorClasses.filter(x => x._2.map(y => y.getSimpleName).contains("ImageExtractor")) + } + val imageExtractorLanguages = zw match { + case filtered if filtered.nonEmpty => filtered.keySet.toList ++ List(Language.Commons) //else: add Commons (see ImageExtractorScala for why) + case _ => List[Language]() //no ImageExtractors selected + } + Workers.work[Language](imageCategoryWorker, imageExtractorLanguages) + } else { + val zw = config.extractorClasses.filter(x => x._2.map(y => y.getSimpleName).contains("ImageExtractor")) + zw.keys.foreach(lang => this.nonFreeImages.put(lang, Seq[String]())) + this.nonFreeImages.put(Language.Commons, Seq[String]()) + } + + + // Create a non-strict view of the extraction jobs + // non-strict because we want to create the extraction job when it is needed, not earlier + Workers.work[(Language, Seq[Class[_ <: Extractor[_]]])](extractionJobWorker, config.extractorClasses.toList) + extractionJobs.values + } + + def getSparkExtractionJobs: Traversable[SparkExtractionJob] = { + config.extractorClasses.toList.foreach(input => buildSparkExtractionJob(input._1, input._2)) + sparkExtractionJobs.values + } + + private def writer(file: File): () => Writer = { + () => IOUtils.writer(file) + } + + private def reader(file: File): () => Reader = { + () => IOUtils.reader(file) + } + + private def readers(source: String, finder: Finder[File], date: String): List[() => Reader] = { + files(source, finder, date).map(reader) + } + + private def files(source: String, finder: Finder[File], date: String): List[File] = { + + val files = if (source.startsWith("@")) { // the articles source is a regex - we want to match multiple files + finder.matchFiles(date, source.substring(1)) + } else List(finder.file(date, source)).collect{case Some(x) => x} + + // logger.info(s"Source is $source - ${files.size} file(s) matched") + + files + } + + //language-independent val + private lazy val _ontology = + { + val ontologySource = if (config.ontologyFile != null && config.ontologyFile.isFile) + { + XMLSource.fromFile(config.ontologyFile, Language.Mappings) + } + else + { + val namespaces = Set(Namespace.OntologyClass, Namespace.OntologyProperty) + val url = new URL(Language.Mappings.apiUri) + val language = Language.Mappings + WikiSource.fromNamespaces(namespaces, url, language) + } + new OntologyReader().read(ontologySource) + } + + //language-independent val + private lazy val _commonsSource = + { + val finder = new Finder[File](config.dumpDir, Language("commons"), config.wikiName) + val date = latestDate(finder) + XMLSource.fromReaders(config.source.flatMap(x => readers(x, finder, date)), Language.Commons, _.namespace == Namespace.File) + } + + private def getArticlesSource(language: Language, finder: Finder[File]) = + { + val articlesReaders = config.source.flatMap(x => readers(x, finder, latestDate(finder))) + + System.out.println("getArticlesSource "); + XMLSource2.fromReaders(articlesReaders, language, + title => title.namespace == Namespace.Main || title.namespace == Namespace.File || + title.namespace == Namespace.Category || title.namespace == Namespace.Template || + title.namespace == Namespace.WikidataProperty || title.namespace == Namespace.WikidataLexeme || ExtractorUtils.titleContainsCommonsMetadata(title)) + } + + private def latestDate(finder: Finder[_]): String = { + val isSourceRegex = config.source.startsWith("@") + val source = if (isSourceRegex) config.source.head.substring(1) else config.source.head + val fileName = if (config.requireComplete) Config.Complete else source + finder.dates(fileName, isSuffixRegex = isSourceRegex).last + } +} + diff --git a/history/src/main/scala/org/dbpedia/extraction/dump/extract/Extraction2.scala b/history/src/main/scala/org/dbpedia/extraction/dump/extract/Extraction2.scala new file mode 100644 index 0000000000..627448bfb2 --- /dev/null +++ b/history/src/main/scala/org/dbpedia/extraction/dump/extract/Extraction2.scala @@ -0,0 +1,47 @@ +package org.dbpedia.extraction.dump.extract + +import org.dbpedia.extraction.config.Config +import org.dbpedia.extraction.util.ProxyAuthenticator + +import java.net.Authenticator +import java.util.concurrent.ConcurrentLinkedQueue +import scala.concurrent.ExecutionContext.Implicits.global +import scala.concurrent.Future +import scala.util.{Failure, Success} + +/** + * Dump extraction script. + */ +object Extraction2 { + + val Started = "extraction-started" + + val Complete = "extraction-complete" + + def main(args: Array[String]): Unit = { + require(args != null && args.length >= 1 && args(0).nonEmpty, "missing required argument: config file name") + // Authenticator.setDefault(new ProxyAuthenticator()) + + //Load extraction jobs from configuration + val config = new Config(args.head) + val configLoader = new ConfigLoader2(config) + + val parallelProcesses = if(config.runJobsInParallel) config.parallelProcesses else 1 + val jobsRunning = new ConcurrentLinkedQueue[Future[Unit]]() + //Execute the extraction jobs one by one + for (job <- configLoader.getExtractionJobs) { + while(jobsRunning.size() >= parallelProcesses) + Thread.sleep(1000) + + val future = Future{job.run()} + jobsRunning.add(future) + future.onComplete { + case Failure(f) => throw f + case Success(_) => jobsRunning.remove(future) + } + } + + while(jobsRunning.size() > 0) + Thread.sleep(1000) + } +} \ No newline at end of file diff --git a/history/src/main/scala/org/dbpedia/extraction/mappings/HistoryPageExtractor.scala b/history/src/main/scala/org/dbpedia/extraction/mappings/HistoryPageExtractor.scala index 33740c2326..67c65e2d18 100644 --- a/history/src/main/scala/org/dbpedia/extraction/mappings/HistoryPageExtractor.scala +++ b/history/src/main/scala/org/dbpedia/extraction/mappings/HistoryPageExtractor.scala @@ -1,84 +1,59 @@ package org.dbpedia.extraction.mappings import java.net.URL - import org.dbpedia.extraction.config.provenance.{DBpediaDatasets, Dataset} -import org.dbpedia.extraction.mappings.wikitemplate._ +import org.dbpedia.extraction.ontology.{Ontology, OntologyProperty} import org.dbpedia.extraction.transform.Quad import org.dbpedia.extraction.util.Language import org.dbpedia.extraction.wikiparser._ -import org.openrdf.model.impl.ValueFactoryImpl -import org.openrdf.model.{Literal, Statement, URI} - -import scala.collection.mutable.{HashMap, ListBuffer, Stack} -import scala.util.control.Breaks._ -import scala.util.matching.Regex -import scala.xml.{NodeSeq, XML, Node => XMLNode} - -//some of my utilities -import org.dbpedia.extraction.mappings.Matcher._ -import org.dbpedia.extraction.mappings.WiktionaryPageExtractor._ -import org.dbpedia.extraction.mappings.wikitemplate.MyNodeList._ -import org.dbpedia.extraction.mappings.wikitemplate.MyStack._ -import org.dbpedia.extraction.mappings.wikitemplate.TimeMeasurement._ -import org.dbpedia.extraction.mappings.wikitemplate.VarBinder._ +import scala.collection.mutable.ArrayBuffer import scala.language.reflectiveCalls -/** - * parses (wiktionary) wiki pages - * is meant to be configurable for multiple languages - * - * is even meant to be usable for non-wiktionary wikis -> arbitrary wikis, but where all pages follow a common schema - * but in contrast to infobox-focused extraction, we *aim* to be more flexible: - * dbpedia core is hardcoded extraction. here we try to use a meta-language describing the information to be extracted - * this is done via xml containing wikisyntax snippets (called templates) containing placeholders (called variables), which are then bound - * - * we also extended this approach to match the wiktionary schema - * a page can contain information about multiple entities (sequential blocks) - * - * @author Jonas Brekle - * @author Sebastian Hellmann - */ + class HistoryPageExtractor( context : { - def redirects : Redirects - def language : Language + def ontology: Ontology + def language: Language } ) - extends PageNodeExtractor -{ + extends WikiPageWithRevisionsExtractor { - # dc: - # prov: - # swp: - val sameAsProperty: OntologyProperty = context.ontology.properties("owl:sameAs") + //PageNodeExtractor? WikiPageExtractor ? + private val subjectOntProperty = context.ontology.properties("dc:subject") + private val typeOntProperty = context.ontology.properties("rdf:type") + private val featureOntClass = context.ontology.classes("prov:Revision") + //val sameAsProperty: OntologyProperty = context.ontology.properties("prov:sameAs") - override val datasets = Set(DBpediaDatasets.ExternalLinks) # ToADD + override val datasets = Set(DBpediaDatasets.History) //# ToADD - override def extract(node : PageNode, subjectUri : String) : Seq[Quad] = - { - if(node.title.namespace != Namespace.Main && !ExtractorUtils.titleContainsCommonsMetadata(node.title)) - return Seq.empty +// WikiPage ? PageNode? - var quads = new ArrayBuffer[Quad]() - for(link <- collectExternalLinks(node); - uri <- UriUtils.cleanLink(link.destination)) - { - quads += new Quad(context.language, DBpediaDatasets.ExternalLinks, subjectUri, wikiPageExternalLinkProperty, uri, link.sourceIri, null) - } + override def extract(node:WikiPageWithRevisions , subjectUri: String): Seq[Quad] = { + + + println("xxxxxxxxxxxxxx HISTORY EXTRACTOR xxxxxxxxxxxxxxxxx") + val quads = new ArrayBuffer[Quad]() + + //node.pageNode.children.foreach(n => { + println(">>>>>>>>>>>>>>>>") + println(node.toString) + println("NB REVISIONS :"+node.revisions) + //if(n.isInstanceOf[TextNode]){ println( "FOUND TEXT")} + println(">>>>>>>>>>>>>>>>") + //}) + quads += new Quad(context.language, DBpediaDatasets.History, node.title.pageIri, typeOntProperty, featureOntClass.uri, node.sourceIri) + quads += new Quad(context.language, DBpediaDatasets.History, node.title.pageIri, subjectOntProperty, subjectUri, node.sourceIri) quads } - private def collectExternalLinks(node : Node) : List[ExternalLinkNode] = - { - node match - { - case linkNode : ExternalLinkNode => List(linkNode) - case _ => node.children.flatMap(collectExternalLinks) + /*def collectRevisions(node: Node): List[RevisionNode] = { + node match { + case revisionNode: RevisionNode if node.destination.namespace == Namespace.Category => List(linkNode) + case _ => node.children.flatMap(collectRevisions) } } +*/ } - diff --git a/history/src/main/scala/org/dbpedia/extraction/mappings/RevisionNode.scala b/history/src/main/scala/org/dbpedia/extraction/mappings/RevisionNode.scala new file mode 100644 index 0000000000..7dea09556c --- /dev/null +++ b/history/src/main/scala/org/dbpedia/extraction/mappings/RevisionNode.scala @@ -0,0 +1,38 @@ +package org.dbpedia.extraction.mappings + +import org.dbpedia.extraction.util.Language +import org.dbpedia.extraction.wikiparser.Node +/** + * Represents a page. + * + * @param title The title of this page + * @param id The page ID + * @param revision The revision of this page + * @param timestamp The timestamp of the revision, in milliseconds since 1970-01-01 00:00:00 UTC + * @param contributorID The ID of the latest contributor + * @param contributorName The name of the latest contributor + * @param children The contents of this page + */ +class RevisionNode( + val id: Long, + val parentId: Long, + val timestamp: Long, + val contributorID: Long, + val contributorName: String, + val contributorIP: String, + val comment: String, + val text_size: Long, + val minor_edit: Boolean) + extends Node(List.empty, 0) + { + + def toWikiText = children.map(_.toWikiText).mkString + + def toPlainText = children.map(_.toPlainText).mkString + + override def equals(obj: scala.Any) = obj match { + case otherRevisionNode: RevisionNode => (otherRevisionNode.id == id && otherRevisionNode.parentId == parentId && otherRevisionNode.timestamp == timestamp + && otherRevisionNode.contributorID == contributorID && otherRevisionNode.contributorName == contributorName ) + case _ => false + } +} \ No newline at end of file diff --git a/history/src/main/scala/org/dbpedia/extraction/mappings/RevisionNodeExtractor.scala b/history/src/main/scala/org/dbpedia/extraction/mappings/RevisionNodeExtractor.scala new file mode 100644 index 0000000000..bfa5393c52 --- /dev/null +++ b/history/src/main/scala/org/dbpedia/extraction/mappings/RevisionNodeExtractor.scala @@ -0,0 +1,3 @@ +package org.dbpedia.extraction.mappings + +trait RevisionNodeExtractor extends Extractor[RevisionNode] diff --git a/history/src/main/scala/org/dbpedia/extraction/mappings/WikiPageWithRevisionsExtractor.scala b/history/src/main/scala/org/dbpedia/extraction/mappings/WikiPageWithRevisionsExtractor.scala new file mode 100644 index 0000000000..3e055ae6c3 --- /dev/null +++ b/history/src/main/scala/org/dbpedia/extraction/mappings/WikiPageWithRevisionsExtractor.scala @@ -0,0 +1,10 @@ +package org.dbpedia.extraction.mappings + +import org.dbpedia.extraction.wikiparser.WikiPageWithRevisions + +/** + * Extractors are mappings that extract data from a WikiPage. + * Necessary to get some type safety in CompositeExtractor: + * Class[_ <: Extractor] can be checked at runtime, but Class[_ <: Mapping[PageNode]] can not. + */ +trait WikiPageWithRevisionsExtractor extends Extractor[WikiPageWithRevisions] diff --git a/history/src/main/scala/org/dbpedia/extraction/sources/Source2.scala b/history/src/main/scala/org/dbpedia/extraction/sources/Source2.scala new file mode 100644 index 0000000000..f86e04bf87 --- /dev/null +++ b/history/src/main/scala/org/dbpedia/extraction/sources/Source2.scala @@ -0,0 +1,25 @@ +package org.dbpedia.extraction.sources + +import org.dbpedia.extraction.wikiparser.{WikiPage, WikiPageWithRevisions} + +import scala.collection.immutable.Traversable + +/** + * A source of wiki pages. + * TODO: do we need this class? Methods that have a paramater with this type are not as flexible + * as they could be, for example they cannot be called with List(page). The only advantage of + * this class seems to be the definition hasDefiniteSize = false, which can easily be added to + * any Traversable implementations that actually need it. We should clearly document in which + * cases hasDefiniteSize = false is useful or necessary. The Scala documentation doesn't help + * much here. Traversable also defines all kinds of methods - for example size() - that call + * foreach() and iterate over the whole collection, which for most of our sources is a huge + * waste. Even calling head() causes a big overhead, for example a file or a network connection + * is opened. Is there a more appropriate Scala type? + */ +trait Source2 extends Source +{ + /** + * True, if this source is guaranteed to have a finite size. + */ + override def hasDefiniteSize = false +} diff --git a/history/src/main/scala/org/dbpedia/extraction/sources/XMLSource2.scala b/history/src/main/scala/org/dbpedia/extraction/sources/XMLSource2.scala new file mode 100644 index 0000000000..17034520cc --- /dev/null +++ b/history/src/main/scala/org/dbpedia/extraction/sources/XMLSource2.scala @@ -0,0 +1,203 @@ +package org.dbpedia.extraction.sources + +import org.dbpedia.extraction.util.Language +import org.dbpedia.extraction.wikiparser.{WikiPage, WikiPageWithRevisions, WikiTitle} + +import java.io.{File, FileInputStream, InputStreamReader, Reader} +import java.lang +import java.util.concurrent.{Callable, ExecutorService, Executors} +import scala.collection.JavaConversions._ +import scala.util.Try +import scala.xml.Elem + +/** + * Loads wiki pages from an XML stream using the MediaWiki export format. + * + * The MediaWiki export format is specified by + * http://www.mediawiki.org/xml/export-0.4 + * http://www.mediawiki.org/xml/export-0.5 + * http://www.mediawiki.org/xml/export-0.6 + * http://www.mediawiki.org/xml/export-0.8 + * etc. + */ +object XMLSource2 +{ + /** + * Creates an XML Source from an input stream. + * + * @param file The input stream to read from. Will be closed after reading. + * @param filter Function to filter pages by their title. Pages for which this function returns false, won't be yielded by the source. + * @param language if given, parser expects file to be in this language and doesn't read language from siteinfo element + */ + def fromFile(file: File, language: Language, filter: WikiTitle => Boolean = _ => true): Source = { + fromReader(() => new InputStreamReader(new FileInputStream(file), "UTF-8"), language, filter) + } + + def fromMultipleFiles(files: List[File], language: Language, filter: WikiTitle => Boolean = _ => true): Source = { + fromReaders(files.map { f => () => new InputStreamReader(new FileInputStream(f), "UTF-8") }, language, filter) + } + + /** + * Creates an XML Source from a reader. + * + * @param source The input stream to read from. Will be closed after reading. + * @param filter Function to filter pages by their title. Pages for which this function returns false, won't be yielded by the source. + * @param language if given, parser expects file to be in this language and doesn't read language from siteinfo element + */ + def fromReader(source: () => Reader, language: Language, filter: WikiTitle => Boolean = _ => true) : Source = { + + System.out.print("fromReader - XMLReaderSource2 "); + new XMLReaderSource2(source, language, filter) + } + + def fromReaders(sources: Seq[() => Reader], language: Language, filter: WikiTitle => Boolean = _ => true) : Source = { + + System.out.print("fromReaders - MultipleXMLReaderSource2 "); + if (sources.size == 1) fromReader(sources.head, language, filter) // no need to create an ExecutorService + else new MultipleXMLReaderSource2(sources, language, filter) + } + + /** + * Creates an XML Source from a parsed XML tree. + * + * @param xml The xml which contains the pages + */ + // def fromXML(xml : Elem, language: Language) : Source2 = new XMLSource2(xml, language) + + /** + * Creates an XML Source from a parsed XML OAI response. + * + * @param xml The xml which contains the pages + */ + // def fromOAIXML(xml : Elem) : Source2 = new OAIXMLSource2(xml) + +} + +/** + * XML source which reads from a file + */ +private class MultipleXMLReaderSource2(sources: Seq[() => Reader], language: Language, filter: WikiTitle => Boolean) extends Source +{ + var executorService : ExecutorService = _ + + override def foreach[U](proc : WikiPage => U) : Unit = { + + System.out.print("MultipleXMLReaderSource2 "); + if (executorService == null) executorService = Executors.newFixedThreadPool(Runtime.getRuntime.availableProcessors()) + + try { + + def tasks = sources.map { source => + new Callable[Unit]() { + def call() { + val reader = source() + + try new WikipediaDumpParserHistory(reader, language, filter.asInstanceOf[WikiTitle => lang.Boolean], proc).run() + finally reader.close() + } + } + } + + // Wait for the tasks to finish + executorService.invokeAll(tasks) + + } finally { + executorService.shutdown() + executorService = null + } + } + + override def hasDefiniteSize = true +} + +/** + * XML source which reads from a file + */ +private class XMLReaderSource2(source: () => Reader, language: Language, filter: WikiTitle => Boolean) extends Source +{ + override def foreach[U](proc : WikiPage => U) : Unit = { + System.out.print("XMLReaderSource2 - readPages") + val reader = source() + try new WikipediaDumpParserHistory(reader, language, filter.asInstanceOf[WikiTitle => java.lang.Boolean], proc).run() + finally reader.close() + } + + override def hasDefiniteSize = true +} + +/** + * XML source which reads from a parsed XML tree. + */ +/*private class XMLSource2(xml : Elem, language: Language) extends Source2 +{ + override def foreach[U](f : WikiPageWithRevisions => U) : Unit = + { + + for(page <- xml \ "page"; + rev <- page \ "revision") + { + + val title = WikiTitle.parseCleanTitle((page \ "title").text, language, Try{new java.lang.Long(java.lang.Long.parseLong((page \ "id").text))}.toOption) + + val nsElem = page \ "ns" + if (nsElem.nonEmpty ) + { + try + { + val nsCode = nsElem.text.toInt + require(title.namespace.code == nsCode, "XML Namespace (" + nsCode + ") does not match the computed namespace (" + title.namespace + ") in page: " + title.decodedWithNamespace) + } + catch + { + case e: NumberFormatException => throw new IllegalArgumentException("Cannot parse content of element [ns] as int", e) + } + } + + //Skip bad titles + if(title != null) + { + val _redirect = (page \ "redirect" \ "@title").text match + { + case "" => null + case t => WikiTitle.parse(t, language) + } + val _contributorID = (rev \ "contributor" \ "id").text match + { + case null => "0" + case id => id + } + /* f( new WikiPageWithRevisions( title = title, + redirect = _redirect, + id = (page \ "id").text, + revision = (rev \ "id").text, + timestamp = (rev \ "timestamp").text, + contributorID = _contributorID, + contributorName = if (_contributorID == "0") (rev \ "contributor" \ "ip" ).text + else (rev \ "contributor" \ "username" ).text, + source = (rev \ "text").text, + format = (rev \ "format").text) */ + } + } + } + + override def hasDefiniteSize = true +}*/ + +/** + * OAI XML source which reads from a parsed XML response. + */ +/*private class OAIXMLSource2(xml : Elem) extends Source2 +{ + override def foreach[U](f : WikiPage => U) : Unit = + { + + val lang = if ( (xml \\ "mediawiki" \ "@{http://www.w3.org/XML/1998/namespace}lang").text == null) "en" + else (xml \\ "mediawiki" \ "@{http://www.w3.org/XML/1998/namespace}lang").text + val source = new XMLSource2( (xml \\ "mediawiki").head.asInstanceOf[Elem], Language.apply(lang)) + source.foreach(wikiPageWithRevisions => { + f(wikiPageWithRevisions) + }) + } + + override def hasDefiniteSize = true +}*/ diff --git a/history/src/main/scala/org/dbpedia/extraction/wikiparser/RevisionNode.scala b/history/src/main/scala/org/dbpedia/extraction/wikiparser/RevisionNode.scala new file mode 100644 index 0000000000..5102674dc6 --- /dev/null +++ b/history/src/main/scala/org/dbpedia/extraction/wikiparser/RevisionNode.scala @@ -0,0 +1,72 @@ +package org.dbpedia.extraction.wikiparser + +import org.dbpedia.extraction.util.{RecordEntry, RecordSeverity} +import org.dbpedia.extraction.util.StringUtils._ +import org.dbpedia.extraction.wikiparser.RevisionNode.parseInt +import org.dbpedia.extraction.wikiparser.impl.simple.SimpleWikiParser + +import scala.collection.mutable +import scala.collection.mutable.ListBuffer +import scala.xml.Elem + +/** + * Represents a revision. + * + * @param id The page ID + * @param revision The revision of this page + * @param timestamp The timestamp of the revision, in milliseconds since 1970-01-01 00:00:00 UTC + * @param contributorID The ID of the latest contributor + * @param contributorName The name of the latest contributor + * @param children The contents of this page + */ +class RevisionNode( + val id: Long, + val parentId: Long, + val timestamp: Long, + val contributorID: Long, + val contributorName: String, + val contributorIP: String, + val contributorDeleted: Boolean, + val comment: String, + val format: String, + val text_size: Long, + val minor_edit: Boolean + ) + extends java.io.Serializable +{ + + + + def this(id: String, parentId: String, timestamp: String, contributorID: String, contributorName: String, contributorIP: String, contributorDeleted: String, comment: String, format: String, text_size: String, minor_edit:String) = { + + this(RevisionNode.parseLong(id), RevisionNode.parseLong(parentId),parseTimestamp(timestamp), RevisionNode.parseLong(contributorID), contributorName, contributorIP, RevisionNode.parseBoolean(contributorDeleted), comment, format,RevisionNode.parseInt(text_size),RevisionNode.parseBoolean(minor_edit)) + } + +} +object RevisionNode { + def parseBoolean(str: String): Boolean = { + // System.out.println(">>>>>>>>>>>>>" +str) + if (str == "false" || str.isEmpty) false + else true + } + def parseInt(str: String): Int = { + if (str == null || str.isEmpty) -1 + else str.toInt + } + + def formatInt(id: Int): String = { + if (id < 0) "" + else id.toString + } + + def parseLong(str: String): Long = { + if (str == null || str.isEmpty) -1 + else str.toLong + } + + def formatLong(id: Long): String = { + if (id < 0) "" + else id.toString + } + +} \ No newline at end of file diff --git a/history/src/main/scala/org/dbpedia/extraction/wikiparser/WikiPageWithRevisions.scala b/history/src/main/scala/org/dbpedia/extraction/wikiparser/WikiPageWithRevisions.scala new file mode 100644 index 0000000000..7702b8c02d --- /dev/null +++ b/history/src/main/scala/org/dbpedia/extraction/wikiparser/WikiPageWithRevisions.scala @@ -0,0 +1,64 @@ +package org.dbpedia.extraction.wikiparser + +import org.dbpedia.extraction.util.{RecordEntry, RecordSeverity} +import org.dbpedia.extraction.util.StringUtils._ +import java.util +import scala.collection.mutable +import scala.collection.mutable.ListBuffer +import scala.collection.JavaConverters._ +/** + * Represents a wiki page + * + * TODO: use redirect id to check redirect extractor. Or get rid of redirect extractor. + * + * @param title The title of this page + * @param id The page ID + * @param revision The revision of this page + * @param timestamp The timestamp of the revision, in milliseconds since 1970-01-01 00:00:00 UTC + * @param contributorID The ID of the latest contributor + * @param contributorName The name of the latest contributor + * @param source The WikiText source of this page + * @param format e.g. "text/x-wiki" + */ +class WikiPageWithRevisions( + title: WikiTitle, + redirect: WikiTitle, + id: Long, + revision: Long, + timestamp: Long, + contributorID: Long, + contributorName: String, + source: String, + format: String, + val revisions: List[RevisionNode] + ) extends WikiPage (title,redirect, id, revision,timestamp,contributorID, contributorName, source, format) +{ + private val extractionRecords = ListBuffer[RecordEntry[WikiPageWithRevisions]]() + + def this(title: WikiTitle, source: String) = + this(title, null, -1, -1, -1, 0, "", source, "", List[RevisionNode]()) + + def this(title: WikiTitle, redirect: WikiTitle, id: String, revision: String, timestamp: String, contributorID: String, contributorName: String, source: String, format: String,revisions: List[RevisionNode]) = + this(title, redirect, WikiPage.parseLong(id), WikiPage.parseLong(revision), parseTimestamp(timestamp), WikiPage.parseLong(contributorID), contributorName, source, format,revisions) + + def this(title: WikiTitle, redirect: WikiTitle, id: String, revision: String, timestamp: String, contributorID: String, contributorName: String, source: String, format: String, revisions: util.ArrayList[RevisionNode]) = + this(title, redirect, WikiPage.parseLong(id), WikiPage.parseLong(revision), parseTimestamp(timestamp), WikiPage.parseLong(contributorID), contributorName, source, format, WikiPageWithRevisions.convertJavaListRevision(revisions)) + + + + + + override def toString: String = "WikiPageWithRevision(" + title + "," + id + ", with " + revisions.size+ "revisions )" + +} + +object WikiPageWithRevisions { + + + def convertJavaListRevision(myJavaList: util.ArrayList[RevisionNode]): List[RevisionNode] = { + myJavaList.asScala.toList + //.map(x => new RevisionNode(x)) + } + + +} diff --git a/history/src/test/resources/extraction-configs/extraction.config.properties b/history/src/test/resources/extraction-configs/extraction.config.properties new file mode 100644 index 0000000000..341c8d2478 --- /dev/null +++ b/history/src/test/resources/extraction-configs/extraction.config.properties @@ -0,0 +1,27 @@ +# download and extraction target dir +#base-dir= moved to $extraction-framework/core/src/main/resources/universal.properties +base-dir=/home/cringwal/Desktop/GSOC/extraction-framework/history/sample-xml-dump + +# Source file. If source file name ends with .gz or .bz2, it is unzipped on the fly. +# Must exist in the directory xxwiki/yyyymmdd and have the prefix xxwiki-yyyymmdd- +# where xx is the wiki code and yyyymmdd is the dump date. + +# default: +#source=# moved to $extraction-framework/core/src/main/resources/universal.properties + +source=pages-articles.xml +# use only directories that contain a 'download-complete' file? Default is false. +require-download-complete=true + +# List of languages or article count ranges, e.g. 'en,de,fr' or '10000-20000' or '10000-', or '@mappings' +languages=fr + +# extractor class names starting with "." are prefixed by "org.dbpedia.extraction.mappings" + +extractors=.HistoryPageExtractor + + +# If we need to Exclude Non-Free Images in this Extraction, set this to true +copyrightCheck=false + + diff --git a/history/src/test/scala/org/dbpedia/extraction/dump/extract/ExtractionTest.scala b/history/src/test/scala/org/dbpedia/extraction/dump/extract/ExtractionTest.scala new file mode 100644 index 0000000000..0df05affa9 --- /dev/null +++ b/history/src/test/scala/org/dbpedia/extraction/dump/extract/ExtractionTest.scala @@ -0,0 +1,53 @@ +package org.dbpedia.extraction.dump + +import java.io.File +import java.util.concurrent.ConcurrentLinkedQueue +import org.apache.commons.io.FileUtils +import org.dbpedia.extraction.config.Config +import org.dbpedia.extraction.dump.extract.ConfigLoader2 +import org.scalatest.{BeforeAndAfterAll, DoNotDiscover, FunSuite, Tag} + +import scala.concurrent.Future +import scala.util.{Failure, Success} +import scala.concurrent.ExecutionContext.Implicits.global + +object HistoTestTag extends Tag("HistoricTest") +class ExtractionTest extends FunSuite { + + test("test Historic extraction", HistoTestTag) { + val jobsRunning = new ConcurrentLinkedQueue[Future[Unit]]() + + val classLoader: ClassLoader = getClass.getClassLoader + + val histoConfig = new Config(classLoader.getResource("extraction-configs/extraction.config.properties").getFile) + println("BEFORE") + extract(histoConfig, jobsRunning) + println("AFTER") + } + + def extract(config: Config, jobsRunning: ConcurrentLinkedQueue[Future[Unit]]): Unit = { + val configLoader = new ConfigLoader2(config) + val parallelProcesses = if (config.runJobsInParallel) config.parallelProcesses else 1 + + //Execute the extraction jobs one by one + for (job <- configLoader.getExtractionJobs) { + while (jobsRunning.size() >= parallelProcesses) { + Thread.sleep(1000) + } + + val future = Future { + job.run() + } + jobsRunning.add(future) + future.onComplete { + case Failure(f) => throw f + case Success(_) => jobsRunning.remove(future) + } + } + + while (jobsRunning.size() > 0) { + Thread.sleep(1000) + } + jobsRunning.clear() + } +} \ No newline at end of file diff --git a/ontology.owl b/ontology.owl deleted file mode 100644 index bd9e84c10f..0000000000 --- a/ontology.owl +++ /dev/null @@ -1,9069 +0,0 @@ - - - - - dbo - http://dbpedia.org/ontology/ - The DBpedia Ontology - - The DBpedia ontology provides the classes and properties used in the DBpedia data set. - - - - DBpedia Maintainers - DBpedia Maintainers and Contributors - 2008-11-17T12:00Z - asdf - - This ontology is generated from the manually created specifications in the DBpedia Mappings - Wiki. Each release of this ontology corresponds to a new release of the DBpedia data set which - contains instance data extracted from the different language versions of Wikipedia. For - information regarding changes in this ontology, please refer to the DBpedia Mappings Wiki. - - - - - - バスケットボールリーグliga de baloncestolega di pallacanestrobasketbal competitiebasketball league농구 리그Ομοσπονδία Καλαθοσφαίρισηςsraith cispheileligue de basketballBasketball-Ligaa group of sports teams that compete against each other in Basketball - - evento naturalegebeurtenis in de natuurnatural eventφυσικό γεγονόςévénement naturelNaturereignisΤο φυσικό γεγονός χρησιμοποιείται για να περιγράψει ένα συμβάν που πραγματοποιείται φυσικά - - 英語圏の行政区画provincieprovinceεπαρχίαcúigeprovinceProvinzAn administrative body governing a territorial unity on the intermediate level, between local and national levelΕίναι διοικητική δομή του κράτους που διοικεί μια περιοχή που είναι σε έκταση μεγαλύτερη από τοπικό επίπεδο και μικρότερη από εθνικό επίπεδο. - - top level domaintop level domaindomaine de premier niveau - - maankratercratera lunarlunar craterΣεληνιακός κρατήραςcráitéar gealaícratère lunaireMondkrater - - motorsport seasonmotorsportseizoenMotorsportsaison - - 軍人militaremilitairmilitary person군인στρατιωτικόςmilitairemilitärische Person - - periodo temporaltidsperiodetijdvaktime periodχρονική περίοδοςtréimhsepériode temporelleZeitraum - - 内燃機関motore d'automobileautomotormotor de automóvelautomobile engine자동차 엔진κινητήρας αυτοκινήτουinneall gluaisteáinmoteur d'automobileFahrzeugmotor - - NebulaТуманность - - archeolog考古学者ArqueólogoarcheoloogarcheologistΑρχαιολόγοςseandálaíarchéologueArchäologe - - 酵素enzimaenzymenzyme효소ένζυμοeinsímenzymeEnzym - - sangskriversongwriter (tekstdichter)songwriterauteur-compositeurLiedschreibera person who writes songs.een persoon die de muziek en/of de tekst voor populaire muzieknummers schrijft. - - 正方形pleinsquarecearnógplacePlatz - - uniwersytet大学universidaduniversiteituniversidadeuniversity대학πανεπιστήμιοollscoiluniversitéUniversität - - anatomska struktura解剖構造struttura anatomicaanatomische structuuranatomical structure해부학ανατομική δομήcoirpeogstructure anatomiqueanatomischen Strukturestrutura anatómica - - televizijska oddajaテレビ番組serie de televisióntelevisie showمعلومات تلفازtelevision showτηλεοπτική σειράclár teilifíseémission de télévisionFernsehsendung - - lanceerbasislaunch padράμπα φορτώσεωςceap lainseálarampe de lancementStartrampe - - liga de ciclismowielerrondecycling league사이클 리그Ομοσπονδία Ποδηλασίαςligue de cyclismeRad-Ligaa group of sports teams that compete against each other in Cycling - - 国土territoriumterritoryπεριοχήterritoireTerritoriumA territory may refer to a country subdivision, a non-sovereign geographic region. - - TankТанк - - liga de curlingcurling competitiecurling league컬링 리그πρωτάθλημα curlingsraith curlálaligue de curlingCurling-Ligaa group of sports teams that compete against each other in Curling - - Gated communityHofje / gebouw met woongemeenschapbewachte Wohnanlage / Siedlung - - festival de músicamuziekfestivalmusic festival음악제φεστιβάλ μουσικήςfestival de musiqueMusikfestival - - 租税impuestobelastingtaxφόροςcáintaxeSteuer - - 競馬場ippodromorenbaanracecourseιππόδρομοςráschúrsaRennbahnA 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.Ο ιππόδρομος,εναλλακτικός όρος για την πίστα διεξαγωγής αγώνων μεταξύ ίππων,συναντάται σε χώρες όπως η Αγγλία, Αυστραλία, Χονγκ Κονγκ και τα Ηνωμένα Αραβικά Εμιράτα. - - tancerzダンサーballerinodanserdancerχορευτήςdamhsóirdanceurTänzer - - ijshockeyspelerice hockey player아이스하키 선수παίκτης χόκεϋjoueur de hockey sur glaceEishockeyspieler - - Sistema de Transporte Públicoopenbaar vervoer systeempublic transit systemμέσα μαζικής μεταφοράςÖffentliches PersonenverkehrssystemA 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).Τα μέσα μαζικής μεταφοράς (συντομογραφία ΜΜΜ) είναι τα δημόσια συγκοινωνιακά μέσα, που περιλαμβάνουν τα λεωφορεία, τα τρόλεϊ, τα τραμ, τα τρένα, το μετρό, τα πλοία. Υπάρχουν και τα ταχεία μέσα συγκοινωνίας που περιλαμβάνουν τα αεροπλάνα, υπερταχεία τρένα.Ein System des Öffentlichen Personenverkehrs auf Straße, Schiene oder Wasser. - - blood vesselbloedvatvaisseau sanguin - - mecz piłki nożnejpartido de fútbolvoetbal wedstrijdfootball matchαγώνας ποδοσφαίρουcluiche peileFußballspiela competition between two football teams - - MouseGeneLocationMausgenom Lokationmuisgenoom locatieマウス遺伝子座 - - militær konfliktmilitair conflictmilitary conflict전쟁στρατιωτική σύγκρουσηconflit militairemilitärischer Konflikt - - Stated ResolutionAngenommen BeschlußAangenomen BesluitA Resolution describes a formal statement adopted by a meeting or convention.Een Besluit of Verklaring beschrijft een formeel besluit of formele aanbeveling aangenomen door een vergadering. - - 路面電車tramstreetcartramwayStraßenbahn - - festiwal filmowy映画祭filmfestivalfilmfestivalfilm festival영화제φεστιβάλ κινηματογράφουféile scannánfestival du filmFilmfestival - - monoklonaler Antikörpermonoclonal antibodymonoclonal anticorpsMedikamente welche monoklonale Antikörper sind - - Theatre directordirecteur de théâtretheaterdirecteurTheaterdirektorA director in the theatre field who oversees and orchestrates the mounting of a theatre production. - - 飲料bebidadrikbevandadrankbeverage음료αναψυκτικόdeochboissonGetränkA drink, or beverage, is a liquid which is specifically prepared for human consumption.Ein Getränk ist eine zum Trinken zubereitete Flüssigkeit. Getränke werden entweder zum Stillen von Durst und damit zur Wasseraufnahme des Körpers, als Nahrungsmittel oder auch als reine Genussmittel aufgenommen.Ένα πόσιμο υγρό ρόφημα, συνήθως με μηδενική ή ελάχιστη περιεκτικότητα αλκοόλης. - - ruimteveerspace shuttle우주 왕복선διαστημικό λεωφορείοspástointeáilnavette spatialeRaumfähre - - Employers' OrganisationArbeitgeberverbändewerkgeversorganisatiesyndicat de patronsAn employers' organisation is an organisation of entrepreneurs who work together to coordinate their actions in the field of labour relations - - 刑務所prigionegevangenisprisonφυλακήpríosúnprisongefängnis - - 古細菌archeiArchaea (oerbacteriën)archaea고세균αρχαίαarchéesArchaeen - - jugador de balonmanohåndboldspillerhandballerhandball playerπαίκτης του handballimreoir liathróid láimhejoueur de handballHandballspieler - - MężczyznaおとこMandUomoMensman남자мужчинаHommeMann - - kobieta女性kvindedonnavrouwwoman여자женщинаfemmeFrauen - - religieusreligiousθρησκευτικόςreligieuxreligiös - - クモ綱arácnidoaracnidespinachtigenaracnídeosarachnid거미강αραχνοειδέςaraicnidarachnidesSpinnentier - - Distritodepartementdepartment부서τμήμαroinndépartementDistrikt - - Cardinal directionwindrichtingWindrichtungdirection cardinaleOne of the four main directions on a compass or any other system to determine a geographical positionUne des 4 principales directions d'un compas ou de tout autre système pour déterminer une position geographique - - 画家malerschilderpainterζωγράφοςpeintreMaler - - line of fashionModeliniemodelijntype de coutureA coherent type of clothing or dressing following a particular fashionEen samenhangend geheel van kleding in een bepaalde stijl volgens een bepaalde mode. - - 公園parkparquepark공원πάρκοpáircparcParkA park is an area of open space provided for recreational use. http://en.wikipedia.org/wiki/Park - - cykelholdsquadra di ciclismowielerploegcycling team사이클 팀ομάδα ποδηλασίαςfoireann rothaíochtaRadsportteam - - bruto nationaal productgross domestic productακαθάριστο εγχώριο προϊόνolltáirgeacht intíreBruttoinlandsprodukt - - water ridemarcaíocht uisceWasserbahnwaterbaan - - military vehicleMilitärfahrzeuglegervoertuig - - artistic genreKunstgattungkunstsoortgenre artistiqueGenres of art, e.g. Pointillist, ModernistGattung nennt man in den Kunstwissenschaften die auf das künstlerische Ausdrucksmedium bezogenen Formen der Kunst.genre d'art, ex: Pointillisme, Modernisme - - sports seasonSportsaisonπερίοδος αθλημάτωνsportseizoen - - クリケット選手cricketspelercricketer크리켓 선수παίκτης του κρίκετimreoir cruicéidjoueur de cricketCricketspieler - - 被子植物angiospermamagnoliofitabedektzadigenflowering plantανθοφόρο φυτόangiospermesbedecktsamige Pflanze - - SpreadsheetЭлектронная таблица - - テレビ放送回capítulo de serie de televisióntelevisie seizoentelevision episode텔레비전 에피소드επεισόδιο τηλεόρασηςeagrán de chlár teilifíseépisode téléviséFernsehfolgeA television episode is a part of serial television program. - - 準男爵baronettobaronetbaronetBaronet - - スイス連邦の州またはフランスの群kantoncantoncantonKantonAn administrative (France) or lawcourts (Netherlands) body governing a territorial unity on the municipal level or somewhat aboveDas Wort Kanton dient zur Bezeichnung verschiedener (niederen) Verwaltungsbezirke in Frankreich, Belgien, Kanada und anderen Ländern - - bioscoopcinema (movie theater)κινηματογράφοςcinémaTheaterA building for viewing films. - - グネツム綱GnetalesGnetophytesGnetophytesgnétophytesGnetophyta - - 騎手jockeyjockey (horse racer)αναβάτης αλόγου αγώνωνmarcachJockey (Pferderennprofi) - - Scientific conceptwissenschaftliche Theoriewetenschappelijke theorieScientific concepts, e.g. Theory of relativity, Quantum gravity - - resultados de una competición deportivauitslag van een sport competitieresults of a sport competitionαποτελέσματα αθλητικού διαγωνισμούrésultats d'une compétition sportiveErgebnisse eines Sportwettbewerbs - - torentowerπύργοςtúrtourTurmA Tower is a kind of structure (not necessarily a building) that is higher than the rest - - タンパク質proteinaproteïneproteínaprotein단백질πρωτεΐνηpróitéinprotéineProtein - - ヒト遺伝子座menselijk genoom locatieHumanGeneLocationτοποθεσία του ανθρώπινου γονιδίουHumangen Lokation - - klub żużlowyspeedwayteamspeedway teamfoireann luasbhealaighSpeedwayteam - - patriarcha chrześcijańskipatriarca cristianochristelijk patriarchChristian Patriarch기독교 총대주교χριστιανός πατριάρχηςpatriarche chrétienchristlicher Patriarch - - regeringsvormGovernment TypeΕίδη Διακυβέρνησηςrégime politiqueRegierungsforma form of government - - miasteczkostadनगरtownπόληbailevilleStadta 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. - - Romeinse keizerroman emperorρωμαίος αυτοκράτοραςempereur romainrömischer Kaiser - - 宗教建築edificio religiosoreligiøs bygningedificio religiosocultusgebouwreligious building종교 건물θρησκευτικό κτίριοédifice religieuxreligiöses Gebäude - - ministerMinisterministreminister - - motorcycle riderMotorradfahrerμοτοσυκλετιστήςmotorrijder - - kerkelijk bestuurlijk gebiedclerical administrative region사무 관리 지역région administrative dans une égliseklerikale VerwaltungsregionAn administrative body governing some territorial unity, in this case a clerical administrative body - - compañía de autobusesbusmaatschappijbus companyεταιρία λεωφορείωνcomhlacht buscompagnie d'autobusBusunternehmen - - 発電所central eléctricaElektriciteitscentralepower stationσταθμός παραγωγής ενέργειαςstáisiún cumhachtacentrale électriqueKraftwerk - - 技術者ingenieroingeniereingenieurengineer공학자μηχανικόςinnealtóiringénieurIngenieur - - nazwa名前naamnomenameόνομαainmnomName - - sumo wrestlerSumo-Ringersumoworstelaar - - international organisationorganisation internationaleinternationale organisatieAn international organisation is either a private or a public organisation seeking to accomplish goals across country borders - - Turmspringerschoonspringerhigh diver - - formule 1-coureurFormula One racerπιλότος της φόρμουλας έναpilote de formule 1Formel-1 Rennfahrer - - 球果植物門coníferaconifeerconifer침엽수κωνοφόροcónaiféarconifereKonifereLe conifere sono piante vascolari, con semi contenuti in un cono. Sono piante legnose, perlopiù sono alberi e solo poche sono arbusti.Las coníferas son plantas vasculares, con las semillas contenidas en un cono. Son plantas leñosas. - - speedway competitiespeedway leagueπρωτάθλημα αυτοκινητοδρόμουligue de speedwaySpeedway LigaA group of sports teams that compete against each other in motorcycle speedway racing. - - 音楽家instrumentalistinstrumentalistμουσικόςionstraimíinstrumentalisteMusikerΟ μουσικός είναι ένα άτομο το οποίο γράφει, ερμηνεύει, ή κάνει μουσική.Een instrumentalist is een musicus die een muziekinstrument bespeelt. (https://nl.wikipedia.org/wiki/Instrumentalist) - - 農家boerfarmerαγρότηςfeirmeoirfermierBauer - - voormalige stad of dorpHistorical settlementáit lonnaithe stairiúilancien ville ou villagehistorischer SiedlungA place which used to be a city or town or village. - - videogames leagueπρωτάθλημα βιντεοπαιχνιδιώνsraith físchluichíligue de jeux vidéoVideospiele-LigaA group of sports teams or person that compete against each other in videogames.Ένα σύνολο ομάδων ή ατόμων που ανταγωνίζονται σε ηλεκτρονικά παιχνίδια. - - cricket groundCricketfeldcricketveldcampo da cricket - - DTM racerDTM-coureurDTM Rennfahrer - - voormalig kwartier of districtHistorical districtceantar stairiúilancien départementhistorischer Kreis / Bezirka place which used to be a district. - - 会社empresafirmabedrijfempresacompany회사εταιρίαcomhlachtentrepriseUnternehmen - - 機関車locomotieflocomotiveκινητήριοςtraenlocomotiveLokomotive - - motocycle racerοδηγός αγώνων μοτοσυκλέταςMotorrad-Rennfahrermotorcoureur - - レスラーworstelaarwrestlerπαλαιστήςcoraílutteurRinger - - torneo di golfgolf toernooigolf tournamentcomórtas gailfGolfturnier - - 条約verdragtreatytraitéVertrag - - motorcycle racing leagueMotorradrennen Ligaligue de courses motocyclistemotorrace competitiea group of sports teams or bikerider that compete against each other in Motorcycle Racing - - 販売verkoopsalesεκπτώσειςdíolacháinventeVertrieb - - aktor pornograficznyポルノ女優actor pornoattore pornopornografisch acteur色情演員ator adultoadult (pornographic) actor성인 배우ενήλικας (πορνογραφικός) ηθοποιόςaisteoir pornagrafaíochtaacteur porno/acteur adultepornographischer Schauspieleractor pornoA pornographic actor or actress or a porn star is a person who performs sex acts in film, normally characterised as a pornographic film.Un actor ou unha actriz porno ou pornográfico/a, é un actor ou actriz de cine porno que actúa en películas de temática pornográfica..&lt;ref&gt;https://gl.wikipedia.org/wiki/Actor_pornogr%C3%A1fico&lt;/ref&gt; - - Wikimedia templateWikimedia-Vorlagemodèle de WikimediaDO NOT USE THIS CLASS! This is for internal use only! - - gridiron football playerGridiron voetballerGridiron Footballspielerjoueur de football américain gridiron - - engineMotormotor機関 (機械) - - dottrina cristianaChristelijke leerChristian Doctrine기독교 교리Χριστιανικό Δόγμαdoctrine chrétienneChristliche LehreTenets of the Christian faith, e.g. Trinity, Nicene Creed - - 面積gebiedareaεμβαδόνceantaraireBereichArea 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)Mesure d'une surface.Εμβαδόν ή έκταση είναι το μέγεθος μέτρησης των επιφανειών. - - volksliedNational anthemamhrán náisiúntaHymne nationalNationalhymnePatriotic musical composition which is the offcial national song. - - サッカーリーグvoetbal competitiesoccer leagueΟμοσπονδία Ποδοσφαίρουsraith sacairligue de footballFußball LigaA group of sports teams that compete against each other in soccer. - - bateríabatteriabatterijbateriabatterypileBatterieThe battery (type) used as energy source in vehicles. - - konferencja naukowa学術会議congresso scientificowetenschappelijke conferentieнавуковая канферэнцыяacademic conferenceнаучная конференцияconférence scientifiquewissenschaftliche Konferenz - - バイアスロン選手BiatleetBiathleteBiathlèteBiathlete - - 反乱opstandrebellionrévolteAufstand - - チームメンバーteamlidTeam memberΜέλος ομάδαςcoéquipierTeammitgliedA member of an athletic team.Ένα μέλος μιας αθλητικής ομάδας. - - 遺伝子座locusGeneLocationθέση γονιδίωνGen Lokation - - road junctionacomhal bóithreStraßenkreuzungwegkruisingA 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).Eine Straßenkreuzung ist eine Stelle, an der sich zwei oder mehrere Straßen kreuzen (http://de.wikipedia.org/wiki/Stra%C3%9Fenkreuzung). - - トレッドミルRosmolenTreadmillΜύλοςTretmühleA mill driven by the tractive power of horses, donkeys or even people - - cerebrohjernecervellohersenenbrainεγκέφαλοςinchinncerveauGehirnΤο βασικό όργανο του νευρικού συστήματος των ζώων, το οποίο καθορίζει ασυνείδητες και συνειδητές λειτουργίες. Ο όρος χρησιμοποιείται πλέον και για τον χαρακτηρισμό των καθοριστικότερων στοιχείων μίας μηχανής ή ενός συνόλου πραγμάτων. - - protohistorical periodproto-historisch Zeitalterperiode in de protohistorie - - Torneo di Women's Tennis AssociationWTA-toernooiWomen's Tennis Association tournamentTournoi de la Women's Tennis AssociationWTA Turnier - - imprenditoreondernemerbusinesspersonεπιχειρηματίαςduine den lucht gnóUnternehmerΜε τον όρο επιχειρηματίας νοείται κυρίως κάποιος που κατέχει μία ανώτερη θέση, όπως ένα στέλεχος. - - 脂質lipidelipidlipidelipidZijn vetten en vetachtige stoffen die in de biochemie een belangrijke rol spelen - - allenatore di pallavolovolleybalcoachvolleyball coachπροπονητής βόλλεϋtraenálaí eitpheileVolleyballtrainer - - Theological conceptTheologisch Konzeptconcept théologiquetheologisch conceptTheological concepts, e.g. The apocalypse, Trinty, Stoicism - - 居住地nederzettingsettlementοικισμόςbardaszone peupléeSiedlung - - 首都CapitalehoofdstadCapitalΚεφάλαιοCapitaleHauptstadtA municipality enjoying primary status in a state, country, province, or other region as its seat of government. - - 監督producentproducentProducerProducteurProduzenta person who manages movies or music recordings. - - programska opremaソフトウェアsoftwaresoftwarelogiciáriosoftware소프트웨어λογισμικόbogearraílogicielSoftware - - オペラόperaoperaoperaoperaόπεραceoldrámaopéraoper - - ラクロス選手lacrosse-spelerlacrosse playerπαίκτης χόκεϋ σε χόρτοimreoir crosógaíochtaLacrossespieler - - vino D.O.C.certificaat van herkomst voor kwaliteitswijnenControlled designation of origin wineΕλεγμένη ονομασία προέλευσης κρασιούvin A.O.C.kontrollierte Ursprungsbezeichnung für QualitätsweineA quality assurance label for winesΜια ετικέτα διασφάλισης της ποιότητας των οίνων - - fortfortFortified place, most of the time to protect traffic routes - - prezydent大統領presidentpresident국가원수πρόεδροςuachtaránprésidentPräsident - - racing driverRennfahrerοδηγός αγώνωνcoureur - - 構造物estructura arquitecturalstruttura architettonicabouwselarchitectural structure건축 구조αρχιτεκτονική κατασκευήstruchtúr ailtireachtastructure architecturaleBauwerkAn architectural structure is a human-made, free-standing, immobile outdoor construction (http://en.wikipedia.org/wiki/Architectural_structure).Μια αρχιτεκτονική κατασκευή είναι μια ανθρώπινη κατασκευή, επιδαπέδια, ακίνητη κατασκευή (http://en.wikipedia.org/wiki/Architectural_structure).Ein Bauwerk ist eine von Menschen errichtete Konstruktion mit ruhendem Kontakt zum Untergrund. Es ist in der Regel für eine langfristige Nutzungsdauer konzipiert (http://de.wikipedia.org/wiki/Bauwerk). - - テニス選手tenistatennisserjogador de tennistennis playerπαίχτης τένιςimreoir leadóigejoueur de tennisTennisspieler - - coal pitsteenkolenmijnKohlengrubeA coal pit is a place where charcoal is or was extractedEen mijn is een plaats waar steenkool wordt of werd gewonnen - - Political conceptpolitische Konzeptpolitiek conceptPolitical concepts, e.g. Capitalism, Democracy - - BrowserBrowserBrowser (bladerprogramma)Браузер - - digitale cameradigital camera디지털 카메라ψηφιακή φωτογραφική μηχανήceamara digiteachappareil photo numériqueDigitalkameraΗ ψηφιακή φωτογραφική μηχανή είναι συσκευή η οποία καταγράφει εικόνες με ηλεκτρονικό τρόπο, σε αντίθεση με την συμβατική φωτογραφική μηχανή, η οποία καταγράφει εικόνες με χημικές και μηχανικές διαδικασίες.Un appareil photographique numérique (ou APN) est un appareil photographique qui recueille la lumière sur un capteur photographique électronique, plutôt que sur une pellicule photographique, et qui convertit l'information reçue par ce support pour la coder numériquement. - - イベントgebeurteniseventoevent사건γεγονόςócáidévènementEreignis - - バンド_(音楽)bandagruppo musicalebandbandaBand음악 그룹μουσικό συγκρότημαbanna ceoilgroupe de musiqueMusikgruppe - - 摂政regentschap (regering)kabupatenregencyαντιβασιλείαRegentschaftbagian wilayah administratif dibawah provinsi - - državapaíslandlandcountry나라χώραtírГосударствоpaysStaat - - toreador闘牛士torerotorerostierenvechterbullfighter투우사ταυρομάχοςtarbhchomhraiceoirtoreroStierkämpfer - - フェンシング選手schermerfencerξιφομάχοςpionsóirFechter - - paardenracehorse raceαγώνας ιππασίαςcourse de chevauxPferderennen - - ryba魚類pescadofiskvispeixefishψάριiascpoissonFisch - - 雑誌tijdschriftmagazine잡지ΠεριοδικόirisleabharmagazinePublikumszeitschriftMagazines, 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.Περιοδικά ή γυαλιστερές φωτογραφίες περιοδικών εκδόσεων δημοσιεύονται σε τακτά χρονικά διαστήματα, περιέχει μια ποικιλία από αντικείμενα.Γενικά χρηματοδοτείται από διαφημίσεις, με τιμή αγοράς, με προπληρωμένες συνδρομές περιοδικών, ή και των τριών.Als Publikumszeitschrift (auch Magazin) bezeichnet man eine Gattung von Zeitschriften, die sich an eine sehr breite Zielgruppe wendet und keine fachlichen Prägungen oder andere spezifische Merkmale voraussetzt. Publikumszeitschriften dienen der Unterhaltung und Information, sie sollen unangestrengt gelesen werden können. - - 銀河galaksegalaksimelkwegstelselgaláxiagalaxy은하γαλαξίαςréaltragalaxieGalaxie - - 韓国の漫画manhwamanhwamanhwamanhwaKorean term for comics and print cartoonsist die in der westlichen Welt verbreitete Bezeichnung für Comics aus Südkorea.Manhua is het Koreaanse equivalent van het stripverhaalΚορεάτικος όρος για τα κόμικς και τα κινούμενα σχέδια εκτύπωσης - - Miembro de organizaciónorganisatielidOrganisation memberΜέλος οργανισμούOrganisationsmitgliedA member of an organisation.Μέλος ενός οργανισμού. - - televisie seizoentelevision season텔레비전 시즌τηλεοπτική σεζόνFernsehstaffel - - zaakcase케이스υπόθεσηcásdossierSacheA 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.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. - - タクソンtaxontaxonomic groupταξονομική ομάδαtaxonomische Gruppea category within a classification system for Speciescategorie binnen een classificatiesysteem voor plant- en diersoorten - - 法律事務所bufete de abogadosadvocatenkantoorlaw firmεταιρεία δικηγόρωνgnólacht dlíAnwaltskanzleiA 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.Als Anwaltskanzlei bezeichnet man die Büroräume und das Unternehmen oder den Betrieb eines Rechtsanwalts oder mehrerer Rechtsanwälte. - - motor raceMotorradrennenmotorwedstrijd - - kanaaltunnelwaterway tunneltollán uiscebhealaightunnel de voie navigableKanaltunnel - - 大洋oceaanoceanoOceanΩκεανόςaigéanOcéanOzeanA body of saline water that composes much of a planet's hydrosphere.Μάζα αλμυρού νερού που αποτελεί σημαντικό μέρος της υδρόσφαιρας ενός πλανήτη. - - lotnisko空港aeropuertolufthavnaeroportoluchthaven機場aeroportoairport공항αεροδρόμιοaerfortаэропортaéroportFlughafenaeroporto - - ボクサーpugilebokserboxeadorboxer권투 선수πυγμάχοςdornálaíboxeurBoxer - - シダ植物門helechofelcevarensamambaiafernφτέρηraithneachfougèresfarn - - naruto charactercarachtar narutoNaruto Charakterpersonage in Naruto - - サッカー選手futbolistafodboldspillercalciatorevoetballersoccer player축구 선수παίχτης ποδοσφαίρουimreoir sacairjoueur de footballFußballspieler - - ファッションmodefashionμόδαfaiseanmodeModetype or code of dressing, according to the standards of the time or individual design.Een stijl of code voor kleding, bepaald door de voorkeursstijl van een tijdperk of door individuele ontwerpers. - - wyspaIslaøeilandilhaislandνησίoileánîleInsel - - Open Swarmopen zwerm (cluster)Open SwarmΑνοικτό σμήνος - - natuurgebiedlugar naturalnatural placeφυσική θέσηlieu naturelnatürlicher OrtΗ φυσική θέση ερμηνεύει όλα τα σημεία που απαντώνται φυσικά στο σύμπανThe natural place encompasses all places occurring naturally in universe.Der natürlicher Ort beinhaltet alle Orte die natürlicherweise im Universum existieren. - - grave stone or grave monumentgrafsteen of grafmonumentGrabdenkmalA monument erected on a tomb, or a memorial stone. - - soap karaktersoap characterχαρακτήρας σαπουνόπεραςcarachtar i sobaldrámaSoapoper Charakter - - aglomeracjaagglomeratieagglomerationσυσσώρευσηagglomérationBallungsgebietaglomeración - - school coachcollege coach대학 코치προπονητής κολεγίουtraenálaí coláisteentraîneur universitaireCollege-Trainer - - ヒト遺伝子menselijk genHumanGeneανθρώπινο γονίδιοgéin duineHumangen - - 筋肉spiermuscleμυςmatánmuscleMuskel - - information applianceDatengerätσυσκευή πληροφορικήςdispositivo electrónicoAn information device such as PDAs or Video game consoles, etc. - - psycholoogpsychologistψυχολόγοςsíceolaíPsychologe - - 河川ruscellostroomcurso d’águastreamρέμαsruthánruisseauBacha flowing body of water with a current, confined within a bed and stream banks - - Record OfficeAmtsarchivArchiefinstelling - - director deportivosportbestuurdersports managerαθλητικός μάνατζερSportmanagerAccording 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.Σύμφωνα με τη γαλλική ετικέτα Soccer,μπορεί να εννοείται ο προπονητής.Παρ'όλα αυτα,εδώ ένας αθλητικός μάνατζερ μεταφράζεται ως ένα μέλος συμβουλίου ενός αθλητικού κλαμπ. - - サーファーsurfersurferσέρφερsurfálaíSurfer - - 病院hospitalziekenhuishospitalhospital병원νοσοκομείοospidéalhôpitalKrankenhaus - - 温泉warmwaterbronfonte termalhot springfoinse theheiße Quelle - - 法 (法学)lovwetlawloiGesetz - - szef kuchni料理人cocinerokokchefkokchef요리사αρχιμάγειροςcócairechefKocha person who cooks professionally for other peopleuna persona que cocina profesionalmente para otras - - 哲学者filosoofphilosopher철학자φιλόσοφοςphilosophePhilosoph - - ordenamiento jurídicorechtssysteemSystem of lawσύστημα δικαίουrégime de droitRechtssystema system of legislation, either national or international - - バイオデータベースdatabase biologicobiologische databankBanco de dados biológicoBiological database생물학 데이터베이스Βάση Δεδομένων Βιολογικών ΧαρακτηριστικώνBase de données biologiquesBiologische DatenbankΔιάφορες βάσεις δεδομένων οι οποίες περιέχουν πληροφορίες που ταυτοποιούν τα βασικά βιολογικά χαρακτηριστικά των οργανισμών. Οι πληροφορίες αυτές συγκροτούνται σε σύνολα βιβλιοθηκών των βασικών δομών των κυττάρων των οργανισμών, όπως οι βιλβιοθήκες νουκλεϊνικών οξέων (genomics) και πρωτεϊνών (proteomics). - - kościół教会iglesiakirkechiesakerkigrejachurch교회εκκλησίαeaglaiségliseKircheThis is used for church buildings, not any other meaning of church. - - トンネルtunneltunnel터널τούνελtollántunnelTunnelA 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).Un tunnel est une galerie souterraine livrant passage à une voie de communication (chemin de fer, canal, route, chemin piétonnier). Sont apparentés aux tunnels par leur mode de construction les grands ouvrages hydrauliques souterrains, tels que les aqueducs, collecteurs et émissaires destinés soit à l'amenée, soit à l'évacuation des eaux des grands centres et certaines conduites établies en liaison avec les barrages et usines hydro-électriques. (http://fr.wikipedia.org/wiki/Tunnel).Ein Tunnel (auch Tunell) ist eine künstliche Passage, die Berge, Gewässer oder andere Hindernisse (in der Regel als Verkehrsweg) unterquert (http://de.wikipedia.org/wiki/Tunnel).Ένα τούνελ μπορεί να είναι για πεζούς ή για αυτοκινητόδρομους,για σιδηρόδρομους,ή για κανάλια στο νερό.Μερικά τούνελ είναι υδραγωγεία για να παρέχουν νερό προς κατανάλωση ή για υδροηλεκτικούς σταθμούς ή είναι υπόνομοι. - - 漕艇選手canottiereroeierrowerκωπηλάτηςrámhaíRuderer - - 銀杏属ginkgo bilobaGinkgo bilobaginkgoginkgoginkgoginkgoginkgo - - vallevalleivalevalleyΚοιλάδαgleannvalléetala depression with predominant extent in one direction - - コーチallenatorecoachcoachπροπονητήςtraenálaíentraîneurTrainer - - pisarz著作家escritorforfatterrakstnieksauteurwriter작가συγγραφέαςscríbhneoirécrivainschriftsteller - - samochódavtomobil自動車automóvilautomobileautomobielautomovelаўтамабільautomobile자동차αυτοκίνητοgluaisteánавтомобильautomobileAutomobil - - イデオロギーideologieideologiaideologyιδεολογίαidé-eolaíochtidéologieIdeologiefor example: Progressivism_in_the_United_States, Classical_liberalismγια παραδειγμα: Προοδευτισμός στις ΗΠΑ, κλασικός φιλελευθερισμός - - Supreme Court of the United States caseFall Oberster Gerichtshof der Vereinigtencas juridique de la Cour suprême des États-Unis - - standardstandaard規格a common specification - - 群れstormozwermSwarmΣμήνοςschwarm - - team sportteamsportチームスポーツA team sport is commonly defined as a sport that is being played by competing teams - - コミュニティgemeenschap (community)Community공동체κοινότηταpobalcommunautéGemeindeΚοινότητα είναι μία ομάδα ζώντων οργανισμών, ανθρώπων, φυτών ή ζώων που ζουν σε ένα κοινό περιβάλλον. - - squadra di football canadeseCanadees footballteamcanadian football Team캐나다 축구 팀καναδέζικη ομάδα ποδοσφαίρουéquipe canadienne de football américainkanadische Footballmannschaft - - ラジオ放送局emisora de radioradiozenderradio stationραδιοφωνικός σταθμόςstáisiún raidióstation de radioRadiosenderA 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.Ein Radiosender hat genau ein Programm, zum Beispiel der Sender NDR Kultur. Nicht zu verwechseln mit der Rundfunkanstalt NDR, welche mehrere Radiosender hat. - - サッカーマネージャーgerente de fútbolvoetbalmanagersoccer managerπροπονητής ποδοσφαίρουbainisteoir sacairentraîneur de footballFußballmanager - - poesiagedichtpoemποίημαdánpoèmeGedicht - - politik政治家politicuspolíticopolitician정치인πολιτικόςpolaiteoirpoliticienPolitiker - - Kombinationspräparatcombination drugcombinatiepreparaatpréparation combinéeMedikamente die mehrere Wirkstoffe enthalten - - お笑い芸人komiekcomediantecomedian희극 배우κωμικόςfuirseoircomédienKomiker - - 漫画家striptekenaarcomics creator만화가δημιουργός κόμιξcréateur de bandes dessinéesComicautor - - 君主monarcamonarkmonarcamonarchmonarch군주μονάρχηςmonarquemonarch - - droga道路carreterawegcarreteraroad도로δρόμοςbótharrouteStraße - - tram stationstation de tramwaytramhalte - - Philosophical conceptphilosophisch KonzeptFilosofisch themaPhilosophical concepts, e.g. Existentialism, Cogito Ergo Sum - - Playboy PlaymatePlayboy Playmateplayboy playmateplaymate pour Playboy - - デバイスapparaatdispositivodevice장치συσκευηgléasappareilGerät - - 火山vulkaanvulcãovolcanoηφαίστειοbolcánvolcanVulkanA volcano is currently subclass of naturalplace, but it might also be considered a mountain.Το ηφαίστειο είναι υποκατηγορία φυσικών καταστάσεων, αλλά μπορεί επίσης να θεωρηθεί και βουνό. - - 新聞krantnewspaper신문εφημερίδαjournalZeitungA 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.Eine Zeitung ist ein Druckwerk von mäßigem Seitenumfang, das in kurzen periodischen Zeitspannen, mindestens einmal wöchentlich, öffentlich erscheint. Die Zeitung ist, anders als die Zeitschrift, ein der Aktualität verpflichtetes Presseorgan und gliedert sich meist in mehrere inhaltliche Rubriken wie Politik, Lokales, Wirtschaft, Sport, Feuilleton und Immobilien. - - アメリカンフットボール選手jugador de fútbol americanogiocatore di football americanoAmerican footballspeleramerican football player미식 축구 선수παίκτης αμερικανικού ποδοσφαίρουjoueur de football américainAmerican Footballspielerxogador de fútbol americano - - czasopismo naukowe学術雑誌giornale accademicowetenschappelijk tijdschrift學術期刊academic journal학술지ακαδημαϊκό περιοδικόiris acadúiljournal académiqueWissenschaftliche Fachzeitschriftrevista académicaCzasopismo naukowe – rodzaj czasopisma, w którym są drukowane publikacje naukowe podlegające recenzji naukowej. Współcześnie szacuje się, że na świecie jest wydawanych ponad 54 tys. czasopism naukowych, w których pojawia się ponad milion artykułów rocznie.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.Ένα ακαδημαϊκό περιοδικό είναι ως επί το πλείστον περιοδικό για κριτικές οι οποίες σχετίζονται με έναν συγκεκριμένο ακαδημαϊκό τομέα. Τα ακαδημαϊκά περιοδικά χρησιμεύουν ως φόρουμ για την εισαγωγή και παρουσίαση του ελέγχου των νέων ερευνών και της κριτικής της υπάρχουσας έρευνας. Το περιεχόμενο έχει συνήθως την μορφή άρθρων παρουσίασης νέας έρευνας, ανασκόπησης υπάρχων άρθρων και κριτικές βιβλίων.Wissenschaftliche Fachzeitschriften sind regelmäßig verlegte Fachzeitschriften über Spezialthemen aus den verschiedensten wissenschaftlichen Disziplinen. Sie stellen neue Methoden, Techniken und aktuelle Trends aus den Wissenschaften dar.Unha revista académica é unha publicación periódica revisada por expertos na que se publican artigos dunha disciplina académica. - - 卓球選手tafeltennissertable tennis player탁구 선수παίκτης πινγκ-πονγκimreoir leadóg bhoirdTischtennisspielerAthlete who plays table tennisO αθλητής που παίζει πινγκ-πονγκ - - 作品obra de artekunstværkopera d'artekunstwerkartwork작품έργο τέχνηςsaothar ealaíneœuvre d'artKunstwerkA work of art, artwork, art piece, or art object is an aesthetic item or artistic creation. - - siatkarzvolleyballervolleyball player배구 선수παίχτης βόλεϊVolleyballspieler - - non-profit organisatienon-profit organisationμη κερδοσκοπική οργάνωσηНекоммерческая организацияorganisation à but non lucratifgemeinnützige Organisation - - zeemarseaθάλασσαfarraigemerMeer - - 聖職者ecclesiasticogeestelijkecleric성직자Κλήροςecclésiastiquegeistlicher - - ミスreginetta di bellezzaschoonheidskoninginbeauty queen뷰티퀸βασίλισσα ομορφιάςspéirbheanSchönheitsköniginA beauty pageant titleholderΤίτλος που αποδίδεται σε μία γυναίκα, τις περισσότερες φορές μετά από διαγωνισμό. - - szkoła学校escuelaskolescuolaschoolescolaschool학교σχολείοscoilécoleSchule - - 地域regioregionπεριοχήréigiúnrégionRegion - - light novelLight novelライトノベルανάλαφρο μυθιστόρημαA style of Japanese novel - - 自然保護協会特別指定地区plaats met bijzonder wetenschappelijk belangSite of Special Scientific InterestΤοποθεσία Ειδικού Επιστημονικού ΕνδιαφέροντοςLáithreán Sainspéis Eolaíochtasite d'intérêt scientifique particulierwissenschaftliche Interessenvertretung für DenkmalschutzA 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. - - snooker playerimreoir snúcairSnookerspielerbiljarterAn athlete that plays snooker, which is a billard derivateEin Sportler der Snooker spielt, eine bekannte Billardvariante - - ijshockey competitieice hockey leagueπρωτάθλημα χόκεϋligue d'hockey sur glaceEishockey-Ligaa group of sports teams that compete against each other in Ice Hockey. - - función de personafunctie van persoonperson functionfonction de personneFunktion einer Person - - 音楽家muziekartiestartista musicalmusical artist음악가μουσικόςmusicienmusikalischer Künstler - - 昆虫学者entomologoentomoloogentomologistεντομολόγοςfeithideolaíEntomologe - - partia politycznapartido políticopolitieke partijpartido políticopartit políticpolitical partyπολιτικό κόμμαparti politiquepolitische Parteifor example: Democratic_Party_(United_States)για παράδειγμα: Δημοκρατικό Κόμμα _United_States) - - 司会者presentatorpresenterΠαρουσιαστήςláithreoirprésentateurModeratorTV or radio show presenter - - 水車小屋mulino ad acquaWatermolenWatermillΝερόμυλοςmuileann uisceMoulin à eauWassermühleA 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) - - reignregentschapRegentschaftrègne - - データベースdatabaseBanco de dadosDatabase데이터베이스βάση δεδομένωνbunachar sonraíBase de donnéesDatenbank - - Place in the Music ChartsChartplatzierungenplaats op de muziek hitlijst - - etniaetnische groepethnic group민족εθνική ομάδαgrúpa eitneachgroupe ethniqueethnie - - tenuredienstverbandAmtszeitdurée du mandat - - international football league eventInternational Football Liga Veranstaltung - - 野球チームsquadra di baseballhonkbal teambaseball team야구팀ομάδα μπέιζμπολfoireann daorchluicheéquipe de baseballBaseballmannschaftΈνας αριθμός από άνδρες ή γυναίκες που αποτελούν ένα διακριτό σύνολο με συγκεκριμένους στόχους σχετικά με το άθλημα του μπέιζμπολ. - - 祝日giorno festivovakantieholiday휴일αργίαlá saoirejour fériéFeiertagUn jour férié est un jour de fête civile ou religieuse, ou commémorant un événement.Unter einem Feiertag oder Festtag wird allgemein ein arbeitsfreier Tag mit besonderer Feiertagsruhe verstanden. - - 昆虫insectoinsectinsectέντομοfeithidinsecteInsekt - - 鉱物mineralemineraalmineral광물ορυκτόminéralmineralA naturally occurring solid chemical substance.Corpi naturali inorganici, in genere solidi. - - opera musicalemuziekwerkmusical workμουσικό έργοœuvre musicalemusikalisches Werk - - File systemDateisystemBestandssysteemФайловая система - - soccer club seasonFußballverein Saisonvoetbalseizoen - - vervoermiddelmean of transportationμεταφορικό μέσοmoyen de transportTransportmittel - - 注釈AantekeningAnnotationΣχόλιοannotationRandglossenota - - unit of workaonad oibreArbeitseinheitwerkeenheidThis 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. - - meczetモスクmezquitamoskeemosqueτζαμίmoscmosquéeMoscheeMeczet – miejsce kultu muzułmańskiegoA mosque, sometimes spelt mosk, is a place of worship for followers of Islam.Το τζαμί είναι ο τόπος λατρείας των Μουσουλμάνων.Is áit adhartha na Moslamach, lucht leanúna an reiligiúin Ioslam, é moscUne mosquée est un lieu de culte où se rassemblent les musulmans pour les prières communes. - - National Collegiate Athletic Association atleetnational collegiate athletic association athletelúthchleasaí sa National Collegiate Athletic Associationathlète de la national collegiate athletic associationNCAA - - motorsport racerMotorsport Fahrermotorsport rennerοδηγός αγώνων - - 遺伝子gengengenegeneγονίδιοgéingèneGen - - 審判員árbitroarbitroscheidsrechterrefereeδιαιτητήςréiteoirarbitreschiedsrichterAn official who watches a game or match closely to ensure that the rules are adhered to. - - 爬虫類reptielreptileερπετόreiptílreptilereptil - - satellietSatelliteδορυφόροςsatailítsatelliteSatelliteAn astronomic object orbiting around a planet or star. Definition partly derived from http://www.ontotext.com/proton/protonext# (and thus WordNet 1.7).Ένα αστρονομικό αντικείμενο που βρίσκεται σε τροχιά γύρω από έναν πλανήτη ή αστέρι. - - giocatore di football canadeseCanadese football spelerjogador de futebol canadensecanadian football Player캐나다 축구 선수καναδός παίκτης ποδοσφαίρουjoueur de football canadienkanadischer Footballspieler - - agencia del gobiernoorgaan openbaar bestuurgovernment agency정부 기관κυβερνητική υπηρεσίαОрган исполнительной властиagence gouvernementaleBehördeA 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.Eine Behörde ist eine staatliche Einrichtung, die im weitesten Sinne für die Erfüllung von Aufgaben der Verwaltung des Staates und dabei insbesondere für Dienstleistungen des Staates gegenüber seinen Bürgern zuständig ist. Eine Behörde erhält ihren Auftrag aus den Gesetzen des Staates, in dem und für den sie tätig ist.Μια κυβερνητική υπηρεσία είναι μόνιμη ή ημι-μόνιμη οργάνωση στο μηχανισμό της κυβέρνησης, η οποία είναι υπεύθυνη για την εποπτεία και διαχείριση συγκεκριμένων λειτουργιών, όπως η υπηρεσία πληροφοριών. - - flagbayrakvlagflag국기σημαίαbratachdrapeauFlagge - - rally driverrallycoureurοδηγός ράλιRallyefahrerΟ οδηγός ράλι χρησιμοποιείται για να περιγράψει άνδρα που λαμβάνει μέρος σε αγώνες αυτοκινήτων ειδικής κατηγορίας - - 真正細菌bacteriabatteriobacteriebacteria세균βακτήριαbaictéirbactériebakterium - - Archer PlayerBogenschützeboogschutter - - 枢機卿cardinalekardinaalcardealcardinal카디널καρδινάλιοςcairdinéalcardinalKardinal - - 軟体動物weekdiermolluscaμαλάκιαmollusqueWeichtiereΤα μαλάκια αποτελούν μια τεράστια συνομοταξία ζώων, την πολυπληθέστερη μετά τα αρθρόποδα, με πάνω από 100.000 είδη. - - スタジアムstadionstadium경기장στάδιοstaidiamstadeStadion - - ワインvinovinvinowijnwineκρασίfíonvinWein - - national soccer clubnationaler Fußballvereinmilli takımnationale voetbalclub - - cabinet of ministerskabinet (regeringsploeg)A cabinet is a body of high-ranking state officials, typically consisting of the top leaders of the executive branch. - - muzeum博物館museummuseumuseum박물관μουσείοmúsaemmuséeMuseum - - フィギュアスケート選手patinador artísticokunstschaatserpatinador artísticofigure skaterαθλητής του καλλιτεχνικού πατινάζscátálaí fíorachpatineur artistiqueEiskunstläufer - - ウマhestpaardhorsecapallchevalPferd - - 日本の漫画mangamangamangaκινούμενα σχέδιαmangamangaManga are comics created in JapanManga is het Japanse equivalent van het stripverhaal - - 単科大学universidadcollegefaculdadecollege단과대학κολέγιοcoláisteuniversitéCollege - - military serviceMilitärdienstservice militaire - - nascar coureurnascar driverοδηγός αγώνων nascarpilote de la nascarNASCAR Fahrer - - periodical literaturePeriodikumπεριοδικός τύποςpublication périodiquePeriodical 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.Περιοδικός Τύπος (ή αλλιώς περιοδικό ή εφημερίδα) είναι η δημοσίευση άρθρου ή νέων ανά τακτά διαστήματα. Το πιο γνωστό παράδειγμα είναι οι εφημερίδες, που δημοσιεύονται σε καθημερινή ή εβδομαδιαία βάση και το περιοδικό, που τυπικά εκδίδεται σε εβδομαδιαία, μηνιαία ή δίμηνη βάση. Άλλα παραδείγματα μπορεί να είναι τα νέα ενός οργανισμού ή εταιρείας, ένα λογοτεχνικό ή εκπαιδευτικό περιοδικό ή ένα ετήσιο λεύκωμα.Unter Periodikum wird im Bibliothekswesen im Gegensatz zu Monografien ein (in der Regel) regelmäßig erscheinendes Druckwerk bezeichnet. Es handelt sich um den Fachbegriff für Heftreihen, Gazetten, Journale, Magazine, Zeitschriften und Zeitungen.Une publication périodique est un titre de presse qui paraît régulièrement. - - 静脈aderveiaveinφλέβαféithveineVene - - 植物piantaplantplantφυτόplandaplantepflanze - - film映画películafilmfilmفيلمmovie영화ταινίαscannánfilmFilm - - Concentration campKonzentrationslagerconcentratiekampcamp de concentrationcamp in which people are imprisoned or confined, commonly in large groups, without trial. -Includes concentration, extermination, transit, detention, internment, (forced) labor, prisoner-of-war, Gulag; Nazi camps related to the Holocaust - - water polo PlayerWasserpolo Spielerwaterpoloërgiocatore di pallanuoto - - スキー場skigebiedski areaΠεριοχή Χιονοδρομίαςláthair sciáladomaine skiableSkigebiet - - ギターguitarraguitargitaarguitarκιθάραgiotarguitareGitarreDescribe la guitarrabeschrijving van de gitaarDescribes the guitarΠεριγράφει την κιθάραDécrit la guitare - - predikantvicarιεροκήρυκαςbiocáirepasteurPfarrer - - Nordic CombinedNordischer Kombinierer - - 競泳選手nadadornuotatorezwemmernadadorswimmer수영 선수KολυμβητήςsnámhaínageurSchwimmera trained athlete who participates in swimming meetsένας εκπαιδευμένος αθλητής που συμμετέχει σε συναντήσεις κολύμβησης - - eerste ministerprime minister총리πρωθυπουργόςpríomh-airepremier ministrePremierminister - - アスリートatletaatleetathlete운동 선수αθλητήςlúthchleasaíathlèteAthlet - - farvekleurcorcolourχρώμαdathcouleurFarbeColor 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. - - escalatorroltrapRolltreppeエスカレーター - - 工場fabbricafabriekfactory공장εργοστάσιοmonarchausineFabrikA 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.Το εργοστάσιο είναι ένα κτίριο μέσα στο οποίο, με τη βοήθεια των μηχανημάτων και τη σημαντικότατη συνεισφορά εργασίας από τους εργάτες, παράγονται σήμερα όλα σχεδόν τα βιομηχανικά είδη, είτε αυτά χρειάζονται πάλι για την παραγωγή (όπως μηχανές κλπ.) είτε είναι καταναλωτικά αγαθά.Une usine est un bâtiment ou un ensemble de bâtiments destinés à la production industrielle. - - conveyor systemFördersystemsystème convoyeurtransportsysteem - - obra escritaskriftligt værkgeschreven werkwritten workobair scríofaœuvre écritegeschriebenes ErzeugnisWritten work is any text written to read it (e.g.: books, newspaper, articles)Ein geschriebenes Erzeugnis ist jede Art von Text der geschrieben wurde um ihn zu lesen (z.B. Bücher, Zeitungen, Artikel). - - snooker world championwereldkampioen snookerSnookerweltmeistercuradh domhanda sa snúcarAn athlete that plays snooker and won the world championship at least onceEin Sportler der Snooker spielt und mindestens einmal die Weltmeisterschaft gewonnen hat - - 大使embajadorambasciatoreambassadeurambassador대사 (외교관)πρεσβευτήςambasadóirambassadeurBotschafterembaixadorAn 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.Un embaixador é o funcionario diplomático de máis alto nivel acreditado diante de un Estado estranxeiro ou organización internacional.&lt;ref&gt;https://gl.wikipedia.org/wiki/Embaixador&lt;/ref&gt; - - 議会parlamentoparlementparliamentκοινοβούλιοparlaimintparlementParlament - - travellatorRollsteigrolpad - - snooker world rankingSnookerweltranglistewereldranglijst snookerThe official world ranking in snooker for a certain year/seasonDie offizielle Weltrangliste im Snooker eines Jahres / einer Saison - - venue경기장τόπος συνάντησηςionadlieuVeranstaltungsort - - ラジオ番組programma radiofonicoradioprogrammaradio programραδιοφωνικό πρόγραμμαclár raidióprogramme de radiodiffusionradio programm - - kraljevska oseba王室realezalid koningshuisroyalty왕족γαλαζοαίματοςroyautéKönigtum - - 生物学者bioloogbiologistbiologisteBiologe - - 砂漠DesiertowoestijndesertoDesertΈρημοςgaineamhlachDésertWüsteA barren area of land where little precipitation occurs.Μία άγονη περιοχή όπου υπάρχει πολύ μικρή βροχόπτωση. - - バスケットボールチームsquadra di pallacanestrobasketbalteamtime de basquetebasketball team농구 팀Κουτί πληροφοριών συλλόγου καλαθοσφαίρισηςfoireann cispheileéquipe de basketballBasketballmannschaft - - sceneggiatorescenarioschrijverscreenwriterσεναριογράφοςscríbhneoir scáileáinscénaristeDrehbuchautorΟ σεναριογράφος όχι μόνο γράφει την υπόθεση μιας σειράς άλλα είναι αυτός που επινοεί και τους πρωταγωνιστές του έργου. - - 弁護士advocaatLawyerdlíodóirAvocatAnwalta person who is practicing law. - - planetaplanet惑星planetaplaneetPlanetaplanetaplanetΠλανήτηςpláinéadplanètePlanet - - speed skaterEisschnellläuferlangebaanschaatser - - 国会議員diputadogedeputeerdedeputyαναπληρωτήςdéputéStellvertreter - - regisseurMovie directorstiúrthóir scannáinréalisateur de filmFilmregisseura person who oversees making of film. - - 家族familiafamiliefamiliefamilyοικογένειαteaghlachfamilleFamilieA group of people related by common descent, a lineage.Μια ομάδα ανθρώπων που συνδέονται με κοινή καταγωγή, μια γενεαλογία. - - año del vuelo espacialvliegjarenyear in spaceflightannée de vols spatiauxZeitraum Raumflug - - 神社santuarioheiligdomshrineβωμόςsanctuaireschrein - - vodkawodkavodkavodkaWodka - - 人口bevolkingpopulationπληθυσμόςdaonrapopulationBevölkerung - - wieśdorpगाँवdesavillageχωριόsráidbhailevillagedorflugara clustered human settlement or community, usually smaller a townNúcleo pequeno de poboación en que se divide unha parroquia, con poucos veciños e de carácter rural. - - 劇場schouwburgtheatreθέατροamharclannthéâtreTheaterA 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. - - ドラマdramadrama드라마δράμαdrámadrameDrama - - winter sport PlayerWintersportspielerwintersporterJoueur de sport d'hiver - - 保護地区beschermd gebiedprotected areaπροστατευμένη περιοχήaire protégéeSchutzgebietThis class should be used for protected nature. For enclosed neighbourhoods there is now class GatedCommunityDeze klasse duidt gebieden aan met de status 'beschermd'. Is dus eigenlijk ook geen klasse, maar zou een attribuut moeten zijn - - penalty shoot-outpenalty schietenciceanna éiriceElfmeterschießen - - rocket engineraketmotorRaketmotor - - 運河canalekanaalcanalcanal운하κανάλιcanáilcanalKanala man-made channel for waterένα κανάλι για νερό φτιαγμένο από άνθρωπο - - 雇用者EmpleadorarbejdsgiverwerkgeverEmployerΕργοδότηςfostóirEmployeurArbeitgebera person, business, firm, etc, that employs workers.Arbeitgeber ist, wer die Arbeitsleistung des Arbeitnehmers kraft Arbeitsvertrages fordern kann und das Arbeitsentgelt schuldet.άτομο, επιχείρηση, οργανισμός, κλπ που προσλαμβάνει εργαζόμενους. - - genere musicalegenre (muziek)género musicalmusic genre음악 장르μουσικό είδοςgenre musicalmusik genre - - pretparkattractieamusement park attractionδραστηριότητα λούνα πάρκVergnügungsparkattraktionatracción de parque de atraccións - - rokañoårjaaranoyearέτοςbliainannéeJahr - - 司祭pretepriesterpriestπαπάςsagartprêtrepriester - - congressistcongressman하원 의원βουλευτήςmembre du CongrèsAbgeordneter - - music composercompositeurcomponistKomponista person who creates music. - - スポーツDeportesportesportesport스포츠ΑθλήματαspórtВид спортаsportSportartA sport is commonly defined as an organized, competitive, and skillful physical activity. - - back sceneBackround-Chorachtergrond koor - - 神経zenuwnerveνεύροnéarógnerfNerv - - comic stripstripverhaal (Amerikaanse wijze)Comicstrip - - escuela de sambasamba schoolescola de sambasamba schoolσχολή σάμπαSambaschule - - ホテルhotelalbergohotelhotel호텔ξενοδοχείοóstánhôtelHotel - - modeontwerperfashion designerσχεδιαστής μόδαςdearthóir faisinModedesigner - - biblioteka図書館Bibliotecabibliotekbibliotheeklibrary도서관βιβλιοθήκηleabharlannbibliothèqueBibliothek - - オルガンorgelorganόργανοOrgueOrgelAll types and sizes of organsΌλα τα είδη και τα μεγέθη των οργάνων - - 専門職beroepprofessionεπάγγελμαgairmmétierBeruf - - モデル_(職業)(foto)modelmodel모델μοντέλοmainicínmannequinmodel - - 靭帯bindweefselligamentoligamentσύνδεσμοςBand (Anatomie) - - CipherGeheimschriftШифр - - BobsleighAthletebobsleeërBobsportler - - aktywność活動actividadaktivitetattivitàactiviteit活動atividadeactivity활동ΔραστηριότηταgníomhaíochtactivitéAktivitätactividade - - Stadtviertelcity districtquartierstadswijkDistrict, borough, area or neighbourhood in a city or town - - ワイナリーcasa vinicolawijnmakerijwineryοινοποιείοfíonlannétablissement vinicoleWeinkellerei - - national football league eventNFL Game day - - platenlabelrecord labelδισκογραφικήlipéad ceoillabel discographiquePlattenlabel - - metrostationsubway stationστάση μετρόstation de métroU-Bahn StationΗ στάση μετρό χρησιμοποιείται συνήθως για μια τοποθεσία ή σημείο όπου σταματάει το μεταφορικό μέσο μετρό - - 声優stemacteurvoice actor성우acteur de doublageSynchronsprecher - - 近代オリンピックJuegos OlímpicosOlympische Spelenolympics올림픽ολυμπιακοί αγώνεςNa Cluichí OilimpeachaJeux OlympiquesOlympiade - - 攻撃aanval, aanslagattackattaque, attentatAngriff, AnschlagAn Attack is not necessarily part of a Military Conflict - - katkatcatchatKatze - - カナディアン・フットボール・リーグlega di football canadesecanadian football competitieliga de fútbol canadiense캐나다 풋볼 리그καναδική ένωση ποδοσφαίρουligue de football canadienKanadische FootballligaA group of sports teams that compete against each other in canadian football league.ένα σύνολο αθλητικών ομάδων που ανταγωνίζονται μεταξύ τους στην Καναδική ένωση ποδοσφαίρου - - periode in de prehistorieprehistorical periodπροϊστορική περίοδοtréimhse réamhstaireprähistorisch Zeitalter - - ブルワリーcerveceríabirrificiobrouwerijbreweryζυθοποιίαbrasserieBrauereiΖυθοποιία ονομάζεται η βιομηχανία παρασκευής μπύρας. - - jedzenie食品alimentomadvoedselcomidaFood음식φαγητόbianourritureLebensmittelFood is any eatable or drinkable substance that is normally consumed by humans.Φαγητό είναι οποιαδήποτε φαγώσιμη ή πόσιμη ουσία που καταναλώνεται κανονικά από ανθρώπους.Lebensmittel umfasst als Oberbegriff sowohl Getränke als auch die Nahrungsmittel und Genussmittel. - - sangcanzoneliedsong노래τραγούδιamhránchansonlied - - Mathematical conceptmathematisches Konzeptwiskundig conceptMathematical concepts, e.g. Fibonacci numbers, Imaginary numbers, Symmetry - - sports clubSportvereinsportclub - - 戯曲obra de teatrotoneelstukplayπαιχνίδιdrámapièce de théâtreTheaterstückA 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.Ένα παιχνίδι είναι μια μορφή της λογοτεχνίας, γραμμένο από έναν συγγραφέα, που συνήθως αποτελείται από σενάριο του διαλόγου μεταξύ των χαρακτήρων, που προορίζεται για την θεατρική παράσταση και όχι μόνο ανάγνωση. - - Capital of regionCapitale régionaleHauptstadt der Regionhoofdstad van regioseat of a first order administration division. - - album (wydawnictwo muzyczne)アルバムalbumalbumalbumalbum照片集álbumalbum앨범albumalbamalbumAlbumálbum - - お笑いグループcabaretgroepComedy Group코미디 그룹Komikergruppe - - 陸上競技選手giocatore di atletica leggeraatleetathletics playerlúthchleasaíAthlet - - ファイルbestandfileΑρχείοcomhadfichierDateiA document with a filenameΈνα σύνολο από στοιχεία ή πόρους που μπορούν να χρησιμοποιηθούν για επεξεργασία και παραγωγή πληροφορίας - - 会議vergaderingmeetingσυνάντησηcruinniúréunionTreffenA regular or irregular meeting of people as an event to keep record of - - 彫刻sculturabeeldhouwwerkSculptureΓλυπτικήsculptureSkulpturSculpture 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.Γλυπτική είναι τρισδιάστατο έργο τέχνης το οποίο δημιουργήθηκε από τη διαμόρφωση ή συνδυάζοντας σκληρά υλικά, τυπικώς πέτρα όπως μάρμαρο, μέταλλο, γυαλί, ή ξύλο, ή πλαστικά υλικά όπως άργιλος, υφάσματα, πολυμερή και μαλακότερα μέταλλα.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. - - kernenergiecentraleNuclear Power plantΠυρηνικός Σταθμός Παραγωγής Ενέργειαςstáisiún núicléachcentrale nucléaireKernkraftwerk - - boroughTeilgemeindeparroquiadeelgemeenteAn administrative body governing a territorial unity on the lowest level, administering part of a municipality - - deaneryDekanatκοσμητείαproosdijThe intermediate level of a clerical administrative body between parish and diocese - - linia lotnicza航空会社compañía aereaflyselskabcompagnia aerealuchtvaartmaatschappij航空公司airline항공사αεροπορική εταιρείαaerlínecompagnie aérienneFluggesellschaftcompañía aérea - - volleybal competitievolleyball leagueΟμοσπονδία Πετοσφαίρισηςligue de volleyballVolleyball-LigaA group of sports teams that compete against each other in volleyball. - - 媒体mediamediaμέσα ενημέρωσηςmeáinMedienstorage and transmission channels or tools used to store and deliver information or data - - kaapcapecap - - グランプリgran premiogrand prixGrand Prixγκραν πριGrand Prixgrand prixgrosser Preis - - bergpasdesfiladeiromountain passΠέρασμα βουνούcol de montagneBergpassa path that allows the crossing of a mountain chain. It is usually a saddle point in between two areas of higher elevation - - 仕事arbejdewerkobraworkδημιουργίαobairœuvreWerk - - 氷河ghiacciaiogletsjergeleiraglacierπαγετώναςoighearshruthglacierGletscherΠαγετώνες ονομάζονται μεγάλες μάζες πάγου συνήθως κινούμενες λόγω συμπίεσης του χιονιού. - - ロケットraketrocket로켓πύραυλοςroicéadfuséeRakete - - 紋章記述blazoen (wapenschild)BlazonοικόσημοBlasonWappen - - 貴種aristócrataaristocraataristocratuaslathaíaristocrateAristokrat - - 鳥類pájarofugluccellovogelbirdπτηνόéanoiseauVogel - - societal eventévènement collectifgesellschatliches Ereignismaatschappelijke gebeurtenisan event that is clearly different from strictly personal events - - DBpedian - - Outbreak - - ImpfstoffvaccinevaccinvaccinDrugs that are a vaccine‎Medikamente welche Impfstoffe sind - - golfspillergolfspelergolf playerπαίκτης γκολφimreoir gailfgolfeurGolfspieler - - ボーリングリーグliga de boloslega di bowlingbowling competitiebowling league볼링 리그πρωτάθλημα μπόουλινγκsraith babhlálaligue de bowlingBowling-Ligaa group of sports teams or players that compete against each other in BowlingΜία διοργάνωση ομάδες ανθρώπων ή μεμονομένα άτομα συναγωνίζονται στο άθλημα του μπόουλινγκ, συνήθως με ένα έπαθλο στους πρωταθλητές. - - 聖人heiligesaint성인Πληροφορίες ΑγίουnaomhsaintHeilige - - historische periodehistorical periodιστορική περίοδοςtréimhse sa stairhistorische PeriodeA historical Period should be linked to a Place by way of the property dct:spatial (already defined) - - giocatore di squashsquashersquash player스쿼시 선수Squashspieler - - pokerspelerpoker playerπαίχτης του πόκερimreoir pócairjoueur de pokerPokerspieler - - 高度højdehoogtealtitudeυψόμετροairdealtitudeHöhealtitudeΤο υψόμετρο είναι η κάθετη απόσταση ενός αντικειμένου σε σχέση με ένα καθορισμένο επίπεδο αναφοράς. Συνήθως το υψόμετρο μετριέται ως η κάθετη απόσταση (υψομετρική διαφορά) ενός τόπου από το επίπεδο της θάλασσας (Μέση Στάθμη Θάλασσας), ενώ για πιο ακριβείς μετρήσεις χρησιμοποιείται το γεωειδές.A altitude é a distancia vertical dun obxecto respecto dun punto de orixe dado, considerado como o nivel cero, para o que se adoita tomar o nivel absoluto do mar.&lt;ref&gt;https://gl.wikipedia.org/wiki/Altitude&lt;/ref&gt; - - train carriagetreinwagon - - 記事artikelarticlearticleArtikle - - アニメanimeanimeAnime일본의 애니메이션άνιμεanimeanimeanimeA style of animation originating in JapanGeanimeerd Japans stripverhaalΣτυλ κινουμένων σχεδίων με καταγωγή την ΙαπωνίαDesignación coa que se coñece a animación xaponesa - - książkaboglibroবইboekllibrebookβιβλίοleabharкнигаlivreBuch - - 言語idiomasprogtaallanguage언어γλώσσαteangalangageSprachelingua - - restauracjaレストランrestaurantrestaurantεστιατόριοbialannrestaurantRestaurant - - geologische periodegeological periodγεωλογική περίοδοςpériode géologiqueAgeologische Periode - - old territoryalten Länder - - verzameling van kostbaarhedencollection of valuables귀중품의 컬렉션collection d'objetsKunst- und WertsachenversammlungCollection of valuables is a collection considered to be a work in itself)Een verzameling van kostbaarheden, die als een werk beschouwd wordt ). - - 教区bisdomdiocese교구επισκοπήdeoisediocèseDiözeseDistrict or see under the supervision of a bishop. - - ゲームjuegospilspeljogogameΠληροφορίες παιχνιδιούcluichejeuSpiela structured activity, usually undertaken for enjoyment and sometimes used as an educational tool - - 立法府legislaturawetgevend orgaanlegislatureνομοθετικό σώμαreachtaspouvoir législatifLegislative - - filmgenremovie genreείδος ταινίαςseánra scannáingenre de filmFilmgenre - - aktor俳優actorskuespillerattoreaktoreaktierisacteur演員atoractor영화인ηθοποιόςaisteoiracteurSchauspieleractorAn actor or actress is a person who acts in a dramatic production and who works in film, television, theatre, or radio in that capacity.Μια ηθοποιός ή ένας ηθοποιός είναι ένα άτομο που παίζει σε μια δραματική παραγωγή και που εργάζεται στο χώρο του κινηματογράφου, της τηλεόρασης, του θεάτρου, ή το ραδιόφωνο.Un actor, se é home, ou unha actriz, se é muller, é unha persoa que representa un papel nunha obra teatral, cinematográfica, radiofónica ou televisiva.Un attore o un attrice è una persona che recita in una produzione teatrale, televisiva, cinematografica o radiofonica. - - エジプト学者egyptoloogegyptologistαιγυπτιολόγοςÉigipteolaíégyptologueÄgyptologe - - 両生類anfibioamfibieanfíbioamphibian양서류αμφίβιοamfaibiachamphibienAmphibieanfibio - - golf competitieliga de golfegolf leagueένωση γκολφsraith gailfligue de golfGolfligaGolfplayer that compete against each other in Golf - - ピラミッドpyramidePyramidpirimidPyramidePyramidea structure whose shape is roughly that of a pyramid in the geometric sense. - - career stationKarrierestationCarrierestapthis 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 - - 超高層建築物wolkenkrabberskyscraper초고층 건물ουρανοξύστηςilstórachgratte-cielHochhaus - - 集団grupogruppegruppogroepgroupομάδαgrúpagroupeGruppeAn (informal) group of people.un groupe (informel) de personnes.Μια συνήθως άτυπη ομάδα ανθρώπων. - - orden clericalordine clericalekloosterordeclerical orderκληρική τάξηord rialtaordre religieuxklerikaler OrdenEen 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 één en dezelfde plaatselijke gemeenschap, een klooster of een tempel. Meerdere kloosters van gelijkgezinde religieuzen vormen samen een kloosterorde. - - Wind motorWindkraftéolienneRoosmolenA 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. - - life cycle eventLebenszyklus Ereigniswordingsgebeurtenis - - 薬物geneesmiddeldrugφάρμακοdrugamédicamentDroge - - torneotoernooitournamentτουρνουάcomórtastournoiTurnier - - 列車trentogtrenotreintrainτρένοtraeintrainZug - - 参考文献VerwijzingReferenceαναφοράReferenzReference to a work (book, movie, website) providing info about the subjectVerwijzing naar een plaats in een boek of film - - 風車Molinos de vientovindmøllemulino a ventoWindmolenWindmillΑνεμόμυλοςmuileann gaoithemoulin à ventWindmühleA windmill is a machine that converts the energy of wind into rotational energy by means of vanes called sailsLe moulin à vent est un dispositif qui transforme l’énergie éolienne (énergie cinétique du vent) en mouvement rotatif au moyen d’ailes ajustables. - - スポーツリーグliga deportivasport competitiesports league스포츠 리그Αθλητική Ομοσπονδίαligue sportiveSportligaA group of sports teams or individual athletes that compete against each other in a specific sport. - - ボードゲームjuego de mesabrætspilgioco da tavolobordspelboard game보드 게임επιτραπέζιο παιχνίδιjeu de sociétéBrettspielcome from http://en.wikipedia.org/wiki/Category:Board_gamesUn gioco da tavolo è un gioco che richiede una ben definita superficie di gioco, che viene detta di solito tabellone o plancia. - - バドミントン選手giocatore di badmintonbadmintonspelerjogador de badmintonbadminton player배드민턴 선수παίχτης του μπάντμιντονimreoir badmantainjoueur de badmintonBadmintonspieler - - 通貨muntsoortВалютаcurrency통화νόμισμαairgeadraВалютаdeviseWährung - - programmeringssproglinguaggio di programmazioneprogrammeertaallinguagem de programaçãoprogramming language프로그래밍 언어γλώσσα προγραμματισμούteanga ríomhchlárúcháinlangage de programmationProgrammiersprache - - szachistaチェスプレーヤーgiocatore di scacchischakerchess player체스 선수παίκτης σκάκιimreoir fichillejoueur d'échecsSchachspieler - - rugbyspelerrugby playerπαίκτης rugbyimreoir rugbaíjoueur de rugbyRugbyspieler - - darterdarts player다트 선수παίκτης βελάκιωνDartspieler - - osobaOseba人_(法律)personapersonpersonapertsonapersoonشخصpessoapersonΠληροφορίες προσώπουduinepersonneանձPerson - - 建築士arquitectoarchitettoarchitectarchitect건축가αρχιτέκτοναςuaslathaíarchitecteArchitekt - - Globular Swarmglobulaire zwerm (cluster)KugelschwarmΣφαιρωτό σμήνος - - håndboldligahandbal competitiehandball leagueΟμοσπονδία Χειροσφαίρισηςligue de handballHandball-Ligaa group of sports teams that compete against each other in Handball - - イヌhundhonddogσκύλοςmadrachienHund - - political functionpolitische Funktionfonction politiquepolitieke functie - - electrical substationtransformatorhuisjeTransformatorenstation - - インフラストラクチャーinfrastrukturinfrastructureinfrastructureΥποδομήinfrastructureInfrastruktur - - 環礁atolloatolatoll환초ατόληatollAtoll - - levensloopgebeurtenispersonal eventπροσωπικό συμβάνévènement dans la vie privéeEreignis im persönlichen Lebenan event that occurs in someone's personal lifeένα συμβάν που αφορά την προσωπική ζωή κάποιου - - motociclettamotorfietsmotorcycleμοτοσυκλέταgluaisrotharmotoMotorrad - - 港湾havenPortcaladhPortHafena location on a coast or shore containing one or more harbors where ships can dock and transfer people or cargo to or from land. - - giocatore di netballnetball playerkorfbalspelerKorbballspieler - - statistischstatisticστατιστικήstaitisticstatistiquestatistisch - - religious organisationReligionsorganisationkerkelijke organisatieorganización religiosa - - prefectuurprefectureνομαρχίαpréfecturePräfektur - - misión espacialruimtemissiespace mission우주 임무διαστημική αποστολήmisean spáísmission spatialeWeltraummission - - spoorlijnrailway lineσιδηρόδρομοςlíne iarnróidEisenbahnlinieO σιδηρόδρομος είναι μια υπηρεσία μεταφοράς επιβατών ή εμπορευμάτων με τρένα που παρέχονται από έναν οργανισμό. Δεν πρέπει να συγχέεται με τη σιδηροδρομική γραμμή, τη δομή που αποτελείται από τις ράγες. Στη Βικιπαίδεια δε γίνεται σαφής διαφοροποίηση μεταξύ των δύο, έτσι υπάρχει ένα κουτί πληροφοριών που περιγράφει ράγες και γραμμές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.Eine Eisenbahnlinie im Verkehrswesen ist die regelmäßige Bedienung einer bestimmten Eisenbahnstrecke durch öffentliche Verkehrsmittel. - - lydgeluidsoundήχοςfuaimLiedAn audio document intended to be listened to; equivalent to http://purl.org/dc/dcmitype/SoundΜεταβολή στην πίεση του ατμοσφαιρικού αέρα που διεγείρει το αισθητήριο όργανο της ακοής μέσω ηχητικών κυμάτων - - Prueba ciclistacykelløbgara ciclisticawielercompetitiecycling competition사이클 대회διαγωνισμός ποδηλασίαςRadrennen - - ストリートruestreetΟδόςsráidstraatStraßeA 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. - - klasztor僧院klosterkloostermonestirmonasteryμοναστήριmainistirmonastèreKlosterKlasztor – budynek lub zespół budynków, w którym mieszkają wspólnoty religijne zakonników albo zakonnic.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.Un monestir és un tipus d'edificació per a la reclusió dels religiosos, que hi viuen en comú. Originàriament un monestir era la cel·la d'un sol monjo, dit en aquest cas ermità o anacoreta.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.Μονή υποδηλώνει το κτίριο ή συγκρότημα κτιρίων, που αποτελείται από τις εγχώρια τρίμηνα και στο χώρο εργασίας (ες) των μοναχών, αν οι μοναχοί ή μοναχές, και αν ζουν στην κοινότητα ή μεμονωμένα (ερημίτες). Η μονή περιλαμβάνει γενικά ένα χώρο που προορίζεται για την προσευχή που μπορεί να είναι ένα παρεκκλήσι, εκκλησία ή ναό, και μπορεί επίσης να χρησιμεύσει ως μια ρητορική.Is pobal manaigh ina gcónaí faoi móideanna reiligiúnach í mainistir.Le monastère est un ensemble de bâtiments où habite une communauté religieuse de moines ou de moniales.. - - spoorwegtunnelrailway tunnelσιδηροδρομική σήραγγαtollán iarnróidEisenbahntunnel - - juego de cartaskortspilkaartspelcard gamejeu de cartesKartenspielcome from http://en.wikipedia.org/wiki/Category:Card_games - - 上院議員senadorsenatorsenatorγερουσιαστήςseanadóirsénateurSenator - - 元素elemento chimicochemisch elementchemical element원소χημικό στοιχείοélément chimiquechemisches Element - - 卒業証明書diplomadiplomaδίπλωμαdioplómadiplômeDiplom - - imięvoornaamgiven nameόνομαcéadainmprénomVorname - - tętnica動脈arteriaslagaderartery동맥αρτηρίαartaireartèreArterie - - baaibaíabaybaieBucht - - hockeybondfield hockey leagueπρωτάθλημα χόκεϊ επί χόρτουligue d'hockey sur gazonFeldhockey-Ligaa group of sports teams that compete against each other in Field Hockeyένα γκρουπ αθλητικών ομάδων που διαγωνίζονται η μια εναντίον της άλλης στο χόκεϊ επί χόρτου - - 多島海archipiélagoarchipelarquipélagoarchipelagoαρχιπέλαγοςarchipelArchipel - - RobotRobotРобота - - competitiecompetitionδιαγωνισμόςcomórtascompétitionWettbewerb - - テニストーナメントtorneo di tennistennis toernooitennis tournamentΤουρνουά Τένιςcomórtas leadóigeTennisturnier - - synagogaシナゴーグsinagogasynagogesynagogueσυναγωγήsionagógsynagogueSynagogeA synagogue, sometimes spelt synagog, is a Jewish or Samaritan house of prayer.Une synagogue est un lieu de culte juif. - - プロジェクトproyectoprojectprojectσχέδιοtionscadalprojetProjektA project is a temporary endeavor undertaken to achieve defined objectives.Ein Projekt ist ein zeitlich begrenztes Unternehmen, das unternommen wird, um definierte Ziele zu erreichen. - - Football League seizoenfootball league season축구 대회 시즌αγωνιστική περίοδος πρωταθλήματος ποδοσφαίρουséasúr srath péileFootball Liga Saison - - カメラfotocameracameracamera카메라φωτογραφική μηχανήceamaraappareil photographiqueKameraUna fotocamera (in lingua italiana nota tradizionalmente come macchina fotografica) è uno strumento utilizzato per la ripresa fotografica e per ottenere immagini di oggetti reali stampabili su supporti materiali cartacei o archiviabili su supporti elettronici.Φωτογραφική μηχανή ονομάζεται η συσκευή που χρησιμοποιείται για τη λήψη φωτογραφιών.Οι ευρύτερα χρησιμοποιούμενες σήμερα φωτογραφικές μηχανές, ερασιτεχνικής ή επαγγελματικής χρήσης, διακρίνονται σε δύο βασικές κατηγορίες: τις συμπαγείς και στις μονοοπτικές ρεφλέξ. Διακρινόμενες, ανάλογα με την τεχνολογία τους,είναι οι κλασικές φωτογραφικές μηχανές με φιλμ και οι ψηφιακές φωτογραφικές μηχανές. - - 裁判官juezgiudicerechterjudgeδικαστήςbreitheamhjugerichter - - statekbarcoschipshipπλοίοárthachnavireSchiff - - nagrodanagradapremioprijsawardβραβείοgradamrécompenseAuszeichnung - - 天体cuerpo celestecorpo celestehemellichaamcelestial body천체ουράνιο σώμαrinn neimhecorps celesteHimmelskörper - - 墓地cementeriobegraafplaatscemeteryνεκροταφείοreiligcimetièreFriedhofA burial placeΝεκροταφείο (ή Κοιμητήριο) ονομάζεται ο χώρος ο προορισμένος για την ταφή των νεκρών.Un cimetière est un groupement de sépultures monumentales. - - one-time municipalitycommune historiqueehemalige Gemeindevoormalige gemeenteA municipality that has ceased to exist, and most of the time got incorporated (wholesale or partly) into another municipality - - martial artistKampfkünstlerΠολεμικός Καλλιτέχνης - - hollywood cartoonHollywood cartoonκινούμενα σχέδια του HollywoodHollywood Cartoon - - 地震aardbevingearthquaketremblement de terreErdbebenthe result of a sudden release of energy in the Earth's crust that creates seismic waves - - ミュージカルmusicalmusical뮤지컬μουσικόςmusiqueMusical - - ビーチバレー選手giocatore di beach volleybeachvolleybal spelerbeach volleyball player비치발리볼 선수παίκτης του beach volleyjoueur de volleyball de plageBeachvolleyballspielerΈνα άτομο (άνδρας ή γυναίκα) που ασχολείται με το άθλημα του μπίτς βόλλεϋ. - - national collegiate athletic association team seasonNCAA Team SaisonNCAA team seizoen - - 恒星stellasterstar항성αστέριréaltaétoileStern - - inlinehockey competitieinline hockey leagueπρωτάθλημα χόκεϋ inlinesraith haca inlíneInlinehockey Ligagroup of sports teams that compete against each other in Inline Hockey. - - Eurovisie Songfestival actEurovision song contest entryΔιαγωνισμός τραγουδιού της Eurovisioniontráil i gComórtas Amhránaíochta na hEoraifíseconcours Eurovision de la chansonVorentscheid Eurovision song contest - - 小教区parochieparishενορίαparóisteparoisseGemeindeThe smallest unit of a clerical administrative bodyΕίναι η μικρότερη μονάδα στην διοικητική ιερατική δομή. - - ManorHeerlijkheidSeigneurieGrundherrschaftEstate and/or (cluster of) lands that are under the jurisdiction of a feudal lord. Hence it is also the shorthand expression for the physical estate itself: a manor is a stately house in the countryside with the surrounding grounds - - アマチュアボクサーpugile amatorialeamateur boxeramateur boxer아마추어 권투 선수ερασιτέχνης μποξέρdornálaí amaitéarachboxeur amateurAmateurboxerboxeador afeccionado - - Brauner Zwergbrown dwarfbruine dwerg - - huesoossobotossoboneοστόcnámhosKnochenΗ βασική μονάδα του συστήματος στήριξης των σπονδυλωτών οργανισμών. - - polysaccharidePolysaccharidepolysacharideZijn koolhydraten die zijn opgebouwd uit tien of meer monosacharide-eenheden - - miastociudadbycittàstadशहरcidadecity도시πόληcathairvilleStadtcidadea relatively large and permanent settlement, particularly a large urban settlementun asentamiento permanente y relativamente grande, especialmente un gran asentamiento urbanoActualmente considérase como unha entidade urbana con alta densidade de poboación na que predominan fundamentalmente a industria e os servizos. - - 経済学者economistaeconoomeconomist경제학자οικονομολόγοςeacnamaíéconomisteÖkonomAn economist is a professional in the social science discipline of economics.Le terme d’économiste désigne une personne experte en science économique.Un economista es un profesional de las ciencias sociales experto en economía teórica o aplicada. - - congresconvention컨벤션συνέδριοcongrèsKonvention - - documenttypeDocument Typeτύπος εγγράφουcineál cáipéiseDokumentenarttype of document (official, informal etc.)documenttype - - speedway riderSpeedway Fahrerspeedway rijder - - 体操選手gymnastturnergymnastγυμναστήςgleacaíTurnerA gymnast is one who performs gymnasticsΈνας γυμναστής είναι ένας που εκτελεί γυμναστικές ασκήσεις - - ショッピングモールwinkelcentrumshoppingshopping mall쇼핑몰εμπορικό κέντροionad siopadóireachtacentre commercialEinkaufszentrum - - ジャーナリストperiodistagiornalistajournalistjournalistδημοσιογράφοςiriseoirjournalisteJournalist - - HormonehormoonA hormone is any member of a class of signaling molecules produced by glands in multicellular organisms that are transported by the circulatory system to target distant organs to regulate physiology and behaviour.Hormonen zijn signaalstoffen die door endocriene klieren via de bloedbaan aan doelcellen of -organen worden afgegeven en fysiologische processen en gedrag reguleren - - sportfaciliteitsport facilityαθλητικές εγκαταστάσειςinstallation sportiveSportanlage - - エージェントagenteagentagenteagentagent에이전트πράκτοραςgníomhaireagentAgentaxenteAnalogous to a foaf:Agent, an agent is an entity that acts. This is intended to be the super class of Person and Organisation.Ανάλογα με την κλάση foaf:Agent, ένας πράκτορας είναι μια οντότητα που ενεργεί. Αυτό προορίζεται να είναι μια υπερκλάση της κλάσης Άτόμο και Οργανισμός.Análogo a foaf:Agent, un axente é unha entidade que actúa. Destínase a ser a super clase de Persoa e Organización. - - 粉砕機møllemulinoMolenMillΜύλοςmuileannMoulinMühlea unit operation designed to break a solid material into smaller pieces - - obraz絵画malerischilderijPaintingΈργο ΖωγραφικήςpictiúrpeintureGemäldeDescribes a painting to assign picture entries in wikipedia to artists. - - resultados de Juegos Olímpicosresultaat op de Olympische Spelenolympic resultαποτελέσματα Ολυμπιακών αγώνωνrésultat de Jeux Olympiquesolympisches Ergebnis - - Sports team memberμέλος αθλητικής ομάδαςsport teamlidSport Team Mitgliedlid van een athletisch teamA member of an athletic team.Μέλος αθλητικής ομάδας. - - unidad militarmilitaire eenheidunidade militarmilitary unit군대Στρατιωτική Μονάδαunité militaireMilitäreinheit - - staatsapparaatpublic serviceδημόσιες υπηρεσίεςservice publicöffentlicher DienstΕίναι οι υπηρεσίες που προσφέρονται από δομές του κράτους - - キャラクターpersonaggio animangaani-manga figuuranimanga character만화애니 등장인물χαρακτήρας ανιμάνγκαcarachtar animangapersonnage d'animangaManga-Charakterpersonaxe de animangaAnime/Manga characterΧαρακτήρας από Άνιμε/Μάνγκα - - サッカートーナメントfutbol turnuvasıvoetbal toernooicampeonato de futebolsoccer tournomentτουρνουά ποδοσφαίρουcomórtas sacairFußballturnier - - 病気sygdommalattiaziektedisease질병ασθένειαgalarmaladieKrankheit - - literary genreLiteraturgattunggenre littéraireliterair genreGenres of literature, e.g. Satire, Gothic - - ブドウuvauvadruifgrapeσταφύλιfíonchaorraisinWeintraube - - 水域Cuerpo de aguadistesa d'acquawatervlakteextensão d’águabody of water수역ύδαταétendue d'eauGewässerΣυγκεντρωμένες, συνήθως μεγάλες ποσότητες νερού (π.χ. ωκεανοί) που βρίσκονται στη Γη ή σε οποιονδήποτε άλλο πλανήτη. Ο όρος χρησιμοποιείται και για υδάτινους σχηματισμούς όπου υπάρχει κίνηση του νερού, όπως ποταμοί, ρεύματα ή κανάλια. - - historical eventhistorische gebeurtenisévènement historiquehistorisches Ereignisan event that is clearly different from strictly personal events and had historical impact - - サーキットのコースracecircuitrace trackπίστα αγώνωνrásraoncircuit de courseRennstrecke - - 歴史的建造物historisch gebouwhistoric buildingιστορικό κτίριοfoirgneamh stairiúilbâtiment historiquehistorisches Gebäude - - モニュメントmonumentmonumentμνημείοséadchomharthamonumentDenkmalA type of structure (a statue or an art object) created to commemorate a person or important event, not necessarily of a catastrophic nature. - - artysta芸術家kunstnerartistakunstenaarмастакartist예술가καλλιτέχνηςealaíontóirхудожникartisteKünstler - - 調教師paardentrainerhorse trainerεκπαιδευτής αλόγωνPferdetrainer - - カヌー選手canoistakanovaardercanoeistcanúálaíKanute - - organización geopolíticageopolitieke organisatiegeopolitical organisation지정학적 조직γεωπολιτική οργάνωσηorganisation géopolitiquegeopolitische Organisation - - マウス遺伝子muisgenoomMouseGeneγονίδιο ποντικιούgéin luicheMausgenom - - bruto nationaal product per hoofd van de bevolkinggross domestic product per capitaακαθάριστο εγχώριο προϊόν κατά κεφαλήνolltáirgeacht intíre per capitaproduit intérieur brut par habitantBruttoinlandsprodukt pro Kopf - - WahldiagramElection Diagramεκλογικό διάγραμμαverkiezingen diagram - - QuoteZitatcitaat引用 - - アメリカン・フットボール・チームsquadra di football americanoAmerikaans football teamamerican football Team미식 축구 팀ομάδα αμερικανικού ποδοσφαίρουéquipe américaine de football américainAmerican-Football-Teamequipo de fútbol americano - - still imageStandbildimage fixestilstaand beeldA visual document that is not intended to be animated; equivalent to http://purl.org/dc/dcmitype/StillImage - - Gaelische sporterGaelic games playerΓαελικός παίκτης παιχνιδιώνimreoir sa Chumann Lúthchleas Gaeljoueur de sports gaéliquesgälischen Sportspieler - - 小説romannovellaromannovelνουβέλαúrscéalromanRomanA book of long narrative in literary proseΈνα βιβλίο με μεγάλη αφήγηση σε λογοτεχνική πρόζαLe roman est un genre littéraire, caractérisé pour l'essentiel par une narration fictionnelle plus ou moins longue. - - スケート選手pattinatoreschaatserskaterπαγοδρόμοςscátálaíSchlittschuhläufer - - カーリング選手curlingspelercurler컬링 선수μπικουτίCurlingspieler - - governmental administrative regionstaatliche Verwaltungsregionrégion administrative d'étatgebied onder overheidsbestuurAn administrative body governing some territorial unity, in this case a governmental administrative body - - 庭園havegiardinotuingardenκήποςgáirdínjardinGartenA 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) - - artiest klassieke muziekclassical music artistκαλλιτέχνης κλασικής μουσικήςceoltóir clasaiceachartiste de musique classiqueKünstler der klassischen MusikΟ Λούντβιχ βαν Μπετόβεν,Γερμανός συνθέτης και πιανίστας,ήταν ένας σπουδαίος καλλιτέχνης της κλασικής μουσικής. - - 真核生物eucarionteeukaryooteukaryote진핵생물ευκαρυωτικόeocaróteucaryoteEukaryoten - - profesor教授professorprofessorκαθηγητήςollamhprofesseurProfessor - - vice presidentvice presidentαντιπρόεδροςleasuachtaránvice présidentVizepräsident - - 野球リーグliga de béisbollega di baseballhonkbal competitiebaseball league야구 리그πρωτάθλημα μπέιζμπολsraith daorchluicheligue de baseballBaseball-Ligaa group of sports teams that compete against each other in Baseball.ένα σύνολο από ομάδες μπέιζμπολ οι οποίες συναγωνίζονται μεταξύ τους. - - voormalige provincieHistorical provincecúige stairiúilAncienne provincehistorischer ProvinzA place which used to be a province. - - institución educativauddannelsesinstitutiononderwijsinstellingeducational institution교육 기관εκπαιδευτικό ίδρυμαétablissement d'enseignementBildungseinrichtung - - estación espacialruimtestationspace station우주 정거장διαστημικός σταθμόςstáisiún spáisstation spatialeRaumstation - - 星座constelacióncostellazionetakımyıldızısamenstelconstellation별자리αστερισμόςréaltbhuíonconstellationSternbildUna costellazione è ognuna delle 88 parti in cui la sfera celeste è convenzionalmente suddivisa allo scopo di mappare le stelle. - - スキーヤーsciatoreskiërskierσκιέρsciálaískieurskifahrer - - politician spouseEhepartner eines Politikerpartner van een politicusσύζυγος πολιτικού - - underground journalUnderground ZeitschriftverzetsbladAn 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.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. - - paintball competitiepaintball leagueκύπελλο paintballligue de paintballPaintball-Ligaa group of sports teams that compete against each other in Paintballένα γκρουπ αθλητικών ομάδων που ανταγωνίζονται στο paintball - - ヒカゲノカズラ綱wolfsklauwclub moss석송강ΜούσκλιαlycopodiopsidaBärlapp - - composizione di musica classicacompositie klassieke muziekclassical music compositionσύνθεση κλασικής μουσικήςcomposition de musique classiqueKomposition klassischer MusikΗ σύνθεση κλασικής μουσικής μπορεί να πραγματοποιηθεί και με τη βοήθεια ειδικών προγραμμάτων στον υπολογιστή που χρησιμοποιούν συγκεκριμένο αλγόριθμο. - - hockey clubHockeyvereinhockeyclub - - 砂浜playastrandstrandpraiaplatjabeachplageStrandThe shore of a body of water, especially when sandy or pebbly.Ribera del mar o de un río grande, formada de arenales en superficie casi plana. - - ラクロスリーグlacrosse bondlacrosse leagueπρωτάθλημα χόκεϋ σε χόρτοligue de crosseLacrosse-Ligaa group of sports teams that compete against each other in Lacrosse. - - seriemoordenaarserial killerκατά συρροήν δολοφόνοςtueur en sérieSerienmörder - - identifieridentificatorBezeichneridentifiant - - olympic eventolympische Veranstaltungολυμπικακό γεγονόςOlympisch evenement - - ディスコグラフィdiscografia dell'artistaartiest discografieartist discography음반δισκογραφία καλλιτέχνηdioscagrafaíocht an ealaíontóradiscogafía de artistaKünstler Diskografie - - 人口動態demografiedemographicsδημογραφίαdéimeagrafaicdémographieDemografiePopulation 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") - - archbishopErzbischofaartsbisschoparchevêque - - formula one racingFormel-1 Rennenφόρμουλα ένας αγώναςFormule 1-r‎ace - - sportevenementevento esportivosports eventévènement sportifSportereignisa event of competitive physical activity - - lingwista言語学者linguïstlingüistalinguistγλωσσολόγοςteangeolaílinguisteSprachwissenschaftler - - 彫刻家beeldhouwersculptorγλύπτηςdealbhóirsculpteurBildhauer - - RelationshipОтношение - - papież教皇pauspope교황πάπαςpápapapePapst - - 化合物composto chimicochemisch componentcomposto químicochemical compound화합물χημική ένωσηcomhdhúileachproduit chimiquechemische Verbindung - - piwoビールcervezaølbirrabierbeer맥주μπύραbeoirbièreBier - - period of artistic stylestijlperiodeKunst Zeitstil - - overseas departmentÜbersee-Departementdépartement outre meroverzees departement - - オーストラリアンフットボールチームsquadra di football australianoAustralian football teamaustralian football Teamποδοσφαιρική ομάδα αυστραλίαςÉquipe de Football AustralienAustralian Football Team - - 堤防digadijkdikelevéeA dike is an elongated naturally occurring ridge or artificially constructed fill or wall, which regulates water levels - - IntercommunalityInterkommunalitätintercommunalité - - Star сlusterЗвездное скопление - - Noble familyAdelsfamilieadelijk geslachtFamily deemed to be of noble descent - - 世界遺産werelderfgoedWorld Heritage Site세계유산Μνημείο Παγκόσμιας Πολιτιστικής Κληρονομιάς (Πληροφορίες ΠΠΚ)Láithreán Oidhreachta Domhandasite du patrimoine mondialWeltkulturerbeA 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. - - 漫画historietafumettostripverhaalcomic만화κινούμενα σχέδιαgreannánbande dessinéeComic - - ski jumperSkispringerskispringer - - フランスの群arrondissementarrondissementarrondissementarrondissementAn administrative (France) or lawcourts (Netherlands) body governing a territorial unity on the intermediate level, between local and national levelDas Wort Arrondissement dient zur Bezeichnung verschiedener Verwaltungsbezirke in Frankreich, Belgien, Kanada und anderen Ländern - - アメリカン・フットボール・リーグliga de fútbol americanolega di football americanoAmerikaanse voetbal competitieliga de futebol americanoamerican football league미식 축구 대회aμερικανικό πρωτάθλημα ποδοσφαίρουamerican football leagueAmerican-Football-Ligaliga de fútbol americanoA group of sports teams that compete against each other in american football.Ένα σύνολο αθλητικών ομάδων που ανταγωνίζονται μεταξύ τους στο αμερικάνικο ποδόσφαιρο.A National Football League (en galego: Liga Nacional de Fútbol Americano), mellor coñecida polas súas siglas en inglés, NFL, é a maior liga de fútbol americano profesional dos Estados Unidos e está considerada como a máis grande e prestixiosa propiedade deportiva nese país.&lt;ref&gt;https://gl.wikipedia.org/wiki/National_Football_League&lt;/ref&gt; - - スポーツチームsportteamsports teamομαδικά αθλήματαéquipe sportiveSportmannschaft - - オーストラリアン・フットボール・リーグliga de fútbol australianalega di football australianoaustralian football competitieliga de futebol australianoaustralian football league오스트레일리안 풋볼 리그αυστραλιανό πρωτάθλημα ποδοσφαίρουaustralian football leagueAustralian Football LeagueA group of sports teams that compete against each other in australian football.Μια ομάδα αθλητικών ομάδων που ανταγωνίζονται μεταξύ τους σε αυστραλιανό ποδόσφαιρο. - - sieć emisyjnaネットワーク_(放送)emittenteomroeporganisatiebroadcast network브로드캐스트 네트워크δίκτυο ραδιοφωνικής μετάδοσηςlíonra craolacháinchaîne de télévision généralisteSendergruppeA 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)Ένα δίκτυο μετάδοσης είναι μια οργάνωση, όπως μια εταιρεία ή άλλη ένωση, που παρέχει ζωντανό ή μαγνητοσκοπημένο περιεχόμενο, όπως ταινίες, δελτία ειδήσεων, αθλητικά, και τα προγράμματα δημοσίων υποθέσεων για την εκπομπή πάνω από μια ομάδα ραδιοφωνικών ή τηλεοπτικών σταθμών - - ノーベル賞Premio NobelPremio NobelNobelprijsNobel PrizeΒραβείο ΝόμπελDuais NobelPrix NobelNobelpreis - - Hokejska ekipahockeyploeghockey teamομάδα χόκεϊéquipe de hockeyHockeymannschaft - - 殺人assasinomoordenaarmurderer연쇄 살인자δολοφόνοςdúnmharfóirassassinMörder - - 勲章condecoraciónonorificenzaonderscheidingdecoration장식διακόσμησηdécorationAuszeichnungAn object, such as a medal or an order, that is awarded to honor the recipient ostentatiously.Per onorificenza si intende un segno di onore che viene concesso da un'autorità in riconoscimento di particolari atti benemeriti.Une distinction honorifique en reconnaissance d'un service civil ou militaire . - - worstelevenementwrestling eventαγώνας πάληςmatch de catchWrestling-Veranstaltung - - 基礎自治体municipiogemeentemunicipalityδήμοςcommuneGemeindeAn administrative body governing a territorial unity on the lower level, administering one or a few more settlementsΔήμος ονομάζεται μία οντότητα της δημόσιας διοίκησης, η οποία στα περισσότερα κράτη αποτελεί τη βασική αυτοδιοικητική μονάδα και κατά κανόνα περιλαμβάνει μια πόλη ή κωμόπολη και τα γύρω χωριά της.Un Municipio es el ente local definido en el artículo 140 de la Constitución española y la entidad básica de la organización territorial del Estado según el artículo 1 de la Ley 7/1985, de 2 de abril, Reguladora de las Bases del Régimen Local. Tiene personalidad jurídica y plena capacidad para el cumplimiento de sus fines. La delimitación territorial de Municipio está recogida del REgistro Central de Cartografía del IGN - - mostbroponteসেতুbrugpontebridge다리γέφυραdroicheadpontBrückeA 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). - - 地区districtkecamatandistrictπεριοχήceantararrondissementBezirkbagian wilayah administratif dibawah kabupaten - - bergmontanhamountainΒουνόsliabhmontagneBerg - - montagne russeachtbaanroller coasterτρενάκι σε λούνα παρκrollchóstóirAchterbahn - - cykelløbcorsa ciclisticawielerwedstrijdcycling raceαγώνας ποδηλασίαςRadrennen - - track listTitellisteλίστα κομματιώνlijst van nummersA list of music tracks, like on a CDEen lijst van nummers als op een CD album - - archiwumアーカイブarchivoArchiefArchiveαρχείοarchiveArchivCollection of documents pertaining to a person or organisation.Collection de documents appartenant à une personne ou une organisation.Η συλλογή των εγγράφων που σχετίζονται με ένα πρόσωπο ή οργανισμό.Verzameling van documenten rondom een persoon of organisatie. - - låssluislockκλειδαριάglasécluseSchleuse - - 洞窟grottagrotcavernacave동굴σπηλιάpluaisgrotteHöhle - - håndboldholdsquadra di pallamanohandbal teamhandball teamομάδα χειροσφαίρισηςfoireann liathróid láimheéquipe de handballHandballmannschaft - - 科学者বিজ্ঞানীwetenschapperscientist과학자ΕπιστήμοναςeolaíscientifiqueWissenschaftler - - 喜劇作家または喜劇俳優komiekhumoristχιουμορίσταςhumoristeHumorist - - ウェブサイトwebsitewebsite웹사이트Ιστότοποςsuíomh idirlínsite webWebseitesitio web - - リンパlymfelymphλέμφοςlimfelympheLymphe - - TVディレクターtv-regisseurTelevision directorréalisateur de télévisionTV-Regisseura person who directs the activities involved in making a television program. - - proyecto de investigaciónonderzoeksprojectresearch projectερευνητικό έργοtionscadal taighdeprojet de rechercheForschungsprojektA research project is a scientific investigation, usually using scientific methods, to achieve defined objectives.Ένα ερευνητικό έργο είναι μια επιστημονική έρευνα, συνήθως με τη χρήση επιστημονικών μεθόδων, για την επίτευξη των καθορισμένων στόχων. - - 地域streeklocalityτόποςceantarlocalitéGegend - - žival動物animaldyranimalezvieradieranimalanimal동물ζώοainmhíanimalTieranimal - - 診療科specializzazione medicamedisch specialismemedical specialty진료과ιατρική ειδικότηταspécialité médicalemedizinisches Fachgebiet - - 大陸continentecontinentecontinentcontinent대륙ήπειροςilchríochcontinentKontinentUn continente è una grande area di terra emersa della crosta terrestre, è anzi la più vasta delle ripartizioni con le quali si suddividono le terre emerse.Un continente es una gran área de tierra emergida de la costra terrestre. - - 歌手zangerSingerΤραγουδιστήςamhránaíchanteurSängera person who sings.ένα άτομο που τραγουδά. - - honkbalseizoenbaseball seasonσεζόν του μπέιζμπολséasúr daorchluichesaison de baseballBaseballsaison - - クリケットチームsquadra di cricketcricketteamcricket teamομάδα κρίκετfoireann cuircéidCricketmannschaft - - Member of a Resistance MovementMitglied einer Widerstandorganisationlid van een verzetsorganisatie - - military aircraftavion militairelegervliegtuigMilitärmaschine - - アリーナstadiostadionarenaarena아레나παλαίστραarénastadionAn 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)Une aréna désigne une enceinte pouvant accueillir des spectacles, des concerts ou des événements sportifs.(https://fr.wikipedia.org/wiki/Arena) - - futbol ligi sezonuvoetbalseizoensoccer league seasonπερίοδος κυπέλλου ποδοσφαίρουFußball-Liga Saison - - 犯罪criminaldelinquentecrimineelcriminosocriminal범죄인εγκληματίαςcoirpeachcriminelVerbrecher - - Disneyfiguurdisney characterχαρακτήρες της ντίσνευcarachtar DisneyDisneyfigur - - nazwiskoachternaamsurname성씨επώνυμοsloinnenom de familleNachname - - ProtocolProtokollПротокол - - ssak哺乳類mamíferopattedyrmammiferozoogdiermamíferomammalθηλαστικό ζώοmamachmammifèresäugetier - - 医学geneeskundeMedicinemédecineMedizinThe science and art of healing the human body and identifying the causes of disease - - 選挙elecciónelezioneverkiezingElection선거εκλογήtoghchánélectionWahl - - telefon komórkowytelefono cellularemobiele telefoonсотавы тэлефонmobile phoneсотовый телефонtéléphone mobileMobiltelefon (Handy) - - クレーターcraterekratercrateracraterκρατήραςcráitéarcratèreKrater - - ボクシングリーグliga de boxeolega di pugilatobox competitieboxing league권투 리그πρωτάθλημα πυγμαχίαςsraith dornálaíochtaligue de boxeBox-LigaA group of sports teams or fighters that compete against each other in BoxingΜία διοργάνωση στην οποία μεμονωμένοι πυγμάχοι είτε ομάδες πυγμάχων συναγωνίζονται μεταξύ τους με σκοπό την νίκη. - - district water boardwaterschapBezirkwasserwirtschaftsamtConservancy, governmental agency dedicated to surface water management - - radio-controlled racing leagueRC-Renn Ligaligue de courses radio-télécommandéradio bestuurbare race competitieA group of sports teams or person that compete against each other in radio-controlled racing. - - 菌類hongosschimmelfungusμύκηταςfungasfungiPilz - - voormalig landHistorical countrytír stairiúilancien payshistorischer LandA place which used to be a country. - - samolot航空機aviónflyaereovliegtuig飛機aircraft비행기αεροσκάφοςaerárthachavionavionFlugzeugavión - - 一覧listelijstlistλίσταliostalisteListeA general list of items.une liste d'éléments.Een geordende verzameling objecten.Μια γενική λίστα από αντικείμενα. - - staatstateπολιτείαétatStaat - - キャラクターpersonage (fictie)fictional characterπλασματικός χαρακτήραςcarachtar ficseanúilpersonnage de fictionfiktiver Charakter - - 蘚類muschiomossenmossβρύοcaonachmoussesLaubmoss - - テニスリーグtennis competitietennis leagueΟμοσπονδία Αντισφαίρισηςsraith leadóigeligue de tennisTennisligaA group of sports teams or person that compete against each other in tennis. - - 生体物質biomolecolaBiomolecuulBiomolecule생체 분자βιομόριοbiomoléculeBiomolekülequivalent to http://ccdb.ucsd.edu/NIF/BIRNLex-OBO-UBO.owl#birnlex_22.Een molecuul wat van nature voorkomt in een organisme en gevormd kan worden door organismen.Κάθε μόριο που παράγεται σε έναν ζωντανό οργανισμό. Συνήθως μεγαλομοριακές ενώσεις που χρησιμεύουν στην δομή και στο μεταβολισμό του κυττάρου. Πρωτεΐνες, νουκλεϊνικά οξέα, υδατάνθρακες και λιπίδια. - - estaciónstationestaçãostationΣταθμόςstáisiúnстанцияgareBahnhofPublic transport station (eg. railway station, metro station, bus station).Остановка общественного транспорта (например: железнодорожная станция, станция метро, автостанция). - - rivierrioriverποτάμιabhainnrivièreFlussa large natural stream - - AlgorithmAlgorithmusAlgoritmeАлгоритм - - organizacija組織organizaciónorganisationorganisatieorganizaçãoorganisation조직οργάνωσηОрганизацияorganisationOrganisation - - 画像billedeafbeeldingimageíomháimageBildA document that contains a visual image - - コミックスのキャラクターstripfiguur (Amerikaans)personagem de quadrinhoscomics character만화애니 등장인물χαρακτήρας κινούμενων σχεδίωνpersonnage de bandes dessinéesComic Charakter - - tempiotempeltempleναόςteampalltempletempel - - チーズquesoostformaggiokaascheese치즈τυρίcáisfromageKäseA milk product prepared for human consumptionProducto lácteo preparado para el consumo humano - - paardrijderhorse riderιππέαςmarcachcavalierReiter - - miejsce立地lugarstedlekuaplaatsمكانlugarllocplaceπεριοχήáitlieuOrtImmobile things or locations.uma localização - - rest arearustplaatsRasthofA rest area is part of a Road, meant to stop and rest. More often than not, there is a filling station - - 発生学embryologieembryology발생학εμβρυολογίαsutheolaíochtembryologieEmbryologie - - 無知BilinmeyenOnbekendUnknownάγνωστοςanaithnidInconnuunbekannt - - 出版社editoruitgeverpublisher출판사εκδότηςfoilsitheoiréditeurHerausgeberPublishing company - - cross-country skierlanglauferSkilangläufer - - storm surgeSturmflutstormvloedEen stormvloed is de grootschalige overstroming van een kustgebied onder invloed van de op elkaar inwerkende krachten van wind, getij en water - - multi volume publicationmehrbändige Publikationmeerdelige publicatie - - toneelschrijverPlaywrightdrámadóirDramaturgeDramatikerA person who writes dramatic literature or drama. - - route of transportationTransportwegVía de transporteA 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).Unter Transportwegen (Verkehrswegen) versteht man Verkehrswege, auf denen Güter oder Personen transportiert werden. Dabei unterscheidet man zwischen Transportwegen zu Luft, zu Wasser und zu Lande, die dann für die unterschiedliche Verkehrsarten genutzt werden (http://de.wikipedia.org/wiki/Transportweg). - - sports team seasonSport Team Saisonπερίοδος αθλητικής ομάδαςsport seizoenA season for a particular sports team (as opposed to the season for the entire league that the team is in)μία περίοδος για μία αθλητική ομάδα - - scuderia formula 1formule 1-teamformula 1 teamομάδα φόρμουλα 1Formel-1 Team - - on-site mean of transportationVorortbeförderungsmittelstationair vervoermiddel - - 職務経歴書CVResumeΒιογραφικό σημείωμαLebenslaufA Resume describes a persons work experience and skill set.Een CV (curriculum vitae) beschrijft iemands werkervaring en vaardigheden. - - 人工衛星kunstmatige satellietArtificialSatelliteτεχνητός δορυφόροςsatailít shaorgasatellite artificielkünstlicher SatellitIn the context of spaceflight, an artificial satellite is an artificial object which has been intentionally placed into orbit.Satellit (Raumfahrt), ein künstlicher Raumflugkörper, der einen Himmelskörper auf einer festen Umlaufbahn umrundetΣτο πλαίσιο των διαστημικών πτήσεων, ένας τεχνητός δορυφόρος είναι ένα τεχνητό αντικείμενο το οποίο εκ προθέσεως έχει τοποθετηθεί σε τροχιά.Un satellite artificiel est un objet placé intentionellement en orbite. - - 緑藻alga verdegroenwierengreen algaπράσινο φύκοςalgue verteGrünalge - - skioordski resortθέρετρο σκιbaile sciálastation de skiSkigebietΤο θέρετρο σκι χρησιμοποιείται για να περιγράψει έναν τόπο διακοπών με τις απαραίτητες εγκαταστάσεις διαμονής και εξάσκησης του χειμερινού αθλήματος της χιονοδρομίας - - ジャンルgénerogenregenreύφοςseánraGenre - - 化学物質sostanza chimicachemische substantiesubstância químicachemical substance화학 물질χημική ουσίαceimiceánsubstance chimiquechemische Substanz - - 陸上競技atletismoatletiekathleticsαθλητικάlúthchleasaíochtathlétismeLeichtathletik - - 記念碑gedenktekenmemorialμνημείοmémorialDenkmalA monument erected to commemorate a person, an event and/or group. In the case of a person, this might be a grave or tomb. - - 野球選手giocatore di baseballhonkballerjogador de basebolbaseball player야구 선수παίκτης μπέιζμπολimreoir daorchluichejoueur de baseballBaseballspielerΟ αθλητής (άνδρας ή γυναίκα) που συμμετέχει σε μία ομάδα μπέιζμπολ. - - 生命医科学研究者または医師medicomedicusmedicianγιατρόςMediziner - - wegtunnelroad tunnelΟδική σήραγγαtollán bóthairStraßentunnel - - natuurlijke regionatural regionφυσική περιοχήrégion naturelleNaturraumH φυσική περιοχή χρησιμοποιείται για να περιγράψει την έκταση μιας γεωγραφικής περιοχής στην οποία η ανθρωπογενής παρέμβαση είναι ανύπαρκτη μέχρι ελάχιστη - - national football league seasonNFL Saison - - 動物園zoodierentuinzooζωολογικός κήποςzooZoo - - cultuurgewascultivar (cultivated variety)재배 품종καλλιεργούμενη ποικιλίαsaothrógSorte ( kultivierte Sorte )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.Een plantensoort die voor menselijk gebruik wordt geteeld en uit wilde planten is veredeld - - castellokasteelcastle성 (건축)κάστροcaisleánchâteauburgCastles often are, but need not be a military structure. They can serve for status, pleasure and hunt as well. - - vicepremiervice prime ministerαντιπρωθυπουργόςvice premier ministreVizeministerpräsident - - Glasbilo楽器Instrumentostrumento musicalemuziekinstrumentInstrument악기Μουσικό Όργανοuirlisinstrument de musiquemusikinstrumentDescribes all musical instrument - - 首長burgemeestermayorδήμαρχοςmaireBürgermeister - - 写真家fotografofotograafphotographerφωτογράφοςphotographeFotograf - - 種_(分類学)especiesartersoortspeciesείδοςspeiceasespèceSpezie - - 銀行bancobancabankbancobankΤράπεζαbanqueBanka company which main services are banking or financial services. - - campo da golfgolfbaangolf courseγήπεδο γκολφcúrsa gailfGolfplatzΣε ένα γήπεδο γκολφ οι τρύπες συχνά κρύβουν κινδύνους, που ορίζονται ως ειδικές περιοχές για τις οποίες ισχύουν επιπρόσθετοι κανόνες διεξαγωγής του παιχνιδιού. - - ダムdigadamdamφράγμαdambabarrageDammΈνα φράγμα είναι μια κατασκευή που εμποδίζει, ανακατευθύνει ή επιβραδύνει την φυσική ροή υδάτων.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. - - テレビジョン放送局canal de televisióncanale televisivotelevisie zendertelevision stationτηλεοπτικός σταθμόςstáisiún teilifísechaînes de télévisionFernsehsenderA 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.Ένας τηλεοπτικός σταθμός έχει μια παράταξη.Για παράδειγμα ο τηλεοπτικός σταθμός WABC-TV (or ABC 7, Channel 7).Δεν πρέπει να συγχέεται με το τηλεοπτικό δίκτυο ABC,που έχει πολλούς τηλεοπτικούς σταθμούς.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. - - country estateLandgutbuitenplaatsA country seat is a rural patch of land owned by a land owner.Een buitenplaats is een landgoed. - - レースraceraceαγώναςráscourseRennen - - 仕出し業者party service bedrijfCaterertraiteurPartyservice - - befolket stedbebouwde omgevingتجمع سكانيpopulated placeπυκνοκατοικημένη περιοχήlieu habitébewohnter OrtAs 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).Πυκνοκατοικημένη περιοχή, είναι η περιοχή ή το μέρος με μεγάλο αριθμό κτιρίων και μεγάλο μόνιμο πληθυσμό, σε σύγκριση με την γεωγραφική περιοχή που καταλαμβάνει (μεγαλούπολη, πόλη ή χωριό). - - 自転車選手ciclistacyklistwielrennerciclistacyclist사이클 선수ποδηλάτηςrothaícyclisteRadfahrer - - rugby competitierugby leagueπρωτάθλημα rugbysraith rugbaíligue de rugbyRugby-LigaA group of sports teams that compete against each other in rugby. - - allenatore di football americanoAmerikaanse football coachamerican football coachπροπονητής ράγκμπυentraineur de football américainAmerican-Football-Traineradestrador de fútbol americano - - klub piłkarskiequipo de fútbolfodboldklubvoetbalclubclub de futbolsoccer clubομάδα ποδοσφαίρουclub sacairclub de footballFußballverein - - 歴史学者storicohistoricushistorianιστορικόςstaraíhistorienHistoriker - - 小惑星asteroideasteroideasteroïdeasteróideasteroid소행성αστεροειδήςastaróideachastéroïdeAsteroid - - ギター演奏者guitaristchitarristagitaristguitaristκιθαρίσταςgiotáraíguitaristeGitarrist - - 武器våbenwapenweapon무기όπλοarmarmeWaffe - - jezioro호수meerlagolake호수λίμνηlochозероlacSee - - 中尉luitenanttenentelieutenantυπολοχαγόςleifteanantlieutenantLeutnant - - mineMine (Bergwerk)mijn (delfstoffen))鉱山A mine is a place where mineral resources are or were extractedEen mijn is een plaats waar delfstoffen worden of werden gewonnen - - 文字letterletterγράμμαlitirlettreBuchstabeEin Buchstabe des Alphabets.A letter from the alphabet.Ene lettre de l'alphabet. - - topical conceptcoincheap i mbéal an phobailthematisches Konzept - - dyscyplina naukowaacademische hoofdstudierichtingacademic subjectsujet académiqueakademisches Fachdisciplina académicaGenres of art, e.g. Mathematics, History, Philosophy, MedicineUnha disciplina académica é unha rama do coñecemento que unha comunidade de especialistas desenvolve con metodoloxías de investigación. - - 高貴なedelenobleευγενήςAdliger - - 灯台vuurtorenlighthouseΦάροςteach solaisphareLeuchtturm - - microregiomicrorregiaomicro-regionμικρο-περιφέρειαMikroregionA microregion is a - mainy statistical - region in Brazil, at an administrative level between a meso-region and a communityΗ μικρο-περιφέρεια χρησιμοποιείται για να περιγράψει, κυρίως στατιστικά, μια περιοχή στη Βραζιλία σε διοικητικό επίπεδο μεταξύ μίας μεσο-περιφέρειας και μίας κοινότητα - - parlementslidmembro do parlamentomember of parliamentΜέλος κοινοβουλίουmembre du ParlementParlamentsmitglied - - route stophalteHaltestelleétapedesignated place where vehicles stop for passengers to board or alightBetriebsstelle im öffentlichen Verkehr, an denen Fahrgäste ein- und aussteigenune étape ou un arrêt sur une route - - ワイン産地wijnstreekwine regionrégion viticoleWeinregion - - eclissi solarezonsverduisteringsolar eclipseέκλειψη ηλίουurú na gréineéclipse de soleilSonnenfinsternisΈκλειψη ηλίου ονομάζεται το φαινόμενο κατά το οποίο η Σελήνη παρεμβάλλεται ανάμεσα στον Ήλιο και τη Γη, με αποτέλεσμα ορισμένες περιοχές της Γης να δέχονται λιγότερο φως από ό,τι συνήθως. - - skovbosforestforêtWaldA natural place more or less densely grown with trees - - bóstwogodheiddeity이집트 신θεότηταdiaGottheit - - 鉄道駅stazione ferroviariatreinstationtrain stationσιδηροδρομικός σταθμόςstáisiún traenachgareBahnhof - - 詩人dichterpoetποιητήςfilepoèteDichter - - biskup chrześcijańskivescovo cristianoChristelijk bisschopChristian Bishop기독교 주교Πληροφορίες ΕπισκόπουEaspag Críostaíévêque chrétienchristlicher Bischof - - polo competitiepolo leagueΟμοσπονδία Υδατοσφαίρισηςsraith pólóligue de poloPolo-LigaA group of sports teams that compete against each other in Polo. - - 自動車競技リーグlega automobilisticaauto race competitieauto racing league자동차 경주 대회πρωτάθλημα αγώνων αυτοκινήτωνsraith rásaíochta charannala ligue de course automobileAuto Racing Leaguea group of sports teams or individual athletes that compete against each other in auto racingμια ομάδα αθλητικών ομάδων ή μεμονωμένων αθλητών που ανταγωνίζονται μεταξύ τους σε αγώνες αυτοκινήτων - - plaats van geschiedkundig belanghistoric placeιστορικός χώροςáit stairiúilsite historiquehistorischer Ort - - 深度dybdedieptedepthβάθοςprofondeurTiefe - - Britanska kraljevska osebaイギリス王室reali britanniciBritse royaltyBritish royalty영국 왕족Βρετανική μοναρχίαroyauté BritanniqueBritisches Königshaus - - テレビ番組司会者presentatore televisivotelevisie presentatortelevision hostπαρουσιαστής τηλεοπτικής εκπομπήςláithreoir teilifíseanimateur de télévisionFernsehmoderator - - 中国の漫画manhuamanhuamanhuamanhuaComics originally produced in ChinaAußerhalb Chinas wird der Begriff für Comics aus China verwendet.Manhua is het Chinese equivalent van het stripverhaalΚόμικς που παράγονται αρχικά στην Κίνα - - Serbatoio idrico a torreWatertorenWater towerπύργος νερούChâteau d'eauWasserturmμια κατασκευή σχεδιασμένη για αποθήκευση μεγάλων ποσοτήτων νερού σε μέρος με κάποια ανύψωση, ώστε να διατηρήσει πίεση στο σύστημα παροχής νερούa construction designed to store larger quantities of water at a place of some elevation in order to keep pressure on the water provision systemune construction destinée à entreposer l'eau, et placée en général sur un sommet géographique pour permettre de la distribuer sous pression - - figura mitologicamythologisch figuurmythological figureμυθικό πλάσμαmythologische Gestalt - - voormalige regioHistorical regionréigiún stairiúilAncienne régionhistorischer Regiona place which used to be a region. - - stavba建築物edificiobygningedificiogebouwbuilding건축물κτίριοfoirgneamhbâtimentGebäudeBuilding 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).Ein Gebäude, umgangssprachlich auch oft als Haus bezeichnet, ist ein Bauwerk, das Räume umschließt, betreten werden kann und zum Schutz von Menschen, Tieren oder Sachen dient (http://de.wikipedia.org/wiki/Geb%C3%A4ude). - - 宇宙飛行士astronautaastronautaruimtevaarderastronautaastronaut우주인αστροναύτηςspásaireastronauteAstronaut - - mixed martial arts leaguesraith ealaíona comhraic meascthaMixed Kampfkunst Ligaligue d'arts martiaux mixtesa group of sports teams that compete against each other in Mixed Martial Arts - - moving imageBewegtbilderbewegend beeldA visual document that is intended to be animated; equivalent to http://purl.org/dc/dcmitype/MovingImage - - term of officeAmtsdauermandatambtstermijn - - ancient area of jurisdiction of a person (feudal) or of a governmental bodygebied dat vroeger onder het gezag viel van een heer of vrouwe of een instelling van kerk of staatMostly for feudal forms of authority, but can also serve for historical forms of centralised authority - - 行政区画regione amministrativabestuurlijk gebied行政區administrative region관리 지역διοικητική περιφέρειαréigiún riaracháinrégion administrativeVerwaltungsregionrexión administrativaA PopulatedPlace under the jurisdiction of an administrative body. This body may administer either a whole region or one or more adjacent Settlements (town administration) - - culturistabodybuilderbodybuilder보디빌더culturisteBodybuilder - - シングルsinglesingle싱글singlesingilsingleSingleIn music, a single or record single is a type of release, typically a recording of fewer tracks than an LP or a CD. - - softball competitiesoftball leagueπρωτάθλημα σόφτμπολsraith bogliathróideligue de softballSoftball LigaA group of sports teams that compete against each other in softball.Ομάδες που ανταγωνίζονται στο αγώνισμα του σόφτμπολ. - - カジノcasinocasinòcasinocasino카지노καζίνοcasinoKasinoIn modern English, a casino is a facility which houses and accommodates certain types of gambling activities.To καζίνο είναι ένας χώρος στον οποίο μπορούμε να παίξουμε τυχερά παιχνίδια ποντάροντας χρήματα.Un casino est un lieu proposant des jeux d'argent et de hasard ou jeux de casino. - - カートゥーンcartone animatospotprentcartoon카툰 (만화)σατυρικό σκίτσοcartúndessin animéKarikatur - - コンテストwedstrijdcontestδιαγωνισμόςcomórtasconcoursWettbewerb - - 宇宙機ruimtevaartuigspacecraft우주선διαστημόπλοιοspásárthachvaisseau spatialRaumfahrzeug - - radiopresentatorradio hostοικοδεσπότης ραδιοφώνουláithreoir raidióRadiomoderator - - mixed martial arts eventimeacht ealaíona comhraic meascthaMixed Kampfkunst Veranstaltungévènement d'arts martiaux mixtes - - テレビゲームvideojuegocomputerspilvideospelvideojogovideo game비디오 게임βιντεοπαιχνίδιfíschluichejeux vidéoVideospielA video game is an electronic game that involves interaction with a user interface to generate visual feedback on a video device. - - 知事gouverneurgovernorκυβερνήτηςgobharnóirgouverneurGouverneur - - vakbondtrade unionΚουτί πληροφοριών ένωσηςceardchumannsyndicat professionnelGewerkschaftA trade union or labor union is an organization of workers who have banded together to achieve common goals such as better working conditions. - - cargo públicoambtsdrageroffice holder공직자κάτοχος δημόσιου αξιώματοςtitulaireAmtsinhaber - - typetypeτύποςcineálrégime de classificationTypa category within a classification systemcategorie binnen een classificatiesysteem - - militair bouwwerkmilitary structure군사 건축물Στρατιωτική Δομήmilitärisches BauwerkA military structure such as a Castle, Fortress, Wall, etc. - - ドキュメントdokumentdocumentodocumentdocumentέγγραφοcáipéisdocumentDokumentAny document - - クリケットリーグliga de cricketcricket competitiecricket league크리켓 대회κύπελλο κρικετsraith cruicéidligue de cricketCricket-Ligaa group of sports teams that compete against each other in Cricket - - rugby clubrugby clubομάδα ράγκμπιclub rugbaíclub de rugbyRugby-Club - - bergketencadeia montanhosamountain range산맥Οροσειράchaîne de montagneBergkettea chain of mountains bordered by highlands or separated from other mountains by passes or valleys. - - オージーフットボール選手giocatore di football australianoAustralian football-spelerAustralian rules football player오스트레일리아식 풋볼 선수αυστραλιανοί κανόνες ποδοσφαιριστήAustralian Rules Football-Spieler - - バスケットボール選手Basquetbolistagiocatore di pallacanestrobasketbal spelerbasketball player농구 선수παίκτης καλαθοσφαίρισηςimreoir cispheilejoueur de basketballBasketballspielerΈνας αθλητής (άνδρας ή γυναίκα) που ασχολείται με το άθλημα της καλαθοσφαίρισης. - - 宰相cancillercancellierekanselierchancelerchancellor재상καγκελάριοςseansailéirchancelierKanzler - - rechtzaakcaso jurídicoLegal Caseνομική υπόθεσηcas juridiqueRechtsfall - - 甲殻類schaaldiercrustacean갑각류αστρακόδερμοcrústachcrustacésKrebstier - - 放送事業者emittenteomroepالشبكةbroadcaster방송εκφωνητήςcraoltóirdiffuseurRundfunkveranstalterA 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)Ο ραδιοτηλεοπτικός φορέας είναι ένας οργανισμός που είναι υπεύθυνος για την παραγωγή ραδιοφωνικών ή τηλεοπτικών προγραμμάτων και / ή τη διαβίβασή τουςEin Rundfunkveranstalter (oder auch Sendeunternehmen) betreibt Hörfunk- oder Fernsehprogramme. (http://de.wikipedia.org/wiki/Rundfunkveranstalter - 28/03/2011) - - music directordirigentDirigentchef d'orchestreA person who is the director of an orchestra or concert band. - - ソテツ門cycadeeëncicadácea소철류cycadφοινικόθαμνοςcíocáidcycadophytesPalmfarn - - political party of leaderpolitische Partei des VorsitzendenThe Political party of leader. - - distance laps - - speakernumber of office holder - - britishOpen - - other occupation - - ONS ID (Office national des statistiques) Algeria - - city typetype stadτύπος - - shuttle - - eye colourAugenfarbe - - rankingRangliste - - sub-classisonderklassea subdivision within a Species classis - - long distance piste number - - year of electrificationгодина електрификацијеJahr der ElektrifizierungYear station was electrified, if not previously at date of opening.Година када је станица електрифицирана, уколико није била при отварању. - - last seasonΠροηγούμενη Περίοδος - - minimum temperature (K)geringste Temperatur (K)ελάχιστη θερμοκρασία (K) - - wpt itmWPT ITM - - illustratorIllustratorillustratorillustrateurIllustrator (where used throughout and a major feature) - - Parents Wedding Dateдатум венчања родитељаHochzeitstag der Elterndata do casamento dos pais - - other mediaandere Medien - - number of district - - fastest driverschnellster Fahrerταχύτερος οδηγός - - date actαπόφαση_διάνοιξης - - MedlinePlusMedlinePlus - - external ornament - - minorityMinderheit - - referenceReferenzStructured reference providing info about the subject - - massifMassiv - - British Comedy AwardsBritish Comedy AwardsΒρετανικά Βραβεία Κωμωδίας - - 標高altitudапсолутна висинаhoogtealtitudeυψόμετροaltitudeHöhe - - ORPHAORPHAORPHAORPHA - - first launch rocket - - source confluence country - - state of origin point - - MBA IdMusicBrainz is an open music encyclopedia that collects music metadata and makes it available to the public. - - title language - - launch - - other serving linesandere verbindingenandere VerbindungenConnecting services that serve the station such as bus, etc. - - largest metro - - first ownererster Besitzerpremier propriétaireprimer dueño - - 種_(分類学)soortspeciesespèceSpezies - - management region - - local phone prefixlokale Vorwahl - - bicycle informationFahrradinformationenInformation on station's bicycle facilities. - - grid referencecoördinaten - - wins at Senior Euro - - Dutch COROP code - - historical regionhistorische Region - - number of staffPersonalbestandαριθμός προσωπικούaantal medewerkers - - gym apparatusFitnessgerät - - national tournament bronze - - original nameursprünglicher Namenoorspronkelijke naamThe original name of the entity, e.g. film, settlement, etc. - - senatorSenatorsenador - - former call sign - - ept final table - - missionMissionαποστολή - - The URL at which this file can be downloaded - - cca state - - surface gravity (g) - - attorney generalGeneralstaatsanwaltprocureur-generaalPublic attorneyde procureur-generaal - - gnis code - - maiden flight rocket - - race trackRennstreckecircuit - - load limit (g)Belastungsgrenze (g)Load limit of the bridge. - - school code - - number of bombsAnzahl der Bombenαριθμός των βομβών - - number of all indegrees in dbpedia (same ourdegrees are counting repeatedly)počet indegree odkazů v dbpedii (stejné započítané opakovaně) - - maximum preparation time (s)Maximum preparation time of a recipe / Food - - TheologyTheologieΘεολογία - - jurisdictionZuständigkeitJurisdiction 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.Die Zuständigkeit oder Kompetenz legt im öffentlichen Recht fest, welche Behörde bzw. welches Gericht im Einzelfall rechtlich zu hoheitlichem Handeln ermächtigt und verpflichtet ist. - - number of locationsAnzahl der Standortenombre de sites - - gross domestic product nominal per capita - - service end date - - population percentage male - - digital sub channel - - percentageProzentpercentage - - first air dateSendebeginnThe date on which regular broadcasts began. - - non professional career - - maximum boat length (μ)μέγιστο_μήκος_πλοίου (μ) - - guestGastεπισκέπτης - - 番号nummernumberαριθμόςAnzahl - - mass (g)Masse (g)μάζα (g) - - broadcast repeaterεπαναληπτική αναμετάδοση - - participantdeelnemerTeilnehmer - - Fackelträgertorch bearer - - copiloteCopilot - - formatformaatformat (object)formatformáidformatFormatFormat of the resource (as object). Use dct:format for literal, format for object - - motherMutter - - second commanderzweiter Kommandant - - number of districtsAnzahl der Bezirkejumlah kecamatan - - amateur titleAmateurtitelаматерска титула - - localization of the island - - spokespersonSprecherporta-voz - - royal anthem - - subject of playThe overall subject matter dealt with by the play. - - observatoryObservatoriumαστεροσκοπείοεπιστημονικά ιδρύματα που παρατηρούν και μελετάνε ουράνια σώματα και φαινόμενα. - - historical namehistorischer Name - - target airport - - duration (s)Dauer (s)duur (s)The duration of the item (movie, audio recording, event, etc.) in ISO 8601 date format - - sport countrySportnationThe country, for which the athlete is participating in championshipsDas Land, für das der Sportler an Wettkämpfen teilnimmt - - Temporary Placement in the Music Chartsvorläufige Chartplatzierung - - numberOfRedirectedResourcenumber of redirected resource to another onepočet redirectů - zdrojů přesměrovaných na jiný zdroj - - aircraft patrolπεριπολία αεροσκάφους - - music fusion genre - - networkSendergruppeδίκτυο - - ICD9ICD9ICD9 - - shoot - - geneReviewsName - - eparchyепархияmetropoleisCompare with bishopric - - bronzen medaille dragermedalha de bronzebronze medalistχάλκινο μετάλλιοBronzemedaillengewinner - - derived wordabgeleitetes Wort - - ウエスト (μ)димензије струка (μ)размер талия (μ)waist size (μ)Taillenumfang (μ) - - code bookGesetzbuchwetboekcode book or statute book referred to in this legal case - - followed bygefolgt vonsuivi parsiguido de - - onderschriftlegendasubtitleυπότιτλοςUntertitel - - Dorlands suffix - - scuolaschoolschoolσχολείοécoleschuleschool a person goes or went toσχολείο στο οποίο πηγαίνει ή πήγε κάποιος - - child organisationdochterorganisatie - - 体重 (g)vægt (g)тежина (g)gewicht (g)peso (g)weight (g)βάρος (g)poids (g)Gewicht (g) - - membershipMitgliedschaftlidmaatschap - - last launch dateletzter Starttermin - - australia open mixed - - flag Link - - monarchMonarchmonarch - - FAA Location Identifier - - area quote - - ouderparentparentElternteil - - 引退年последња година активних годинаactieve jaren eind jaaractive years end yearενεργά χρόνια τέλος του χρόνου - - bioclimateBioklima - - is handicapped accessibleist rollstuhlgerechtTrue if the station is handicapped accessible. - - Alps subgroupυποομάδα των άλπεωνsottogruppo alpinoАлпска подгрупаthe Alps subgroup to which the mountain belongs, according to the SOIUSA classification - - constructionκατασκευήKonstruktion - - notable workoeuvre majeure代表作bekende werkenNotable work created by the subject (eg Writer, Artist, Engineer) or about the subject (eg ConcentrationCamp) - - supplemental draft year - - spur of - - volcanic activityvulkanische Aktivitätвулканска активност - - административна заједницаadministratieve gemeenschapadministrative collectivityδιοικητική συλλογικότηταVerwaltungsgemeinschaft - - chief editorChefredakteurhoofdredacteur - - collectivity minority - - education placeBildungsstätte - - veinVeneвена - - SUDOC idSystème universitaire de documentation id (French collaborative library catalog). -http://www.idref.fr/$1 - - 親戚relativeσυγγενήςVerwandterparente - - failed launches - - power type - - data wydaniaudgivetrelease datumrelease dateημερομηνία κυκλοφορίαςRelease date of a Work or another product (eg Aircraft or other MeansOfTransportation - - military unit sizethe size of the military unit - - autor作者auteurautorauthorσυγγραφέαςúdarавторauteurautor - - moodStimmung - - ncaa team - - fateSchicksal - - organisationOrganisation - - IOBDB IDLortel Archives Internet Off-Broadway database "show id" from lortel.org. - - memorial ID numbercode gedenktekenIdentifier for monuments of the Memorial typeCode oorlogsmonument of ander gedenkteken - - museumTypesoort museumThis property has been added because 'buildingType' is much more about the place, whereas 'museumType' is about the way the place is being (or:was) usedNieuw 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 - - US salesUS-Verkäufeпродаја у САДNumber of things (eg vehicles) sold in the US - - subdivisions - - has junction withσύνδεση - - order in office - - registryRegisterregistreA registry recording entires with associated codes.Ein Register welches Einträge mit Kennungen versieht. - - word before the countryреч пре државе - - subtribusonderstam - - junior team - - opponentsGegner"opponent in a military conflict, an organisation, country, or group of countries. " - - reeksseriesσειράsérieSerie - - newspaperZeitung - - list itemlijst itemsαντικείμενο λίστας - - DiseasesDBDiseasesDBDiseasesDBDiseasesDB - - spacewalk endEnde Weltraumspaziergang - - mentorMentormentorA wise and trusted counselor or teacherCelui qui sert de guide, de conseiller à quelqu’un. - - approximate calories (J)ungefähre Kalorien (J)κατά προσέγγιση θερμίδες (J)приближно калорија (J)Approximate calories per serving.Kατά προσέγγιση θερμίδες ανά μερίδα. - - number builtAnzahl gebautaantal gebouwd - - opening dateημερομηνία ανοίγματοςdate d'ouvertureEröffnungsdatum - - draft position - - date useέναρξη_χρήσης - - miastobystadcityπόληcathairvilleStadt - - rural municipalityLandgemeinde - - reviewRezension - - circulationoplageκυκλοφορίαciorclaíocht - - total population referencereferencia do total da populacao - - venerated inпоштован уvereerd in - - productionProduktion - - Human Development Index (HDI)Index für menschliche Entwicklung (HDI)Índice de Desenvolvimento Humano (IDH)a composite statistic used to rank countries by level of "human development" - - przyspieszenie (s)убрзање (s)acceleratie (s)acceleració (s)acceleration (s)επιτάχυνση (s)luasghéarú (s)Beschleunigung (s) - - inwonersaantalpopulação totalpopulation totalσυνολικός_πληθυσμόςpopulation totaleEinwohnerzahl - - number of platform levelsNumber of levels of platforms at the station. - - media typeMedientypmediatypePrint / On-line (then binding types etc. if relevant) - - generation units - - Gemini Award - - engine powermotorvermogenPower to be expressed in Watts (kiloWatt, megaWatt) - - former broadcast networkehemalige Sendergruppeancienne chaîne de télévision généralisteA former parent broadcast network to which the broadcaster once belonged.Eine ehemalige Sendergruppe zu dem der Rundfunkveranstalter gehört hat. - - Gray subjectRefers to the famous 1918 edition of Gray's Anatomy. - - plantPflanzeφυτό植物 - - sister station - - сезонаseizoenyearsχρόνιαJahre - - number of stationsAnzahl der StationenNumber of stations or stops. - - MeSH IDMeSH ID - - Link from a Wikipage to a Wikipage in a different language about the same or a related subject.Reserved for DBpedia. - - mandate of a prefect of a romanian settlement - - serving size (g)Default serving size (eg "100 g" for the standard 100 g serving size). approximateCalories apply to this serving size - - boxing styleBoxstil - - област (m2)oppervlakte (m2)área (m2)area (m2)έκταση (m2)superficie (m2)Fläche (m2)The area of the thing in square meters. - - type of tennis surfacetype de surface (tennis)tipo de surperficie(tennistype speelgrondThere 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. - - wsop wristbandWSOP наруквицаНаруквица коју осваја шампион WSOP-a. - - international phone prefixinternationale Vorwahl - - nameName - - human development index rank - - share of audienceAnteil der Zuschauer/Zuhörer - - wine regionWeinregionрегион вина - - broadcast station classαναμετάδοση ραδιοφωνικού σταθμού - - honoursEhrungenδιακρίσειςeerbewijzenHonours bestowed upon a Person, Organization, RaceHorse, etc - - założony przezgesticht doorfounded bya bhunaighfondé pargegründet vonIdentifies the founder of the described entity. This can be a person or a organisation for instance. - - kindOfLanguage - - Contains a WikiText representation of this thing - - previous namefrüheren Namenvorige naam - - first mentionerste Erwähnung - - año de censocensus yearέτος απογραφήςannée de recensementZensusjahr - - percentage of a place's female population that is literate, degree of analphabetismpercentage van de vrouwelijke bevolking dat geletterd is - - nfl season - - fibahof - - identification symbol - - opening yearopeningsjaarEröffnungsjahr - - cemeterykerkhofcimetièreFriedhof - - main islandHauptinsel - - millsCodeNLWindmotorenmillsCodeNLWindmotoren - - depiction description (caption)This property can be used to map image captions from Infoboxes - - number of seats in the land parlement - - collaborationσυνεργασίαZusammenarbeit - - iso code of a community - - election date leaderWahldatum des VorsitzendenThe date that leader was elected. - - population metro - - causalties - - designerσχεδιαστής - - taste or flavourGeschmack oder Aromasmaak - - minority floor leadernumber of office holder - - start xct - - conservation status保全状況 - - blood groupομάδα αίματοςBlutgruppe - - current record - - project keywordA key word of the project. - - lowest placelieu le plus bas - - analog channelAnalogkanalαναλογικό κανάλιаналогни канал - - gold medal double - - regeringspartijpartido do liderleader partyκόμμα_αρχηγούRegierungspartei - - number of houses present)Anzahl der vorhandenen Häuseraantal huizen aanwezigCount of the houses in the Protected AreaAantal huizen in afgegrensd gebied - - WoRMSWoRMSWorld Register of Marine Species - - привидна звездана величинаapparent magnitudeφαινόμενο μέγεθοςвидимая звёздная величинаscheinbare Helligkeit - - single rankingsEinzelrangliste - - trainer club - - literary genreliterair genreliterarische GattungA 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. - - dochterابنةdaughterκόρηTochter - - cloth size - - lymph - - complexioncor da pele - - eMedicine topiceMedicine topicDifferent from eMedicineSubject, which see - - information name - - mouth region - - world tournament bronzeброј бронзаних медаља са светских турнира - - start career - - primogenitor, first forebearstamvader - - size_vμέγεθος - - free prog score - - numberOfTriplesnumber of triples in DBpedia - - bevolkingsdichtheid (/sqkm)घनत्व (/sqkm)population density (/sqkm)πυκνότητα_πληθυσμού (/sqkm)Bevölkerungsdichte (/sqkm) - - channelKanalκανάλιkanaal - - OCLCOnline Computer Library Center number - - first driver country - - infant mortalitySäuglingssterblichkeitmortalidade infantil - - parking informationParkplatzinformationenInformation on station's parking facilities. - - siler medalistSilbermedaillengewinnermedalha de pratazilveren medaille drager - - apprehendedgefasst - - free danse score - - radio stationradiozender - - Messier nameName for Messier objects - - lchf draft team - - block alloyκράμα μετάλλου - - general council - - home stadiumHeimstadion - - world team cupсветско клупско првенство - - lower age - - caused byπροκαλείται απόcasus - - sixth form studentsSchüler der Oberstufe - - sourceQuelleπηγή - - assets ($)Aktiva ($)περιουσιακά στοιχεία ($)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.Περιουσιακά στοιχεία και υποχρεώσεις αποτελούν μέρος του ισολογισμού μιας εταιρείας.Σε χρηματοοικονομική λογιστική,τα περιουσιακά στοιχεία είναι οι οικονομικοί πόροι. Οτιδήποτε ενσώματο ή άυλο, που είναι ικανό να ανήκει ή να ελέγχεται για να παράγει αξία και που κατέχεται για να έχει θετική οικονομική αξία θεωρείται ένα περιουσιακό στοιχείο. - - type of electrificationArt der ElektrifizierungElectrification system (e.g. Third rail, Overhead catenary). - - service numberThe service number held by the individual during military service. - - statisticstatistisch - - a municipality's present nameheutiger Name einer Gemeindehuidige gemeentenaam - - fourth commander - - project objectiveProjektzielA defined objective of the project. - - code of the departmentdepartementcode - - архитектонски стилbouwstijlarchitectural styleαρχιτεκτονικό στυλархитектурный стильstyle architectural - - number of seatsAnzahl der Sitzeaantal plaatsen - - protestant percentage - - dissolution dateontbindingsdatum - - nmberOfResourceWithTypenumber of resource in DBpedia with Class type (= Class entity) - - original start pointursprünglicher Ausgangspunktπρωταρχική_αρχή - - target space station station - - polesPolepôle - - founderGründerΙδρυτήςEin Gründer oder Gründungsmitglied einer Organisation, Religion oder eines Ortes. - - kolor włosówcor do cabelohair colordath na gruaigeHaarfarbe - - region link - - ending theme - - number of restaurantsAnzahl der Restaurantsαριθμός εστιατορίων - - emblem - - tieUnentschieden - - available smart cardbenutzbare Chipkarteδιαθέσιμη έξυπνη κάρταSmartcard for fare payment system for public transit systems that are or will be available at the station.Chipkarte für automatische Bezahlsysteme im Personenverkehr die an diesem Bahnhof benutzt werden kann.Έξυπνη κάρτα για το σύστημα πληρωμής των ναύλων για τα δημόσια συστήματα μεταφορών που είναι ή θα είναι διαθέσιμα στο σταθμό. - - vice principalзаменик директора - - feature - - colour hex codeFarben Hex CodeA colour represented by its hex code (e.g.: #FF0000 or #40E0D0) - - prefecturePräfektur - - gatunekジャンルgénerogenregenreείδοςgenreGenreThe genre of the thing (music group, film, etc.) - - source confluencelugar de nacimientoπηγές - - wheelbase (μ)Radstand (μ)међуосовинско растојање (μ) - - formation dateformatie datumΙδρύθηκε - - course (μ) - - year of creationέτος δημιουργίαςEntstehungsjahrjaar van creatie - - citesA document cited by this work. Like OntologyProperty:dct:references, but as a datatype property. - - named by language - - norwegian landskap - - notable studentσημαντικοί_φοιτητές - - mouth elevation (μ)ύψος_εκβολών (μ) - - presidentpresidentepresidentπρόεδροςprésidentPräsident - - story editor - - former choreographerehemaliger Choreograph - - related functionssoortgelijke functiesThis property is to accommodate the list field that contains a list of related personFunctions a person holds or has heldDeze property is voor de lijst van persoonfuncties die een persoon (bv. een politicus) bekleedt of heeft bekleed - - pcc secretary - - sports function - - numberOfClassesWithResourcenumber of class in DBpedia with atleast single resource (class entity) - - model start date - - particular sign - - name in Minnanyu Chinesenaam in Minnanyu Chinees - - MeSH name - - coaching record - - daylight saving time zoneSommerzeitzone - - damHirschkalb - - subsequent infrastructurespätere Infrastrukturvolgende infrastructuur - - number of gravesAnzahl der Gräberaantal graven - - photographerFotograf - - population percentage under 12 years - - commissioner date - - numberOfUniqeResourcesnumber of unique resource without redirecting - - programme formatThe programming format describes the overall content broadcast on a radio or television station. - - UN/LOCODEUN/LOCODEUN/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.UN/LOCODE је код Уједињених нација за трговинске и транспортне локације. Као што су луке, железнички и путни терминали, аеродроми, поште и гранични прелази. - - volume quote - - Different usage of an airportUnterschiedliche Nutzung eines Flughafensοι χρήσεις ενός αεροδρομίου - - product shape - - skuespilleremet in de hoofdrolstarringηθοποιοίacteur - - NRHP Reference Number - - century breaksCentury Breaksnumber of breaks with 100 points and moreAnzahl Breaks mit 100 Punkten oder mehr, wird nicht übersetzt - - subsidiarytreinadorfiliale - - free prog competition - - bishopricархиерейско наместничествоA bishopric (diocese or episcopal see) is a district under the supervision of a bishop. It is divided into parishes. Compare with eparchy - - influencedbeeinflussta influencéεπηρέασεThe subject influenced the object. inverseOf influencedBy. Subject and object can be Persons or Works (eg ProgrammingLanguage) - - picture formatBildformat - - showSendungspectacle - - playsslaghand - - area land (m2)oppervlakte land (m2)έκταση_στεριάς_περιοχής (m2)површина земљишта (m2) - - most winsdie meisten Siege - - active years end year manager - - main interest - - portfolioPortfolio - - GARDNameGARDNameGARDNameGARDName - - musiciansMusikerμουσικοί - - student - - number of speakersaantal sprekersAnzahl Sprecher - - lokalizacja所在地locatielocalizaçãolocationτοποθεσίαemplacementStandortThe location of the thing. - - explorerErforscherkaşif - - blazonWappenblasonемблемаCoat of arms (heraldic image) or emblem - - snow park number - - dist_ly - - number of starsAnzahl der Sterne - - setup time (s) - - match point - - vice leader partystellvertretender Parteivorsitzendepartido do vicelider - - parliamentParlament - - league championLiga-Meisterşampiyon - - throwing side - - last launchletzter Start - - Character size of wiki pageNeeds to be removed, left at the moment to not break DBpedia Live - - hip size (μ)Hüftumfang (μ)heupomvang (μ)ヒップ (μ) - - authority title of a romanian settlement - - collectionSammlungσυλλογή - - water percentage of a placeWasseranteil von einem Ortпроценат воде неког места - - last raceletztes Rennenτελευταίος αγώνας - - serving temperatureServing temperature for the food (e.g.: hot, cold, warm or room temperature). - - idioma originaloorspronkelijke taaloriginal languagelangue originaleOriginalspracheThe original language of the work. - - recommissioning date - - librettolibretto - - unicodeUnicodeunicodeτο διεθνές πρότυπο Unicode στοχεύει στην κωδικοποίηση όλων των συστημάτων γραφής που χρησιμοποιούνται στον πλανήτη. - - world openсветско отворено првенство - - amateur tie - - medicationmédicationMedikation - - makeup artisttruccatorethe person who is responsible for the actors makeup - - name in latinlateinische Namelatijnse naam - - pole driver team - - differential diagnosisdiagnostic différentielDifferentialdiagnose - - agglomerationагломерација - - visitors per yearгодишњи број посетилацаbezoekers per jaarBesucher pro Jahr - - branch toυποκατάστημα - - ofs code of a settlementIdentifier used by the Swiss Federal Institute for Statistics - - brain info numberαριθμός νοητικής πληροφόρησης - - organorgelName and/or description of the organNaam en/of beschrijving van het orgel - - blok układu okresowegobloc de la taula periòdicaelement blockблок периодической таблицыBlock des PeriodensystemsA block of the periodic table of elements is a set of adjacent groups.La taula periòdica dels elements es pot dividir en blocs d'elements segons l'orbital que estiguen ocupant els electrons més externsAls Block im Periodensystem werden chemische Elemente nach den energiereichsten Atomorbitalen ihrer Elektronenhülle zusammengefasst.совокупность химических элементов со сходным расположением валентных электронов в атоме. - - Alps sectionτμήμα των άλπεωνАлпска секцијаsezione alpinathe Alps section to which the mountain belongs, according to the SOIUSA classification - - relationBeziehungσχέσηrelatie - - Aantal onthoudingenabstentionsΑριθμός αποχών μετά από ψηφοφορίαstaonadhAnzahl der Enthaltungen nach der AbstimmungNumber of abstentions from the votean líon daoine a staon ó vótáil - - city since - - Laurence Olivier Award - - cargo gas (g) - - CMP EVA duration (s) - - cargo water (g) - - function end date - - foundation placeGründungsort - - supertribusbovenstam - - fecha de fineinddatumend datedate de finEnddatumThe end date of the event. - - marchMarschmarcha - - used in warim Krieg eingesetztкоришћено у ратуwars that were typical for the usage of a weapon - - wins at JLPGAпобеде на JLPGA - - Link to the Wikipage edit URLReserved for DBpedia. - - number of deathsTotenzahlAantal doden - - ICAO Location IdentifierΙΚΑΟ - - last publication dateletztes VeröffentlichungsdatumDate of the last publication. - - automobile modelAutomobilmodellμοντέλο αυτοκινήτου - - Dutch PPN codeDutch PPN code is a library cataloguing code for collection items (books, journals and the like).Dutch PPN code is in de Nederlandse bibliotheekwereld een cataloguscode (PICA) voor items in de collectie. - - distributing label - - third placedritter Platz - - number of participating nationsAnzahl der teilnehmenden Nationen - - car number - - perimeter (μ)omtrek (μ) - - champion in singlekampioen enkelspelchampion en simpleCampeón en simplewinner of a competition in the single session, to distinguish from the double session (as in tennis) - - victims (string)die Opfer (string)жртви (string)Type, description, or name(s) of victims of a ConcentrationCamp, Criminal, SerialKiller, or some other atrocity - - lowestχαμηλότερο - - aircraft userFlugzeugnutzerχρήστης αεροσκάφουςusuario del avión - - active years start year manager - - number of lanesAnzahl der Fahrstreifennombre de voies - - animatorανιμέιτορаниматор - - ideologieideologiaideologyιδεολογίαIdeologie - - epochmoment in time used as a referrence point for some time-vaying astronomical quantity - - The extension of this file - - virtual channelвиртуелни каналεικονικό κανάλι - - aircraft bomberавион бомбардерβομβαρδιστικό αεροσκάφος - - election majoritynumber of votes the office holder attained - - national ranking - - NNDB id - - chair label - - order date - - voice typeStimmlageтип гласаstemtypevoice type of a singer or an actor - - varietalsRebsorten - - former partnerehemaliger Partner - - locus supplementary data - - escalafon - - end pointEndpunktσημείο_τέλους - - motiveMotiv - - fieldFeld - - regionRegion - - fastest lapταχύτερος γύροςschnellste Runde - - enshrined deity祭神 - - related mean of transportation - - pole driver - - land percentage of a place - - lowest region - - sheading - - modelModellmodèle - - originally used forursprünglich verwendet füroorspronkelijk gebruikOriginal use of ArchitecturalStructure or ConcentrationCamp, if it is currently being used as anything other than its original purpose. - - Wikipage redirectReserved for DBpedia. - - Dutch PPN codeDutch 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.Dutch Winkel ID is een code toegekend door Lydia Winkel in haar boek over De Ondergrondse Pers 1940-1945. - - Has KML data associated with it (usually because of KML overlays) - - last flight start date - - aircraft interceptorαναχαίτιση αεροσκάφουςавион пресретач - - borderGrenzeσύνορα - - bed countaantal beddenAnzahl Bettenαριθμός κρεβατιών - - service module - - speed limit (kmh)Tempolimit (kmh) - - best wsop rank - - restore dateημερομηνία ανακαίνισης - - unesco - - batting sideSchlagarm - - vastest lakeλίμνη - - team nameTeamnameόνομα ομάδας - - red ski piste number - - classesKlasseτάξεις - - scrittoreписацschrijverwriterσεναριογράφοςschriftsteller - - big pool record - - mean radius (μ)durchschnittlicher Radius (μ)μέση ακτίνα (μ) - - country top level (tld)domínio de topo (tld)domaine de premier niveau (tld) - - size logo - - number of doctoral studentsAnzahl der Doktoranden - - best ranking finishbeste Platzierung im Ranglistenturnier - - stanstaatstateνομόςStaat - - химнаvolksliedhinoanthemύμνοςгимнHymneOfficial song (anthem) of a PopulatedPlace, SportsTeam, School or other - - nationNation - - ICAO codeICAO designation for airline companies - - doctoral advisorDoktorvaterδιδακτορικός_σύμβουλος - - third driver country - - building end dateΗμερομηνία λήξης κατασκευήςBuilding end date of an ArchitecturalStructure, man-made Lake, etc. For older structures this can be just a year or century, for newer structures an exact date is preferred - - number of postgraduate students - - impact factorImpact FactorThe impact factor, often abbreviated IF, is a measure reflecting the average number of citations to articles published in science and social science journals.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öffentlichten Artikel zitieren. Je höher der Impact Factor, desto angesehener ist eine Fachzeitschrift. - - licenseeLizenzinhaberIdentify which company or entity holds the licence (mostly string are used in Wikipedia, therefore range is xsd:sting). - - discontinued - - kaartmapamapχάρτηςcarteLandkarteA map of the place.Χάρτης μιας περιοχής.Eine Landkarte des Ortes. - - land - - major islandgroße Inselmaior ilha - - green long distance piste number - - tessitura - - champion in double femalechampion en double femmesCampeón en doble mujereswinner of a competition in the female double session (as in tennis) - - undrafted year - - region servedwerkgebied - - monument code (municipal)monumentcode gemeentelijke monumentenCode assigned to (Dutch) monuments at the municipal level, deemed to be of local valueCode toegewezen aan monumenten die op gemeenteniveau onder bescherming geplaatst zijn - - Link to the Wikipage revision URLReserved for DBpedia. - - previous eventVorveranstaltungvorige evenementevento anterior - - capital countryHauptstadt Land - - athleticsLeichtathletikαθλητισμός - - important stationimportant nœud d'échangeswichtiger VerkehrsknotenpunktDestinations, depots, junctions, major stops, hubs... - - racesRennenαγώνας - - administrative statusadministrativer Statusадминистративни статус - - roland garros mixed - - numberOfOutdegreenumber of all outdegrees in DBpedia (same ourdegrees are counting repeatedly). This number is equal to number of all links (every link is OutDegree link) - - おじさんoomاخو الامuncleθείοςOnkel - - affiliationιστολόγιοlidmaatschapприпадност - - college hof - - NORDNORDNORDNORD - - national years代表年 - - picture descriptionBildbeschreibung - - team point - - ascentAufstiegανάβασηAscent of a celestial body, aircraft, etc. For person who ascended a mountain, use firstAscent - - securitySicherheitασφάλειαSafety precautions that are used in the building.Sicherheitsmaßnahmen, die für das Gebäude getroffen wurden.Μέτρα ασφαλείας για την προστασία ενός κτιρίου. - - winter temperature (K)Wintertemperatur (K)зимска температура (K) - - opening theme - - dioceseDiözesebisdomA religious administrative body above the parish level - - amateur koброј аматерских нокаута - - vice chancellorпотканцеларVizekanzler - - wins at NWIDEпобеде на NWIDE - - principal engineerπρώτος_μηχανικός - - roleRolleρόλοςrôle - - player season - - treatmenttraitementBehandlung - - damsire - - docked time (s) - - mvp - - Link to the Wikipage history URLReserved for DBpedia. - - element aboveэлемент снизуhoger elementelement placed above current element in D.I.Mendeleev's tableЭлемент снизу под текущим элементом в таблице Д.И.Менделеева - - building start yearbouw start jaarέτος έναρξης κατασκευής - - handisport - - similarähnlichπαρόμοιοςpodobny - - size thumbnail - - population year - - owning organisationοργανισμός - - capital regionHauptstadtregion - - код станицеstationscodeagency station codeκωδικός πρακτορείουStationsabkürzungAgency station code (used on tickets/reservations, etc.).Κωδικός πρακτορείου (χρησιμοποιείται σε εισιτήρια/κρατήσεις,κτλ.). - - constituency districtWhalbezirkcirconscription électorale - - amateur fightаматерских борби - - participates/participated innimmt Teil anneemt deel aan - - Dewey Decimal ClassificationThe Dewey Decimal Classification is a proprietary system of library classification developed by Melvil Dewey in 1876. - - can baggage checkedGepäckkontrolle möglichWhether bags can be checked. - - discipleélèveA person who learns from another, especially one who then teaches others..Celui qui apprend d’un maître quelque science ou quelque art libéral. - - iconographic attributesStandard iconographic elements used when depicting a Saint: pontifical, episcopal, insignia, martyrdom instruments - - beatified datezalig verklaard datum - - area rankповршина ранг - - third teamdritte Mannschaftτρίτη ομάδα - - internationallyinternational - - Olivier Award - - Alps groupομάδα των άλπεωνgruppo alpinoалпска групаthe Alps group to which the mountain belongs, according to the SOIUSA classification - - eventVeranstaltungevento - - vehicles per dayброј возила по дануFahrzeuge pro Tag - - huurdertenantενοικιαστήςlocataireMieter - - regime - - Tony Award - - historical maphistorische Karteιστορικός χάρτης - - seaMeer - - current memberaktuelles Mitglied - - lunar orbit time (s)Mondumlaufzeit (s) - - pictures Commons categoryWikimedia CommonsCategory for pictures of this resource - - language regulator or academytaal instituut - - gross domestic product (GDP)BruttoinlandsproduktThe nominal gross domestic product of a country (not per capita).Das nominale Bruttoinlandsprodukt eines Landes (nicht pro Einwohner). - - blazon link - - project coordinatorProjektkoordinatorThe coordinating organisation of the project. - - radioRadioραδιόφωνοTo ραδιόφωνο είναι η συσκευή που λειτουργεί ως "ραδιοδέκτης - μετατροπέας" όπου λαμβάνοντας τις ραδιοφωνικές εκπομπές των ραδιοφωνικών σταθμών τις μετατρέπει σε ήχο. - - first publication dateeerste publicatiedatumDatum der Erstausgabedata pierwszego wydaniaDate of the first publication.Datum der ersten Veröffentlichung des Periodikums. - - length of a coastLänge einer Küste - - population urbanStadtbevölkerung - - production end date - - original end pointπρωταρχικό_σημείο_τέλους - - zodiac signsigno zodiacalзодияZodiac Sign. Applies to persons, planets, etcЗодиакален знак. Приложимо за хора, планети и пр - - first flight start date - - dead in fight date - - kind of coordinate - - military branchThe service branch (Army, Navy, etc.) a person is part of. - - significant buildingbedeutendes Gebäude - - olympic games bronzebrons op de Olympische Spelen - - using country - - LCCNThe 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. - - stylestilstileestilo - - number of intercommunality - - cantidad de medallas de oro ganadasaantal gewonnen gouden medaillesnumber of gold medals wonnomber de médailles d'or gagnéesAnzahl der Goldmedaillen - - running matecompañero de candidatura - - population percentage female - - CO2 emission (g/km) - - gravegrafGrab - - closedgeschlossengesloten - - ist - - colonial nameKolonialname - - wha draft yearWHA година драфта - - quebecer title - - Blazon caption - - route junctionWegabzweigungA junction or cross to another route.Eine Abzweigung oder Kreuzung zu einem anderen Verkehrsweg. - - provost - - Number Of MunicipalitiesAnzahl der GemeindenAantal gemeentennumero de municipios - - manager years end year - - start date and timedatum en tijd van beginThe start date and time of the event. - - projectProjekt - - total tracksthe total number of tracks contained in the album - - superbowl win - - conservation status system - - family memberFamilienmitgliedfamilielid - - number of participating male athletesAnzahl der teilnehmenden männlichen Athletennombre d'athlètes masculins participant - - vehicleвозилоόχημαVehikelvehicle that uses a specific automobile platformόχημα που χρησιμοποιεί μια συγκεκριμένη πλατφόρμα αυτοκινήτων - - philosophicalSchool - - backgroundHintergrundφόντο - - norwegian center - - formation yearformatie jaar - - demolition yearsloop jaarThe year the building was demolished. - - SeitenverhältnisAspect Ratioλόγος - - zdbzdbIdentifier for serial titles. More precise than issnzdb је серијски број који се користи за индетификацију. Прецизнији је од issn. - - percentage of alcoholAnteil von Alkoholalcoholpercentagepercentage of alcohol present in a beverage - - purchasing power parity rank - - worldWeltсвет - - red long distance piste number - - government mountain - - subregion - - national tournament gold - - unitary authorityунитарна власт - - imię i nazwisko przy urodzeniugeboortenaamnom de naixementbirth nameόνομα_γέννησηςGeburtsname - - Cesar Award - - 血液型bloedgroeptipo sanguíneoblood typeομάδα αίματοςBlutgruppe - - followsfolgtvient aprèssigue - - term periodχρονική περίοδος - - descriptionπεριγραφήBeschreibungomschrijvingShort description of a person - - EINECS number - - mouth place - - reporting markA 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. - - first pro matcherstes Profispiel - - naam leiderशासक का नामleader nameόνομα_αρχηγούprésident - - share date - - conflictKonflikt - - mill dissapeared code NLverdwenen molen code NL - - tag - - subdivision link - - music composerkomponistcomponistμουσική - - number of lawyersAnzahl RechtsanwälteNumber of lawyers or attorneys in the company. - - prospect team - - criteriaκριτήριοKriteriencritério - - home townHeimatort - - season numberThe season number to which the TelevisionEpisode belongs. - - is route stopest un arrêtindicate a place is a stop on a road.indique qu'un lieu est un arrêt sur une route. - - scaleMaßstab - - capture date - - width quote - - управни округprovincieadministrative districtδήμοςVerwaltungsbezirk - - national affiliationafiliacao nacional - - demographicsDemografie - - geologyGeologieγεωλογίαgéologie - - maximum temperature (K)Maximaltemperatur (K)μέγιστη θερμοκρασία (K) - - best lapbeste Runde - - promotedyükselenler - - namesNamen - - final flightletzter Flugdate of final flight - - other winsSonstige Siege - - lethal when given to micedodelijk voor muizen - - subprefecture - - is close toà côté delieu proche d'un autre.place close to another place - - usesкористи - - tattooτατουάζTätowierungtatuagem - - launches - - fansgroup - - population - - warsKriegeратовиπολέμους - - end date and timedatum en tijd van eindeThe end date and time of the event. - - successoropvolgerNachfolger後任者 - - previous demographicsfrühere Demografie - - start occupation - - Votes against the resolutionStimmen gegen die ResolutionAantal stemmen tegen - - number of seasonsAnzahl der Staffeln - - neighbour constellationsNachbarsternbilder - - right tributaryrechter Nebenflussδεξιοί_παραπόταμοι - - prefixPräfix - - country with first spaceflight - - region typeregio-type - - specialistSpezialist - - perpetratordaderTäterauteur - - molar massMolare MasseMolaire massa - - gold medal mixed - - delivery dateleverdatum - - purchasing power parity year - - championshipsgewonnene Title - - distance to Cardiff (μ)απόσταση από το Cardiff (μ) - - first broadcastErstausstrahlung - - referent bourgmestre - - numero de jugadoresnumber of playersαριθμός παιχτώνnombre de joueursAnzahl der Spieler - - leagueLigaπρωτάθλημα - - okato codeCode used to indentify populated places in Russia - - produced byhergestellt durch - - touristic site - - frazioni - - VIAF IdVIAF IdVIAF codeVirtual International Authority File ID (operated by Online Computer Library Center, OCLC). Property range set to Agent because of corporate authors - - monument code (national)monumentcode rijksmonumentenCode assigned to (Dutch) monuments at the national level, deemed to be of national valueCode toegewezen aan (Nederlandse) monumenten, vallend onder bescherming op rijksniveau - - crewCrew - - bandμπάντα - - blue long distance piste number - - total discsthe total number of discs contained in the album - - friendFreundφίλος - - head - - mission duration (s)Missionsdauer (s) - - european championshipEuropameisterschaft - - NDL idNational Diet Library of Japan identificator. http://id.ndl.go.jp/auth/ndlna/$1 - - model end year - - command structureKommandostruktur - - main characterpersonnage principal - - coach season - - masters wins - - grupa układu okresowegogrup de la taula periòdicaelement groupgrúpa an tábla pheiriadaighгруппа периодической системыGruppe des Periodensystemsgrupa jest pionową kolumną w układzie okresowym pierwiastków chemicznych.Un grup d'elements equival a una columna de la taula periòdica.In chemistry, a group (also known as a family) is a column of elements in the periodic table of the chemical elements.Séard atá i gceist le grúpa sa choimhthéacs seo ná colún ceartingearach i dtábla peiriadach na ndúl ceimiceach.последовательность атомов по возрастанию заряда ядра, обладающих однотипным электронным строением.Unter einer Gruppe des Periodensystems versteht man in der Chemie jede Spalte des Periodensystems. - - wing area (m2)Flügelfläche (m2)површина крила (m2) - - linked space - - statsborgerskabburgerschapcitizenshipυπηκοότηταStaatsangehörigkeit - - route start locationOrt des WeganfangsThe start location of the route.Der Startort des Verkehrswegs. - - olympic oath sworn by athlete - - depth quote - - final lost double - - wins at japan - - handHand - - EC numberEC番号 - - イメージサイズ (px2)tamaño de la imagen (px)afbeeldingsgrootte (px)image size (px)μέγεθος εικόνας (px1)taille de l'image (px)Bildgröße (px)the image size expressed in pixels - - jockeyJockey - - Link from a Wikipage to an external pageReserved for DBpedia. - - whole areagesamter Bereich - - next missionnächste Missionmision siguiente - - its calculation needsвычисление требует - - Fatality RateNumber of deaths from pandemic compared to the total number of people diagnosed. - - compilerFor compilation albums: the person or entity responsible for selecting the album's track listing. - - domaindomeinドメイン_(分類学) - - kind of rockArt von Gestein - - IATA codeIATA designation for airline companies - - number of classroomsαριθμός αιθουσών - - strona Aстранаcara Aa sideεξώφυλλοtaobh aSingle - - nameназвание - - active yearsaktive Jahreактивне годинеAlso called "floruit". Use this if the active years are in one field that can't be split. Else use activeYearsStartYear and activeYearsEndYear - - 配偶者echtgenootspouseσύζυγοςEhepartnerthe person they are married toΤο άτομο με το οποίο κάποιος είναι παντρεμένος - - track numberTitelnummerνούμερο τραγουδιού - - disbanded - - crew sizeBesatzungsstärke - - LCCThe Library of Congress Classification (LCC) is a system of library classification developed by the Library of Congress. - - battleveldslagSchlacht - - number of linesAnzahl der LinienNumber of lines in the transit system. - - glycemic indexIndicates a Food's effect on a person's blood glucose (blood sugar) level. Typically ranges between 50 and 100, where 100 represents the standard, an equivalent amount of pure glucose - - right ascension - - body discoveredLeiche entdecktανακάλυψη σώματος遺体発見 - - elevator countAufzüge - - agencyAgenturделатност - - fuel systemKraftstoffsystem - - lah hof - - north-west placelieu au nord-ouestindique un autre lieu situé au nord-ouest.indicates another place situated north-west. - - Digital Library code NLDBNL code NLidentifier in Dutch digital library (dbnl)ID in Digitale Bibliotheek voor de Nederlandse Letteren (dbnl) - - launch vehicle - - aircraft attackFlugzeugangriffнапад из ваздухаεπίθεση αεροσκάφους - - page length (characters) of wiki pageReserved for DBpedia. - - institutionInstitutioninstitutie - - クラブclubclubομάδαVerein - - service end year - - prime ministerminister-presidentPremierminister - - If the company is defunct or not. Use end_date if a date is given - - albedoalbedoалбедоreflection coefficientσυντελεστής ανάκλασης - - retirement datepensioendatum - - ISO 3166-1 codedefines codes for the names of countries, dependent territories, and special areas of geographical interest - - bust-waist-hip Sizeразмер бюст-талия-ханш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 - - previous entity - - featuresχαρακτηριστικόkenmerk - - fuel typeτύπος καυσίμουKraftstofftyp - - old nameπαλιό όνομαalter Name - - painterMalerζωγράφος - - BRIN codeBrin codeThe code used by the Dutch Ministry of Education to identify a school (as an organisation) - - number of graduate studentsZahl der Studenten - - military unitMilitäreinheitFor persons who are not notable as commanding officers, the unit (company, battalion, regiment, etc.) in which they served. - - commanderBefehlshabercommandant - - sound recordingSound recording somehow related to the subject - - number of lifts索道数Number of lifts. - - ユースクラブомладински клубjeugdclubyouth clubJugendclub - - flooding date - - musical artist - - per capita income ($)Pro-Kopf-Einkommen ($)renda per capita ($) - - годишња температура (K)jaartemperatuur (K)annual temperature (K)ετήσια θερμοκρασία (K)Jahrestemperatur (K) - - capacity factor - - miejsce zamieszkania居住地verblijfplaatsresidenceκατοικίαResidenzPlace of residence of a person. - - principal areaHauptbereich - - elevation quote - - maximum ELO rating - - measurementsMessungenmedidas - - price ($)Preis ($)The price of something, eg a journal. For "total money earned by an Athlete" use gross - - military functionmilitärische Funktion - - sister college - - first gameerstes Spiel - - building start dateΗμερομηνία έναρξης κατασκευήςBuilding start date of an ArchitecturalStructure, man-made Lake, etc. For older structures this can be just a year or century, for newer structures an exact date is preferred - - assemblyMontageσυνέλευση - - resultFolgeαποτέλεσμα - - length of a frontier - - deanDekanπρύτανηςdecaan - - original maximum boat beam (μ) - - tribusStämmestam - - phone prefix label of a settlement - - old provincealte Provinz - - DrugBankDrugBank - - atomic weightMais adamhach choibhneastathe ratio of the average mass of atoms of an element (from a single given sample or source) to 1⁄12 of the mass of an atom of carbon-12Maiseanna adamh, a chuirtear síos i dtéarmaí aonaid maise adamhaí u. - - pro bowl pick - - other language of a settlementanderen Sprache einer Siedlung - - Radius_ly - - number of visitorsBesucherzahlαριθμός επισκεπτώνbezoekersaantal - - displacement (g)Deplacement (g)A ship's displacement is its mass at any given time. - - designation of runway - - mouth countryχώρες_λεκάνης - - orbital period (s)Umlaufzeit (s)Περίοδος περιφοράς (s) - - FCFC - - wingspan (μ)Spannweite (μ)распон крила (μ) - - Alps major sectorглавни Алпски секторσημαντικότερος τομέας των άλπεωνgrande settore alpinothe Alps major sector to which the mountain belongs, according to the SOIUSA classification - - law country - - number of officialsZahl der Beamten - - call signindicativo de chamadaA 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.Indicativo de chamada (também chamado de call-sign, call letters ou simplesmente call) é uma designação única de uma estação de transmissão de rádio. Também é conhecido, de forma errônea, como prefixo. - - colleagueColleague 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). - - service start year - - international phone prefix label - - approved rating of the Entertainment Software Self-Regulation Body in Germanyzugelassene Bewertung der Unterhaltungssoftware Selbstkontrolle in Deutschlandодобрени рејтинг од стране регулаторног тела за забавни софтвер у Немачкој - - last flight end date - - left child - - manager clubClubmanager監督チーム - - last family memberletztes Familienmitgliedlaatste drager familienaam - - aircraft electronicηλεκτρονικό αεροσκάφος - - number of neighbourhood - - us open singleUS Open појединачно - - overall recordGesamtbilanz - - ptakbirdπτηνάéanVogelΤα πτηνά είναι ζώα ομοιόθερμα σπονδυλωτά, που στη συντριπτική πλειονότητα τους μπορούν να πετούν με τις πτέρυγες ή φτερούγες τους. - - rebuilder - - resting placeRuhestätte埋葬地 - - geologic period - - largest citygrößte Stadt - - secondLeadervice-voorzitter - - twin cityPartnerstadttweeling stad - - document numberDokumentnummerdocumentnummerIdentification a document within a particular registry - - filling station - - hairs - - flowerBlumeλουλούδι - - production start dateProduktionsbeginn - - rankPlatzierungRank of something among other things of the same kind, eg Constellations by Area; MusicalAlbums by popularity, etc - - number of countiesAnzahl der Landkreisenúmero de condados - - band memberBandmitgliedbandlidμέλος μπάνταςA member of the band.Ένα μέλος της μπάντας. - - common namegewöhnlicher NameThe 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. - - merger date - - beïnvloed doorinfluenced byεπιρροέςinfluencé parbeeinflusst durchThe subject was influenced by the object. inverseOf influenced. Subject and object can be Persons or Works (eg ProgrammingLanguage) - - wins in Europeпобеде у ЕвропиSiege in Europa - - pga wins - - fare zoneTarifzoneThe fare zone in which station is located.Die Tarifzone zu der die Station gehört. - - municipality codeGemeindecodegemeente-code - - arteryArterieαρτηρίαader - - solubilityLöslichkeitoplosbaarheid - - suppredded dateoppressie datumдата на забранатаDate when the Church forbade the veneration of this saint. -(I hope that's what it means, I don't know why the original author didn't document it) - - railway rolling stockOperierende Schienenfahrzeuge - - code istatIndexing code used for Italian municipalities - - extinction year!!! Do NOT use this property for non Species related dates!!! - Year this species went extinct. - - ceilingdienstplafondMaximum distance to the earth surface, to be expressed in kilometers - - Staatsformgovernment typestaatsvormtipo de governobroadly, the type of structure of its government - - date of abandonment - - scoreScore or points of something (eg a SportCompetitionResult) - - amateur year - - most steadyen istikrarlı - - launch dateStarttermin - - country with first astronaut - - feast day, holidayFesttagfeestdagA day of celebration associated with the entity. Applies to Saint, School etc - - function start date - - number of soresAnzahl an Geschäften - - previous editorπρώην συντάκτης - - hra state - - government elevation (μ) - - visitors totalGesamtbesucherукупан број посетилацаεπιβατική κίνηση - - country originLand Herkunft - - current seasonaktuelle SpielzeitΤρέχον Περίοδος - - name in Mindongyu Chinesenaam in Mindongyu Chinees - - military serviceservice militaire - - other channel - - wsop itmWSOP ITM - - beltway city - - management mountain - - vice principal label - - number of islandsAnzahl der Inselnαριθμός νησιώνaantal eilanden - - reference for geographic dataReferenz für geographische Datengeometrie - - has abstractabstractέχει περίληψηапстрактReserved for DBpedia.Προορίζεται για την DBpedia. - - solvent with bad solubilityLösungsmittel mit schlechter Löslichkeitslecht oplosbaar in - - floor area (m2)vloeroppervlak (m2)περιοχή ορόφων (m2) - - service start date - - apskritisлитвански округ - - nobel laureatesNobelpreisträger - - naam bevolkingsgroepdemonymτοπονύμιο_πληθυσμούdémonymeVolksbezeichnungxentilicio - - commandantKommandant - - ncbhof - - short prog score - - kind of criminal - - map caption - - first launcherster Start - - average annual gross power generation (J) - - maximum inclination - - lyricsστίχοιparolier歌詞Creator of the text of a MusicalWork, eg Musical, Opera or Song - - maximum discharge (m³/s) - - allegianceυποταγήверност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. - - term of officeAmtszeit - - ISO region codeISO-LändercodeISO regiocode - - von Klitzing electromagnetic constant (RK)von Klitzing elektromagnetisch Konstant (RK) - - county seatprovincie zetel - - number of vineyardsAnzahl von Weinbergen - - rotation period (s) - - active years end dateενεργή ημερομηνία λήξης χρόνουactieve jaren einddatumдатум завршетка активних година - - career prize money ($)prijzengeld loopbaan ($) - - number of items in collectionAnzahl der Elemente in der Sammlungaantal titels/itemsIndication as to the size of the collection of this libraryAanduiding van omvang van de collectie van deze bibliotheek - - sign name of a hungarian settlement - - musical keyTonartμουσικό κλειδίtoonsoort - - 受賞onderscheidingawardδιακρίσειςrécompenseAuszeichnungAward won by a Person, Musical or other Work, RaceHorse, Building, etc - - ethnic groupethnieetnia - - production companyProduktionsfirmaproductiebedrijfthe company that produced the work e.g. Film, MusicalWork, Software - - movieFilm - - continental tournament silver - - airdateημερομηνία αέραдатум емитовања - - Wikidata IRI slitis used to denote splitting of a Wikidata IRI to one or more IRIs - - current team memberA current member of an athletic team. - - wins at LETпобеде на LET - - Crewπλήρωμαcrew - - rectorRektor - - active years start yearενεργός χρόνος έτος λειτουργίαςactieve jaren start jaarпочетна година активних година - - protein (g)Amount of proteins per servingSize of a Food - - (political) officeυπηρεσία(politisches) Amt - - thumbnail localization - - number of suites - - drains from - - temperature (K)Temperatur (K)θερμοκρασία (K)température (K) - - informationInformationen - - number of newly introduced sportsnumbre de sports nouvellement ajoutésnumero de deportes nuevamente añadidos - - government country - - original titleOriginaltiteloorspronkelijke titelThe original title of the work, most of the time in the original language as well - - mute character in playName of a mute character in play. - - FilmPolski.pl id - - campus type - - developerontwikkelaarEntwicklerdéveloppeurDeveloper of a Work (Artwork, Book, Software) or Building (Hotel, Skyscraper) - - blue ski piste number - - gene location startlocus startpunt遺伝子座のスタート座標the start of the gene coordinates - - capital coordinatesHauptstadt Koordinaten - - circumcised - - CAS supplemental - - ministerMinisterministre - - canonized dateheiligverklaring datum - - licence letter of a german settlement - - wins at pro tournamentsпобеде на професионалним турнирима - - canonized byheilig verklaard door - - providesbietet - - highest state - - numberOfResourcenumber of all resource in DBpedia (including disambiguation pages and rediretcs) - - latest release version - - lowest positionposition la plus basse - - aircraft trainer - - riverFlussποτάμιrivière - - fuel type - - consecrationWeihewijding - - ESPN id - - notable wine - - retiredσυνταξιούχος - - political majoritypolitische Mehrheit - - administratorVerwalterуправникδιαχειριστής - - location citylocatie stadvilleCity the thing is located. - - Number Of Capital Deputiesnumero de deputados distritais - - area of catchment quote - - south-east placelieu au sud-estindique un autre lieu situé au sud-est.indicates another place situated south-east. - - premiere yearYear the play was first performed. - - employerArbeitgeber雇用者θέσεις_εργασίας - - main buildingHauptgebäude本殿 - - has inside placea un lieu intérieurindique un autre lieu situé à l'intérieur.indicates another place situated inside. - - bowl recordρεκόρ μπόουλινγκ - - conviction penaltyStrafe - - album duration (s)Album Länge (s)трајање албума (s) - - višina (μ)身長 (μ)højde (μ)hoogte (μ)altura (μ)height (μ)ύψος (μ)hauteur (μ)Höhe (μ) - - 診療科specializzazione medicamedisch specialismemedical specialty진료과ιατρική ειδικότηταspécialité médicalemedizinisches Fachgebiet - - flag border - - president general council - - ingredientZutatMain ingredient used to prepare a specific Food or Beverage. For strings use ingredientName, for objects use ingredient. - - aircraft helicopter cargoφορτίο ελικοφόρου αεροσκάφουςтеретни хеликоптер - - spacecraftRaumfahrzeugδιαστημόπλοιοvéhicule spatial - - absorbed byopgegaan in - - refseq mRNArefseq mRNA - - distanza alla capitale (μ)distância até a capital (μ)distance to capital (μ)απόσταση από την πρωτεύουσα (μ)entfernung zur hauptstadt (μ) - - original maximum boat length (μ) - - previous missionfrührere Mission - - management position - - governing bodybestuursorgaanVerwaltungsgremiumBody that owns/operates the Place. - - Polish Film AwardPolnischer FilmpreisPolska Nagroda Filmowa (Orzeł) - - MeSH number - - entourageGefolge - - key personSchlüsselperson - - declination - - ithf date - - Lieutenancy area - - locomotivelocomotief - - forcesforcesStreitkräfte - - voiceStimmeгласVoice artist used in a TelevisionShow, Movie, or to sound the voice of a FictionalCharacter - - government region - - previous population - - authority mandate - - Number of votes in favour of the resolutionAnzahl der Stimmen für die ResolutionAantal stemmen voor - - connotationKonnotationA meaning of a word or phrase that is suggested or implied, as opposed to a denotation, or literal meaning. - - rulingEntscheidungrelevante regelgevingRuling referred to in this legal case - - contract award - - budget yearHaushaltsjahr - - red coordinate in the RGB space - - min - - legal arrondissement - - hall of fameRuhmeshalle - - language codeSprachcodekod językowy - - eurobabe index ideurobabeindex idcódigo no eurobabeindex - - lowest point - - lchf draft year - - mill code BEmolen code BEmills code from the Belgian database on millsunieke code voor molens in database www.molenechos.org - - amateur no contest - - height attack - - number of run - - endowment ($) - - current leagueaktuelle Liga - - code on List of HonourCode EhrenlisteCode Erelijst van Gevallenen - - total cargo (g) - - manager years start year - - tv.com id - - green ski piste number - - youth wingомладинско крилоala jovem - - statistic valueStatistikwert - - actual Campeón del mundohuidig wereldkampioencurrent world championchampion du monde actuelaktueller Weltmeister - - cuenca hidrográfica (m2)waterscheiding (m2)watershed (m2)λεκάνη_απορροής (m2)Wasserscheide (m2) - - career stationKarrierestationcarrièrestapthis 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. - - government position - - credit - - kompozytorcomponistcomposerσυνθέτηςcompositeurKomponist - - opening filmEröffnungsfilm - - trainingAusbildungπροπόνηση - - date of christeningdoopdatum - - innervates - - cantidad de medallas de plata ganadasaantal gewonnen zilveren medaillesnumber of silver medals wonnomber de médailles d'argent gagnéesAnzahl der Silbermedaillen - - draftEntwurf - - closing seasonkapanış sezonu - - builderBaumeisterbouwerοικοδόμος - - top speed (kmh)Höchstgeschwindigkeit (kmh) - - olympic gamesolympische SpieleOlympische Spelen - - assistant principalκύριος βοηθός - - previous workfrüheren Arbeitenvorig werkπροηγούμενη δημιουργία - - añoannoгодинаjaaryearέτοςannéeJahr - - start year of insertion - - procedureVerfahrenprocedureThe name designating a formal collection of steps to be taken to complete the caseDe naam die verwijst naar de formele definitie van een verzameling stappen die in de juiste volgorde leiden tot de afronding van de zaak - - portrayer - - human development index (HDI) categorycategoria do indice de desenvolvimento humano (IDH) - - regencyRegentschaftkabupaten - - so named sinceso genannt seitzo genoemd sinds - - main islandsHauptinseln - - periapsis (μ)Periapsisdistanz (μ) - - cladecladon - - european union entrance datedata de entrada na uniao europeia - - amateur teamаматерски тим - - industryIndustrieindustrie - - distance to Douglas (μ)απόσταση από το Douglas (μ) - - Penalties Team A - - diplomaDiplom - - final lost single - - floraFlora - - signatureUnterschrift - - judgeRichterrechterleading judge - - ownsin bezit vanUsed as if meaning: has property rights over - - name in the Wade-Giles transscription of Chinesenaam in het Wade-Giles transscriptie van het Chinees - - killed bygetötet von - - pole driver country - - coronation datekroningsdatum - - COSPAR idDescribed at http://en.wikipedia.org/wiki/International_Designator - - visitors per dayброј посетилаца по дануBesucher pro Tag - - alternative titlealternativer Titelalternatieve titelалтернативни насловThe alternative title attributed to a work - - legend thumbnail localization - - mandate of the president of the general council - - gross ($)indtjening ($)ακαθάριστα ($) - - broadcast translatorαναμετάδοση μεταφραστή - - main branchvoornaamste tak - - Date Last UpdatedDatum der letzten Aktualisierungdatum laatste bewerking - - the previous municipality from which this one has been created or enlargedsamengevoegde gemeente - - distance to nearest city (μ)vzdálenost k nejbližšímu městu (μ) - - world tournament silverброј сребрних медаља са светских турнира - - associateσυνεργάτης - - DfEDepartment for Education (UK) number of a school in England or Wales - - surface of runway - - inscriptionText of an inscription on the object - - 生年geboortejaarbirth yearέτος γέννησηςGeburtsjahr - - maximum apparent magnitudemaximale scheinbare Helligkeitmaximale schijnbare magnitude - - resting dateBestattungsdatum埋葬年月日 - - number of SoccerPlayers born in Placepočet fotbalistů narozen na daném místě - - junior years end year - - council of a liechtenstein settlement - - debut teamπρώτη ομάδα - - numberOfClassesnumber of defined Classes - - head label - - number of canton - - continent rankRang KontinentPlace of the building in the list of the highest buildings in the continentDer Platz des Gebäudes in der Liste der höchsten Gebäude des Kontinents - - musical band - - politic government departmentministerio do politico - - HGNCidHGNCid - - mouth mountain - - linked toverknüpft - - highest regionhoogste regio - - length quote - - hopman cup - - tuition ($)Schulgeld ($) - - number of pagesnombre de pagesaantal pagina'sAnzahl der SeitenThe books number of pages. - - has outside placea un lieu extérieurindique un autre lieu situé autour à l'extérieur.indicates another place situated around outside. - - south placelieu au sudindique un autre lieu situé au sud.indicates another place situated south. - - Поштански кодpostcodezip codeταχυδρομικός κώδικαςPostleitzahlcódigo postal - - individualised PND numberPersonennamendateiPND (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. - - asia championship - - opening seasonaçılış sezonu - - notable featuresnotlar - - military governmentMilitärregierung - - iso code of a province - - discharge (m³/s)εκροή (m³/s)uitstoot (m³/s) - - spoken ingesprochen ingesproken in - - suborbital flights - - stat name - - junior years start year - - variant or variationVariante oder Variationваријантаvariantvariant or variation of something, for example the variant of a car - - networth ($) - - wiki page uses templateWikiseite verwendet TemplateDO NOT USE THIS PROPERTY! For internal use only. - - fossilfossiel - - state of origin - - number of orbitsAnzahl der Bahnen - - 没年月日sterfdatumdeath dateημερομηνία_θανάτουdate de décèsSterbedatum - - extraction datetimeDate a page was extracted '''''' - - aircraft recon - - province link - - bar pass rateποσοστό επιτυχίας - - track width (μ)spoorbreedte (μ)Width of the track, e.g., the track width differing in Russia from (Western and Middle) European track width - - ko - - template nameTemplatenameDO NOT USE THIS PROPERTY! For internal use only. - - associate editorσυνεργαζόμενος συντάκτης - - managing editor - - name in Hangul-written Koreannaam in Hangul-geschreven Koreaans - - number of undergraduate studentsZahl der Studenten - - Severe CasesNumber of severe cases in a pandemic - - strengthStärkeδύναμη - - otherSportsExperienceスポーツ歴 - - circuit name - - rank of an agreement - - official school colouroffizielle SchulfarbeThe official colour of the EducationalInstitution represented by the colour name (e.g.: red or green). - - RKDartists idRijksbureau voor Kunsthistorische Documentatie (RKD) artists database id. -http://rkd.nl/explore/artists/$1 - - シスターzusأختsisterαδελφήSchwester - - current partneraktueller Partner - - official nameoffizieller Name - - krajpaíslandpaísestatcountryχώραtírpaysLandThe country where the thing is located. - - west placelieu à l'ouestindique un autre lieu situé à l'ouest.indicates another place situated west. - - solvent with mediocre solubilityLösungsmittel mit mittelmäßiger Löslichkeitmatig oplosbaar in - - usopen winsпобеде на US Open-у - - subprefecture - - fastest driver countryschnellster Fahrer Land - - executive headteacher - - KFZ-Kennzeichenvehicle codeкод возилаvoertuig codeRegion related vehicle code on the vehicle plates. - - age rangeAltersgruppeεύρος ηλικίαςопсег годинаAge range of students admitted in a School, MilitaryUnit, etc - - relation time - - dubberthe person who dubs another person e.g. an actor or a fictional character in movies - - nfl team - - faunaFaunafauna - - FC runs - - person functionAmtpersoon functie - - fuel capacity (μ³)χωρητικότητα καυσίμου (μ³)Kraftstoffkapazität (μ³) - - 死没地plaats van overlijdendeath placeτόπος_θανάτουlieu de décèsSterbeortThe place where the person died. - - laying down - - Number Of State Deputiesnumero de deputados estaduais - - name in Simplified Chinesenaam in het Vereenvoudigd Chinees - - Location Identifier - - nearest citynächstgelegene Stadtdichtstbijzijnde stadπόλη - - summer temperature (K) - - mouth positionfoce (di un fiume)lugar de desembocadura - - automobile platformAutomobilplattformπλατφόρμα αυτοκινήτων - - brandstoffuelκαύσιμαcarburantTreibstoff - - leiderliderleaderηγέτηςFührer - - active years start date manager - - number of rocket stagesAnzahl von Raketenstufennumber of stages, not including boosters - - testaverage - - aircraft helicopter transportμεταφορές που πραγματοποιούνται με ελικοφόρο αεροσκάφοςтранспортни хеликоптер - - sovereign countrysouveräner Staat - - damage amountschadebedrag - - descubridordiscovererΑνακαλύφθηκε απόdécouvreurEntdecker - - magazineMagazinπεριοδικό - - bad guyBösewicht - - first flighterster Flug - - awardNameAward a person has received (literal). Compare to award (ObjectProperty) - - criminal chargeStrafantrag - - teaching staff - - carbohydrate (g)Amount of carbohydrates per servingSize of a Food - - supplemental draft round - - beatified byzalig verklaard door - - date of acquirementAnschaffungszeitpunktημερομηνία απόκτησης - - monument code for the Monuments Inventory Projectmonumentcode voor het Monumenten Inventarisatie ProjectThe Dutch MIP project was meant to take stock of all kinds of monumentsCode voor alle soorten monumenten gebezigd door het MI-project - - gini coefficientGini-Koeffizientcoeficiente de Giniis a measure of the inequality of a distribution. It is commonly used as a measure of inequality of income or wealth. - - percentage of a place's male population that is literate, degree of analphabetismpercentage van de mannelijke bevolking dat geletterd is - - spacewalk beginBeginn Weltraumspaziergang - - first drivererster Fahrer - - commandBefehl - - cinematographyKinematografiecineamatagrafaíochtcinematografie - - local authority - - geolocDepartment - - oil systemÖlsystem - - partnerpartnerσυνέταιροςPartner - - National Topographic System map number - - freeLabel - - percentage of area waterποσοστό_υδάτωνpercentage wateroppervlak - - Golden Raspberry Award - - source confluence state - - total populationGesamtbevölkerung - - latest preview version - - Text used to link from a Wikipage to another WikipageReserved for DBpedia. - - National Olympic CommitteeNationales Olympisches Komiteenationaal Olympisch commité - - manufactoryFabrik - - number of licensednombre de licenciésnombre de personnes ayant une license pour pratiquer cette activité - - SAT scoremost recent average SAT scores - - Wiki page out degreeReserved for DBpedia. - - fips code - - seasonSaisonσαιζόν - - magenta coordinate in the CMYK space - - film runtime (s)Filmlaufzeit (s) - - head alloy - - north-east placelieu au nord-estindique un autre lieu situé au nord-est.indicates another place situated north-east. - - Computing Media - - capital district - - following eventévènement suivant - - congressional district - - spouse nameName des Ehepartnersόνομα συζύγου - - detractorKritiker - - name in JapaneseName auf japanischnaam in het Japans - - seiyu - - distance traveled (μ)Zurückgelegte Entfernung (μ)afgelegde afstand (μ) - - RID IdAn 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. - - wins at challenges - - total travellers - - foot - - Active CasesNumber of active cases in a pandemic - - podiumsPodestplätze - - seating capacitySitzplatzkapazitätzitplaatsen - - distance to London (μ)απόσταση από το Λονδίνο (μ) - - creator (agent)UrheberδημιουργόςmakerCreator/author of a work. For literal (string) use dc:creator; for object (URL) use creator - - старостleeftijdageηλικίαAlter - - number of pixels (millions)nombre de pixels (millions)Anzahl der Pixel (Millionen) - - galicianSpeakersPercentageporcentaxe de galegofalantesPercentage of Galician speakers.porcentaxe de galegofalantes. - - amgIdAMG ID - - number of vehiclesAnzahl der FahrzeugeNumber of vehicles used in the transit system. - - data założenia創立日founding dateημερομηνία ίδρυσηςdáta bunaitheGründungsdatum - - effectiveRadiatedPower (W) - - owning companyBesitzerfirma - - logroдостигнућеprestatieachievementκατόρθωμαhaut fait, accomplissementLeistung - - player statusSpielerstatus - - group commemoratedgroep mensen herdachtDesignates the category of people commemorated by a monumentAanduiding van de categorie mensen die door dit monument worden herdacht - - buildingGebäudegebouwκτίριο - - serviceDienst - - phylumfiloEmbranchement phylogénétique門_(分類学)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 systématique, l'embranchement (ou phylum) est le deuxième niveau de classification classique des espèces vivantes. - - brandμάρκα - - comic - - political mandatepolitisches Mandat - - latest release datedate de dernière version - - crewsBesatzungen - - Registered at Stock Exchangebeurs waaraan genoteerd - - crestWappenherb - - total mass (g)Gesamtmasse (g) - - government place - - notify dateBenachrichtigungsdatum - - keukencuisineκουζίναcuisineKücheNational cuisine of a Food or Restaurant - - demographics as ofindicadores demograficos em - - coached team - - editor titleτίτλος συντάκτη - - 界_(分類学)regnorijkkingdomβασίλειοrègne (biologie)reichIn 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.Le règne (du latin « regnum ») est, dans les taxinomies classiques, le plus haut niveau de classification des êtres vivants, en raison de leurs caractères communs. - - committeeAusschuss - - unit cost ($)Stückkosten ($) - - ATC suffixATC κατάληξηsuffix ATC - - leaderFunction - - management elevation (μ) - - biust (μ)バスト (μ)размер бюст (μ)bust size (μ)Μέγεθος προτομής (μ) - - workArbeit - - league manager - - musicTypesoort muziekwerkType is too general. We should be able to distinguish types of music from types of architectureType is te algemeen. We moeten soorten muziek van soorten gebouwen kunnen onderscheiden - - Link from a Wikipage to another WikipageReserved for DBpedia. - - carcinogenKarzinogenkankerverwekkend - - average class sizedurchschnittliche Klassengrößeμέσο μέγεθος τάξης - - height against - - affairафера - - passengers per yearpassagiers per jaarPassagiere pro JahrNumber of passengers per year. - - set designerBühnenbildnerscenografothe person who is responsible for the film set design - - road end directionHimmelsrichtung des WegendesEnd of the route. The opposite of OntologyProperty:routeStartDirection.Himmelsrichtung des Endes des Verkehrsweges. Der Gegensatz zur OntologyProperty:routeStartDirection. - - durchschnittliche Tiefe (μ)average depth (μ)μέσο βάθος (μ)profondeur moyenne (μ)Source of the value can be declare by . - - lounge - - Alps SOIUSA codeκώδικας SOIUSA των άλπεωνcodice SOIUSAалпски SOIUSA кодthe Alps SOIUSA code corresponding to the mountain, according to the SOIUSA classification - - yellow coordinate in the CMYK space - - volumesтомовиdelen - - monument code (provinciall)monumentcode provinciale monumentenCode assigned to (Dutch) monuments at the provincial level, mostly for monuments in the countryside, or for waterworksCode voor monumentenbescherming, in Nederland op provinciaal niveau. Meestal gebruikt voor agrarische monumenten of waterwerken - - branch ofδιακλάδωση_του - - synonymSynonymσυνώνυμοシノニム - - perifocusperifocus - - piercingPiercingpiercing - - contestWettbewerb - - handednesshabilidade com a maoan attribute of humans defined by their unequal distribution of fine motor skill between the left and right hands. - - roland garros double - - number of all resource / entities of a classcelkový počet zdrojů / entit v dané tříde - - dry cargo (g)Trockenfracht (g)droge last (g) - - state of origin year - - divisionverdeling - - visitor percentage changeпромена процента посетилацаprozentuale Veränderung der BesucherzahlPercentage increase or decrease. - - mythologyMythologiemitologiaμυθολογία - - past member - - IFTA Award - - associated musical artistσυνεργάτης-μουσικός καλλιτέχνης - - armyArmeelegerστρατόςΈνας στρατός αποτελεί τις επίγειες ένοπλες δυνάμεις ενός έθνους - - BBRBBRBBRBBRFor NBA players, the text between the last slash and .html in the URL of the player's basketball-reference.com profile (linked at http://www.basketball-reference.com/players/). - - relegated teamsAbsteigerdüşenler - - khl draft year - - Gaudí AwardPremis GaudíAwards of the Catalan Academy of Cinema - - meeting buildingTagungsgebäude - - last appearance - - number of lapsAnzahl der Runden - - patronPatronpatrono - - race length (μ)Rennlänge (μ) - - continentKontinentήπειροςcontinentelinks a country to the continent it belongsμεγάλες περιοχές ξηράς που περιστοιχίζονται από ωκεανούς - - geolocdual - - victory percentage as managerпроценат победа на месту менаџера - - 動物животињаbeestanimalζώοanimalTier - - National tournament - - date budget - - area of a land (m2) - - highest altitude最高地点標高 - - start yearStartjahr - - race horseRennpferd - - highest positionHöchststand - - flagSize - - current rankaktueller Ranglistenplatz - - armώμος - - type of municipalityGemeindetyptype gemeente - - numberOfPropertiesnumber of defined properties in DBpedia ontology - - this seasonbu sezon - - austrian land tag - - penis length - - world tournament goldброј златних медаља са светских турнира - - neighbour regionNachbarregion - - individualised GND numberGemeinsame NormdateiGND (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. - - sexφύλοGeschlechtsexe - - legal formrechtsvormRechtsformThere 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.Die Rechtsform definiert die juristischen Rahmenbedingungen einer Organisation bzw. Unternehmens. - - ISO 639-1 codeISO 639-1 codekod ISO 639-1 - - per capital income rank - - scientific namewissenschaftlicher Namewetenschappelijke naam - - secretarySekretärinsecretarissecretario - - satelliteSatellitδορυφόρος - - lineligneligne d'un arrêt sur une route.line of a stop on a route. - - legislatureGesetzgeber - - number of SoccerPlayers in entity of SoccerClubpočet fotbalových hráčů ve fotbalovém týmu - - route previous stoparrêt précédentprevious stop on a route.arrêt précédent sur une route. - - quote - - type of grain (wheat etc.)Getreideart (Weizen usw.)graansoort - - purposeZweckdoelobjectif - - lihf hof - - lieutenantLeutnantlieutenant - - mayor article - - lowest state - - датум приступаtoegangsdatumaccess dateημερομηνία πρόσβασηςZugriffsdatum - - head teacherSchulleiter - - pluviometryRegenmessung - - super-orderbovenorde - - end year of sales - - frequency of publicationfrequentie van publicatieErscheinungsweiseThe frequency of periodical publication (eg. Weekly, Bimonthly).Die Häufigkeit der Erscheinungen des Periodikums (z.B. wöchentlich, monatlich). - - toll ($)Maut ($) - - tower heightTurmhöhehoogte van de toren - - current teamaktuelle Mannschaft所属チーム - - source position - - thumbnailReserved for DBpedia. - - meeting city - - production start yearproductie beginjaar - - debutWorkFirst work of a person (may be notableWork or not) - - pronunciationAussprache - - first placeerster Platz - - unknown outcomesнепознати исходиnumber of launches with unknown outcomes (or in progress)број лансирања са непознатим исходом или број лансирања који су у току - - expeditionExpedition - - number of islandsAnzahl der Inseln - - aircraft helicopter utility - - number of tracksAnzahl der GleiseNumber of tracks of a railway or railway station. - - postcodecódigo postalpostal codeταχυδρομικός κώδικαςcode postalPostleitzahlA 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. - - reservationsReservierungenAre reservations required for the establishment or event? - - Partition coefficientVerteilungskoeffizientVerdelingscoëfficiënt - - chemical formula - - BPN IdDutch project with material for 40,000 digitized biographies, including former colonies of the Netherlands. - - coat of arms imagebild wappenimage of the coat of arms (heraldic symbol) - - family headFamilienoberhaupthoofd van de familie - - codeκωδικόςCodecodeSuperproperty for any designation (string, integer as string) that is meant to identify an entity within the context of a system - - selection point - - slogansloganSloganДевиз - - museumμουσείοmuseum博物館 - - Emmy AwardEmmy Award - - inflowZuflussεισροή - - second teamzweites Teamδεύτερη ομάδα - - maiden flightJungfernflugdate of maiden flight - - CODENCODEN 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. - - hrabstwoprovinciecountyΕπαρχίαcontaeBezirkThe county where the thing is located. - - start pointStartpunktσημείο_αρχής - - number of entities of Person class who graduated from the universitypočet entit třídy Osoba s vystudovanou konkrétní univerzitou - - end yearStartjahr - - wimbledon singleвимблдон појединачно - - first olympic eventpremière épreuve olympique - - lchf draft year - - depths - - INSEE codeINSEE-codenumerical indexing code used by the French National Institute for Statistics and Economic Studies (INSEE) to identify various entities - - ATC codeATC codeκώδικας ATC - - champion in single femalechampion en simple femmesCampeón en simple mujereswinner of a competition in the single female session, to distinguish from the double session (as in tennis) - - last air dateSendeschlussThe date on which the broadcaster made its last broadcast. - - państwoΧώραpaís de localizaçãoCountry the thing is located. - - templeTempel - - diseasesDbdiseasesDbdiseasesDb - - number of all MuscialArtist playing the stylepočet hudebních umělců hrající konkrétní styl - - creator of dishThe person that creates (invents) the food (eg. Caesar Cardini is the creator of the Caesar salad). - - significant projectbedeutendes Projektistotne osiągnięcieA siginificant artifact constructed by the person. - - licentielicenseάδειαlicenceLizenz - - aircraft helicopter observationπαρατήρηση ελικοφόρου αεροσκάφουςосматрање хеликоптером - - requirementAnforderung - - delegation - - skin color - - BNF IdAuthority data of people listed in the general catalogue of the National Library of France - - type of municipalityArt der Gemeindetype gemeente - - 子供kindطفلchildπαιδίKind - - is peer reviewedIn academia peer review is often used to determine an academic papers suitability for publication. - - net income ($)Nettoergebnis ($) - - imposed danse score - - 会社organisatiecompanyεταιρείαFirma - - volcanic typeVulkantypтип вулкана - - roland garros single - - intercommunality - - route directionHimmelsrichtung des VerkehrswegesThe general direction of the route (eg. North-South).Himmelsrichtung des Verkehrsweges (z.B. North-South). - - third commander - - architectual bureauArchitekturbüroαρχιτεκτονική κατασκευή - - vehicle types in fleetFahrzeugtypen der FlottePoints out means of transport contained in the companies vehicle fleet. - - wine yearWeinjahrгодина флаширања вина - - alma materσπουδέςстудијеальма-матерschools that they attended - - vice leadervicelider - - delegate mayor - - shoe numberschoenmaatnúmero do sapato - - state of origin team - - waterWasserвода - - life expectancyLebenserwartungexpectativa de vida - - draft team - - film colour typespecifies the colour type of the film i.e. 'colour' or 'b/w' - - pseudonympseudoniemPseudonym - - eskualdeaafdelingdepartmentdépartementAbteilung - - jest częściąes parte deis part offait partie deist ein Teil von - - old districtAltstadt - - clusterbirlik - - salary ($)μισθός ($)Gehalt ($)給料 ($) - - address in roadAdresse in Straßeδιεύθυνση στον δρόμοАдреса на путуA building, organisation or other thing that is located in the road.Ένα κτήριο, οργανισμός ή κάτι άλλο που βρίσκεται στον δρόμο. - - SATCATSATCATSATCATSATCATsatellite catalogue number, omit leading zeroes (e.g. 25544) - - rebuild dateherbouw datum - - rocketRaketefuséeρουκέτα - - name in Pinyin Chinesenaam in het Pinyin Chinees - - reference for general dataReferenz für allgemeine Daten - - lunar roverMondfahrzeug - - Bioavailability"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)." - - home arenaHeimarena - - 没年jaar van overlijdendeath yearέτος θανάτουSterbejahr - - date unveileddatum onthullingDesignates the unveiling dateDuidt de datum van onthulling aan - - geneReviewsId - - 別名алијасaliasaliasψευδώνυμοпсевдонимalias - - former coachEx-Trainer - - gross domestic product rank - - numero de miembrosnúmero de membrosnumber of membersαριθμός μελώνnombre de membresAnzahl der Mitglieder - - Alps supergroupAlps υπερομάδαsupergruppo alpinoАлпска супергрупаthe Alps supergroup to which the mountain belongs, according to the SOIUSA classification - - red list ID NLrode lijst ID NLred list code for treatened species NL (different from IUCN)rode lijst ID van bedreigde soorten in Nederland - - number of turnsnombre de virages - - european affiliationafiliacao europeia - - last flightletzter Flug - - rocket functionpurpose of the rocket - - artistic function - - dissolved - - fat (g)Amount of fat per servingSize of a Food - - latest preview date - - present municipalityaktuelle Gemeindeligt nu in gemeente - - boilerKesselδοχείο βράσης - - heiligesantosaintάγιοςHeiliger - - operating systemλειτουργικό σύστημαBetriebssystembesturingssysteem - - medical diagnosisdiagnostic médicalmedizinische Diagnose - - olympic games silverzilver op de Olympische Spelen - - narratorErzähler - - lower earth orbit payload (g)Payload mass in a typical Low Earth orbit - - programming languageprogrammeringssprogProgrammiersprachelangage de programmation - - bronze medal mixedBronzemedaille gemischt - - number of matches or caps - - maximum areamaximale Fläche - - faculty sizenumber of faculty members - - second driverzweiter Fahrerδεύτερος οδηγόςsecondo pilota - - arrest date - - miejsce pochówkubegraafplaatslloc d'enterramentplace of burialτόπος θαψίματοςOrt der BestattungThe place where the person has been buried.Ο τόπος όπου το πρόσωπο έχει θαφτεί.De plaats waar een persoon is begraven. - - current productionThe current production running in the theatre. - - flying hours (s)Flugstunden (s) - - chromosom染色体chromosomeχρωμόσωμαcrómasómChromosom - - map descriptionkaart omschrijving - - Primite - - redaktorredacteureditorσυντάκτηςeagarthóirHerausgeber - - SymbolsymboolSymbolHUGO Gene Symbol - - siedzibaheadquarterαρχηγείοceanncheathrúsiègeHauptsitz - - non-fiction subjectnon-fictie onderwerpThe subject of a non-fiction book (e.g.: History, Biography, Cookbook, Climate change, ...). - - number of spansAnzahl der BögenNumber of spans or arches. - - iso code of a placeISO-Code eines Ortes - - versionVersionversie - - ship draft (μ)Schiffsentwurf (μ)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. - - world tournamentWeltturnierсветски турнир - - A Person's role in an eventRol van een persoon in een gebeurtenisrôle d'une personne dans un événement - - foundationGründung - - piston stroke (μ) - - end year of insertion - - broerشقيقbrotherαδελφόςBruder - - PDB IDPDB IDgene entry for 3D structural data as per the PDB (Protein Data Bank) database - - gross domestic product per people - - gross domestic product purchasing power parity per capita - - surface area (m2)Oberfläche (m2)έκταση (m2) - - connects referenced toverbindt referentieobject metconnects a referenced resource to another resource. This property is important to connect non-extracted resources to extracted onescreëert een verwijzing van het gerefereerde objct naar een ander object. Speciaal van belang voor het verbinden van niet-geëxtraheerde resources met de gebruikelijke resources - - original danse competititon - - significant designbedeutendes Design - - parentheseshaakjes - - DorlandsIDDorlandsIDDorlandsID - - governorate - - status manager - - sourceTextSource of something (eg an image) as text. Use dct:source if the source is described using a resource - - religious orderreligieuze orde - - Genome DBGenome DBthe edition of the database used (i.e. hg19) - - cultivarName of the cultivar (cultivated variety) - - pertescasualtiesVerlusteverliezenNumber of casualties of a MilitaryConflict or natural disaster such as an Earthquake - - branch fromπαράρτημα από - - commissionerKommissaropdrachtgever - - 沸点 (K)kookpunt (K)boiling point (K)σημείο βρασμού (K)point d'ébullition (K)Siedepunkt (K) - - victory as manager - - dramaDrama - - blockBlockblok - - ceeb - - wpt titleWPT титула - - agglomeration population totalукупна популација агломерације - - number of rocketsAnzahl der Raketen - - bronze medal singleBronzemedaille Einzel - - settlement attached - - little pool record - - military rankmilitärischer RangThe highest rank achieved by a person. - - purchasing power parity - - racket catching - - width of runway (μ)滑走路の全幅 (μ) - - player in teamSpieler im Teamπαίχτης σε ομάδαA person playing for a sports team. inverseOf teamΆτομο που παίζει για αθλητική ομάδα. - - second - - number of filmsAnzahl der Filmeαριθμός ταινιών - - youth yearsJugendjahreомладинске годинеユース年 - - backhandRückhand - - voltage of electrification (V)Voltzahl der Elektrifizierung (V)Voltage of the electrification system. - - abbey church blessingAbteikirche weiheопатијски црквени благослов - - logoλογότυποlogo - - garrisonGarnison - - population as ofbevolking vanafpopulation en date deχρονιά_απογραφής - - winning teamSiegerteam - - NUTS codeNUTS-code: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. - - trainertrainerεκπαιδευτήςentraîneurTrainer - - landing dateLandedatum - - coachTrainerπροπονητής - - derivative - - reopening dateWiedereröffnungdatumDate of reopening the architectural structure. - - fecha de descubrimientodescobridordiscovery dateΗμερομηνία ανακάλυψηςdate de découverteentdeckt - - metropolitan boroughstadswijk - - date membership establisheddatum vaststellen ledental - - no contest - - number of goals scoredAnzahl der erzielten Torenumero di goal segnati - - coast line (μ)Küste (μ) - - track length (μ)Streckenlänge (μ)Length of the track. Wikipedians usually do not differentiate between track length and line lenght. - - number of visitors as ofThe year in which number of visitors occurred. - - premiere placeThe theatre and/or city the play was first performed in. - - completion dateημερομηνία ολοκλήρωσηςFertigstellungstermindatum van oplevering - - cable carDrahtseilbahn - - arrondissementarrondissementarrondissementδιαμέρισμα - - academic advisorpromotorακαδημαϊκοί_σύμβουλοιакадемски саветник - - Dorlands prefix - - route type abbreviationThe route type abbreviation (eg.: I for Interstate, M for Motorway or NJ for New Jersey Route). - - ward of a liechtenstein settlement - - summer appearances - - minority leadernumber of office holder - - free flight time (s) - - data urodzenia生年月日জন্মদিনgeboortedatumdata de naixementbirth dateημερομηνία_γέννησηςdáta breithedate de naissanceGeburtsdatum - - eruptionAusbruch - - per capita income as ofrenda per capita em - - has natural busttem busto natural - - circuit length (μ) - - cantidad de medallas de bronce ganadasaantal gewonnen bronzen medaillesnumber of bronze medals wonnomber de médailles de bronze gagnéesAnzahl der gewonnenen Bronzemedaillen - - United States National Bridge IDID националног моста у Сједињеним Америчким Државама - - draft year - - end career - - sportSportάθλημαsport - - id - - average depth quoteSource of the value. - - other activityandere Aktivität - - landing siteLandeplatz - - capital elevation (μ) - - Identifier for Duch National ArchiveCode Nationaal Archief - - crown dependency - - end occupation - - prominence (μ) - - 属_(分類学)género (biología)geslachtgenusgenre (biologie)GattungA rank in the classification of organisms, below family and above species; a taxon at that rankRang taxinomique (ou taxonomique) qui regroupe un ensemble d'espèces ayant en commun plusieurs caractères similaires. - - state delegate - - chairman title - - split from partyAbspaltung von Partei - - number soldNumber of things (eg vehicles) sold - - engineeringenieurIngenieurμηχανικός - - officer in charge - - cylinder count - - debutντεμπούτοDebütデビュー - - national tournament silver - - call sign meaningThe out written call sign. - - race resultResult of one racer in a sport competition - - EntrezGeneEntrezGene - - peopleNameName for the people inhabiting a place, eg Ankara->Ankariotes, Bulgaria->Bulgarians - - aircraft gunFlugabwehrkanoneΠολυβόλο - - date extendedεπέκταση - - ratio - - wins at ALPGпобеде на ALPG - - play role - - active years end date manager - - enemyFeind - - ra - - minimum elevation (μ)βάση (μ)minimum elevation above the sea level - - inclination - - sharing out population - - other functionandere Funktion - - max - - black ski piste number - - khl draft year - - translated motto - - Confirmed CasesNumber of confirmed cases in a pandemic - - subsequent worknachfolgende Arbeitenvervolg werkεπόμενη δημιουργία - - restrictionBeschränkungThe use of a thing is restricted in a way.Die Verwendung von etwas ist beschränkt. - - merged settlement - - associated rocketσυνδεόμενος πύραυλος - - shore length (μ)Uferlänge (μ)μήκος_όχθης (μ) - - altitud (μ)hoogte (μ)ऊँचाई (μ)altitude (μ)elevation (μ)υψόμετρο (μ)altitude (μ)Höhe (μ)average elevation above the sea levelaltitude média acima do nível do mar - - source country - - agglomeration demographicsдемографија агломерације - - work area (m2)радни простор (m2)Arbeitsplätze (m2) - - relicsреликвиPhysical remains or personal effects of a saint or venerated person, preserved in a religious building - - number of arrondissement - - gnl - - wimbledon mixedвимблдон микс дубл - - source region - - secondary/other fuel type - - number of academic staffAnzahl der wissenschaftlichen Mitarbeiterαριθμός ακαδημαϊκού προσωπικού - - colorChart - - climateclimaklimaklimaat - - wins at majors - - gross domestic product (GDP) per capitaBruttoinlandsprodukt pro EinwohnerThe nominal gross domestic product of a country per capita.Das nominale Bruttoinlandsprodukt eines Landes pro Einwohner. - - numero de pruebas deportivasnumber of sports eventsαριθμός αθλητικών γεγονότωνnumbre d'épreuves sportivesAnzahl der Sportveranstaltungen - - relatedverbundengerelateerd - - chief executive officerGeschäftsführer - - other appearances - - president regional council - - distance to Dublin (μ)απόσταση από το Δουβλίνο (μ) - - specialitySpezialität - - specializationSpezialisierungPoints out the subject or thing someone or something is specialized in (for).Verweist of den Gegenstand (auch fig.) auf welchen jemand oder etwas spezialisiert ist. - - lethal when given to chickensdodelijk voor kippen - - population urban density (/sqkm) - - name in Traditional Chinesenaam in het Traditioneel Chinees - - sub-orderonderorde - - title datetitel datumdata do titulo - - closing yearSluitingsjaarSchließungsjahr - - 教育opleidingeducationéducationBildung - - focusFokusPoints out the subject or thing someone or something is focused on.Verweist of den Gegenstand (auch fig.) auf welchen jemand oder etwas fokussiert ist. - - publication dateVeröffentlichungsdatumpublicatiedatum - - closing film - - number of SoccerPlayers in Country Reprecelkový počet fotbalový hráčů v reprezentaci - - champion in mixed doublekampioen gemengd dubbelspelchampion en double mixteCampeón en doble mixtowinner of a competition in the mixed double session (as in tennis) - - length of runway (μ)Start- und Landebahnlänge (μ) - - north placelieu au nordindique un autre lieu situé au nord.indicates another place situated north. - - phone prefixTelefonvorwahlDon't use this, use areaCode - - highesthöchsterThe highest mountain of a mountain range.Der höchste Berg eines Gebirges. - - governmentRegierunggouvernement - - 息子zoonابنsonυιόςSohn - - updatedажуриранThe last update date of a resourceдатум последње измене - - largest settlementgrößte Siedlunggrootste plaats - - spaceRaum - - associated actσυνδεδεμένη πράξη - - Alps main partκύριο μέρος των άλπεωνgrande parte alpinaглавни део Алпаthe Alps main part to which the mountain belongs, according to the SOIUSA classification - - języktaallíngualanguageγλώσσαteangalangueSprachelinguaUse dc:language for literal, language for object - - boardεπιβιβάζομαιbestuur取締役会 - - source confluence elevation (μ) - - interestInteresseενδιαφέρον - - south-west placelieu au sud-ouestindique un autre lieu situé au sud-ouest.indicates another place situated south-west. - - chorus character in playThe name of the (Greek) chorus character in play. - - ship launched - - ground - - heisman - - gold medal single - - type seriesBaureihe - - source confluence position - - production yearsProduktionsjahre - - installed capacity (W) - - last launch rocket - - medical causemédical causemedizinische Ursacheαιτία Ιατρικός - - city rankRang StadtPlace of the building in the list of the highest buildings in the cityDer Platz des Gebäudes in der Liste der höchsten Gebäude der Stadt - - lunar moduleMondfähre - - cost ($)Kosten ($)kosten ($)κόστος ($)Cost of building an ArchitecturalStructure, Ship, etc - - fastest driver teamομάδα ταχύτερου οδηγούschnellster Fahrer Team - - episode numberThe episode number of the TelevisionEpisode. - - custodianAufsichtsperson - - parliamentary groupFraktion - - foresterDistrict - - 政党partijpartyπάρτυPartei - - party numbernúmero do partido - - number of use of a propertypočet použití property - - dateDatumdatumημερομηνία - - special trial - - other partyandere Partei - - AFDB IDcódigo no afdbafdb idafdb idAFDB ID - - escape velocity (kmh) - - other information of a settlementandere Informationen einer Siedlung - - memberMitgliedlid van - - imposed danse competition - - choreographerChoreographchoreograafχορογράφος - - maximum depth quoteSource of the value. - - appearances in leagueεμφανίσεις στο πρωτάθλημαброј наступа у лиги - - cause of deathcausa de mortTodesursacheprzyczyna śmierci - - licence number - - crew memberBesatzungsmitglied - - joint community - - capitalhoofdstadराजधानीcapitalcapitalπρωτεύουσαcapitaleHauptstadt - - eyesAugenμάτιαogenΜάτι ονομάζεται το αισθητήριο όργανο της όρασης των ζωντανών οργανισμών. - - is part of anatomical structurees parte de una estructura anatómicaist ein Teil von anatomischer Struktur - - deaneryDekanatproosdijDioceses and parishes should know which deaneries there are - - e-teatr.pl id - - type of surfacetype de surfacetipo de surperficietyp povrchu - - source district - - presenterModeratorπαρουσιαστής - - national team year - - area date - - number of representativesZahl der Vertreter - - note on resting place - - frozengefrorenπαγωμένη - - successful launcheserfolgreiche Starts - - gradesβαθμοί - - BIBSYS Ididentifiant BIBSYSBIBSYS 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. - - compañía discográficaplatenlabelrecord labelδισκογραφικήlabel discographique - - project end dateProjektendeThe end date of the project. - - registry numberRegistrierungsnummerregisternummerIdentification of the registry a document is in - - JSTORJSTOR number (short for Journal Storage) is a United States-based online system number for archiving academic journals. - - homeportport macierzysty - - nfl code - - number of wineries - - austrian land tag mandate - - fed cup - - stat value - - number of doorsTürenanzahl - - not soluble inniet oplosbaar in - - land registry code - - coemperor - - passengers used systembenutztes System der PassagiereSystem the passengers are using (from which the passenger statistics are). - - is a city stateist ein Stadtstaat - - satellites deployed - - complexityComplexity of preparing a Food (recipe) - - homageHuldigungeerbetoon - - date of an agreement - - incomeEinkommen - - route activityactivité de routedetails of the activity for a road.détail de l'activité sur une route. - - number of parking lots for trucksaantal parkeerplaatsen vrachtwagens - - ratingWertungcijfer - - territoryGebietterritorio - - bronze medal doubleBronzemedaille Doppel - - TERYT codekod TERYTindexing code used by the Polish National Official Register of the Territorial Division of the Country (TERYT) to identify various entities - - ensembleensemble - - The IUPAC International Chemical IdentifierInternationale chemische Bezeichnung der IUPACIUPAC internationale chemische identifier - - dissolution year - - education system - - distance to Belfast (μ) - - star rating - - formulaFormelformuleformule - - year of world champion titleгодина освајања светског шампионатаjaar van wereldkampioen titelannée d'obtention du titre de champion du mondecan be one or several yearsможе бити једна или више годинаil peut s'agir d'une ou de plusieurs années - - model start year - - recent winnerletzter Gewinner - - number of live albumsAnzahl von Live-Albenthe number of live albums released by the musical artist - - major shrinebedeutender Schreinschrijn - - main organ - - timeshift channel - - salesVertriebπώλησηventeThis property holds an intermediate node of the type Sales. - - Establishmentίδρυση - - meaningBedeutung - - noteAnmerkung - - third - - strona bcara bb sidetaobh bB-Seite - - subdivision name of the island - - project start dateProjektstartThe start date of the project. - - recorded inopgenomen inηχογράφησηenregistré à - - número de empleadosaantal medewerkersnumber of employeesαριθμός εργαζομένωνnombre d'employésAnzahl der Mitarbeiter - - area of searchSuchgebietΠεριοχή Αναζήτησης - - national selectionnationale Auswahl - - date of approval by upper parliamentdatum aangenomen door Eerste Kamer, Hogerhuis, Senaat enz.Date of approval by upper parliament (House of Lords, Sénat, Eerste Kamer etc.). - - majority leadernumber of office holder - - record dateStichtagopname datumηχογράφηση - - number of parking lots for carsaantal parkeerplaatsen personenauto's - - political seats - - special effectsSpezialeffektethe person who is responsible for the film special effects - - 密度 (μ3)densità (μ3)densidade (μ3)density (μ3)πυκνότητα (μ3)densité (μ3)Dichte (μ3) - - IATA Location IdentifierΙΑΤΑ - - grinding capabilitymaal capaciteitgrinding capability for Mills - - wins at LAGTпобеде на LAGT - - compression ratioKompressionsverhältnis - - egafd idegafd idcódigo no egafd - - minimum inclination - - river mouthFlussmündungriviermondingεκβολές - - parent organisationmoederorganisatie - - patron saint - - size (B)μέγεθος αρχείου (B)Dateigröße (B)taille de fichier (B)size of a file or softwareμέγεθος ενός ηλεκτρονικού αρχείου - - best rank double - - maximum elevation (μ)κορυφή (μ)maximum elevation above the sea level - - numberOfPropertiesUsednumber of all properties used as predicate in DBpedia - - tournament recordTurnierrekord - - resolutionAuflösungανάλυσηrésolutionNative Resolution - - hof - - official languageAmtssprache - - saturation coordinate in the HSV colour space - - supply - - 目_(分類学)ordeorder (taxonomy)διαταγήordre (taxonomie)Ordnung - - mill span (μ)vlucht (μ)Εκπέτασμα (μ) - - third driverdritter Fahrer - - orogenyorogenèse - - houseσπίτι - - diseaseKrankheitPoints to a disease pertaining to the subject at hand.Verweist auf eine Krankheit. - - event dateVeranstaltungstermin - - last winletzter Siegτελευταία νίκη - - wykonawcaintérpreteartiestperformerκαλλιτέχνηςinterprèteInterpretThe performer or creator of the musical work. - - denominationReligious denomination of a church, religious school, etc. Examples: Haredi_Judaism, Sunni_Islam, Seventh-day_Adventist_Church, Non-Denominational, Multi-denominational, Non-denominational_Christianity - - grandsire - - gini coefficient rankingposição no ranking do coeficiente de Gini - - rangebereikMaximum distance without refueling - - promotionFörderung - - last championletzter Siegerson şampiyon - - pole position - - cylinder bore (μ) - - laterality - - sceneSzene - - wilayaвилајет - - Ländervorwahlcountry codeCountry code for telephone numbers. - - right child - - name in Hanja-written (traditional) Koreannaam in Hanja-geschreven Koreaans - - illiteracyAnalphabetismusanalfabetismo - - managerManagerπροπονητής - - adjacent settlement of a switzerland settlementСуседно насеље у Швајцарској - - asset under management ($)κεφάλαιο υπό διαχείριση ($) - - selectionAuswahlwhen (or in which project) the person was selected to train as an astronaut - - operatorBetreiberexploitantOrganisation or City who is the operator of an ArchitecturalStructure, PublicTransitSystem, ConcentrationCamp, etc. Not to confuse with builder, owner or maintainer. -Domain is unrestricted since Organization is Agent but City is Place. Range is unrestricted since anything can be operated. - - fatherVater - - clubs record goalscorer - - junior season - - oorsprongorigemoriginπροέλευσηorigineHerkunft - - AggregationAggregatie - - датум почетка активних годинаactieve jaren startdatumactive years start dateενεργά χρόνια ημερομηνία έναρξηςdate de début d'activité - - percentage of fatFettgehaltvetgehaltehow much fat (as a percentage) does this food contain. Mostly applies to Cheese - - number of parking spacesAnzahl der Parkplätze - - drugs.comdrugs.comexternal link to drug articles in the drugs.com websiteVerweist auf den drugs.com Artikel über ein Medikament. - - branchriviertakδιακλαδώσεις - - date of latest election - - NLA IdNLA Trove’s People and Organisation view allows the discovery of biographical and other contextual information about people and organisations. Search also available via VIAF. - - last election dateThe last election date for the house. - - draft round - - Total Pandemic CasesTotal number of cases in a pandemic - - associateStarσυγγενικός αστέραςçevreleyen - - previous population total - - dist_pc - - bestandsnaamfilenameόνομα αρχείουnom de fichierdateiname - - id number - - danse score - - former teamvoormalig team - - ISNI IdISNI is a method for uniquely identifying the public identities of contributors to media content such as books, TV programmes, and newspaper articles. - - wins at other tournamentsпобеде на осталим турнирима - - number of volumes - - raceRennen - - date constructionBauzeitέναρξη_κατασκευής - - draft pick - - estatusstatusstatusstatutStatus - - dress codeThe recommended dress code for an establishment or event. - - precursorVorläufer - - national championshipnationale Meisterschaft - - regional languageRegionalsprache - - free score competition - - SIL codeSIL-codekod SIL - - Council area - - wielkość absolutnaапсолутна магнитудаabsolute magnitudeαπόλυτο μέγεθοςdearbhmhéidmagnitude absolueabsolute Helligkeit - - solventLösungsmittel - - publisheruitgeverHerausgeberεκδότηςPublisher of a work. For literal (string) use dc:publisher; for object (URL) use publisher - - population metro density (/sqkm)bevolkingsdichtheid (/sqkm) - - number of sportsnumbre de sportsnumero de deportes - - area metro (m2)περιοχή μετρό (m2)метрополска област (m2) - - wins at LPGAпобеде на LPGA - - farvekleurcolourχρώμαcouleurFarbeA colour represented by its entity. - - daira - - alongsideδίπλαуз - - country with first satellite launched - - commentKommentarσχόλιο - - agglomerationPopulationYearгодина популације агломерације - - type coordinateScale 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èle:Infobox_Subdivision_administrative for examples, and https://fr.wikipedia.org/wiki/Modèle:GeoTemplate/Utilisation#La_mention_Type:... for a complete list - - project reference IDThe reference identification of the project. - - highway systemthe highway system that a route is part of - - ISBNISBNThe International Standard Book Number (ISBN) is a unique numeric commercial book identifier based upon the 9-digit Standard Book Numbering (SBN) code. - - management place - - visitor statistics as ofстатистика посетилаца одYear visitor information was gathered. - - school number - - mean temperature (K)Durchschnittstemperatur (K)μέση θερμοκρασία (K) - - ICD1ICD1ICD1 - - anniversaryJubiläumεπέτειοςгодишњица - - director de cineinstruktørregisseurfilm directorσκηνοθέτηςдиректорréalisateurregisseurA film director is a person who directs the making of a film.Un réalisateur (au féminin, réalisatrice) est une personne qui dirige la fabrication d'une œuvre audiovisuelle, généralement pour le cinéma ou la télévision. - - revenue ($)Einnahmen ($)έσοδα ($)chiffre d'affaire ($) - - television seriesFernsehserieτηλεοπτικές σειρές - - creative director - - Komplikationencomplicationsεπιπλοκέςcomplications - - sublimation point (K) - - wins at pgaпобеде на PGA - - passengers per dayPassagiere pro TagNumber of passengers per day. - - UniProtUniProt - - superintendentLeiteropzichter - - wine producedпроизводи вино - - de facto language - - computing platformsome sort of hardware architecture or software framework, that allows this software to run - - date of liberationdatum bevrijding - - ATC prefixATC πρόθεμαpréfix ATC - - clothing sizeKonfektionsgröße - - last positionτελευταία θέση - - number of contries inside en continent - - area of catchment (m2)Einzugsgebiet (m2)λίμνη (m2)подручје слива (m2) - - chancellorKanzler - - has taxontaxon - - año de fundaciónoprichtingsjaarfounding yearέτος ίδρυσηςGründungsjahr - - Number Of CantonsAantal kantons - - number of people attendingZahl der Teilnehmernúmero de participantesnombre de participants - - european parliament groupgrupo parlamentar europeu - - eruption dateJahr des letzten Ausbruchsjaar uitbarsting - - NRHP typeType of historic place as defined by the US National Park Service. For instance National Historic Landmark, National Monument or National Battlefield. - - wsop win yearгодина освајања WSOP-а - - title doubleDoppeltitel - - title singleEinzeltitel - - number of Person class (entities) in DBpediapočet entit třídy Osoba v DBpedii - - goals in leagueTore in der Ligadoelpunten in de competitieリーグ得点 - - subdivision - - abbey church blessing charge - - managementManagementmanagement - - mayor function of a switzerland settlement - - producesproduziert - - route next stoparrêt suivantnext stop on a route.arrêt suivant sur une route. - - hybridPlants from which another plant (or cultivar) has been developed from - - Swimming styleSchwimmstilZwemslag - - CPUCPUprocessor (CPU)procesor (CPU)CPU of an InformationAppliance or VideoGame (which unfortunately is currently under Software) - - bourgmestre - - NIS codeIndexing code used by the Belgium National Statistical Institute to identify populated places. - - date of approval by lower parliamentdatum aangenomen door Tweede Kamer, Lagerhuis, Bondsdag enz.Date of approval by lower parliament (House of Commons, Chambre des Députés, Bundestag, Tweede Kamer etc.). - - music subgenreMusik Subgenre - - 大学универзитетuniversityπανεπιστήμιοUniversitätuniversity a person goes or went to.To πανεπιστήμιο είναι εκπαιδευτικό ίδρυμα ανώτατης εκπαίδευσης και επιστημονικής έρευνας που παρέχει πτυχίο πιστοποίησης ακαδημαϊκής εκπαίδευσης. - - worst defeathöchste Niederlageнајтежи пораз - - next eventnächste Veranstaltungvolgende evenementεπόμενο γεγονός - - most successful playermejor jugadorthe best player in a certain sport competition. E.g, in a football competition, the player that scored more goals.el mejor jugador de una cierta competición deportiva. Por ejemplo, en una competición de fútbol, aquel jugador que ha marcado más goles. - - distributing company - - chaplainKaplan - - lead team - - number of studio albumsZahl der Studio-Albenthe number of studio albums released by the musical artist - - combattantfighterKämpfer - - Alps subsectionAlps υποδιαίρεση των άλπεωνsottosezione alpinaАлпска подсекцијаthe Alps subsection to which the mountain belongs, according to the SOIUSA classification - - feat - - end reign - - 叔母tanteعمةauntθείαTante - - police nameThe police detachment serving a UK place, eg Wakefield -> "West Yorkshire Police" - - countryLand蔵書数 - - career points - - boiler pressureKesseldruckπίεση δοχείου βράσης - - number of professionalsAnzahl von Fachleutennombre de professionnelsnumero de profesionalesnumber of people who earns his living from a specified activity. - - alumniAlumniαπόφοιτοι πανεπιστημίουалумни - - volcano idid вулкана - - NGC nameName for NGC objects - - allcinema idallcinema idallcinema idallcinema id - - ORCID IdAuthority data on researchers, academics, etc. The ID range has been defined as a subset of the forthcoming ISNI range. - - religious head - - employer's celebration - - 国籍nationaliteitnacionalidadenationalityεθνικότηταnationalitéNationalität - - fees ($)Gebühren ($)δίδακτρα ($) - - number of albumsAnzahl der Albenthe total number of albums released by the musical artist - - certificationcertification - - waterway through tunnelпловни пут кроз тунелWasserweg durch TunnelWaterway that goes through the tunnel. - - course area (m2)コース面積 (m2)The area of courses in square meters. - - RefSeq - - statistic year - - project budget funding ($)The part of the project budget that is funded by the Organistaions given in the "FundedBy" property. - - チームteamteamομάδαéquipeTeam - - highest point of the islandhöchste Erhebung der Insel - - aircraft transportαερομεταφορές - - number of roomsAnzahl der Zimmerαριθμός δωματίωνaantal kamers - - defeatήτταNiederlage - - mayorMandate - - system of lawRechtssystemrechtssysteemA referral to the relevant system of law - - appearanceErscheinungsbild - - station visit duration (s) - - ISO 639-3 codeISO 639-3 codekod ISO 639-3 - - SMILESThe 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. - - parent mountain peak - - Film Fare Award - - first launch dateerster Starttermin - - bateríabatteriabatterijbateriabatterypileBatteriePoints out the battery used with/in a thing. - - green coordinate in the RGB space - - Suspected CasesNumber of suspected cases in a pandemic - - election dateWahltermin - - Ceremonial County - - Golden Globe Award - - number of all MuscialArtist playing the instrumentpočet hudebních umělců hrající na konkrétní nástroj - - usurperузурпатор - - train carriagewagon - - lethal when given to ratsdodelijk voor ratten - - binomialDoppelbenennungδιωνυμικός学名 - - bowling sideWerfarm - - principalдиректор (на училище)Principal of an educational institution (school)Директор на училище - - competition titleSterbeort - - rail gauge (μ)Spurweite Eisenbahn (μ) - - personPersonάτομο - - foal date - - number of passengersaantal passagiers - - us open doubleUS Open дубл - - argue dateδημοφιλής ημερομηνία - - page numberSeitenzahlpagina van verwijzingPage # where the referenced resource is to be found in the source document - - wins at championships - - defeat as team managerNiederlage als Trainer - - vice presidentпотпредседникVizepräsident - - licence number label - - project participantProjektteilnehmerA participating organisation of the project. - - political leaderpolitischer Führer - - source confluence region - - date completedολοκλήρωση - - configurationconfiguratieKonfigurationconfiguration - - sport governing body - - provinceProvinzεπαρχίαprovincie - - ICD10ICD10 - - ChemSpider Ididentifier in a free chemical database, owned by the Royal Society of Chemistry - - укупна површина (m2)oppervlakte (m2)area total (m2)έκταση περιοχής (m2)superficie (m2)Fläche (m2) - - route endWegendeEnd of the route. This is where the route ends and, for U.S. roads, is either at the northern terminus or eastern terminus.Ende des Verkehrswegs. - - highest mountainhöchster Berg - - notable commander - - iss dockings - - International Standard Identifier for Libraries and Related Organizations (ISIL) - - official opened by - - Symptomesymptomsσύμπτωμαsymptômes - - professionBerufεπάγγελμαberoep - - redline (kmh) - - OMIM idOMIM idOMIM id - - cargo fuel (g) - - regional councilGemeinderat - - orientationOrientierung - - number of countriesαριθμός χωρώνnúmero de países - - program cost ($) - - currency codeWährungscodecód airgeadraISO 4217 currency designators. - - allianceAllianzσυμμαχίαсавез - - general managerHauptgeschäftsführer - - length reference - - mandate of the president council of the regional council - - cyclist genre - - percentage of a place's population that is literate, degree of analphabetismpercentage van de bevolking dat geletterd is - - temple year - - Amsterdam CodeАмстердам кодAmsterdamse code - - episodeFolge - - mgiidmgiidMouse Genomic Informatics ID - - amateur defeatаматерских пораза - - cover artistcover artistCover artist - - broadcast areaEmpfangsgebietπεριοχή αναμετάδοσης - - mediaMedien - - label of a website - - heritage registerinventaire du patrimoineregistered 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.inscrit à un inventaires dédiés à la conservation du patrimoine, naturel ou culturel, existants dans le monde. - - final publication datelaatste publicatiedatumDatum der finalen AusgabeDate of the final publication.Datum der allerletzten Veröffentlichung des Periodikums. - - release locationUsually used with releaseDate, particularly for Films. Often there can be several pairs so our modeling is not precise here... - - budget ($)budget ($)budget ($)προϋπολογισμός ($)Etat ($) - - regionregioregionπεριοχήRegionThe regin where the thing is located or is connected to. - - former band memberehemaliges Bandmitgliedvoormalig bandlidA former member of the band. - - Goya Award - - silver medal doubleSilbermedaille Doppel - - number of officesAnzahl Bürosαριθμός γραφείωνNumber of the company's offices.Αριθμός γραφείων εταιρείας. - - hue coordinate in the HSV colour space - - INNDCIInternational Nonproprietary Name given to a pharmaceutical substance - - route startpoint de départWeganfangStart of the route. This is where the route begins and, for U.S. roads, is either at the southern terminus or western terminus.point de départ d'une route.Anfang des Verkehrswegs. - - musicFormatmusikFormateThe format of the album: EP, Single etc. - - bandieragöndere çekmekvlag (afbeelding)flag (image)σημαίαFlaggeWikimedia Commons file name representing the subject's flag - - long distance piste kilometre (μ) - - numberOfPredicatesnumber of predicates in DBpedia (including properties without rdf:type of rdf:Property) - - fightKampf - - mukthar of a lebanon settlement - - lead year - - number of entities of Settlement class in countrypočet entit třídy Sídlo v dané zemi - - ethnicityεθνότηταethnische zugehörigkeitetniaΜία ορισμένη κοινωνική κατηγορία ανθρώπων που έχουν κοινή καταγωγή ή εμπειρίες. - - podiumPodest - - subject termonderwerpsaanduidingThe subject as a term, possibly a term from a formal classification - - définitiondefinitiontanımlar - - wins at AUS - - qatar classic - - bluecoordinate in the RGB space - - walutavalutamoedacurrencyνομισματική μονάδαairgeadradeviseWährungυπολογίζει ή εκφράζει οικονομικές αξίες - - doctoral studentDoktorandδιδακτορικοί_φοιτητέςdoctoraalstudent - - population placea place were members of an ethnic group are living - - squad numberThe number that an athlete wears in a team sport. - - command module - - number of ministriesZahl der Ministeriennumero de ministerios - - ELO rating - - association of local governmentvereniging van lokale overhedenσυνεργασία της τοπικής αυτοδιοίκησης - - management country - - reigning poperegerende paus - - адресаadresaddressδιεύθυνσηадресadresseAdresseAddress of something as literal. Usually Building, but we also use it for the address of a Region's or Settlement's government - - seniunija - - medalistMedaillengewinnermedalhista - - distributorallumeur - - offered classes - - highest building in year - - disciplineDisziplin - - code Stock Exchangebeurscode - - afbeeldingfigurapictureεικόναрисунокimagebildA picture of a thing.Une image de quelque chose. - - lunar EVA time (s) - - combatantKombattant - - number of studentsZahl der Studierendenαριθμός φοιτητών - - number of reactorsAnzahl der Reaktorennombre de réacteursaantal reactoren - - contractorεργολάβοςAuftragnehmeraannemer - - former channel - - capital position - - gwiazdozbiórTakımyıldızsterrenbeeldconstellationSternbild - - categorieKategoriecategoryκατηγορίαcatégorieKategorie - - creation christian bishop - - molecular weightMolekulargewichtmolgewicht - - approach - - apc president - - total population rankingposição no ranking do total da populacao - - breederZüchterκτηνοτρόφος - - victorySiegпобеда - - NCINCINCINCI - - legislative period nameName in der LegislaturperiodeThe term of the on-going session (e.g.: "40th Canadian Parliament"). - - billed - - patron (art)mécèneAn influential, wealthy person who supported an artist, craftsman, a scholar or a noble.. See alsoCelui qui encourage par ses libéralités les sciences, les lettres et les arts. - - model end date - - gross domestic product as ofproduto interno bruto em - - number of villagesAnzahl der Dörferjumlah desa/kelurahan - - artificial snow area - - full score - - structural systemTragsystembouwmethodeκατασκευαστικό σύστημα - - reopenedwieder eröffnet - - na podstawieop basis vanbased onβασισμένο σεbunaithe arbasierend auf - - staffPersonalπροσωπικό - - sister newspaper - - is part of (literal)ist TeilName of another thing that this thing is part of. Use for infobox "part of" properties given as text; for objects use isPartOf - - PubChemPubChemPubChem - - eMedicine subjecteMedicine onderwerp - - Wiki page in degreeReserved for DBpedia. - - highest rankhöchster Ranglistenplatz - - ULAN idUnion 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). -http://vocab.getty.edu/ulan/$1 - - source state - - author of prefaceAutor des Vorwortsschrijver voorwoord - - endEnde - - Number of votes given to candidateAnzahl der Stimmen für Kandidaten - - wins at ASIA - - equity ($)Gerechtigkeit ($) - - number of seats in parliamentAnzahl der Sitze im Parlamentaantal zetels in parlementnumber of seats in House of Commons-like parliamentsaantal zetels in Tweede-Kamer-achtig parlement - - skillsFähigkeitencompétencesbekwaamheden - - comparablevergleichbarsimilar, unrelated rockets - - diameter (μ)diameter (μ)διάμετρος (μ)diamètre (μ)Durchmesser (μ) - - BAFTA AwardBAFTA Awardβραβείο BAFTA - - statistic label - - route end locationOrt des WegendesThe end location of the route.End-Ort des Verkehrswegs. - - ポジションpositiepositionΘέσηPosition - - maximum boat beam (μ)μέγιστο_πλάτος_πλοίου (μ) - - orbital flights - - team sizeTeamgröße - - Music Band - - familyFamilietaalfamilierodzina - - code on indexIndexcode - - opponent敵対者Gegner - - vice prime ministerVizeministerpräsidentзаменик премијераvice premier - - solvent with good solubilityLösungsmittel mit guter Löslichkeitgoed oplosbaar in - - settlement code - - funded byιδρύθηκε απόgefördert durchA organisation financing the research project. - - classKlasseτάξηklasse - - avifauna population - - landing vehicle - - znany z powoduconocido porbekend omknown forγνωστός_γιαconnu pourbekannt fürWork, historic event, etc that the subject is known for. Applies to Person, Organization, ConcentrationCamp, etc - - hub airport - - grounds for termination of activitiesreden van opheffing - - distance to Charing Cross (μ) - - албумalbumalbumαπό το άλμπουμAlbum - - start wqs - - british wins - - ept itm - - reference for cultural data - - extinction dateontbindingsdatum!!! Do NOT use this property for non Species related dates!!! - Date when an Organization (eg PoliticalParty, Company) or Species ceased to exist - - team coachedTeam gecoacht - - aircraft helicopter attackHubschrauberangriffεπίθεση ελικοφόρων αεροσκαφώνваздушни напад хеликоптером - - treeBaumδέντρο - - seniority - - number of person in one occupationpočet lidí v konkrétním zaměstnání - - second driver country - - materialMaterialmatériel - - umbrella titleoverkoepelende titel - - ISO 639-2 codeISO 639-2 codekod ISO 639-2 - - twin countryPartnerland - - diepte (μ)depth (μ)βάθος (μ)profondeur (μ)Tiefe (μ)Is a measure of the distance between a reference height and a point underneath. The exact meaning for a place is unclear. If possible, use or to be unambiguous. - - gini coefficient as ofcoeficiente de Gini em - - Establishedetabliert - - lengte (μ)length (μ)μήκος (μ)longueur (μ)Länge (μ) - - has channel - - Relates an entity to the populated place in which it is located. - - maximum area quote - - number of teamsAnzahl der Teamsnumero di squadre - - maximum absolute magnitudemaximale absolute Helligkeitmaximale absolute magnitude - - largest win - - second placezweiter Platz - - solicitor generalGeneralstaatsanwaltadvocaat-generaalhigh-ranking solicitorde advocaat-generaal - - rank of an area - - sport specialtysport specialiteitthe sport specialty the athlete practices, e.g. 'Ring' for a men's artistic gymnastics athlete - - status year - - number of participating athletesAnzahl der teilnehmenden Athletennombre d'athlètes participant - - number of volunteersAnzahl der Freiwilligenαριθμός εθελοντών - - eraεποχή - - game artistゲームデザイナー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. - - deme - - setting of playThe places and time where the play takes place. - - railway platformsBahnsteigeperronsαποβάθραInformation on the type of platform(s) at the station. - - legal articlewetsartikelarticle in code book or statute book referred to in this legal case - - equipmentAusrüstungεξοπλισμόςuitrusting - - position in which a surface occurs in a text - - notesAnmerkungenσημειώσειςnotesadditional notes that better describe the entity.συμπληρωματικές σημειώσεις που περιγράφουν καλύτερα την οντότητα. - - spur type - - national team match point - - catholic percentage - - size mapGröße der Karte - - Grammy AwardGrammy Award - - academic disciplinewissenschaftliche Disziplinакадемска дисциплина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. - - death ageηλικία θανάτουSterbealter - - Recovery CasesNumber of recovered cases in a pandemic - - numberOfDisambiguatesnumber of disambiguation pages in DBpedia - - iucn categoryIUCN categorie - - trading nameHandelsname - - boosterπροωθητής - - first ascentErstbesteigung - - FDA UNII codecódigo FDA UNIIFDA Unique Ingredient Identifier (UNII) code for a DBpedia Drug - - IUPAC nameIUPAC名 - - Wikipage revision IDReserved for DBpedia. - - next entity - - nerveNerv - - first winnererster Gewinnerπρώτος νικητής - - techniquetechnischτεχνικήtécnica - - communeKommunecommune - - intercommunality shape - - outflowAbflussεκροή - - оружјеwapenweaponarmeWaffe - - number of resource / entities for concrete type of subjectpočet zdrojů / entint pro konkrétní typ subjectu - - cousurper - - current team manager - - classificationKlassifikationcategorieAny string representing a class or category this thing is assigned to. - - movementBewegungbewegingmouvement artistiqueartistic movement or school with which artist is associated - - ship beam (μ)The beam of a ship is its width at the widest point. - - currently used forhuidig gebruikusage actueluso actualCurrent use of the architectural structure, if it is currently being used as anything other than its original purpose. - - frequency (Hz)Frequenz (Hz)συχνότητα (Hz)fréquence (Hz) - - suppliesπαροχές - - topicThema - - start reign - - named afterbenannt nach - - Method of discoveryVerfahren zur Entdeckung - - heirErbe - - highest pointυψηλότερο σημείοhöchste Erhebung - - ski piste kilometre (μ)Skipiste km (μ) - - CampeónwinnaarchampionπρωταθλητήςchampionMeisterwinner of a competitionνικητής ενός διαγωνισμού - - launch padStartrampe - - Game Engineゲームエンジン - - body styleτύπος σώματος - - first publishererster Herausgeberoorspronkelijke uitgever - - total launches - - first flight end date - - highest breakHöchstes Break - - Orthologous Geneオーソロガス遺伝子 - - season manager - - political functionpolitische Funktion - - organisation memberOrganisationsmitgliedIdentify the members of an organisation. - - 兄弟broer of zussiblingfrère ou soeurGeschwister - - brain info typeτύπος νοητικής πληροφόρησης - - routeRoute - - UTC offsetUTC офсет - - właścicieldueñoeigenaarownerιδιοκτήτηςúinéirpropriétaireEigentümerUsed as if meaning: owned by, has as its owner - - wavelength (μ)Wellenlänge (μ)таласна дужина (μ)longueur d'onde (μ) - - best rank single - - StadiumStadionστάδιο - - exhibitionNotes about an exhibition the object has been to - - on chromosomechromosoom nummerthe number corresponding to the chromosome on which the gene is located - - Bundeslandfederal stateprovincie - - certification datedatum certificatie - - in cemeteryop kerkhof - - variant or variationVariante oder Variationvariant of variatievariant or variation, for example all variations of a color - - pro team - - function end yearlaatste jaar functie - - minimum system requirementsMindestsystemanforderungen - - source elevation (μ) - - firstPopularVote - - station structurestation structuurType of station structure (underground, at-grade, or elevated). - - regional prefectureregionale Präfektur - - competitionWettbewerbcompetitioncompetición - - conviction date - - MusicBrainz artist idMusicBrainz artist idMusicBrainz artist idMusicBrainz artist idMusicBrainz artist. Applies to artists - - number of piers in waterAnzahl der Pfeiler in WasserNumber of piers standing in a river or other water in normal conditions. - - astrological signαστρολογικό ζώδιοSternzeichensigno astrológico - - resting place position - - geolocDepartment - - TradeMarkMarca - - first raceerstes Rennen - - binomial authority(学名命名者) - - same namegleicher Name - - row numberZeilennummerregelnummer van verwijzingRow # where the referenced resource is to be found in the source file - - EKATTE codeIndexing code used by the Bulgarian National Statistical Institute to identify populated placesЕдинен класификатор на административно-териториалните и териториалните единици - - editingBearbeitungeagarthóireacht - - DeathsNumber of deaths caused by pandemic - - vapor pressure (hPa)dampdruk (hPa) - - existenceExistenzείναιΤο είναι αντικατοπτρίζει αυτό που υπάρχει. - - regent ofSubject has served as the regent of another monarch - - orbital eccentricity - - committee in legislatureAusschuss in der LegislativeCommittee in the legislature (eg.: Committee on Economic and Monetary Affairs of the European Parliament). - - reference for politic dataReferenz für politische Daten - - siren number - - timetijdZeitχρόνοςΧρόνος χαρακτηρίζεται η ακριβής μέτρηση μιας διαδικασίας από το παρελθόν στο μέλλον. - - rebuilding yearherbouw jaar - - melting point (K)Schmelzpunkt (K)point de fusion (K)融点 (K) - - minimum area quote - - champion in single malechampion en simple hommeCampeón en simple hombreswinner of a competition in the single male session, to distinguish from the double session (as in tennis) - - roof heightHöhe Dach - - country rankRang LandPlace of the building in the list of the highest buildings in the countryDer Platz des Gebäudes in der Liste der höchsten Gebäude des Landes - - registrationAnmeldung - - number of competitorsAnzahl der Wettbewerber - - AOAOAOAO - - partTeil - - layout - - averageμέσος όροςDurchschnitt - - roadweg - - coach club - - team title - - neighboring municipalityNachbargemeindeaangrenzende gemeentemunicipío adjacente - - タイトルtítulodenominazionetiteltitleΤίτλοςTitel - - orbitsBahnen - - ChEMBLChEMBL is a manually curated chemical database of bioactive molecules with drug-like properties. - - Allocine IDID AllocineID of a film on AllocineID d'un film sur Allocine - - taoiseachtaoiseachhead of government of Ireland - - first winerster Sieg - - open access contentfrei zugänglicher InhaltenAvailability of open access content.Verfügbarkeit von frei zugänglichem Inhalten. - - parent companyMuttergesellschaft - - chief place - - powerMacht - - flash pointvlampuntlowest temperature at which a substance can vaporize and start burning - - australia open double - - distance to Edinburgh (μ)απόσταση από το Εδιμβούργο (μ) - - upper ageгорња старосна граница - - former namefrüherer Nameπροηγούμενο όνομα - - National Film AwardNationaler Filmpreis - - subsystemTeilsystem - - output - - ACT scoreACT σκορACT резултатmost recent average ACT scoresποιό πρόσφατες μέσες βαθμολογίες ACT - - caseFall - - coalitionKoalitionσυνασπισμόςΠαλαιότερα ο συνασπισμός χρησιμοποιούνταν ως στρατιωτικός όρος που υποδήλωνε την όμορη παράταξη πολεμιστών κατά την οποία ο κάθε στρατιώτης προφύλασσε τον διπλανό του με την ασπίδα του. - - spikeschmetternκαρφίsmaç - - area water (m2)oppervlakte water (m2)έκταση_υδάτων_περιοχής (m2)водена површина (m2) - - subsystem link - - ski tow - - old team coached - - burgemeestermayorδήμαρχοςmaireBürgermeister - - String designation of the WrittenWork describing the resourceAanduiding beschrijvend document - - manufacturerHerstellerκατασκευαστής - - year of reported revenue - - Nagroda Akademii FilmowejоскарAcademy AwardΒραβείο ακαδημίαςDuais an AcadaimhAcademy Award - - launch siteStartplatz - - Computing input - - manager season - - monument protection statusmonumentStatusThe 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.Aanduiding van het soort beschermingsregime. Bijv. 'rijksmonument' in Nederland of 'Monument Historique' in Belgie of Frankrijk - - associated bandσυνεργαζόμενο συγκρότημα - - floor countverdiepingenαριθμός ορόφων - - colour hex code of away jersey or its partsFarben Hex Code des Auswärtstrikots oder Teile diesesA colour represented by its hex code (e.g.: #FF0000 or #40E0D0). - - us open mixedUS Open микс дубл - - UCI codecodice UCIOfficial UCI code for cycling teams - - politicianPolitikerThe politician exercising this function.Der Politiker welcher dieses Amt hält (hielt). - - LCCN IdLibrary of Congress Control Number - - dynastyDynastiedynastie - - athletics disciplineLeichtathletikdisziplin - - lieutenancy - - total time person has spent in space (s)Gesamtzeit welche die Person im Weltraum verbracht hat (s) - - valvetrainVentilsteuerungdistribution (moteur) - - 宗教religiereligiãoreligionθρησκείαreligionReligion - - agglomeration populationпопулација агломерације - - Dutch artwork codecode RKD - - mount - - biome生物群系 - - NAACP Image Award - - aircraft fighterборбени авионμαχητικό αεροσκάφος - - IBDB IDThe Internet Broadway Database ID (IBDB ID) from ibdb.com. - - Screen Actors Guild Award - - ingredient name (literal)Main ingredient used to prepare a specific Food or Beverage. For strings use ingredientName, for objects use ingredient. - - tipotypeप्रकारtypeτύποςtypeTyp - - line length (μ)Linienlänge (μ)Length of the line. Wikipedians usually do not differentiate between track length and line lenght. - - birth signSternzeichen - - goals in national teamTore in der Nationalmannschaftinterland doelpunten代表得点 - - gas chambersNumber or description of gas chambers of a ConcentrationCamp - - GARDNumGARDNumGARDNumGARDNum - - number of pads - - share source - - wha draftWHA драфт - - other branchzijtak - - session numbernúmero da sessão - - KEGGBioinformatics resource for deciphering the genome. - - islandInselνησιά - - has input - - final lostFinale verloren - - oversight - - country with first satellite - - number of dependency - - music byMusik von - - event descriptionbeschrijving gebeurtenis - - khl draft team - - Gray pageRefers to the famous 1918 edition of Gray's Anatomy. - - galicianSpeakersDatedata da enquisa sociolingüísticaThe last inquiry date about linguistics uses.data da última enquisa sociolingüística. - - tournament of championsTurnier der Meister - - governorGouverneurκυβερνήτηςgouverneur - - race winsSiege - - champion in double malechampion en double hommesCampeón en doble hombreswinner of a competition in the male double session (as in tennis) - - media itemMultimediaelementA media file (such as audio, video or images) associated with the subject - - victim (resource)das Opfer (resource)жртва (resource)Specific (eg notable) person, or specific class of people (eg Romani) that are victim of a ConcentrationCamp, Criminal, SerialKiller, or some other atrocity - - gold medalistGoldmedaillengewinnermedalha de ourogouden medaille drager - - original danse score - - ski liftSkilift - - doubles rankingsDoppelrangliste - - incumbentAmtsinhaberplaatsbekleder - - Ordination - - mayor title of a hungarian settlement - - streekजिलाdistritodistrictπεριοχήBezirk - - Olympischer Eidolympic oath sworn bylecteur du serment olympique - - publicly accessibleöffentlich zugänglichdescribes in what way this site is accessible for public - - manager title - - CAS numbernuméro CASCAS番号Chemical Abstracts Service number. Applicable to ChemicalCompound or Biomolecule (eg Protein) - - crossesδιασχίζει - - orbital inclinationBahnneigung - - vertalertranslatorμεταφραστήςtraducteurÜbersetzerTranslator(s), if original not in English - - 職業beroepoccupationactivitéBeschäftigung - - miejsce urodzenia出生地geboorteplaatslloc de naixementbirth placeτόπος_γέννησηςáit bhreithelieu de naissanceGeburtsortwhere the person was born - - flag caption - - municipalityGemeindeplaatsmunicipalité - - locality of a switzerland settlement - - appearances in national teamεμφανίσεις στην εθνική ομάδαброј наступа у националном тиму - - webcastwebcastwebcastThe URL to the webcast of the Thing. - - Wikipage disambiguatesReserved for DBpedia. - - rank in final medal count - - startStart - - thumbnail caption - - operating income ($)Betriebsergebnis ($) - - IMDB idIMDB idimdb idIMDb idInternational Movie Database ID. Applies to Films, Actors, etc - - missionsMissionenαποστολές - - sharing out year - - source confluence mountain - - head cityville dirigeanteciudad a la cabezaадминистративни центар (град)city where stand the administrative powerville où siège le pouvoir administratif - - επιφάνεια απόReserved for DBpedia. - - sub-familyUnterfamilieonderfamilie - - aircraft helicopter multiroleMehrzweck-Hubschrauberελικοφόρο αεροσκάφος πολλαπλών ρόλωνвишенаменски хеликоптер - - facility ididentificativo dell'impianto - - outskirts - - organ systemthe organ system that a anatomical structure belongs to - - dec - - lunar surface time (s) - - number of clubsAnzahl der Clubsnombre de clubsnumero de clubs - - majority floor leadernumber of office holder - - lowest mountainχαμηλώτερο βουνόmontagne la plus basse - - activityδραστηριότηταAktivitätактивност - - Number Of Federal DeputiesAnzahl der Bundesabgeordnetennumero de deputados federais - - mouth state - - novelRoman - - Wikipage page IDReserved for DBpedia. - - Gene Location遺伝子座 - - retired rocket - - alternative namealternativer Namenaamsvariantалтернативни називAlternative naming of anything not being a Person (for which case foaf:nick should be used). - - catererhoreca - - aircraft helicopterHubschrauberхеликоптерελικοφόρο αεροσκάφος - - first appearance - - blazon ratio - - catch - - livingPlace - - colour hex code of home jersey or its partsFarben Hex Code des Heimtrikots oder Teile diesesA colour represented by its hex code (e.g.: #FF0000 or #40E0D0). - - sous-chefchefchefchef cuisinierKoch - - australia open single - - seasonSaisonsezon - - top scorerTorschützenkönigen golcü - - reign name - - origo - - neighbourhood of a hungarian settlement - - federationVerband - - gini coefficient categorycategoria do coeficiente de Gini - - maintained bygewartet von - - station EVA duration (s) - - source mountain - - parliament type - - mir dockings - - BelieversGläubige - - horse riding discipline - - Member of ParliamentAbgeordnete - - human development index as ofÍndice de desenvolvimento humano em - - publicationVeröffentlichung - - winter appearancesзимски наступи - - premiere dateDate the play was first performed. - - city link - - SELIBR IdAuthority data from the National Library of Sweden - - administrative centerVerwaltungszentrumадминистративни центар - - година изградњеbouwjaaryear of constructionέτος κατασκευήςBaujahrThe year in which construction of the Place was finished.Година када је изградња нечега завршена.Το έτος στο οποίο ολοκληρώθηκε η κατασκευή ενός μέρους. - - landeshauptmann - - area urban (m2)Stadtgebiet (m2)αστική περιοχή (m2)урбана површина (m2) - - curatorKuratorconservator - - rodzina科_(分類学)familiefamilyοικογένειαfamillefamilie - - executive producerAusführender Produzent - - transmissionGetriebeμετάδοση - - personName - - number of participating female athletesZahl der teilnehmenden Sportlerinnenαριθμός συμμετεχόντων γυναικών αθλητριώνnombre d'athlètes participant féminins - - road start directionHimmelsrichtung des WegstartsEnd of the route. For U.S. roads, this should be either "South" or "West" per the standards set by the U.S. Roads project.Himmelsrichtung des Anfangs des Verkehrsweges. - - final lost team - - meeting roadzusammentreffende StraßeA road that crosses another road at the junction.Eine Straße die an der Kreuzung eine andere Straße kreuzt. - - sport disciplineSportdisziplindiscipline sportivetak van sportthe sport discipline the athlete practices, e.g. Diving, or that a board member of a sporting club is focussing at - - wins at KLPGAпобеде на KLPGA - - film versionverfilmd als - - able to grindmahlenfähigmaalvaardig - - highest placehöchster Platz - - canonized placeheiligverklaring plaats - - settlementSiedlungluogo abitato (insediamento) - - number of entrancesAnzahl der Eingängeαριθμός εισόδωνaantal ingangen - - most successfullam erfolgreichstenen başarılı - - sexual orientationsexuelle Orientierungorientação sexual - - senior - - value coordinate in the HSV colour space - - international affiliationafiliacao internacional - - Penalties Team B - - character in playName of a character in play. - - number of trailsコース数Number of trails in ski area. - - size blazon - - area of water (m2)површина воде (m2) - - torque output (Nm) - - name in ancient Greekgriechische Nameoudgriekse naam - - number of episodesAnzahl der Episodenαριθμός επειδοδίων - - cannon number - - campusCampusπανεπιστημιούποληΠανεπιστημιούπολη εννοείται κάθε πολεοδομικό συγκρότημα που προσφέρει οικιστικές, διδακτικές και ερευνητικές διευκολύνσεις στους φοιτητές ενός πανεπιστημίου. - - engine type - - mouth district - - prefectPräfekt - - source place - - bgafd idbgafd idcódigo no bgafd - - limit - - silver medal singleSilbermedaille Einzel - - wimbledon doubleвимблдон дубл - - governor general - - population rural - - fecha de iniciostartdatumstart datedate de débutStartdatumThe start date of the event. - - former highschoolehemalige Highschool - - continental tournament - - silver medal mixedSilbermedaille gemischt - - cantonKantonkantoncanton - - political party in legislaturepolitische Partei in der LegislativePolitical party in the legislature (eg.: European People's Party in the European Parliament). - - Ariel AwardAriel AwardARIEL награда - - amateur victoryaматерских победа - - refseq proteinrefseq protein - - wha draft teamWHA тим који је драфтовао играча - - person that first ascented a mountainPerson , die zuerst einen Berg bestiegen hat - - total area rankingσυνολική περιοχήукупна површина ранг - - olympic games winsoverwinningen op de Olympische Spelen - - main domain - - skrótскраћеницаafkortingabbreviationσυντομογραφίαgiorrúchánabréviationAbkürzung - - year of first ascentJahr der Erstbesteigungjaar van de eerste beklimming - - route numberRoutennummerThe number of the route. - - secondPopularVote - - frequently updatedhäufig aktualisiert - - national teamNationalmannschaftnationaal team代表国 - - film number - - co executive producer - - chainKetteαλυσίδαThe (business) chain this instance is associated with. - - V_hb - - serving railway linespoorlijnenangebundene EisenbahnlinieRailway services that serve the station. - - current cityaktuelle Stadt - - continental tournament bronze - - architektarchitettoархитектаarchitectarchitectαρχιτέκτοναςailtireархитекторarchitecteArchitekt - - flag bearerFahnenträger - - apoapsis (μ)Apoapsisdistanz (μ)απόαψης (μ)апоапсис (μ) - - ancho (μ)ширина (μ)breedte (μ)width (μ)πλάτος (μ)Breite (μ) - - minimum discharge (m³/s) - - capital place - - deputyStellvertreter - - date when the island has been discoveredDatum als die Insel entdeckt wurdedatum waarop het eiland is ontdekt - - lunar landing site - - is part of military conflictist Teil des militärischen Konflikts - - school board - - componentKomponente - - rebuilding date - - الشبكةbroadcast networkτηλεοπτικό κανάλιchaîne de télévision généralisteSendergruppeThe parent broadcast network to which the broadcaster belongs.Die Sendergruppe zu dem der Rundfunkveranstalter gehört. - - decommissioning datefecha de baja de servicio - - military commandMilitärkommandoFor persons who are notable as commanding officers, the units they commanded. Dates should be given if multiple notable commands were held. - - number of settlementZahl der Siedlungen - - full competition - - introduction dateEinführungsdatum - - minimum preparation time (s)Minimum preparation time of a recipe / Food - - population density rural (/sqkm) - - longNamevolledige naam - - destinationZielπροορισμός - - team managerTeam-Manager - - market capitalisation ($)Marktkapitalisierung ($) - - appointer - - top floor heightHöhe der höchsten Etage - - year of elevation into the nobilityJahr der Erhebung in den Adelsstandjaar van verheffing in de adelstand - - ethnic groups in year - - firstLeaderπρώτος ηγέτης - - battle honours - - clip up number - - chairpersonVorsitzendervoorzitter - - first publication yearJahr der Erstausgabeπρώτο έτος δημοσίευσηςYear of the first publication.Jahr der ersten Veröffentlichung des Periodikums.Έτος της πρώτης δημοσίευσης. - - kolor oczucor dos olhoseye colorχρώμα ματιούdath súileAugenfarbe - - partial failed launchestotal number of launches resulting in partial failure - - dead in fight place - - jutsu - - name dayονομαστική εορτήimieniny - - mill code NLmolen code NL - - shoe sizeSchuhgrößeschoenmaatnúmero do sapato - - gene location endlocus eindpunt遺伝子座のエンド座標the end of the gene - - champion in doublekampioen dubbelchampion en doubleCampeón en doblewinner of a competition in the double session (as in tennis) - - biggest citygrößte Stadt - - gamesspilSpieleαγώνες - - continental tournament gold - - locationNameLocation of the thing as string. Use "location" if the location is a resource - - sire - - valueWertvaleurвредност - - rivalRivale - - победеzegeswinsνίκεςSiege - - fuel consumptionκατανάλωση καυσίμουKraftstoffverbrauchbrandstofverbruik - - long distance piste number - - mascotMaskottchenmascotemascottesomething, especially a person or animal, used to symbolize a sports team, company, organization or other group.Animal, poupée, objets divers servant de porte-bonheur ou d’emblème. - - project budget total ($)Gesamtprojektbudget ($)The total budget of the research project. - - okres układu okresowegoperíode de la taula periòdicaelement periodpeiriad an tábla pheiriadaighпериод периодической таблицыPeriode des PeriodensystemsIn 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 la taula periòdica dels elements, un període és una filera de la taulaUnter einer Periode des Periodensystems versteht man in der Chemie jede Zeile des Periodensystems der Elemente.строка периодической системы химических элементов, последовательность атомов по возрастанию заряда ядра и заполнению электронами внешней электронной оболочки. - - left tributarylinker Nebenflussαριστεροί_παραπόταμοι - - shoots - - 色名colour nameόνομα χρώματοςnom de couleurFarbennameA colour represented by a string holding its name (e.g.: red or green).Ένα χρώμα που αναπαρίσταται από μια ακολουθία χαρακτήρων που αντιπροσωπεύει το όνομά του (π.χ.: κόκκινο ή πράσινο). - - start year of sales - - introducedeingeführt - - autonomyAutonomieαυτονομία - - Modus the game can be played in - - population quote - - initally used foranfänglich verwendetusage initialuso inicialInitial use of the architectural structure. - - most down point of a norwegian settlement - - dayTagημέραjour - - filmfilmfilmταινίαfilmfilm - - Golden Calf Award - - trusteeTreuhänder - - other nameanderer Name - - selection yearAuswahljahr - - olympic games goldgoud op de Olympische Spelen - - commissioning datefecha de entrada en servicio - - minimum areaMindestfläche - - playing time (s)Spielzeit (s)speeltijd (s) - - super-familysuperfamilie - - function start year - - gallery itemGalerieelementA file contained in a gallery - - capital mountain - - decoration - - запремина (μ³)volume (μ³)volume (μ³)όγκος (μ³)volume (μ³)Volumen (μ³) - - stellar classificationspectraalklasse - - Wikipage modification datetimeReserved for DBpedia '''''' - - growing grape - - instrumentInstrumentόργανοinstrument - - lowest altitude最低地点標高 - - place of worshipKultstättegebedsplaatsA religious administrative body needs to know which places of worship itEen kerkelijke organisatie houdt bij welke gebedshuizen ze heeft - - trainer yearstrainersjaren - - production end yearproductie eindjaar - - acting headteacherδιευθυντής σχολείουвд шефа наставе - - τύπος μύλουmill typemolen-type - - Peabody Award - - koledżcollegeκολλέγιοhaute écoleCollege - - bridge carriesγέφυρα μεταφοράςType of vehicles the bridge carries. - - архипелагarchipelarchipelagoαρχιπέλαγοςArchipel - - kind of criminal action - - primary fuel type - - short prog competition - - other - - mayor councillor - - located in arealandstreek - - ski piste numberSkipistennummer - - date of burialDatum der Beerdigungdatum begrafenis - - ICDOICDO - - number of entities of Person class born in the placepočet entit třídy Osoba narozených na konkrétním místě - - number of launchesAnzahl von Starts - - construction materialυλικό κατασκευήςbouwmateriaalBaumaterialConstruction material (eg. concrete, steel, iron, stone, brick, wood). - - displacement (μ³)cilindrada (μ³) - - project typeProjekttypThe 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. - - buildingTypeΤύπος κτιρίουsoort gebouwType is too general. We should be able to distinguish types of music from types of architectureType is te algemeen. We moeten soorten muziek van soorten gebouwen kunnen onderscheidenΟ τύπος είναι πολύ γενικό.Θα πρέπει να είναι σε θέση να διακρίνουν τα είδη της μουσικής από τους τύπους της αρχιτεκτονικής - - reign - - date disappearance of a populated place - - City district code - - mountain rangeGebirgebergketen - - final publication yearJahr der finalen AusgabeYear of the final publication.Jahr der allerletzten Veröffentlichung des Periodikums. - - east placelieu à l'estindique un autre lieu situé à l'est.indicates another place situated east. - - costume designercostumistathe person who is responsible for the film costume design - - religious head label - - distance (μ)Entfernung (μ) - - davis cup - - last pro matcherstes Profispiel - - black coordinate in the CMYK space - - a municipality's new nameneuer Name einer Gemeindenieuwe gemeentenaam - - mottolemamottoσύνθημαdeviseMotto - - Footednesshabilidade com o pé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. - - death causedoodsoorzaakTodesursacheαιτία_θανάτου - - patentPatentpatente - - polePol - - oldcode - - decayαποσύνθεση - - predecessorvoorgangerVorgänger前任者 - - NSSDC ID - - iafd idiafd idcódigo no iafd - - showJudge - - duur (s)runtime (s)διάρκεια (s)durée (s)Laufzeit (s) - - strefa czasowahuso horariotijdzonefuso horariozona horàriatime zoneζώνη_ώρας1fuseau horaireZeitzone - - ranking winsSiege in Ranglistenturnieren - - performerKünstler - - closing dateημερομηνία κλεισίματοςdate de fermeture - - boroughBezirkδήμοςstadsdeel - - agglomeration areaBallungsraumобласт агломерације - - highschoolGymnasium - - cyanic coordinate in the CMYK space - - wins at sunпобеде на SUN - - power output (W)Ausgangsleistung (W) - - building end yearbouw eindjaarέτος λήξης κατασκευής - - Indicates an annotation associated with this document - - maximale Tiefe (μ)μέγιστο_βάθος (μ)maximum depth (μ)profondeur maximale (μ)Source of the value can be declare by . - - rank of a population - - event periodVeranstaltungsdauerperiodepériode - - notableIdea - - unique reference number (URN)DfE unique reference number of a school in England or Wales - - comitat of a settlement - - stylistic originstilistische Herkunftorigens estilísticas - - liczba atomowaatoomnummeratomic numberuimhir adamhachOrdnungszahlliczba określająca, ile protonów znajduje się w jądrze danego atomuhet atoomnummer of atoomgetal (symbool: Z) geeft het aantal protonen in de kern van een atoom aan.the ratio of the average mass of atoms of an element (from a single given sample or source) to 1⁄12 of the mass of an atom of carbon-12Is eard is uimhir adamhach (Z) adaimh ann ná líon na bprótón i núicléas an adaimh sindie Anzahl der Protonen im Atomkern eines chemischen Elements, deshalb auch Protonenzahl. - - leadershipFührung - - penalty score - - sentenceSatz - - spacestationraumstationspace station that has been visited during a space missionRaumstation, die während einer Raummission besucht wurde - - позивни бројnetnummerदूरभाष कोडarea codeκωδικός_περιοχήςместный телефонный кодindicatif régionalVorwahlArea code for telephone numbers. Use this not phonePrefix - - cooling systemKühlsystem - - free - - pastor - - merged withzusammengeschlossen - - SIMC codeShould be a datatype property - - designer company - - engineMotorμηχανήmotor - - AFI Awardβραβείο AFIAFI награда - - endangered sincegefährdet seitem perigo desde - - prove code - - announcedFrom - - watercourseWasserlaufводоток - - ISSNISSNissnissnISSNISSNInternational Standard Serial Number (ISSN) - - Dutch RKD codeCode Rijksbureau voor Kunsthistorische Documentatie - - lethal when given to rabbitsdodelijk voor konijnen - - height above average terrain (μ) - - producentproducentproducerπαραγωγόςпродюсерProduzentThe producer of the creative work. - - railway line using tunnelTunnel benutzende EisenbahnlinieRailway line that is using the tunnel. - - piscicultural population - - createderstellt - - ChEBIA unique identifier for the drug in the Chemical Entities of Biological Interest (ChEBI) ontology - - relief - - digital channelDigitalkanalΨηφιακό κανάλιΈνα ψηφιακό κανάλι επιτρέπει την μετάδοση δεδομένων σε ψηφιακή μορφή. - - tipo de aviónтип летелицеaircraft typeτύπος αεροσκάφουςFlugzeugtyp - - leader titleτίτλος_αρχηγούशासक पद - - jure language - - urban areaStadtgebietурбано подручје - - prospect league - - beatified placezalig verklaard plaats - - maiden voyage - - type of yeastHefeartegistsoort - - nomineeKandidat - - ept title - - monthμήναςMonat - - architectural movementArchitekturbewegungархитектонски покрет - - destruction datesloopdatumημερομηνία καταστροφής - - olympic oath sworn by judge - - reopening yearheropening jaarYear of reopening the architectural structure. - - impact factor as ofImpact Factor ist vonCensus year of the imapct factor.Erhebungsjahr des Impact Factors. - - number of members as ofnumero de membros em - - chairmanVorsitzenderπρόεδρος - - ncaa season - - danse competition - - linguistics tradition - - note on place of burial - - name in Yue Chinesenaam in het Kantonees Chinees - - productproductProduktπροϊόν - - приступtoegangaccessπρόσβασηZugriff - - American Comedy Awardαμερικάνικο βραβείο κωμωδίαςамеричка награда за комедију - - demolition dateημερομηνία κατεδάφισηςThe date the building was demolished. - - lunar sample mass (g) - - affiliate - - authorityBehördeautoriteitαρχή - - UN numberUN Nummernuméro ONUfour-digit numbers that identify hazardous substances, and articles in the framework of international transport - - OdorGeruch - - drains to - - number of MuscialArtist class (entities) in DBpediapočet entit třídy MuscialArtist v DBpedii - - film audio typespecifies the audio type of the film i.e. 'sound' or 'silent' - - longtypecan be used to include more informations e.g. the name of the artist that a tribute album is in honor of - - source confluence place - - parishGemeinde - - campus size (m2) - - genderφύλοGeschlechtgeslacht - - apofocusapofocus - - head chefKüchenchefchef-kok - - area rural (m2)αγροτική περιοχή (m2)рурална област (m2) - - related placessoortgelijke plaatsenThis property is to accommodate the list field that contains a list of, e.g., monuments in the same townDeze property is voor de lijst van monumenten die horen bij het monument van de infobox - - best year wsop - - wpt final tableWPT финале - - 綱_(分類学)clase (biología)klasseclassisclasse (biologie)the living thing class (from the Latin "classis"), according to the biological taxonomyTroisième niveau de la classification classique (c’est-à-dire n’utilisant pas la notion de distance génétique) des espèces vivantes (voir systématique). - - decide date - - quotationZitatcitationcitaA 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.Une citation est la reproduction d'un court extrait d'un propos ou d'un écrit antérieur dans la rédaction d'un texte ou dans une forme d'expression orale.En su acepción más amplia, una cita es un recurso retórico que consiste en reproducir un fragmento de una expresión humana respetando su formulación original. - - previous infrastructurevorherige Infrastrukturvorige infrastructuur - - draft league - - hair colourHaarfarbe - - school patron - - co producerCo-Produzent - - type of storageArt der Lagerunglagering - - tvShowFernsehsendung - - barangays - - manager years監督年 - - mainspan (μ)portée principale (μ)κύρια καμάρα (μ) - - number of crewαριθμός πληρώματοςaantal bemanningsleden - - average speed (kmh)Durchschnittsgeschwindigkeit (kmh)μέση ταχύτητα (kmh)The average speed of a thing.Η μέση ταχύτητα ενός πράγματος. - - current statusaktueller Statushuidige status - - is part of wine regionist ein Teil der Weinregion - - subgenusUntergattungondergeslachtA rank in the classification of organisms, below genus ; a taxon at that rank - - discharge average (m³/s) - - capacityKapazitätcapacitéNumber of people who can be served by a Train or other service; or participate in a SoccerClub, CricketTeam, etc - - aita codeAITA код - - date closedτερματισμός_λειτουργίας - - number of holes - - mill code NLmolen code NLmills code from the central Dutch database on millsunieke code voor molens in www.molendatabase.nl - - romanianNewLeu - - - milliampere - - - megawattHour - - - azerbaijaniManat - - - latvianLats - - - rod - - - newtonMetre - - - cubicDecimetre - - - nicaraguanCórdoba - - - calorie - - - libyanDinar - - - georgianLari - - - imperialBarrelOil - - - standardAtmosphere - - - guatemalanQuetzal - - - gram - - - papuaNewGuineanKina - - - cubicInch - - - hectare - - - indianRupee - - - pond - - - gigawattHour - - - kilogramPerCubicMetre - - - squareMile - - - hungarianForint - - - mauritanianOuguiya - - - lebanesePound - - - bermudianDollar - - - russianRouble - - - guyanaDollar - - - northKoreanWon - - - FlowRate - - - egyptianPound - - - cambodianRiel - - - footPerMinute - - - newZealandDollar - - - volt - - - bit - - - cubanPeso - - - bosniaAndHerzegovinaConvertibleMarks - - - iraqiDinar - - - xsd:gMonthDay - - - thaiBaht - - - squareKilometre - - - Area - - - icelandKrona - - - megametre - - - poundPerSquareInch - - - furlong - - - Voltage - - - kilolitre - - - usDollar - - - Volume - - - perCent - - - kilogram - - - maldivianRufiyaa - - - gramPerMillilitre - - - ugandaShilling - - - arubanGuilder - - - milePerHour - - - ounce - - - gigametre - - - millihertz - - - microvolt - - - saudiRiyal - - - xsd:string - - - kiloampere - - - xsd:double - - - dominicanPeso - - - kuwaitiDinar - - - decimetre - - - cubicMile - - - australianDollar - - - poundSterling - - - lightYear - - - fathom - - - poundal - - - kilopond - - - Length - - - kilometrePerSecond - - - kilovolt - - - imperialGallon - - - engineConfiguration - - - PopulationDensity - - - stone - - - erg - - - minute - - - southAfricanRand - - - xsd:integer - - - turkishLira - - - hand - - - mongolianTögrög - - - ghanaianCedi - - - macedonianDenar - - - kilonewton - - - metrePerSecond - - - fuelType - - - brazilianReal - - - brakeHorsepower - - - bangladeshiTaka - - - belizeDollar - - - decibar - - - centimetre - - - haitiGourde - - - samoanTala - - - Mass - - - Force - - - centilitre - - - megabit - - - cubicMetrePerSecond - - - armenianDram - - - venezuelanBolívar - - - chileanPeso - - - xsd:time - - - philippinePeso - - - croatianKuna - - - trinidadAndTobagoDollar - - - hectometre - - - tajikistaniSomoni - - - giganewton - - - gigahertz - - - cubicHectometre - - - megabyte - - - namibianDollar - - - kyrgyzstaniSom - - - singaporeDollar - - - gigalitre - - - japaneseYen - - - inch - - - pascal - - - megavolt - - - Speed - - - squareFoot - - - kilohertz - - - estonianKroon - - - millibar - - - serbianDinar - - - gibraltarPound - - - nautialMile - - - renminbi - - - bahrainiDinar - - - kilogramPerLitre - - - footPound - - - millilitre - - - footPerSecond - - - megalitre - - - acre - - - nigerianNaira - - - barbadosDollar - - - gramPerKilometre - - - Energy - - - unitedArabEmiratesDirham - - - swaziLilangeni - - - kilopascal - - - perMil - - - gigawatt - - - nanonewton - - - kilobit - - - djiboutianFranc - - - uzbekistanSom - - - hectopascal - - - foot - - - polishZłoty - - - Density - - - algerianDinar - - - xsd:gDay - - - norwegianKrone - - - canadianDollar - - - kilometre - - - turkmenistaniManat - - - degreeCelsius - - - danishKrone - - - xsd:gYearMonth - - - decametre - - - hour - - - metre - - - belarussianRuble - - - euro - - - seychellesRupee - - - swedishKrona - - - myanmaKyat - - - centralAfricanCfaFranc - - - terawattHour - - - rdf:langString - - - ampere - - - ElectricCurrent - - - Ratio - - - cubicMetrePerYear - - - mozambicanMetical - - - angolanKwanza - - - squareNauticalMile - - - nanometre - - - costaRicanColon - - - newton - - - cubicYard - - - FuelEfficiency - - - kazakhstaniTenge - - - pakistaniRupee - - - congoleseFranc - - - megapond - - - millisecond - - - hectolitre - - - mile - - - omaniRial - - - mauritianRupee - - - cubicDecametre - - - second - - - saintHelenaPound - - - xsd:boolean - - - moldovanLeu - - - millivolt - - - kilometrePerHour - - - cubicKilometre - - - kilowatt - - - lithuanianLitas - - - southKoreanWon - - - newtonCentimetre - - - caymanIslandsDollar - - - malagasyAriary - - - Currency - - - somaliShilling - - - bahamianDollar - - - joule - - - albanianLek - - - kenyanShilling - - - usBarrel - - - zimbabweanDollar - - - kilowattHour - - - tonneForce - - - xsd:anyURI - - - carat - - - microampere - - - megapascal - - - decilitre - - - gigabyte - - - kilometresPerLitre - - - swissFranc - - - usGallon - - - squareInch - - - microlitre - - - vanuatuVatu - - - xsd:nonPositiveInteger - - - rwandaFranc - - - hertz - - - knot - - - nanosecond - - - kilocalorie - - - kelvin - - - comorianFranc - - - xsd:gMonth - - - newtonMillimetre - - - gramForce - - - macanesePataca - - - terabyte - - - cubicFeetPerYear - - - cubicMetre - - - eastCaribbeanDollar - - - uruguayanPeso - - - sãoToméAndPríncipeDobra - - - guineaFranc - - - millinewton - - - bar - - - lesothoLoti - - - watt - - - indonesianRupiah - - - argentinePeso - - - kilogramForce - - - zambianKwacha - - - yard - - - yemeniRial - - - jamaicanDollar - - - degreeFahrenheit - - - wattHour - - - sudanesePound - - - liberianDollar - - - bhutaneseNgultrum - - - grain - - - poundFoot - - - sierraLeoneanLeone - - - milliwattHour - - - kilolightYear - - - bulgarianLev - - - israeliNewSheqel - - - bolivianBoliviano - - - capeVerdeEscudo - - - burundianFranc - - - squareYard - - - gramPerCubicCentimetre - - - squareDecimetre - - - horsepower - - - xsd:negativeInteger - - - Power - - - jordanianDinar - - - squareCentimetre - - - newTaiwanDollar - - - litre - - - millipascal - - - pferdestaerke - - - colombianPeso - - - inchPound - - - netherlandsAntilleanGuilder - - - czechKoruna - - - syrianPound - - - squareDecametre - - - tunisianDinar - - - inhabitantsPerSquareMile - - - fijiDollar - - - astronomicalUnit - - - cubicCentimetre - - - iranianRial - - - cfpFranc - - - inhabitantsPerSquareKilometre - - - Torque - - - valvetrain - - - kilobyte - - - millicalorie - - - meganewton - - - falklandIslandsPound - - - xsd:nonNegativeInteger - - - Temperature - - - moroccanDirham - - - terahertz - - - squareHectometre - - - micrometre - - - milligramForce - - - tanzanianShilling - - - botswanaPula - - - xsd:positiveInteger - - - xsd:dateTime - - - ukrainianHryvnia - - - paraguayanGuarani - - - laoKip - - - cubicFoot - - - kilojoule - - - megawatt - - - surinamDollar - - - chain - - - byte - - - squareMetre - - - xsd:float - - - cubicFeetPerSecond - - - megacalorie - - - milligram - - - honduranLempira - - - xsd:date - - - squareMillimetre - - - Pressure - - - gambianDalasi - - - xsd:gYear - - - slovakKoruna - - - malaysianRinggit - - - pound - - - mexicanPeso - - - day - - - tonganPaanga - - - sriLankanRupee - - - nepaleseRupee - - - afghanAfghani - - - cubicMillimetre - - - megahertz - - - ethiopianBirr - - - Time - - - panamanianBalboa - - - westAfricanCfaFranc - - - bruneiDollar - - - LinearMassDensity - - - imperialBarrel - - - millipond - - - degreeRankine - - - tonne - - - millimetre - - - Frequency - - - qatariRial - - - hongKongDollar - - - peruvianNuevoSol - - - malawianKwacha - - - solomonIslandsDollar - - - usBarrelOil - - - InformationUnit - - - milliwatt - - - eritreanNakfa - - - microsecond - - - lengte (mm)length (mm)μήκος (mm)longueur (mm)Länge (mm) - - - - - wheelbase (mm)Radstand (mm)међуосовинско растојање (mm) - - - - - total mass (kg)Gesamtmasse (kg) - - - - - area urban (km2)Stadtgebiet (km2)αστική περιοχή (km2)урбана површина (km2) - - - - - lunar sample mass (kg) - - - - - запремина (km3)volume (km3)volume (km3)όγκος (km3)volume (km3)Volumen (km3) - - - - - запремина (μ³)volume (μ³)volume (μ³)όγκος (μ³)volume (μ³)Volumen (μ³) - - - - - cargo water (kg) - - - - - ancho (mm)ширина (mm)breedte (mm)width (mm)πλάτος (mm)Breite (mm) - - - - - CO2 emission (g/km) - - - - - mass (kg)Masse (kg)μάζα (kg) - - - - - višina (mm)身長 (mm)højde (mm)hoogte (mm)altura (mm)height (mm)ύψος (mm)hauteur (mm)Höhe (mm) - - - - - periapsis (km)Periapsisdistanz (km) - - - - - mass (kg)Masse (kg)μάζα (kg) - - - - - 体重 (kg)vægt (kg)тежина (kg)gewicht (kg)peso (kg)weight (kg)βάρος (kg)poids (kg)Gewicht (kg) - - - - - višina (mm)身長 (mm)højde (mm)hoogte (mm)altura (mm)height (mm)ύψος (mm)hauteur (mm)Höhe (mm) - - - - - docked time (μ) - - - - - apoapsis (km)Apoapsisdistanz (km)απόαψης (km)апоапсис (km) - - - - - mass (kg)Masse (kg)μάζα (kg) - - - - - diameter (mm)diameter (mm)διάμετρος (mm)diamètre (mm)Durchmesser (mm) - - - - - original maximum boat length (μ) - - - - - station visit duration (ω) - - - - - cargo fuel (kg) - - - - - minimum discharge (m³/s) - - - - - periapsis (km)Periapsisdistanz (km) - - - - - 沸点 (K)kookpunt (K)boiling point (K)σημείο βρασμού (K)point d'ébullition (K)Siedepunkt (K) - - - - - ancho (mm)ширина (mm)breedte (mm)width (mm)πλάτος (mm)Breite (mm) - - - - - ancho (mm)ширина (mm)breedte (mm)width (mm)πλάτος (mm)Breite (mm) - - - - - apoapsis (km)Apoapsisdistanz (km)απόαψης (km)апоапсис (km) - - - - - cuenca hidrográfica (km2)waterscheiding (km2)watershed (km2)λεκάνη_απορροής (km2)Wasserscheide (km2) - - - - - mass (kg)Masse (kg)μάζα (kg) - - - - - 体重 (kg)vægt (kg)тежина (kg)gewicht (kg)peso (kg)weight (kg)βάρος (kg)poids (kg)Gewicht (kg) - - - - - maximum boat length (μ)μέγιστο_μήκος_πλοίου (μ) - - - - - mean temperature (K)Durchschnittstemperatur (K)μέση θερμοκρασία (K) - - - - - area metro (km2)περιοχή μετρό (km2)метрополска област (km2) - - - - - total time person has spent in space (m)Gesamtzeit welche die Person im Weltraum verbracht hat (m) - - - - - discharge average (m³/s) - - - - - diameter (μ)diameter (μ)διάμετρος (μ)diamètre (μ)Durchmesser (μ) - - - - - ancho (mm)ширина (mm)breedte (mm)width (mm)πλάτος (mm)Breite (mm) - - - - - 体重 (kg)vægt (kg)тежина (kg)gewicht (kg)peso (kg)weight (kg)βάρος (kg)poids (kg)Gewicht (kg) - - - - - population metro density (/sqkm)bevolkingsdichtheid (/sqkm) - - - - - lengte (mm)length (mm)μήκος (mm)longueur (mm)Länge (mm) - - - - - ancho (mm)ширина (mm)breedte (mm)width (mm)πλάτος (mm)Breite (mm) - - - - - mass (kg)Masse (kg)μάζα (kg) - - - - - distance traveled (km)Zurückgelegte Entfernung (km)afgelegde afstand (km) - - - - - cylinder bore (mm) - - - - - bevolkingsdichtheid (/sqkm)घनत्व (/sqkm)population density (/sqkm)πυκνότητα_πληθυσμού (/sqkm)Bevölkerungsdichte (/sqkm) - - - - - višina (mm)身長 (mm)højde (mm)hoogte (mm)altura (mm)height (mm)ύψος (mm)hauteur (mm)Höhe (mm) - - - - - maximum discharge (m³/s) - - - - - maximum temperature (K)Maximaltemperatur (K)μέγιστη θερμοκρασία (K) - - - - - periapsis (km)Periapsisdistanz (km) - - - - - total cargo (kg) - - - - - free flight time (μ) - - - - - lengte (mm)length (mm)μήκος (mm)longueur (mm)Länge (mm) - - - - - total time person has spent in space (μ)Gesamtzeit welche die Person im Weltraum verbracht hat (μ) - - - - - укупна површина (km2)oppervlakte (km2)area total (km2)έκταση περιοχής (km2)superficie (km2)Fläche (km2) - - - - - discharge (m³/s)εκροή (m³/s)uitstoot (m³/s) - - - - - torque output (Nm) - - - - - piston stroke (mm) - - - - - lunar surface time (ω) - - - - - 沸点 (K)kookpunt (K)boiling point (K)σημείο βρασμού (K)point d'ébullition (K)Siedepunkt (K) - - - - - maximum boat beam (μ)μέγιστο_πλάτος_πλοίου (μ) - - - - - 密度 (μ3)densità (μ3)densidade (μ3)density (μ3)πυκνότητα (μ3)densité (μ3)Dichte (μ3) - - - - - fuel capacity (l)χωρητικότητα καυσίμου (l)Kraftstoffkapazität (l) - - - - - maximum temperature (K)Maximaltemperatur (K)μέγιστη θερμοκρασία (K) - - - - - mass (kg)Masse (kg)μάζα (kg) - - - - - bevolkingsdichtheid (/sqkm)घनत्व (/sqkm)population density (/sqkm)πυκνότητα_πληθυσμού (/sqkm)Bevölkerungsdichte (/sqkm) - - - - - lunar orbit time (ω)Mondumlaufzeit (ω) - - - - - 密度 (μ3)densità (μ3)densidade (μ3)density (μ3)πυκνότητα (μ3)densité (μ3)Dichte (μ3) - - - - - diameter (μ)diameter (μ)διάμετρος (μ)diamètre (μ)Durchmesser (μ) - - - - - duur (m)runtime (m)διάρκεια (m)durée (m)Laufzeit (m) - - - - - mass (kg)Masse (kg)μάζα (kg) - - - - - višina (mm)身長 (mm)højde (mm)hoogte (mm)altura (mm)height (mm)ύψος (mm)hauteur (mm)Höhe (mm) - - - - - mean radius (km)durchschnittlicher Radius (km)μέση ακτίνα (km) - - - - - minimum temperature (K)geringste Temperatur (K)ελάχιστη θερμοκρασία (K) - - - - - višina (mm)身長 (mm)højde (mm)hoogte (mm)altura (mm)height (mm)ύψος (mm)hauteur (mm)Höhe (mm) - - - - - cargo gas (kg) - - - - - mean radius (km)durchschnittlicher Radius (km)μέση ακτίνα (km) - - - - - запремина (μ³)volume (μ³)volume (μ³)όγκος (μ³)volume (μ³)Volumen (μ³) - - - - - CMP EVA duration (ω) - - - - - population urban density (/sqkm) - - - - - orbital period (μ)Umlaufzeit (μ)Περίοδος περιφοράς (μ) - - - - - lengte (mm)length (mm)μήκος (mm)longueur (mm)Länge (mm) - - - - - melting point (K)Schmelzpunkt (K)point de fusion (K)融点 (K) - - - - - diameter (μ)diameter (μ)διάμετρος (μ)diamètre (μ)Durchmesser (μ) - - - - - campus size (km2) - - - - - minimum temperature (K)geringste Temperatur (K)ελάχιστη θερμοκρασία (K) - - - - - ancho (mm)ширина (mm)breedte (mm)width (mm)πλάτος (mm)Breite (mm) - - - - - top speed (kmh)Höchstgeschwindigkeit (kmh) - - - - - original maximum boat beam (μ) - - - - - diameter (μ)diameter (μ)διάμετρος (μ)diamètre (μ)Durchmesser (μ) - - - - - mean temperature (K)Durchschnittstemperatur (K)μέση θερμοκρασία (K) - - - - - lower earth orbit payload (kg) - Payload mass in a typical Low Earth orbit - - - - 体重 (kg)vægt (kg)тежина (kg)gewicht (kg)peso (kg)weight (kg)βάρος (kg)poids (kg)Gewicht (kg) - - - - - mass (kg)Masse (kg)μάζα (kg) - - - - - lunar EVA time (ω) - - - - - orbital period (μ)Umlaufzeit (μ)Περίοδος περιφοράς (μ) - - - - - temperature (K)Temperatur (K)θερμοκρασία (K)température (K) - - - - - melting point (K)Schmelzpunkt (K)point de fusion (K)融点 (K) - - - - - lengte (mm)length (mm)μήκος (mm)longueur (mm)Länge (mm) - - - - - size (MB)μέγεθος αρχείου (MB)Dateigröße (MB)taille de fichier (MB) - size of a file or softwareμέγεθος ενός ηλεκτρονικού αρχείου - - - - area metro (km2)περιοχή μετρό (km2)метрополска област (km2) - - - - - displacement (cc)cilindrada (cc) - - - - - temperature (K)Temperatur (K)θερμοκρασία (K)température (K) - - - - - course (km) - - - - - lengte (km)length (km)μήκος (km)longueur (km)Länge (km) - - - - - surface area (km2)Oberfläche (km2)έκταση (km2) - - - - - 体重 (kg)vægt (kg)тежина (kg)gewicht (kg)peso (kg)weight (kg)βάρος (kg)poids (kg)Gewicht (kg) - - - - - diameter (mm)diameter (mm)διάμετρος (mm)diamètre (mm)Durchmesser (mm) - - - - - przyspieszenie (s)убрзање (s)acceleratie (s)acceleració (s)acceleration (s)επιτάχυνση (s)luasghéarú (s)Beschleunigung (s) - - - - - ancho (mm)ширина (mm)breedte (mm)width (mm)πλάτος (mm)Breite (mm) - - - - - average speed (km/s)Durchschnittsgeschwindigkeit (km/s)μέση ταχύτητα (km/s) - The average speed of a thing.Η μέση ταχύτητα ενός πράγματος. - - - - višina (mm)身長 (mm)højde (mm)hoogte (mm)altura (mm)height (mm)ύψος (mm)hauteur (mm)Höhe (mm) - - - - - apoapsis (km)Apoapsisdistanz (km)απόαψης (km)апоапсис (km) - - - - - average speed (km/s)Durchschnittsgeschwindigkeit (km/s)μέση ταχύτητα (km/s) - The average speed of a thing.Η μέση ταχύτητα ενός πράγματος. - - - - mission duration (μ)Missionsdauer (μ) - - - - - 体重 (kg)vægt (kg)тежина (kg)gewicht (kg)peso (kg)weight (kg)βάρος (kg)poids (kg)Gewicht (kg) - - - - - 体重 (kg)vægt (kg)тежина (kg)gewicht (kg)peso (kg)weight (kg)βάρος (kg)poids (kg)Gewicht (kg) - - - - - višina (mm)身長 (mm)højde (mm)hoogte (mm)altura (mm)height (mm)ύψος (mm)hauteur (mm)Höhe (mm) - - - - - diameter (km)diameter (km)διάμετρος (km)diamètre (km)Durchmesser (km) - - - - - power output (kW)Ausgangsleistung (kW) - - - - - 体重 (kg)vægt (kg)тежина (kg)gewicht (kg)peso (kg)weight (kg)βάρος (kg)poids (kg)Gewicht (kg) - - - - - surface area (km2)Oberfläche (km2)έκταση (km2) - - - - - 密度 (μ3)densità (μ3)densidade (μ3)density (μ3)πυκνότητα (μ3)densité (μ3)Dichte (μ3) - - - - - mass (kg)Masse (kg)μάζα (kg) - - - - - distance (km)Entfernung (km) - - - - - diameter (μ)diameter (μ)διάμετρος (μ)diamètre (μ)Durchmesser (μ) - - - - - višina (cm)身長 (cm)højde (cm)hoogte (cm)altura (cm)height (cm)ύψος (cm)hauteur (cm)Höhe (cm) - - - - - shore length (km)Uferlänge (km)μήκος_όχθης (km) - - - - - lengte (mm)length (mm)μήκος (mm)longueur (mm)Länge (mm) - - - - - област (km2)oppervlakte (km2)área (km2)area (km2)έκταση (km2)superficie (km2)Fläche (km2) - The area of the thing in square meters. - - - - floor area (m2)vloeroppervlak (m2)περιοχή ορόφων (m2) - - - - - distance (km)Entfernung (km) - - - - - area of catchment (km2)Einzugsgebiet (km2)λίμνη (km2)подручје слива (km2) - - - - - dry cargo (kg)Trockenfracht (kg)droge last (kg) - - - - - station EVA duration (ω) - - - - - запремина (km3)volume (km3)volume (km3)όγκος (km3)volume (km3)Volumen (km3) - - - - - lengte (mm)length (mm)μήκος (mm)longueur (mm)Länge (mm) - - - - - \ No newline at end of file diff --git a/ontology.xml b/ontology.xml deleted file mode 100644 index 8cf2e7399d..0000000000 --- a/ontology.xml +++ /dev/null @@ -1,28668 +0,0 @@ -OntologyClass:AcademicConference20011553515752016-11-03T08:28:17Z{{Class -| labels = -{{label|en|academic conference}} -{{label|nl|wetenschappelijke conferentie}} -{{label|de|wissenschaftliche Konferenz}} -{{label|be|навуковая канферэнцыя}} -{{label|fr|conférence scientifique}} -{{label|it|congresso scientifico}} -{{label|pl|konferencja naukowa}} -{{label|ru|научная конференция}} -{{label|ja|学術会議}} -| rdfs:subClassOf = SocietalEvent -| owl:equivalentClass = wikidata:Q2020153 -}}OntologyClass:AcademicJournal2003738508572016-04-18T16:41:30Z{{Class -| labels = -{{label|en|academic journal}} -{{label|ga|iris acadúil}} -{{label|el|ακαδημαϊκό περιοδικό}} -{{label|de|Wissenschaftliche Fachzeitschrift}} -{{label|gl|revista académica}} -{{label|ko|학술지}} -{{label|ja|学術雑誌}} -{{label|nl|wetenschappelijk tijdschrift}} -{{label|fr|journal académique}} -{{label|it|giornale accademico}} -{{label|pl|czasopismo naukowe}} -{{label|zh|學術期刊}} -| rdfs:subClassOf = PeriodicalLiterature -| comments = -{{comment|en|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.}} -{{comment|el| Ένα ακαδημαϊκό περιοδικό είναι ως επί το πλείστον περιοδικό για κριτικές οι οποίες σχετίζονται με έναν συγκεκριμένο ακαδημαϊκό τομέα. Τα ακαδημαϊκά περιοδικά χρησιμεύουν ως φόρουμ για την εισαγωγή και παρουσίαση του ελέγχου των νέων ερευνών και της κριτικής της υπάρχουσας έρευνας. Το περιεχόμενο έχει συνήθως την μορφή άρθρων παρουσίασης νέας έρευνας, ανασκόπησης υπάρχων άρθρων και κριτικές βιβλίων. }} -{{comment|de|Wissenschaftliche Fachzeitschriften sind regelmäßig verlegte Fachzeitschriften über Spezialthemen aus den verschiedensten wissenschaftlichen Disziplinen. Sie stellen neue Methoden, Techniken und aktuelle Trends aus den Wissenschaften dar.}} -{{comment|gl| Unha revista académica é unha publicación periódica revisada por expertos na que se publican artigos dunha disciplina académica. }} -{{comment|pl| Czasopismo naukowe – rodzaj czasopisma, w którym są drukowane publikacje naukowe podlegające recenzji naukowej. Współcześnie szacuje się, że na świecie jest wydawanych ponad 54 tys. czasopism naukowych, w których pojawia się ponad milion artykułów rocznie.}} - -| owl:equivalentClass = wikidata:Q737498 -}}OntologyClass:AcademicSubject2009708510692016-05-12T16:39:57Z{{Class -|labels= -{{label|en|academic subject}} -{{label|de|akademisches Fach}} -{{label|fr|sujet académique}} -{{label|gl|disciplina académica}} -{{label|nl|academische hoofdstudierichting}} -{{label|pl|dyscyplina naukowa}} -| comments = {{comment|en|Genres of art, e.g. Mathematics, History, Philosophy, Medicine}} -{{comment|gl|Unha disciplina académica é unha rama do coñecemento que unha comunidade de especialistas desenvolve con metodoloxías de investigación. }} -| rdfs:subClassOf = TopicalConcept -| owl:equivalentClass = wikidata:Q11862829 -}}OntologyClass:Activity2002150520992017-06-19T10:48:38Z{{Class -|labels= - {{label|en|activity}} -{{label|ga|gníomhaíocht}} - {{label|es|actividad}} - {{label|da|aktivitet}} - {{label|de|Aktivität}} - {{label|el|Δραστηριότητα}} - {{label|gl|actividade}} - {{label|pt|atividade}} - {{label|ja|活動}} - {{label|nl|activiteit}} - {{label|fr|activité}} - {{label|it|attività}} - {{label|pl|aktywność}} - {{label|zh|活動}} - {{label|ko|활동}} -| owl:disjointWith = Person -| owl:equivalentClass = d0:Activity, wikidata:Q1914636 -| rdfs:subClassOf = owl:Thing -}}OntologyClass:Actor200289530832018-04-11T14:12:34Z{{Class -| labels = -{{label|en|actor}} -{{label|ga|aisteoir}} -{{label|el|ηθοποιός}} -{{label|es|actor}} -{{label|eu|aktore}} -{{label|it|attore}} -{{label|da|skuespiller}} -{{label|de|Schauspieler}} -{{label|fr|acteur}} -{{label|gl|actor}} -{{label|lv|aktieris}} -{{label|pl|aktor}} -{{label|pt|ator}} -{{label|ko|영화인}} -{{label|ja|俳優}} -{{label|nl|acteur}} -{{label|zh|演員}} -| comments = -{{comment|en|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.}} -{{comment|el|Μια ηθοποιός ή ένας ηθοποιός είναι ένα άτομο που παίζει σε μια δραματική παραγωγή και που εργάζεται στο χώρο του κινηματογράφου, της τηλεόρασης, του θεάτρου, ή το ραδιόφωνο.}} -{{comment|gl|Un actor, se é home, ou unha actriz, se é muller, é unha persoa que representa un papel nunha obra teatral, cinematográfica, radiofónica ou televisiva.}} -{{comment|it|Un attore o un attrice è una persona che recita in una produzione teatrale, televisiva, cinematografica o radiofonica.}} -| rdfs:subClassOf = Artist -| owl:equivalentClass = wikidata:Q33999 -}}OntologyClass:AdministrativeRegion200301518072017-01-06T15:19:16Z{{Class -| labels = -{{label|en|administrative region}} -{{label|ga|réigiún riaracháin}} -{{label|de|Verwaltungsregion}} -{{label|el|διοικητική περιφέρεια}} -{{label|fr|région administrative}} -{{label|gl|rexión administrativa}} -{{label|ja|行政区画}} -{{label|nl|bestuurlijk gebied}} -{{label|it|regione amministrativa}} -{{label|zh|行政區}} -{{label|ko|관리 지역}} -| comments = -{{comment|en|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)}} -| rdfs:subClassOf = Region -| owl:equivalentClass = schema:AdministrativeArea, wikidata:Q3455524 -}}OntologyClass:AdultActor200290516402016-11-12T11:24:22Z{{Class -| labels = -{{label|en|adult (pornographic) actor}} -{{label|ga|aisteoir pornagrafaíochta}} -{{label|it|attore porno}} -{{label|fr|acteur porno/acteur adulte}} -{{label|el|ενήλικας (πορνογραφικός) ηθοποιός}} -{{label|es|actor porno}} -{{label|de|pornographischer Schauspieler}} -{{label|gl|actor porno}} -{{label|pt|ator adulto}} -{{label|ja|ポルノ女優}} -{{label|nl|pornografisch acteur}} -{{label|pl|aktor pornograficzny}} -{{label|zh|色情演員}} -{{label|ko|성인 배우}} -| comments = -{{comment|en|A pornographic actor or actress or a porn star is a person who performs sex acts in film, normally characterised as a pornographic film.}} -{{comment|gl|Un actor ou unha actriz porno ou pornográfico/a, é un actor ou actriz de cine porno que actúa en películas de temática pornográfica..&lt;ref&gt;https://gl.wikipedia.org/wiki/Actor_pornogr%C3%A1fico&lt;/ref&gt;}} -| owl:equivalentClass = wikidata:Q488111 -| rdfs:subClassOf = Actor -}}OntologyClass:Agent2005042520942017-06-19T10:43:16Z{{Class -| labels = - {{label|en|agent}} -{{label|ga|gníomhaire}} - {{label|da|agent}} - {{label|de|Agent}} - {{label|el|πράκτορας}} - {{label|gl|axente}} - {{label|ja|エージェント}} - {{label|nl|agent}} - {{label|it|agente}} - {{label|fr|agent}} - {{label|es|agente}} - {{label|ko|에이전트}} -| comments = -{{comment|en|Analogous to a foaf:Agent, an agent is an entity that acts. This is intended to be the super class of Person and Organisation.}} -{{comment|el|Ανάλογα με την κλάση foaf:Agent, ένας πράκτορας είναι μια οντότητα που ενεργεί. Αυτό προορίζεται να είναι μια υπερκλάση της κλάσης Άτόμο και Οργανισμός.}} -{{comment|gl|Análogo a foaf:Agent, un axente é unha entidade que actúa. Destínase a ser a super clase de Persoa e Organización.}} -| owl:disjointWith = Place -| owl:equivalentClass = dul:Agent, wikidata:Q24229398 -| rdfs:subClassOf = owl:Thing -}}OntologyClass:Agglomeration2007932508732016-04-19T10:21:50Z{{Class -| labels= -{{label|en|agglomeration}} -{{label|fr|agglomération}} -{{label|de|Ballungsgebiet}} -{{label|el|συσσώρευση}} -{{label|gl|aglomeración}} -{{label|nl|agglomeratie}} -{{label|pl|aglomeracja}} -| rdfs:subClassOf = PopulatedPlace -}}OntologyClass:Aircraft200291528172018-02-08T19:56:36Z{{Class -| labels = -{{label|en|aircraft}} -{{label|ga|aerárthach}} -{{label|da|fly}} -{{label|de|Flugzeug}} -{{label|el|αεροσκάφος}} -{{label|fr|avion}} -{{label|gl|avión}} -{{label|ko|비행기}} -{{label|ja|航空機}} -{{label|nl|vliegtuig}} -{{label|zh|飛機}} -{{label|it|aereo}} -{{label|es|avión}} -{{label|ro|avion}} -{{label|pl|samolot}} -| rdfs:subClassOf = MeanOfTransportation, schema:Product -| owl:equivalentClass = wikidata:Q11436 -}}OntologyClass:Airline200292523262017-10-10T13:30:11Z{{Class -| labels = -{{label|en|airline}} -{{label|ga|aerlíne}} -{{label|es|compañía aerea}} -{{label|fr|compagnie aérienne}} -{{label|el|αεροπορική εταιρεία}} -{{label|pl|linia lotnicza}} -{{label|da|flyselskab}} -{{label|de|Fluggesellschaft}} -{{label|gl|compañía aérea}} -{{label|ko|항공사}} -{{label|ja|航空会社}} -{{label|nl|luchtvaartmaatschappij}} -{{label|zh|航空公司}} -{{label|it|compagnia aerea}} -| rdfs:subClassOf = PublicTransitSystem -| owl:equivalentClass = wikidata:Q46970 -}}OntologyClass:Airport200293521902017-10-05T07:40:04Z{{Class -| labels = -{{label|en|airport}} -{{label|ru|аэропорт}} -{{label|ga|aerfort}} -{{label|es|aeropuerto}} -{{label|el|αεροδρόμιο}} -{{label|da|lufthavn}} -{{label|de|Flughafen}} -{{label|fr|aéroport}} -{{label|gl|aeroporto}} -{{label|pl|lotnisko}} -{{label|pt|aeroporto}} -{{label|ko|공항}} -{{label|ja|空港}} -{{label|nl|luchthaven}} -{{label|zh|機場}} -{{label|it|aeroporto}} -| rdfs:subClassOf = Infrastructure -| owl:equivalentClass = schema:Airport,wikidata:Q1248784 -}}OntologyClass:Album200294523392017-10-10T13:40:49Z{{Class -| labels = -{{label|en|album}} -{{label|ga|albam}} -{{label|da|album}} -{{label|de|Album}} -{{label|fr|album}} -{{label|el|album}} -{{label|gl|álbum}} -{{label|ko|앨범 }} -{{label|ja|アルバム}} -{{label|nl|album}} -{{label|pt|álbum}} -{{label|zh|照片集}} -{{label|es|album}} -{{label|it|album}} -{{label|pl|album (wydawnictwo muzyczne)}} -| rdfs:subClassOf = MusicalWork -| owl:equivalentClass = schema:MusicAlbum , wikidata:Q482994 -}}OntologyClass:Algorithm20012178535542019-08-27T13:23:43Z{{Class -| labels = -{{label|en|Algorithm}} -{{label|de|Algorithmus}} -{{label|nl|Algoritme}} -{{label|ru|Алгоритм}} -| owl:equivalentClass = wikidata:Q8366 -}}OntologyClass:Altitude2007920523272017-10-10T13:30:54Z{{Class -| labels = -{{label|en|altitude}} -{{label|ga|airde}} -{{label|fr|altitude}} -{{label|da|højde}} -{{label|de|Höhe}} -{{label|el|υψόμετρο}} -{{label|gl|altitude}} -{{label|nl|hoogte}} -{{label|ja|高度}} -| comments = -{{comment|el|Το υψόμετρο είναι η κάθετη απόσταση ενός αντικειμένου σε σχέση με ένα καθορισμένο επίπεδο αναφοράς. Συνήθως το υψόμετρο μετριέται ως η κάθετη απόσταση (υψομετρική διαφορά) ενός τόπου από το επίπεδο της θάλασσας (Μέση Στάθμη Θάλασσας), ενώ για πιο ακριβείς μετρήσεις χρησιμοποιείται το γεωειδές.}} -{{comment|gl|A altitude é a distancia vertical dun obxecto respecto dun punto de orixe dado, considerado como o nivel cero, para o que se adoita tomar o nivel absoluto do mar.&lt;ref&gt;https://gl.wikipedia.org/wiki/Altitude&lt;/ref&gt;}} -| owl:equivalentClass = wikidata:Q190200 -}}OntologyClass:AmateurBoxer2006215488422015-09-08T17:55:03Z{{Class -| labels = {{label|en|amateur boxer}} -{{label|ga|dornálaí amaitéarach}} -{{label|de|Amateurboxer}} -{{label|el|ερασιτέχνης μποξέρ}} -{{label|fr|boxeur amateur}} -{{label|gl|boxeador afeccionado}} -{{label|it|pugile amatoriale}} -{{label|ja|アマチュアボクサー}} -{{label|nl|amateur boxer}} -{{label|ko|아마추어 권투 선수}} -| rdfs:subClassOf = Boxer -}}OntologyClass:Ambassador2002379524792017-10-16T00:42:38Z{{Class -| labels = -{{label|en|ambassador}} -{{label|ga|ambasadóir}} -{{label|el|πρεσβευτής}} -{{label|fr|ambassadeur}} -{{label|de|Botschafter}} -{{label|gl|embaixador}} -{{label|it|ambasciatore}} -{{label|ja|大使}} -{{label|nl|ambassadeur}} -{{label|ko| 대사 (외교관)}} -{{label|es|embajador}} -| rdfs:subClassOf = Politician -| comments = -{{comment|en|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.}} -{{comment|gl|Un embaixador é o funcionario diplomático de máis alto nivel acreditado diante de un Estado estranxeiro ou organización internacional.&lt;ref&gt;https://gl.wikipedia.org/wiki/Embaixador&lt;/ref&gt;}} -| owl:equivalentClass = wikidata:Q121998 -}}OntologyClass:AmericanFootballCoach2007988518912017-02-19T15:24:32Z{{Class -| labels = -{{label|en|american football coach}} -{{label|de|American-Football-Trainer}} -{{label|gl|adestrador de fútbol americano}} -{{label|nl|Amerikaanse football coach}} -{{label|el|προπονητής ράγκμπυ}} -{{label|it|allenatore di football americano}} -{{label|fr|entraineur de football américain}} -| rdfs:subClassOf = Coach -}}OntologyClass:AmericanFootballLeague2002283488452015-09-08T17:57:29Z{{Class -| labels = -{{label|en|american football league}} -{{label|de|American-Football-Liga}} -{{label|el|aμερικανικό πρωτάθλημα ποδοσφαίρου}} -{{label|es|liga de fútbol americano}} -{{label|fr|american football league}} -{{label|gl|liga de fútbol americano}} -{{label|pt|liga de futebol americano}} -{{label|ja|アメリカン・フットボール・リーグ}} -{{label|nl|Amerikaanse voetbal competitie}} -{{label|it|lega di football americano}} -{{label|ko| 미식 축구 대회}} -| comments = -{{comment|en|A group of sports teams that compete against each other in american football.}} -{{comment|el|Ένα σύνολο αθλητικών ομάδων που ανταγωνίζονται μεταξύ τους στο αμερικάνικο ποδόσφαιρο.}} -{{comment|gl|A National Football League (en galego: Liga Nacional de Fútbol Americano), mellor coñecida polas súas siglas en inglés, NFL, é a maior liga de fútbol americano profesional dos Estados Unidos e está considerada como a máis grande e prestixiosa propiedade deportiva nese país.&lt;ref&gt;https://gl.wikipedia.org/wiki/National_Football_League&lt;/ref&gt;}} -| rdfs:subClassOf = SportsLeague -}}OntologyClass:AmericanFootballPlayer200369488462015-09-08T17:58:20Z{{Class -| labels = -{{label|en|american football player}} -{{label|el|παίκτης αμερικανικού ποδοσφαίρου}} -{{label|fr|joueur de football américain}} -{{label|gl|xogador de fútbol americano}} -{{label|ja|アメリカンフットボール選手}} -{{label|nl|American footballspeler}} -{{label|de|American Footballspieler}} -{{label|ko|미식 축구 선수}} -{{label|es|jugador de fútbol americano}} -{{label|it|giocatore di football americano}} -| rdfs:subClassOf = GridironFootballPlayer -| owl:equivalentClass = wikidata:Q14128148 -}}OntologyClass:AmericanFootballTeam200370488472015-09-08T17:58:58Z{{Class -| labels = -{{label|it|squadra di football americano}} -{{label|en|american football Team}} -{{label|de|American-Football-Team}} -{{label|gl|equipo de fútbol americano}} -{{label|nl|Amerikaans football team}} -{{label|el|ομάδα αμερικανικού ποδοσφαίρου}} -{{label|fr|équipe américaine de football américain}} -{{label|ja|アメリカン・フットボール・チーム}} -{{label|ko|미식 축구 팀}} -| rdfs:subClassOf = SportsTeam -}}OntologyClass:Amphibian200295488482015-09-08T17:59:38Z{{Class -| labels = -{{label|en|amphibian}} -{{label|ga|amfaibiach}} -{{label|de|Amphibie}} -{{label|el|αμφίβιο}} -{{label|fr|amphibien}} -{{label|gl|anfibio}} -{{label|pt|anfíbio}} -{{label|ja|両生類}} -{{label|nl|amfibie}} -{{label|it|anfibio}} -{{label|ko|양서류}} -| rdfs:subClassOf = Animal -}}OntologyClass:AmusementParkAttraction2008003488492015-09-08T18:00:48Z{{Class -| labels = -{{label|en|amusement park attraction}} -{{label|nl|pretparkattractie}} -{{label|de|Vergnügungsparkattraktion}} -{{label|el|δραστηριότητα λούνα πάρκ}} -{{label|gl|atracción de parque de atraccións}} -| rdfs:subClassOf = ArchitecturalStructure -}}OntologyClass:AnatomicalStructure200296488502015-09-08T18:03:08Z{{Class -| labels = - {{label|en|anatomical structure}} -{{label|ga|coirpeog}} - {{label|de|anatomischen Struktur}} - {{label|el|ανατομική δομή}} - {{label|nl|anatomische structuur}} - {{label|fr|structure anatomique}} - {{label|gl|estrutura anatómica}} - {{label|sl|anatomska struktura}} - {{label|ko|해부학}} - {{label|ja|解剖構造}} - {{label|it|struttura anatomica}} -| rdfs:subClassOf = owl:Thing -| owl:equivalentClass = wikidata:Q4936952 -}}OntologyClass:Animal200297520752017-06-19T10:25:47Z{{Class -| labels = -{{label|it|animale}} -{{label|en|animal}} -{{label|ga|ainmhí}} -{{label|el|ζώο}} -{{label|da|dyr}} -{{label|de|Tier}} -{{label|fr|animal}} -{{label|gl|animal}} -{{label|sl|žival}} -{{label|ko|동물}} -{{label|ja|動物}} -{{label|nl|dier}} -{{label|es|animal}} -{{label|pt|animal}} -{{label|sk|zviera}} -| rdfs:subClassOf = Eukaryote -| owl:equivalentClass = wikidata:Q729 -}}OntologyClass:AnimangaCharacter2006205518922017-02-19T15:30:58Z{{Class -| labels = {{label|en|animanga character}} -{{label|ga|carachtar animanga}} - {{label|el|χαρακτήρας ανιμάνγκα}} - {{label|nl|ani-manga figuur}} -{{label|it|personaggio animanga}} -{{label|de|Manga-Charakter}} -{{label|gl|personaxe de animanga}} -{{label|ja|キャラクター}} -{{label|ko|만화애니 등장인물}} -{{label|fr|personnage d'animanga}} -| comments = {{comment|en|Anime/Manga character}} - {{comment|el|Χαρακτήρας από Άνιμε/Μάνγκα}} -| rdfs:subClassOf = ComicsCharacter -}}OntologyClass:Anime2005814488862015-09-23T11:02:29Z{{Class -| labels = -{{label|en|Anime}} -{{label|nl|anime}} -{{label|de|anime}} -{{label|el|άνιμε}} -{{label|it|anime}} -{{label|ga|anime}} -{{label|gl|anime}} -{{label|ja|アニメ}} -{{label|ko|일본의 애니메이션}} -| comments = -{{comment|en|A style of animation originating in Japan}} -{{comment|nl|Geanimeerd Japans stripverhaal}} -{{comment|el|Στυλ κινουμένων σχεδίων με καταγωγή την Ιαπωνία}} -{{comment|gl|Designación coa que se coñece a animación xaponesa}} -| rdfs:subClassOf = Cartoon -| owl:equivalentClass = wikidata:Q1107 -}} - - -<ref name="anime">http://en.wikipedia.org/wiki/Anime</ref> -==References== -<references/>OntologyClass:Annotation20011279518932017-02-19T15:35:48Z{{Class -| labels = -{{label|en|Annotation}} -{{label|el|Σχόλιο}} -{{label|gl|nota}} -{{label|nl|Aantekening}} -{{label|de|Randglosse}} -{{label|ja|注釈}} -{{label|fr|annotation}} -| rdfs:subClassOf = WrittenWork -| owl:equivalentClass = schema:Comment, bibo:Note -}}OntologyClass:Arachnid200298480152015-05-25T15:02:25Z{{Class -| labels = -{{label|en|arachnid}} -{{label|ga|araicnid}} -{{label|de|Spinnentier}} -{{label|nl|spinachtigen}} -{{label|el|αραχνοειδές}} -{{label|fr|arachnides}} -{{label|pt|aracnídeos}} -{{label|ja|クモ綱}} -{{label|it|aracnide}} -{{label|ko|거미강}} -{{label|es|arácnido}} - -| rdfs:subClassOf = Animal -}}OntologyClass:Archaea200299470592015-03-23T11:24:34Z{{Class -| labels = -{{label|en|archaea}} -{{label|nl|Archaea (oerbacteriën)}} -{{label|de|Archaeen}} -{{label|el|αρχαία}} -{{label|fr|archées}} -{{label|ja|古細菌}} -{{label|ko|고세균}} -{{label|it|archei}} -| rdfs:subClassOf = Species -}}OntologyClass:Archbishop20011940524452017-10-15T17:53:09Z{{Class -| labels = -{{label|en|archbishop}} -{{label|de|Erzbischof}} -{{label|nl|aartsbisschop}} -{{label|fr|archevêque}} -| rdfs:subClassOf = ChristianBishop -}}OntologyClass:Archeologist2008019503932016-03-04T05:47:34Z{{Class -| labels = -{{label|en|archeologist}} -{{label|de|Archäologe}} -{{label|el|Αρχαιολόγος}} -{{label|es|Arqueólogo}} -{{label|fr|archéologue}} -{{label|ga|seandálaí}} -{{label|nl|archeoloog}} -{{label|pl|archeolog}} -{{label|ja|考古学者}} -| rdfs:subClassOf = Person -| owl:equivalentClass = wikidata:Q3621491 -}}OntologyClass:ArcherPlayer20011161469452015-03-22T17:17:58Z{{Class -| labels = - {{label|en|Archer Player}} - {{label|de|Bogenschütze}} - {{label|nl|boogschutter}} -| rdfs:subClassOf = Athlete -}}OntologyClass:Archipelago2009326507462016-04-15T11:49:20Z{{Class -| labels = -{{label|en|archipelago}} -{{label|fr|archipel}} -{{label|de|Archipel}} -{{label|el|αρχιπέλαγος}} -{{label|nl|archipel}} -{{label|es|archipiélago}} -{{label|pt|arquipélago}} -{{label|ja|多島海}} -| rdfs:subClassOf = NaturalPlace -| owl:equivalentClass = wikidata:Q33837 -}}OntologyClass:Architect200300529142018-02-16T13:17:06Z{{Class -| labels = -{{label|en|architect}} -{{label|ga|uaslathaí}} -{{label|el|αρχιτέκτονας}} -{{label|de|Architekt}} -{{label|fr|architecte}} -{{label|es|arquitecto}} -{{label|ko|건축가}} -{{label|ja|建築士}} -{{label|nl|architect}} -{{label|it|architetto}} -| rdfs:subClassOf = Person -| owl:equivalentClass = wikidata:Q42973 -}}OntologyClass:ArchitecturalStructure2003253480172015-05-25T15:02:37Zhttp://mappings.dbpedia.org/index.php/OntologyClass:ArchitecturalStructure -{{Class -| labels = -{{label|en|architectural structure}} -{{label|ga|struchtúr ailtireachta}} -{{label|el|αρχιτεκτονική κατασκευή}} -{{label|nl|bouwsel}} -{{label|de|Bauwerk}} -{{label|ja|構造物}} -{{label|it|struttura architettonica}} -{{label|fr|structure architecturale}} -{{label|es|estructura arquitectural}} -{{label|ko|건축 구조}} - -| comments = -{{comment|en|An architectural structure is a human-made, free-standing, immobile outdoor construction (http://en.wikipedia.org/wiki/Architectural_structure).}} -{{comment|el|Μια αρχιτεκτονική κατασκευή είναι μια ανθρώπινη κατασκευή, επιδαπέδια, ακίνητη κατασκευή (http://en.wikipedia.org/wiki/Architectural_structure).}} -{{comment|de|Ein Bauwerk ist eine von Menschen errichtete Konstruktion mit ruhendem Kontakt zum Untergrund. Es ist in der Regel für eine langfristige Nutzungsdauer konzipiert (http://de.wikipedia.org/wiki/Bauwerk).}} -| rdfs:subClassOf = Place -}}OntologyClass:Archive2008406518942017-02-19T15:38:58Z{{Class -| labels = -{{label|en|Archive}} -{{label|de|Archiv}} -{{label|el|αρχείο}} -{{label|nl|Archief}} -{{label|es|archivo}} -{{label|pl|archiwum}} -{{label|ja|アーカイブ}} -{{label|fr|archive}} -| rdfs:subClassOf = CollectionOfValuables -| comments = -{{comment|en|Collection of documents pertaining to a person or organisation.}} -{{comment|fr|Collection de documents appartenant à une personne ou une organisation.}} -{{comment|el|Η συλλογή των εγγράφων που σχετίζονται με ένα πρόσωπο ή οργανισμό.}} -{{comment|nl|Verzameling van documenten rondom een persoon of organisatie.}} -| owl:equivalentClass = wikidata:Q166118 -}}OntologyClass:Area2007910518952017-02-19T15:41:11Z{{Class -| labels = -{{label|en|area}} -{{label|ga|ceantar}} -{{label|nl|gebied}} -{{label|de|Bereich}} -{{label|el|εμβαδόν}} -{{label|ja|面積}} -{{label|fr|aire}} -| comments = -{{comment|en|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)}} -{{comment|fr|Mesure d'une surface.}} -{{comment|el|Εμβαδόν ή έκταση είναι το μέγεθος μέτρησης των επιφανειών.}} -}}OntologyClass:Arena2002753528202018-02-08T20:00:27Z{{Class -| labels = -{{label|en|arena}} -{{label|nl|stadion}} -{{label|de|stadion}} -{{label|it|stadio}} -{{label|el|παλαίστρα}} -{{label|pt|arena}} -{{label|ja|アリーナ}} -{{label|ko|아레나}} -{{label|fr|aréna}} -| rdfs:subClassOf = ArchitecturalStructure, schema:StadiumOrArena -|owl:equivalentClass = -| comments = -{{comment|en|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)}} -{{comment|fr|Une aréna désigne une enceinte pouvant accueillir des spectacles, des concerts ou des événements sportifs.(https://fr.wikipedia.org/wiki/Arena)}} -}}OntologyClass:Aristocrat2007548510792016-05-14T15:14:49Z{{Class -| labels = -{{label|en|aristocrat}} -{{label|fr|aristocrate}} -{{label|ga|uaslathaí}} -{{label|de|Aristokrat}} -{{label|nl|aristocraat}} -{{label|es|aristócrata}} -{{label|ja|貴種}} - -| rdfs:subClassOf = Person}}OntologyClass:Arrondissement20010271507482016-04-15T11:53:35Z{{Class -| labels = -{{label|en|arrondissement}} -{{label|de|arrondissement}} -{{label|fr|arrondissement}} -{{label|nl|arrondissement}} -{{label|ja|フランスの群}} - -| comments = -{{comment|en|An administrative (France) or lawcourts (Netherlands) body governing a territorial unity on the intermediate level, between local and national level}} -{{comment|de|Das Wort Arrondissement dient zur Bezeichnung verschiedener Verwaltungsbezirke in Frankreich, Belgien, Kanada und anderen Ländern}} -| rdfs:subClassOf = GovernmentalAdministrativeRegion -| owl:equivalentClass = -}}OntologyClass:Artery200302515792016-11-03T08:42:23Z{{Class -| labels = -{{label|it|arteria}} -{{label|en|artery}} -{{label|ga|artaire}} -{{label|el|αρτηρία}} -{{label|de|Arterie}} -{{label|fr|artère}} -{{label|ja|動脈}} -{{label|nl|slagader}} -{{label|ko|동맥}} -{{label|pl|tętnica}} -| rdfs:subClassOf = AnatomicalStructure -| owl:equivalentClass = wikidata:Q9655 -}}OntologyClass:Article20010287503672016-03-02T09:30:50Z{{Class -| labels = -{{label|en|article}} -{{label|de|Artikle}} -{{label|nl|artikel}} -{{label|fr|article}} -{{label|ja|記事}} -| rdfs:subClassOf = WrittenWork -| owl:equivalentClass = bibo:Article -}}OntologyClass:ArtificialSatellite2009370518982017-02-19T15:46:29Z{{Class -| labels = {{label|en|ArtificialSatellite}} - {{label|ga|satailít shaorga}} - {{label|nl|kunstmatige satelliet}} - {{label|de|künstlicher Satellit}} - {{label|el|τεχνητός δορυφόρος}} - {{label|ja|人工衛星}} - {{label|fr|satellite artificiel}} -| comments = {{comment|en|In the context of spaceflight, an artificial satellite is an artificial object which has been intentionally placed into orbit.}} - {{comment|de|Satellit (Raumfahrt), ein künstlicher Raumflugkörper, der einen Himmelskörper auf einer festen Umlaufbahn umrundet}} - {{comment|el|Στο πλαίσιο των διαστημικών πτήσεων, ένας τεχνητός δορυφόρος είναι ένα τεχνητό αντικείμενο το οποίο εκ προθέσεως έχει τοποθετηθεί σε τροχιά.}} - {{comment|fr|Un satellite artificiel est un objet placé intentionellement en orbite.}} -| rdfs:subClassOf = Satellite -<!-- | owl:equivalentClass = http://www.ontotext.com/proton/protonext#ArtificialSatellite --> -}}OntologyClass:Artist200303520882017-06-19T10:39:49Z{{Class -| labels = -{{label|en|artist}} -{{label|ga|ealaíontóir}} -{{label|ru|художник}} -{{label|pl|artysta}} -{{label|fr|artiste}} -{{label|da|kunstner}} -{{label|de|Künstler}} -{{label|el|καλλιτέχνης}} -{{label|ko|예술가}} -{{label|ja|芸術家}} -{{label|nl|kunstenaar}} -{{label|be|мастак}} -{{label|it|artista}} -| rdfs:subClassOf = Person -| owl:equivalentClass = wikidata:Q483501 -}}OntologyClass:ArtistDiscography2006083480212015-05-25T15:03:04Z{{Class -| labels = -{{label|it|discografia dell'artista}} -{{label|en|artist discography}} -{{label|ga|dioscagrafaíocht an ealaíontóra}} -{{label|nl|artiest discografie}} -{{label|de|Künstler Diskografie}} -{{label|el|δισκογραφία καλλιτέχνη}} -{{label|fr|discographie de l'artiste}} -{{label|ko|음반}} -{{label|ja|ディスコグラフィ}} -{{label|fr|discogafía de artista}} -| rdfs:subClassOf = MusicalWork -}}OntologyClass:ArtisticGenre2009707518992017-02-19T15:49:44Z{{Class -|labels= -{{label|en|artistic genre}} -{{label|de|Kunstgattung}} -{{label|nl|kunstsoort}} -{{label|fr|genre artistique}} -| comments = {{comment|en|Genres of art, e.g. Pointillist, Modernist}} - {{comment|de|Gattung nennt man in den Kunstwissenschaften die auf das künstlerische Ausdrucksmedium bezogenen Formen der Kunst.}} - {{comment|fr|genre d'art, ex: Pointillisme, Modernisme}} -| rdfs:subClassOf = Genre -| rdfs:comment = Please note, that the two comments (English and German) depart from different definitions -}}OntologyClass:Artwork2005199520862017-06-19T10:37:56Z{{Class -|labels = - {{label|en|artwork}} -{{label|ga|saothar ealaíne}} - {{label|da|kunstværk}} - {{label|de|Kunstwerk}} - {{label|nl|kunstwerk}} - {{label|el|έργο τέχνης}} - {{label|it|opera d'arte}} - {{label|ja|作品}} - {{label|fr|œuvre d'art}} - {{label|es|obra de arte}} - {{label|ko|작품}} -| comments = -{{comment|en|A work of art, artwork, art piece, or art object is an aesthetic item or artistic creation.}} -| rdfs:subClassOf = Work -}}OntologyClass:Asteroid2004232479672015-05-25T14:57:22Z{{Class -| labels = -{{label|it|asteroide}} -{{label|de|Asteroid}} -{{label|en|asteroid}} -{{label|ga|astaróideach}} -{{label|el|αστεροειδής}} -{{label|pt|asteróide}} -{{label|es|asteroide}} -{{label|fr|astéroïde}} -{{label|ja|小惑星}} -{{label|nl|asteroïde}} -{{label|ko|소행성}} -| rdfs:subClassOf = CelestialBody -| rdfs:seeAlso = Planet -| owl:equivalentClass = wikidata:Q3863 -}}OntologyClass:Astronaut200304480232015-05-25T15:03:14Z{{Class - - -| labels = {{label|it|astronauta}} -{{label|nl|ruimtevaarder}} -{{label|ja|宇宙飛行士}} -{{label|ko|우주인}} -{{label|el|αστροναύτης}} -{{label|es|astronauta}} -{{label|pt|astronauta}} -{{label|fr|astronaute}} -{{label|de|Astronaut}} -{{label|en|astronaut}} -{{label|ga|spásaire}} - -| rdfs:subClassOf = Person -| specificProperties = {{SpecificProperty | ontologyProperty = timeInSpace | unit = minute }} -| owl:equivalentClass = wikidata:Q11631 -}}OntologyClass:Athlete200305480242015-05-25T15:03:19Z{{Class -| labels = -{{label|en|athlete}} -{{label|ga|lúthchleasaí}} -{{label|nl|atleet}} -{{label|de|Athlet}} -{{label|el|αθλητής}} -{{label|fr|athlète}} -{{label|ja|アスリート}} -{{label|it|atleta}} -{{label|ko|운동 선수}} -| rdfs:subClassOf = Person -}}OntologyClass:Athletics2007844503862016-03-04T05:20:01Z{{Class -| labels = -{{label|en|athletics}} -{{label|ga|lúthchleasaíocht}} -{{label|es|atletismo}} -{{label|nl|atletiek}} -{{label|fr|athlétisme}} -{{label|de|Leichtathletik}} -{{label|el|αθλητικά}} -{{label|ja|陸上競技}} -| rdfs:subClassOf = Sport -}}OntologyClass:AthleticsPlayer2009554503872016-03-04T05:20:32Z{{Class -| labels = - {{label|en|athletics player}} -{{label|ga|lúthchleasaí}} - {{label|nl|atleet}} - {{label|de|Athlet}} - {{label|it|giocatore di atletica leggera}} - {{label|ja|陸上競技選手}} -| rdfs:subClassOf = Athlete -}}OntologyClass:Atoll2002575470352015-03-23T09:18:39Z{{Class -| labels = -{{label|en|atoll}} -{{label|de|Atoll}} -{{label|el|ατόλη}} -{{label|fr|atoll}} -{{label|ja|環礁}} -{{label|nl|atol}} -{{label|ko|환초}} -{{label|it|atollo}} -| rdfs:subClassOf = Island -}}OntologyClass:Attack20011148503892016-03-04T05:22:16Z{{Class -| labels = -{{label|en|attack}} -{{label|de|Angriff, Anschlag}} -{{label|fr|attaque, attentat}} -{{label|nl|aanval, aanslag}} -{{label|ja|攻撃}} -| comments = -{{comment|en|An Attack is not necessarily part of a Military Conflict}} -| rdfs:subClassOf = SocietalEvent -}}OntologyClass:AustralianFootballLeague2002281467602015-03-21T18:34:11Z{{Class -| labels = -{{label|it|lega di football australiano}} -{{label|en|australian football league}} -{{label|de|Australian Football League}} -{{label|es|liga de fútbol australiana}} -{{label|el|αυστραλιανό πρωτάθλημα ποδοσφαίρου}} -{{label|fr|australian football league}} -{{label|pt|liga de futebol australiano}} -{{label|ja|オーストラリアン・フットボール・リーグ}} -{{label|ko|오스트레일리안 풋볼 리그}} -{{label|nl|australian football competitie}} -| comments = -{{comment|en|A group of sports teams that compete against each other in australian football.}} -{{comment|el|Μια ομάδα αθλητικών ομάδων που ανταγωνίζονται μεταξύ τους σε αυστραλιανό ποδόσφαιρο.}} -| rdfs:subClassOf = SportsLeague -}}OntologyClass:AustralianFootballTeam2008001519002017-02-19T15:50:34Z{{Class -| labels = -{{label|el|ποδοσφαιρική ομάδα αυστραλίας}} -{{label|it|squadra di football australiano}} -{{label|en|australian football Team}} -{{label|nl|Australian football team}} -{{label|de|Australian Football Team}} -{{label|fr|Équipe de Football Australien}} -{{label|ja|オーストラリアンフットボールチーム}} -| rdfs:subClassOf = SportsTeam -}}OntologyClass:AustralianRulesFootballPlayer2004156514992016-09-16T19:23:04Z{{Class -| labels = - {{label|en|Australian rules football player}} - {{label|nl|Australian football-speler}} - {{label|de|Australian Rules Football-Spieler}} - {{label|el|αυστραλιανοί κανόνες ποδοσφαιριστή}} - {{label|ja|オージーフットボール選手}} - {{label|ko|오스트레일리아식 풋볼 선수}} - {{label|it|giocatore di football australiano}} -| rdfs:subClassOf = Athlete -| owl:equivalentClass = wikidata:Q13414980 -}}OntologyClass:AutoRacingLeague2002162483282015-05-25T15:44:36Z{{Class -| rdfs:label@en = auto racing league -| rdfs:label@ga = sraith rásaíochta charanna -| rdfs:label@el = πρωτάθλημα αγώνων αυτοκινήτων -| rdfs:label@fr = la ligue de course automobile -| rdfs:label@ja =自動車競技リーグ -| rdfs:label@nl = auto race competitie -| rdfs:label@de = Auto Racing League -| rdfs:label@ko =자동차 경주 대회 -| labels = {{label|it|lega automobilistica}} -| rdfs:comment@en = a group of sports teams or individual athletes that compete against each other in auto racing -| rdfs:comment@el = μια ομάδα αθλητικών ομάδων ή μεμονωμένων αθλητών που ανταγωνίζονται μεταξύ τους σε αγώνες αυτοκινήτων -| rdfs:subClassOf = SportsLeague -}}OntologyClass:Automobile200306528152018-02-08T19:55:36Z -{{Class -| labels = -{{label|it|automobile}} -{{label|en|automobile}} -{{label|ga|gluaisteán}} -{{label|be|аўтамабіль}} -{{label|ru|автомобиль}} -{{label|pl|samochód}} -{{label|de|Automobil}} -{{label|el|αυτοκίνητο}} -{{label|fr|automobile}} -{{label|pt|automovel}} -{{label|sl|avtomobil}} -{{label|es|automóvil}} -{{label|ja|自動車}} -{{label|nl|automobiel}} -{{label|ko|자동차}} -| rdfs:subClassOf = MeanOfTransportation, schema:Product -| owl:equivalentClass = -| specificProperties = {{SpecificProperty | ontologyProperty = fuelCapacity | unit = litre }} - {{SpecificProperty | ontologyProperty = wheelbase | unit = millimetre }} -}}OntologyClass:AutomobileEngine200307480262015-05-25T15:03:37Z{{Class -| labels = -{{label|it|motore d'automobile}} -{{label|en|automobile engine}} -{{label|ga|inneall gluaisteáin}} -{{label|de|Fahrzeugmotor}} -{{label|el|κινητήρας αυτοκινήτου}} -{{label|fr|moteur d'automobile}} -{{label|ko|자동차 엔진 }} -{{label|pt|motor de automóvel}} -{{label|ja|内燃機関}} -{{label|nl|automotor}} -| rdfs:subClassOf = Engine -}}OntologyClass:Award200308480272015-05-25T15:03:42Z{{Class -| labels = -{{label|it|premio}} -{{label|de|Auszeichnung}} -{{label|en|award}} -{{label|ga|gradam}} -{{label|el|βραβείο}} -{{label|fr|récompense}} -{{label|nl|prijs}} -{{label|pl|nagroda}} -{{label|sl|nagrada}} -{{label|ko|상}} -{{label|ja|賞}} -| rdfs:subClassOf = owl:Thing -| owl:equivalentClass = wikidata:Q618779 -}}OntologyClass:BackScene2007754469462015-03-22T17:19:19Z{{Class -| labels = -{{label|en|back scene}} -{{label|de|Backround-Chor}} -{{label|nl|achtergrond koor}} -| rdfs:subClassOf = MusicalArtist -}}OntologyClass:Bacteria200309480282015-05-25T15:03:46Z{{Class -| labels = -{{label|it|batterio}} -{{label|en|bacteria}} -{{label|ga|baictéir}} -{{label|el|βακτήρια}} -{{label|de|bakterium}} -{{label|es|bacteria}} -{{label|fr|bactérie}} -{{label|ja|真正細菌}} -{{label|nl|bacterie}} -{{label|ko|세균}} -| rdfs:subClassOf = Species -}}OntologyClass:BadmintonPlayer200310479562015-05-25T14:56:06Z{{Class -| labels = - {{label|it|giocatore di badminton}} - {{label|en|badminton player}} -{{label|ga|imreoir badmantain}} - {{label|de|Badmintonspieler}} - {{label|el|παίχτης του μπάντμιντον}} - {{label|fr|joueur de badminton}} - {{label|nl|badmintonspeler}} - {{label|pt|jogador de badminton}} - {{label|ko|배드민턴 선수}} - {{label|ja|バドミントン選手}} - -| rdfs:subClassOf = Athlete -}}OntologyClass:Band200311480292015-05-25T15:03:51Z{{Class -| labels = - {{label|en|Band}} -{{label|ga|banna ceoil}} - {{label|nl|band}} - {{label|de|Musikgruppe}} - {{label|fr|groupe de musique}} - {{label|el|μουσικό συγκρότημα}} - {{label|pt|banda}} - {{label|es|banda}} - {{label|ko|음악 그룹}} - {{label|ja|バンド_(音楽)}} - {{label|it|gruppo musicale}} -| rdfs:subClassOf = Group, schema:MusicGroup, dul:SocialPerson -| owl:equivalentClass = wikidata:Q215380 -}}OntologyClass:Bank20010290507492016-04-15T11:55:21Z{{Class -| labels = - {{label|en|bank}} - {{label|nl|bank}} - {{label|de|Bank}} - {{label|fr|banque}} - {{label|el|Τράπεζα}} - {{label|pt|banco}} - {{label|es|banco}} - {{label|it|banca}} - {{label|ja|銀行}} - -| rdfs:subClassOf = Company -| owl:equivalentClass = schema:BankOrCreditUnion -| comments = {{comment|en|a company which main services are banking or financial services.}} -}}OntologyClass:Baronet2008886507502016-04-15T12:00:43Z{{Class -| labels = -{{label|en|baronet}} -{{label|nl|baronet}} -{{label|de|Baronet}} -{{label|it|baronetto}} -{{label|ja|準男爵}} - -| rdfs:subClassOf = BritishRoyalty -}}OntologyClass:BaseballLeague2002163480302015-05-25T15:03:56Z{{Class -| labels = -{{label|en|baseball league}} -{{label|ga|sraith daorchluiche}} -{{label|es|liga de béisbol}} -{{label|de|Baseball-Liga}} -{{label|el|πρωτάθλημα μπέιζμπολ}} -{{label|fr|ligue de baseball}} -{{label|ja|野球リーグ}} -{{label|it|lega di baseball}} -{{label|nl|honkbal competitie}} -{{label|ko|야구 리그}} -| rdfs:subClassOf = SportsLeague -| comments = -{{comment|en|a group of sports teams that compete against each other in Baseball.}} -{{comment|el|ένα σύνολο από ομάδες μπέιζμπολ οι οποίες συναγωνίζονται μεταξύ τους.}} -| owl:equivalentClass = wikidata:Q6631808 -}}OntologyClass:BaseballPlayer200312480312015-05-25T15:04:01Z{{Class -| labels= -{{label|en|baseball player}} -{{label|ga|imreoir daorchluiche}} -{{label|de|Baseballspieler}} -{{label|el|παίκτης μπέιζμπολ}} -{{label|fr|joueur de baseball}} -{{label|it|giocatore di baseball}} -{{label|ja|野球選手}} -{{label|ko|야구 선수}} -{{label|pt|jogador de basebol}} -{{label|nl|honkballer}} -| rdfs:subClassOf = Athlete -| comments = -{{comment|el|Ο αθλητής (άνδρας ή γυναίκα) που συμμετέχει σε μία ομάδα μπέιζμπολ.}} -| owl:equivalentClass = wikidata:Q10871364 -}}OntologyClass:BaseballSeason2008297519012017-02-19T15:51:29Z{{Class -| labels = -{{label|en|baseball season}} -{{label|ga|séasúr daorchluiche}} -{{label|nl|honkbalseizoen}} -{{label|de|Baseballsaison}} -{{label|fr|saison de baseball}} -{{label|el|σεζόν του μπέιζμπολ}} -| rdfs:subClassOf = SportsTeamSeason -}}OntologyClass:BaseballTeam2005760519982017-03-22T15:42:44Z{{Class -| labels = -{{label|en|baseball team}} -{{label|ga|foireann daorchluiche}} -{{label|de|Baseballmannschaft}} -{{label|el|ομάδα μπέιζμπολ}} -{{label|fr|équipe de baseball}} -{{label|en|baseball team}} -{{label|it|squadra di baseball}} -{{label|ja|野球チーム}} -{{label|nl|honkbal team}} -{{label|ko|야구팀}} -| rdfs:subClassOf = SportsTeam -| comments = -{{comment|el| Ένας αριθμός από άνδρες ή γυναίκες που αποτελούν ένα διακριτό σύνολο με συγκεκριμένους στόχους σχετικά με το άθλημα του μπέιζμπολ.}} -}}OntologyClass:BasketballLeague2002164480332015-05-25T15:04:21Z{{Class -| rdfs:label@en = basketball league -| rdfs:label@ga = sraith cispheile -| rdfs:label@de = Basketball-Liga -| rdfs:label@es = liga de baloncesto -| rdfs:label@el = Ομοσπονδία Καλαθοσφαίρισης -| rdfs:label@fr = ligue de basketball -| rdfs:label@ja = バスケットボールリーグ -| rdfs:label@nl = basketbal competitie -| rdfs:label@ko = 농구 리그 -| labels = {{label|it|lega di pallacanestro}} -| rdfs:comment@en = a group of sports teams that compete against each other in Basketball -| rdfs:subClassOf = SportsLeague -}}OntologyClass:BasketballPlayer200313480342015-05-25T15:04:26Z{{Class -| labels = -{{label|en|basketball player}} -{{label|ga|imreoir cispheile}} -{{label|de|Basketballspieler}} -{{label|el|παίκτης καλαθοσφαίρισης}} -{{label|es|Basquetbolista}} -{{label|fr|joueur de basketball}} -{{label|ja|バスケットボール選手}} -{{label|it|giocatore di pallacanestro}} -{{label|ko|농구 선수}} -{{label|nl|basketbal speler}} -| rdfs:subClassOf = Athlete -|comments = -{{comment|el|Ένας αθλητής (άνδρας ή γυναίκα) που ασχολείται με το άθλημα της καλαθοσφαίρισης.}} -| owl:equivalentClass = wikidata:Q3665646 -}}OntologyClass:BasketballTeam2002750519972017-03-22T15:41:36Z{{Class -| labels = -{{label|it|squadra di pallacanestro}} -{{label|el|Κουτί πληροφοριών συλλόγου καλαθοσφαίρισης}} -{{label|nl|basketbalteam}} -{{label|en|basketball team}} -{{label|ga|foireann cispheile}} -{{label|fr|équipe de basketball}} -{{label|pt|time de basquete}} -{{label|de|Basketballmannschaft}} -{{label|ja|バスケットボールチーム}} -{{label|ko| 농구 팀 }} -| rdfs:subClassOf = SportsTeam -}}OntologyClass:Battery20011978526042017-10-31T11:06:16Z{{Class -| labels = {{label|it|batteria}} -{{label|nl|batterij}} -{{label|es|batería}} -{{label|pt|bateria}} -{{label|fr|pile}} -{{label|de|Batterie}} -{{label|en|battery}} -| comments = -{{comment|en|The battery (type) used as energy source in vehicles.}} -| rdfs:domain = MeanOfTransportation -| rdfs:subClassOf = Device -| owl:equivalentClass = wikidata:Q267298 -}}OntologyClass:Bay20011293510782016-05-14T15:11:09Z{{Class -|labels = -{{label|en|bay}} -{{label|de|Bucht}} -{{label|fr|baie}} -{{label|nl|baai}} -{{label|pt|baía}} -{{label|ja|湾}} - -| rdfs:subClassOf = BodyOfWater -}}OntologyClass:Beach20010445521272017-06-19T11:15:40Z{{Class -|labels = - {{label|en|beach}} - {{label|nl|strand}} - {{label|da|strand}} - {{label|de|Strand}} - {{label|es|playa}} - {{label|fr|plage}} - {{label|ca|platja}} - {{label|pt|praia}} - {{label|ja|砂浜}} - -|comments = -{{comment|en|The shore of a body of water, especially when sandy or pebbly.}} -{{comment|es|Ribera del mar o de un río grande, formada de arenales en superficie casi plana.}} -| rdfs:subClassOf = NaturalPlace -}}OntologyClass:BeachVolleyballPlayer2006114519022017-02-19T15:51:57Z{{Class -| labels = -{{label|en|beach volleyball player}} -{{label|nl|beachvolleybal speler}} -{{label|de|Beachvolleyballspieler}} -{{label|el|παίκτης του beach volley}} -{{label|it|giocatore di beach volley}} -{{label|ja|ビーチバレー選手}} -{{label|ko|비치발리볼 선수}} -{{label|fr|joueur de volleyball de plage}} -| rdfs:subClassOf = VolleyballPlayer -|comments = -{{comment|el|Ένα άτομο (άνδρας ή γυναίκα) που ασχολείται με το άθλημα του μπίτς βόλλεϋ.}} -}}OntologyClass:BeautyQueen2006179482072015-05-25T15:21:56Z{{Class -| labels = -{{label|en|beauty queen}} -{{label|ga|spéirbhean}} -{{label|nl|schoonheidskoningin}} -{{label|de|Schönheitskönigin}} -{{label|el|βασίλισσα ομορφιάς}} -{{label|it|reginetta di bellezza}} -{{label|ja|ミス}} -{{label|ko|뷰티퀸}} -| rdfs:subClassOf = Person -| comments = -{{comment|en|A beauty pageant titleholder}} -{{comment|el|Τίτλος που αποδίδεται σε μία γυναίκα, τις περισσότερες φορές μετά από διαγωνισμό.}} -}}OntologyClass:Beer2006641521782017-08-27T14:44:22Z{{Class -|labels= - {{label|en|beer}} -{{label|ga|beoir}} - {{label|da|øl}} - {{label|de|Bier}} - {{label|el|μπύρα}} - {{label|it|birra}} - {{label|nl|bier}} - {{label|fr|bière}} - {{label|es|cerveza}} - {{label|ja|ビール}} - {{label|ko|맥주}} - {{label|pl|piwo}} -| rdfs:subClassOf = Beverage -| owl:equivalentClass = wikidata:Q44 -}}OntologyClass:Beverage200314521212017-06-19T11:10:14Z{{Class -| labels = -{{label|en|beverage}} -{{label|ga|deoch}} -{{label|da|drik}} -{{label|de|Getränk}} -{{label|el|αναψυκτικό}} -{{label|es|bebida}} -{{label|fr|boisson}} -{{label|it|bevanda}} -{{label|ja|飲料}} -{{label|ko|음료}} -{{label|nl|drank}} -| rdfs:subClassOf = Food -| comments = -{{comment|en|A drink, or beverage, is a liquid which is specifically prepared for human consumption.}} -{{comment|de|Ein Getränk ist eine zum Trinken zubereitete Flüssigkeit. Getränke werden entweder zum Stillen von Durst und damit zur Wasseraufnahme des Körpers, als Nahrungsmittel oder auch als reine Genussmittel aufgenommen.}} -{{comment|el| Ένα πόσιμο υγρό ρόφημα, συνήθως με μηδενική ή ελάχιστη περιεκτικότητα αλκοόλης.}} -}}OntologyClass:Biathlete20011159519032017-02-19T15:53:41Z{{Class -| labels = -{{label|en|Biathlete}} -{{label|nl|Biatleet}} -{{label|de|Biathlete}} -{{label|fr|Biathlète}} -{{label|ja|バイアスロン選手}} -| rdfs:subClassOf = WinterSportPlayer -}}OntologyClass:BiologicalDatabase2003134376522014-08-26T04:14:44Z{{Class -| labels = -{{label|en|Biological database}} -{{label|de|Biologische Datenbank}} -{{label|el|Βάση Δεδομένων Βιολογικών Χαρακτηριστικών}} -{{label|fr|Base de données biologiques}} -{{label|ja|バイオデータベース}} -{{label|it|database biologico}} -{{label|pt|Banco de dados biológico}} -{{label|nl|biologische databank}} -{{label|ko|생물학 데이터베이스}} - -| rdfs:subClassOf = Database -| comments = -{{comment|el|Διάφορες βάσεις δεδομένων οι οποίες περιέχουν πληροφορίες που ταυτοποιούν τα βασικά βιολογικά χαρακτηριστικά των οργανισμών. Οι πληροφορίες αυτές συγκροτούνται σε σύνολα βιβλιοθηκών των βασικών δομών των κυττάρων των οργανισμών, όπως οι βιλβιοθήκες νουκλεϊνικών οξέων (genomics) και πρωτεϊνών (proteomics).}} -}}OntologyClass:Biologist20011117519052017-02-19T15:55:09Z{{Class -| labels = -{{label|en|biologist}} -{{label|de|Biologe}} -{{label|nl|bioloog}} -{{label|ja|生物学者}} -{{label|fr|biologiste}} -| rdfs:subClassOf = Scientist -}}OntologyClass:Biomolecule2005026511332016-05-30T15:09:34Z{{Class -| labels = - {{label|en|Biomolecule}} - {{label|nl|Biomolecuul}} - {{label|de|Biomolekül}} - {{label|el|βιομόριο}} - {{label|fr|biomolécule}} - {{label|it|biomolecola}} - {{label|ja|生体物質}} - {{label|ko|생체 분자}} -| comments = - {{comment|en|equivalent to [http://ccdb.ucsd.edu/NIF/BIRNLex-OBO-UBO.owl#birnlex_22].}} - {{comment|nl|Een molecuul wat van nature voorkomt in een organisme en gevormd kan worden door organismen.}} - {{comment|el|Κάθε μόριο που παράγεται σε έναν ζωντανό οργανισμό. Συνήθως μεγαλομοριακές ενώσεις που χρησιμεύουν στην δομή και στο μεταβολισμό του κυττάρου. Πρωτεΐνες, νουκλεϊνικά οξέα, υδατάνθρακες και λιπίδια.}} -| rdfs:subClassOf = owl:Thing -| owl:equivalentClass = wikidata:Q206229 -}}OntologyClass:Bird200315521262017-06-19T11:15:09Z{{Class -| labels = -{{label|en|bird}} -{{label|ga|éan}} -{{label|el|πτηνό}} -{{label|da|fugl}} -{{label|de|Vogel}} -{{label|fr|oiseau}} -{{label|ko|새}} -{{label|ja|鳥類}} -{{label|nl|vogel}} -{{label|it|uccello}} -{{label|es|pájaro}} -| rdfs:subClassOf = Animal}}OntologyClass:Blazon2006781510702016-05-12T16:43:00Z{{Class -| labels = - {{label|en|Blazon}} - {{label|fr|Blason}} - {{label|nl|blazoen (wapenschild)}} - {{label|el|οικόσημο}} - {{label|de|Wappen}} - {{label|ja|紋章記述}} - -| rdfs:subClassOf = owl:Thing -}}OntologyClass:BloodVessel20011521519072017-02-19T16:02:47Z{{Class -| labels = -{{label|en|blood vessel}} -{{label|nl|bloedvat}} -{{label|fr|vaisseau sanguin}} -| rdfs:comment = Blood vessel to be distinguished from Vein -| rdfs:subClassOf = AnatomicalStructure -}}OntologyClass:BoardGame2006547521382017-06-27T11:05:35Z{{Class -| labels = -{{label|da|brætspil}} -{{label|de|Brettspiel}} -{{label|en|board game}} -{{label|el|επιτραπέζιο παιχνίδι}} -{{label|nl|bordspel}} -{{label|fr|jeu de société}} -{{label|it|gioco da tavolo}} -{{label|ja|ボードゲーム}} -{{label|ko|보드 게임}} -{{label|es|juego de mesa}} -| rdfs:subClassOf = Game -| owl:equivalentClass = wikidata:Q131436 -|comments = -{{comment|en|come from http://en.wikipedia.org/wiki/Category:Board_games}} -{{comment|it|Un gioco da tavolo è un gioco che richiede una ben definita superficie di gioco, che viene detta di solito tabellone o plancia.<ref>https://it.wikipedia.org/wiki/Gioco_da_tavolo</ref>}} -}} - -== References == -<references />OntologyClass:BobsleighAthlete20011134515012016-09-16T19:27:12Z{{Class -| labels = -{{label|en|BobsleighAthlete}} -{{label|nl|bobsleeër}} -{{label|de|Bobsportler}} -| rdfs:subClassOf = WinterSportPlayer -}}OntologyClass:BodyOfWater200316498392015-12-17T19:31:45Z{{Class -|labels = -{{label|en|body of water}} -{{label|nl|watervlakte}} -{{label|de|Gewässer}} -{{label|el|ύδατα}} -{{label|es|Cuerpo de agua}} -{{label|fr|étendue d'eau}} -{{label|it|distesa d'acqua}} -{{label|pt|extensão d’água}} -{{label|ja|水域}} -{{label|ko|수역}} -|comments = -{{comment|el|Συγκεντρωμένες, συνήθως μεγάλες ποσότητες νερού (π.χ. ωκεανοί) που βρίσκονται στη Γη ή σε οποιονδήποτε άλλο πλανήτη. Ο όρος χρησιμοποιείται και για υδάτινους σχηματισμούς όπου υπάρχει κίνηση του νερού, όπως ποταμοί, ρεύματα ή κανάλια.}} -| rdfs:subClassOf = NaturalPlace -| owl:equivalentClass = schema:BodyOfWater -}}OntologyClass:Bodybuilder2007327519062017-02-19T16:02:12Z{{Class -| labels = -{{label|en|bodybuilder}} -{{label|de|Bodybuilder}} -{{label|it|culturista}} -{{label|nl|bodybuilder}} -{{label|ko|보디빌더}} -{{label|fr|culturiste}} -| rdfs:subClassOf = Athlete -| owl:equivalentClass = wikidata:Q15982795 -}}OntologyClass:Bone200317480382015-05-25T15:04:47Z{{Class -| labels = -{{label|en|bone}} -{{label|ga|cnámh}} -{{label|de|Knochen}} -{{label|el|οστό}} -{{label|fr|os}} -{{label|it|osso}} -{{label|ja|骨}} -{{label|pt|osso}} -{{label|nl|bot}} -{{label|es|hueso}} -{{label|ko|뼈}} -| rdfs:subClassOf = AnatomicalStructure -| comments = -{{comment|el|Η βασική μονάδα του συστήματος στήριξης των σπονδυλωτών οργανισμών.}} -| owl:equivalentClass = wikidata:Q265868 -}}OntologyClass:Book200318520832017-06-19T10:35:00Z{{Class -| labels = -{{label|en|book}} -{{label|bn|বই}} -{{label|ca|llibre}} -{{label|da|bog}} -{{label|de|Buch}} -{{label|el|βιβλίο}} -{{label|fr|livre}} -{{label|ga|leabhar}} -{{label|it|libro}} -{{label|ja|本}} -{{label|ko|책}} -{{label|nl|boek}} -{{label|pl|książka}} -{{label|ru|книга}} -| rdfs:subClassOf = WrittenWork -| owl:equivalentClass = schema:Book, bibo:Book, wikidata:Q571 -}} - -{{DatatypeProperty -| labels = -{{label|en|name}} -{{label|ru|название}} -| comments = -| rdfs:range = xsd:string -}}OntologyClass:BowlingLeague2002165479462015-05-25T14:55:06Z{{Class -| labels = -{{label|en|bowling league}} -{{label|ga|sraith babhlála}} -{{label|de|Bowling-Liga}} -{{label|es|liga de bolos}} -{{label|el|πρωτάθλημα μπόουλινγκ}} -{{label|fr|ligue de bowling}} -{{label|it|lega di bowling}} -{{label|ja|ボーリングリーグ}} -{{label|nl|bowling competitie}} -{{label|ko|볼링 리그 }} -| rdfs:subClassOf = SportsLeague -|comments = -{{comment|en|a group of sports teams or players that compete against each other in Bowling}} -{{comment|el|Μία διοργάνωση ομάδες ανθρώπων ή μεμονομένα άτομα συναγωνίζονται στο άθλημα του μπόουλινγκ, συνήθως με ένα έπαθλο στους πρωταθλητές.}} -}}OntologyClass:Boxer200319480392015-05-25T15:04:53Z{{Class -| labels = - {{label|it|pugile}} - {{label|en|boxer}} -{{label|ga|dornálaí}} - {{label|de|Boxer}} - {{label|el|πυγμάχος}} - {{label|fr|boxeur}} - {{label|pt|boxeador}} - {{label|ko|권투 선수}} - {{label|ja|ボクサー}} - {{label|nl|bokser}} - -| rdfs:subClassOf = Athlete -}}OntologyClass:BoxingLeague2002166482232015-05-25T15:23:27Z{{Class -| labels = -{{label|en|boxing league}} -{{label|ga|sraith dornálaíochta}} -{{label|de|Box-Liga}} -{{label|es|liga de boxeo}} -{{label|el|πρωτάθλημα πυγμαχίας}} -{{label|fr|ligue de boxe}} -{{label|ja|ボクシングリーグ}} -{{label|it|lega di pugilato}} -{{label|nl|box competitie}} -{{label|ko|권투 리그}} -| rdfs:subClassOf = SportsLeague -| comments = -{{comment|en|A group of sports teams or fighters that compete against each other in Boxing}} -{{comment|el| Μία διοργάνωση στην οποία μεμονωμένοι πυγμάχοι είτε ομάδες πυγμάχων συναγωνίζονται μεταξύ τους με σκοπό την νίκη.}} -}}OntologyClass:Brain200320523282017-10-10T13:32:07Z{{Class -| labels = -{{label|en|brain}} -{{label|ga|inchinn}} -{{label|da|hjerne}} -{{label|de|Gehirn}} -{{label|el|εγκέφαλος}} -{{label|es|cerebro}} -{{label|it|cervello}} -{{label|fr|cerveau}} -{{label|nl|hersenen}} -{{label|ja|脳}} -{{label|ko|뇌}} -| rdfs:subClassOf = AnatomicalStructure -| comments = -{{comment|el|Το βασικό όργανο του νευρικού συστήματος των ζώων, το οποίο καθορίζει ασυνείδητες και συνειδητές λειτουργίες. Ο όρος χρησιμοποιείται πλέον και για τον χαρακτηρισμό των καθοριστικότερων στοιχείων μίας μηχανής ή ενός συνόλου πραγμάτων.}} -}}OntologyClass:Brewery2008718507782016-04-15T16:40:00Z{{Class -| labels = -{{label|de|Brauerei}} -{{label|es|cervecería}} -{{label|en|brewery}} -{{label|fr|brasserie}} -{{label|el|ζυθοποιία}} -{{label|it|birrificio}} -{{label|nl|brouwerij}} -{{label|ja|ブルワリー}} - -| comments = -{{comment|el| Ζυθοποιία ονομάζεται η βιομηχανία παρασκευής μπύρας. }} -| rdfs:subClassOf = Company -}}OntologyClass:Bridge200321521042017-06-19T10:53:49Z{{Class -| labels = -{{label|it|ponte}} -{{label|en|bridge}} -{{label|ga|droichead}} -{{label|el|γέφυρα}} -{{label|da|bro}} -{{label|de|Brücke}} -{{label|sl|most}} -{{label|fr|pont}} -{{label|pt|ponte}} -{{label|ko|다리}} -{{label|bn|সেতু}} -{{label|ja|橋}} -{{label|nl|brug}} -| rdfs:subClassOf = RouteOfTransportation -| comments = -{{comment|en|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).}} -| owl:equivalentClass = wikidata:Q12280 -}}OntologyClass:BritishRoyalty200322468282015-03-21T22:19:25Z{{Class -| labels = -{{label|it|reali britannici}} -{{label|en|British royalty}} -{{label|de|Britisches Königshaus}} -{{label|el|Βρετανική μοναρχία}} -{{label|nl|Britse royalty}} -{{label|fr|royauté Britannique}} -{{label|sl|Britanska kraljevska oseba}} -{{label|ja|イギリス王室}} -{{label|ko|영국 왕족 }} -| rdfs:subClassOf = Royalty -}}OntologyClass:BroadcastNetwork2003014467392015-03-21T16:22:53Z{{Class -| labels = -{{label|en|broadcast network}} -{{label|el|δίκτυο ραδιοφωνικής μετάδοσης}} -{{label|de|Sendergruppe}} -{{label|fr|chaîne de télévision généraliste}} -{{label|ga|líonra craolacháin}} -{{label|ja|ネットワーク_(放送)}} -{{label|nl|omroeporganisatie}} -{{label|pl|sieć emisyjna}} -{{label|ko| 브로드캐스트 네트워크}} -{{label|it|emittente}} -| rdfs:subClassOf = Broadcaster -| comments = -{{comment|en|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)}} -{{comment|el|Ένα δίκτυο μετάδοσης είναι μια οργάνωση, όπως μια εταιρεία ή άλλη ένωση, που παρέχει ζωντανό ή μαγνητοσκοπημένο περιεχόμενο, όπως ταινίες, δελτία ειδήσεων, αθλητικά, και τα προγράμματα δημοσίων υποθέσεων για την εκπομπή πάνω από μια ομάδα ραδιοφωνικών ή τηλεοπτικών σταθμών}} -| owl:equivalentClass = wikidata:Q141683 -}}OntologyClass:Broadcaster2003013535402019-06-28T18:16:22Z{{Class -| labels = -{{label|ar|الشبكة}} -{{label|en|broadcaster}} -{{label|ga|craoltóir}} -{{label|fr|diffuseur}} -{{label|el|εκφωνητής}} -{{label|nl|omroep}} -{{label|de|Rundfunkveranstalter}} -{{label|ja|放送事業者}} -{{label|ko|방송}} -{{label|it|emittente}} -| rdfs:subClassOf = Organisation -| comments = -{{comment|en|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)}} -{{comment|el|Ο ραδιοτηλεοπτικός φορέας είναι ένας οργανισμός που είναι υπεύθυνος για την παραγωγή ραδιοφωνικών ή τηλεοπτικών προγραμμάτων και / ή τη διαβίβασή τους}} -{{comment|de|Ein Rundfunkveranstalter (oder auch Sendeunternehmen) betreibt Hörfunk- oder Fernsehprogramme. (http://de.wikipedia.org/wiki/Rundfunkveranstalter - 28/03/2011)}} -| owl:equivalentClass = wikidata:Q15265344 -}}OntologyClass:BrownDwarf2009179463952015-03-18T18:16:42Z{{Class -| labels = -{{label|de|Brauner Zwerg}} -{{label|en|brown dwarf}} -{{label|nl|bruine dwerg}} -| rdfs:subClassOf = Star -| owl:equivalentClass = wikidata:Q101600 -}}OntologyClass:Browser20012208535572019-09-01T08:09:39Z{{Class -| labels = -{{label|en|Browser}} -{{label|de|Browser}} -{{label|nl|Browser (bladerprogramma)}} -{{label|ru|Браузер}} -}}OntologyClass:Building200324521252017-06-19T11:13:43Z{{Class -| labels = -{{label|en|building}} -{{label|ga|foirgneamh}} -{{label|nl|gebouw}} -{{label|da|bygning}} -{{label|de|Gebäude}} -{{label|fr|bâtiment}} -{{label|es|edificio}} -{{label|el|κτίριο}} -{{label|sl|stavba}} -{{label|ja|建築物}} -{{label|it|edificio}} -{{label|ko|건축물}} -| comments = -{{comment|en|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).}} -{{comment|de|Ein Gebäude, umgangssprachlich auch oft als Haus bezeichnet, ist ein Bauwerk, das Räume umschließt, betreten werden kann und zum Schutz von Menschen, Tieren oder Sachen dient (http://de.wikipedia.org/wiki/Geb%C3%A4ude).}} -| rdfs:subClassOf = ArchitecturalStructure -| owl:disjointWith = Person -| specificProperties = {{SpecificProperty | ontologyProperty = floorArea | unit = squareMetre }} -| owl:equivalentClass = wikidata:Q41176 -}}OntologyClass:BullFighter2004727483482015-05-25T16:38:07Z{{Class -| labels = - {{label|it|torero}} - {{label|en|bullfighter}} - {{label|de|Stierkämpfer}} - {{label|el|ταυρομάχος}} - {{label|es|torero}} - {{label|fr|torero}} - {{label|ja|闘牛士}} - {{label|nl|stierenvechter}} - {{label|ko|투우사}} - {{label|ga|tarbhchomhraiceoir}} - {{label|pl|toreador}} - -| rdfs:subClassOf = Athlete -}}OntologyClass:BusCompany2007966522602017-10-08T10:20:00Z{{Class -| labels = -{{label|en|bus company}} -{{label|ga|comhlacht bus}} -{{label|es|compañía de autobuses}} -{{label|fr|compagnie d'autobus}} -{{label|nl|busmaatschappij}} -{{label|el|εταιρία λεωφορείων}} -{{label|de|Busunternehmen}} -| rdfs:subClassOf = PublicTransitSystem -}}OntologyClass:BusinessPerson2008197479572015-05-25T14:56:12Z{{Class -| labels = -{{label|en|businessperson}} -{{label|ga|duine den lucht gnó}} -{{label|de|Unternehmer}} -{{label|el|επιχειρηματίας}} -{{label|it|imprenditore}} -{{label|nl|ondernemer}} -| comments = -{{comment|el|Με τον όρο επιχειρηματίας νοείται κυρίως κάποιος που κατέχει μία ανώτερη θέση, όπως ένα στέλεχος.}} -| rdfs:subClassOf = Person -}}OntologyClass:Camera2006550482252015-05-25T15:23:37Z{{Class -| labels = - {{label|en|camera}} -{{label|ga|ceamara}} -{{label|de|Kamera}} - {{label|el|φωτογραφική μηχανή}} - {{label|fr|appareil photographique}} - {{label|it|fotocamera}} -{{label|nl|camera}} - {{label|ja|カメラ}} - {{label|ko|카메라}} -| rdfs:subClassOf = Device -|comments = -{{comment|it|Una fotocamera (in lingua italiana nota tradizionalmente come macchina fotografica) è uno strumento utilizzato per la ripresa fotografica e per ottenere immagini di oggetti reali stampabili su supporti materiali cartacei o archiviabili su supporti elettronici.<ref>http://it.wikipedia.org/wiki/Fotocamera</ref>}} -{{comment|el|Φωτογραφική μηχανή ονομάζεται η συσκευή που χρησιμοποιείται για τη λήψη φωτογραφιών.Οι ευρύτερα χρησιμοποιούμενες σήμερα φωτογραφικές μηχανές, ερασιτεχνικής ή επαγγελματικής χρήσης, διακρίνονται σε δύο βασικές κατηγορίες: τις συμπαγείς και στις μονοοπτικές ρεφλέξ. Διακρινόμενες, ανάλογα με την τεχνολογία τους,είναι οι κλασικές φωτογραφικές μηχανές με φιλμ και οι ψηφιακές φωτογραφικές μηχανές.}} -}} - -== References == -<references />OntologyClass:CanadianFootballLeague2002282520362017-04-23T16:59:33Z{{Class -| labels = -{{label|it|lega di football canadese}} -{{label|en|canadian football league}} -{{label|de|Kanadische Footballliga}} -{{label|en|liga de fútbol canadiense}} -{{label|el|καναδική ένωση ποδοσφαίρου}} -{{label|fr|ligue de football canadien}} -{{label|ja|カナディアン・フットボール・リーグ}} -{{label|nl|canadian football competitie}} -{{label|ko|캐나다 풋볼 리그}} -| comments = -{{comment|en|A group of sports teams that compete against each other in canadian football league.}} -{{comment|el|ένα σύνολο αθλητικών ομάδων που ανταγωνίζονται μεταξύ τους στην Καναδική ένωση ποδοσφαίρου }} -| rdfs:subClassOf = SportsLeague -}}OntologyClass:CanadianFootballPlayer2002285467132015-03-21T14:10:34Z{{Class -| labels = -{{label|en|canadian football Player}} -{{label|it|giocatore di football canadese}} -{{label|nl|Canadese football speler}} -{{label|de|kanadischer Footballspieler}} -{{label|el|καναδός παίκτης ποδοσφαίρου}} -{{label|fr|joueur de football canadien}} -{{label|pt|jogador de futebol canadense}} -{{label|ko|캐나다 축구 선수}} - -| rdfs:subClassOf = GridironFootballPlayer -}}OntologyClass:CanadianFootballTeam2002291467812015-03-21T19:55:51Z{{Class -| labels = -{{label|it|squadra di football canadese}} -{{label|en|canadian football Team}} -{{label|nl|Canadees footballteam}} -{{label|de|kanadische Footballmannschaft}} -{{label|el|καναδέζικη ομάδα ποδοσφαίρου}} -{{label|fr|équipe canadienne de football américain}} -{{label|ko|캐나다 축구 팀}} -| rdfs:subClassOf = SportsTeam -}}OntologyClass:Canal200325498492015-12-17T20:24:03Z{{Class -| labels = -{{label|it|canale}} -{{label|en|canal}} -{{label|ga|canáil}} -{{label|el|κανάλι}} -{{label|fr|canal}} -{{label|de|Kanal}} -{{label|pt|canal}} -{{label|ja|運河}} -{{label|nl|kanaal}} -{{label|ko|운하}} -| comments = -{{comment|en|a man-made channel for water}} -{{comment|el|ένα κανάλι για νερό φτιαγμένο από άνθρωπο}} -| rdfs:subClassOf = Stream -| owl:equivalentClass = schema:Canal -| specificProperties = {{SpecificProperty | ontologyProperty = originalMaximumBoatBeam | unit = metre }} - {{SpecificProperty | ontologyProperty = originalMaximumBoatLength | unit = metre }} - {{SpecificProperty | ontologyProperty = maximumBoatBeam | unit = metre }} - {{SpecificProperty | ontologyProperty = maximumBoatLength | unit = metre }} -}}OntologyClass:Canoeist2008272507792016-04-15T16:48:00Z{{Class -| labels = -{{label|en|canoeist}} -{{label|ga|canúálaí}} -{{label|de|Kanute}} -{{label|it|canoista}} -{{label|nl|kanovaarder}} -{{label|ja|カヌー選手}} -| rdfs:subClassOf = Athlete -}}OntologyClass:Canton20011551507802016-04-15T16:51:13Z{{Class -| labels = -{{label|en|canton}} -{{label|de|Kanton}} -{{label|fr|canton}} -{{label|nl|kanton}} -{{label|ja|スイス連邦の州またはフランスの群}} -| comments = -{{comment|en|An administrative (France) or lawcourts (Netherlands) body governing a territorial unity on the municipal level or somewhat above}} -{{comment|de|Das Wort Kanton dient zur Bezeichnung verschiedener (niederen) Verwaltungsbezirke in Frankreich, Belgien, Kanada und anderen Ländern}} -| rdfs:subClassOf = GovernmentalAdministrativeRegion -| owl:equivalentClass = -}}OntologyClass:Cape20011730519122017-02-19T16:13:19Z{{Class -| labels = -{{label|en|cape}} -{{label|fr|cap}} -| rdfs:label@nl = kaap -| rdfs:subClassOf = NaturalPlace -}}OntologyClass:Capital2009434507602016-04-15T12:23:09Z{{Class -| labels = {{label|en|Capital}} -{{label|el|Κεφάλαιο}} -{{label|fr|Capitale}} -{{label|it|Capitale}} -{{label|nl|hoofdstad}} -{{label|de|Hauptstadt}} -{{label|ja|首都}} - -| comments = {{comment|en|A municipality enjoying primary status in a state, country, province, or other region as its seat of government.}} -| rdfs:subClassOf = City -}}OntologyClass:CapitalOfRegion2009441518662017-01-21T14:12:52Z{{Class -| labels = {{label|en|Capital of region}} -{{label|fr|Capitale régionale}} -{{label|de|Hauptstadt der Region}} -{{label|nl|hoofdstad van regio}} -| comments = {{comment|en|seat of a first order administration division.}} -| rdfs:subClassOf = City -}}OntologyClass:CardGame20010383521372017-06-19T11:25:28Z{{Class -| labels = -{{label|en|card game}} -{{label|nl|kaartspel}} -{{label|da|kortspil}} -{{label|de|Kartenspiel}} -{{label|es|juego de cartas}} -{{label|fr|jeu de cartes}} -|comments = -{{comment|en|come from http://en.wikipedia.org/wiki/Category:Card_games}} -| rdfs:subClassOf = Game -| owl:equivalentClass = wikidata:Q142714 -}} - - -== References == -<references />OntologyClass:Cardinal200326507612016-04-15T12:26:29Z{{Class -| labels = -{{label|it|cardinale}} -{{label|en|cardinal}} -{{label|ga|cairdinéal}} -{{label|de|Kardinal}} -{{label|fr|cardinal}} -{{label|pt|cardeal}} -{{label|el|καρδινάλιος}} -{{label|nl|kardinaal}} -{{label|ko|카디널}} -{{label|ja|枢機卿}} - -| rdfs:subClassOf = Cleric -}}OntologyClass:CardinalDirection20010300519392017-02-20T19:37:39Z{{Class -|labels = - {{label|en|Cardinal direction}} - {{label|nl|windrichting}} - {{label|de|Windrichtung}} - {{label|fr|direction cardinale}} -| comments = -{{comment|en|One of the four main directions on a compass or any other system to determine a geographical position}} -{{comment|fr|Une des 4 principales directions d'un compas ou de tout autre système pour déterminer une position geographique}} -| rdfs:subClassOf = TopicalConcept -}}OntologyClass:CareerStation2006505478522015-05-06T09:56:46Z{{Class -| labels = - {{label|en|career station}} - {{label|de|Karrierestation}} - {{label|nl|Carrierestap}} -| comments = - {{comment|en|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}} -| rdfs:subClassOf = TimePeriod -}}OntologyClass:Cartoon2005812480462015-05-25T15:05:39Z{{Class -| labels = -{{label|en|cartoon}} -{{label|ga|cartún}} -{{label|de|Karikatur}} -{{label|el|σατυρικό σκίτσο}} -{{label|it|cartone animato}} -{{label|fr|dessin animé}} -{{label|ja|カートゥーン}} -{{label|nl|spotprent}} -{{label|ko|카툰 (만화) }} -| rdfs:subClassOf = Work -| owl:equivalentClass = wikidata:Q627603 -}}OntologyClass:Case2006467480472015-05-25T15:05:54Z{{Class -| labels = -{{label|en|case}} -{{label|ga|cás}} -{{label|el|υπόθεση}} -{{label|de|Sache}} -{{label|fr|dossier}} -{{label|nl|zaak}} -{{label|ko|케이스}} -| comments = -{{comment|en|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.}} -{{comment|de|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.}} -| rdfs:subClassOf = UnitOfWork -}}OntologyClass:Casino2007451504222016-03-04T06:43:41Z{{Class -| labels = -{{label|en|casino}} -{{label|es|casino}} -{{label|de|Kasino}} -{{label|el|καζίνο}} -{{label|it|casinò}} -{{label|fr|casino}} -{{label|nl|casino}} -{{label|ko|카지노}} -{{label|ja|カジノ}} -| rdfs:subClassOf = Building -| comments = -{{comment|en|In modern English, a casino is a facility which houses and accommodates certain types of gambling activities.}} -{{comment|el|To καζίνο είναι ένας χώρος στον οποίο μπορούμε να παίξουμε τυχερά παιχνίδια ποντάροντας χρήματα.}} -{{comment|fr|Un casino est un lieu proposant des jeux d'argent et de hasard ou jeux de casino.}} -| owl:equivalentClass = wikidata:Q133215 -}}OntologyClass:Castle2006238504202016-03-04T06:43:05Z{{Class -| labels = {{label|en|castle}} -{{label|ga|caisleán}} -{{label|el|κάστρο}} -{{label|fr| château}} -{{label|de| burg}} -{{label|it|castello}} -{{label|nl|kasteel}} -{{label|ko|성 (건축) }} -{{label|ja|城}} -| comments = {{comment|en|Castles often are, but need not be a military structure. They can serve for status, pleasure and hunt as well.}} -| rdfs:subClassOf = Building -| owl:equivalentClass = wikidata:Q23413 -}}OntologyClass:Cat20011431520792017-06-19T10:30:39Z{{Class -| labels = -{{label|en|cat}} -{{label|fr|chat}} -{{label|da|kat}} -{{label|de|Katze}} -{{label|nl|kat}} -{{label|ja|猫}} -| rdfs:subClassOf = Mammal -| owl:disjointWith = <!--Dog--> <!-- due to a bug cannot declare 2-way disjointness, this is declared in class Dog and transitively applies to cat--> -| owl:equivalentClass = wikidata:Q146 -}}OntologyClass:Caterer20011141519412017-02-20T19:40:55Z{{Class -| labels = -{{label|en|Caterer}} -{{label|nl|party service bedrijf}} -{{label|de|Partyservice}} -{{label|fr|traiteur}} -{{label|ja|仕出し業者}} -| rdfs:subClassOf = Company -}}OntologyClass:Cave200327498512015-12-17T20:25:54Z{{Class -| labels = -{{label|en|cave}} -{{label|ga|pluais}} -{{label|el|σπηλιά}} -{{label|fr|grotte}} -{{label|de|Höhle}} -{{label|ja|洞窟}} -{{label|it|grotta}} -{{label|ko|동굴}} -{{label|pt|caverna}} -| rdfs:label@nl = grot -| rdfs:subClassOf = NaturalPlace -| owl:equivalentClass = wikidata:Q35509 -}}OntologyClass:CelestialBody2004733486172015-08-06T12:36:12Z{{Class -| labels = -{{label|en|celestial body}} -{{label|ga|rinn neimhe}} -{{label|de|Himmelskörper}} -{{label|el|ουράνιο σώμα}} -{{label|es|cuerpo celeste}} -{{label|fr|corps celeste}} -{{label|nl|hemellichaam}} -{{label|ja|天体}} -{{label|ko|천체}} -{{label|it|corpo celeste}} -| rdfs:subClassOf = Place -}}OntologyClass:Cemetery2008093507632016-04-15T12:33:14Z{{Class -| labels = -{{label|en|cemetery}} -{{label|ga|reilig}} -{{label|de|Friedhof}} -{{label|el|νεκροταφείο}} -{{label|fr|cimetière}} -{{label|es|cementerio}} -{{label|nl|begraafplaats}} -{{label|ja|墓地}} - -| comments = -{{comment|en|A burial place}} -{{comment|el|Νεκροταφείο (ή Κοιμητήριο) ονομάζεται ο χώρος ο προορισμένος για την ταφή των νεκρών.}} -{{comment|fr|Un cimetière est un groupement de sépultures monumentales.<ref>https://fr.wikipedia.org/wiki/Cimetière</ref>}} - -| rdfs:subClassOf = Place -| owl:equivalentClass = wikidata:Q39614 -}} - -== References == - -<references/>OntologyClass:Chancellor200329507642016-04-15T12:34:15Z{{Class -| labels = -{{label|en|chancellor}} -{{label|ga|seansailéir}} -{{label|el|καγκελάριος}} -{{label|es|canciller}} -{{label|fr|chancelier}} -{{label|pt|chanceler}} -{{label|de|Kanzler}} -{{label|nl|kanselier}} -{{label|ko|재상}} -{{label|it|cancelliere}} -{{label|ja|宰相}} - -| rdfs:subClassOf = Politician -| owl:equivalentClass = wikidata:Q373085 -}}OntologyClass:ChartsPlacements2009173319172014-02-14T18:43:05Z{{Class -| labels = -{{label|en|Place in the Music Charts}} -{{label|de| Chartplatzierungen}} -{{label|nl|plaats op de muziek hitlijst}} -}}OntologyClass:Cheese2006737521102017-06-19T11:02:08Z{{Class -| labels = -{{label|en|cheese}} -{{label|ga|cáis}} -{{label|da|ost}} -{{label|de|Käse}} -{{label|el|τυρί}} -{{label|fr|fromage}} -{{label|it|formaggio}} -{{label|nl|kaas}} -{{label|es|queso}} -{{label|ko|치즈}} -{{label|ja|チーズ}} -| rdfs:subClassOf = Food -| comments = -{{comment|en|A milk product prepared for human consumption}} -{{comment|es|Producto lácteo preparado para el consumo humano}} -}}OntologyClass:Chef2006217521362017-06-19T11:24:25Z{{Class -| labels = -{{label|da|kok}} -{{label|de|Koch}} -{{label|en|chef}} -{{label|fr|chef}} -{{label|el|αρχιμάγειρος}} -{{label|it|chef}} -{{label|nl|kok}} -{{label|es|cocinero}} -{{label|ga|cócaire}} -{{label|pl|szef kuchni}} -{{label|ko|요리사}} -{{label|ja|料理人}} - -| comments = -{{comment|en|a person who cooks professionally for other people}} -{{comment|es|una persona que cocina profesionalmente para otras}} -| rdfs:subClassOf = Person -}}OntologyClass:ChemicalCompound200330480532015-05-25T15:06:23Z{{Class -| labels = -{{label|it|composto chimico}} -{{label|en|chemical compound}} -{{label|ga|comhdhúileach}} -{{label|de|chemische Verbindung}} -{{label|el|χημική ένωση}} -{{label|fr|produit chimique}} -{{label|pt|composto químico}} -{{label|ja|化合物}} -{{label|nl|chemisch component}} -{{label|ko|화합물}} -| rdfs:subClassOf = ChemicalSubstance -| owl:equivalentClass = wikidata:Q11173 -}}OntologyClass:ChemicalElement2004230376882014-08-28T02:03:22Z{{Class -| labels = -{{label|en|chemical element}} -{{label|de|chemisches Element}} -{{label|fr|élément chimique}} -{{label|el|χημικό στοιχείο}} -{{label|ja|元素}} -{{label|it|elemento chimico}} -{{label|nl|chemisch element}} -{{label|ko|원소}} -| rdfs:subClassOf = ChemicalSubstance -}}OntologyClass:ChemicalSubstance2004229480542015-05-25T15:06:38Z{{Class -| labels = - {{label|en|chemical substance}} -{{label|ga|ceimiceán}} - {{label|de|chemische Substanz}} - {{label|fr|substance chimique}} - {{label|el|χημική ουσία}} - {{label|ja|化学物質}} - {{label|it|sostanza chimica}} - {{label|nl|chemische substantie}} - {{label|pt|substância química}} - {{label|ko| 화학 물질 }} -| specificProperties = {{SpecificProperty | ontologyProperty = density | unit = kilogramPerCubicMetre }} - {{SpecificProperty | ontologyProperty = meltingPoint | unit = kelvin }} - {{SpecificProperty | ontologyProperty = boilingPoint | unit = kelvin }} -| owl:equivalentClass = dul:ChemicalObject -}}OntologyClass:ChessPlayer2004314511242016-05-26T11:56:00Z{{Class -| labels = -{{label|en|chess player}} -{{label|ga|imreoir fichille}} -{{label|de|Schachspieler}} -{{label|el|παίκτης σκάκι}} -{{label|fr|joueur d'échecs}} -{{label|pl|szachista}} -{{label|it|giocatore di scacchi}} -{{label|nl|schaker}} -{{label|ko| 체스 선수}} -{{label|ja|チェスプレーヤー}} -| rdfs:subClassOf = Athlete -}}OntologyClass:ChristianBishop200331480562015-05-25T15:06:48Z{{Class -| labels = -{{label|en|Christian Bishop}} -{{label|ga|Easpag Críostaí}} -{{label|de|christlicher Bischof}} -{{label|nl|Christelijk bisschop}} -{{label|el|Πληροφορίες Επισκόπου}} -{{label|fr|évêque chrétien}} -{{label|pl|biskup chrześcijański}} -{{label|it|vescovo cristiano}} -{{label|ko| 기독교 주교 }} -| rdfs:subClassOf = Cleric -}}OntologyClass:ChristianDoctrine2006160510772016-05-14T15:08:53Z{{Class -| labels = -{{label|en|Christian Doctrine}} -{{label|de|Christliche Lehre}} -{{label|el|Χριστιανικό Δόγμα}} -{{label|fr|doctrine chrétienne}} -{{label|it|dottrina cristiana}} -{{label|nl|Christelijke leer}} -{{label|ko|기독교 교리 }} -| comments = {{comment|en|Tenets of the Christian faith, e.g. Trinity, Nicene Creed}} -| rdfs:subClassOf = TheologicalConcept -}}OntologyClass:ChristianPatriarch2005641511342016-05-31T12:52:27Z{{Class -| labels = -{{label|en|Christian Patriarch}} -{{label|de|christlicher Patriarch}} -{{label|el|χριστιανός πατριάρχης}} -{{label|fr|patriarche chrétien}} -{{label|pl|patriarcha chrześcijański}} -{{label|it|patriarca cristiano}} -{{label|nl|christelijk patriarch}} -{{label|ko|기독교 총대주교}} -| rdfs:subClassOf = Cleric -}}OntologyClass:Church2004810521232017-06-19T11:12:29Z{{Class - -| labels = -{{label|en|church}} -{{label|ga|eaglais}} -{{label|fr|église}} -{{label|es|iglesia}} -{{label|el|εκκλησία}} -{{label|da|kirke}} -{{label|de|Kirche}} -{{label|it|chiesa}} -{{label|pt|igreja}} -{{label|nl|kerk}} -{{label|ja|教会}} -{{label|ko|교회}} -{{label|pl|kościół}} -| rdfs:subClassOf = ReligiousBuilding -| owl:equivalentClass = wikidata:Q16970 -| comments = -{{comment|en|This is used for church buildings, not any other meaning of church.}} -}}OntologyClass:CidocCrm:E4 Period2006767479232015-05-25T14:38:10Z{{Class -|rdfs:label@en = E4 Period -|rdfs:label@nl = E4 Periode -|rdfs:label@ga = An Tréimhse E4 -}}OntologyClass:Cinema20011982526682017-11-18T08:56:26Z{{Class -| labels = -{{label|en|cinema (movie theater)}} -{{label|nl|bioscoop}} -{{label|fr|cinéma}} -{{label|el|κινηματογράφος}} -{{label|de|Theater}} -| rdfs:subClassOf = Venue -| comments = -{{comment|en|A building for viewing films.}} -| owl:equivalentClass = wikidata:Q41253 -}}OntologyClass:Cipher20012194535482019-07-31T15:22:00Z{{Class -| labels = -{{label|en|Cipher}} -{{label|nl|Geheimschrift}} -{{label|ru|Шифр}} - -| rdfs:subClassOf = -| owl:equivalentClass = -}}OntologyClass:City200332521082017-06-19T10:58:54Z{{Class -| labels = -{{label|it|città}} -{{label|da|by}} -{{label|de|Stadt}} -{{label|en|city}} -{{label|el|πόλη}} -{{label|fr|ville}} -{{label|ga|cathair}} -{{label|gl|cidade}} -{{label|pt|cidade}} -{{label|ko|도시}} -{{label|ja|市}} -{{label|nl|stad}} -{{label|es|ciudad}} -{{label|pl|miasto}} -{{label|hi|शहर}} -| comments = -{{comment|en|a relatively large and permanent settlement, particularly a large urban settlement}} -{{comment|es|un asentamiento permanente y relativamente grande, especialmente un gran asentamiento urbano}} -{{comment|gl|Actualmente considérase como unha entidade urbana con alta densidade de poboación na que predominan fundamentalmente a industria e os servizos.}} -| rdfs:subClassOf = Settlement -| owl:equivalentClass = schema:City, wikidata:Q515 -}}OntologyClass:CityDistrict2006490470382015-03-23T09:29:00Z{{Class -| labels = -{{label|de|Stadtviertel}} -{{label|en|city district}} -{{label|fr|quartier}} -{{label|nl|stadswijk}} -| comments = -{{comment|en|District, borough, area or neighbourhood in a city or town}} -| rdfs:subClassOf = Settlement -| owl:equivalentClass = -}}OntologyClass:ClassicalMusicArtist2007994511632016-06-06T12:46:57Z{{Class -| labels = -{{label|en|classical music artist}} -{{label|ga|ceoltóir clasaiceach}} -{{label|de|Künstler der klassischen Musik}} -{{label|el|καλλιτέχνης κλασικής μουσικής}} -{{label|fr|artiste de musique classique}} -{{label|nl|artiest klassieke muziek}} -| comments = -{{comment|el|Ο Λούντβιχ βαν Μπετόβεν,Γερμανός συνθέτης και πιανίστας,ήταν ένας σπουδαίος καλλιτέχνης της κλασικής μουσικής.}} -| rdfs:subClassOf = MusicalArtist -}}OntologyClass:ClassicalMusicComposition2008220511622016-06-06T12:46:32Z{{Class -| labels = -{{label|en|classical music composition}} -{{label|de|Komposition klassischer Musik}} -{{label|el|σύνθεση κλασικής μουσικής}} -{{label|fr|composition de musique classique}} -{{label|it|composizione di musica classica}} -{{label|nl|compositie klassieke muziek}} -| comments = -{{comment|el|Η σύνθεση κλασικής μουσικής μπορεί να πραγματοποιηθεί και με τη βοήθεια ειδικών προγραμμάτων στον υπολογιστή που χρησιμοποιούν συγκεκριμένο αλγόριθμο.}} -| rdfs:subClassOf = MusicalWork -}}OntologyClass:Cleric200333468002015-03-21T21:03:52Z{{Class -| labels = -{{label|en|cleric}} -{{label|fr|ecclésiastique}} -{{label|el|Κλήρος}} -{{label|nl|geestelijke}} -{{label|ja|聖職者}} -{{label|de|geistlicher}} -{{label|ko|성직자}} -{{label|it|ecclesiastico}} -| rdfs:subClassOf = Person -}}OntologyClass:ClericalAdministrativeRegion2006476376962014-08-28T02:06:44Z{{Class -| labels = -{{label|en|clerical administrative region}} -{{label|de|klerikale Verwaltungsregion}} -{{label|fr|région administrative dans une église}} -{{label|nl|kerkelijk bestuurlijk gebied}} -{{label|ko|사무 관리 지역 }} -| comments = -{{comment|en|An administrative body governing some territorial unity, in this case a clerical administrative body}} -| rdfs:subClassOf = AdministrativeRegion -| owl:equivalentClass = -}}OntologyClass:ClericalOrder2006030482292015-05-25T15:24:03Z{{Class -| labels = -{{label|en|clerical order}} -{{label|ga|ord rialta}} -{{label|es|orden clerical}} -{{label|de|klerikaler Orden}} -{{label|el|κληρική τάξη}} -{{label|nl|kloosterorde}} -{{label|it|ordine clericale}} -{{label|fr|ordre religieux}} -| comments = -{{comment|nl|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 één en dezelfde plaatselijke gemeenschap, een klooster of een tempel. Meerdere kloosters van gelijkgezinde religieuzen vormen samen een kloosterorde.}} -| rdfs:subClassOf = ReligiousOrganisation -}}OntologyClass:ClubMoss200334393172015-01-16T19:49:32Z{{Class -| labels = -{{label|en|club moss}} -{{label|nl|wolfsklauw}} -{{label|de|Bärlapp}} -{{label|el|Μούσκλια}} -{{label|fr|lycopodiopsida}} -{{label|ja|ヒカゲノカズラ綱}} -{{label|ko|석송강}} -| rdfs:subClassOf = Plant -}}OntologyClass:Coach2007987507662016-04-15T12:37:09Z{{Class -| labels = -{{label|en|coach}} -{{label|ga|traenálaí}} -{{label|de|Trainer}} -{{label|el|προπονητής}} -{{label|fr|entraîneur}} -{{label|it|allenatore}} -{{label|nl|coach}} -{{label|ja|コーチ}} - -| rdfs:subClassOf = Person -}}OntologyClass:CoalPit20010254469892015-03-22T19:06:57Z{{Class -| labels = -{{label|en|coal pit }} -{{label|nl|steenkolenmijn}} -{{label|de|Kohlengrube}} -| comments = -{{comment|en|A coal pit is a place where charcoal is or was extracted}} -{{comment|nl|Een mijn is een plaats waar steenkool wordt of werd gewonnen}} -| rdfs:subClassOf = Mine -}}OntologyClass:CollectionOfValuables2006575471102015-03-23T15:45:10Z{{Class -|labels = - {{label|en|collection of valuables}} - {{label|de|Kunst- und Wertsachenversammlung}} - {{label|nl|verzameling van kostbaarheden}} - {{label|fr|collection d'objets}} - {{label|ko|귀중품의 컬렉션 }} -| comments = -{{comment|en|Collection of valuables is a collection considered to be a work in itself)}} -{{comment|nl|Een verzameling van kostbaarheden, die als een werk beschouwd wordt ). }} -| rdfs:subClassOf = Work -}}OntologyClass:College200335528132018-02-08T19:53:23Z{{Class -| labels = -{{label|en|college}} -{{label|ga|coláiste}} -{{label|es|universidad}} -{{label|nl|college}} -{{label|de|College}} -{{label|fr|université}} -{{label|el|κολέγιο}} -{{label|ja|単科大学}} -{{label|ko|단과대학}} -{{label|pt|faculdade}} -| rdfs:subClassOf = EducationalInstitution, schema:CollegeOrUniversity -| owl:equivalentClass = -}}OntologyClass:CollegeCoach200336518672017-01-21T14:15:15Z{{Class -| labels = -{{label|en|college coach}} -{{label|ga|traenálaí coláiste}} -{{label|de|College-Trainer}} -{{label|el|προπονητής κολεγίου}} -{{label|fr|entraîneur universitaire}} -{{label|ko|대학 코치 }} -{{label|nl|school coach}} -| rdfs:subClassOf = Coach -}}OntologyClass:Colour2002190521352017-06-19T11:23:53Z{{Class -| labels = - {{label|en|colour}} -{{label|ga|dath}} - {{label|da|farve}} - {{label|de|Farbe}} - {{label|el|χρώμα}} - {{label|fr|couleur}} - {{label|ko|색}} - {{label|nl|kleur}} - {{label|ja|色}} - {{label|pt|cor}} -| comments = -{{comment|en|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.}} -| rdfs:subClassOf = owl:Thing -}}OntologyClass:CombinationDrug20011919526692017-11-18T09:05:17Z{{Class -| labels = -{{label|de|Kombinationspräparat}} -{{label|en|combination drug}} -{{label|nl|combinatiepreparaat}} -{{label|fr|préparation combinée}} -| comments = -{{comment|en|Drugs that are a combination of chemicals‎}} -{{comment|en|Medikamente die mehrere Wirkstoffe enthalten}} -| rdfs:subClassOf = Drug -}}OntologyClass:Comedian200337480622015-05-25T15:07:28Z{{Class -| labels = -{{label|en|comedian}} -{{label|ga|fuirseoir}} -{{label|nl|komiek}} -{{label|de|Komiker}} -{{label|fr|comédien}} -{{label|el|κωμικός}} -{{label|pt|comediante}} -{{label|ja|お笑い芸人}} -{{label|ko|희극 배우}} -| rdfs:subClassOf = Artist -}}OntologyClass:ComedyGroup2006475516062016-11-08T09:07:14Z{{Class -| labels = -{{label|en|Comedy Group}} -{{label|nl|cabaretgroep}} -{{label|ko|코미디 그룹}} -{{label|de|Komikergruppe}} -{{label|ja|お笑いグループ}} -| rdfs:subClassOf = Group -}}OntologyClass:Comic2005813482312015-05-25T15:24:07Z{{Class -| labels = -{{label|en|comic}} -{{label|ga|greannán}} -{{label|de|Comic}} -{{label|el|κινούμενα σχέδια}} -{{label|it|fumetto}} -{{label|nl|stripverhaal}} -{{label|ja|漫画}} -{{label|fr|bande dessinée}} -{{label|es|historieta}} -{{label|ko|만화}} -| rdfs:subClassOf = WrittenWork -| owl:equivalentClass = wikidata:Q245068 -}}OntologyClass:ComicStrip2008710515212016-09-18T15:09:29Z{{Class -| labels = -{{label|en|comic strip}} -{{label|nl|stripverhaal (Amerikaanse wijze)}} -{{label|de|Comicstrip}} -| rdfs:subClassOf = Comic -}}OntologyClass:ComicsCharacter200338515202016-09-18T15:08:21Z{{Class -| labels = -{{label|en|comics character}} -{{label|nl|stripfiguur (Amerikaans)}} -{{label|de|Comic Charakter}} -{{label|el|χαρακτήρας κινούμενων σχεδίων}} -{{label|fr|personnage de bandes dessinées}} -{{label|ja|コミックスのキャラクター}} -{{label|ko|만화애니 등장인물}} -{{label|pt|personagem de quadrinhos}} -| rdfs:subClassOf = FictionalCharacter -}}OntologyClass:ComicsCreator200339507122016-04-13T14:29:38Z{{Class -| labels = -{{label|en|comics creator}} -{{label|de|Comicautor}} -{{label|nl|striptekenaar}} -{{label|fr|créateur de bandes dessinées}} -{{label|el|δημιουργός κόμιξ}} -{{label|ko|만화가}} -{{label|ja|漫画家}} -| rdfs:subClassOf = Artist -}}OntologyClass:Community2007077510802016-05-14T15:15:34Z{{Class -| labels = -{{label|en|Community}} -{{label|ga|pobal}} -{{label|nl|gemeenschap (community)}} -{{label|de|Gemeinde}} -{{label|fr|communauté}} -{{label|el|κοινότητα}} -{{label|ko|공동체}} -{{label|ja|コミュニティ}} -| rdfs:subClassOf = PopulatedPlace -| comments = -{{comment|el| Κοινότητα είναι μία ομάδα ζώντων οργανισμών, ανθρώπων, φυτών ή ζώων που ζουν σε ένα κοινό περιβάλλον. }} -}}OntologyClass:Company200340521412017-06-27T11:09:32Z{{Class -| labels = -{{label|en|company}} -{{label|ga|comhlacht}} -{{label|es|compañía}} -{{label|da|firma}} -{{label|de|Unternehmen}} -{{label|fr|entreprise}} -{{label|es|empresa}} -{{label|el|εταιρία}} -{{label|pt|empresa}} -{{label|ko|회사}} -{{label|ja|会社}} -{{label|nl|bedrijf}} -| rdfs:subClassOf = Organisation -| owl:equivalentClass = wikidata:Q4830453 -}}OntologyClass:Competition2008061519132017-02-19T16:14:49Z{{Class -| labels = -{{label|en|competition}} -{{label|ga|comórtas}} -{{label|de|Wettbewerb}} -{{label|el|διαγωνισμός}} -{{label|nl|competitie}} -{{label|fr|compétition}} -| rdfs:subClassOf = Event -}}OntologyClass:ConcentrationCamp20010248519142017-02-19T16:15:26Z{{Class -| labels = -{{label|en|Concentration camp}} -{{label|de|Konzentrationslager}} -{{label|nl|concentratiekamp}} -{{label|fr|camp de concentration}} -| rdfs:subClassOf = Place -| rdfs:comment@en = camp in which people are imprisoned or confined, commonly in large groups, without trial. -Includes concentration, extermination, transit, detention, internment, (forced) labor, prisoner-of-war, Gulag; Nazi camps related to the Holocaust -}}OntologyClass:Congressman200341393482015-01-16T20:25:36Z{{Class -| labels = -{{label|en|congressman}} -{{label|nl|congressist}} -{{label|de|Abgeordneter}} -{{label|el|βουλευτής}} -{{label|fr|membre du Congrès}} -{{label|ko|하원 의원}} -| rdfs:subClassOf = Politician -}}OntologyClass:Conifer200342480642015-05-25T15:07:38Z{{Class -| labels = -{{label|en|conifer}} -{{label|ga|cónaiféar}} -{{label|de|Konifere}} -{{label|el|κωνοφόρο}} -{{label|fr|conifères}} -{{label|fr|conifere}} -{{label|ja|球果植物門}} -{{label|nl|conifeer}} -{{label|es|conífera}} -{{label|ko|침엽수}} -| rdfs:subClassOf = Plant -|comments = -{{comment|it|Le conifere sono piante vascolari, con semi contenuti in un cono. Sono piante legnose, perlopiù sono alberi e solo poche sono arbusti. -<ref>http://it.wikipedia.org/wiki/Pinophyta</ref>}} -{{comment|es|Las coníferas son plantas vasculares, con las semillas contenidas en un cono. Son plantas leñosas.}} -}} -== References == -<references />OntologyClass:Constellation2004549510812016-05-14T15:16:14Z{{Class -| rdfs:subClassOf = CelestialBody -| labels = -{{label|en|constellation}} -{{label|ga|réaltbhuíon}} -{{label|es|constelación}} -{{label|de|Sternbild}} -{{label|el|αστερισμός}} -{{label|fr|constellation}} -{{label|it|costellazione}} -{{label|tr|takımyıldızı}} -{{label|nl|samenstel}} -{{label|ja|星座}} -{{label|ko|별자리}} -|comments = -{{comment|it|Una costellazione è ognuna delle 88 parti in cui la sfera celeste è convenzionalmente suddivisa allo scopo di mappare le stelle.<ref>http://it.wikipedia.org/wiki/Costellazione</ref>}} -| owl:equivalentClass = wikidata:Q8928 -}} -== References == -<references />OntologyClass:Contest2008060519152017-02-19T16:16:42Z{{Class -| labels = -{{label|en|contest}} -{{label|ga|comórtas}} -{{label|nl|wedstrijd}} -{{label|de|Wettbewerb}} -{{label|el|διαγωνισμός}} -{{label|ja|コンテスト}} -{{label|fr|concours}} -| rdfs:subClassOf = Competition -| owl:equivalentClass = wikidata:Q476300 -}}OntologyClass:Continent200343480662015-05-25T15:07:44Z{{Class -| labels = -{{label|en|continent}} -{{label|ga|ilchríoch}} -{{label|de|Kontinent}} -{{label|el|ήπειρος}} -{{label|fr|continent}} -{{label|it|continente}} -{{label|es|continente}} -{{label|ko|대륙}} -{{label|ja|大陸}} -{{label|nl|continent}} -| rdfs:subClassOf = PopulatedPlace -| owl:equivalentClass = schema:Continent -|comments = -{{comment|it|Un continente è una grande area di terra emersa della crosta terrestre, è anzi la più vasta delle ripartizioni con le quali si suddividono le terre emerse.<ref>http://it.wikipedia.org/wiki/Continente</ref>}} -{{comment|es|Un continente es una gran área de tierra emergida de la costra terrestre.}} -}} -== References == -<references />OntologyClass:ControlledDesignationOfOriginWine2005831507132016-04-13T14:31:10Z{{Class -| labels = -{{label|en|Controlled designation of origin wine}} -{{label|de|kontrollierte Ursprungsbezeichnung für Qualitätsweine}} -{{label|nl|certificaat van herkomst voor kwaliteitswijnen}} -{{label|el|Ελεγμένη ονομασία προέλευσης κρασιού}} -{{label|fr|vin A.O.C.}} -{{label|it|vino D.O.C.}} -| comments = -{{comment|en|A quality assurance label for wines}} -{{comment|el|Μια ετικέτα διασφάλισης της ποιότητας των οίνων}} -| rdfs:subClassOf = Wine -}}OntologyClass:Convention200344468682015-03-22T11:32:25Z{{Class -| labels = -{{label|en|convention}} -{{label|nl|congres}} -{{label|de|Konvention}} -{{label|el|συνέδριο}} -{{label|fr|congrès}} -{{label|ko|컨벤션}} -| rdfs:subClassOf = SocietalEvent -}}OntologyClass:ConveyorSystem20011096519162017-02-19T16:17:38Z{{Class -| labels = -{{label|en|conveyor system}} -{{label|de|Fördersystem}} -{{label|fr|système convoyeur}} -{{label|nl|transportsysteem}} -| specificProperties = -{{SpecificProperty | ontologyProperty = diameter | unit = metre }} -{{SpecificProperty | ontologyProperty = mass | unit = kilogram }} -{{SpecificProperty | ontologyProperty = length | unit = millimetre }} -{{SpecificProperty | ontologyProperty = height | unit = millimetre }} -{{SpecificProperty | ontologyProperty = weight | unit = kilogram }} -{{SpecificProperty | ontologyProperty = width | unit = millimetre }} -| owl:disjointWith = Person -| rdfs:subClassOf = On-SiteTransportation -}}OntologyClass:Country200345523292017-10-10T13:33:10Z{{Class -| labels = -{{label|en|country}} -{{label|ga|tír}} -{{label|nl|land}} -{{label|sl|država}} -{{label|el|χώρα}} -{{label|da|land}} -{{label|de|Staat}} -{{label|fr|pays}} -{{label|es|país}} -{{label|ru|Государство}} -{{label|ko|나라}} -{{label|ja|国}} -| rdfs:subClassOf = PopulatedPlace -| owl:equivalentClass = schema:Country, wikidata:Q6256 -}}OntologyClass:CountrySeat2009253470182015-03-22T21:01:34Z{{Class -| labels = -{{label|en|country estate}} -{{label|de|Landgut}} -{{label|nl|buitenplaats}} -| comments = -{{comment|en|A country seat is a rural patch of land owned by a land owner.}} -{{comment|nl|Een buitenplaats is een landgoed.}} -| rdfs:subClassOf = Place -}}OntologyClass:Crater2008694510822016-05-14T15:16:49Z{{Class -| labels = -{{label|en|crater}} -{{label|ga|cráitéar}} -{{label|de|Krater}} -{{label|el|κρατήρας}} -{{label|fr|cratère}} -{{label|it|cratere}} -{{label|nl|krater}} -{{label|pt|cratera}} -{{label|ja|クレーター}} - -| rdfs:subClassOf = NaturalPlace -}}OntologyClass:CricketGround2008402456822015-03-12T18:48:28Z{{Class -| labels = -{{label|en|cricket ground}} -{{label|de|Cricketfeld}} -{{label|nl|cricketveld}} -{{label|it|campo da cricket}} -| rdfs:subClassOf = SportFacility -}}OntologyClass:CricketLeague2002167503812016-03-04T05:14:44Z{{Class -| labels = -{{label|en|cricket league}} -{{label|ga|sraith cruicéid}} -{{label|de|Cricket-Liga}} -{{label|es|liga de cricket}} -{{label|el|κύπελλο κρικετ}} -{{label|fr|ligue de cricket}} -{{label|nl|cricket competitie}} -{{label|ko|크리켓 대회 }} -{{label|ja|クリケットリーグ }} -| comments = -{{comment|en|a group of sports teams that compete against each other in Cricket}} -| rdfs:subClassOf = SportsLeague -}}OntologyClass:CricketTeam2008249503822016-03-04T05:15:09Z{{Class -| labels = -{{label|en|cricket team}} -{{label|ga|foireann cuircéid}} -{{label|el|ομάδα κρίκετ}} -{{label|de|Cricketmannschaft}} -{{label|it|squadra di cricket}} -{{label|nl|cricketteam}} -{{label|ja|クリケットチーム}} -| rdfs:subClassOf = SportsTeam -}}OntologyClass:Cricketer200346503832016-03-04T05:15:40Z{{Class -| labels = - {{label|en|cricketer}} -{{label|ga|imreoir cruicéid}} - {{label|de|Cricketspieler}} - {{label|el|παίκτης του κρίκετ}} - {{label|fr|joueur de cricket}} - {{label|nl|cricketspeler}} - {{label|ko|크리켓 선수}} - {{label|ja|クリケット選手}} -| rdfs:subClassOf = Athlete -}}OntologyClass:Criminal200347507422016-04-15T11:39:48Z{{Class -| labels = - -{{label|en|criminal}} -{{label|ga|coirpeach}} -{{label|de|Verbrecher}} -{{label|it|delinquente}} -{{label|pt|criminoso}} -{{label|fr|criminel}} -{{label|nl|crimineel}} -{{label|el|εγκληματίας}} -{{label|es|criminal}} -{{label|ko|범죄인}} -{{label|ja|犯罪}} -| rdfs:subClassOf =Person -| owl:equivalentClass = wikidata:Q2159907 - - -}}OntologyClass:CrossCountrySkier20011179515182016-09-18T14:56:25Z{{Class -| labels = -{{label|en|cross-country skier}} -{{label|nl|langlaufer}} -{{label|de|Skilangläufer}} -| rdfs:subClassOf = WinterSportPlayer -}}OntologyClass:Crustacean200348480712015-05-25T15:08:14Z{{Class -| labels = -{{label|en|crustacean}} -{{label|ga|crústach}} -{{label|de|Krebstier}} -{{label|el|αστρακόδερμο}} -{{label|fr|crustacés}} -{{label|ja|甲殻類}} -{{label|nl|schaaldier}} -{{label|ko|갑각류}} -| rdfs:subClassOf = Animal -}}OntologyClass:CultivatedVariety2006251520672017-05-28T10:16:22Z{{Class -| labels = -{{label|en|cultivar (cultivated variety)}} -{{label|nl|cultuurgewas}} -{{label|ga|saothróg}} -{{label|de|Sorte ( kultivierte Sorte )}} -{{label|el|καλλιεργούμενη ποικιλία}} -{{label|ko|재배 품종 }} -| comments = -{{comment|en|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.}} -{{comment|nl|Een plantensoort die voor menselijk gebruik wordt geteeld en uit wilde planten is veredeld}} -| rdfs:subClassOf = Plant -| owl:equivalentClass = wikidata:Q4886 -}}OntologyClass:Curler2006223507822016-04-15T17:09:53Z{{Class -| labels = -{{label|en|curler}} -{{label|de|Curlingspieler}} -{{label|el|μπικουτί}} -{{label|nl|curlingspeler}} -{{label|ko|컬링 선수}} -{{label|ja|カーリング選手}} -| rdfs:subClassOf = WinterSportPlayer -}}OntologyClass:CurlingLeague2002168479542015-05-25T14:55:56Z{{Class -| labels = -{{label|en|curling league}} -{{label|ga|sraith curlála}} -{{label|de|Curling-Liga}} -{{label|es|liga de curling}} -{{label|el|πρωτάθλημα curling}} -{{label|fr|ligue de curling}} -{{label|nl|curling competitie}} -{{label|ko|컬링 리그 }} -| comments = -{{comment|en|a group of sports teams that compete against each other in Curling}} -| rdfs:subClassOf = SportsLeague -}}OntologyClass:Currency200349504232016-03-04T06:44:47Z{{Class -| labels = -{{label|be|Валюта}} -{{label|de|Währung}} -{{label|en|currency}} -{{label|ga|airgeadra}} -{{label|el|νόμισμα}} -{{label|fr|devise}} -{{label|ko|통화}} -{{label|nl|muntsoort}} -{{label|ru|Валюта}} -{{label|ja|通貨}} -| rdfs:subClassOf = owl:Thing -}}OntologyClass:Cycad200350507682016-04-15T12:42:37Z{{Class -| labels = -{{label|en|cycad}} -{{label|ga|cíocáid}} -{{label|nl|cycadeeën}} -{{label|de|Palmfarn}} -{{label|el|φοινικόθαμνος}} -{{label|fr|cycadophytes}} -{{label|pt|cicadácea}} -{{label|ja|ソテツ門}} -{{label|kr|소철류}} -| rdfs:subClassOf = Plant -}}OntologyClass:CyclingCompetition2005842523552017-10-10T13:59:24Z{{Class -| labels = -{{label|en|cycling competition}} -{{label|da|cykelløb}} -{{label|de|Radrennen}} -{{label|el|διαγωνισμός ποδηλασίας}} -{{label|es|Prueba ciclista}} -{{label|it|gara ciclistica}} -{{label|nl|wielercompetitie}} -{{label|ko|사이클 대회}} -| rdfs:subClassOf = SportsEvent -}}OntologyClass:CyclingLeague2002169467652015-03-21T18:56:32Z{{Class -| labels = -{{label|en|cycling league}} -{{label|es|liga de ciclismo}} -{{label|de|Rad-Liga}} -{{label|el|Ομοσπονδία Ποδηλασίας}} -{{label|fr|ligue de cyclisme}} -{{label|nl|wielerronde}} -{{label|ko|사이클 리그}} -| comments = -{{comment|en|a group of sports teams that compete against each other in Cycling}} -| rdfs:subClassOf = SportsLeague -}}OntologyClass:CyclingRace2008128523562017-10-10T14:00:36Z{{Class -| labels = -{{label|en|cycling race}} -{{label|da|cykelløb}} -{{label|de|Radrennen}} -{{label|el|αγώνας ποδηλασίας}} -{{label|it|corsa ciclistica}} -{{label|nl|wielerwedstrijd}} -| rdfs:subClassOf = Race -| owl:equivalentClass = wikidata:Q15091377 -}}OntologyClass:CyclingTeam2007356523572017-10-10T14:01:29Z{{Class -| labels = -{{label|en|cycling team}} -{{label|ga|foireann rothaíochta}} -{{label|nl|wielerploeg}} -{{label|da|cykelhold}} -{{label|de|Radsportteam}} -{{label|el|ομάδα ποδηλασίας}} -{{label|it|squadra di ciclismo}} -{{label|ko|사이클 팀 }} -| comments = -| rdfs:subClassOf = SportsTeam -}}OntologyClass:Cyclist200351523582017-10-10T14:02:10Z{{Class -| labels = - {{label|en|cyclist}} -{{label|ga|rothaí}} - {{label|da|cyklist}} - {{label|de|Radfahrer}} - {{label|el|ποδηλάτης}} - {{label|fr|cycliste}} - {{label|pt|ciclista}} - {{label|es|ciclista}} - {{label|nl|wielrenner}} - {{label|ko|사이클 선수}} - {{label|ja|自転車選手}} -| rdfs:subClassOf = Athlete -}}OntologyClass:D0:Activity2009394529202018-02-21T12:36:49Z{{Class -| labels = -{{label|en|activity}} -{{label|da|aktivitet}} -{{label|de|Aktivität}} -{{label|it|attività}} -{{label|fr|activité}} -{{label|ga|gníomhaíocht}} -{{label|nl|activiteit}} -{{label|pl|aktywność}} -| comments = -{{comment|en|Any action or task, planned or executed by an agent intentionally causing and participating in it. E.g. swimming, shopping, communicating, etc.}} -| owl:equivalentClass = wikidata:Q1914636 -}}OntologyClass:DBpedian20012284535562019-08-29T12:44:38Z{{Class -| labels = - {{label|en|DBpedian}} -| rdfs:subClassOf = Person -}}OntologyClass:DTMRacer20011168515022016-09-16T20:27:53Z{{Class -| labels = -{{label|en|DTM racer}} -{{label|nl|DTM-coureur}} -{{label|de|DTM Rennfahrer}} -| rdfs:subClassOf = RacingDriver -}}OntologyClass:Dam2008353507742016-04-15T16:20:54Z{{Class -| labels = -{{label|en|dam}} -{{label|ga|damba}} -{{label|de|Damm}} -{{label|el|φράγμα}} -{{label|nl|dam}} -{{label|fr|barrage}} -{{label|it|diga}} -{{label|ja|ダム}} -| rdfs:subClassOf = Infrastructure -| comments = -{{comment|el|Ένα φράγμα είναι μια κατασκευή που εμποδίζει, ανακατευθύνει ή επιβραδύνει την φυσική ροή υδάτων.}} -{{comment|en|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.}} -| owl:equivalentClass = wikidata:Q12323 -}}OntologyClass:Dancer2007990509182016-04-21T08:14:29Z{{Class -| labels = -{{label|en|dancer}} -{{label|ga|damhsóir}} -{{label|fr|danceur}} -{{label|de|Tänzer}} -{{label|el|χορευτής}} -{{label|it|ballerino}} -{{label|nl|danser}} -{{label|ja|ダンサー}} -{{label|pl|tancerz}} -| rdfs:subClassOf = Artist -}}OntologyClass:DartsPlayer2006211467092015-03-21T13:33:32Z{{Class -| labels = - {{label|en|darts player}} - {{label|de|Dartspieler}} - {{label|el|παίκτης βελάκιων}} - {{label|nl|darter}} - {{label|ko|다트 선수}} -| rdfs:subClassOf = Athlete -}}OntologyClass:Database2003133528492018-02-08T20:38:27Z{{Class -| labels = - {{label|en|Database}} - {{label|ga|bunachar sonraí}} - {{label|de|Datenbank}} - {{label|el|βάση δεδομένων}} - {{label|fr|Base de données}} - {{label|nl|database}} - {{label|pt|Banco de dados}} - {{label|ja|データベース}} - {{label|ko|데이터베이스}} -| rdfs:subClassOf = Work, dul:InformationObject -| owl:equivalentClass = -}}OntologyClass:Deanery2006480330242014-03-27T16:53:16Z{{Class -| labels = -{{label|en|deanery}} -{{label|de|Dekanat}} -{{label|el|κοσμητεία}} -{{label|nl|proosdij}} -| comments = -{{comment|en|The intermediate level of a clerical administrative body between parish and diocese}} -| rdfs:subClassOf = ClericalAdministrativeRegion -| owl:equivalentClass = -}}OntologyClass:Decoration2005771377232014-08-28T03:22:59Z{{Class -|labels = - {{label|en|decoration}} -{{label|de|Auszeichnung}} - {{label|el|διακόσμηση}} - {{label|it|onorificenza}} - {{label|nl|onderscheiding}} - {{label|fr|décoration}} - {{label|es|condecoración}} - {{label|ja|勲章}} - {{label|ko|장식}} -|comments = - {{comment|en|An object, such as a medal or an order, that is awarded to honor the recipient ostentatiously.<ref name="decoration">http://en.wikipedia.org/wiki/Decoration</ref>}} - {{comment|it|Per onorificenza si intende un segno di onore che viene concesso da un'autorità in riconoscimento di particolari atti benemeriti.<ref name="onorificenza">http://it.wikipedia.org/wiki/Onorificenza</ref>}} - {{comment|fr|Une distinction honorifique en reconnaissance d'un service civil ou militaire .<ref name="décoration">http://fr.wikipedia.org/wiki/D%C3%A9coration_%28honorifique%29</ref>}} -| rdfs:subClassOf = Award -}} -==References== -<references/>OntologyClass:Deity2006672474772015-04-01T18:44:37Z{{Class -| labels = -{{label|en|deity}} -{{label|de|Gottheit}} -{{label|el|θεότητα}} -{{label|ga|dia}} -{{label|ja|神}} -{{label|nl|godheid}} -{{label|pl|bóstwo}} -{{label|ko|이집트 신}} -| rdfs:subClassOf = Agent -| owl:equivalentClass = wikidata:Q178885 -}}OntologyClass:Demographics2007913507852016-04-15T18:18:50Z{{Class -| labels = -{{label|en|demographics}} -{{label|ga|déimeagrafaic}} -{{label|el|δημογραφία}} -{{label|de|Demografie}} -{{label|nl|demografie}} -{{label|fr|démographie}} -{{label|ja|人口動態}} -| comments = -{{comment|en|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")}} -| rdfs:subClassOf = owl:Thing -}}OntologyClass:Department2007015482402015-05-25T15:24:58Z{{Class -| labels = -{{label|en|department}} -{{label|ga|roinn}} -{{label|nl|departement}} -{{label|de|Distrikt}} -{{label|es|Distrito}} -{{label|fr|département}} -{{label|el|τμήμα}} -{{label|ko|부서}} -| rdfs:subClassOf = GovernmentalAdministrativeRegion -}}OntologyClass:Depth2007924521122017-06-19T11:03:38Z{{Class -| labels = -{{label|en|depth}} -{{label|da|dybde}} -{{label|de|Tiefe}} -{{label|fr|profondeur}} -{{label|el|βάθος}} -{{label|nl|diepte}} -{{label|ja|深度}} -}}OntologyClass:Deputy2002330507942016-04-16T05:11:33Z{{Class -| labels = -{{label|en|deputy}} -{{label|de|Stellvertreter}} -{{label|el|αναπληρωτής}} -{{label|es|diputado}} -{{label|fr|député}} -{{label|nl|gedeputeerde}} -{{label|ja|国会議員}} -| rdfs:subClassOf = Politician -}}OntologyClass:Desert2009438507872016-04-15T18:39:32Z{{Class -| labels = {{label|en|Desert}} -{{label|ga|gaineamhlach}} -{{label|de|Wüste}} -{{label|es|Desierto}} -{{label|el|Έρημος}} -{{label|fr|Désert}} -{{label|nl|woestijn}} -{{label|pt|deserto}} -{{label|ja|砂漠}} -| comments = {{comment|en|A barren area of land where little precipitation occurs.}} -{{comment|el|Μία άγονη περιοχή όπου υπάρχει πολύ μικρή βροχόπτωση.}} -| rdfs:subClassOf = NaturalPlace -}}OntologyClass:Device200352498342015-12-17T17:08:15Z{{Class -| labels = -{{label|en|device}} -{{label|ga|gléas}} -{{label|el|συσκευη}} -{{label|de|Gerät}} -{{label|fr|appareil}} -{{label|ja|デバイス}} -{{label|nl|apparaat}} -{{label|ko|장치}} -{{label|pt|dispositivo}} -| rdfs:subClassOf = owl:Thing -}}OntologyClass:DigitalCamera2006551520172017-04-07T12:28:28Z{{Class -| labels = - {{label|en|digital camera}} - {{label|ga|ceamara digiteach}} - {{label|de|Digitalkamera}} - {{label|el|ψηφιακή φωτογραφική μηχανή}} - {{label|fr|appareil photo numérique}} - {{label|nl|digitale camera}} - {{label|ko|디지털 카메라}} -| rdfs:subClassOf = Camera -| comments = -{{comment|el| Η ψηφιακή φωτογραφική μηχανή είναι συσκευή η οποία καταγράφει εικόνες με ηλεκτρονικό τρόπο, σε αντίθεση με την συμβατική φωτογραφική μηχανή, η οποία καταγράφει εικόνες με χημικές και μηχανικές διαδικασίες.}} -{{comment|fr|Un appareil photographique numérique (ou APN) est un appareil photographique qui recueille la lumière sur un capteur photographique électronique, plutôt que sur une pellicule photographique, et qui convertit l'information reçue par ce support pour la coder numériquement.}} -}}OntologyClass:Dike20011550507882016-04-15T18:42:13Z{{Class -| labels = -{{label|en|dike}} -{{label|nl|dijk}} -{{label|fr|levée}} -{{label|it|diga}} -{{label|ja|堤防}} -| rdfs:subClassOf = Infrastructure -| comments = -{{comment|en|A dike is an elongated naturally occurring ridge or artificially constructed fill or wall, which regulates water levels}} -}}OntologyClass:Diocese2006246507892016-04-15T18:44:26Z{{Class -| labels = -{{label|en|diocese}} -{{label|ga|deoise}} -{{label|nl|bisdom}} -{{label|fr|diocèse}} -{{label|de|Diözese}} -{{label|ko|교구}} -{{label|el|επισκοπή}} -{{label|ja|教区}} -| comments = {{comment|en|District or see under the supervision of a bishop.}} -| rdfs:subClassOf = ClericalAdministrativeRegion -}}OntologyClass:Diploma2007842511432016-06-04T20:10:07Z{{Class -| labels = -{{label|en|diploma}} -{{label|ga|dioplóma}} -{{label|de|Diplom}} -{{label|fr|diplôme}} -{{label|nl|diploma}} -{{label|el|δίπλωμα}} -{{label|ja|卒業証明書}} -}}OntologyClass:Disease200353521342017-06-19T11:23:21Z{{Class -| labels = - {{label|da|sygdom}} - {{label|de|Krankheit}} - {{label|en|disease}} -{{label|ga|galar}} - {{label|nl|ziekte}} - {{label|el|ασθένεια}} - {{label|fr|maladie}} - {{label|ko|질병}} - {{label|ja|病気}} - {{label|it|malattia}} -| rdfs:subClassOf = owl:Thing -| owl:equivalentClass = wikidata:Q12136 -}}OntologyClass:DisneyCharacter2007763482442015-05-25T15:25:17Z{{Class -| labels = -{{label|en|disney character}} -{{label|ga|carachtar Disney}} -{{label|nl|Disneyfiguur}} -{{label|de|Disneyfigur}} -{{label|el|χαρακτήρες της ντίσνευ}} -| rdfs:subClassOf = FictionalCharacter -}}OntologyClass:District2006768507912016-04-15T18:50:55Z{{Class -| labels = -{{label|en|district}} -{{label|ga|ceantar}} -{{label|nl|district}} -{{label|el|περιοχή}} -{{label|de|Bezirk}} -{{label|fr|arrondissement}} -{{label|ja|地区}} - {{label|id|kecamatan}} - {{label|ko|구}} -| comments = - {{comment|id|bagian wilayah administratif dibawah kabupaten}} -| rdfs:subClassOf = GovernmentalAdministrativeRegion -}}OntologyClass:DistrictWaterBoard2006496456842015-03-12T19:07:08Z{{Class -| labels = -{{label|en|district water board}} -{{label|nl|waterschap}} -{{label|de|Bezirkwasserwirtschaftsamt}} -| comments = -{{comment|en|Conservancy, governmental agency dedicated to surface water management}} -| rdfs:subClassOf = GovernmentalAdministrativeRegion -| owl:equivalentClass = -}}OntologyClass:Document2009579521302017-06-19T11:17:55Z{{Class -| labels= -{{label|en|document}} -{{label|ga|cáipéis}} -{{label|fr|document}} -{{label|da|dokument}} -{{label|de|Dokument}} -{{label|el|έγγραφο}} -{{label|it|documento}} -{{label|ja|ドキュメント}} -{{label|nl|document}} -| comments= -{{comment|en|Any document}} -| rdfs:subClassOf = Work -| owl:equivalentClass = foaf:Document -}}OntologyClass:DocumentType2008254482482015-05-25T15:25:42Z{{Class -| labels= -{{label|en|Document Type}} -{{label|ga|cineál cáipéise}} -{{label|de|Dokumentenart}} -{{label|el|τύπος εγγράφου}} -{{label|nl|documenttype}} -| comments= -{{comment|en|type of document (official, informal etc.)}} -{{comment|nl|documenttype}} -| rdfs:subClassOf = Type -| specificProperties = -}}OntologyClass:Dog2006770520782017-06-19T10:30:07Z{{Class -| labels = -{{label|en|dog}} -{{label|ga|madra}} -{{label|fr|chien}} -{{label|da|hund}} -{{label|de|Hund}} -{{label|el|σκύλος}} -{{label|nl|hond}} -{{label|ja|イヌ}} -{{label|ko|개}} -| rdfs:subClassOf = Mammal -| owl:disjointWith = Cat -| owl:equivalentClass = wikidata:Q25324 -}}OntologyClass:Drama2006832507932016-04-15T18:57:14Z{{Class -| labels = -{{label|en|drama}} -{{label|ga|dráma}} -{{label|nl|drama}} -{{label|fr|drame}} -{{label|el|δράμα}} -{{label|de|Drama}} -{{label|ko|드라마}} -{{label|ja|ドラマ}} -| rdfs:subClassOf = WrittenWork -| owl:equivalentClass = wikidata:Q25372 -}}OntologyClass:Drug200354487022015-08-10T10:25:09Z{{Class -| labels = -{{label|de|Droge}} -{{label|en|drug}} -{{label|ga|druga}} -{{label|el|φάρμακο}} -{{label|fr|médicament}} -{{label|ko|약}} -{{label|ja|薬物}} -{{label|nl|geneesmiddel}} -| specificProperties = {{SpecificProperty | ontologyProperty = meltingPoint | unit = kelvin }} - {{SpecificProperty | ontologyProperty = boilingPoint | unit = kelvin }} -| rdfs:subClassOf = ChemicalSubstance -| owl:equivalentClass = wikidata:Q8386 -}}OntologyClass:Earthquake20011242510832016-05-14T15:17:39Z{{Class -| labels = -{{label|en|earthquake}} -{{label|de|Erdbeben}} -{{label|fr|tremblement de terre}} -{{label|nl|aardbeving}} -{{label|ja|地震}} -| rdfs:subClassOf = NaturalEvent -| comments = -{{comment|en|the result of a sudden release of energy in the Earth's crust that creates seismic waves}} -}}OntologyClass:Economist2006145507962016-04-16T05:24:28Z{{Class -| labels = - {{label|en|economist}} -{{label|ga|eacnamaí}} -{{label|de|Ökonom}} - {{label|el|οικονομολόγος}} - {{label|fr|économiste}} -{{label|nl|econoom}} - {{label|es|economista}} - {{label|ko|경제학자}} - {{label|ja|経済学者}} -|comments = - {{comment|en|An economist is a professional in the social science discipline of economics.<ref name="Economist">http://en.wikipedia.org/wiki/Economist</ref>}} - {{comment|fr|Le terme d’économiste désigne une personne experte en science économique.<ref name="Économiste">http://fr.wikipedia.org/wiki/%C3%89conomiste</ref>}} - {{comment|es|Un economista es un profesional de las ciencias sociales experto en economía teórica o aplicada.<ref name="Economista">http://es.wikipedia.org/wiki/Economista</ref>}} -| rdfs:subClassOf = Person -| owl:equivalentClass = wikidata:Q188094 -}} - -== References == -<references/>OntologyClass:EducationalInstitution200355528212018-02-08T20:00:46Z{{Class -| labels = -{{label|en|educational institution}} -{{label|da|uddannelsesinstitution}} -{{label|de|Bildungseinrichtung}} -{{label|es|institución educativa}} -{{label|el|εκπαιδευτικό ίδρυμα}} -{{label|fr|établissement d'enseignement}} -{{label|nl|onderwijsinstelling}} -{{label|ko|교육 기관}} -| rdfs:subClassOf = Organisation -| owl:equivalentClass = schema:EducationalOrganization, wikidata:Q2385804 -}}OntologyClass:Egyptologist2007632511262016-05-27T13:45:36Z{{Class -| labels = -{{label|en|egyptologist}} -{{label|ga|Éigipteolaí}} -{{label|fr|égyptologue}} -{{label|nl|egyptoloog}} -{{label|de|Ägyptologe}} -{{label|el|αιγυπτιολόγος}} -{{label|ja|エジプト学者}} -| rdfs:subClassOf = Person -| owl:equivalentClass = wikidata:Q1350189 -}}OntologyClass:Election2002506513672016-07-15T14:07:47Z{{Class -| labels = -{{label|de|Wahl}} -{{label|en|Election}} -{{label|ga|toghchán}} -{{label|el|εκλογή}} -{{label|es|elección}} -{{label|fr|élection}} -{{label|it|elezione}} -{{label|nl|verkiezing}} -{{label|ko|선거}} -{{label|ja|選挙}} -| rdfs:subClassOf = SocietalEvent -| owl:equivalentClass = wikidata:Q40231 -}}OntologyClass:ElectionDiagram2009185485982015-08-05T16:05:49Z{{Class -| labels = -{{label|de|Wahldiagram}} -{{label|en|Election Diagram}} -{{label|el|εκλογικό διάγραμμα}} -{{label|nl|verkiezingen diagram}} -| rdfs:subClassOf = owl:Thing -}}OntologyClass:ElectricalSubstation20011252526382017-11-03T15:44:40Z{{Class -| labels = - {{label|en|electrical substation}} - {{label|nl|transformatorhuisje}} - {{label|de|Transformatorenstation}} -| rdfs:subClassOf = Infrastucture -}}OntologyClass:Embryology200356507992016-04-16T05:31:00Z{{Class -| labels = -{{label|en| embryology}} -{{label|ga|sutheolaíocht}} -{{label|de|Embryologie}} -{{label|el|εμβρυολογία}} -{{label|fr| embryologie}} -{{label|nl| embryologie}} -{{label|ko| 발생학}} -{{label|ja| 発生学}} -| rdfs:subClassOf = AnatomicalStructure -}}OntologyClass:Employer2009425521402017-06-27T11:07:59Z{{Class -| labels = -{{label|da|arbejdsgiver}} -{{label|de|Arbeitgeber}} -{{label|en|Employer}} -{{label|ga|fostóir}} -{{label|es|Empleador}} -{{label|el|Εργοδότης}} -{{label|fr|Employeur}} -{{label|nl|werkgever}} -{{label|ja|雇用者}} -| comments = -{{comment|en|a person, business, firm, etc, that employs workers.}} -{{comment|de|Arbeitgeber ist, wer die Arbeitsleistung des Arbeitnehmers kraft Arbeitsvertrages fordern kann und das Arbeitsentgelt schuldet.}} -{{comment|el|άτομο, επιχείρηση, οργανισμός, κλπ που προσλαμβάνει εργαζόμενους.}} -| rdfs:subClassOf = Agent -| owl:equivalentClass = wikidata:Q3053337 -}}OntologyClass:EmployersOrganisation20010260467492015-03-21T17:46:54Z{{Class -| labels = -{{label|en|Employers' Organisation}} -{{label|de|Arbeitgeberverbände}} -{{label|nl|werkgeversorganisatie}} -{{label|fr|syndicat de patrons}} -| comments = -{{comment|en|An employers' organisation is an organisation of entrepreneurs who work together to coordinate their actions in the field of labour relations}} -| rdfs:subClassOf = Organisation -}}OntologyClass:Engine20011129508012016-04-16T05:36:51Z{{Class -| labels = -{{label|en|engine}} -{{label|de|Motor}} -{{label|nl|motor}} -{{label|ja|機関 (機械)}} -| rdfs:subClassOf = Device -| specificProperties = {{SpecificProperty | ontologyProperty = acceleration | unit = second }} - {{SpecificProperty | ontologyProperty = displacement | unit = cubicCentimetre }} - {{SpecificProperty | ontologyProperty = weight | unit = kilogram }} - {{SpecificProperty | ontologyProperty = torqueOutput | unit = newtonMetre }} - {{SpecificProperty | ontologyProperty = width | unit = millimetre }} - {{SpecificProperty | ontologyProperty = pistonStroke | unit = millimetre }} - {{SpecificProperty | ontologyProperty = co2Emission | unit = gramPerKilometre }} - {{SpecificProperty | ontologyProperty = cylinderBore | unit = millimetre }} - {{SpecificProperty | ontologyProperty = length | unit = millimetre }} - {{SpecificProperty | ontologyProperty = height | unit = millimetre }} - {{SpecificProperty | ontologyProperty = topSpeed | unit = kilometrePerHour }} - {{SpecificProperty | ontologyProperty = powerOutput | unit = kilowatt }} - {{SpecificProperty | ontologyProperty = diameter | unit = millimetre }} -}}OntologyClass:Engineer2006127480822015-05-25T15:09:19Z{{Class -| labels = {{label|en|engineer}} -{{label|ga|innealtóir}} -{{label|el|μηχανικός}} -{{label|fr|ingénieur}} -{{label|de|Ingenieur}} -{{label|nl|ingenieur}} -{{label|it|ingeniere}} -{{label|es|ingeniero}} -{{label|ja|技術者}} -{{label|ko|공학자}} -| rdfs:subClassOf = Person -| owl:equivalentClass = wikidata:Q81096 -}}OntologyClass:Entomologist2008340508022016-04-16T05:38:14Z{{Class -| labels = -{{label|en|entomologist}} -{{label|ga|feithideolaí}} -{{label|nl|entomoloog}} -{{label|de|Entomologe}} -{{label|el|εντομολόγος}} -{{label|it|entomologo}} -{{label|ja|昆虫学者}} -| rdfs:subClassOf = Scientist -| owl:equivalentClass = wikidata:Q3055126 -}}OntologyClass:Enzyme2005845519422017-02-20T21:26:17Z{{Class -| labels = -{{label|en|enzyme}} -{{label|ga|einsím}} -{{label|de|Enzym}} -{{label|el|ένζυμο}} -{{label|fr|enzyme}} -{{label|it|enzima}} -{{label|ja|酵素}} -{{label|nl|enzym}} -{{label|ko|효소}} -| rdfs:subClassOf = Biomolecule -| owl:equivalentClass = wikidata:Q8047 -}}OntologyClass:Escalator20011097508032016-04-16T05:42:14Z{{Class -| labels = -{{label|en|escalator}} -{{label|nl|roltrap}} -{{label|de|Rolltreppe}} -{{label|ja|エスカレーター}} -| specificProperties = -{{SpecificProperty | ontologyProperty = diameter | unit = metre }} -{{SpecificProperty | ontologyProperty = mass | unit = kilogram }} -{{SpecificProperty | ontologyProperty = length | unit = millimetre }} -{{SpecificProperty | ontologyProperty = height | unit = millimetre }} -{{SpecificProperty | ontologyProperty = weight | unit = kilogram }} -{{SpecificProperty | ontologyProperty = width | unit = millimetre }} -| owl:disjointWith = Person -| rdfs:subClassOf = On-SiteTransportation -}}OntologyClass:EthnicGroup200357480842015-05-25T15:09:39Z{{Class -| labels = - {{label|en|ethnic group}} -{{label|ga|grúpa eitneach}} - {{label|el|εθνική ομάδα}} - {{label|fr|groupe ethnique}} - {{label|de|ethnie}} - {{label|it|etnia}} - {{label|ko|민족}} - {{label|nl|etnische groep}} -| rdfs:subClassOf = owl:Thing -| owl:equivalentClass = wikidata:Q41710 -}}OntologyClass:Eukaryote200358480852015-05-25T15:09:43Z{{Class -| labels = -{{label|en| eukaryote}} -{{label|ga|eocarót}} -{{label|de|Eukaryoten}} -{{label|el|ευκαρυωτικό}} -{{label|fr| eucaryote}} -{{label|es|eucarionte}} -{{label|ja| 真核生物}} -{{label|nl|eukaryoot}} -{{label|ko|진핵생물}} -| rdfs:subClassOf = Species -| owl:equivalentClass = wikidata:Q19088 -}}OntologyClass:EurovisionSongContestEntry200359479362015-05-25T14:53:54Z{{Class -| labels = -{{label|en| Eurovision song contest entry}} -{{label|ga|iontráil i gComórtas Amhránaíochta na hEoraifíse}} -{{label|de| Vorentscheid Eurovision song contest}} -{{label|el|Διαγωνισμός τραγουδιού της Eurovision}} -{{label|fr| concours Eurovision de la chanson}} -{{label|nl| Eurovisie Songfestival act}} -| rdfs:subClassOf = Song -}}OntologyClass:Event200360485092015-08-05T13:53:42Z{{Class -| labels = -{{label|en|event}} -{{label|ga|ócáid}} -{{label|pt|evento}} -{{label|el|γεγονός}} -{{label|fr|évènement}} -{{label|de|Ereignis}} -{{label|ja|イベント}} -{{label|nl|gebeurtenis}} -{{label|ko|사건}} -| owl:disjointWith = Person -| owl:equivalentClass = schema:Event, dul:Event, wikidata:Q1656682 -}}OntologyClass:Factory2007454482522015-05-25T15:26:03Z{{Class -| labels = -{{label|en|factory}} -{{label|ga|monarcha}} -{{label|de|Fabrik}} -{{label|el|εργοστάσιο}} -{{label|it|fabbrica}} -{{label|fr|usine}} -{{label|ja|工場}} -{{label|nl|fabriek}} -{{label|ko|공장}} -| rdfs:subClassOf = Building -| comments = -{{comment|en|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.}} -{{comment|el|Το εργοστάσιο είναι ένα κτίριο μέσα στο οποίο, με τη βοήθεια των μηχανημάτων και τη σημαντικότατη συνεισφορά εργασίας από τους εργάτες, παράγονται σήμερα όλα σχεδόν τα βιομηχανικά είδη, είτε αυτά χρειάζονται πάλι για την παραγωγή (όπως μηχανές κλπ.) είτε είναι καταναλωτικά αγαθά.}} -{{comment|fr| Une usine est un bâtiment ou un ensemble de bâtiments destinés à la production industrielle.}} -| owl:equivalentClass = wikidata:Q83405 -}}OntologyClass:Family2006691521392017-06-27T11:06:53Z{{Class -| labels= -{{label|en|family}} -{{label|ga|teaghlach}} -{{label|fr|famille}} -{{label|es|familia}} -{{label|da|familie}} -{{label|de|Familie}} -{{label|el|οικογένεια}} -{{label|ja|家族}} -{{label|nl|familie}} -| rdfs:subClassOf = Agent -| comments= -{{comment|en|A group of people related by common descent, a lineage.}} -{{comment|el|Μια ομάδα ανθρώπων που συνδέονται με κοινή καταγωγή, μια γενεαλογία.}} -| owl:equivalentClass = wikidata:Q8436 -}}OntologyClass:Farmer2008847504282016-03-04T06:51:05Z{{Class -| labels = {{label|en|farmer}} -{{label|ga|feirmeoir}} -{{label|fr|fermier}} -{{label|de|Bauer}} -{{label|nl|boer}} -{{label|el|αγρότης}} -{{label|ja|農家}} -| rdfs:subClassOf = Person -| owl:equivalentClass = wikidata:Q131512 -}}OntologyClass:Fashion2007440504272016-03-04T06:50:48Z{{Class -|labels = - {{label|en|fashion}} -{{label|ga|faisean}} -{{label|de|Mode}} - {{label|el|μόδα}} - {{label|nl|mode}} - {{label|fr|mode}} - {{label|ja|ファッション}} -| comments = -{{comment|en|type or code of dressing, according to the standards of the time or individual design.}} -{{comment|nl|Een stijl of code voor kleding, bepaald door de voorkeursstijl van een tijdperk of door individuele ontwerpers.}} -| rdfs:subClassOf = TopicalConcept -}}OntologyClass:FashionDesigner2006219480872015-05-25T15:09:52Z{{Class -| labels = {{label|en|fashion designer}} -{{label|ga|dearthóir faisin}} -{{label|de|Modedesigner}} -{{label|el|σχεδιαστής μόδας}} -{{label|nl|modeontwerper}} -| rdfs:subClassOf = Artist -| owl:equivalentClass = wikidata:Q3501317 -}}OntologyClass:Fencer2007640508042016-04-16T05:45:12Z{{Class -| labels = - {{label|en|fencer}} -{{label|ga|pionsóir}} - {{label|el|ξιφομάχος}} - {{label|de|Fechter}} - {{label|nl|schermer}} - {{label|ja|フェンシング選手}} -| rdfs:subClassOf = Athlete -| owl:equivalentClass = wikidata:Q737498Q13381863 -}}OntologyClass:Fern200361480882015-05-25T15:10:00Z{{Class -| labels = -{{label|en| fern}} -{{label|ga|raithneach}} -{{label|nl| varen}} -{{label|el| φτέρη}} -{{label|de| farn}} -{{label|it| felce}} -{{label|es|helecho}} -{{label|fr| fougères}} -{{label|pt| samambaia}} -{{label|ja| シダ植物門}} -| rdfs:subClassOf = Plant -}}OntologyClass:FictionalCharacter200362521722017-08-17T08:36:19Z{{Class -| labels = -{{label|en|fictional character}} -{{label|ga|carachtar ficseanúil}} -{{label|de|fiktiver Charakter}} -{{label|fr|personnage de fiction}} -{{label|el|πλασματικός χαρακτήρας}} -{{label|nl|personage (fictie)}} -{{label|ja|キャラクター}} -| rdfs:subClassOf = Agent -| owl:equivalentClass = wikidata:Q95074 -}}OntologyClass:FieldHockeyLeague2002170393632015-01-16T20:49:59Z{{Class -| labels = -{{label|en|field hockey league}} -{{label|nl|hockeybond}} -{{label|de|Feldhockey-Liga}} -{{label|el|πρωτάθλημα χόκεϊ επί χόρτου}} -{{label|fr|ligue d'hockey sur gazon}} -| comments = -{{comment|en| a group of sports teams that compete against each other in Field Hockey}} -{{comment|el|ένα γκρουπ αθλητικών ομάδων που διαγωνίζονται η μια εναντίον της άλλης στο χόκεϊ επί χόρτου}} -| rdfs:subClassOf = SportsLeague -}}OntologyClass:FigureSkater200363480902015-05-25T15:10:09Z{{Class -| labels = -{{label|en| figure skater}} -{{label|ga|scátálaí fíorach}} -{{label|de|Eiskunstläufer}} -{{label|el|αθλητής του καλλιτεχνικού πατινάζ}} -{{label|es|patinador artístico}} -{{label|fr| patineur artistique}} -{{label|pt| patinador artístico}} -{{label|ja| フィギュアスケート選手}} -{{label|nl| kunstschaatser}} -| rdfs:subClassOf = WinterSportPlayer -| owl:equivalentClass = wikidata:Q13219587 -}}OntologyClass:File2009562504262016-03-04T06:50:21Z{{Class -| labels = -{{label|en|file}} -{{label|ga|comhad}} -{{label|de|Datei}} -{{label|nl|bestand}} -{{label|fr|fichier}} -{{label|el|Αρχείο}} -{{label|ja|ファイル}} -| comments = -{{comment|en|A document with a filename}} -{{comment|el|Ένα σύνολο από στοιχεία ή πόρους που μπορούν να χρησιμοποιηθούν για επεξεργασία και παραγωγή πληροφορίας}} -| rdfs:subClassOf = Document -| owl:equivalentClass = -}}OntologyClass:FileSystem20012184535522019-08-23T13:27:05Z{{Class -|labels= - {{label|en|File system}} - {{label|de|Dateisystem}} - {{label|nl|Bestandssysteem}} - {{label|ru|Файловая система}} -| owl:disjointWith = Person -| rdfs:subClassOf = owl:Thing -}}OntologyClass:Film200364523192017-10-10T13:22:50Z{{Class -| labels = -{{label|en|film}} -{{label|en|movie}} -{{label|nl|film}} -{{label|da|film}} -{{label|de|Film}} -{{label|el|ταινία}} -{{label|fr|film}} -{{label|ko|영화}} -{{label|ja|映画}} -{{label|ar|فيلم}} -{{label|pl|film}} -{{label|ga|scannán}} -{{label|es|película}} -| rdfs:subClassOf = Work -| owl:equivalentClass = schema:Movie ,wikidata:Q11424 -}}OntologyClass:FilmFestival200365523412017-10-10T13:43:38Z{{Class -| labels = -{{label|en|film festival}} -{{label|da|filmfestival}} -{{label|de|Filmfestival}} -{{label|el|φεστιβάλ κινηματογράφου}} -{{label|fr|festival du film}} -{{label|ga|féile scannán}} -{{label|ko|영화제}} -{{label|ja|映画祭}} -{{label|nl|filmfestival}} -{{label|pl|festiwal filmowy}} -| rdfs:subClassOf = SocietalEvent, schema:Festival -| owl:equivalentClass = wikidata:Q220505 -}}OntologyClass:Fish200366521792017-08-27T14:45:19Z{{Class -| labels = -{{label|en| fish}} -{{label|ga|iasc}} -{{label|el| ψάρι}} -{{label|da|fisk}} -{{label|de|Fisch}} -{{label|fr| poisson}} -{{label|pt| peixe}} -{{label|es|pescado}} -{{label|ja| 魚類}} -{{label|nl|vis}} -{{label|pl|ryba}} -| rdfs:subClassOf = Animal -| owl:equivalentClass = wikidata:Q152 -}}OntologyClass:Flag2004543521132017-06-19T11:04:23Z{{Class -| labels = - {{label|en|flag}} -{{label|ga|bratach}} - {{label|fr|drapeau}} - {{label|el|σημαία}} - {{label|da|flag}} - {{label|de|Flagge}} - {{label|tr|bayrak}} - {{label|ja|旗}} - {{label|nl|vlag}} - {{label|ko|국기}} -| rdfs:subClassOf = owl:Thing -| owl:equivalentClass = wikidata:Q14660 -}}OntologyClass:FloweringPlant200367396042015-01-20T14:56:07Z{{Class -| labels = -{{label|en|flowering plant}} -{{label|de|bedecktsamige Pflanze}} -{{label|nl|bedektzadigen}} -{{label|it|magnoliofita}} -{{label|es|angiosperma}} -{{label|el|ανθοφόρο φυτό}} -{{label|fr| angiospermes}} -{{label|ja| 被子植物}} -| rdfs:subClassOf = Plant -}}OntologyClass:Foaf:Document2005130498652015-12-17T20:57:31Z{{Class -| labels= -{{label|en|document}} -{{label|de|dokument}} -{{label|el|έγγραφο}} -{{label|it|documento}} -{{label|pt|documento}} -{{label|ja|ドキュメント}} -{{label|nl|document}} -| comments= -{{comment|en|Equivalent to http://xmlns.com/foaf/spec/#term_Document}} -| rdfs:subClassOf = Work -}}OntologyClass:Foaf:Image20010306521292017-06-19T11:17:23Z{{Class -| labels = -{{label|en|image}} -{{label|da|billede}} -{{label|de|Bild}} -{{label|nl|afbeelding}} -{{label|ja|画像}} -| comments = -{{comment|en|A document that contains a visual image}} - -}}OntologyClass:Foaf:Person2001617322322014-03-03T17:22:13Z{{Class -| labels= -{{label|en|person}} -{{label|de|person}} -{{label|el|άτομο}} -{{label|it|persona}} -{{label|fr|personne}} -{{label|ja|人 (法律)}} -{{label|nl|persoon}} -}}OntologyClass:Food2003929528422018-02-08T20:31:24Z{{Class -| labels = - {{label|en|Food}} - {{label|el|φαγητό}} - {{label|da|mad}} - {{label|de|Lebensmittel}} - {{label|ga|bia}} - {{label|ko|음식}} - {{label|ja|食品}} - {{label|es|alimento}} - {{label|nl|voedsel}} - {{label|fr|nourriture}} - {{label|pt|comida}} - {{label|pl|jedzenie}} -| comments = - {{comment|en|Food is any eatable or drinkable substance that is normally consumed by humans.}} - {{comment|el|Φαγητό είναι οποιαδήποτε φαγώσιμη ή πόσιμη ουσία που καταναλώνεται κανονικά από ανθρώπους.}} - {{comment|de|Lebensmittel umfasst als Oberbegriff sowohl Getränke als auch die Nahrungsmittel und Genussmittel.}} -| rdfs:subClassOf = owl:Thing -| owl:equivalentClass = wikidata:Q2095 -}}OntologyClass:FootballLeagueSeason2006073520682017-05-28T10:20:03Z{{Class -| labels = -{{label|en| football league season}} -{{label|nl| Football League seizoen}} -{{label|ga|séasúr srath péile}} -{{label|de| Football Liga Saison}} -{{label|el|αγωνιστική περίοδος πρωταθλήματος ποδοσφαίρου}} -{{label|ko|축구 대회 시즌}} -| rdfs:subClassOf = SportsTeamSeason -}}OntologyClass:FootballMatch2004306480922015-05-25T15:10:27Z{{Class -| labels = -{{label|de|Fußballspiel}} -{{label|en|football match}} -{{label|ga|cluiche peile}} -{{label|el|αγώνας ποδοσφαίρου}} -{{label|pl|mecz piłki nożnej}} -{{label|es|partido de fútbol}} -{{label|nl|voetbal wedstrijd}} -| comments = -{{comment|en|a competition between two football teams}} -| rdfs:subClassOf = SportsEvent -}}OntologyClass:Forest20011709523302017-10-10T13:34:05Z{{Class -|labels = - {{label|en|forest}} - {{label|nl|bos}} - {{label|da|skov}} - {{label|de|Wald}} - {{label|fr|forêt}} - - -|comments = -{{comment|en|A natural place more or less densely grown with trees}} -| rdfs:subClassOf = NaturalPlace -}}OntologyClass:FormerMunicipality2008142474992015-04-01T20:58:47Z{{Class -| labels = -{{label|en|one-time municipality}} -{{label|fr|commune historique}} -{{label|de|ehemalige Gemeinde}} -{{label|nl|voormalige gemeente}} -| comments = -{{comment|en|A municipality that has ceased to exist, and most of the time got incorporated (wholesale or partly) into another municipality}} -| rdfs:subClassOf = Municipality -| owl:equivalentClass = wikidata:Q19730508 -}}OntologyClass:FormulaOneRacer200371393782015-01-18T13:01:44Z{{Class -| labels = -{{label|en|Formula One racer}} -{{label|nl|formule 1-coureur}} -{{label|de|Formel-1 Rennfahrer}} -{{label|el|πιλότος της φόρμουλας ένα}} -{{label|fr|pilote de formule 1}} -| rdfs:subClassOf = RacingDriver -}}OntologyClass:FormulaOneRacing2005331345062014-04-08T15:44:39Z{{ Class -| labels = -{{label|en|formula one racing}} -{{label|de|Formel-1 Rennen}} -{{label|el|φόρμουλα ένας αγώνας}} -{{label|nl|Formule 1-r‎ace}} -| rdfs:subClassOf = SportsLeague -}}OntologyClass:FormulaOneTeam2007982393742015-01-18T12:46:24Z{{Class -| labels = -{{label|en|formula 1 team}} -{{label|nl|formule 1-team}} -{{label|de|Formel-1 Team}} -{{label|el|ομάδα φόρμουλα 1 }} -{{label|it|scuderia formula 1}} -| rdfs:subClassOf = SportsTeam -}}OntologyClass:Fort20011729513822016-07-28T07:24:15Z{{Class -| labels = {{label|en|fort}} -{{label|nl|fort}} -| comments = {{comment|en|Fortified place, most of the time to protect traffic routes}} -| rdfs:subClassOf = MilitaryStructure -}}OntologyClass:Fungus200372480932015-05-25T15:10:32Z{{Class -|labels= -{{label|en|fungus}} -{{label|ga|fungas}} -{{label|de|Pilz}} -{{label|el|μύκητας}} -{{label|fr|fungi}} -{{label|es|hongos}} -{{label|nl|schimmel}} -{{label|ja|菌類}} -| rdfs:subClassOf = Eukaryote -}}OntologyClass:GaelicGamesPlayer200373526702017-11-18T09:09:23Z{{Class -|labels= -{{label|en|Gaelic games player}} -{{label|nl|Gaelische sporter}} -{{label|ga|imreoir sa Chumann Lúthchleas Gael}} -{{label|de|gälischen Sportspieler}} -{{label|el|Γαελικός παίκτης παιχνιδιών}} -{{label|fr|joueur de sports gaéliques}} -| rdfs:subClassOf = Athlete -}}OntologyClass:Galaxy2004440523312017-10-10T13:35:57Z{{Class -|labels= -{{label|en|galaxy}} -{{label|ga|réaltra}} -{{label|da|galakse}} -{{label|de|Galaxie}} -{{label|fr|galaxie}} -{{label|el|γαλαξίας}} -{{label|ja|銀河}} -{{label|nl|melkwegstelsel}} -{{label|pt|galáxia}} -{{label|tr|galaksi}} -{{label|ko|은하}} -| rdfs:subClassOf = CelestialBody -| specificProperties = {{SpecificProperty | ontologyProperty = temperature | unit = kelvin }} - {{SpecificProperty | ontologyProperty = orbitalPeriod | unit = day }} - {{SpecificProperty | ontologyProperty = density | unit = kilogramPerCubicMetre }} - {{SpecificProperty | ontologyProperty = mass | unit = kilogram }} - {{SpecificProperty | ontologyProperty = apoapsis | unit = kilometre }} - {{SpecificProperty | ontologyProperty = maximumTemperature | unit = kelvin }} - {{SpecificProperty | ontologyProperty = averageSpeed | unit = kilometrePerSecond }} - {{SpecificProperty | ontologyProperty = volume | unit = cubicKilometre }} - {{SpecificProperty | ontologyProperty = surfaceArea | unit = squareKilometre }} - {{SpecificProperty | ontologyProperty = meanTemperature | unit = kelvin }} - {{SpecificProperty | ontologyProperty = minimumTemperature | unit = kelvin }} - {{SpecificProperty | ontologyProperty = periapsis | unit = kilometre }} - {{SpecificProperty | ontologyProperty = meanRadius | unit = kilometre }} -| owl:equivalentClass = wikidata:Q318 -}}OntologyClass:Game2002156520982017-06-19T10:48:03Z{{Class -| labels = -{{label|en|game}} -{{label|ga|cluiche}} -{{label|da|spil}} -{{label|de|Spiel}} -{{label|fr|jeu}} -{{label|el|Πληροφορίες παιχνιδιού}} -{{label|pt|jogo}} -{{label|ja|ゲーム}} -{{label|nl|spel}} -{{label|es|juego}} -| comments = -{{comment|en|a structured activity, usually undertaken for enjoyment and sometimes used as an educational tool}} -| rdfs:subClassOf = Activity -| owl:equivalentClass = wikidata:Q11410 - -}}OntologyClass:Garden2008713523322017-10-10T13:36:26Z{{Class -| labels = -{{label|en|garden}} -{{label|ga|gáirdín}} -{{label|fr|jardin}} -{{label|da|have}} -{{label|de|Garten}} -{{label|it|giardino}} -{{label|nl|tuin}} -{{label|el|κήπος}} -{{label|ja|庭園}} -| comments = -{{comment|en|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)}} -| rdfs:subClassOf = Place -| owl:equivalentClass = wikidata:Q1107656 -}}OntologyClass:GatedCommunity2009475457042015-03-13T12:52:13Z{{Class -| labels = -{{label|en|Gated community}} -{{label|nl|Hofje / gebouw met woongemeenschap}} -{{label|de|bewachte Wohnanlage / Siedlung}} -| rdfs:subClassOf = PopulatedPlace -}}OntologyClass:Gene2004112523352017-10-10T13:37:57Z{{Class -|labels= -{{label|en|gene}} -{{label|ga|géin}} -{{label|da|gen}} -{{label|de|Gen}} -{{label|el|γονίδιο}} -{{label|ja|遺伝子}} -{{label|nl|gen}} -{{label|pt|gene}} -{{label|fr|gène}} -| rdfs:subClassOf = Biomolecule -| owl:equivalentClass = wikidata:Q7187 -}}OntologyClass:GeneLocation2005033468892015-03-22T12:36:34Z{{Class -| labels = - {{label|en|GeneLocation}} - {{label|nl|locus}} - {{label|de|Gen Lokation}} - {{label|el|θέση γονιδίων}} - {{label|ja|遺伝子座}} -| rdfs:subClassOf = owl:Thing -}}OntologyClass:Genre2005919503912016-03-04T05:23:55Z{{Class -|labels= -{{label|en|genre}} -{{label|ga|seánra}} -{{label|nl|genre}} -{{label|de|Genre}} -{{label|es|género}} -{{label|el|ύφος}} -{{label|ja|ジャンル}} -| rdfs:subClassOf = TopicalConcept -}}OntologyClass:Geo:SpatialThing2001622518692017-01-21T14:18:18Z{{Class -|rdfs:label@en = spatial thing -|rdfs:label@de = Objektraum -|rdfs:label@fr = objet spatial -|rdfs:label@nl = ruimtelijk object -}}OntologyClass:GeologicalPeriod2006714510932016-05-16T17:04:38Z{{Class -|labels= -{{label|en|geological period}} -{{label|nl|geologische periode}} -{{label|de|geologische Periode}} -{{label|fr|période géologiqueA}} -{{label|el|γεωλογική περίοδος}} -| rdfs:subClassOf = TimePeriod -| owl:disjointWith = Person -| owl:equivalentClass = wikidata:Q392928 -}}OntologyClass:GeopoliticalOrganisation200374469862015-03-22T19:00:18Z{{Class -|labels= -{{label|en|geopolitical organisation}} -{{label|es|organización geopolítica}} -{{label|de|geopolitische Organisation}} -{{label|el|γεωπολιτική οργάνωση}} -{{label|fr|organisation géopolitique}} -{{label|ko|지정학적 조직}} -{{label|nl|geopolitieke organisatie}} -| rdfs:subClassOf = Organisation -| specificProperties = {{SpecificProperty | ontologyProperty = populationDensity | unit = inhabitantsPerSquareKilometre }} - {{SpecificProperty | ontologyProperty = areaMetro | unit = squareKilometre }} -}}OntologyClass:Ginkgo200375392452015-01-16T09:41:20Z{{Class -|labels= -{{label|en|ginkgo}} -{{label|nl|Ginkgo biloba}} -{{label|it|ginkgo biloba}} -{{label|de|ginkgo}} -{{label|el|ginkgo}} -{{label|fr|ginkgo}} -{{label|pt|ginkgo}} -{{label|ja|銀杏属}} -| rdfs:subClassOf = Plant -}}OntologyClass:GivenName2004129474922015-04-01T20:21:04Z{{Class -|labels= -{{label|en|first name}} -{{label|en|given name}} -{{label|de|Vorname}} -{{label|el|όνομα}} -{{label|fr|prénom}} -{{label|ga|céadainm}} -{{label|ja|名}} -{{label|nl|voornaam}} -{{label|pl|imię}} - -| rdfs:subClassOf = Name -| owl:equivalentClass = wikidata:Q202444 -}}OntologyClass:Glacier2008011508082016-04-16T06:00:00Z{{Class -| labels = -{{label|en|glacier}} -{{label|ga|oighearshruth}} -{{label|nl|gletsjer}} -{{label|fr|glacier}} -{{label|de|Gletscher}} -{{label|el|παγετώνας}} -{{label|it|ghiacciaio}} -{{label|pt|geleira}} -{{label|ja|氷河}} -| rdfs:subClassOf = NaturalPlace -| comments = -{{comment|el| Παγετώνες ονομάζονται μεγάλες μάζες πάγου συνήθως κινούμενες λόγω συμπίεσης του χιονιού. }} -| owl:equivalentClass = wikidata:Q35666 -}}OntologyClass:Globularswarm2006149515172016-09-18T14:39:59Z{{Class -| labels = -{{label|en|Globular Swarm}} -{{label|nl|globulaire zwerm (cluster)}} -{{label|de|Kugelschwarm}} -{{label|el|Σφαιρωτό σμήνος}} -| rdfs:subClassOf = Swarm -}}OntologyClass:Gml: Feature2001624458512015-03-14T20:22:26Z{{Class -|rdfs:label@en = Feature -|rdfs:label@de = Feature -|rdfs:label@fr = Caractéristique -}}OntologyClass:Gnetophytes200376470702015-03-23T11:47:59Z{{Class -|labels= -{{label|en|Gnetophytes}} -{{label|de|Gnetophyta}} -{{label|nl|Gnetales}} -{{label|el|Gnetophytes}} -{{label|fr|gnétophytes}} -{{label|ja|グネツム綱}} -| rdfs:subClassOf = Plant -}}OntologyClass:GolfCourse2008361479482015-05-25T14:55:16Z{{Class -| labels = -{{label|en|golf course}} -{{label|ga|cúrsa gailf}} -{{label|de|Golfplatz}} -{{label|el|γήπεδο γκολφ}} -{{label|it|campo da golf}} -{{label|nl|golfbaan}} -| comments = -{{comment|el|Σε ένα γήπεδο γκολφ οι τρύπες συχνά κρύβουν κινδύνους, που ορίζονται ως ειδικές περιοχές για τις οποίες ισχύουν επιπρόσθετοι κανόνες διεξαγωγής του παιχνιδιού.}} -| rdfs:subClassOf = SportFacility -| owl:equivalentClass = wikidata:Q1048525 -}}OntologyClass:GolfLeague2002171479932015-05-25T14:59:55Z{{Class -|labels= -{{label|en|golf league}} -{{label|ga|sraith gailf}} -{{label|de|Golfliga}} -{{label|el|ένωση γκολφ}} -{{label|fr|ligue de golf}} -{{label|nl|golf competitie}} -{{label|pt|liga de golfe}} -|comments = -{{comment|en|Golfplayer that compete against each other in Golf}} -| rdfs:subClassOf = SportsLeague -}}OntologyClass:GolfPlayer2002553523362017-10-10T13:38:36Z{{Class -|labels= -{{label|en|golf player}} -{{label|ga|imreoir gailf}} -{{label|da|golfspiller}} -{{label|de|Golfspieler}} -{{label|el|παίκτης γκολφ}} -{{label|fr|golfeur}} -{{label|nl|golfspeler}} -| rdfs:subClassOf = Athlete -| owl:equivalentClass = wikidata:Q13156709 -}}OntologyClass:GolfTournament2008190480982015-05-25T15:11:06Z{{Class -| labels = -{{label|en|golf tournament}} -{{label|ga|comórtas gailf}} -{{label|de|Golfturnier}} -{{label|it|torneo di golf}} -{{label|nl|golf toernooi}} -| rdfs:subClassOf = Tournament -| owl:equivalentClass = wikidata:Q15061650 -}}OntologyClass:GovernmentAgency2003726518002017-01-05T06:52:41Z{{Class -|labels= -{{label|en|government agency}} -{{label|es|agencia del gobierno}} -{{label|de|Behörde}} -{{label|fr|agence gouvernementale}} -{{label|el|κυβερνητική υπηρεσία}} -{{label|nl|orgaan openbaar bestuur}} -{{label|ru|Орган исполнительной власти}} -{{label|ko|정부 기관}} -| rdfs:subClassOf=Organisation -| owl:equivalentClass = schema:GovernmentOrganization -|comments= -{{comment|en|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.}} -{{comment|de|Eine Behörde ist eine staatliche Einrichtung, die im weitesten Sinne für die Erfüllung von Aufgaben der Verwaltung des Staates und dabei insbesondere für Dienstleistungen des Staates gegenüber seinen Bürgern zuständig ist. Eine Behörde erhält ihren Auftrag aus den Gesetzen des Staates, in dem und für den sie tätig ist.}} -{{comment|el|Μια κυβερνητική υπηρεσία είναι μόνιμη ή ημι-μόνιμη οργάνωση στο μηχανισμό της κυβέρνησης, η οποία είναι υπεύθυνη για την εποπτεία και διαχείριση συγκεκριμένων λειτουργιών, όπως η υπηρεσία πληροφοριών.}} -| owl:equivalentClass = wikidata:Q327333 -}}OntologyClass:GovernmentCabinet20011539502742016-01-11T20:11:28Z{{Class -|labels= -{{label|en|cabinet of ministers}} -{{label|nl|kabinet (regeringsploeg)}} -| rdfs:subClassOf=GovernmentAgency -|comments= -{{comment|en|A cabinet is a body of high-ranking state officials, typically consisting of the top leaders of the executive branch.}} -}}OntologyClass:GovernmentType2002390528122018-02-08T19:51:24Z{{Class -| labels = -{{label|en|Government Type}} -{{label|fr|régime politique}} -{{label|el|Είδη Διακυβέρνησης}} -{{label|de|Regierungsform}} -{{label|nl|regeringsvorm}} -| comments = -{{comment|en|a form of government}} -| rdfs:subClassOf = Type -| specificProperties = -| owl:equivalentClass = -}}OntologyClass:GovernmentalAdministrativeRegion2006559330772014-03-27T17:42:20Z{{Class -| labels = -{{label|en|governmental administrative region}} -{{label|de|staatliche Verwaltungsregion}} -{{label|fr|région administrative d'état}} -{{label|nl|gebied onder overheidsbestuur}} -| comments = -{{comment|en|An administrative body governing some territorial unity, in this case a governmental administrative body}} -| rdfs:subClassOf = AdministrativeRegion -| owl:equivalentClass = -}}OntologyClass:Governor200377480992015-05-25T15:11:10Z{{Class -|labels= -{{label|en|governor}} -{{label|ga|gobharnóir}} -{{label|nl|gouverneur}} -{{label|de|Gouverneur}} -{{label|el|κυβερνήτης}} -{{label|fr|gouverneur}} -{{label|ja|知事}} -| rdfs:subClassOf = Politician -| owl:equivalentClass = wikidata:Q132050 -}}OntologyClass:GrandPrix200378479372015-05-25T14:54:17Z{{Class -| labels = -{{label|en|Grand Prix}} -{{label|ga|Grand Prix}} -{{label|el|γκραν πρι}} -{{label|de|grosser Preis}} -{{label|it|gran premio}} -{{label|fr|grand prix}} -{{label|nl|grand prix}} -{{label|ja| グランプリ}} -| rdfs:subClassOf = SportsEvent -| specificProperties = {{SpecificProperty | ontologyProperty = course | unit = kilometre }} - {{SpecificProperty | ontologyProperty = distance | unit = kilometre }} -}}OntologyClass:Grape200379481002015-05-25T15:11:15Z{{Class -| labels = -{{label|en| grape}} -{{label|ga|fíonchaor}} -{{label|de| Weintraube}} -{{label|it| uva}} -{{label|el| σταφύλι}} -{{label|fr| raisin}} -{{label|ja| ブドウ}} -{{label|nl| druif}} -{{label|es|uva}} -| rdfs:subClassOf = FloweringPlant -| owl:equivalentClass = wikidata:Q10978 -}}OntologyClass:GraveMonument2009222469952015-03-22T19:18:54Z{{Class -| labels = -{{label|en|grave stone or grave monument}} -{{label|nl|grafsteen of grafmonument}} -{{label|de|Grabdenkmal}} -| comments = -{{comment|en|A monument erected on a tomb, or a memorial stone.}} -| rdfs:subClassOf = Monument -}}OntologyClass:GreenAlga200380396122015-01-20T14:59:19Z{{Class -| labels= -{{label|en|green alga}} -{{label|nl|groenwieren}} -{{label|de|Grünalge}} -{{label|el|πράσινο φύκος}} -{{label|fr|algue verte}} -{{label|es|alga verde}} -{{label|ja|緑藻}} -| rdfs:subClassOf = Plant -}}OntologyClass:GridironFootballPlayer2002287526712017-11-18T09:19:23Z{{Class -| labels = -{{label|en|gridiron football player}} -{{label|nl|Gridiron voetballer}} -{{label|de|Gridiron Footballspieler}} -{{label|fr|joueur de football américain gridiron}} -| rdfs:subClassOf = Athlete -| owl:equivalentClass = wikidata:Q14128148 -}}OntologyClass:GrossDomesticProduct2007926507162016-04-13T14:34:54Z{{Class -| labels= -{{label|en|gross domestic product}} -{{label|ga|olltáirgeacht intíre}} -{{label|de|Bruttoinlandsprodukt}} -{{label|nl|bruto nationaal product}} -{{label|el|ακαθάριστο εγχώριο προϊόν}} -}}OntologyClass:GrossDomesticProductPerCapita2007928510742016-05-12T16:54:01Z{{Class -| labels = -{{label|en|gross domestic product per capita}} -{{label|fr|produit intérieur brut par habitant}} -{{label|ga|olltáirgeacht intíre per capita}} -{{label|de|Bruttoinlandsprodukt pro Kopf}} -{{label|nl|bruto nationaal product per hoofd van de bevolking}} -{{label|el|ακαθάριστο εγχώριο προϊόν κατά κεφαλήν}} -}}OntologyClass:Group2005939523372017-10-10T13:39:14Z{{Class -|labels= -{{label|en|group}} -{{label|es|grupo}} -{{label|fr|groupe}} -{{label|da|gruppe}} -{{label|de|Gruppe}} -{{label|it|gruppo}} -{{label|el|ομάδα}} -{{label|ja|集団}} -{{label|nl|groep}} -{{label|ga|grúpa}} -| rdfs:subClassOf = Organisation, schema:Organization -| comments = -{{comment|en|An (informal) group of people.}} -{{comment|fr|un groupe (informel) de personnes.}} -{{comment|el|Μια συνήθως άτυπη ομάδα ανθρώπων.}} -}}OntologyClass:Guitar2007462523522017-10-10T13:55:22Z{{Class -| labels = - {{ label|en|guitar}} - {{ label|fr|guitare}} - {{ label|es|guitarra}} - {{ label|nl|gitaar}} - {{ label|da|guitar}} - {{ label|de|Gitarre}} - {{ label|el|κιθάρα}} - {{ label|ga|giotar}} - {{ label|ja|ギター}} -| comments = - {{ comment|en|Describes the guitar}} - {{ comment|fr|Décrit la guitare}} - {{ comment|es|Describe la guitarra}} - {{ comment|nl|beschrijving van de gitaar}} - {{ comment|el|Περιγράφει την κιθάρα}} -| rdfs:subClassOf = Instrument -<!--| owl:sameAs = <http://www.semanticweb.org/ontologies/2011/3/InstrumentOntology.owl#Guitar>--> -| owl:equivalentClass = wikidata:Q6607 -}}OntologyClass:Guitarist2008178523532017-10-10T13:56:02Z{{Class -| labels = -{{label|en|guitarist}} -{{label|ga|giotáraí}} -{{label|nl|gitarist}} -{{label|fr|guitariste}} -{{label|da|guitarist}} -{{label|de|Gitarrist}} -{{label|it|chitarrista}} -{{label|el|κιθαρίστας}} -{{label|ja|ギター演奏者}} -| rdfs:subClassOf = Instrumentalist -| owl:equivalentClass = wikidata:Q855091 -}}OntologyClass:Gymnast2006111523542017-10-10T13:56:27Z{{Class -| labels = -{{label|en|gymnast}} -{{label|ga|gleacaí}} -{{label|nl|turner}} -{{label|da|gymnast}} -{{label|de|Turner}} -{{label|el|γυμναστής}} -{{label|ja|体操選手}} -| comments = -{{comment|en|A gymnast is one who performs gymnastics}} -{{comment|el|Ένας γυμναστής είναι ένας που εκτελεί γυμναστικές ασκήσεις}} -| rdfs:subClassOf = Athlete -}}OntologyClass:HandballLeague2002172523512017-10-10T13:54:28Z{{Class -| labels = -{{label|en|handball league}} -{{label|da|håndboldliga}} -{{label|de|Handball-Liga}} -{{label|el|Ομοσπονδία Χειροσφαίρισης}} -{{label|fr|ligue de handball}} -{{label|nl|handbal competitie}} -| comments = -{{comment|en|a group of sports teams that compete against each other in Handball}} -| rdfs:subClassOf = SportsLeague -}}OntologyClass:HandballPlayer2005860523492017-10-10T13:52:00Z{{Class -| labels = -{{label|en|handball player}} -{{label|ga|imreoir liathróid láimhe}} -{{label|da|håndboldspiller}} -{{label|de|Handballspieler}} -{{label|el|παίκτης του handball}} -{{label|es|jugador de balonmano}} -{{label|fr|joueur de handball}} -{{label|nl|handballer}} -| rdfs:subClassOf = Athlete -| owl:equivalentClass = wikidata:Q13365117 -}}OntologyClass:HandballTeam2008715523502017-10-10T13:52:34Z{{Class -| labels = -{{label|en|handball team}} -{{label|ga|foireann liathróid láimhe}} -{{label|fr|équipe de handball}} -{{label|da|håndboldhold}} -{{label|de|Handballmannschaft}} -{{label|el|ομάδα χειροσφαίρισης}} -{{label|it|squadra di pallamano}} -{{label|nl|handbal team}} -| rdfs:subClassOf = SportsTeam -| owl:equivalentClass = wikidata:Q10517054 -}}OntologyClass:HighDiver20011181515132016-09-18T11:11:07Z{{Class -|labels= -{{label|de|Turmspringer}} -{{label|nl|schoonspringer}} -{{label|en|high diver}} -|rdfs:subClassOf=Athlete -}}OntologyClass:Historian2008208508122016-04-16T06:14:28Z{{Class -| labels = -{{label|en|historian}} -{{label|ga|staraí}} -{{label|fr|historien}} -{{label|nl|historicus}} -{{label|de|Historiker}} -{{label|it|storico}} -{{label|el|ιστορικός}} -{{label|ja|歴史学者}} -| rdfs:subClassOf = Writer -}}OntologyClass:HistoricBuilding200381528242018-02-08T20:04:20Z{{Class -| labels = -{{label|en|historic building}} -{{label|ga|foirgneamh stairiúil}} -{{label|de|historisches Gebäude}} -{{label|el|ιστορικό κτίριο}} -{{label|nl|historisch gebouw}} -{{label|fr|bâtiment historique}} -{{label|ja|歴史的建造物}} -| rdfs:subClassOf = Building, schema:LandmarksOrHistoricalBuildings -| owl:equivalentClass = -}}OntologyClass:HistoricPlace200382528222018-02-08T20:01:13Z -{{Class -| labels = -{{label|en|historic place}} -{{label|ga|áit stairiúil}} -{{label|de|historischer Ort}} -{{label|nl|plaats van geschiedkundig belang}} -{{label|el|ιστορικός χώρος}} -{{label|fr|site historique}} -| rdfs:subClassOf = Place, schema:LandmarksOrHistoricalBuildings -| owl:equivalentClass = -}}OntologyClass:HistoricalAreaOfAuthority20011604506422016-03-22T13:32:28Z{{Class -| labels = -{{label|en|ancient area of jurisdiction of a person (feudal) or of a governmental body}} -{{label|nl|gebied dat vroeger onder het gezag viel van een heer of vrouwe of een instelling van kerk of staat}} -| comments = -{{comment|en|Mostly for feudal forms of authority, but can also serve for historical forms of centralised authority}} -| rdfs:subClassOf = AdministrativeRegion -| owl:equivalentClass = -}}OntologyClass:HistoricalCountry2009443507262016-04-13T14:49:19Z{{Class -| labels = {{label|en|Historical country}} -{{label|ga|tír stairiúil}} -{{label|fr|ancien pays}} -{{label|de|historischer Land}} -{{label|nl|voormalig land}} -| comments = {{comment|en|A place which used to be a country.}} -| rdfs:subClassOf = Country -}}OntologyClass:HistoricalDistrict2009446507222016-04-13T14:43:49Z{{Class -| labels = {{label|en|Historical district}} -{{label|ga|ceantar stairiúil}} -{{label|fr|ancien département}} -{{label|nl|voormalig kwartier of district}} -{{label|de|historischer Kreis / Bezirk}} -| comments = {{comment|en|a place which used to be a district.}} -| rdfs:subClassOf = District -}}OntologyClass:HistoricalEvent20011954526722017-11-18T09:20:52Z{{Class -| labels = -{{label|en|historical event}} -{{label|nl|historische gebeurtenis}} -{{label|fr|évènement historique}} -{{label|de|historisches Ereignis}} -| comments = -{{comment|en|an event that is clearly different from strictly personal events and had historical impact}} -| rdfs:subClassOf = SocietalEvent -}}OntologyClass:HistoricalPeriod2005938483412015-05-25T16:23:11Z{{Class -|labels= -{{label|en|historical period}} -{{label|el|ιστορική περίοδος}} -{{label|nl|historische periode}} -{{label|de|historische Periode}} -{{label|ga|tréimhse sa stair}} -| comments= -{{comment|en| A historical Period should be linked to a Place by way of the property dct:spatial (already defined)}} -| rdfs:subClassOf = TimePeriod -| owl:equivalentClass = cidoccrm:E4_Period -| owl:disjointWith = Person -| owl:equivalentClass = wikidata:Q11514315 -}}OntologyClass:HistoricalProvince2009447507272016-04-13T14:50:41Z{{Class -| labels = {{label|en|Historical province}} -{{label|ga|cúige stairiúil}} -{{label|fr|Ancienne province}} -{{label|de|historischer Provinz}} -{{label|nl|voormalige provincie}} -| comments = {{comment|en|A place which used to be a province.}} -| rdfs:subClassOf = Province -}}OntologyClass:HistoricalRegion2009445507212016-04-13T14:42:13Z{{Class -| labels = {{label|en|Historical region}} -{{label|ga|réigiún stairiúil}} -{{label|fr|Ancienne région}} -{{label|de|historischer Region}} -{{label|nl|voormalige regio}} -| comments = {{comment|en|a place which used to be a region.}} -| rdfs:subClassOf = Region -| owl:equivalentClass = wikidata:Q1620908 -}}OntologyClass:HistoricalSettlement2009444507192016-04-13T14:39:56Z{{Class -| labels = {{label|en|Historical settlement}} -{{label|ga|áit lonnaithe stairiúil}} -{{label|fr|ancien ville ou village}} -{{label|nl|voormalige stad of dorp}} -{{label|de|historischer Siedlung}} -| comments = {{comment|en|A place which used to be a city or town or village.}} -| rdfs:subClassOf = Settlement -}}OntologyClass:HockeyClub20011257484302015-07-02T13:00:44Z{{Class -| labels = -{{label|en|hockey club}} -{{label|de|Hockeyverein}} -{{label|nl|hockeyclub}} -| rdfs:subClassOf = SportsClub - -}}OntologyClass:HockeyTeam200383467822015-03-21T19:58:41Z{{Class -| labels = -{{label|en|hockey team}} -{{label|nl|hockeyploeg}} -{{label|de|Hockeymannschaft}} -{{label|el|ομάδα χόκεϊ}} -{{label|fr|équipe de hockey}} -{{label|sl|Hokejska ekipa}} -| rdfs:subClassOf = SportsTeam -| owl:equivalentClass = wikidata:Q4498974 -}}OntologyClass:Holiday2004304528462018-02-08T20:34:11Z{{Class -| labels = - {{label|en|holiday}} - {{label|ga|lá saoire}} - {{label|fr|jour férié}} - {{label|nl|vakantie}} - {{label|de|Feiertag}} - {{label|it|giorno festivo}} - {{label|el|αργία}} - {{label|ja|祝日}} - {{label|ko|휴일}} -| comments = - {{comment|fr|Un jour férié est un jour de fête civile ou religieuse, ou commémorant un événement.}} - {{comment|de|Unter einem Feiertag oder Festtag wird allgemein ein arbeitsfreier Tag mit besonderer Feiertagsruhe verstanden.}} -| rdfs:subClassOf = TimeInterval -| owl:equivalentClass = wikidata:Q1445650 -}} - -<references/>OntologyClass:HollywoodCartoon2006103526732017-11-18T09:24:04Z{{Class -| labels = -{{label|en|hollywood cartoon}} -{{label|nl|Hollywood cartoon}} -{{label|el|κινούμενα σχέδια του Hollywood}} -{{label|de|Hollywood Cartoon}} -| rdfs:subClassOf = Cartoon -}}OntologyClass:Hormone20011746515332016-10-06T16:18:25Z{{Class -| labels = -{{label|en|Hormone}} -{{label|nl|hormoon}} -| comments = - {{comment|en| -A hormone is any member of a class of signaling molecules produced by glands in multicellular organisms that are transported by the circulatory system to target distant organs to regulate physiology and behaviour.}} - {{comment|nl|Hormonen zijn signaalstoffen die door endocriene klieren via de bloedbaan aan doelcellen of -organen worden afgegeven en fysiologische processen en gedrag reguleren}} - -| rdfs:subClassOf = Biomolecule -| owl:equivalentClass = wikidata:Q8047 -}}OntologyClass:Horse20011371523222017-10-10T13:26:14Z{{Class -| labels = -{{label|en|horse}} -{{label|fr|cheval}} -{{label|ga|capall}} -{{label|nl|paard}} -{{label|da|hest}} -{{label|de|Pferd}} -{{label|ja|ウマ}} -| rdfs:subClassOf = Mammal -}}OntologyClass:HorseRace2007996510722016-05-12T16:45:52Z{{Class -| labels = -{{label|en|horse race}} -{{label|de|Pferderennen}} -{{label|fr|course de chevaux}} -{{label|el|αγώνας ιππασίας}} -{{label|nl|paardenrace}} -| rdfs:subClassOf = Race -}}OntologyClass:HorseRider2007601510732016-05-12T16:50:29Z{{Class -|labels = -{{label|en|horse rider}} -{{label|fr|cavalier}} -{{label|ga|marcach}} -{{label|de|Reiter}} -{{label|nl|paardrijder}} -{{label|el|ιππέας}} -| rdfs:subClassOf = Athlete -}}OntologyClass:HorseTrainer2006151333572014-04-02T16:43:48Z{{Class -| labels = {{label|en|horse trainer}} -{{label|de|Pferdetrainer}} -{{label|el|εκπαιδευτής αλόγων}} -{{label|ja|調教師}} -{{label|nl|paardentrainer}} -| rdfs:subClassOf = Person -}}OntologyClass:Hospital200384523212017-10-10T13:25:42Z{{Class -| labels = -{{label|da| hospital}} -{{label|de|Krankenhaus}} -{{label|en|hospital}} -{{label|ga|ospidéal}} -{{label|el|νοσοκομείο}} -{{label|nl|ziekenhuis}} -{{label|fr|hôpital}} -{{label|ko|병원}} -{{label|pt|hospital}} -{{label|ja|病院}} -| rdfs:subClassOf = Building -| owl:equivalentClass = schema:Hospital, wikidata:Q16917 -}}OntologyClass:HotSpring2006657498562015-12-17T20:30:36Z{{Class -| labels = -{{label|en|hot spring}} -{{label|ga|foinse the}} -{{label|nl|warmwaterbron}} -{{label|de|heiße Quelle}} -{{label|ja|温泉}} -{{label|pt|fonte termal}} -| rdfs:subClassOf = NaturalPlace -| owl:equivalentClass = wikidata:Q177380 -}}OntologyClass:Hotel2002509523202017-10-10T13:25:10Z{{Class -| labels = -{{label|en|hotel}} -{{label|ga|óstán}} -{{label|da|hotel}} -{{label|de|Hotel}} -{{label|it|albergo}} -{{label|el|ξενοδοχείο}} -{{label|ja|ホテル}} -{{label|fr|hôtel}} -{{label|ko|호텔}} -{{label|nl|hotel}} - -| rdfs:subClassOf = Building -| owl:equivalentClass = schema:Hotel, wikidata:Q27686 -}}OntologyClass:HumanGene2005027482112015-05-25T15:22:18Z{{ Class -|labels= -{{label|en|HumanGene}} -{{label|ga|géin duine}} -{{label|de|Humangen}} -{{label|el|ανθρώπινο γονίδιο}} -{{label|ja|ヒト遺伝子}} -{{label|nl|menselijk gen}} -| rdfs:subClassOf = Gene -}}OntologyClass:HumanGeneLocation2005034470202015-03-22T22:01:05Z{{Class -| labels = -{{label|en|HumanGeneLocation}} -{{label|de|Humangen Lokation}} -{{label|el|τοποθεσία του ανθρώπινου γονιδίου}} -{{label|ja|ヒト遺伝子座}} -{{label|nl|menselijk genoom locatie}} -| rdfs:subClassOf = GeneLocation -}}OntologyClass:Humorist2008033515222016-09-18T15:15:18Z{{Class -| labels = -{{label|en|humorist}} -{{label|nl|komiek}} -{{label|el|χιουμορίστας}} -{{label|de|Humorist}} -{{label|fr|humoriste}} -{{label|ja|喜劇作家または喜劇俳優}} -| rdfs:subClassOf = Artist -}}OntologyClass:IceHockeyLeague2002173345212014-04-08T15:45:56Z{{Class -| labels = -{{label|en|ice hockey league}} -{{label|de|Eishockey-Liga}} -{{label|el|πρωτάθλημα χόκεϋ}} -{{label|fr|ligue d'hockey sur glace}} -{{label|nl|ijshockey competitie}} -| rdfs:subClassOf = SportsLeague -| comments = -{{comment|en|a group of sports teams that compete against each other in Ice Hockey.}} -}}OntologyClass:IceHockeyPlayer200385465822015-03-19T15:49:22Z{{Class -| labels = -{{label|en|ice hockey player}} -{{label|de|Eishockeyspieler}} -{{label|el|παίκτης χόκεϋ}} -{{label|fr|joueur de hockey sur glace}} -{{label|nl|ijshockeyspeler}} -{{label|ko|아이스하키 선수}} -| rdfs:subClassOf = WinterSportPlayer -| owl:equivalentClass = wikidata:Q11774891 -}}OntologyClass:Identifier20011969526752017-11-18T09:32:45Z{{Class -| labels= -{{label|en|identifier}} -{{label|nl|identificator}} -{{label|de|Bezeichner}} -{{label|fr|identifiant}} -| owl:equivalentClass = wikidata:Q6545185 -}}OntologyClass:Ideology2003260508162016-04-16T06:52:39Z{{Class -| labels = - {{label|en|ideology}} -{{label|ga|idé-eolaíocht}} - {{label|fr|idéologie}} - {{label|de|Ideologie}} - {{label|nl|ideologie}} - {{label|el|ιδεολογία}} - {{label|pt|ideologia}} - {{label|ja|イデオロギー}} -| rdfs:subClassOf = TopicalConcept -| comments = - {{comment|en|for example: Progressivism_in_the_United_States, Classical_liberalism}} - {{comment|el|για παραδειγμα: Προοδευτισμός στις ΗΠΑ, κλασικός φιλελευθερισμός}} -| owl:equivalentClass = wikidata:Q7257, d0:CognitiveEntity -}}OntologyClass:Image2009565521282017-06-19T11:16:56Z{{Class -| labels = -{{label|en|image}} -{{label|fr|image}} -{{label|ga|íomhá}} -{{label|nl|afbeelding}} -{{label|da|billede}} -{{label|de|Bild}} -{{label|ja|画像}} -| comments = -{{comment|en|A document that contains a visual image}} -| rdfs:subClassOf = Document -| owl:equivalentClass = foaf:Image, http://www.w3.org/ns/ma-ont#Image -}}OntologyClass:InformationAppliance2006186461962015-03-18T09:36:03Z{{Class -| labels = -{{label|en|information appliance}} -{{label|de|Datengerät}} -{{label|el|συσκευή πληροφορικής}} -{{label|es|dispositivo electrónico}} -| comments = -{{comment|en|An information device such as PDAs or Video game consoles, etc.}} -| rdfs:subClassOf = Device -| owl:equivalentClass = wikidata:Q1067263 -}}OntologyClass:Infrastructure200386521052017-06-19T10:54:56Z{{Class -| labels = -{{label|en|infrastructure}} -{{label|da|infrastruktur}} -{{label|de|Infrastruktur}} -{{label|el|Υποδομή}} -{{label|fr|infrastructure}} -{{label|nl|infrastructure}} -{{label|ja|インフラストラクチャー}} -| rdfs:subClassOf = ArchitecturalStructure -| specificProperties = {{SpecificProperty | ontologyProperty = length | unit = kilometre }} -}}OntologyClass:InlineHockeyLeague2002174479382015-05-25T14:54:21Z{{Class -| rdfs:subClassOf = SportsLeague -| labels = -{{label|en|inline hockey league}} -{{label|ga|sraith haca inlíne}} -{{label|el|πρωτάθλημα χόκεϋ inline }} -{{label|nl|inlinehockey competitie}} -{{label|de|Inlinehockey Liga}} -| comments = -{{comment|en| group of sports teams that compete against each other in Inline Hockey.}} - -}}OntologyClass:Insect200387481082015-05-25T15:12:04Z{{Class -| labels = -{{label|en|insect}} -{{label|ga|feithid}} -{{label|de|Insekt}} -{{label|el|έντομο}} -{{label|nl|insect}} -{{label|es|insecto}} -{{label|fr|insecte}} -{{label|ja|昆虫}} -| rdfs:subClassOf = Animal -| owl:equivalentClass = wikidata:Q1390 -}}OntologyClass:Instrument2002630509192016-04-22T05:15:52Z{{Class -| labels = -{{label|en|Instrument}} -{{label|ga|uirlis}} -{{label|de|musikinstrument}} -{{label|it|strumento musicale}} -{{label|fr|instrument de musique}} -{{label|el|Μουσικό Όργανο}} -{{label|sl|Glasbilo}} -{{label|es|Instrumento}} -{{label|ko|악기}} -{{label|nl|muziekinstrument}} -{{label|ja|楽器}} -| comments = -{{comment|en|Describes all musical instrument}} -| rdfs:subClassOf = Device, schema:Product -| owl:equivalentClass = wikidata:Q225829 -}}OntologyClass:Instrumentalist2007753508192016-04-16T07:02:14Z{{Class -| labels = -{{label|en|instrumentalist}} -{{label|ga|ionstraimí}} -{{label|nl|instrumentalist}} -{{label|fr|instrumentaliste}} -{{label|de|Musiker}} -{{label|el|μουσικός}} -{{label|ja|音楽家}} -| rdfs:subClassOf = MusicalArtist -| comments = -{{comment|el|Ο μουσικός είναι ένα άτομο το οποίο γράφει, ερμηνεύει, ή κάνει μουσική.}} -{{comment|nl|Een instrumentalist is een musicus die een muziekinstrument bespeelt. (https://nl.wikipedia.org/wiki/Instrumentalist)}} -}}OntologyClass:Intercommunality2007069511142016-05-25T11:21:04Z{{Class -| labels = -{{label|en|Intercommunality}} -{{label|de|Interkommunalität}} -{{label|fr|intercommunalité}} -| rdfs:subClassOf = PopulatedPlace -| owl:equivalentClass = wikidata:Q3153117 -}}OntologyClass:InternationalFootballLeagueEvent20011111459602015-03-16T10:19:56Z{{Class -| labels = -{{label|en|international football league event}} -{{label|de|International Football Liga Veranstaltung}} -| rdfs:subClassOf = SportsEvent -}}OntologyClass:InternationalOrganisation20011273484782015-07-21T19:33:10Z{{Class -|labels= -{{label|en|international organisation}} -{{label|fr|organisation internationale}} -{{label|nl|internationale organisatie}} -| rdfs:subClassOf=Organisation -|comments= -{{comment|en|An international organisation is either a private or a public organisation seeking to accomplish goals across country borders}} -}}OntologyClass:Island200388521312017-06-19T11:18:48Z{{Class -| labels = -{{label|da|ø}} -{{label|de|Insel}} -{{label|es|Isla}} -{{label|en|island}} -{{label|ga|oileán}} -{{label|nl|eiland}} -{{label|pt|ilha}} -{{label|el|νησί}} -{{label|fr|île}} -{{label|pl|wyspa}} -{{label|ko|섬}} -{{label|ja|島}} -| rdfs:subClassOf = PopulatedPlace -| owl:equivalentClass = wikidata:Q23442 -}}OntologyClass:Jockey2006147481112015-05-25T15:12:18Z{{Class -| labels = -{{label|en|jockey (horse racer)}} -{{label|ga|marcach}} -{{label|nl|jockey}} -{{label|de|Jockey (Pferderennprofi)}} -{{label|el|αναβάτης αλόγου αγώνων}} -{{label|ja|騎手}} -| rdfs:subClassOf = Athlete -}}OntologyClass:Journalist200389481122015-05-25T15:12:23Z{{Class -| labels = -{{label|en|journalist}} -{{label|ga|iriseoir}} -{{label|de|Journalist}} -{{label|nl|journalist}} -{{label|it|giornalista}} -{{label|fr|journaliste}} -{{label|es|periodista}} -{{label|el|δημοσιογράφος}} -{{label|ja|ジャーナリスト}} -| rdfs:subClassOf = Person -| owl:equivalentClass = wikidata:Q1930187 -}}OntologyClass:Judge200390481132015-05-25T15:12:37Z{{Class -| labels = -{{label|en|judge}} -{{label|ga|breitheamh}} -{{label|de|richter}} -{{label|it|giudice}} -{{label|fr|juge}} -{{label|el|δικαστής}} -{{label|es|juez}} -{{label|ja|裁判官}} -{{label|nl|rechter}} -| rdfs:subClassOf = Person -| owl:equivalentClass = wikidata:Q16533 -}}OntologyClass:LacrosseLeague2002175515062016-09-18T08:58:02Z{{Class - -| labels = -{{label|en|lacrosse league}} -{{label|nl|lacrosse bond}} -{{label|de|Lacrosse-Liga}} -{{label|el|πρωτάθλημα χόκεϋ σε χόρτο}} -{{label|fr|ligue de crosse}} -{{label|ja|ラクロスリーグ}} -| rdfs:subClassOf = SportsLeague -| comments = -{{comment|en|a group of sports teams that compete against each other in Lacrosse.}} -}}OntologyClass:LacrossePlayer2006221504182016-03-04T06:41:53Z{{Class -| labels = -{{label|en|lacrosse player}} -{{label|ga|imreoir crosógaíochta}} -{{label|nl|lacrosse-speler}} -{{label|de|Lacrossespieler}} -{{label|el|παίκτης χόκεϋ σε χόρτο}} -{{label|ja|ラクロス選手}} -| rdfs:subClassOf = Athlete -}}OntologyClass:Lake200391521882017-10-05T07:35:18Z{{Class -| labels = -{{label|en|lake}} -{{label|de|See}} -{{label|el|λίμνη}} -{{label|fr|lac}} -{{label|pt|lago}} -{{label|ru|озеро}} -{{label|ga|loch}} -{{label|ja|호수}} -{{label|ko|호수}} -{{label|nl|meer}} -{{label|pl|jezioro}} -| rdfs:subClassOf = BodyOfWater -| owl:equivalentClass = schema:LakeBodyOfWater, wikidata:Q23397 -| specificProperties = {{SpecificProperty | ontologyProperty = shoreLength | unit = kilometre }} - {{SpecificProperty | ontologyProperty = areaOfCatchment | unit = squareKilometre }} - {{SpecificProperty | ontologyProperty = volume | unit = cubicMetre }} -}}OntologyClass:Language200392528232018-02-08T20:04:05Z{{Class -| labels = - {{label|en|language}} - {{label|ga|teanga}} - {{label|gl|lingua}} - {{label|nl|taal}} - {{label|el|γλώσσα}} - {{label|es|idioma}} - {{label|da|sprog}} - {{label|de|Sprache}} - {{label|fr|langage}} - {{label|ko|언어}} - {{label|ja|言語}} -| owl:equivalentClass = schema:Language, wikidata:Q315 -| rdfs:subClassOf = owl:Thing -}}OntologyClass:LaunchPad200393479432015-05-25T14:54:44Z{{Class -| labels = -{{label|en|launch pad}} -{{label|ga|ceap lainseála}} -{{label|nl|lanceerbasis}} -{{label|de|Startrampe}} -{{label|el|ράμπα φορτώσεως}} -{{label|fr|rampe de lancement}} -| rdfs:subClassOf = Infrastructure -| owl:equivalentClass = wikidata:Q1353183 -}}OntologyClass:Law20011376523242017-10-10T13:27:17Z{{Class -| labels = -{{label|en|law}} -{{label|da|lov}} -{{label|de|Gesetz}} -{{label|nl|wet}} -{{label|fr|loi}} -{{label|ja|法 (法学)}} -| rdfs:subClassOf = WrittenWork -}}OntologyClass:LawFirm2003730479712015-05-25T14:57:42Z{{Class -| labels = -{{label|en|law firm}} -{{label|ga|gnólacht dlí}} -{{label|el|εταιρεία δικηγόρων}} -{{label|de|Anwaltskanzlei}} -{{label|es|bufete de abogados}} -{{label|nl|advocatenkantoor}} -{{label|ja|法律事務所}} -| rdfs:subClassOf = Company -| comments = -{{comment|en|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.}} -{{comment|de| Als Anwaltskanzlei bezeichnet man die Büroräume und das Unternehmen oder den Betrieb eines Rechtsanwalts oder mehrerer Rechtsanwälte.}} -| owl:equivalentClass = wikidata:Q613142 -}}OntologyClass:Lawyer2009435508202016-04-16T07:08:43Z{{Class -| labels = {{label|en|Lawyer}} -{{label|ga|dlíodóir}} -{{label|fr|Avocat}} -{{label|nl|advocaat}} -{{label|de|Anwalt}} -{{label|ja|弁護士}} -| comments = {{comment|en|a person who is practicing law.}} -| rdfs:subClassOf = Person -| owl:equivalentClass = wikidata:Q40348 -}}OntologyClass:LegalCase2002442528532018-02-08T20:42:14Z{{Class -| labels = - {{label|en|Legal Case}} - {{label|de|Rechtsfall}} - {{label|el|νομική υπόθεση}} - {{label|fr|cas juridique}} - {{label|pt|caso jurídico }} - {{label|nl|rechtzaak}} -| rdfs:subClassOf = Case -| owl:equivalentClass = wikidata:Q2334719 -}}OntologyClass:Legislature200394508272016-04-16T07:29:01Z{{Class -| labels = -{{label|en|legislature}} -{{label|ga|reachtas}} -{{label|de|Legislative}} -{{label|el|νομοθετικό σώμα}} -{{label|es|legislatura}} -{{label|fr|pouvoir législatif}} -{{label|nl|wetgevend orgaan}} -{{label|ja|立法府}} -| rdfs:subClassOf = Organisation -| owl:equivalentClass = wikidata:Q11204 -}}OntologyClass:Letter2005348486052015-08-06T06:12:07Z{{ Class -| labels = -{{label|de|Buchstabe}} -{{label|en|letter}} -{{label|ga|litir}} -{{label|fr|lettre}} -{{label|el|γράμμα}} -{{label|nl|letter}} -{{label|ja|文字}} -| comments = -{{comment|de|Ein Buchstabe des Alphabets.}} -{{comment|en|A letter from the alphabet.}} -{{comment|fr|Ene lettre de l'alphabet.}} -| rdfs:subClassOf = WrittenWork -<!-- | rdfs:subClassOf = Language --> -| owl:equivalentClass = wikidata:Q9788, wikidata:Q133492 -}}OntologyClass:Library2002934528572018-02-09T13:53:47Z{{Class -| labels = -{{label|da|bibliotek}} -{{label|de|Bibliothek}} -{{label|en|library}} -{{label|el|βιβλιοθήκη}} -{{label|es|Biblioteca}} -{{label|fr|bibliothèque}} -{{label|ga|leabharlann}} -{{label|ja|図書館}} -{{label|ko|도서관}} -{{label|nl|bibliotheek}} -{{label|pl|biblioteka}} -| rdfs:subClassOf = EducationalInstitution <!-- , Building --> -| owl:equivalentClass = schema:Library, wikidata:Q7075 -}}OntologyClass:Lieutenant2002331508282016-04-16T07:32:26Z{{Class -| labels = -{{label|en|lieutenant}} -{{label|ga|leifteanant}} -{{label|de|Leutnant}} -{{label|fr|lieutenant}} -{{label|pt|tenente}} -{{label|nl|luitenant}} -{{label|el|υπολοχαγός}} -{{label|ja|中尉}} -| rdfs:subClassOf = Politician - -}}OntologyClass:LifeCycleEvent2008729457312015-03-13T14:49:09Z{{Class -| labels = -{{label|en|life cycle event}} -{{label|de|Lebenszyklus Ereignis}} -{{label|nl|wordingsgebeurtenis}} -| comment = -{{comment|en| Type of event meant to express one-time or recurring major changes in a resource's life cycle}} -| rdfs:subClassOf = Event -}}OntologyClass:Ligament2005853508352016-04-16T07:45:07Z{{Class -| rdfs:subClassOf = AnatomicalStructure -| labels = -{{label|en|ligament}} -{{label|de|Band (Anatomie)}} -{{label|pt|ligamento}} -{{label|el|σύνδεσμος}} -{{label|nl|bindweefsel}} -{{label|ja|靭帯}} -| owl:equivalentClass = wikidata:Q39888 -}}OntologyClass:LightNovel2005817485952015-08-05T15:45:15Z{{Class -| labels = -{{label|en|light novel}} -{{label|de|Light novel}} -{{label|ja|ライトノベル}} -{{label|el|ανάλαφρο μυθιστόρημα}} -| rdfs:subClassOf = Novel -| comments = -{{comment|en|A style of Japanese novel<ref name="light novel">http://en.wikipedia.org/wiki/Light_novel</ref>}} -| owl:equivalentClass = wikidata:Q747381 -}} -==References== -<references/>OntologyClass:Lighthouse200395481162015-05-25T15:12:53Z{{Class -| labels = -{{label|de|Leuchtturm}} -{{label|en|lighthouse}} -{{label|ga|teach solais}} -{{label|nl|vuurtoren}} -{{label|fr|phare}} -{{label|ja|灯台}} -{{label|el|Φάρος}} -| rdfs:subClassOf = Tower -| owl:equivalentClass = wikidata:Q39715 -}}OntologyClass:LineOfFashion2007441471052015-03-23T15:30:30Z{{Class -|labels = - {{label|en|line of fashion}} - {{label|de|Modelinie}} - {{label|nl|modelijn}} - {{label|fr|type de couture}} -| comments = -{{comment|en|A coherent type of clothing or dressing following a particular fashion}} -{{comment|nl|Een samenhangend geheel van kleding in een bepaalde stijl volgens een bepaalde mode.}} -| rdfs:subClassOf = Work -}}OntologyClass:Linguist2007744508302016-04-16T07:35:03Z{{Class -| labels = -{{label|en|linguist}} -{{label|ca|lingüista}} -{{label|de|Linguist}} -{{label|de|Sprachwissenschaftler}} -{{label|el|γλωσσολόγος}} -{{label|fr|linguiste}} -{{label|ga|teangeolaí}} -{{label|nl|linguïst}} -{{label|pl|lingwista}} -{{label|ja|言語学者}} -| rdfs:subClassOf = Person -| owl:equivalentClass = wikidata:Q14467526 -}}OntologyClass:Lipid20010412511402016-06-04T20:02:59Z{{Class -| labels = -{{label|en|lipid}} -{{label|nl|lipide}} -{{label|de|lipid}} -{{label|fr|lipide}} -{{label|ja|脂質}} -| comments = -{{comment|nl|Zijn vetten en vetachtige stoffen die in de biochemie een belangrijke rol spelen}} -| rdfs:subClassOf = Biomolecule -}}OntologyClass:List2006032521322017-06-19T11:19:35Z{{Class -| labels = - {{label|en|list}} -{{label|ga|liosta}} - {{label|da|liste}} - {{label|de|Liste}} - {{label|fr|liste}} - {{label|el|λίστα}} - {{label|nl|lijst}} - {{label|ja|一覧}} -| comments = - {{comment|en|A general list of items.}} - {{comment|fr|une liste d'éléments.}} - {{comment|nl|Een geordende verzameling objecten.}} - {{comment|el|Μια γενική λίστα από αντικείμενα.}} -| owl:equivalentClass = skos:OrderedCollection, dul:Collection -| rdfs:subClassOf = owl:Thing -}}OntologyClass:LiteraryGenre2009706510952016-05-16T17:08:44Z{{Class -|labels= -{{label|en|literary genre}} -{{label|de|Literaturgattung}} -{{label|fr|genre littéraire}} -{{label|nl|literair genre}} -| comments = {{comment|en|Genres of literature, e.g. Satire, Gothic}} -| rdfs:subClassOf = Genre -}}OntologyClass:Locality2007106515112016-09-18T10:59:17Z{{Class -| labels = -{{label|en|locality}} -{{label|nl|streek}} -{{label|ga|ceantar}} -{{label|fr|localité}} -{{label|de|Gegend}} -{{label|el|τόπος}} -{{label|ja|地域}} -| rdfs:subClassOf = PopulatedPlace -| owl:equivalentClass = wikidata:Q3257686 -}}OntologyClass:Lock2009324523232017-10-10T13:26:49Z{{Class -| labels = -{{label|en|lock}} -{{label|ga|glas}} -{{label|da|lås}} -{{label|de|Schleuse}} -{{label|el|κλειδαριά}} -{{label|nl|sluis}} -{{label|fr|écluse}} -{{label|ja|錠}} -| rdfs:subClassOf = Infrastructure -}}OntologyClass:Locomotive2002533528162018-02-08T19:56:22Z{{Class -| labels = -{{label|en|locomotive}} -{{label|ga|traen}} -{{label|de|Lokomotive}} -{{label|fr|locomotive}} -{{label|el|κινητήριος}} -{{label|nl|locomotief}} -{{label|ja|機関車}} -<!-- | specificProperties = - {{SpecificProperty | ontologyProperty = modelLineVehicle}} --> -| rdfs:subClassOf = MeanOfTransportation, schema:Product -| owl:equivalentClass = wikidata:Q93301 -}}OntologyClass:LunarCrater200396498532015-12-17T20:26:58Z{{Class -| labels = -{{label|en|lunar crater}} -{{label|ga|cráitéar gealaí}} -{{label|de|Mondkrater}} -{{label|fr|cratère lunaire}} -{{label|el|Σεληνιακός κρατήρας}} -{{label|nl|maankrater}} -{{label|pt|cratera lunar}} -| rdfs:subClassOf = Crater -| specificProperties = {{SpecificProperty | ontologyProperty = diameter | unit = kilometre }} -| owl:equivalentClass = wikidata:Q1348589 -}}OntologyClass:Lymph200397479622015-05-25T14:56:48Z{{Class -| rdfs:label@en = lymph -| rdfs:label@ga = limfe -| rdfs:label@de = Lymphe -| rdfs:label@fr = lymphe -| rdfs:label@ja = リンパ -| rdfs:label@el = λέμφος -| rdfs:label@nl = lymfe -| rdfs:subClassOf = AnatomicalStructure -}}OntologyClass:Magazine200398481192015-05-25T15:13:02Z{{Class -| labels = -{{label|en|magazine}} -{{label|ga|irisleabhar}} -{{label|de|Publikumszeitschrift}} -{{label|el|Περιοδικό}} -{{label|fr|magazine}} -{{label|ko|잡지}} -{{label|ja|雑誌}} -{{label|nl|tijdschrift}} -| rdfs:subClassOf = PeriodicalLiterature -| comments = -{{comment|en|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.}} -{{comment|el|Περιοδικά ή γυαλιστερές φωτογραφίες περιοδικών εκδόσεων δημοσιεύονται σε τακτά χρονικά διαστήματα, περιέχει μια ποικιλία από αντικείμενα.Γενικά χρηματοδοτείται από διαφημίσεις, με τιμή αγοράς, με προπληρωμένες συνδρομές περιοδικών, ή και των τριών.}} -{{comment|de|Als Publikumszeitschrift (auch Magazin) bezeichnet man eine Gattung von Zeitschriften, die sich an eine sehr breite Zielgruppe wendet und keine fachlichen Prägungen oder andere spezifische Merkmale voraussetzt. Publikumszeitschriften dienen der Unterhaltung und Information, sie sollen unangestrengt gelesen werden können.}} -| owl:equivalentClass = wikidata:Q41298 -}}OntologyClass:Mammal200399520802017-06-19T10:32:02Z{{Class -| labels = -{{label|en|mammal}} -{{label|ga|mamach}} -{{label|fr|mammifère}} -{{label|da|pattedyr}} -{{label|de|säugetier}} -{{label|it|mammifero}} -{{label|pt|mamífero}} -{{label|ja|哺乳類}} -{{label|nl|zoogdier}} -{{label|es|mamífero}} -{{label|el|θηλαστικό ζώο}} -{{label|pl|ssak}} -| rdfs:subClassOf = Animal -| owl:disjointWith = Fish -| owl:equivalentClass = wikidata:Q7377 -}}OntologyClass:Man20012287535772020-01-30T09:57:16Z{{Class -| labels = -{{label|en|man}} -{{label|ru|мужчина}} -{{label|pl|Mężczyzna}} -{{label|fr|Homme}} -{{label|da|Mand}} -{{label|de|Mann}} -{{label|ko|남자}} -{{label|ja|おとこ}} -{{label|nl|Mens}} -{{label|it|Uomo}} -| rdfs:subClassOf = Person -| owl:equivalentClass = wikidata:Q8441 -}}OntologyClass:Manga2005815471182015-03-23T16:09:28Z{{Class -| labels = -{{label|en|manga}} -{{label|nl|manga}} -{{label|de|manga}} -{{label|fr|manga}} -{{label|it|manga}} -{{label|ja|日本の漫画}} -{{label|el|κινούμενα σχέδια}} -| rdfs:subClassOf = Comic -| comments = -{{comment|en|Manga are comics created in Japan<ref name="manga">http://en.wikipedia.org/wiki/Manga</ref>}} -{{comment|nl|Manga is het Japanse equivalent van het stripverhaal<ref name="manga">http://nl.wikipedia.org/wiki/Manga_(strip</ref>}} -| owl:equivalentClass = wikidata:Q8274 -}} -==References== -<references/>OntologyClass:Manhua2005819508362016-04-18T10:38:31Z{{Class -| labels = -{{label|en|manhua}} -{{label|de|manhua}} -{{label|nl|manhua}} -{{label|el|manhua}} -{{label|ja|中国の漫画}} -| rdfs:subClassOf = Comic -| comments = -{{comment|en|Comics originally produced in China<ref name="manhua">http://en.wikipedia.org/wiki/Manhua</ref>}} -{{comment|de|Außerhalb Chinas wird der Begriff für Comics aus China verwendet.<ref name="manhua">http://de.wikipedia.org/wiki/Manhua</ref>}} -{{comment|nl|Manhua is het Chinese equivalent van het stripverhaal}} -{{comment|el|Κόμικς που παράγονται αρχικά στην Κίνα<ref name="manhua">http://en.wikipedia.org/wiki/Manhua</ref>}} -| owl:equivalentClass = wikidata:Q754669 -}} -==References== -<references/>OntologyClass:Manhwa2005818508372016-04-18T10:39:38Z{{Class -| labels = -{{label|en|manhwa}} -{{label|nl|manhwa}} -{{label|de|manhwa}} -{{label|el|manhwa}} -{{label|ja|韓国の漫画}} -| rdfs:subClassOf = Comic -| comments = -{{comment|en|Korean term for comics and print cartoons<ref name="manhwa">http://en.wikipedia.org/wiki/Manhwa</ref>}} -{{comment|de|ist die in der westlichen Welt verbreitete Bezeichnung für Comics aus Südkorea.<ref name="manhwa">http://de.wikipedia.org/wiki/Manhwa</ref>}} -{{comment|nl|Manhua is het Koreaanse equivalent van het stripverhaal}} -{{comment|el|Κορεάτικος όρος για τα κόμικς και τα κινούμενα σχέδια εκτύπωσης}} -| owl:equivalentClass = wikidata:Q562214 -}} -==References== -<references/>OntologyClass:Manor20012327536472020-06-29T10:39:10Z{{Class -| labels = -{{label|en|Manor}} -{{label|nl|Heerlijkheid}} -{{label|fr|Seigneurie}} -{{label|de|Grundherrschaft}} -| comments = -{{comment|en|Estate and/or (cluster of) lands that are under the jurisdiction of a feudal lord. Hence it is also the shorthand expression for the physical estate itself: a manor is a stately house in the countryside with the surrounding grounds}} -| rdfs:subClassOf = HistoricalAreaOfAuthority -| dcterms:references = <http://nl.dbpedia.org/resource/Heerlijkheid_(bestuursvorm)> , <http://en.dbpedia.org/resource/Manor> , <http://fr.dbpedia.org/resource/Seigneurie> , <http://de.dbpedia.org/resource/Grundherrschaft> , <http://ru.dbpedia.org/resource/%D0%A0%D1%8B%D1%86%D0%B0%D1%80%D1%81%D0%BA%D0%B0%D1%8F_%D0%BC%D1%8B%D0%B7%D0%B0> . -}}OntologyClass:MartialArtist2004123467142015-03-21T14:14:19Z{{Class -| labels = -{{label|en|martial artist}} -{{label|de|Kampfkünstler}} -{{label|el|Πολεμικός Καλλιτέχνης}} -| rdfs:subClassOf = Athlete -}}OntologyClass:MathematicalConcept2009717518722017-01-21T14:23:09Z{{Class -| labels = {{label|en|Mathematical concept}} - {{label|de|mathematisches Konzept}} - {{label|nl|wiskundig concept}} -| comments = {{comment|en|Mathematical concepts, e.g. Fibonacci numbers, Imaginary numbers, Symmetry}} -| rdfs:subClassOf = TopicalConcept -}}OntologyClass:Mayor200400486302015-08-06T14:13:28Z{{Class -| labels = -{{label|en|mayor}} -{{label|de|Bürgermeister}} -{{label|fr|maire}} -{{label|ja|首長}} -{{label|el|δήμαρχος}} -{{label|nl|burgemeester}} -| rdfs:subClassOf = Politician -| owl:equivalentClass = wikidata:Q30185 -}}OntologyClass:MeanOfTransportation200401528522018-02-08T20:40:33Z{{Class -| labels = - {{label|de|Transportmittel}} - {{label|en|mean of transportation}} - {{label|fr|moyen de transport}} - {{label|nl|vervoermiddel}} - {{label|el|μεταφορικό μέσο}} -| specificProperties = - {{SpecificProperty | ontologyProperty = diameter | unit = metre }} - {{SpecificProperty | ontologyProperty = mass | unit = kilogram }} - {{SpecificProperty | ontologyProperty = length | unit = millimetre }} - {{SpecificProperty | ontologyProperty = height | unit = millimetre }} - {{SpecificProperty | ontologyProperty = weight | unit = kilogram }} - {{SpecificProperty | ontologyProperty = width | unit = millimetre }} -| rdfs:subClassOf = owl:Thing -| owl:equivalentClass = -| owl:disjointWith = Person -}}OntologyClass:Media2007881508392016-04-18T10:43:06Z{{Class -| labels = -{{label|en|media}} -{{label|ga|meáin}} -{{label|nl|media}} -{{label|el|μέσα ενημέρωσης}} -{{label|de|Medien}} -{{label|ja|媒体}} -| comments = -{{comment|en|storage and transmission channels or tools used to store and deliver information or data}} -| owl:equivalentClass = wikidata:Q340169 -}}OntologyClass:MedicalSpecialty20011867522042017-10-07T14:56:17Z{{Class -| labels = - {{label|de|medizinisches Fachgebiet}} - {{label|en|medical specialty}} - {{label|nl|medisch specialisme}} - {{label|el|ιατρική ειδικότητα}} - {{label|fr|spécialité médicale}} - {{label|ko|진료과}} - {{label|ja|診療科}} - {{label|it|specializzazione medica}} -| rdfs:subClassOf = owl:Thing -| owl:equivalentClass = wikidata:Q930752 -}}OntologyClass:Medician2007329508402016-04-18T10:45:38Z{{Class -| labels = -{{label|en|medician}} -{{label|de|Mediziner}} -{{label|el|γιατρός}} -{{label|it|medico}} -{{label|nl|medicus}} -{{label|ja|生命医科学研究者または医師}} -| rdfs:subClassOf = Scientist -}}OntologyClass:Medicine2009721515772016-11-03T08:36:23Z{{Class -| labels = {{label|en|Medicine}} - {{label|de|Medizin}} - {{label|fr|médecine}} - {{label|nl|geneeskunde}} - {{label|ja|医学}} -| owl:equivalentClass = wikidata:Q11190 -| comments = {{comment|en|The science and art of healing the human body and identifying the causes of disease}} -}}OntologyClass:Meeting2009128508422016-04-18T10:47:09Z{{Class -| labels = -{{label|en|meeting}} -{{label|ga|cruinniú}} -{{label|de|Treffen}} -{{label|fr|réunion}} -{{label|el|συνάντηση}} -{{label|nl|vergadering}} -{{label|ja|会議}} - -| rdfs:subClassOf = SocietalEvent -|comments= -{{comment|en|A regular or irregular meeting of people as an event to keep record of}} -| owl:equivalentClass = wikidata:Q2761147 -}}OntologyClass:MemberOfParliament200402468202015-03-21T22:00:35Z{{Class -| labels = -{{label|en|member of parliament}} -{{label|de|Parlamentsmitglied}} -{{label|el|Μέλος κοινοβουλίου}} -{{label|fr|membre du Parlement}} -{{label|pt|membro do parlamento }} -{{label|nl|parlementslid}} -| rdfs:subClassOf = Politician -| owl:equivalentClass = wikidata:Q486839 -}}OntologyClass:MemberResistanceMovement20010242483982015-06-29T13:39:51Z{{Class -|labels= -{{label|en|Member of a Resistance Movement}} -{{label|de|Mitglied einer Widerstandorganisation}} -{{label|nl|lid van een verzetsorganisatie}} -|comments= -| rdfs:subClassOf = Person -}}OntologyClass:Memorial2006527511322016-05-30T10:04:47Z{{Class -| labels = -{{label|en|memorial}} -{{label|el|μνημείο}} -{{label|fr|mémorial}} -{{label|nl|gedenkteken}} -{{label|de|Denkmal}} -{{label|ja|記念碑}} - -| comments = -{{comment|en|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. }} -| rdfs:subClassOf = Monument -}}OntologyClass:MetroStation2008126463582015-03-18T17:58:13Z{{Class -| labels = -{{label|en|metrostation}} -{{label|fr|station de métro}} -{{label|de|U-Bahn Station}} -{{label|en|subway station}} -{{label|el|στάση μετρό}} -{{label|nl|metrostation}} -| rdfs:subClassOf = Station -| comments = -{{comment|el|Η στάση μετρό χρησιμοποιείται συνήθως για μια τοποθεσία ή σημείο όπου σταματάει το μεταφορικό μέσο μετρό}} -| owl:equivalentClass = wikidata:Q928830 -}}OntologyClass:MicroRegion2009317457452015-03-13T15:51:58Z{{Class -| labels = - {{label|en|micro-region}} - {{label|de|Mikroregion}} - {{label|el|μικρο-περιφέρεια}} - {{label|nl|microregio}} - {{label|pt|microrregiao}} -| comments = - {{comment|en|A microregion is a - mainy statistical - region in Brazil, at an administrative level between a meso-region and a community}} -| rdfs:subClassOf = GovernmentalAdministrativeRegion -| comments = - {{comment|el|Η μικρο-περιφέρεια χρησιμοποιείται για να περιγράψει, κυρίως στατιστικά, μια περιοχή στη Βραζιλία σε διοικητικό επίπεδο μεταξύ μίας μεσο-περιφέρειας και μίας κοινότητα}} -}}OntologyClass:MilitaryAircraft20011150471342015-03-24T08:13:44Z{{Class -| labels = -{{label|en|military aircraft}} -{{label|fr|avion militaire}} -{{label|nl|legervliegtuig}} -{{label|de|Militärmaschine}} -| rdfs:subClassOf = Aircraft -}}OntologyClass:MilitaryConflict200403523602017-10-10T14:05:53Z{{Class -| labels = -{{label|en|military conflict}} -{{label|da|militær konflikt}} -{{label|de|militärischer Konflikt}} -{{label|el|στρατιωτική σύγκρουση}} -{{label|fr|conflit militaire}} -{{label|nl|militair conflict}} -{{label|ko|전쟁}} -| rdfs:subClassOf = SocietalEvent -}}OntologyClass:MilitaryPerson200404514292016-08-08T01:53:30Z{{Class -| labels = -{{label|en|military person}} -{{label|de|militärische Person}} -{{label|fr|militaire}} -{{label|el|στρατιωτικός}} -{{label|ko|군인}} -{{label|nl|militair}} -{{label|it|militare}} -{{label|ja|軍人}} -| rdfs:subClassOf = Person -}}OntologyClass:MilitaryService20011950524892017-10-16T17:12:28Z{{Class -|labels= -{{label|en|military service}} -{{label|de|Militärdienst}} -{{label|fr|service militaire}} -| rdfs:subClassOf = CareerStation -}}OntologyClass:MilitaryStructure2006237368892014-07-17T05:15:51Z{{Class -| labels = -{{label|en|military structure}} -{{label|de|militärisches Bauwerk}} -{{label|el|Στρατιωτική Δομή}} -{{label|nl|militair bouwwerk}} -{{label|ko| 군사 건축물}} -| comments = {{comment|en|A military structure such as a Castle, Fortress, Wall, etc.}} -| rdfs:subClassOf = ArchitecturalStructure -}}OntologyClass:MilitaryUnit200405467512015-03-21T17:58:59Z{{Class -| labels = -{{label|en|military unit}} -{{label|de|Militäreinheit}} -{{label|fr|unité militaire}} -{{label|pt|unidade militar}} -{{label|es|unidad militar}} -{{label|ko|군대}} -{{label|el|Στρατιωτική Μονάδα}} -{{label|nl|militaire eenheid}} -| rdfs:subClassOf = Organisation -| owl:equivalentClass = wikidata:Q176799 -}}OntologyClass:MilitaryVehicle20011152528192018-02-08T19:57:00Z{{Class -| labels = -{{label|en|military vehicle}} -{{label|de|Militärfahrzeug}} -{{label|nl|legervoertuig}} -| rdfs:subClassOf = MeanOfTransportation, schema:Product -| owl:equivalentClass = -}}OntologyClass:Mill2006005521192017-06-19T11:09:14Z{{Class -| labels = -{{label|el|Μύλος}} -{{label|en|Mill}} -{{label|ga|muileann}} -{{label|fr|Moulin}} -{{label|it|mulino}} -{{label|da|mølle}} -{{label|de|Mühle}} -{{label|nl|Molen}} -{{label|ja|粉砕機}} - -| rdfs:subClassOf = ArchitecturalStructure -| comments = -{{comment|en|a unit operation designed to break a solid material into smaller pieces}} -| owl:equivalentClass = wikidata:Q44494 -}}OntologyClass:Mine20010253508472016-04-18T10:54:17Z{{Class -| labels = -{{label|en|mine }} -{{label|de|Mine (Bergwerk) }} -{{label|nl|mijn (delfstoffen))}} -{{label|ja|鉱山}} - -| comments = -{{comment|en|A mine is a place where mineral resources are or were extracted}} -{{comment|nl|Een mijn is een plaats waar delfstoffen worden of werden gewonnen}} -| rdfs:subClassOf = Place -| owl:disjointWith = Person -}}OntologyClass:Mineral2005765468452015-03-22T09:23:19Z{{Class -| labels = -{{label|en|mineral}} -{{label|de|mineral}} -{{label|el|ορυκτό}} -{{label|it|minerale}} -{{label|fr|minéral}} -{{label|ja|鉱物}} -{{label|nl|mineraal}} -{{label|ko|광물}} -| comments = -{{comment|en|A naturally occurring solid chemical substance.<ref>http://en.wikipedia.org/wiki/Mineral</ref>}} -{{comment|it|Corpi naturali inorganici, in genere solidi.<ref>http://it.wikipedia.org/wiki/Minerale</ref>}} -| rdfs:subClassOf = ChemicalSubstance -| owl:equivalentClass = wikidata:Q7946 -}} -==References== -<references/>OntologyClass:Minister20011947524782017-10-16T00:27:24Z{{Class -| labels = -{{label|en|minister}} -{{label|de|Minister}} -{{label|fr|ministre}} -{{label|nl|minister}} -| rdfs:subClassOf = Politician -}}OntologyClass:MixedMartialArtsEvent200406479522015-05-25T14:55:47Z{{Class -| labels = -{{label|en|mixed martial arts event}} -{{label|ga|imeacht ealaíona comhraic measctha}} -{{label|de|Mixed Kampfkunst Veranstaltung}} -{{label|fr|évènement d'arts martiaux mixtes}} -| rdfs:subClassOf = SportsEvent -}}OntologyClass:MixedMartialArtsLeague2002176479552015-05-25T14:56:02Z{{Class -| labels = -{{label|en|mixed martial arts league}} -{{label|ga|sraith ealaíona comhraic measctha}} -{{label|de|Mixed Kampfkunst Liga}} -{{label|fr|ligue d'arts martiaux mixtes}} -| comments = -{{comment|en|a group of sports teams that compete against each other in Mixed Martial Arts}} -| rdfs:subClassOf = SportsLeague -}}OntologyClass:MobilePhone20011065537342020-09-25T19:47:32Z{{Class -| labels = - {{label|en|mobile phone}} - {{label|it|telefono cellulare}} - {{label|de|Mobiltelefon (Handy)}} - {{label|fr|téléphone mobile}} - {{label|pl|telefon komórkowy}} - {{label|ru|сотовый телефон}} - {{label|be|сотавы тэлефон}} - {{label|nl|mobiele telefoon}} -| rdfs:subClassOf = Device -| owl:equivalentClass = wikidata:Q17517 -}}OntologyClass:Model200407483342015-05-25T15:58:43Z{{Class -| labels = -{{label|en|model}} -{{label|ga|mainicín}} -{{label|fr|mannequin}} -{{label|de|model}} -{{label|el|μοντέλο}} -{{label|ko|모델}} -{{label|ja|モデル_(職業)}} -{{label|nl|(foto)model}} -| rdfs:subClassOf = Person -| owl:equivalentClass = wikidata:Q4610556 -}}OntologyClass:Mollusca200408462732015-03-18T16:50:23Z{{Class -| labels = -{{label|en|mollusca}} -{{label|de|Weichtiere}} -{{label|el|μαλάκια}} -{{label|fr|mollusque}} -{{label|ja| 軟体動物}} -{{label|nl|weekdier}} -| rdfs:subClassOf = Animal -| comments = -{{comment|el|Τα μαλάκια αποτελούν μια τεράστια συνομοταξία ζώων, την πολυπληθέστερη μετά τα αρθρόποδα, με πάνω από 100.000 είδη.}} -| owl:equivalentClass = wikidata:Q25326 -}}OntologyClass:Monarch200409523472017-10-10T13:50:19Z{{Class -| labels = -{{label|en|monarch}} -{{label|nl|monarch}} -{{label|da|monark}} -{{label|de|monarch}} -{{label|it|monarca}} -{{label|fr|monarque}} -{{label|el|μονάρχης}} -{{label|es|monarca}} -{{label|ko|군주}} -{{label|ja|君主}} - -|rdfs:subClassOf=Person -| owl:equivalentClass = wikidata:Q116 -}}OntologyClass:Monastery2006029523482017-10-10T13:51:20Z{{Class -| labels = -{{label|en|monastery}} -{{label|ca|monestir}} -{{label|da|kloster}} -{{label|de|Kloster}} -{{label|el|μοναστήρι}} -{{label|fr|monastère}} -{{label|ga|mainistir}} -{{label|nl|klooster}} -{{label|pl|klasztor}} -{{label|ja|僧院}} - -|comments= -{{comment|en|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.<ref>http://en.wikipedia.org/wiki/Monastry</ref>}} -{{comment|ca|Un monestir és un tipus d'edificació per a la reclusió dels religiosos, que hi viuen en comú. Originàriament un monestir era la cel·la d'un sol monjo, dit en aquest cas ermità o anacoreta.<ref>https://ca.wikipedia.org/wiki/Monestir</ref>}} -{{comment|el|Μονή υποδηλώνει το κτίριο ή συγκρότημα κτιρίων, που αποτελείται από τις εγχώρια τρίμηνα και στο χώρο εργασίας (ες) των μοναχών, αν οι μοναχοί ή μοναχές, και αν ζουν στην κοινότητα ή μεμονωμένα (ερημίτες). Η μονή περιλαμβάνει γενικά ένα χώρο που προορίζεται για την προσευχή που μπορεί να είναι ένα παρεκκλήσι, εκκλησία ή ναό, και μπορεί επίσης να χρησιμεύσει ως μια ρητορική.<ref>https://el.wikipedia.org/wiki/%CE%9C%CE%BF%CE%BD%CE%B1%CF%83%CF%84%CE%AE%CF%81%CE%B9_(%CE%B8%CF%81%CE%B7%CF%83%CE%BA%CE%B5%CE%AF%CE%B1)</ref>}} -{{comment|fr|Le monastère est un ensemble de bâtiments où habite une communauté religieuse de moines ou de moniales.<ref>http://fr.wikipedia.org/wiki/Monast%C3%A8re</ref>.}} -{{comment|ga|Is pobal manaigh ina gcónaí faoi móideanna reiligiúnach í mainistir.<ref>https://ga.wikipedia.org/wiki/Mainistir</ref>}} -{{comment|nl|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.<ref>http://nl.wikipedia.org/wiki/Klooster_%28gebouw%29</ref>}} -{{comment|pl|Klasztor – budynek lub zespół budynków, w którym mieszkają wspólnoty religijne zakonników albo zakonnic.<ref>https://pl.wikipedia.org/wiki/Klasztor</ref>}} -| rdfs:subClassOf = ReligiousBuilding -| owl:equivalentClass = wikidata:Q44613, d0:Location -}} - -<references />OntologyClass:MonoclonalAntibody20011918523922017-10-15T11:48:07Z{{Class -| labels = -{{label|de|monoklonaler Antikörper}} -{{label|en|monoclonal antibody}} -{{label|fr|monoclonal anticorps}} -| comments = -{{comment|en|Drugs that are a monoclonal antibody‎}} -{{comment|en|Medikamente welche monoklonale Antikörper sind}} -| rdfs:subClassOf = Drug -}}OntologyClass:Monument2002266526892017-11-29T15:47:57Z{{Class -| labels = -{{label|en|monument}} -{{label|ga|séadchomhartha}} -{{label|fr|monument}} -{{label|el|μνημείο}} -{{label|nl|monument}} -{{label|de|Denkmal}} -{{label|ja|モニュメント}} - -| comments = -{{comment|en|A type of structure (a statue or an art object) created to commemorate a person or important event, not necessarily of a catastrophic nature. }} -| rdfs:subClassOf = ArchitecturalStructure -| owl:equivalentClass = wikidata:Q4989906 -}}OntologyClass:Mosque2006700508512016-04-18T11:02:05Z{{Class -| labels = -{{label|en|mosque}} -{{label|de|Moschee}} -{{label|el|τζαμί}} -{{label|es|mezquita}} -{{label|fr|mosquée}} -{{label|ga|mosc}} -{{label|nl|moskee}} -{{label|pl|meczet}} -{{label|ja|モスク}} - -| comments = -{{comment|en|A mosque, sometimes spelt mosk, is a place of worship for followers of Islam.<ref>http://en.wikipedia.org/wiki/Mosque</ref>}} -{{comment|el|Το τζαμί είναι ο τόπος λατρείας των Μουσουλμάνων.}} -{{comment|fr|Une mosquée est un lieu de culte où se rassemblent les musulmans pour les prières communes.<ref>http://fr.wikipedia.org/wiki/Mosquée</ref>}} -{{comment|ga|Is áit adhartha na Moslamach, lucht leanúna an reiligiúin Ioslam, é mosc<ref>https://ga.wikipedia.org/wiki/Mosc</ref>}} -{{comment|pl|Meczet – miejsce kultu muzułmańskiego<ref>https://pl.wikipedia.org/wiki/Meczet</ref>}} -| rdfs:subClassOf = ReligiousBuilding -| owl:equivalentClass = wikidata:Q32815 -}} - -== references == -<references/>OntologyClass:Moss200410479722015-05-25T14:57:47Z{{Class -| labels = -{{label|en|moss}} -{{label|ga|caonach}} -{{label|nl|mossen}} -{{label|el|βρύο}} -{{Label|de|Laubmoss}} -{{label|it|muschio}} -{{Label|fr|mousses}} -{{label|ja|蘚類}} -| rdfs:subClassOf = Plant -}}OntologyClass:MotocycleRacer2008083492742015-10-18T12:03:35Z{{Class -| labels = -{{label|en|motocycle racer}} -{{label|el|οδηγός αγώνων μοτοσυκλέτας}} -{{label|de|Motorrad-Rennfahrer}} -{{label|nl|motorcoureur}} -| rdfs:subClassOf = MotorcycleRider -}}OntologyClass:MotorRace20011108468832015-03-22T12:17:21Z{{Class -| labels = -{{label|en|motor race}} -{{label|de|Motorradrennen}} -{{label|nl|motorwedstrijd}} -| rdfs:subClassOf = Race -}}OntologyClass:Motorcycle2007998479952015-05-25T15:00:05Z{{Class -| labels = -{{label|en|motorcycle}} -{{label|ga|gluaisrothar}} -{{label|de|Motorrad}} -{{label|fr|moto}} -{{label|el|μοτοσυκλέτα}} -{{label|it|motocicletta}} -{{label|nl|motorfiets}} -| rdfs:subClassOf = MeanOfTransportation -| owl:equivalentClass = wikidata:Q34493 -}}OntologyClass:MotorcycleRacingLeague2002179467702015-03-21T19:13:25Z{{Class -| labels = -{{label|en|motorcycle racing league}} -{{label|de|Motorradrennen Liga}} -{{label|fr|ligue de courses motocycliste}} -{{label|nl|motorrace competitie}} -| comments = -{{comment|en|a group of sports teams or bikerider that compete against each other in Motorcycle Racing}} -| rdfs:subClassOf = SportsLeague -}}OntologyClass:MotorcycleRider2006109469672015-03-22T18:28:26Z{{Class -| labels = {{label|en|motorcycle rider}} -{{label|de|Motorradfahrer}} -{{label|el|μοτοσυκλετιστής}} -{{label|nl|motorrijder}} -| rdfs:subClassOf = MotorsportRacer -}}OntologyClass:MotorsportRacer2007970469652015-03-22T18:27:08Z{{Class -| labels = - {{label|en|motorsport racer}} - {{label|de|Motorsport Fahrer}} - {{label|nl|motorsport renner}} - {{label|el|οδηγός αγώνων}} -| rdfs:subClassOf = Athlete -}}OntologyClass:MotorsportSeason2006089457542015-03-13T17:28:36Z{{Class -| labels = -{{label|en|motorsport season}} -{{label|nl|motorsportseizoen}} -{{label|de|Motorsportsaison}} -| rdfs:subClassOf = SportsSeason -}}OntologyClass:Mountain200411481222015-05-25T15:13:28Z{{Class -| labels = -{{label|en|mountain}} -{{label|ga|sliabh}} -{{label|nl|berg}} -{{label|de|Berg}} -{{label|el|Βουνό}} -{{label|fr|montagne}} -{{label|ko|산}} -{{label|pt|montanha}} -{{label|ja|山}} -{{label|zh|山}} -| rdfs:subClassOf = NaturalPlace -| owl:equivalentClass = schema:Mountain, wikidata:Q8502 -| owl:disjointWith = Person -}}OntologyClass:MountainPass2002270498572015-12-17T20:33:21Z{{Class -| labels = -{{label|en|mountain pass}} -{{label|de|Bergpass}} -{{label|fr|col de montagne}} -{{label|el|Πέρασμα βουνού}} -{{label|ja|峠}} -{{label|nl|bergpas}} -{{label|pt|desfiladeiro}} -| comments = -{{comment|en|a path that allows the crossing of a mountain chain. It is usually a saddle point in between two areas of higher elevation}} -| rdfs:subClassOf = NaturalPlace -| owl:equivalentClass = wikidata:Q133056 -}}OntologyClass:MountainRange2002267498582015-12-17T20:37:51Z{{Class -| labels = -{{label|en|mountain range}} -{{label|de|Bergkette}} -{{label|fr|chaîne de montagne}} -{{label|el|Οροσειρά}} -{{label|nl|bergketen}} -{{label|pt|cadeia montanhosa}} -{{label|ko|산맥}} -| comments = -{{comment|en|a chain of mountains bordered by highlands or separated from other mountains by passes or valleys.}} -| rdfs:subClassOf = NaturalPlace -| owl:equivalentClass = wikidata:Q46831 -}}OntologyClass:MouseGene2005028482132015-05-25T15:22:32Z{{ Class -|labels= -{{label|en|MouseGene}} -{{label|ga|géin luiche}} -{{label|de|Mausgenom}} -{{label|el|γονίδιο ποντικιού}} -{{label|ja|マウス遺伝子}} -{{label|nl|muisgenoom}} -| rdfs:subClassOf = Gene -}}OntologyClass:MouseGeneLocation2005050469792015-03-22T18:52:56Z{{ Class -| labels = -{{label|en|MouseGeneLocation}} -{{label|de|Mausgenom Lokation}} -{{label|nl|muisgenoom locatie}} -{{label|ja|マウス遺伝子座}} -{{label|nl|muisgenoom locatie}} -| rdfs:subClassOf = GeneLocation -}}OntologyClass:MovieDirector2009431482852015-05-25T15:29:25Z{{Class -| labels = -{{label|en|Movie director}} -{{label|ga|stiúrthóir scannáin}} -{{label|nl|regisseur}} -{{label|de|Filmregisseur}} -{{label|fr|réalisateur de film}} -| comments = -{{comment|en|a person who oversees making of film.}} -| rdfs:subClassOf = Person -| owl:equivalentClass = wikidata:Q2526255 -}}OntologyClass:MovieGenre2005920511422016-06-04T20:08:08Z{{Class -|labels= -{{label|en|movie genre}} -{{label|ga|seánra scannáin}} -{{label|de|Filmgenre}} -{{label|el|είδος ταινίας}} -{{label|fr|genre de film}} -{{label|nl|filmgenre}} -| rdfs:subClassOf = Genre -}}OntologyClass:MovingImage2009575469552015-03-22T18:02:51Z{{Class -| labels = -{{label|en|moving image}} -{{label|de|Bewegtbilder}} -{{label|nl|bewegend beeld}} -| comments = -{{comment|en|A visual document that is intended to be animated; equivalent to http://purl.org/dc/dcmitype/MovingImage}} -| rdfs:subClassOf = Image -}}OntologyClass:MovingWalkway20011098469072015-03-22T14:18:39Z{{Class -| labels = -{{label|en|travellator}} -{{label|de|Rollsteig}} -{{label|nl|rolpad}} -| specificProperties = -{{SpecificProperty | ontologyProperty = diameter | unit = metre }} -{{SpecificProperty | ontologyProperty = mass | unit = kilogram }} -{{SpecificProperty | ontologyProperty = length | unit = millimetre }} -{{SpecificProperty | ontologyProperty = height | unit = millimetre }} -{{SpecificProperty | ontologyProperty = weight | unit = kilogram }} -{{SpecificProperty | ontologyProperty = width | unit = millimetre }} -| owl:disjointWith = Person -| rdfs:subClassOf = On-SiteTransportation -}}OntologyClass:MultiVolumePublication2005985330912014-03-28T15:14:02Z{{Class -| labels = -{{label|en|multi volume publication}} -{{label|de|mehrbändige Publikation}} -{{label|nl|meerdelige publicatie}} -| rdfs:subClassOf = WrittenWork -}}OntologyClass:Municipality2006568508522016-04-18T11:02:49Z{{Class -| labels = -{{label|en|municipality}} -{{label|es|municipio}} -{{label|el|δήμος}} -{{label|fr|commune}} -{{label|de|Gemeinde}} -{{label|nl|gemeente}} -{{label|ja|基礎自治体}} -| comments = -{{comment|en|An administrative body governing a territorial unity on the lower level, administering one or a few more settlements}} -{{comment|el|Δήμος ονομάζεται μία οντότητα της δημόσιας διοίκησης, η οποία στα περισσότερα κράτη αποτελεί τη βασική αυτοδιοικητική μονάδα και κατά κανόνα περιλαμβάνει μια πόλη ή κωμόπολη και τα γύρω χωριά της.}} -{{comment|es|Un Municipio es el ente local definido en el artículo 140 de la Constitución española y la entidad básica de la organización territorial del Estado según el artículo 1 de la Ley 7/1985, de 2 de abril, Reguladora de las Bases del Régimen Local. Tiene personalidad jurídica y plena capacidad para el cumplimiento de sus fines. La delimitación territorial de Municipio está recogida del REgistro Central de Cartografía del IGN}} -| rdfs:subClassOf = GovernmentalAdministrativeRegion -| owl:equivalentClass = -}}OntologyClass:Murderer2006203508532016-04-18T11:03:51Z{{Class -| labels = {{label|en|murderer}} -{{label|ga|dúnmharfóir}} -{{label|fr|assassin}} -{{label|de|Mörder}} -{{label|it|assasino}} -{{label|el|δολοφόνος}} -{{label|nl|moordenaar}} -{{label|ko|연쇄 살인자}} -{{label|ja|殺人}} - -| rdfs:subClassOf = Criminal -| owl:equivalentClass = wikidata:Q16266334 -}}OntologyClass:Muscle200413479732015-05-25T14:58:02Z{{Class -| labels = -{{label|en|muscle}} -{{label|ga|matán}} -{{label|el|μυς}} -{{label|de| Muskel}} -{{label|fr | muscle}} -{{label|ja| 筋肉}} -{{label|nl| spier}} -| rdfs:subClassOf = AnatomicalStructure -| owl:equivalentClass = wikidata:Q7365 -}}OntologyClass:Museum2002518474812015-04-01T19:03:40Z{{Class -| labels = -{{label|en|museum}} -{{label|de|Museum}} -{{label|nl|museum}} -{{label|el|μουσείο}} -{{label|fr|musée}} -{{label|ga|músaem}} -{{label|ko|박물관}} -{{label|ja|博物館}} -{{label|pl|muzeum}} -{{label|pt|museu}} -| rdfs:subClassOf = Building -| owl:equivalentClass = schema:Museum -| owl:equivalentClass = wikidata:Q33506 -}}OntologyClass:MusicComposer2009428387892014-12-02T10:00:27Z{{Class -| labels = {{label|en|music composer}} -{{label|fr|compositeur}} -{{label|nl|componist}} -{{label|de|Komponist}} -| comments = {{comment|en|a person who creates music.}} -| rdfs:subClassOf = Writer -}}OntologyClass:MusicDirector2009429465052015-03-18T20:37:02Z{{Class -| labels = -{{label|en|music director}} -{{label|nl|dirigent}} -{{label|de|Dirigent}} -{{label|fr|chef d'orchestre}} -| comments = -{{comment|en|A person who is the director of an orchestra or concert band.}} -| rdfs:subClassOf = MusicalArtist -| owl:equivalentClass = wikidata:Q1198887 -}}OntologyClass:MusicFestival200417468732015-03-22T11:48:16Z{{Class -| labels = -{{label|en|music festival}} -{{label|de|Musikfestival}} -{{label|el|φεστιβάλ μουσικής}} -{{label|fr|festival de musique}} -{{label|es|festival de música}} -{{label|ko|음악제}} -{{label|nl|muziekfestival}} -| rdfs:subClassOf = SocietalEvent -| owl:equivalentClass = wikidata:Q868557, schema:Festival -}}OntologyClass:MusicGenre200418528112018-02-08T19:49:47Z{{Class -| labels = -{{label|en|music genre}} -{{label|de|musik genre}} -{{label|it|genere musicale}} -{{label|fr|genre musical}} -{{label|el|μουσικό είδος}} -{{label|pt|género musical}} -{{label|nl|genre (muziek)}} -{{label|ko|음악 장르}} -| rdfs:subClassOf = Genre -| owl:equivalentClass = wikidata:Q188451 -}}OntologyClass:Musical200414486262015-08-06T14:07:22Z{{Class -| labels = -{{label|en|musical}} -{{label|nl|musical}} -{{label|de|Musical}} -{{label|el|μουσικός}} -{{label|fr|musique}} -{{label|ja|ミュージカル}} -{{label|ko| 뮤지컬}} -| rdfs:subClassOf = MusicalWork -| owl:equivalentClass = wikidata:Q2743 -}}OntologyClass:MusicalArtist200415520382017-05-04T10:59:46Z -{{Class -| labels = - {{label|en|musical artist}} - {{label|de|musikalischer Künstler}} - {{label|nl|muziekartiest}} - {{label|fr|musicien}} - {{label|pt|artista musical}} - {{label|el|μουσικός}} - {{label|ko|음악가 }} - {{label|ja|音楽家}} -| rdfs:subClassOf = Artist, schema:MusicGroup, dul:NaturalPerson -}}OntologyClass:MusicalWork200416462852015-03-18T17:13:33Z{{Class -| labels = -{{label|en|musical work}} -{{label|de|musikalisches Werk}} -{{label|it|opera musicale}} -{{label|el|μουσικό έργο}} -{{label|fr|œuvre musicale}} -{{label|nl|muziekwerk}} -| rdfs:subClassOf = Work -| owl:equivalentClass = wikidata:Q2188189 -}}OntologyClass:MythologicalFigure2008199485972015-08-05T16:02:54Z{{Class -| labels = -{{label|en|mythological figure}} -{{label|de|mythologische Gestalt}} -{{label|el|μυθικό πλάσμα}} -{{label|it|figura mitologica}} -{{label|nl|mythologisch figuur}} -| rdfs:subClassOf = FictionalCharacter <!-- this is not always correct --> -| owl:equivalentClass = wikidata:Q15410431 -}}OntologyClass:NCAATeamSeason2006071470742015-03-23T11:57:39Z{{Class -| labels = -{{label|en|national collegiate athletic association team season}} -{{label|de|NCAA Team Saison}} -{{label|nl|NCAA team seizoen}} -| rdfs:subClassOf = SportsTeamSeason -}}OntologyClass:Name2004128486042015-08-06T06:11:26Z{{Class -| labels = - {{label|en|name}} - {{label|de|Name}} - {{label|el|όνομα}} - {{label|fr|nom}} - {{label|ga|ainm}} - {{label|ja|名前}} - {{label|nl|naam}} - {{label|pl|nazwa}} - {{label|pt|nome}} -| rdfs:subClassOf = owl:Thing -| owl:equivalentClass = wikidata:Q82799 -}}OntologyClass:NarutoCharacter2007773507172016-04-13T14:36:35Z{{Class -| labels = -{{label|en|naruto character}} -{{label|ga|carachtar naruto}} -{{label|de|Naruto Charakter}} -{{label|nl|personage in Naruto}} -| rdfs:subClassOf = FictionalCharacter -}}OntologyClass:NascarDriver200419467152015-03-21T14:20:38Z{{Class -| labels = -{{label|en|nascar driver}} -{{label|de|NASCAR Fahrer}} -{{label|nl|nascar coureur}} -{{label|el|οδηγός αγώνων nascar}} -{{label|fr|pilote de la nascar}} -| rdfs:subClassOf = RacingDriver -}}OntologyClass:NationalAnthem2009432482882015-05-25T15:29:39Z{{Class -| labels = -{{label|en|National anthem}} -{{label|ga|amhrán náisiúnta}} -{{label|de|Nationalhymne}} -{{label|fr|Hymne national}} -{{label|nl|volkslied}} -| comments = -{{comment|en|Patriotic musical composition which is the offcial national song.}} -| rdfs:subClassOf = MusicalWork -| owl:equivalentClass = wikidata:Q23691 -}}OntologyClass:NationalCollegiateAthleticAssociationAthlete200420515192016-09-18T14:59:29Z{{Class -| labels = -{{label|en|national collegiate athletic association athlete}} -{{label|nl|National Collegiate Athletic Association atleet}} -{{label|ga|lúthchleasaí sa National Collegiate Athletic Association}} -{{label|de|NCAA}} -{{label|fr|athlète de la national collegiate athletic association}} -| rdfs:subClassOf = Athlete -}}OntologyClass:NationalFootballLeagueEvent2008152457662015-03-13T19:40:14Z{{Class -| labels = -{{label|en|national football league event}} -{{label|de|NFL Game day}} -| rdfs:subClassOf = SportsEvent -}}OntologyClass:NationalFootballLeagueSeason2006079470732015-03-23T11:55:38Z{{Class -| labels = -{{label|en|national football league season}} -{{label|de|NFL Saison}} -| rdfs:subClassOf = FootballLeagueSeason -}}OntologyClass:NationalSoccerClub2004448467852015-03-21T20:06:14Z{{Class -| labels = -{{label|en|national soccer club}} -{{label|de|nationaler Fußballverein}} -{{label|tr|milli takım}} -{{label|nl|nationale voetbalclub}} -| rdfs:subClassOf = SoccerClub -}}OntologyClass:NaturalEvent2008701526432017-11-03T16:01:39Z{{Class -| labels = - {{label|en|natural event}} - {{label|el|φυσικό γεγονός}} - {{label|de|Naturereignis}} - {{label|it|evento naturale}} - {{label|nl|gebeurtenis in de natuur}} - {{label|fr|événement naturel}} -| comments = - {{comment|el|Το φυσικό γεγονός χρησιμοποιείται για να περιγράψει ένα συμβάν που πραγματοποιείται φυσικά}} -| rdfs:subClassOf = Event -}}OntologyClass:NaturalPlace2003255498362015-12-17T18:15:50Z{{Class -|labels = - {{label|en|natural place}} - {{label|el|φυσική θέση}} - {{label|de|natürlicher Ort}} - {{label|fr|lieu naturel}} - {{label|nl|natuurgebied}} - {{label|pt|lugar natural}} -| comments = -{{comment|el|Η φυσική θέση ερμηνεύει όλα τα σημεία που απαντώνται φυσικά στο σύμπαν}} -{{comment|en|The natural place encompasses all places occurring naturally in universe.}} -{{comment|de|Der natürlicher Ort beinhaltet alle Orte die natürlicherweise im Universum existieren.}} -| rdfs:subClassOf = Place -}}OntologyClass:NaturalRegion2007222464542015-03-18T18:47:10Z{{Class -| labels = -{{label|en|natural region}} -{{label|de|Naturraum}} -{{label|fr|région naturelle}} -{{label|el|φυσική περιοχή}} -{{label|nl|natuurlijke regio}} -| rdfs:subClassOf = Region -| comments = -{{comment|el|H φυσική περιοχή χρησιμοποιείται για να περιγράψει την έκταση μιας γεωγραφικής περιοχής στην οποία η ανθρωπογενής παρέμβαση είναι ανύπαρκτη μέχρι ελάχιστη}} -| owl:equivalentClass = wikidata:Q1970725 -}}OntologyClass:Nebula20012216533742018-10-19T10:04:35Z{{Class -|labels= - {{label|en|Nebula}} - - {{label|ru|Туманность}} -| owl:disjointWith = Person -| rdfs:subClassOf = CelestialBody -}}OntologyClass:Nerve200421508812016-04-19T11:23:02Z{{Class -| labels = -{{label|en|nerve}} -{{label|ga|néaróg}} -{{label|el|νεύρο}} -{{label|de|Nerv}} -{{label|fr|nerf}} -{{label|nl|zenuw}} -{{label|ja|神経}} -| rdfs:subClassOf = AnatomicalStructure -| owl:equivalentClass = wikidata:Q9620 -}}OntologyClass:NetballPlayer2007323515032016-09-16T22:02:30Z{{Class -| labels = -{{label|it|giocatore di netball}} -{{label|en|netball player}} -{{label|nl|korfbalspeler}} -{{label|de|Korbballspieler}} - -| rdfs:subClassOf = Athlete -}}OntologyClass:Newspaper200422471232015-03-23T16:24:46Z{{Class -| labels = -{{label|en|newspaper}} -{{label|nl|krant}} -{{label|de|Zeitung}} -{{label|fr|journal}} -{{label|el|εφημερίδα}} -{{label|ko|신문}} -{{label|ja|新聞}} -| rdfs:subClassOf = PeriodicalLiterature -| comments = -{{comment|en|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.}} -{{comment|de|Eine Zeitung ist ein Druckwerk von mäßigem Seitenumfang, das in kurzen periodischen Zeitspannen, mindestens einmal wöchentlich, öffentlich erscheint. Die Zeitung ist, anders als die Zeitschrift, ein der Aktualität verpflichtetes Presseorgan und gliedert sich meist in mehrere inhaltliche Rubriken wie Politik, Lokales, Wirtschaft, Sport, Feuilleton und Immobilien.}} -| owl:equivalentClass = wikidata:Q11032 -}}OntologyClass:NobelPrize2007678482892015-05-25T15:29:44Z{{Class -| labels = - {{label|en|Nobel Prize}} -{{label|ga|Duais Nobel}} - {{label|it|Premio Nobel}} - {{label|nl|Nobelprijs}} - {{label|fr|Prix Nobel}} - {{label|es|Premio Nobel}} - {{label|de|Nobelpreis}} - {{label|ja|ノーベル賞}} - {{label|el|Βραβείο Νόμπελ}} -| rdfs:subClassOf = Award -| owl:equivalentClass = wikidata:Q7191 -}}OntologyClass:Noble2006066508822016-04-19T11:24:31Z{{Class -| labels = -{{label|en|noble}} -{{label|de|Adliger}} -{{label|el|ευγενής}} -{{label|nl|edele}} -{{label|ja|高貴な}} -| rdfs:subClassOf = Person -}}OntologyClass:NobleFamily2008666467362015-03-21T16:02:04Z{{Class -| labels = -{{label|en|Noble family}} -{{label|de|Adelsfamilie}} -{{label|nl|adelijk geslacht}} -| rdfs:subClassOf = Family -| comments = -{{comment|en|Family deemed to be of noble descent}} -| owl:equivalentClass = wikidata:Q13417114 -}}OntologyClass:Non-ProfitOrganisation200423517972017-01-04T16:20:22Z{{Class -| labels= -{{label|en|non-profit organisation}} -{{label|de|gemeinnützige Organisation}} -{{label|el|μη κερδοσκοπική οργάνωση}} -{{label|fr|organisation à but non lucratif}} -{{label|nl|non-profit organisatie}} -{{label|ru|Некоммерческая организация}} -| rdfs:subClassOf = Organisation -| owl:equivalentClass = wikidata:Q163740 -}}OntologyClass:NordicCombined20011182472982015-03-30T09:22:24Z{{Class -| labels = -{{label|en|Nordic Combined}} -{{label|de|Nordischer Kombinierer}} -| rdfs:subClassOf = WinterSportPlayer - -}}OntologyClass:Novel2005816520962017-06-19T10:46:07Z{{Class -| labels = -{{label|en| novel}} -{{label|ga|úrscéal}} -{{label|da|roman}} -{{label|de|Roman}} -{{label|el|νουβέλα}} -{{label|it| novella}} -{{label|ja | 小説}} -{{label|nl| roman}} -{{label|fr|roman}} -| rdfs:subClassOf = Book -| comments = -{{comment|en| A book of long narrative in literary prose<ref name="novel">http://en.wikipedia.org/wiki/Novel</ref>}} -{{comment|el|Ένα βιβλίο με μεγάλη αφήγηση σε λογοτεχνική πρόζα}} -{{comment|fr|Le roman est un genre littéraire, caractérisé pour l'essentiel par une narration fictionnelle plus ou moins longue.<ref>http://fr.wikipedia.org/wiki/Roman_%28litt%C3%A9rature%29</ref>}} -| owl:equivalentClass = wikidata:Q8261 -}} -==References== -<references/>OntologyClass:NuclearPowerStation2009144482902015-05-25T15:29:50Z{{Class -| labels = -{{label|de|Kernkraftwerk}} -{{label|en|Nuclear Power plant}} -{{label|ga|stáisiún núicléach}} -{{label|el|Πυρηνικός Σταθμός Παραγωγής Ενέργειας}} -{{label|fr|centrale nucléaire}} -{{label|nl|kernenergiecentrale}} -| rdfs:subClassOf = PowerStation -| owl:equivalentClass = wikidata:Q134447 -}}OntologyClass:Ocean2009440508832016-04-19T11:25:26Z{{Class -| labels = -{{label|en|Ocean}} -{{label|ga|aigéan}} -{{label|de|Ozean}} -{{label|el|Ωκεανός}} -{{label|fr|Océan}} -{{label|nl|oceaan}} -{{label|pt|oceano}} -{{label|ja|大洋}} -| comments = {{comment|en|A body of saline water that composes much of a planet's hydrosphere.}} -{{comment|el| Μάζα αλμυρού νερού που αποτελεί σημαντικό μέρος της υδρόσφαιρας ενός πλανήτη.}} -| rdfs:subClassOf = BodyOfWater -| owl:equivalentClass = wikidata:Q9430 -}}OntologyClass:OfficeHolder200424468122015-03-21T21:41:28Z{{Class -| labels = -{{label|en|office holder}} -{{label|el|κάτοχος δημόσιου αξιώματος}} -{{label|es|cargo público}} -{{label|fr|titulaire}} -{{label|de|Amtsinhaber}} -{{label|ko|공직자}} -{{label|nl|ambtsdrager}} -| rdfs:subClassOf = Person -}}OntologyClass:OldTerritory2007171457732015-03-13T20:33:16Z{{Class -| labels = -{{label|en|old territory}} -{{label|de|alten Länder}} -| rdfs:subClassOf = Territory -}}OntologyClass:OlympicEvent2006085468792015-03-22T12:04:39Z{{Class -| labels = -{{label|en|olympic event}} -{{label|de|olympische Veranstaltung}} -{{label|el|ολυμπικακό γεγονός}} -{{label|nl|Olympisch evenement}} -| rdfs:subClassOf = Olympics -}}OntologyClass:OlympicResult200425345362014-04-08T15:47:10Z{{Class -|labels= - {{label|en|olympic result}} -{{label|de|olympisches Ergebnis}} - {{label|el|αποτελέσματα Ολυμπιακών αγώνων}} - {{label|fr|résultat de Jeux Olympiques}} - {{label|es|resultados de Juegos Olímpicos}} - {{label|nl|resultaat op de Olympische Spelen}} -| rdfs:subClassOf = SportCompetitionResult -}}OntologyClass:Olympics200426481252015-05-25T15:13:45Z{{Class -| labels = -{{label|en|olympics}} -{{label|ga|Na Cluichí Oilimpeacha}} -{{label|de|Olympiade}} -{{label|el|ολυμπιακοί αγώνες}} -{{label|fr|Jeux Olympiques}} -{{label|es|Juegos Olímpicos}} -{{label|ko|올림픽}} -{{label|ja|近代オリンピック}} -{{label|nl|Olympische Spelen}} -| rdfs:subClassOf = SportsEvent -}}OntologyClass:On-SiteTransportation20011095469042015-03-22T14:08:37Z{{Class -| labels = -{{label|en|on-site mean of transportation}} -{{label|de|Vorortbeförderungsmittel}} -{{label|nl|stationair vervoermiddel}} -| specificProperties = -{{SpecificProperty | ontologyProperty = diameter | unit = metre }} -{{SpecificProperty | ontologyProperty = mass | unit = kilogram }} -{{SpecificProperty | ontologyProperty = length | unit = millimetre }} -{{SpecificProperty | ontologyProperty = height | unit = millimetre }} -{{SpecificProperty | ontologyProperty = weight | unit = kilogram }} -{{SpecificProperty | ontologyProperty = width | unit = millimetre }} -| owl:disjointWith = Person -| rdfs:subClassOf = MeanOfTransportation -}}OntologyClass:Openswarm2006132515162016-09-18T14:38:43Z{{Class -| labels = -{{label|en|Open Swarm}} -{{label|nl|open zwerm (cluster)}} -{{label|de|Open Swarm}} -{{label|el|Ανοικτό σμήνος}} -| rdfs:subClassOf = Swarm -}}OntologyClass:Opera2005929482922015-05-25T15:30:13Z{{Class -|labels= -{{label|en|opera}} -{{label|ga|ceoldráma}} -{{label|de|oper}} -{{label|it|opera}} -{{label|el|όπερα}} -{{label|fr|opéra}} -{{label|es|όpera}} -{{label|ja|オペラ}} -{{label|nl|opera}} -| rdfs:subClassOf = MusicalWork -| owl:equivalentClass = wikidata:Q1344 -}}OntologyClass:Organ2007979508842016-04-19T11:27:36Z{{Class -| labels = - {{label|en|organ}} - {{label|fr|Orgue}} - {{label|el|όργανο}} - {{label|nl|orgel}} - {{label|de|Orgel}} - {{label|ja|オルガン}} -| comments = - {{ comment|en|All types and sizes of organs}} - {{ comment|el|Όλα τα είδη και τα μεγέθη των οργάνων}} -| rdfs:subClassOf = Instrument -| owl:equivalentClass = wikidata:Q1444 -}}OntologyClass:Organisation200427537772020-10-19T17:28:58Z{{Class -| labels = - {{label|en|organisation}} - {{label|es|organización}} - {{label|nl|organisatie}} - {{label|el|οργάνωση}} - {{label|fr|organisation}} - {{label|da|organisation}} - {{label|de|Organisation}} - {{label|pt|organização}} - {{label|ru|Организация}} - {{label|sl|organizacija}} - {{label|ko|조직}} - {{label|ja|組織}} -| rdfs:subClassOf = Agent -| owl:equivalentClass = schema:Organization, dul:SocialPerson, wikidata:Q43229 -| owl:disjointWith = Person -| owl:disjointWith = wgs84_pos:SpatialThing -}}OntologyClass:OrganisationMember2005039469472015-03-22T17:20:35Z{{Class -|labels= -{{label|en|Organisation member}} -{{label|de|Organisationsmitglied}} -{{label|es|Miembro de organización}} -{{label|el|Μέλος οργανισμού}} -{{label|nl|organisatielid}} -|comments= -{{comment|en|A member of an organisation.}} -{{comment|el| Μέλος ενός οργανισμού.}} -| rdfs:subClassOf = Person -}}OntologyClass:Outbreak20012296536052020-04-04T16:35:41Z{{Class -| labels = -{{label|en|Outbreak}} -| rdfs:subClassOf = Event -| owl:equivalentClass = wikidata:Q495513 -}}OntologyClass:OverseasDepartment2007020464222015-03-18T18:30:57Z{{Class -| labels = -{{label|en|overseas department}} -{{label|de|Übersee-Departement}} -{{label|fr|département outre mer}} -{{label|nl|overzees departement}} -| rdfs:subClassOf = Department -| owl:equivalentClass = wikidata:Q202216 -}}OntologyClass:Owl:Thing2006457391752015-01-11T18:45:39ZThis class is already defined in the [http://dbpedia.hg.sourceforge.net/hgweb/dbpedia/extraction_framework/file/dump/core/src/main/scala/org/dbpedia/extraction/ontology/io/OntologyReader.scala DBpedia source code]. Please do not add any definition here. The system does not work when there is a duplicate definition. This also means that we cannot add labels for other languages. Sorry. Maybe we'll change that some day. -<!-- -{{Class -|labels= - {{label|en|thing}} - {{Label|nl|entiteit}} - {{label|es|cosa}} - {{label|fr|chose}} - {{label|it|cosa}} -| rdfs:domain = owl:Thing -| rdfs:range = xsd:string -| owl:equivalentClass = owl:Thing -}} --->OntologyClass:PaintballLeague2002182345372014-04-08T15:47:18Z{{Class -| labels = -{{label|en|paintball league}} -{{label|de|Paintball-Liga}} -{{label|el|κύπελλο paintball}} -{{label|fr|ligue de paintball}} -{{label|nl|paintball competitie}} -| rdfs:subClassOf = SportsLeague -| comments = -{{comment|en|a group of sports teams that compete against each other in Paintball}} -{{comment|el|ένα γκρουπ αθλητικών ομάδων που ανταγωνίζονται στο paintball}} -}}OntologyClass:Painter2006465520872017-06-19T10:38:50Z{{Class -| rdfs:label@en = painter -| rdfs:label@fr = peintre -| rdfs:label@de = Maler -| rdfs:label@da = maler -| rdfs:label@el = ζωγράφος -| rdfs:label@nl = schilder -| rdfs:label@ja = 画家 -| rdfs:subClassOf = Artist -| owl:equivalentClass = wikidata:Q1028181 -}}OntologyClass:Painting2002386520852017-06-19T10:36:44Z{{Class -| labels = -{{label|en|Painting}} -{{label|ga|pictiúr}} -{{label|da|maleri}} -{{label|de|Gemälde}} -{{label|fr|peinture}} -{{label|pl|obraz}} -{{label|el|Έργο Ζωγραφικής}} -{{label|ja|絵画}} -{{label|nl|schilderij}} -| rdfs:subClassOf = Artwork -| owl:equivalentClass = schema:Painting -| rdfs:comment@en = Describes a painting to assign picture entries in wikipedia to artists. -}}OntologyClass:Parish2006477508872016-04-19T11:30:01Z{{Class -| labels = -{{label|en|parish}} -{{label|ga|paróiste}} -{{label|de|Gemeinde}} -{{label|el|ενορία}} -{{label|fr|paroisse}} -{{label|nl|parochie}} -{{label|ja|小教区}} - -| comments = -{{comment|en|The smallest unit of a clerical administrative body}} -{{comment|el|Είναι η μικρότερη μονάδα στην διοικητική ιερατική δομή.}} -| rdfs:subClassOf = ClericalAdministrativeRegion -| owl:equivalentClass = -}}OntologyClass:Park200428481272015-05-25T15:13:50Z{{Class -| labels = -{{label|en|park}} -{{label|ga|páirc}} -{{label|de|Park}} -{{label|fr|parc}} -{{label|pt|parque}} -{{label|el|πάρκο}} -{{label|ko|공원}} -{{label|ja|公園}} -{{label|nl|park}} -| comments= -{{comment|en|A park is an area of open space provided for recreational use. http://en.wikipedia.org/wiki/Park}} -| rdfs:subClassOf = Place -| owl:equivalentClass = schema:Park -}}OntologyClass:Parliament2007937511282016-05-29T18:19:32Z{{Class -| labels = -{{label|en|parliament}} -{{label|ga|parlaimint}} -{{label|es|parlamento}} -{{label|fr|parlement}} -{{label|de|Parlament}} -{{label|el|κοινοβούλιο}} -{{label|nl|parlement}} -{{label|ja|議会}} -| rdfs:subClassOf = Organisation -| owl:equivalentClass = wikidata:Q35749 -}}OntologyClass:PenaltyShootOut2006809521582017-07-11T11:12:12Z{{Class -| labels = -{{label|en|penalty shoot-out}} -{{label|nl|penalty schieten}} -{{label|ga|ciceanna éirice}} -{{label|de|Elfmeterschießen}} -| rdfs:subClassOf = Event, dul:Event -}}OntologyClass:PeriodOfArtisticStyle2006687457762015-03-14T09:33:30Z{{Class -|labels= -{{label|en|period of artistic style}} -{{label|nl|stijlperiode}} -{{label|de|Kunst Zeitstil}} -| rdfs:subClassOf = TimePeriod -| owl:disjointWith = Person -}}OntologyClass:PeriodicalLiterature2003737462962015-03-18T17:25:33Z{{Class -| labels = -{{label|en|periodical literature}} -{{label|de|Periodikum}} -{{label|el|περιοδικός τύπος}} -{{label|fr|publication périodique}} -| comments = -{{comment|en|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.}} -{{comment|el|Περιοδικός Τύπος (ή αλλιώς περιοδικό ή εφημερίδα) είναι η δημοσίευση άρθρου ή νέων ανά τακτά διαστήματα. Το πιο γνωστό παράδειγμα είναι οι εφημερίδες, που δημοσιεύονται σε καθημερινή ή εβδομαδιαία βάση και το περιοδικό, που τυπικά εκδίδεται σε εβδομαδιαία, μηνιαία ή δίμηνη βάση. Άλλα παραδείγματα μπορεί να είναι τα νέα ενός οργανισμού ή εταιρείας, ένα λογοτεχνικό ή εκπαιδευτικό περιοδικό ή ένα ετήσιο λεύκωμα.}} -{{comment|de|Unter Periodikum wird im Bibliothekswesen im Gegensatz zu Monografien ein (in der Regel) regelmäßig erscheinendes Druckwerk bezeichnet. Es handelt sich um den Fachbegriff für Heftreihen, Gazetten, Journale, Magazine, Zeitschriften und Zeitungen.}} -{{comment|fr|Une publication périodique est un titre de presse qui paraît régulièrement.}} -| rdfs:subClassOf = WrittenWork -| owl:equivalentClass = wikidata:Q1092563 -}}OntologyClass:Person200429520892017-06-19T10:40:31Z{{Class -| labels = - {{label|el|Πληροφορίες προσώπου}} - {{label|en|person}} - {{label|eu|pertsona}} - {{label|da|person}} - {{label|de|Person}} - {{label|sl|Oseba}} - {{label|it|persona}} - {{label|pt|pessoa}} - {{label|fr|personne}} - {{label|ga|duine}} - {{label|es|persona}} - {{label|ja|人_(法律)}} - {{label|nl|persoon}} - {{label|pl|osoba}} - {{label|hy|անձ}} - {{label|ar|شخص}} -| rdfs:subClassOf = Agent -| owl:equivalentClass = foaf:Person, schema:Person, wikidata:Q215627, wikidata:Q5, dul:NaturalPerson -| specificProperties = {{SpecificProperty | ontologyProperty = weight | unit = kilogram }} - {{SpecificProperty | ontologyProperty = height | unit = centimetre }} -}}OntologyClass:PersonFunction200430469192015-03-22T15:31:07Z{{Class -| labels = - {{label|en|person function}} - {{label|de|Funktion einer Person}} - {{label|nl|functie van persoon}} - {{label|es|función de persona}} - {{label|fr|fonction de personne}} -| rdfs:subClassOf = owl:Thing -}}OntologyClass:PersonalEvent2008259468632015-03-22T10:57:50Z{{Class -| labels = -{{label|en|personal event}} -{{label|fr|évènement dans la vie privée}} -{{label|de|Ereignis im persönlichen Leben}} -{{label|el|προσωπικό συμβάν}} -{{label|nl|levensloopgebeurtenis}} -| comments = -{{comment|en|an event that occurs in someone's personal life}} -{{comment|el|ένα συμβάν που αφορά την προσωπική ζωή κάποιου}} -| rdfs:subClassOf = LifeCycleEvent -}}OntologyClass:Philosopher200431468152015-03-21T21:48:13Z{{Class -| labels = -{{label|en|philosopher}} -{{label|de|Philosoph}} -{{label|fr|philosophe}} -{{label|el|φιλόσοφος}} -{{label|ko|철학자}} -{{label|ja|哲学者}} -{{label|nl|filosoof}} -| rdfs:subClassOf = Person -| owl:equivalentClass = wikidata:Q4964182 -}}OntologyClass:PhilosophicalConcept2009718457782015-03-14T09:41:41Z{{Class -| labels = -{{label|en|Philosophical concept}} -{{label|de|philosophisch Konzept}} -{{label|nl|Filosofisch thema}} -| comments = -{{comment|en|Philosophical concepts, e.g. Existentialism, Cogito Ergo Sum}} -| rdfs:subClassOf = TopicalConcept -}}OntologyClass:Photographer2008335509082016-04-19T11:55:13Z{{Class -| labels = -{{label|en|photographer}} -{{label|nl|fotograaf}} -{{label|fr|photographe}} -{{label|de|Fotograf}} -{{label|el|φωτογράφος}} -{{label|it|fotografo}} -{{label|ja|写真家}} -| -| rdfs:subClassOf = Artist -| owl:equivalentClass = wikidata:Q33231 -}}OntologyClass:Place200432520952017-06-19T10:44:00Z{{Class -| labels = - {{label|en|place}} - {{label|ca|lloc}} - {{label|da|sted}} - {{label|de|Ort}} - {{label|el|περιοχή}} - {{label|es|lugar}} - {{label|eu|lekua}} - {{label|fr|lieu}} - {{label|ga|áit}} - {{label|pl|miejsce}} - {{label|pt|lugar}} - {{label|ja|立地}} - {{label|nl|plaats}} - {{label|ar|مكان}} -| comments = - {{comment|en|Immobile things or locations.}} - {{comment|pt|uma localização}} -| owl:equivalentClass = schema:Place, Location -| rdfs:subClassOf = owl:Thing -}}OntologyClass:Planet200433468432015-03-22T09:16:52Z{{Class -| labels = -{{label|ca|planeta}} -{{label|de|Planet}} -{{label|en|planet}} -{{label|el|Πλανήτης}} -{{label|es|planeta}} -{{label|fr|planète}} -{{label|ga|pláinéad}} -{{label|sl|planet}} -{{label|pl|planeta}} -{{label|pt|Planeta}} -{{label|ja|惑星}} -{{label|nl|planeet}} -| rdfs:subClassOf = CelestialBody -| specificProperties = {{SpecificProperty | ontologyProperty = temperature | unit = kelvin }} - {{SpecificProperty | ontologyProperty = orbitalPeriod | unit = day }} - {{SpecificProperty | ontologyProperty = density | unit = kilogramPerCubicMetre }} - {{SpecificProperty | ontologyProperty = mass | unit = kilogram }} - {{SpecificProperty | ontologyProperty = apoapsis | unit = kilometre }} - {{SpecificProperty | ontologyProperty = maximumTemperature | unit = kelvin }} - {{SpecificProperty | ontologyProperty = averageSpeed | unit = kilometrePerSecond }} - {{SpecificProperty | ontologyProperty = volume | unit = cubicKilometre }} - {{SpecificProperty | ontologyProperty = surfaceArea | unit = squareKilometre }} - {{SpecificProperty | ontologyProperty = meanTemperature | unit = kelvin }} - {{SpecificProperty | ontologyProperty = minimumTemperature | unit = kelvin }} - {{SpecificProperty | ontologyProperty = periapsis | unit = kilometre }} - {{SpecificProperty | ontologyProperty = meanRadius | unit = kilometre }} -| owl:equivalentClass = wikidata:Q634 -}}OntologyClass:Plant200434481282015-05-25T15:13:56Z{{Class -| labels = -{{label|en|plant}} -{{label|ga|planda}} -{{label|it|pianta}} -{{label|de|pflanze}} -{{label|el|φυτό}} -{{label|fr|plante}} -{{label|ja|植物}} -{{label|nl|plant}} -| rdfs:subClassOf = Eukaryote - -| owl:equivalentClass = wikidata:Q756 -}}OntologyClass:Play2003774481292015-05-25T15:14:13Z{{Class -|labels= - {{label|en|play}} -{{label|ga|dráma}} - {{label|de|Theaterstück}} - {{label|el|παιχνίδι}} - {{label|ja|戯曲}} - {{label|nl|toneelstuk}} - {{label|fr|pièce de théâtre}} - {{label|es|obra de teatro}} -| rdfs:subClassOf = WrittenWork -|comments= -{{comment|en|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.}} -{{comment|el|Ένα παιχνίδι είναι μια μορφή της λογοτεχνίας, γραμμένο από έναν συγγραφέα, που συνήθως αποτελείται από σενάριο του διαλόγου μεταξύ των χαρακτήρων, που προορίζεται για την θεατρική παράσταση και όχι μόνο ανάγνωση.}} - -| owl:equivalentClass = wikidata:Q25379 -}}OntologyClass:PlayWright2009437482972015-05-25T15:30:37Z{{Class -| labels = {{label|en|Playwright}} -{{label|ga|drámadóir}} -{{label|de|Dramatiker}} -{{label|fr|Dramaturge}} -{{label|nl|toneelschrijver}} -| comments = {{comment|en|A person who writes dramatic literature or drama.}} -| rdfs:subClassOf = Writer -| owl:equivalentClass = wikidata:Q214917 -}}OntologyClass:PlayboyPlaymate200435457802015-03-14T09:45:30Z{{Class -| labels = -{{label|en|Playboy Playmate}} -{{label|de|Playboy Playmate}} -{{label|el|playboy playmate}} -{{label|fr | playmate pour Playboy}} -| rdfs:subClassOf = Person -}}OntologyClass:Poem2008708508902016-04-19T11:32:30Z{{Class -| labels = -{{label|en|poem}} -{{label|ga|dán}} -{{label|fr|poème}} -{{label|de|Gedicht}} -{{label|el|ποίημα}} -{{label|it|poesia}} -{{label|nl|gedicht}} -{{label|ja|詩}} - -| rdfs:subClassOf = WrittenWork -| owl:equivalentClass = wikidata:Q5185279 -}}OntologyClass:Poet2008256508892016-04-19T11:32:00Z{{Class -| labels = -{{label|en|poet}} -{{label|ga|file}} -{{label|fr|poète}} -{{label|de|Dichter}} -{{label|el|ποιητής}} -{{label|nl|dichter}} -{{label|ja|詩人}} - -| rdfs:subClassOf = Writer -| owl:equivalentClass = wikidata:Q49757 -}}OntologyClass:PokerPlayer200436479752015-05-25T14:58:11Z{{Class -| labels = -{{label|en|poker player}} -{{label|ga|imreoir pócair}} -{{label|el|παίχτης του πόκερ}} -{{label|de|Pokerspieler}} -{{label|fr|joueur de poker}} -{{label|nl|pokerspeler}} -| rdfs:subClassOf = Athlete -}}OntologyClass:PoliticalConcept2009716518702017-01-21T14:19:37Z{{Class -| labels = {{label|en|Political concept}} -{{label|de|politische Konzept}} -{{label|nl|politiek concept}} -| comments = {{comment|en|Political concepts, e.g. Capitalism, Democracy}} -| rdfs:subClassOf = TopicalConcept -}}OntologyClass:PoliticalFunction2007906511272016-05-29T18:18:39Z{{Class -| labels = -{{label|en|political function}} -{{label|de|politische Funktion}} -{{label|fr|fonction politique}} -{{label|nl|politieke functie}} -| rdfs:subClassOf = PersonFunction -}}OntologyClass:PoliticalParty2002409463022015-03-18T17:29:27Z{{Class -|labels= -{{label|en|political party}} -{{label|ca|partit polític}} -{{label|es|partido político}} -{{label|de|politische Partei}} -{{label|el|πολιτικό κόμμα}} -{{label|fr|parti politique}} -{{label|nl|politieke partij}} -{{label|pl|partia polityczna}} -{{label|pt|partido político}} -| rdfs:subClassOf = Organisation -|comments= -{{comment|en|for example: Democratic_Party_(United_States)}} -{{comment|el|για παράδειγμα: Δημοκρατικό Κόμμα _United_States)}} -| owl:equivalentClass = wikidata:Q7278 -}}OntologyClass:Politician200437484602015-07-09T05:41:34Z{{Class -| labels = -{{label|en|politician}} -{{label|ga|polaiteoir}} -{{label|el|πολιτικός}} -{{label|nl|politicus}} -{{label|de|Politiker}} -{{label|fr|politicien}} -{{label|pt|político}} -{{label|sl|politik}} -{{label|ja|政治家}} -{{label|ko|정치인}} - -| rdfs:subClassOf = Person -| owl:equivalentClass = wikidata:Q82955 -}}OntologyClass:PoliticianSpouse2007867518732017-01-21T14:25:50Z{{Class -| labels = -{{label|en|politician spouse}} -{{label|de|Ehepartner eines Politiker}} -{{label|nl|partner van een politicus}} -{{label|el|σύζυγος πολιτικού}} -| rdfs:subClassOf = Person -}}OntologyClass:PoloLeague2002279479322015-05-25T14:51:29Z{{Class -| labels = -{{label|en|polo league}} -{{label|ga|sraith póló}} -{{label|de|Polo-Liga}} -{{label|el|Ομοσπονδία Υδατοσφαίρισης}} -{{label|fr|ligue de polo}} -{{label|nl|polo competitie}} -| comments = -{{comment|en|A group of sports teams that compete against each other in Polo.}} -| rdfs:subClassOf = SportsLeague -}}OntologyClass:Polysaccharide20010411457832015-03-14T10:17:31Z{{Class -| labels = -{{label|en|polysaccharide}} -{{label|de|Polysaccharide}} -{{label|nl|polysacharide}} -| comments = -{{comment|nl|Zijn koolhydraten die zijn opgebouwd uit tien of meer monosacharide-eenheden}} -| rdfs:subClassOf = Biomolecule -}}OntologyClass:Pope200438481322015-05-25T15:14:26Z{{Class -| labels = -{{label|de|Papst}} -{{label|en|pope}} -{{label|ga|pápa}} -{{label|el|πάπας}} -{{label|fr|pape}} -{{label|ko|교황}} -{{label|pl|papież}} -{{label|ja|教皇}} -{{label|nl|paus}} -| rdfs:subClassOf = Cleric -| owl:equivalentClass = wikidata:Q19546 -}}OntologyClass:PopulatedPlace200439521092017-06-19T11:00:38Z{{Class -| labels = -{{label|en|populated place}} -{{label|da|befolket sted}} -{{label|de|bewohnter Ort}} -{{label|el|πυκνοκατοικημένη περιοχή}} -{{label|fr|lieu habité}} -{{label|nl|bebouwde omgeving}} -{{label|ar|تجمع سكاني}} -| comments = -{{comment|en|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).}} -{{comment|el|Πυκνοκατοικημένη περιοχή, είναι η περιοχή ή το μέρος με μεγάλο αριθμό κτιρίων και μεγάλο μόνιμο πληθυσμό, σε σύγκριση με την γεωγραφική περιοχή που καταλαμβάνει (μεγαλούπολη, πόλη ή χωριό). }} -| rdfs:subClassOf = Place -| specificProperties = -{{SpecificProperty | ontologyProperty = populationDensity | unit = inhabitantsPerSquareKilometre }} -{{SpecificProperty | ontologyProperty = populationMetroDensity | unit = inhabitantsPerSquareKilometre }} -{{SpecificProperty | ontologyProperty = populationUrbanDensity | unit = inhabitantsPerSquareKilometre }} -{{SpecificProperty | ontologyProperty = area | unit = squareKilometre }} -{{SpecificProperty | ontologyProperty = areaTotal | unit = squareKilometre }} -{{SpecificProperty | ontologyProperty = areaMetro | unit = squareKilometre }} -{{SpecificProperty | ontologyProperty = areaUrban | unit = squareKilometre }} -}}OntologyClass:Population2007909510862016-05-14T15:21:44Z{{Class -| labels = -{{label|en|population}} -{{label|ga|daonra}} -{{label|de|Bevölkerung}} -{{label|fr|population}} -{{label|el|πληθυσμός}} -{{label|nl|bevolking}} -{{label|ja|人口}} - -| rdfs:subClassOf = owl:Thing -| owl:equivalentClass = wikidata:Q33829 -}}OntologyClass:Port2009442508922016-04-19T11:33:49Z{{Class -| labels = {{label|en|Port}} -{{label|ga|caladh}} -{{label|fr|Port}} -{{label|de|Hafen}} -{{label|nl|haven}} -{{label|ja|港湾}} - -| comments = {{comment|en|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.}} -| rdfs:subClassOf = Infrastructure -| owl:equivalentClass = wikidata:Q44782 -}}OntologyClass:PowerStation2002741482062015-05-25T15:21:51Z{{Class -| labels = - {{label|en|power station}} -{{label|ga|stáisiún cumhachta}} -{{label|de|Kraftwerk}} - {{label|ja|発電所}} - {{label|fr|centrale électrique}} - {{label|el|σταθμός παραγωγής ενέργειας}} - {{label|es|central eléctrica}} - {{label|nl|Elektriciteitscentrale}} -| rdfs:subClassOf = Infrastructure -| owl:equivalentClass = wikidata:Q159719 -}}OntologyClass:Prefecture2007129508932016-04-19T11:34:34Z{{Class -| labels = -{{label|en|prefecture}} -{{label|nl|prefectuur}} -{{label|fr|préfecture}} -{{label|de|Präfektur}} -{{label|el|νομαρχία}} -{{label|ja|県}} - -| rdfs:subClassOf = GovernmentalAdministrativeRegion -| owl:equivalentClass = wikidata:Q515716 -}}OntologyClass:PrehistoricalPeriod2006686483022015-05-25T15:31:06Z{{Class -|labels= -{{label|en|prehistorical period}} -{{label|ga|tréimhse réamhstaire}} -{{label|de|prähistorisch Zeitalter}} -{{label|el|προϊστορική περίοδο}} -{{label|nl|periode in de prehistorie}} -| rdfs:subClassOf = TimePeriod -| owl:disjointWith = Person -| owl:disjointWith = HistoricalPeriod -}}OntologyClass:Presenter2006207504052016-03-04T06:27:21Z{{Class -| labels = -{{label|en|presenter}} -{{label|ga|láithreoir}} -{{label|de|Moderator}} -{{label|el|Παρουσιαστής}} -{{label|nl|presentator}} -{{label|fr|présentateur}} -{{label|ja|司会者}} -| comments = {{comment|en|TV or radio show presenter}} -| rdfs:subClassOf = Person -| owl:equivalentClass = wikidata:Q13590141 -}}OntologyClass:President200440481342015-05-25T15:14:36Z{{Class -| labels = -{{label|en|president}} -{{label|ga|uachtarán}} -{{label|de|Präsident}} -{{label|el|πρόεδρος}} -{{label|fr|président}} -{{label|ko|국가원수}} -{{label|nl|president}} -{{label|pl|prezydent}} -{{label|ja|大統領}} -| rdfs:subClassOf = Politician -| owl:equivalentClass = wikidata:Q30461 -}}OntologyClass:Priest2002665483042015-05-25T15:31:11Z{{Class -| labels = -{{label|en|priest}} -{{label|ga|sagart}} -{{label|de|priester}} -{{label|it|prete}} -{{label|el|παπάς}} -{{label|fr|prêtre}} -{{label|ja|司祭}} -{{label|nl|priester}} -| rdfs:subClassOf = Cleric -| owl:equivalentClass = wikidata:Q42603 -}}OntologyClass:PrimeMinister200441481352015-05-25T15:14:42Z{{Class -| labels = -{{label|en|prime minister}} -{{label|ga|príomh-aire}} -{{label|de|Premierminister}} -{{label|el|πρωθυπουργός}} -{{label|fr|premier ministre}} -{{label|nl|eerste minister}} -{{label|ko|총리}} -| rdfs:subClassOf = Politician -}}OntologyClass:Prison2006358508942016-04-19T11:35:17Z{{Class -| labels = -{{label|it|prigione}} -{{label|en|prison}} -{{label|ga|príosún}} -{{label|de|gefängnis}} -{{label|fr|prison}} -{{label|el|φυλακή}} -{{label|nl|gevangenis}} -{{label|ja|刑務所}} - -| rdfs:subClassOf = Building -| owl:equivalentClass = wikidata:Q40357 -}}OntologyClass:Producer2009433528382018-02-08T20:26:36Z{{Class -| labels = - {{label|en|Producer}} - {{label|da|producent}} - {{label|de|Produzent}} - {{label|fr|Producteur}} - {{label|nl|producent}} - {{label|ja|監督}} -| comments = - {{comment|en|a person who manages movies or music recordings.}} -| rdfs:subClassOf = Person -| owl:equivalentClass = schema:Producer, wikidata:Q3282637 -}}OntologyClass:Profession2008252508982016-04-19T11:39:24Z{{Class -| labels = -{{label|en|profession}} -{{label|ga|gairm}} -{{label|nl|beroep}} -{{label|de|Beruf}} -{{label|el|επάγγελμα}} -{{label|fr|métier}} -{{label|ja|専門職}} -| rdfs:subClassOf = PersonFunction -| owl:equivalentClass = wikidata:Q28640 -}}OntologyClass:Professor2006798509222016-04-22T07:26:59ZOntologyClass:Professor -{{Class -|labels = -{{label|en|professor}} -{{label|de|Professor}} -{{label|el|καθηγητής}} -{{label|fr|professeur}} -{{label|ga|ollamh}} -{{label|nl|professor}} -{{label|pl|profesor}} -{{label|ja|教授}} - -| rdfs:subClassOf = Scientist -| owl:equivalentProperty = wikidata:Q1622272 -}}OntologyClass:ProgrammingLanguage2002920537292020-09-18T07:12:55Z{{Class -| labels = - {{label|fr|langage de programmation}} - {{label|en|programming language}} - {{label|it|linguaggio di programmazione}} - {{label|ga|teanga ríomhchlárúcháin}} - {{label|el|γλώσσα προγραμματισμού}} - {{label|da|programmeringssprog}} - {{label|de|Programmiersprache}} - {{label|pt|linguagem de programação}} - {{label|nl|programmeertaal}} - {{label|ko|프로그래밍 언어}} -| rdfs:subClassOf = Language -| owl:equivalentClass = wikidata:Q9143 -}}OntologyClass:Project2003036528502018-02-08T20:38:57Z{{Class -| labels = - {{label|en|project}} - {{label|ga|tionscadal}} - {{label|de|Projekt}} - {{label|el|σχέδιο}} - {{label|fr|projet}} - {{label|es|proyecto}} - {{label|ja|プロジェクト}} - {{label|nl|project}} -| comments = - {{comment|en|A project is a temporary endeavor undertaken to achieve defined objectives.}} - {{comment|de|Ein Projekt ist ein zeitlich begrenztes Unternehmen, das unternommen wird, um definierte Ziele zu erreichen.}} -| rdfs:subClassOf = UnitOfWork -| owl:equivalentClass = -}}OntologyClass:ProtectedArea200442470442015-03-23T09:50:36Z{{Class -| labels = -{{label|en|protected area}} -{{label|de|Schutzgebiet}} -{{label|nl|beschermd gebied}} -{{label|el|προστατευμένη περιοχή}} -{{label|fr|aire protégée}} -{{label|ja|保護地区}} -| comments = -{{comment|en|This class should be used for protected nature. For enclosed neighbourhoods there is now class GatedCommunity}} -{{comment|nl|Deze klasse duidt gebieden aan met de status 'beschermd'. Is dus eigenlijk ook geen klasse, maar zou een attribuut moeten zijn}} -| rdfs:subClassOf = Place -| owl:equivalentClass = wikidata:Q473972 -}}OntologyClass:Protein200443481382015-05-25T15:15:08Z{{Class -| labels = -{{label|en|protein}} -{{label|ga|próitéin}} -{{label|el|πρωτεΐνη}} -{{label|fr|protéine}} -{{label|pt|proteína}} -{{label|de|Protein}} -{{label|it|proteina}} -{{label|ko|단백질}} -{{label|ja|タンパク質}} -{{label|nl|proteïne}} -| rdfs:subClassOf = Biomolecule -| owl:equivalentClass = wikidata:Q8054 -}}OntologyClass:Protocol20012191535992020-02-24T07:20:20Z{{Class -| labels = -{{label|en|Protocol}} -{{label|de|Protokoll}} -{{label|ru|Протокол}} -| rdfs:subClassOf = owl:Thing -}}OntologyClass:ProtohistoricalPeriod2006689457872015-03-14T10:27:50Z{{Class -|labels= -{{label|en|protohistorical period}} -{{label|de|proto-historisch Zeitalter}} -{{label|nl|periode in de protohistorie}} -| rdfs:subClassOf = TimePeriod -| owl:disjointWith = Person -}}OntologyClass:Province2006560508992016-04-19T11:40:58Z{{Class -| labels = -{{label|en|province}} -{{label|ga|cúige}} -{{label|de|Provinz}} -{{label|fr|province}} -{{label|el|επαρχία}} -{{label|nl|provincie}} -{{label|ja|英語圏の行政区画}} - -| comments = -{{comment|en|An administrative body governing a territorial unity on the intermediate level, between local and national level}} -{{comment|el|Είναι διοικητική δομή του κράτους που διοικεί μια περιοχή που είναι σε έκταση μεγαλύτερη από τοπικό επίπεδο και μικρότερη από εθνικό επίπεδο.}} -| rdfs:subClassOf = GovernmentalAdministrativeRegion -| owl:equivalentClass = -}}OntologyClass:Psychologist2007825483072015-05-25T15:31:28Z{{Class -| labels = -{{label|en|psychologist}} -{{label|ga|síceolaí}} -{{label|nl|psycholoog}} -{{label|de|Psychologe}} -{{label|el|ψυχολόγος}} -| rdfs:subClassOf = Person -| owl:equivalentClass = wikidata:Q212980 -}}OntologyClass:PublicService2006750515232016-09-18T16:28:35Z{{Class -| labels = -{{label|en|public service}} -{{label|nl|staatsapparaat}} -{{label|de|öffentlicher Dienst}} -{{label|el|δημόσιες υπηρεσίες}} -{{label|fr|service public}} -| comments = -{{comment|el|Είναι οι υπηρεσίες που προσφέρονται από δομές του κράτους}} -| rdfs:subClassOf = owl:Thing -| owl:equivalentClass = wikidata:Q161837 -}}OntologyClass:PublicTransitSystem2003621522502017-10-08T09:21:26Z{{Class -| labels = -{{label|en|public transit system}} -{{label|de|Öffentliches Personenverkehrssystem}} -{{label|es|Sistema de Transporte Público}} -{{label|el|μέσα μαζικής μεταφοράς}} -{{label|nl|openbaar vervoer systeem}} -| comments = -{{comment|en|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).}} -{{comment|el|Τα μέσα μαζικής μεταφοράς (συντομογραφία ΜΜΜ) είναι τα δημόσια συγκοινωνιακά μέσα, που περιλαμβάνουν τα λεωφορεία, τα τρόλεϊ, τα τραμ, τα τρένα, το μετρό, τα πλοία. Υπάρχουν και τα ταχεία μέσα συγκοινωνίας που περιλαμβάνουν τα αεροπλάνα, υπερταχεία τρένα.}} -{{comment|de|Ein System des Öffentlichen Personenverkehrs auf Straße, Schiene oder Wasser.}} -| rdfs:subClassOf = Company -}}OntologyClass:Publisher2006193481392015-05-25T15:15:12Z{{Class -| labels = -{{label|en|publisher}} -{{label|ga|foilsitheoir}} -{{label|es|editor}} -{{label|de|Herausgeber}} -{{label|fr|éditeur}} -{{label|el|εκδότης}} -{{label|ja|出版社}} -{{label|nl|uitgever}} -{{label|ko|출판사}} -| comments = {{comment|en|Publishing company}} -| rdfs:subClassOf = Company -}}OntologyClass:Pyramid2009439509002016-04-19T11:41:47Z{{Class -| labels = {{label|en|Pyramid}} -{{label|ga|pirimid}} -{{label|de|Pyramide}} -{{label|fr|Pyramide}} -{{label|nl|pyramide}} -{{label|ja|ピラミッド}} - -| comments = {{comment|en|a structure whose shape is roughly that of a pyramid in the geometric sense.}} -| rdfs:subClassOf = ArchitecturalStructure -| owl:equivalentClass = wikidata:Q12516 -}}OntologyClass:Quote20011222509012016-04-19T11:46:40Z{{Class -| labels = -{{label|en|Quote}} -{{label|de|Zitat}} -{{label|nl|citaat}} -{{label|ja|引用}} - -| rdfs:subClassOf = WrittenWork -| owl:equivalentClass = -}}OntologyClass:Race200444492662015-10-18T11:34:36Z{{Class -| labels = -{{label|de|Rennen}} -{{label|en|race}} -{{label|ga|rás}} -{{label|el|αγώνας}} -{{label|fr|course}} -{{label|ja|レース}} -{{label|nl|race}} -| rdfs:subClassOf = SportsEvent -}}OntologyClass:RaceTrack2005951509372016-04-26T03:06:26Z{{Class -| labels = -{{label|en|race track}} -{{label|ga|rásraon}} -{{label|nl|racecircuit}} -{{label|de|Rennstrecke}} -{{label|el|πίστα αγώνων}} -{{label|fr|circuit de course}} -{{label|ja|サーキットのコース}} -| rdfs:subClassOf = SportFacility -| owl:equivalentClass = wikidata:Q1777138 -}}OntologyClass:Racecourse2007349509022016-04-19T11:48:44Z{{Class -| labels = -{{label|en|racecourse}} -{{label|ga|ráschúrsa}} -{{label|de|Rennbahn}} -{{label|el|ιππόδρομος}} -{{label|it|ippodromo}} -{{label|nl|renbaan}} -{{label|ja|競馬場}} -| comments = -{{comment|en|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.}} -{{comment|el|Ο ιππόδρομος,εναλλακτικός όρος για την πίστα διεξαγωγής αγώνων μεταξύ ίππων,συναντάται σε χώρες όπως η Αγγλία, Αυστραλία, Χονγκ Κονγκ και τα Ηνωμένα Αραβικά Εμιράτα.}} -| rdfs:subClassOf = RaceTrack -| owl:equivalentClass = wikidata:Q1777138 -}}OntologyClass:RacingDriver2006107492682015-10-18T11:37:42Z{{Class -| labels = {{label|en|racing driver}} -{{label|de|Rennfahrer}} -{{label|el|οδηγός αγώνων}} -{{label|nl|coureur}} -| rdfs:subClassOf = MotorsportRacer -| owl:equivalentClass = wikidata:Q378622 -}}OntologyClass:RadioControlledRacingLeague2002183492692015-10-18T11:39:47Z{{Class -| labels = -{{label|en|radio-controlled racing league}} -{{label|de|RC-Renn Liga}} -{{label|fr|ligue de courses radio-télécommandé}} -{{label|nl|radio bestuurbare race competitie}} -| comments = -{{comment|en|A group of sports teams or person that compete against each other in radio-controlled racing.}} -| rdfs:subClassOf = SportsLeague -}}OntologyClass:RadioHost2006208481422015-05-25T15:15:26Z{{Class -| labels = {{label|en|radio host}} -{{label|ga|láithreoir raidió}} -{{label|de|Radiomoderator}} -{{label|el|οικοδεσπότης ραδιοφώνου}} -{{label|nl|radiopresentator}} -| rdfs:subClassOf = Presenter -| owl:equivalentClass = wikidata:Q2722764 -}}OntologyClass:RadioProgram2005847513062016-06-14T06:38:40Z{{Class -| labels = -{{label|en|radio program}} -{{label|ga|clár raidió}} -{{label|de|radio programm}} -{{label|el|ραδιοφωνικό πρόγραμμα}} -{{label|fr|programme de radiodiffusion}} -{{label|it|programma radiofonico}} -{{label|ja|ラジオ番組}} -{{label|nl|radioprogramma}} -| rdfs:subClassOf = Work -| owl:equivalentClass = wikidata:Q1555508 -}}OntologyClass:RadioStation200445481442015-05-25T15:15:36Z{{Class -| labels = -{{label|en|radio station}} -{{label|ga|stáisiún raidió}} -{{label|de|Radiosender}} -{{label|el|ραδιοφωνικός σταθμός}} -{{label|fr|station de radio}} -{{label|es|emisora de radio}} -{{label|ja|ラジオ放送局}} -{{label|nl|radiozender}} -| rdfs:subClassOf = Broadcaster -| owl:equivalentClass = schema:RadioStation -| comments = -{{comment|en|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.}} -{{comment|de|Ein Radiosender hat genau ein Programm, zum Beispiel der Sender NDR Kultur. Nicht zu verwechseln mit der Rundfunkanstalt NDR, welche mehrere Radiosender hat.}} -}}OntologyClass:RailwayLine2003576482382015-05-25T15:24:48Z{{Class -| labels = -{{label|en|railway line}} -{{label|el|σιδηρόδρομος}} -{{label|de|Eisenbahnlinie}} -{{label|nl|spoorlijn}} -{{label|ga|líne iarnróid}} -| rdfs:subClassOf = RouteOfTransportation -| comments = -{{comment|el|O σιδηρόδρομος είναι μια υπηρεσία μεταφοράς επιβατών ή εμπορευμάτων με τρένα που παρέχονται από έναν οργανισμό. Δεν πρέπει να συγχέεται με τη σιδηροδρομική γραμμή, τη δομή που αποτελείται από τις ράγες. Στη Βικιπαίδεια δε γίνεται σαφής διαφοροποίηση μεταξύ των δύο, έτσι υπάρχει ένα κουτί πληροφοριών που περιγράφει ράγες και γραμμές}} -{{comment|en|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.}} -{{comment|de|Eine Eisenbahnlinie im Verkehrswesen ist die regelmäßige Bedienung einer bestimmten Eisenbahnstrecke durch öffentliche Verkehrsmittel.}} -| owl:equivalentClass = wikidata:Q728937 -}}OntologyClass:RailwayStation2005826481172015-05-25T15:12:54Z{{Class -| labels = -{{label|en|railway station}} -{{label|de|Bahnhof}} -{{label|en|train station}} -{{label|fr|gare}} -{{label|nl|treinstation}} -{{label|el|σιδηροδρομικός σταθμός}} -{{label|it|stazione ferroviaria}} -{{label|ga|stáisiún traenach}} -{{label|ja|鉄道駅}} -| rdfs:subClassOf = Station -| owl:equivalentClass = wikidata:Q55488 -}}OntologyClass:RailwayTunnel2003391482302015-05-25T15:24:03Z{{Class -| labels = -{{label|en|railway tunnel}} -{{label|el|σιδηροδρομική σήραγγα}} -{{label|de|Eisenbahntunnel}} -{{label|nl|spoorwegtunnel}} -{{label|ga|tollán iarnróid}} -| rdfs:subClassOf = RouteOfTransportation -| owl:equivalentClass = wikidata:Q1311958 -}}OntologyClass:RallyDriver2007971515082016-09-18T10:23:06Z{{Class -| labels = -{{label|en|rally driver}} -{{label|nl|rallycoureur}} -{{label|el|οδηγός ράλι}} -{{label|de|Rallyefahrer}} -| rdfs:subClassOf = RacingDriver -| comments = -{{comment|el|Ο οδηγός ράλι χρησιμοποιείται για να περιγράψει άνδρα που λαμβάνει μέρος σε αγώνες αυτοκινήτων ειδικής κατηγορίας}} -| owl:equivalentClass = wikidata:Q10842936 -}}OntologyClass:Rebellion20010196509032016-04-19T11:49:25Z{{Class -| labels = -{{label|en|rebellion}} -{{label|de|Aufstand}} -{{label|fr|révolte}} -{{label|nl|opstand}} -{{label|ja|反乱}} - -| rdfs:subClassOf = SocietalEvent -}}OntologyClass:RecordLabel200446481452015-05-25T15:15:49Z{{Class -|labels= -{{label|en|record label}} -{{label|ga|lipéad ceoil}} -{{label|de|Plattenlabel}} -{{label|el|δισκογραφική}} -{{label|fr|label discographique}} -{{label|nl|platenlabel}} -| rdfs:subClassOf = Company -| owl:equivalentClass = wikidata:Q18127 -}}OntologyClass:RecordOffice2008405467522015-03-21T18:02:09Z{{Class -| labels = -{{label|en|Record Office}} -{{label|de|Amtsarchiv}} -{{label|nl|Archiefinstelling}} -| rdfs:subClassOf = Non-ProfitOrganisation -}}OntologyClass:Referee2004787509042016-04-19T11:49:55Z{{Class -|labels = - {{label|en|referee}} -{{label|ga|réiteoir}} - {{label|el|διαιτητής}} - {{label|es|árbitro}} - {{label|nl|scheidsrechter}} - {{label|de|schiedsrichter}} - {{label|it|arbitro}} - {{label|fr|arbitre}} - {{label|ja|審判員}} - -| rdfs:subClassOf = Person -| comments = - {{comment|en|An official who watches a game or match closely to ensure that the rules are adhered to.}} -}}OntologyClass:Reference20011278509052016-04-19T11:51:25Z{{Class -| labels = -{{label|en|Reference}} -{{label|el|αναφορά}} -{{label|de|Referenz}} -{{label|nl|Verwijzing}} -{{label|ja|参考文献}} -| comments = -{{comment|en|Reference to a work (book, movie, website) providing info about the subject}} -{{comment|nl|Verwijzing naar een plaats in een boek of film}} -| rdfs:subClassOf = Annotation -}}OntologyClass:Regency2006772509062016-04-19T11:52:13Z{{Class -| labels = -{{label|en|regency}} -{{label|nl|regentschap (regering)}} -{{label|el|αντιβασιλεία}} -{{label|de|Regentschaft}} -{{label|id|kabupaten}} -{{label|ja|摂政}} - -| comments = -{{comment|id|bagian wilayah administratif dibawah provinsi}} -| rdfs:subClassOf = GovernmentalAdministrativeRegion -}}OntologyClass:Region2007221509282016-04-22T08:03:37Z{{Class -| labels = -{{label|en|region}} -{{label|ga|réigiún}} -{{label|fr|région}} -{{label|el|περιοχή}} -{{label|de|Region}} -{{label|nl|regio}} -{{label|ja|地域}} -| rdfs:subClassOf = PopulatedPlace -| owl:equivalentClass = wikidata:Q3455524 -}}OntologyClass:Reign20011941527092017-12-27T14:25:40Z{{Class -|labels= -{{label|en|reign}} -{{label|nl|regentschap}} -{{label|de|Regentschaft}} -{{label|fr|règne}} -| rdfs:subClassOf = TimePeriod -}}OntologyClass:Relationship20011767518082017-01-06T15:19:44Z{{Class -| labels = -{{label|en|Relationship}} -{{label|ru|Отношение}} -| rdfs:subClassOf = owl:Thing -}}OntologyClass:Religious2006195463282015-03-18T17:42:59Z{{Class -| labels = {{label|en|religious}} -{{label|de|religiös}} -{{label|fr|religieux}} -{{label|el|θρησκευτικός}} -{{label|nl|religieus}} -| rdfs:subClassOf = Person -| owl:equivalentClass = wikidata:Q2566598 -}}OntologyClass:ReligiousBuilding2005768521242017-06-19T11:13:14Z{{Class -|labels = - {{label|en|religious building}} - {{label|el|θρησκευτικό κτίριο}} -{{label|da|religiøs bygning}} -{{label|de|religiöses Gebäude}} - {{label|it|edificio religioso}} - {{label|ja|宗教建築}} - {{label|fr|édifice religieux}} - {{label|es|edificio religioso}} - {{label|nl|cultusgebouw}} - {{label|ko|종교 건물}} -| comments = -|{{comment|en|An establishment or her location where a group of people (a congregation) comes to perform acts of religious study, honor, or devotion.<ref>http://en.wikipedia.org/wiki/Religious_building</ref>}} -| rdfs:subClassOf = Building -| owl:equivalentClass = wikidata:Q1370598 -}} -==References== -<references/>OntologyClass:ReligiousOrganisation20010298457922015-03-14T10:40:01Z{{Class -| labels = - {{label|en|religious organisation}} - {{label|de|Religionsorganisation}} - {{label|nl|kerkelijke organisatie}} - {{label|es|organización religiosa}} -| rdfs:comment = Formal organisation or organised group of believers -| rdfs:subClassOf = Organisation -| owl:disjointWith = Person -| owl:disjointWith = wgs84_pos:SpatialThing -}}OntologyClass:Reptile200447481472015-05-25T15:15:58Z{{Class -| labels = -{{label|en|reptile}} -{{label|ga|reiptíl}} -{{label|de|reptil}} -{{label|el|ερπετό}} -{{label|fr|reptile}} -{{label|ja|爬虫類}} -{{label|nl|reptiel}} -| rdfs:subClassOf = Animal -}}OntologyClass:ResearchProject2003040479882015-05-25T14:59:33Z{{Class -|labels= -{{label|en|research project}} -{{label|ga|tionscadal taighde}} -{{label|de|Forschungsprojekt}} -{{label|el|ερευνητικό έργο}} -{{label|es|proyecto de investigación}} -{{label|fr|projet de recherche}} -{{label|nl|onderzoeksproject}} -| rdfs:subClassOf = Project -|comments= -{{comment|en|A research project is a scientific investigation, usually using scientific methods, to achieve defined objectives.}} -{{comment|el|Ένα ερευνητικό έργο είναι μια επιστημονική έρευνα, συνήθως με τη χρήση επιστημονικών μεθόδων, για την επίτευξη των καθορισμένων στόχων.}} -| owl:equivalentClass = wikidata:Q1298668 -}}OntologyClass:RestArea20011139471352015-03-24T08:15:45Z{{Class -| labels = -{{label|en|rest area}} -{{label|nl|rustplaats}} -{{label|de|Rasthof}} -| comments = -{{Comment|en|A rest area is part of a Road, meant to stop and rest. More often than not, there is a filling station}} -| rdfs:subClassOf = Infrastructure -}}OntologyClass:Restaurant2002523474842015-04-01T19:15:07Z{{Class -| labels = -{{label|en|restaurant}} -{{label|de|Restaurant}} -{{label|el|εστιατόριο}} -{{label|fr|restaurant}} -{{label|ga|bialann}} -{{label|ja|レストラン}} -{{label|nl|restaurant}} -{{label|pl|restauracja}} -| rdfs:subClassOf = Building -| owl:equivalentClass = schema:Restaurant, wikidata:Q11707 -}}OntologyClass:Resume2007167509092016-04-19T11:56:06Z{{Class -| labels = -{{label|en|Resume}} -{{label|de|Lebenslauf}} -{{label|el|Βιογραφικό σημείωμα}} -{{label|nl|CV}} -{{label|ja|職務経歴書}} -| comments = -{{comment|en|A Resume describes a persons work experience and skill set.}} -{{comment|nl|Een CV (curriculum vitae) beschrijft iemands werkervaring en vaardigheden.}} -| rdfs:subClassOf = WrittenWork -}}OntologyClass:River2002286498502015-12-17T20:24:34Z{{Class -| labels = -{{label|en|river}} -{{label|ga|abhainn}} -{{label|nl|rivier}} -{{label|el|ποτάμι}} -{{label|de|Fluss}} -{{label|fr|rivière}} -{{label|pt|rio}} -{{label|ko|강}} -{{label|ja|川}} -| comments = -{{comment|en|a large natural stream}} -| rdfs:subClassOf = Stream -| owl:equivalentClass = schema:RiverBodyOfWater, wikidata:Q4022 -}}OntologyClass:Road200449474832015-04-01T19:12:41Z{{Class -| labels = -{{label|en|road}} -{{label|ca|carretera}} -{{label|de|Straße}} -{{label|el|δρόμος}} -{{label|es|carretera}} -{{label|fr|route}} -{{label|ga|bóthar}} -{{label|ja|道路}} -{{label|ko|도로}} -{{label|nl|weg}} -{{label|pl|droga}} -| rdfs:subClassOf = RouteOfTransportation -| owl:equivalentClass = wikidata:Q34442 -}}OntologyClass:RoadJunction2003380479782015-05-25T14:58:25Z{{Class -| labels = -{{label|en|road junction}} -{{label|ga|acomhal bóithre}} -{{label|de|Straßenkreuzung}} -{{label|nl|wegkruising}} -| comments = -{{comment|en|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).}} -{{comment|de|Eine Straßenkreuzung ist eine Stelle, an der sich zwei oder mehrere Straßen kreuzen (http://de.wikipedia.org/wiki/Stra%C3%9Fenkreuzung).}} -| rdfs:subClassOf = RouteOfTransportation -}}OntologyClass:RoadTunnel2003390479962015-05-25T15:00:20Z{{Class -| labels = -{{label|en|road tunnel}} -{{label|ga|tollán bóthair}} -{{label|el|Οδική σήραγγα}} -{{label|de|Straßentunnel}} -{{label|nl|wegtunnel}} -| rdfs:subClassOf = RouteOfTransportation -| owl:equivalentClass = wikidata:Q2354973 -}}OntologyClass:Robot20012190535472019-07-31T14:56:32Z{{Class -| labels = -{{label|en|Robot}} -{{label|nl|Robot}} -{{label|ru|Робота}} -| rdfs:subClassOf = Device -}}OntologyClass:Rocket200450481492015-05-25T15:16:07Z{{Class -| labels = -{{label|en|rocket}} -{{label|ga|roicéad}} -{{label|el|πύραυλος}} -{{label|de|Rakete}} -{{label|fr|fusée}} -{{label|ko|로켓}} -{{label|ja|ロケット}} -{{label|nl|raket}} -| rdfs:subClassOf = MeanOfTransportation -| specificProperties = {{SpecificProperty | ontologyProperty = mass | unit = kilogram }} - {{SpecificProperty | ontologyProperty = lowerEarthOrbitPayload | unit = kilogram }} -| owl:equivalentClass = wikidata:Q41291 -}}OntologyClass:RocketEngine20011127468552015-03-22T10:05:26Z{{Class -| labels = -{{label|en|rocket engine}} -{{label|nl|raketmotor}} -{{label|de|Raketmotor}} -| rdfs:subClassOf = Engine -}}OntologyClass:RollerCoaster2008004479402015-05-25T14:54:30Z{{Class -| labels = -{{label|de|Achterbahn}} -{{label|en|roller coaster}} -{{label|ga|rollchóstóir}} -{{label|it|montagne russe}} -{{label|nl|achtbaan}} -{{label|el|τρενάκι σε λούνα παρκ}} -| rdfs:subClassOf = AmusementParkAttraction -}}OntologyClass:RomanEmperor2007634511292016-05-29T20:10:37Z{{Class -| labels= -{{label|en|roman emperor}} -{{label|de|römischer Kaiser}} -{{label|el|ρωμαίος αυτοκράτορας}} -{{label|fr|empereur romain}} -{{label|nl|Romeinse keizer}} -| rdfs:subClassOf = Person -| owl:equivalentClass = wikidata:Q842606 -}}OntologyClass:RouteOfTransportation2003256481602015-05-25T15:17:22Z{{Class -| labels = -{{label|en|route of transportation}} -{{label|de|Transportweg}} -{{label|es|Vía de transporte}} -| comments = -{{comment|en|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).}} -{{comment|de|Unter Transportwegen (Verkehrswegen) versteht man Verkehrswege, auf denen Güter oder Personen transportiert werden. Dabei unterscheidet man zwischen Transportwegen zu Luft, zu Wasser und zu Lande, die dann für die unterschiedliche Verkehrsarten genutzt werden (http://de.wikipedia.org/wiki/Transportweg).}} -| rdfs:subClassOf = Infrastructure -}}OntologyClass:RouteStop20011076531802018-08-19T09:57:44Z{{Class -| labels = - {{label|en|route stop}} - {{label|nl|halte}} - {{label|de|Haltestelle}} - {{label|fr|étape}} -| comments = - {{comment|en|designated place where vehicles stop for passengers to board or alight}} - {{comment|de|Betriebsstelle im öffentlichen Verkehr, an denen Fahrgäste ein- und aussteigen}} - {{comment|fr|une étape ou un arrêt sur une route}} -| rdfs:subClassOf = Station -}}OntologyClass:Rower2008382509102016-04-19T11:57:35Z{{Class -| labels = -{{label|en|rower}} -{{label|ga|rámhaí}} -{{label|el|κωπηλάτης}} -{{label|de|Ruderer}} -{{label|it|canottiere}} -{{label|nl|roeier}} -{{label|ja|漕艇選手}} -| rdfs:subClassOf = Athlete -| owl:equivalentClass = wikidata:Q13382576 -}}OntologyClass:Royalty2004211468272015-03-21T22:16:25Z{{Class -| labels = -{{label|en|royalty}} -{{label|de|Königtum}} -{{label|el|γαλαζοαίματος}} -{{label|es|realeza}} -{{label|fr|royauté}} -{{label|sl|kraljevska oseba}} -{{label|ja|王室}} -{{label|nl|lid koningshuis}} -{{label|ko|왕족}} -| rdfs:subClassOf = Person -}}OntologyClass:RugbyClub2005229530182018-03-14T11:44:29Z{{Class -| labels = -{{label|en|rugby club}} -{{label|ga|club rugbaí}} -{{label|el|ομάδα ράγκμπι}} -{{label|de|Rugby-Club}} -{{label|fr|club de rugby}} -{{label|nl|rugby club}} -| rdfs:subClassOf = SportsClub -}}OntologyClass:RugbyLeague2002184481522015-05-25T15:16:34Z{{Class -| labels = -{{label|en|rugby league}} -{{label|ga|sraith rugbaí}} -{{label|de|Rugby-Liga}} -{{label|el|πρωτάθλημα rugby}} -{{label|fr|ligue de rugby}} -{{label|nl|rugby competitie}} -| comments = -{{comment|en|A group of sports teams that compete against each other in rugby.}} -| rdfs:subClassOf = SportsLeague -| owl:equivalentClass = wikidata:Q10962 -}}OntologyClass:RugbyPlayer200451481532015-05-25T15:16:38Z{{Class -|labels= -{{label|en|rugby player}} -{{label|ga|imreoir rugbaí}} -{{label|de|Rugbyspieler}} -{{label|el|παίκτης rugby}} -{{label|fr|joueur de rugby}} -{{label|nl|rugbyspeler}} -| rdfs:subClassOf = Athlete -| owl:equivalentClass = wikidata:Q13415036 -}}OntologyClass:Saint200452481542015-05-25T15:16:43Z{{Class -| labels = -{{label|en|saint}} -{{label|ga|naomh}} -{{label|de|Heilige}} -{{label|nl|heilige}} -{{label|fr|saint}} -{{label|ko|성인}} -{{label|ja|聖人}} -{{label|el|Πληροφορίες Αγίου}} -| rdfs:subClassOf = Cleric -| owl:equivalentClass = wikidata:Q43115 -}}OntologyClass:Sales200453528512018-02-08T20:39:21Z{{Class -| labels = - {{label|en|sales}} - {{label|ga|díolacháin}} - {{label|nl|verkoop}} - {{label|de|Vertrieb}} - {{label|el|εκπτώσεις}} - {{label|fr|vente}} - {{label|ja|販売}} -| rdfs:subClassOf = Activity -| owl:equivalentClass = wikidata:Q194189 -}}OntologyClass:SambaSchool2005701394882015-01-20T13:53:24Z{{Class -| labels = -{{label|en| samba school}} -{{label|de|Sambaschule}} -{{label|es| escuela de samba}} -{{label|el|σχολή σάμπα}} -{{label|nl| samba school}} -{{label|pt | escola de samba}} -| rdfs:subClassOf = Organisation -}}OntologyClass:Satellite2009369510872016-05-14T15:23:04Z{{Class -| labels = -{{label|en|Satellite}} -{{label|fr|satellite}} -{{label|ga|satailít}} - {{label|nl|satelliet}} - {{label|de|Satellite}} - {{label|el|δορυφόρος}} -| comments = -{{comment|en|An astronomic object orbiting around a planet or star. Definition partly derived from http://www.ontotext.com/proton/protonext# (and thus WordNet 1.7).}} -{{comment|el|Ένα αστρονομικό αντικείμενο που βρίσκεται σε τροχιά γύρω από έναν πλανήτη ή αστέρι.}} -| rdfs:subClassOf = CelestialBody -<!-- | owl:equivalentClass = http://www.ontotext.com/proton/protonext#Satellite --> -}}OntologyClass:School200636521422017-06-27T11:10:50Z{{Class -| labels = -{{label|en|school}} -{{label|da|skole}} -{{label|de|Schule}} -{{label|el|σχολείο}} -{{label|es|escuela}} -{{label|fr|école}} -{{label|ga|scoil}} -{{label|it|scuola}} -{{label|ja|学校}} -{{label|ko|학교}} -{{label|nl|school}} -{{label|pl|szkoła}} -{{label|pt|escola}} -| rdfs:subClassOf = EducationalInstitution -| owl:equivalentClass = schema:School, wikidata:Q3914 -| specificProperties = - {{SpecificProperty | ontologyProperty = campusSize | unit = squareKilometre }} -}}OntologyClass:ScientificConcept2009719469912015-03-22T19:11:17Z{{Class -| labels = {{label|en|Scientific concept}} - {{label|de|wissenschaftliche Theorie}} - {{label|nl|wetenschappelijke theorie}} -| comments = {{comment|en|Scientific concepts, e.g. Theory of relativity, Quantum gravity}} -| rdfs:subClassOf = TopicalConcept -}}OntologyClass:Scientist200454481572015-05-25T15:16:58Z{{Class -| labels = -{{label|en|scientist}} -{{label|ga|eolaí}} -{{label|nl|wetenschapper}} -{{label|el|Επιστήμονας}} -{{label|de|Wissenschaftler}} -{{label|fr|scientifique}} -{{label|ko|과학자}} -{{label|bn|বিজ্ঞানী}} -{{label|ja|科学者}} -| rdfs:subClassOf = Person -| owl:equivalentClass = wikidata:Q901 -}}OntologyClass:ScreenWriter2008344481582015-05-25T15:17:03Z{{Class -| labels = -{{label|en|screenwriter}} -{{label|ga|scríbhneoir scáileáin}} -{{label|fr|scénariste}} -{{label|de|Drehbuchautor}} -{{label|el|σεναριογράφος}} -{{label|it|sceneggiatore}} -{{label|nl|scenarioschrijver}} -| comments = -{{comment|el|Ο σεναριογράφος όχι μόνο γράφει την υπόθεση μιας σειράς άλλα είναι αυτός που επινοεί και τους πρωταγωνιστές του έργου.}} -| rdfs:subClassOf = Writer -| owl:equivalentClass = wikidata:Q28389 -}}OntologyClass:Sculptor2006462509392016-04-26T03:22:45Z{{Class -| labels = -{{label|en|sculptor}} -{{label|ga|dealbhóir}} -{{label|el|γλύπτης}} -{{label|de|Bildhauer}} -{{label|fr|sculpteur}} -{{label|nl|beeldhouwer}} -{{label|ja|彫刻家}} -| rdfs:subClassOf = Artist -}}OntologyClass:Sculpture2002683509402016-04-26T03:23:15Z{{Class -|labels= -{{label|en|Sculpture}} -{{label|de|Skulptur}} -{{label|it|scultura}} -{{label|el|Γλυπτική}} -{{label|fr|sculpture}} -{{label|nl|beeldhouwwerk}} -{{label|ja|彫刻}} - -| rdfs:subClassOf = Artwork -| owl:equivalentClass = schema:Sculpture -|comments= -{{comment|en|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.}} -{{comment|el|Γλυπτική είναι τρισδιάστατο έργο τέχνης το οποίο δημιουργήθηκε από τη διαμόρφωση ή συνδυάζοντας σκληρά υλικά, τυπικώς πέτρα όπως μάρμαρο, μέταλλο, γυαλί, ή ξύλο, ή πλαστικά υλικά όπως άργιλος, υφάσματα, πολυμερή και μαλακότερα μέταλλα.}} -{{comment|nl|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.}} -}}OntologyClass:Sea2006754498452015-12-17T20:08:23Z{{Class -|labels = -{{label|en|sea}} -{{label|ga|farraige}} -{{label|el|θάλασσα}} -{{label|fr|mer}} -{{label|de|Meer}} -{{label|nl|zee}} -{{label|pt|mar}} -{{label|ja|海}} -| rdfs:subClassOf = BodyOfWater -| owl:equivalentClass = schema:SeaBodyOfWater -}}OntologyClass:Senator200455509412016-04-26T03:24:25Z{{Class -| labels = -{{label|en|senator}} -{{label|ga|seanadóir}} -{{label|de|Senator}} -{{label|el| γερουσιαστής}} -{{label|fr|sénateur}} -{{label|es|senador}} -{{label|nl|senator}} -{{label|ja|上院議員}} -| rdfs:subClassOf = Politician -}}OntologyClass:SerialKiller2008089519362017-02-20T18:52:39Z{{Class -| labels = -{{label|en|serial killer}} -{{label|de|Serienmörder}} -{{label|el|κατά συρροήν δολοφόνος}} -{{label|nl|seriemoordenaar}} -{{label|fr|tueur en série}} -| rdfs:subClassOf = Murderer -| owl:equivalentClass = wikidata:Q484188 -}}OntologyClass:Settlement200412514352016-08-16T07:23:52Z{{Class -| labels = -{{label|en|settlement}} -{{label|ga|bardas}} -{{label|de|Siedlung}} -{{label|nl|nederzetting}} -{{label|fr|zone peuplée}} -{{label|el|οικισμός}} -{{label|ja|居住地}} -| rdfs:subClassOf = PopulatedPlace -| owl:equivalentClass = wikidata:Q486972 -}}OntologyClass:Ship200456528182018-02-08T19:56:47Z{{Class -| labels = -{{label|en|ship}} -{{label|ga|árthach}} -{{label|de|Schiff}} -{{label|el|πλοίο}} -{{label|fr|navire}} -{{label|pl|statek}} -{{label|es|barco}} -{{label|ko|배}} -{{label|ja|舩}} -{{label|nl|schip}} -| rdfs:subClassOf = MeanOfTransportation, schema:Product -| owl:equivalentClass = wikidata:Q11446 -}} -<!-- -->OntologyClass:ShoppingMall200457479792015-05-25T14:58:30Z{{Class -|labels= -{{label|en|shopping mall}} -{{label|ga|ionad siopadóireachta}} -{{label|de|Einkaufszentrum}} -{{label|el|εμπορικό κέντρο}} -{{label|ja|ショッピングモール}} -{{label|fr|centre commercial}} -{{label|nl|winkelcentrum}} -{{label|pt|shopping}} -{{label|ko|쇼핑몰}} -| rdfs:subClassOf = Building -| owl:equivalentClass = schema:ShoppingCenter, wikidata:Q11315 -}}OntologyClass:Shrine2006662514332016-08-09T07:29:45Z{{Class -| labels = -{{label|en|shrine}} -{{label|el|βωμός}} -{{label|de|schrein}} -{{label|it|santuario}} -{{label|ja|神社}} -{{label|nl|heiligdom}} -{{label|fr|sanctuaire}} - -| rdfs:subClassOf = ReligiousBuilding -| owl:equivalentClass = wikidata:Q697295 -}}OntologyClass:Singer2009427509432016-04-26T03:26:29Z{{Class -| labels = {{label|en|Singer}} -{{label|ga|amhránaí}} -{{label|de|Sänger}} -{{label|el|Τραγουδιστής}} -{{label|fr|chanteur}} -{{label|nl|zanger}} -{{label|ja|歌手}} -| comments = {{comment|en|a person who sings.}} -{{comment|el|ένα άτομο που τραγουδά.}} -| rdfs:subClassOf = MusicalArtist -| owl:equivalentClass = wikidata:Q177220 -}}OntologyClass:Single200458481622015-05-25T15:17:26Z{{Class -| labels = -{{label|en|single}} -{{label|ga|singil}} -{{label|de|Single}} -{{label|fr|single}} -{{label|el|single}} -{{label|ko|싱글}} -{{label|ja|シングル}} -{{label|nl|single}} -| comments = -{{comment|en|In music, a single or record single is a type of release, typically a recording of fewer tracks than an LP or a CD.}} -| rdfs:subClassOf = MusicalWork -| owl:equivalentClass = wikidata:Q134556 -}}OntologyClass:SiteOfSpecialScientificInterest200459518712017-01-21T14:21:56Z{{Class -| labels = -{{label|en|Site of Special Scientific Interest}} -{{label|ga|Láithreán Sainspéis Eolaíochta}} -{{label|de|wissenschaftliche Interessenvertretung für Denkmalschutz}} -{{label|el|Τοποθεσία Ειδικού Επιστημονικού Ενδιαφέροντος}} -{{label|fr|site d'intérêt scientifique particulier}} -{{label|ja|自然保護協会特別指定地区}} -{{label|nl|plaats met bijzonder wetenschappelijk belang}} -| comments = -{{comment|en|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.}} -| rdfs:subClassOf = Place -| owl:equivalentClass = wikidata:Q422211 -}}OntologyClass:Skater2007325509442016-04-26T03:27:14Z{{Class -| labels = -{{label|en|skater}} -{{label|ga|scátálaí}} -{{label|el|παγοδρόμος}} -{{label|de|Schlittschuhläufer}} -{{label|it|pattinatore}} -{{label|nl|schaatser}} -{{label|ja|スケート選手}} -| rdfs:subClassOf = WinterSportPlayer -| owl:equivalentClass = wikidata:Q847400 -}}OntologyClass:SkiArea200460486022015-08-05T16:14:14Z{{Class -| labels = -{{label|en|ski area}} -{{label|ga|láthair sciála}} -{{label|de|Skigebiet}} -{{label|fr|domaine skiable}} -{{label|el|Περιοχή Χιονοδρομίας}} -{{label|ja|スキー場}} -{{label|nl|skigebied}} -| rdfs:subClassOf = SportFacility -| owl:equivalentClass = schema:SkiResort -}}OntologyClass:SkiResort2007184486032015-08-05T16:14:43Z{{Class -| labels = -{{label|en|ski resort}} -{{label|ga|baile sciála}} -{{label|el|θέρετρο σκι}} -{{label|de|Skigebiet}} -{{label|nl|skioord}} -{{label|fr|station de ski}} -| rdfs:subClassOf = SkiArea -| comments = -{{comment|el|Το θέρετρο σκι χρησιμοποιείται για να περιγράψει έναν τόπο διακοπών με τις απαραίτητες εγκαταστάσεις διαμονής και εξάσκησης του χειμερινού αθλήματος της χιονοδρομίας}} -| owl:equivalentClass = wikidata:Q130003 -}}OntologyClass:Ski jumper20011177514972016-09-16T19:09:33Z{{Class -| labels = -{{label|en|ski jumper}} -{{label|de|Skispringer}} -{{label|nl|skispringer}} -| rdfs:subClassOf = WinterSportPlayer -<!-- | owl:equivalentClass = wikidata:Q15117302 --> -}}OntologyClass:Skier2006213481652015-05-25T15:17:41Z{{Class -| labels = {{label|en|skier}} -{{label|ga|sciálaí}} -{{label|fr|skieur}} -{{label|de|skifahrer}} -{{label|it|sciatore}} -{{label|el|σκιέρ}} -{{label|ja|スキーヤー}} -{{label|nl|skiër}} -| rdfs:subClassOf = WinterSportPlayer -| owl:equivalentClass = wikidata:Q4270517 -}}OntologyClass:Skos:Concept2001626471242015-03-23T16:36:13Z{{Class -| labels = -{{label|en|Concept}} -{{label|el|Έννοια}} -{{label|fr|Concept}} -{{label|de|Konzept}} -{{label|it|Concetto}} -{{label|ja|コンセプト}} -{{label|nl|concept}} -| rdfs:subClassOf = owl:Thing -}}OntologyClass:Skos:OrderedCollection2006328458432015-03-14T20:01:24Z{{Class -|rdfs:label@en = Ordered Collection -|rdfs:label@de = Ordered Collection -|rdfs:label@el = Διατεταγμένη Συλλογή -|rdfs:label@nl = Volgordelijke verzameling -}}OntologyClass:Skyscraper200461479862015-05-25T14:59:11Z{{Class -| labels = -{{label|en|skyscraper}} -{{label|ga|ilstórach}} -{{label|nl|wolkenkrabber}} -{{label|el|ουρανοξύστης}} -{{label|fr|gratte-ciel}} -{{label|de|Wolkenkratzer}} -{{label|de|Hochhaus}} -{{label|ko|초고층 건물}} -{{label|ja|超高層建築物}} -| rdfs:subClassOf = Building -| owl:equivalentClass = wikidata:Q11303 -}}OntologyClass:SnookerChamp2003543515142016-09-18T11:32:22Z{{Class -| rdfs:label@en = snooker world champion -| rdfs:label@nl = wereldkampioen snooker -| rdfs:label@de = Snookerweltmeister -| rdfs:label@ga = curadh domhanda sa snúcar -| rdfs:comment@en = An athlete that plays snooker and won the world championship at least once -| rdfs:comment@de = Ein Sportler der Snooker spielt und mindestens einmal die Weltmeisterschaft gewonnen hat -| rdfs:subClassOf = SnookerPlayer -}}OntologyClass:SnookerPlayer2003533479812015-05-25T14:58:48Z{{Class -| labels = -{{label|en|snooker player}} -{{label|ga|imreoir snúcair}} -{{label|de|Snookerspieler}} -{{label|nl|biljarter}} -| rdfs:comment@en = An athlete that plays snooker, which is a billard derivate -| rdfs:comment@de = Ein Sportler der Snooker spielt, eine bekannte Billardvariante -| rdfs:subClassOf = Athlete -}}OntologyClass:SnookerWorldRanking2004220470712015-03-23T11:50:45Z{{Class -| labels = -{{label|en|snooker world ranking}} -{{label|de|Snookerweltrangliste}} -{{label|nl|wereldranglijst snooker}} -| comments = -{{comment|en|The official world ranking in snooker for a certain year/season}} -{{comment|de|Die offizielle Weltrangliste im Snooker eines Jahres / einer Saison}} -| rdfs:subClassOf = SportCompetitionResult <!-- dul:Role --> -}}OntologyClass:SoapCharacter2006096481662015-05-25T15:17:45Z{{Class -| labels = -{{label|en|soap character}} -{{label|ga|carachtar i sobaldráma}} -{{label|de|Soapoper Charakter}} -{{label|el|χαρακτήρας σαπουνόπερας}} -{{label|nl|soap karakter}} -| rdfs:subClassOf = FictionalCharacter -}}OntologyClass:SoccerClub200462530172018-03-14T11:42:47Z{{Class -| labels = -{{label|en|soccer club}} -{{label|ca|club de futbol}} -{{label|da|fodboldklub}} -{{label|de|Fußballverein}} -{{label|el|ομάδα ποδοσφαίρου}} -{{label|es|equipo de fútbol}} -{{label|fr|club de football}} -{{label|ga|club sacair}} -{{label|nl|voetbalclub}} -{{label|pl|klub piłkarski}} -| rdfs:subClassOf = SportsClub -| owl:equivalentClass = wikidata:Q476028 -}}OntologyClass:SoccerClubSeason2005043492762015-10-18T12:07:06Z{{Class -| labels = -{{label|en|soccer club season}} -{{label|de|Fußballverein Saison}} -{{label|nl|voetbalseizoen}} -| rdfs:subClassOf = SportsTeamSeason -}}OntologyClass:SoccerLeague2002280504152016-03-04T06:40:12Z{{Class -| labels = -{{label|en|soccer league}} -{{label|ga|sraith sacair}} -{{label|de|Fußball Liga}} -{{label|el|Ομοσπονδία Ποδοσφαίρου}} -{{label|fr|ligue de football}} -{{label|nl|voetbal competitie}} -{{label|ja|サッカーリーグ}} -| comments = -{{comment|en|A group of sports teams that compete against each other in soccer.}} -| rdfs:subClassOf = SportsLeague -}}OntologyClass:SoccerLeagueSeason2004571492792015-10-18T12:11:11Z{{Class -| labels = -{{label|en|soccer league season}} -{{label|de|Fußball-Liga Saison}} -{{label|el|περίοδος κυπέλλου ποδοσφαίρου}} -{{label|tr|futbol ligi sezonu}} -{{label|nl|voetbalseizoen}} -| rdfs:subClassOf = SportsTeamSeason -}}OntologyClass:SoccerManager200368504132016-03-04T06:39:27Z{{Class -| rdfs:label@en = soccer manager -| rdfs:label@ga = bainisteoir sacair -| rdfs:label@de = Fußballmanager -| rdfs:label@el = προπονητής ποδοσφαίρου -| rdfs:label@es = gerente de fútbol -| rdfs:label@fr = entraîneur de football -| rdfs:label@nl = voetbalmanager -| rdfs:label@ja = サッカーマネージャー -| rdfs:subClassOf = SportsManager -| owl:equivalentClass = wikidata:Q628099 -}}OntologyClass:SoccerPlayer200463537352020-09-25T19:53:14Z{{Class -| labels = -{{label|en|soccer player}} -{{label|ga|imreoir sacair}} -{{label|it|calciatore}} -{{label|da|fodboldspiller}} -{{label|de|Fußballspieler}} -{{label|nl|voetballer}} -{{label|el|παίχτης ποδοσφαίρου}} -{{label|fr|joueur de football}} -{{label|es|futbolista}} -{{label|ko|축구 선수}} -{{label|ja|サッカー選手}} -| rdfs:subClassOf = Athlete -| owl:equivalentClass = wikidata:Q937857 -}}OntologyClass:SoccerTournament2004577504142016-03-04T06:39:49Z{{Class -| labels = -{{label|en|soccer tournoment}} -{{label|ga|comórtas sacair}} -{{label|de|Fußballturnier}} -{{label|el|τουρνουά ποδοσφαίρου}} -{{label|pt|campeonato de futebol}} -{{label|tr|futbol turnuvası}} -{{label|nl|voetbal toernooi}} -{{label|ja|サッカートーナメント}} -| rdfs:subClassOf = Tournament -}}OntologyClass:SocietalEvent2008258468652015-03-22T11:23:24Z{{Class -| labels = -{{label|en|societal event}} -{{label|fr|évènement collectif}} -{{label|de|gesellschatliches Ereignis}} -{{label|nl|maatschappelijke gebeurtenis}} -| comments = -{{comment|en|an event that is clearly different from strictly personal events}} -| rdfs:subClassOf = Event -}}OntologyClass:SoftballLeague2002185479532015-05-25T14:55:51Z{{Class -| labels = -{{label|en|softball league}} -{{label|ga|sraith bogliathróide}} -{{label|de|Softball Liga}} -{{label|el|πρωτάθλημα σόφτμπολ}} -{{label|fr|ligue de softball}} -{{label|nl|softball competitie}} -| comments = -{{comment|en|A group of sports teams that compete against each other in softball.}} -{{comment|el|Ομάδες που ανταγωνίζονται στο αγώνισμα του σόφτμπολ.}} -| rdfs:subClassOf = SportsLeague -}}OntologyClass:Software200464521072017-06-19T10:57:47Z{{Class -| labels = -{{label|en|software}} -{{label|ga|bogearraí}} -{{label|nl|software}} -{{label|da|software}} -{{label|de|Software}} -{{label|fr|logiciel}} -{{label|pt|logiciário}} -{{label|el|λογισμικό}} -{{label|sl|programska oprema}} -{{label|ko|소프트웨어}} -{{label|ja|ソフトウェア}} -| rdfs:subClassOf = Work -| specificProperties = {{SpecificProperty | ontologyProperty = fileSize | unit = megabyte }} -| owl:equivalentClass = wikidata:Q7397 -}}OntologyClass:SolarEclipse2008702482142015-05-25T15:22:37Z{{Class -| labels = -{{label|en|solar eclipse}} -{{label|ga|urú na gréine}} -{{label|fr|éclipse de soleil}} -{{label|el|έκλειψη ηλίου}} -{{label|de|Sonnenfinsternis}} -{{label|it|eclissi solare}} -{{label|nl|zonsverduistering}} -| rdfs:subClassOf = NaturalEvent -| comments = -{{comment|el|Έκλειψη ηλίου ονομάζεται το φαινόμενο κατά το οποίο η Σελήνη παρεμβάλλεται ανάμεσα στον Ήλιο και τη Γη, με αποτέλεσμα ορισμένες περιοχές της Γης να δέχονται λιγότερο φως από ό,τι συνήθως.}} -| owl:equivalentClass = wikidata:Q3887 -}}OntologyClass:Song200465528252018-02-08T20:05:32Z{{Class -| labels = -{{label|en|song}} -{{label|ga|amhrán}} -{{label|nl|lied}} -{{label|fr|chanson}} -{{label|it|canzone}} -{{label|da|sang}} -{{label|de|lied}} -{{label|el|τραγούδι}} -{{label|ko|노래}} -{{label|ja|歌}} -| rdfs:subClassOf = MusicalWork, schema:MusicRecording -| owl:equivalentClass = -}}OntologyClass:SongWriter2009426523622017-10-10T14:09:50Z{{Class -| labels = -{{label|en|songwriter}} -{{label|da|sangskriver}} -{{label|de|Liedschreiber}} -{{label|nl|songwriter (tekstdichter)}} -{{label|fr|auteur-compositeur}} -| comments = -{{comment|en|a person who writes songs.}} -{{comment|nl|een persoon die de muziek en/of de tekst voor populaire muzieknummers schrijft.}} -| rdfs:subClassOf = Writer -| owl:equivalentClass = wikidata:Q753110 -}}OntologyClass:Sound2009576523632017-10-10T14:10:13Z{{Class -| labels = -{{label|en|sound}} -{{label|ga|fuaim}} -{{label|da|lyd}} -{{label|de|Lied}} -{{label|nl|geluid}} -{{label|el|ήχος}} -{{label|ja|音}} -| comments = -{{comment|en|An audio document intended to be listened to; equivalent to http://purl.org/dc/dcmitype/Sound}} -{{comment|el|Μεταβολή στην πίεση του ατμοσφαιρικού αέρα που διεγείρει το αισθητήριο όργανο της ακοής μέσω ηχητικών κυμάτων}} -| rdfs:subClassOf = Document -}}OntologyClass:SpaceMission200467479632015-05-25T14:56:53Z{{Class -| labels = -{{label|en|space mission}} -{{label|ga|misean spáís}} -{{label|de|Weltraummission}} -{{label|el|διαστημική αποστολή}} -{{label|fr|mission spatiale}} -{{label|es|misión espacial}} -{{label|ko|우주 임무}} -{{label|nl|ruimtemissie}} -| rdfs:subClassOf = SocietalEvent -| specificProperties = {{SpecificProperty | ontologyProperty = mass | unit = kilogram }} - {{SpecificProperty | ontologyProperty = cmpEvaDuration | unit = hour }} - {{SpecificProperty | ontologyProperty = stationEvaDuration | unit = hour }} - {{SpecificProperty | ontologyProperty = lunarSurfaceTime | unit = hour }} - {{SpecificProperty | ontologyProperty = missionDuration | unit = day }} - {{SpecificProperty | ontologyProperty = distanceTraveled | unit = kilometre }} - {{SpecificProperty | ontologyProperty = lunarOrbitTime | unit = hour }} - {{SpecificProperty | ontologyProperty = stationVisitDuration | unit = hour }} - {{SpecificProperty | ontologyProperty = lunarSampleMass | unit = kilogram }} - {{SpecificProperty | ontologyProperty = lunarEvaTime | unit = hour }} -| owl:equivalentClass = wikidata:Q2133344 -}}OntologyClass:SpaceShuttle200468481732015-05-25T15:18:23Z{{Class -| labels = -{{label|en|space shuttle}} -{{label|ga|spástointeáil}} -{{label|de|Raumfähre}} -{{label|fr|navette spatiale}} -{{label|el|διαστημικό λεωφορείο}} -{{label|ko|우주 왕복선}} -{{label|nl|ruimteveer}} -| rdfs:subClassOf = MeanOfTransportation -| specificProperties = {{SpecificProperty | ontologyProperty = timeInSpace | unit = day }} - {{SpecificProperty | ontologyProperty = distance | unit = kilometre }} -| owl:equivalentClass = wikidata:Q48806 -}}OntologyClass:SpaceStation200469481742015-05-25T15:18:27Z{{Class -| labels = -{{label|en|space station}} -{{label|ga|stáisiún spáis}} -{{label|el|διαστημικός σταθμός}} -{{label|de|Raumstation}} -{{label|fr|station spatiale}} -{{label|es|estación espacial}} -{{label|ko|우주 정거장}} -{{label|nl|ruimtestation}} -| rdfs:subClassOf = MeanOfTransportation -| specificProperties = {{SpecificProperty | ontologyProperty = volume | unit = cubicMetre }} -| owl:equivalentClass = wikidata:Q25956 -}}OntologyClass:Spacecraft200466509462016-04-26T03:28:36Z{{Class -| labels = -{{label|en|spacecraft}} -{{label|ga|spásárthach}} -{{label|de|Raumfahrzeug}} -{{label|el|διαστημόπλοιο}} -{{label|fr|vaisseau spatial}} -{{label|ko|우주선}} -{{label|nl|ruimtevaartuig}} -{{label|ja|宇宙機}} -| rdfs:subClassOf = MeanOfTransportation -| specificProperties = - {{SpecificProperty | ontologyProperty = totalMass | unit = kilogram }} - {{SpecificProperty | ontologyProperty = apoapsis | unit = kilometre }} - {{SpecificProperty | ontologyProperty = dockedTime | unit = day }} - {{SpecificProperty | ontologyProperty = cargoFuel | unit = kilogram }} - {{SpecificProperty | ontologyProperty = cargoGas | unit = kilogram }} - {{SpecificProperty | ontologyProperty = dryCargo | unit = kilogram }} - {{SpecificProperty | ontologyProperty = periapsis | unit = kilometre }} - {{SpecificProperty | ontologyProperty = cargoWater | unit = kilogram }} - {{SpecificProperty | ontologyProperty = totalCargo | unit = kilogram }} - {{SpecificProperty | ontologyProperty = freeFlightTime | unit = day }} -| owl:equivalentClass = wikidata:Q40218 -}}OntologyClass:Species200470520822017-06-19T10:33:54Z{{Class -| labels = -{{label|en|species}} -{{label|ga|speiceas}} -{{label|es|especies}} -{{label|el|είδος}} -{{label|da|arter}} -{{label|de|Spezie}} -{{label|fr|espèce}} -{{label|ja|種_(分類学)}} -{{label|nl|soort}} -| rdfs:subClassOf = owl:Thing -<!-- dul:Organism --> -}}OntologyClass:SpeedSkater20011169469482015-03-22T17:23:24Z{{Class -| labels = -{{label|en|speed skater}} -{{label|de|Eisschnellläufer}} -{{label|nl|langebaanschaatser}} -| rdfs:subClassOf = WinterSportPlayer -}}OntologyClass:SpeedwayLeague2002181492722015-10-18T11:43:42Z{{Class -| labels = -{{label|en|speedway league}} -{{label|de|Speedway Liga}} -{{label|el|πρωτάθλημα αυτοκινητοδρόμου}} -{{label|fr|ligue de speedway}} -{{label|nl|speedway competitie}} -| comments = -{{comment|en|A group of sports teams that compete against each other in motorcycle speedway racing.}} -| rdfs:subClassOf = SportsLeague -}}OntologyClass:SpeedwayRider2006199458032015-03-14T11:17:57Z{{Class -| labels = - {{label|en|speedway rider}} - {{label|de|Speedway Fahrer}} - {{label|nl|speedway rijder}} -| rdfs:subClassOf = MotorcycleRider -}}OntologyClass:SpeedwayTeam2003643479352015-05-25T14:53:49Z{{Class -| labels = -{{label|en|speedway team}} -{{label|ga|foireann luasbhealaigh}} -{{label|nl|speedwayteam}} -{{label|de|Speedwayteam}} -{{label|pl|klub żużlowy}} -| rdfs:subClassOf = SportsTeam -}}OntologyClass:Sport2002151526462017-11-03T16:21:11Z{{Class -| labels = - {{label|en|sport}} - {{label|ga|spórt}} - {{label|de|Sportart}} - {{label|nl|sport}} - {{label|el|Αθλήματα}} - {{label|fr|sport}} - {{label|es|Deporte}} - {{label|ko|스포츠}} - {{label|ja|スポーツ}} - {{label|pt|esporte}} - {{label|ru|Вид спорта}} -|comments = - {{comment|en|A sport is commonly defined as an organized, competitive, and skillful physical activity.}} -| rdfs:subClassOf = Activity -| owl:equivalentClass = wikidata:Q349 -}}OntologyClass:SportCompetitionResult2006056492702015-10-18T11:40:48Z{{Class -| labels = - {{label|en|results of a sport competition}} - {{label|de|Ergebnisse eines Sportwettbewerbs}} - {{label|el|αποτελέσματα αθλητικού διαγωνισμού}} - {{label|fr|résultats d'une compétition sportive}} - {{label|es|resultados de una competición deportiva}} - {{label|nl|uitslag van een sport competitie}} -| rdfs:subClassOf = -}}OntologyClass:SportFacility2005950492002015-10-14T13:02:28Z{{Class -| labels = -{{label|en|sport facility}} -{{label|de|Sportanlage}} -{{label|el|αθλητικές εγκαταστάσεις}} -{{label|fr|installation sportive}} -{{label|nl|sportfaciliteit}} -| rdfs:subClassOf = ArchitecturalStructure -}}OntologyClass:SportsClub20011256484292015-07-02T12:59:09Z{{Class -| labels = -{{label|en|sports club}} -{{label|de|Sportverein}} -{{label|nl|sportclub}} -| rdfs:subClassOf = Organisation - -}}OntologyClass:SportsEvent200471288832013-12-06T14:22:26Z{{Class -| labels = -{{label|de|Sportereignis}} -{{label|en|sports event}} -{{label|pt|evento esportivo}} -{{label|fr|évènement sportif}} -{{label|nl|sportevenement}} -| comments = -{{comment|en|a event of competitive physical activity}} -| rdfs:subClassOf = SocietalEvent -| owl:equivalentClass = schema:SportsEvent -}}OntologyClass:SportsLeague2002147504102016-03-04T06:35:15Z{{Class -| labels = -{{label|en|sports league}} -{{label|de|Sportliga}} -{{label|es|liga deportiva}} -{{label|el|Αθλητική Ομοσπονδία}} -{{label|fr|ligue sportive}} -{{label|ko|스포츠 리그}} -{{label|nl|sport competitie}} -{{label|ja|スポーツリーグ}} -| comments = -{{comment|en|A group of sports teams or individual athletes that compete against each other in a specific sport.}} -| rdfs:subClassOf = Organisation -| owl:equivalentClass = wikidata:Q623109 -}}OntologyClass:SportsManager2006326376092014-08-25T11:34:44Z{{Class -| labels = -{{label|en|sports manager}} -{{label|de|Sportmanager}} -{{label|el|αθλητικός μάνατζερ}} -{{label|es|director deportivo}} -{{label|nl|sportbestuurder}} -|comments= -{{comment|en| 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.}} -{{comment|el|Σύμφωνα με τη γαλλική ετικέτα Soccer,μπορεί να εννοείται ο προπονητής.Παρ'όλα αυτα,εδώ ένας αθλητικός μάνατζερ μεταφράζεται ως ένα μέλος συμβουλίου ενός αθλητικού κλαμπ.}} -| rdfs:subClassOf = Person -}}OntologyClass:SportsSeason2006088345472014-04-08T15:48:10Z{{Class -| labels = -{{label|en|sports season}} -{{label|de|Sportsaison}} -{{label|el|περίοδος αθλημάτων}} -{{label|nl|sportseizoen}} -}}OntologyClass:SportsTeam200472519502017-02-27T10:45:07Z{{Class -| labels = -{{label|en|sports team}} -{{label|de|Sportmannschaft}} -{{label|nl|sportteam}} -{{label|el|ομαδικά αθλήματα}} -{{label|fr|équipe sportive}} -{{label|ja|スポーツチーム}} -| rdfs:subClassOf = Organisation -| owl:equivalentClass = schema:SportsTeam, wikidata:Q12973014 -}}OntologyClass:SportsTeamMember2005038468132015-03-21T21:45:39Z{{Class -| labels = -{{label|en|Sports team member}} -{{label|el|μέλος αθλητικής ομάδας}} -{{label|nl|sport teamlid}} -{{label|de|Sport Team Mitglied}} -| comments = -{{comment|nl|lid van een athletisch team}} -{{comment|en|A member of an athletic team.}} -{{comment|el|Μέλος αθλητικής ομάδας.}} -| rdfs:subClassOf = OrganisationMember -}}OntologyClass:SportsTeamSeason2005045492712015-10-18T11:41:37Z{{Class -| labels = -{{label|en|sports team season}} -{{label|de|Sport Team Saison}} -{{label|el|περίοδος αθλητικής ομάδας}} -{{label|nl|sport seizoen}} -| comments = -{{comment|en|A season for a particular sports team (as opposed to the season for the entire league that the team is in)}} -{{comment|el|μία περίοδος για μία αθλητική ομάδα }} -| rdfs:subClassOf = SportsSeason -}}OntologyClass:Spreadsheet20012221533802018-10-19T10:24:20Z{{Class -| labels = -{{label|en|Spreadsheet}} -{{label|ru|Электронная таблица}} - -}}OntologyClass:Square2009406510852016-05-14T15:20:31Z{{Class -| labels = -{{label|en|square}} -{{label|ga|cearnóg}} -{{label|de|Platz}} -{{label|fr|place}} -{{label|nl|plein}} -{{label|ja|正方形}} -| rdfs:subClassOf = ArchitecturalStructure -| owl:equivalentClass = wikidata:Q174782 -}}OntologyClass:SquashPlayer2007321463532015-03-18T17:55:56Z{{Class -| labels = {{label|en|squash player}} -{{label|de|Squashspieler}} -{{label|it|giocatore di squash}} -{{label|nl|squasher}} -{{label|ko|스쿼시 선수}} -| rdfs:subClassOf = Athlete -| owl:equivalentClass = wikidata:Q16278103 -}}OntologyClass:Stadium200473528262018-02-08T20:05:47Z{{Class -| labels = -{{label|en|stadium}} -{{label|ga|staidiam}} -{{label|el|στάδιο}} -{{label|fr|stade}} -{{label|de|Stadion}} -{{label|ko|경기장}} -{{label|ja|スタジアム}} -{{label|nl|stadion}} -| rdfs:subClassOf = Venue, schema:StadiumOrArena -| owl:equivalentClass = -}}OntologyClass:Standard20011244509272016-04-22T07:58:44Z{{Class -| labels= -{{label|en|standard}} -{{label|nl|standaard}} -{{label|ja|規格}} -| comments= -{{comment|en|a common specification}} -| rdfs:subClassOf = TopicalConcept -}}OntologyClass:Star2006356481792015-05-25T15:19:03Z{{Class -| labels = -{{label|it|stella}} -{{label|en|star}} -{{label|ga|réalta}} -{{label|de|Stern}} -{{label|fr|étoile}} -{{label|el|αστέρι}} -{{label|nl|ster}} -{{label|ja|恒星}} -{{label|ko|항성}} -| rdfs:subClassOf = CelestialBody -}}OntologyClass:StarCluster20012274535082018-12-19T09:39:44Z{{Class -|labels= - {{label|en|Star сluster}} - {{label|ru|Звездное скопление}} -| owl:disjointWith = Person -| rdfs:subClassOf = owl:Thing -}}OntologyClass:State2007030519512017-02-27T10:45:50Z{{Class -| labels = -{{label|en|state}} -{{label|el|πολιτεία}} -{{label|de|Staat}} -{{label|fr|état}} -{{label|nl|staat}} -{{label|ja|州}} -| rdfs:subClassOf = PopulatedPlace -| owl:equivalentClass = wikidata:Q7275 -}}OntologyClass:StatedResolution2009126458072015-03-14T11:54:44Z{{Class -| labels = -{{label|en|Stated Resolution}} -{{label|de|Angenommen Beschluß}} -{{label|nl|Aangenomen Besluit}} -| comments = -{{comment|en|A Resolution describes a formal statement adopted by a meeting or convention.}} -{{comment|nl|Een Besluit of Verklaring beschrijft een formeel besluit of formele aanbeveling aangenomen door een vergadering.}} -| rdfs:subClassOf = WrittenWork -}}OntologyClass:Station200474481802015-05-25T15:19:08Z{{Class -| labels = - {{label|en|station}} -{{label|ga|stáisiún}} - {{label|de|Bahnhof}} - {{label|fr|gare}} - {{label|el|Σταθμός}} - {{label|ja|駅}} - {{label|nl|station}} - {{label|es|estación}} - {{label|pt|estação}} - {{label|ru|станция}} -| rdfs:subClassOf = Infrastructure -| comments = -{{comment|en|Public transport station (eg. railway station, metro station, bus station).}} -{{comment|ru|Остановка общественного транспорта (например: железнодорожная станция, станция метро, автостанция).}} -| owl:equivalentClass = wikidata:Q719456 -}}OntologyClass:Statistic2007871510842016-05-14T15:20:08Z{{Class -| labels = -{{label|en|statistic}} -{{label|ga|staitistic}} -{{label|de|statistisch}} -{{label|fr|statistique}} -{{label|nl|statistisch}} -{{label|el|στατιστική}} -| owl:equivalentClass = wikidata:Q1949963 -}}OntologyClass:StillImage2009566511612016-06-06T12:44:28Z{{Class -| labels = -{{label|en|still image}} -{{label|de|Standbild}} -{{label|fr|image fixe}} -{{label|nl|stilstaand beeld}} -| comments = -{{comment|en|A visual document that is not intended to be animated; equivalent to http://purl.org/dc/dcmitype/StillImage}} -| rdfs:subClassOf = Image -}}OntologyClass:StormSurge20010199458112015-03-14T12:06:02Z{{Class -| labels = -{{label|en|storm surge}} -{{label|de|Sturmflut}} -{{label|nl|stormvloed}} -| rdfs:subClassOf = NaturalEvent -| comments = -{{comment|nl|Een stormvloed is de grootschalige overstroming van een kustgebied onder invloed van de op elkaar inwerkende krachten van wind, getij en water}} -}}OntologyClass:Stream200448498462015-12-17T20:13:25Z{{Class -| labels = -{{label|en|stream}} -{{label|ga|sruthán}} -{{label|el|ρέμα}} -{{label|fr|ruisseau}} -{{label|it|ruscello}} -{{label|de|Bach}} -{{label|pt|curso d’água}} -{{label|ja|河川}} -{{label|nl|stroom}} -| comments = -{{comment|en|a flowing body of water with a current, confined within a bed and stream banks}} -| rdfs:subClassOf = BodyOfWater -| specificProperties = {{SpecificProperty | ontologyProperty = discharge | unit = cubicMetrePerSecond }} - {{SpecificProperty | ontologyProperty = minimumDischarge | unit = cubicMetrePerSecond }} - {{SpecificProperty | ontologyProperty = dischargeAverage | unit = cubicMetrePerSecond }} - {{SpecificProperty | ontologyProperty = maximumDischarge | unit = cubicMetrePerSecond }} - {{SpecificProperty | ontologyProperty = watershed | unit = squareKilometre }} -| owl:equivalentClass = wikidata:Q47521 -}}OntologyClass:Street2007972509472016-04-26T03:29:44Z{{Class -| labels = -{{label|en|street}} -{{label|ga|sráid}} -{{label|de|Straße}} -{{label|fr|straat}} -{{label|nl|rue}} -{{label|el|Οδός}} -{{label|ja|ストリート}} -| comments = -{{comment|en|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.}} -| rdfs:subClassOf = PopulatedPlace -| owl:equivalentClass = wikidata:Q79007 -}}OntologyClass:SubMunicipality2006569488142015-09-08T15:38:22Z{{Class -| labels = -{{label|en|borough}} -{{label|de|Teilgemeinde}} -{{label|gl|parroquia}} -{{label|nl|deelgemeente}} -| comments = -{{comment|en|An administrative body governing a territorial unity on the lowest level, administering part of a municipality}} -| rdfs:subClassOf = GovernmentalAdministrativeRegion -| owl:equivalentClass = -}}OntologyClass:SumoWrestler2006225331712014-03-28T15:49:48Z{{Class -| labels = {{label|en|sumo wrestler}} -{{label|de|Sumo-Ringer}} -{{label|nl|sumoworstelaar}} -| rdfs:subClassOf = Wrestler -}}OntologyClass:SupremeCourtOfTheUnitedStatesCase200475470942015-03-23T14:57:03Z{{Class -| labels = -{{label|en|Supreme Court of the United States case}} -{{label|de|Fall Oberster Gerichtshof der Vereinigten}} -{{label|fr|cas juridique de la Cour suprême des États-Unis}} -| rdfs:subClassOf = LegalCase -}}OntologyClass:Surfer2007832484622015-07-09T05:44:50Z{{Class -| labels = -{{label|en|surfer}} -{{label|ga|surfálaí}} -{{label|el|σέρφερ}} -{{label|de|Surfer}} -{{label|nl|surfer}} -{{label|ja|サーファー}} -| rdfs:subClassOf = Athlete -| owl:equivalentClass = wikidata:Q13561328 -}}OntologyClass:Surname2004130481822015-05-25T15:19:18Z{{Class -| labels = -{{label|en|surname}} -{{label|ga|sloinne}} -{{label|fr|nom}} -{{label|fr|nom de famille}} -{{label|el|επώνυμο}} -{{label|de|Nachname}} -{{label|pl|nazwisko}} -{{label|ja|家}} -{{label|ko|성씨}} -{{label|nl|achternaam}} -| rdfs:subClassOf = Name -}}OntologyClass:Swarm2006133509482016-04-26T03:30:51Z{{Class -| labels = -{{label|en|Swarm}} -{{label|de|schwarm}} -{{label|it|stormo}} -{{label|el|Σμήνος}} -{{label|nl|zwerm}} -{{label|ja|群れ}} -| rdfs:subClassOf = CelestialBody -}}OntologyClass:Swimmer2005157481832015-05-25T15:19:34Z{{Class -|labels= -{{label|fr|nageur}} -{{label|en|swimmer}} -{{label|ga|snámhaí}} -{{label|de|Schwimmer}} -{{label|it|nuotatore}} -{{label|el|Kολυμβητής}} -{{label|pt|nadador}} -{{label|ja|競泳選手}} -{{label|nl|zwemmer}} -{{label|ko|수영 선수}} -{{label|es|nadador}} - -| comments = -{{comment|en|a trained athlete who participates in swimming meets}} -{{comment|el|ένας εκπαιδευμένος αθλητής που συμμετέχει σε συναντήσεις κολύμβησης}} -|rdfs:subClassOf=Athlete -| owl:equivalentClass = wikidata:Q10843402 -}}OntologyClass:Synagogue2006701509492016-04-26T03:32:04Z{{Class -| labels = -{{label|en|synagogue}} -{{label|de|Synagoge}} -{{label|el|συναγωγή}} -{{label|fr|synagogue}} -{{label|es|sinagoga}} -{{label|nl|synagoge}} -{{label|ga|sionagóg}} -{{label|pl|synagoga}} -{{label|ja|シナゴーグ}} - -| comments = -{{comment|en|A synagogue, sometimes spelt synagog, is a Jewish or Samaritan house of prayer.<ref>http://en.wikipedia.org/wiki/Synagogue</ref>}} -{{comment|fr|Une synagogue est un lieu de culte juif.<ref>http://fr.wikipedia.org/wiki/Synagogue</ref>}} -| rdfs:subClassOf = ReligiousBuilding -| owl:equivalentClass = wikidata:Q34627 -}} - -== references == -<references/>OntologyClass:SystemOfLaw2006603458132015-03-14T12:16:24Z{{Class -| labels= -{{label|en|System of law}} -{{label|el|σύστημα δικαίου}} -{{label|es|ordenamiento jurídico}} -{{label|fr|régime de droit}} -{{label|nl|rechtssysteem}} -{{label|de|Rechtssystem}} -| rdfs:subClassOf = TopicalConcept -| comments= -{{comment|en|a system of legislation, either national or international}} -| specificProperties = -}}OntologyClass:TableTennisPlayer2006235503952016-03-04T06:04:21Z{{Class -| labels = {{label|en|table tennis player}} -{{label|ga|imreoir leadóg bhoird}} -{{label|de|Tischtennisspieler}} -{{label|el|παίκτης πινγκ-πονγκ}} -{{label|nl| tafeltennisser}} -{{label|ko| 탁구 선수}} -{{label|ja|卓球選手}} -| comments = {{comment|en|Athlete who plays table tennis}} -{{comment|el|O αθλητής που παίζει πινγκ-πονγκ}} -| rdfs:subClassOf = Athlete -| owl:equivalentClass = wikidata:Q13382519 -}}OntologyClass:Tank20012211533682018-10-19T09:36:40Z{{Class -| labels = -{{label|en|Tank}} -{{label|ru|Танк}} -}}OntologyClass:Tax2004763528442018-02-08T20:32:52Z{{Class -| labels = - {{label|en|tax}} - {{label|ga|cáin}} - {{label|fr|taxe}} - {{label|de|Steuer}} - {{label|el|φόρος}} - {{label|es|impuesto}} - {{label|nl|belasting}} - {{label|ja|租税}} -| rdfs:subClassOf = TopicalConcept -| owl:equivalentClass = wikidata:Q8161 -}}OntologyClass:Taxon2009308503962016-03-04T06:05:08Z{{Class -| labels= -{{label|en|taxonomic group}} -{{label|de|taxonomische Gruppe}} -{{label|el|ταξονομική ομάδα}} -{{label|nl|taxon}} -{{label|ja|タクソン}} -| comments= -{{comment|en|a category within a classification system for Species}} -{{comment|nl|categorie binnen een classificatiesysteem voor plant- en diersoorten}} -| rdfs:subClassOf = TopicalConcept -| specificProperties = -| owl:equivalentClass = wikidata:Q16521 -}}OntologyClass:TeamMember2005022503972016-03-04T06:19:56Z{{Class -| labels = -{{label|en|Team member}} -{{label|fr|coéquipier}} -{{label|de|Teammitglied}} -{{label|el|Μέλος ομάδας}} -{{label|nl|teamlid}} -{{label|ja|チームメンバー}} -|comments= -{{comment|en|A member of an athletic team.}} -{{comment|el|Ένα μέλος μιας αθλητικής ομάδας.}} -| rdfs:subClassOf = Athlete -}}OntologyClass:TeamSport20011516518792017-01-26T16:13:22Z{{Class -| labels = - {{label|en|team sport}} - {{label|nl|teamsport}} - {{label|ja|チームスポーツ}} -|comments = - {{comment|en|A team sport is commonly defined as a sport that is being played by competing teams}} -| rdfs:subClassOf = Sport -| owl:equivalentClass = wikidata:Q216048 -}}OntologyClass:TelevisionDirector2009430503992016-03-04T06:20:49Z{{Class -| labels = {{label|en|Television director}} -{{label|fr|réalisateur de télévision}} -{{label|nl|tv-regisseur}} -{{label|de|TV-Regisseur}} -{{label|ja|TVディレクター}} -| comments = {{comment|en|a person who directs the activities involved in making a television program.}} -| rdfs:subClassOf = Person -}}OntologyClass:TelevisionEpisode200476504072016-03-04T06:33:41Z{{Class -| labels = -{{label|en|television episode}} -{{label|ga|eagrán de chlár teilifíse}} -{{label|de|Fernsehfolge}} -{{label|el|επεισόδιο τηλεόρασης}} -{{label|fr|épisode télévisé}} -{{label|es|capítulo de serie de televisión}} -{{label|ko|텔레비전 에피소드}} -{{label|nl|televisie seizoen}} -{{label|ja|テレビ放送回}} -| comments = -{{comment|en|A television episode is a part of serial television program. }} -| rdfs:subClassOf = Work -| owl:equivalentClass = schema:TVEpisode -}}OntologyClass:TelevisionHost2006209504062016-03-04T06:32:11Z{{Class -| labels = -{{label|en|television host}} -{{label|ga|láithreoir teilifíse}} -{{label|el|παρουσιαστής τηλεοπτικής εκπομπής}} -{{label|de|Fernsehmoderator}} -{{label|fr|animateur de télévision}} -{{label|it|presentatore televisivo}} -{{label|nl|televisie presentator}} -{{label|ja|テレビ番組司会者}} -| rdfs:subClassOf = Presenter -| owl:equivalentClass = wikidata:Q947873 -}}OntologyClass:TelevisionSeason2005099471132015-03-23T15:52:43Z{{Class -| labels = -{{label|en|television season}} -{{label|el|τηλεοπτική σεζόν}} -{{label|de|Fernsehstaffel}} -{{label|nl|televisie seizoen}} -{{label|ko|텔레비전 시즌}} -| rdfs:subClassOf = Work -}}OntologyClass:TelevisionShow200477535422019-06-28T18:25:55Z{{Class -| rdfs:label@en = television show -| rdfs:label@ar = معلومات تلفاز -| rdfs:label@ga = clár teilifíse -| rdfs:label@de = Fernsehsendung -| rdfs:label@el = τηλεοπτική σειρά -| rdfs:label@fr = émission de télévision -| rdfs:label@sl = televizijska oddaja -| rdfs:label@ja = テレビ番組 -| rdfs:label@nl = televisie show -| rdfs:label@es = serie de televisión -| rdfs:subClassOf = Work -| owl:equivalentClass = wikidata:Q15416 -}}OntologyClass:TelevisionStation2003015481862015-05-25T15:19:48Z{{Class -| labels = -{{label|en|television station}} -{{label|ga|stáisiún teilifíse}} -{{label|el|τηλεοπτικός σταθμός}} -{{label|de|Fernsehsender}} -{{label|fr|chaînes de télévision}} -{{label|es|canal de televisión}} -{{label|ja|テレビジョン放送局}} -{{label|it|canale televisivo}} -{{label|nl|televisie zender}} -| rdfs:subClassOf = Broadcaster -| owl:equivalentClass = schema:TelevisionStation -| comments = -{{comment|en|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.}} -{{comment|el|Ένας τηλεοπτικός σταθμός έχει μια παράταξη.Για παράδειγμα ο τηλεοπτικός σταθμός WABC-TV (or ABC 7, Channel 7).Δεν πρέπει να συγχέεται με το τηλεοπτικό δίκτυο ABC,που έχει πολλούς τηλεοπτικούς σταθμούς.}} -{{comment|de|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.}} -}}OntologyClass:Temple2006663483192015-05-25T15:32:44Z{{Class -| labels= -{{label|en|temple}} -{{label|ga|teampall}} -{{label|fr|temple}} -{{label|de|tempel}} -{{label|el|ναός}} -{{label|it|tempio}} -{{label|ja|寺}} -{{label|nl|tempel}} -| rdfs:subClassOf = ReligiousBuilding -| owl:equivalentClass = -}}OntologyClass:TennisLeague2002186504002016-03-04T06:21:42Z{{Class -| labels = -{{label|en|tennis league}} -{{label|ga|sraith leadóige}} -{{label|de|Tennisliga}} -{{label|el|Ομοσπονδία Αντισφαίρισης}} -{{label|fr|ligue de tennis}} -{{label|nl|tennis competitie}} -{{label|ja|テニスリーグ}} -| comments = -{{comment|en|A group of sports teams or person that compete against each other in tennis.}} -| rdfs:subClassOf = SportsLeague -}}OntologyClass:TennisPlayer200478504012016-03-04T06:22:00Z{{Class -| labels = -{{label|en|tennis player}} -{{label|ga|imreoir leadóige}} -{{label|de|Tennisspieler}} -{{label|nl|tennisser}} -{{label|el|παίχτης τένις}} -{{label|fr|joueur de tennis}} -{{label|pt|jogador de tennis}} -{{label|es|tenista}} -{{label|ja|テニス選手}} -| rdfs:subClassOf = Athlete -| owl:equivalentClass = wikidata:Q10833314 -}}OntologyClass:TennisTournament2005773504022016-03-04T06:22:27Z{{Class -| labels = -{{label|en|tennis tournament}} -{{label|ga|comórtas leadóige}} -{{label|de|Tennisturnier}} -{{label|nl|tennis toernooi}} -{{label|el|Τουρνουά Τένις}} -{{label|it|torneo di tennis}} -{{label|ja|テニストーナメント}} -| rdfs:subClassOf = Tournament -| owl:equivalentClass = wikidata:Q13219666 -}}OntologyClass:Tenure20011942527082017-12-27T14:22:37Z{{Class -|labels= -{{label|en|tenure}} -{{label|nl|dienstverband}} -{{label|de|Amtszeit}} -{{label|fr|durée du mandat}} -| rdfs:subClassOf = TimePeriod -}}OntologyClass:TermOfOffice2007904511522016-06-06T12:27:31Z{{Class -|labels = -{{label|en|term of office}} -{{label|de|Amtsdauer}} -{{label|fr|mandat}} -{{label|nl|ambtstermijn}} -| rdfs:subClassOf = Organisation -| owl:equivalentClass = wikidata:Q524572 -}}OntologyClass:Territory2007161509502016-04-26T03:33:49Z{{Class -| labels = -{{label|en|territory}} -{{label|nl|territorium}} -{{label|de|Territorium}} -{{label|fr|territoire}} -{{label|el|περιοχή}} -{{label|ja|国土}} - -| comments = -{{comment|en|A territory may refer to a country subdivision, a non-sovereign geographic region.}} -| rdfs:subClassOf = PopulatedPlace -}}OntologyClass:Theatre2003835481892015-05-25T15:20:02Z{{Class -| labels = -{{label|en|theatre}} -{{label|ga|amharclann}} -{{label|fr|théâtre}} -{{label|el|θέατρο}} -{{label|de|Theater}} -{{label|ja|劇場}} -{{label|nl|schouwburg}} -| rdfs:subClassOf = Venue -| comments = -{{comment|en|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.}} -| owl:equivalentClass = wikidata:Q24354 -}}OntologyClass:TheatreDirector2009436468292015-03-22T07:49:33Z{{Class -| labels = -{{label|en|Theatre director}} -{{label|fr|directeur de théâtre}} -{{label|nl|theaterdirecteur}} -{{label|de|Theaterdirektor}} -| comments = {{comment|en|A director in the theatre field who oversees and orchestrates the mounting of a theatre production.}} -| rdfs:subClassOf = Person -| owl:equivalentClass = wikidata:Q3387717 -}}OntologyClass:TheologicalConcept2009720511592016-06-06T12:39:50Z{{Class -| labels = {{label|en|Theological concept}} -{{label|de|Theologisch Konzept}} -{{label|fr|concept théologique}} -{{label|nl|theologisch concept}} -| comments = {{comment|en|Theological concepts, e.g. The apocalypse, Trinty, Stoicism}} -| rdfs:subClassOf = TopicalConcept -}}OntologyClass:TimePeriod2005936528472018-02-08T20:34:36Z{{Class -|labels= -{{label|en|time period}} -{{label|ga|tréimhse}} -{{label|da|tidsperiode}} -{{label|de|Zeitraum}} -{{label|el|χρονική περίοδος}} -{{label|nl|tijdvak}} -{{label|fr|période temporelle}} -{{label|es|periodo temporal}} -| owl:disjointWith = Person -| rdfs:subClassOf = dul:TimeInterval -}}OntologyClass:TopLevelDomain20011968525492017-10-26T10:23:39Z{{Class -| labels= -{{label|en|top level domain}} -{{label|de|top level domain}} -{{label|fr|domaine de premier niveau}} -| specificProperties = -| rdfs:subClassOf = Identifier -| owl:equivalentClass = wikidata:Q14296 -}}OntologyClass:TopicalConcept2005115481912015-05-25T15:20:19Z{{Class -| labels = -{{label|en|topical concept}} -{{label|ga|coincheap i mbéal an phobail}} -{{label|de|thematisches Konzept}} -| rdfs:subClassOf = owl:Thing -| owl:equivalentClass = dul:Concept -}}OntologyClass:Tournament2007566481922015-05-25T15:20:23Z{{Class -| labels = -{{label|en|tournament}} -{{label|ga|comórtas}} -{{label|de|Turnier}} -{{label|fr|tournoi}} -{{label|el|τουρνουά}} -{{label|nl|toernooi}} -{{label|it|torneo}} -| rdfs:subClassOf = SportsEvent -| owl:equivalentClass = wikidata:Q500834 -}}OntologyClass:Tower2009330526392017-11-03T15:48:36Z{{Class -| labels = - {{label|en|tower}} - {{label|ga|túr}} - {{label|de|Turm}} - {{label|el|πύργος}} - {{label|fr|tour}} - {{label|nl|toren}} - {{label|ja|塔}} -| comments = - {{comment|en|A Tower is a kind of structure (not necessarily a building) that is higher than the rest}} -| rdfs:subClassOf = ArchitecturalStructure -| owl:disjointWith = Person -| owl:equivalentClass = wikidata:Q12518 -}}OntologyClass:Town2002277517882017-01-03T12:46:14Z{{Class -| labels = -{{label|en|town}} -{{label|de|Stadt}} -{{label|el|πόλη}} -{{label|fr|ville}} -{{label|ga|baile}} -{{label|ja|町}} -{{label|nl|stad}} -{{label|pl|miasteczko}} -{{label|hi|नगर}} -| rdfs:subClassOf = Settlement -| comments = -{{comment|en|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.}} -| owl:equivalentClass = wikidata:Q3957 -}}OntologyClass:TrackList2007162331842014-03-28T15:50:48Z{{Class -| labels = -{{label|en|track list}} -{{label|de|Titelliste}} -{{label|el|λίστα κομματιών}} -{{label|nl|lijst van nummers}} -| comments = -{{comment|en|A list of music tracks, like on a CD}} -{{comment|nl|Een lijst van nummers als op een CD album}} -| rdfs:subClassOf = List -}}OntologyClass:TradeUnion200479481942015-05-25T15:20:34Z{{Class -| labels = -{{label|el|Κουτί πληροφοριών ένωσης}} -{{label|en|trade union}} -{{label|ga|ceardchumann}} -{{label|de|Gewerkschaft}} -{{label|nl|vakbond}} -{{label|fr|syndicat professionnel}} -| comments = -{{comment|en|A trade union or labor union is an organization of workers who have banded together to achieve common goals such as better working conditions.}} -| rdfs:subClassOf = Organisation -| owl:equivalentClass = wikidata:Q178790 -}}OntologyClass:Train2006093523462017-10-10T13:48:47Z{{Class -| labels = -{{label|en|train}} -{{label|ga|traein}} -{{label|el|τρένο}} -{{label|da|tog}} -{{label|de|Zug}} -{{label|it|treno}} -{{label|fr|train}} -{{label|es|tren}} -{{label|ja|列車}} -{{label|nl|trein}} -| rdfs:subClassOf = MeanOfTransportation -| owl:equivalentClass = wikidata:Q870 -}}OntologyClass:TrainCarriage20011443495232015-11-14T14:55:26Z{{Class -| labels = -{{label|en|train carriage}} -{{label|nl|treinwagon}} -| rdfs:subClassOf = MeanOfTransportation -}}OntologyClass:Tram20011513511452016-06-04T20:11:57Z{{Class -| labels = -{{label|en|tram}} -{{label|en|streetcar}} -{{label|fr|tramway}} -{{label|nl|tram}} -{{label|de|Straßenbahn}} -{{label|ja|路面電車}} - -| rdfs:subClassOf = MeanOfTransportation -}}OntologyClass:TramStation20011514511462016-06-04T20:12:29Z{{Class -| labels = -{{label|en|tram station}} -{{label|fr|station de tramway}} -{{label|nl|tramhalte}} -| rdfs:subClassOf = Station -| owl:equivalentClass = <http://vocab.org/transit/terms/stop> -}}OntologyClass:Treadmill2006315509532016-04-26T03:36:13Z{{Class -| labels = -{{label|el|Μύλος}} -{{label|en|Treadmill}} -{{label|de|Tretmühle}} -{{label|nl|Rosmolen}} -{{label|ja|トレッドミル}} -| rdfs:subClassOf = Mill -| comments = -{{comment|en|A mill driven by the tractive power of horses, donkeys or even people}} -| owl:equivalentClass = wikidata:Q683267 -}}OntologyClass:Treaty20011534509542016-04-26T03:37:07Z{{Class -| labels = -{{label|en|treaty}} -{{label|de|Vertrag}} -{{label|nl|verdrag}} -{{label|fr|traité}} -{{label|ja|条約}} -| rdfs:subClassOf = WrittenWork -}}OntologyClass:Tunnel2003389479842015-05-25T14:59:02Z{{Class -| labels = -{{label|en| tunnel}} -{{label|ga|tollán}} -{{label|fr| tunnel}} -{{label|el|τούνελ}} -{{label|de| Tunnel}} -{{label|ja | トンネル}} -{{label|nl|tunnel}} -{{label|ko | 터널}} -|comments= -{{comment|en| 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).}} -{{comment|fr| Un tunnel est une galerie souterraine livrant passage à une voie de communication (chemin de fer, canal, route, chemin piétonnier). Sont apparentés aux tunnels par leur mode de construction les grands ouvrages hydrauliques souterrains, tels que les aqueducs, collecteurs et émissaires destinés soit à l'amenée, soit à l'évacuation des eaux des grands centres et certaines conduites établies en liaison avec les barrages et usines hydro-électriques. (http://fr.wikipedia.org/wiki/Tunnel).}} -{{comment|de| Ein Tunnel (auch Tunell) ist eine künstliche Passage, die Berge, Gewässer oder andere Hindernisse (in der Regel als Verkehrsweg) unterquert (http://de.wikipedia.org/wiki/Tunnel).}} -{{comment|el|Ένα τούνελ μπορεί να είναι για πεζούς ή για αυτοκινητόδρομους,για σιδηρόδρομους,ή για κανάλια στο νερό.Μερικά τούνελ είναι υδραγωγεία για να παρέχουν νερό προς κατανάλωση ή για υδροηλεκτικούς σταθμούς ή είναι υπόνομοι.}} -| rdfs:subClassOf = ArchitecturalStructure -| owl:equivalentClass = wikidata:Q44377 -}}OntologyClass:Type2008253509212016-04-22T07:23:04Z{{Class -| labels= -{{label|en|type}} -{{label|ga|cineál}} -{{label|el|τύπος}} -{{label|fr|régime de classification}} -{{label|nl|type}} -{{label|de|Typ}} -{{label|ja|型}} -| comments= -{{comment|en|a category within a classification system}} -{{comment|nl|categorie binnen een classificatiesysteem}} -| rdfs:subClassOf = TopicalConcept -| specificProperties = -}}OntologyClass:UndergroundJournal20010116458232015-03-14T12:39:39Z{{Class -| labels = -{{label|en|underground journal}} -{{label|de|Underground Zeitschrift}} -{{label|nl|verzetsblad }} -| rdfs:subClassOf = PeriodicalLiterature -| comments = -{{comment|en| 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. }} -{{comment|nl| 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.}} -}}OntologyClass:UnitOfWork2006466528542018-02-08T20:42:37Z{{Class -| labels = - {{label|en|unit of work}} - {{label|ga|aonad oibre}} - {{label|de|Arbeitseinheit}} - {{label|nl|werkeenheid}} -| owl:disjointWith = Person -| comments = - {{comment|en|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.}} -| rdfs:subClassOf = owl:Thing -| owl:equivalentClass = -}}OntologyClass:University200480528142018-02-08T19:54:04Z{{Class -| labels = -{{label|en|university}} -{{label|de|Universität}} -{{label|el|πανεπιστήμιο}} -{{label|es|universidad}} -{{label|fr|université}} -{{label|ga|ollscoil}} -{{label|ja|大学}} -{{label|ko|대학}} -{{label|nl|universiteit}} -{{label|pl|uniwersytet}} -{{label|pt|universidade}} -| rdfs:subClassOf = EducationalInstitution, schema:CollegeOrUniversity -| owl:equivalentClass = wikidata:Q3918 -}}OntologyClass:Unknown2004894528482018-02-08T20:35:57Z{{Class -| labels = -{{label|en|Unknown}} -{{label|ga|anaithnid}} -{{label|de|unbekannt}} -{{label|el|άγνωστος}} -{{label|tr|Bilinmeyen}} -{{label|nl|Onbekend}} -{{label|fr|Inconnu}} -{{label|ja|無知}} -| rdfs:subClassOf = owl:Thing -| owl:equivalentClass = -}}OntologyClass:Vaccine20011917527072017-12-27T14:20:51Z{{Class -| labels = -{{label|de|Impfstoff}} -{{label|en|vaccine}} -{{label|fr|vaccin}} -{{label|nl|vaccin}} -| comments = -{{comment|en|Drugs that are a vaccine‎}} -{{comment|de|Medikamente welche Impfstoffe sind}} -| rdfs:subClassOf = Drug -}}OntologyClass:Valley2002268498592015-12-17T20:38:31Z{{Class -| labels = -{{label|en|valley}} -{{label|ga|gleann}} -{{label|de|tal}} -{{label|it|valle}} -{{label|el|Κοιλάδα}} -{{label|fr|vallée}} -{{label|ja|谷}} -{{label|pt|vale}} -{{label|nl|vallei}} -| comments = -{{comment|en|a depression with predominant extent in one direction}} -| rdfs:subClassOf = NaturalPlace -| owl:equivalentClass = wikidata:Q39816 -}}OntologyClass:Vein200481479852015-05-25T14:59:06Z{{Class -| labels = -{{label|en|vein}} -{{label|ga|féith}} -{{label|el|φλέβα}} -{{label|de|Vene}} -{{label|fr|veine}} -{{label|pt|veia}} -{{label|ja|静脈}} -{{label|nl|ader}} -| rdfs:subClassOf = AnatomicalStructure -| owl:equivalentClass = wikidata:Q9609 -}}OntologyClass:Venue2007347526142017-10-31T13:45:29Z{{Class -| labels = -{{label|en|venue}} -{{label|ga|ionad}} -{{label|de|Veranstaltungsort}} -{{label|el|τόπος συνάντησης}} -{{label|fr|lieu}} -{{label|ko|경기장}} -| rdfs:subClassOf = Building -}}OntologyClass:Vicar2008169483222015-05-25T15:32:59Z{{Class -| labels = -{{label|en|vicar}} -{{label|ga|biocáire}} -{{label|el|ιεροκήρυκας}} -{{label|nl|predikant}} -{{label|fr|pasteur}} -{{label|de|Pfarrer}} -| rdfs:subClassOf = Cleric -}}OntologyClass:VicePresident2001560483232015-05-25T15:33:03Z{{Class -| labels = -{{label|en|vice president}} -{{label|ga|leasuachtarán}} -{{label|el|αντιπρόεδρος}} -{{label|de|Vizepräsident}} -{{label|fr|vice président}} -{{label|nl|vice president}} -| rdfs:subClassOf = Politician -| owl:equivalentClass = wikidata:Q42178 -}}OntologyClass:VicePrimeMinister2002326468252015-03-21T22:11:06Z{{Class -| labels = -{{label|en|vice prime minister}} -{{label|de|Vizeministerpräsident}} -{{label|el|αντιπρωθυπουργός}} -{{label|fr|vice premier ministre}} -{{label|nl|vicepremier}} -| rdfs:subClassOf = Politician -}}OntologyClass:VideoGame200482521222017-06-19T11:11:28Z{{Class -| labels = -{{label|en|video game}} -{{label|ga|físchluiche}} -{{label|da|computerspil}} -{{label|de|Videospiel}} -{{label|el|βιντεοπαιχνίδι}} -{{label|fr|jeux vidéo}} -{{label|es|videojuego}} -{{label|ko|비디오 게임}} -{{label|nl|videospel}} -{{label|pt|videojogo}} -{{label|ja|テレビゲーム}} -| comments = -{{comment|en|A video game is an electronic game that involves interaction with a user interface to generate visual feedback on a video device.}} -| rdfs:subClassOf = Software -| owl:equivalentClass = wikidata:Q7889 -}}OntologyClass:VideogamesLeague2002187479412015-05-25T14:54:35Z{{Class -| labels = -{{label|en|videogames league}} -{{label|ga|sraith físchluichí}} -{{label|el|πρωτάθλημα βιντεοπαιχνιδιών}} -{{label|de|Videospiele-Liga}} -{{label|fr|ligue de jeux vidéo}} -| comments = -{{comment|en|A group of sports teams or person that compete against each other in videogames.}} -{{comment|el|Ένα σύνολο ομάδων ή ατόμων που ανταγωνίζονται σε ηλεκτρονικά παιχνίδια.}} -| rdfs:subClassOf = SportsLeague -}}OntologyClass:Village2002278517842017-01-03T12:17:16Z{{Class -| labels = -{{label|en|village}} -{{label|ga|sráidbhaile}} -{{label|el|χωριό}} -{{label|fr|village}} -{{label|de|dorf}} -{{label|gl|lugar}} -{{label|pl|wieś}} -{{label|ja|村}} -{{label|id|desa}} -{{label|nl|dorp}} -{{label|hi|गाँव}} -| comments = -{{comment|en|a clustered human settlement or community, usually smaller a town}} -{{comment|gl|Núcleo pequeno de poboación en que se divide unha parroquia, con poucos veciños e de carácter rural.}} -| rdfs:subClassOf = Settlement -| owl:equivalentClass = wikidata:Q532 -}}OntologyClass:Vodka20010214521202017-06-19T11:09:36Z{{Class -|labels= - {{label|en|vodka}} - {{label|da|vodka}} - {{label|de|Wodka}} - {{label|fr|vodka}} - {{label|nl|wodka}} -| rdfs:subClassOf = Beverage -}}OntologyClass:VoiceActor200483467932015-03-21T20:32:11Z{{Class -| labels = -{{label|en|voice actor}} -{{label|de|Synchronsprecher}} -{{label|fr|acteur de doublage}} -{{label|ko|성우}} -{{label|ja|声優}} -{{label|nl|stemacteur}} -| rdfs:subClassOf = Actor -}}OntologyClass:Volcano2005183498602015-12-17T20:39:06Z{{Class -| labels = -{{label|en|volcano}} -{{label|ga|bolcán}} -{{label|fr|volcan}} -{{label|el|ηφαίστειο}} -{{label|de|Vulkan}} -{{label|ja|火山}} -{{label|nl|vulkaan}} -{{label|pt|vulcão}} -| comments = -{{comment|en|A volcano is currently subclass of naturalplace, but it might also be considered a mountain.}} -{{comment|el|Το ηφαίστειο είναι υποκατηγορία φυσικών καταστάσεων, αλλά μπορεί επίσης να θεωρηθεί και βουνό.}} -| rdfs:subClassOf = NaturalPlace -| owl:equivalentClass = wikidata:Q8072 -}}OntologyClass:VolleyballCoach2006116479892015-05-25T14:59:37Z{{Class -| labels = {{label|en|volleyball coach}} -{{label|ga|traenálaí eitpheile}} -{{label|de|Volleyballtrainer}} -{{label|el|προπονητής βόλλεϋ}} -{{label|it|allenatore di pallavolo}} -{{label|nl|volleybalcoach}} -| rdfs:subClassOf = Coach -}}OntologyClass:VolleyballLeague2002188467802015-03-21T19:47:06Z{{Class -| labels = -{{label|en|volleyball league}} -{{label|de|Volleyball-Liga}} -{{label|el|Ομοσπονδία Πετοσφαίρισης}} -{{label|fr|ligue de volleyball}} -{{label|nl|volleybal competitie}} -| comments = -{{comment|en|A group of sports teams that compete against each other in volleyball.}} -| rdfs:subClassOf = SportsLeague -}}OntologyClass:VolleyballPlayer2004246467212015-03-21T14:51:52Z{{Class -| labels = -{{label|en|volleyball player}} -{{label|de|Volleyballspieler}} -{{label|el|παίχτης βόλεϊ}} -{{label|pl|siatkarz}} -{{label|nl|volleyballer}} -{{label|ko|배구 선수}} -| rdfs:subClassOf = Athlete -| owl:equivalentClass = wikidata:Q15117302 -}}OntologyClass:WaterPoloPlayer2009553467222015-03-21T14:56:15Z{{Class -| labels = -{{label|en|water polo Player}} -{{label|de|Wasserpolo Spieler}} -{{label|nl|waterpoloër}} -{{label|it|giocatore di pallanuoto}} -| rdfs:subClassOf = Athlete -}}OntologyClass:WaterRide2008006492782015-10-18T12:09:02Z{{Class -| labels = -{{label|en|water ride}} -{{label|ga|marcaíocht uisce}} -{{label|de|Wasserbahn}} -{{label|nl|waterbaan}} -| rdfs:subClassOf = AmusementParkAttraction -| owl:equivalentClass = wikidata:Q2870166 -}}OntologyClass:WaterTower2006282469662015-03-22T18:28:10Z{{Class -| labels = -{{label|en|Water tower}} -{{label|el|πύργος νερού}} -{{label|de|Wasserturm}} -{{label|it|Serbatoio idrico a torre}} -{{label|nl|Watertoren}} -{{label|fr|Château d'eau}} -| rdfs:subClassOf = Tower -| comments = -{{comment|el| μια κατασκευή σχεδιασμένη για αποθήκευση μεγάλων ποσοτήτων νερού σε μέρος με κάποια ανύψωση, ώστε να διατηρήσει πίεση στο σύστημα παροχής νερού}} -{{comment|en|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}} -{{comment|fr|une construction destinée à entreposer l'eau, et placée en général sur un sommet géographique pour permettre de la distribuer sous pression}} -| owl:equivalentClass = wikidata:Q274153 -}}OntologyClass:Watermill2006010509562016-04-26T03:42:28Z{{Class -| labels = -{{label|el|Νερόμυλος}} -{{label|fr|Moulin à eau}} -{{label|en|Watermill}} -{{label|ga|muileann uisce}} -{{label|de|Wassermühle}} -{{label|it|mulino ad acqua}} -{{label|nl|Watermolen}} -{{label|ja|水車小屋}} -| rdfs:subClassOf = Mill -| comments = -{{comment|en|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)}} -| owl:equivalentClass = wikidata:Q185187 -}}OntologyClass:WaterwayTunnel2003392511572016-06-06T12:35:04Z{{Class -| labels = -{{label|en|waterway tunnel}} -{{label|ga|tollán uiscebhealaigh}} -{{label|de|Kanaltunnel}} -{{label|fr|tunnel de voie navigable}} -{{label|nl|kanaaltunnel}} -| rdfs:subClassOf = RouteOfTransportation -}}OntologyClass:Weapon200484521162017-06-19T11:07:44Z{{Class -| labels = -{{label|en|weapon}} -{{label|ga|arm}} -{{label|el|όπλο}} -{{label|da|våben}} -{{label|de|Waffe}} -{{label|fr|arme}} -{{label|ko|무기}} -{{label|ja|武器}} -{{label|nl|wapen}} -| rdfs:subClassOf = Device, schema:Product -| specificProperties = - {{SpecificProperty | ontologyProperty = length | unit = millimetre }} - {{SpecificProperty | ontologyProperty = height | unit = millimetre }} - {{SpecificProperty | ontologyProperty = weight | unit = kilogram }} - {{SpecificProperty | ontologyProperty = width | unit = millimetre }} - {{SpecificProperty | ontologyProperty = diameter | unit = millimetre }} -| owl:equivalentClass = wikidata:Q728 -}}OntologyClass:Website200485521592017-07-11T11:13:47Z{{Class -| labels = -{{label|en|website}} -{{label|ga|suíomh idirlín}} -{{label|gl|sitio web}} -{{label|de|Webseite}} -{{label|el|Ιστότοπος}} -{{label|fr|site web}} -{{label|ko|웹사이트}} -{{label|nl|website}} -{{label|ja|ウェブサイト}} -| rdfs:subClassOf = Work -| owl:equivalentClass = schema:WebSite -}}OntologyClass:WikimediaTemplate20011965525442017-10-25T11:24:41Z{{Class -| labels= -{{label|en|Wikimedia template}} -{{label|de|Wikimedia-Vorlage}} -{{label|fr|modèle de Wikimedia}} -| comments= -{{comment|en|DO NOT USE THIS CLASS! This is for internal use only!}} -| owl:equivalentClass = wikidata:Q11266439 -| rdfs:subClassOf = Unknown -}}OntologyClass:WindMotor2006313511582016-06-06T12:37:19Z{{Class -| labels = -{{label|en|Wind motor}} -{{label|de|Windkraft}} -{{label|fr|éolienne}} -{{label|nl|Roosmolen}} -| rdfs:subClassOf = Mill -| comments = -{{comment|en|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.}} -| owl:equivalentClass = wikidata:Q15854792 -}}OntologyClass:Windmill2006009521182017-06-19T11:08:49Z{{Class -| labels = -{{label|el|Ανεμόμυλος}} -{{label|en|Windmill}} -{{label|da|vindmølle}} -{{label|de|Windmühle}} -{{label|it|mulino a vento}} -{{label|nl|Windmolen}} -{{label|fr|moulin à vent}} -{{label|es|Molinos de viento}} -{{label|ga|muileann gaoithe}} -{{label|ja|風車}} - -| rdfs:subClassOf = Mill -|comments = - {{comment|en|A windmill is a machine that converts the energy of wind into rotational energy by means of vanes called sails}} - {{comment|fr|Le moulin à vent est un dispositif qui transforme l’énergie éolienne (énergie cinétique du vent) en mouvement rotatif au moyen d’ailes ajustables.<ref name="moulin à vent">http://fr.wikipedia.org/wiki/Moulin_%C3%A0_vent</ref>}} -| owl:equivalentClass = wikidata:Q38720 -}} - -==References== -<references/>OntologyClass:Wine2005830521172017-06-19T11:08:08Z{{Class -|labels= - {{label|en|wine}} -{{label|ga|fíon}} - {{label|el|κρασί}} - {{label|da|vin}} - {{label|de|Wein}} - {{label|it|vino}} - {{label|ja|ワイン}} - {{label|nl|wijn}} - {{label|fr|vin}} - {{label|es|vino}} -| rdfs:subClassOf = Beverage -| owl:equivalentClass = wikidata:Q282 -}}OntologyClass:WineRegion200486470482015-03-23T10:04:02Z{{Class -| labels = -{{label|en|wine region}} -{{label|de|Weinregion}} -{{label|fr|région viticole}} -{{label|ja|ワイン産地}} -{{label|nl|wijnstreek}} -| rdfs:subClassOf = Place -}}OntologyClass:Winery2008722511542016-06-06T12:29:36Z{{Class -| labels = -{{label|en|winery}} -{{label|ga|fíonlann}} -{{label|el|οινοποιείο}} -{{label|de|Weinkellerei}} -{{label|fr|établissement vinicole}} -{{label|it|casa vinicola}} -{{label|nl|wijnmakerij}} -{{label|ja|ワイナリー}} -| rdfs:subClassOf = Company -| owl:equivalentClass = wikidata:Q156362 -}}OntologyClass:WinterSportPlayer20011157519042017-02-19T15:54:36Z{{Class -| labels = -{{label|en|winter sport Player}} -{{label|de|Wintersportspieler}} -{{label|nl|wintersporter}} -{{label|fr|Joueur de sport d'hiver}} -| rdfs:subClassOf = Athlete -}}OntologyClass:Woman20012288535812020-01-30T10:08:07Z{{Class -| labels = -{{label|en|woman}} -{{label|ru|женщина}} -{{label|pl|kobieta}} -{{label|fr|femme}} -{{label|da|kvinde}} -{{label|de|Frauen}} -{{label|ko|여자}} -{{label|ja|女性}} -{{label|nl|vrouw}} -{{label|it|donna}} -| rdfs:subClassOf = Person -| owl:equivalentClass = wikidata:Q467 -}}OntologyClass:WomensTennisAssociationTournament200487470272015-03-22T22:17:57Z{{Class -| labels = -{{label|en|Women's Tennis Association tournament}} -{{label|de|WTA Turnier}} -{{label|fr|Tournoi de la Women's Tennis Association}} -{{label|it|Torneo di Women's Tennis Association}} -{{label|nl|WTA-toernooi}} -| rdfs:subClassOf = Tournament -}}OntologyClass:Work200488520842017-06-19T10:36:08Z{{Class -| labels = -{{label|en|work}} -{{label|ga|obair}} -{{label|pt|obra}} -{{label|fr|œuvre}} -{{label|el|δημιουργία}} -{{label|da|arbejde}} -{{label|de|Werk}} -{{label|nl|werk}} -{{label|ja|仕事}} -| owl:equivalentClass = schema:CreativeWork, wikidata:Q386724 -| owl:disjointWith = wgs84_pos:SpatialThing -| specificProperties = {{SpecificProperty | ontologyProperty = runtime | unit = minute }} -| rdfs:subClassOf = owl:Thing -}}OntologyClass:WorldHeritageSite200489515302016-09-23T22:29:58Z{{Class -| labels = -{{label|en|World Heritage Site}} -{{label|nl|werelderfgoed}} -{{label|ga|Láithreán Oidhreachta Domhanda}} -{{label|de|Weltkulturerbe}} -{{label|el|Μνημείο Παγκόσμιας Πολιτιστικής Κληρονομιάς (Πληροφορίες ΠΠΚ)}} -{{label|fr|site du patrimoine mondial}} -{{label|ko|세계유산}} -{{label|ja|世界遺産}} -| comments = -{{comment|en|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.}} -| rdfs:subClassOf = Place -| owl:equivalentClass = wikidata:Q9259 -}}OntologyClass:Wrestler200490482042015-05-25T15:21:31Z{{Class -| labels = -{{label|en|wrestler}} -{{label|ga|coraí}} -{{label|de|Ringer}} -{{label|el|παλαιστής}} -{{label|fr|lutteur}} -{{label|ja|レスラー}} -{{label|nl|worstelaar}} -| rdfs:subClassOf = Athlete -| owl:equivalentClass = wikidata:Q13474373 -}}OntologyClass:WrestlingEvent200491468862015-03-22T12:26:02Z{{Class -| labels = -{{label|en|wrestling event}} -{{label|el|αγώνας πάλης}} -{{label|de|Wrestling-Veranstaltung}} -{{label|fr|match de catch}} -{{label|nl|worstelevenement}} -| rdfs:subClassOf = SportsEvent -}}OntologyClass:Writer200492523432017-10-10T13:45:11Z{{Class -| labels = -{{label|en|writer}} -{{label|fr|écrivain}} -{{label|da|forfatter}} -{{label|de|schriftsteller}} -{{label|el|συγγραφέας}} -{{label|es|escritor}} -{{label|ko|작가}} -{{label|nl|auteur}} -{{label|ja|著作家}} -{{label|pl|pisarz}} -{{label|ga|scríbhneoir}} -{{label|lv|rakstnieks}} - -| rdfs:subClassOf = Person -| owl:equivalentClass = wikidata:Q36180 -}}OntologyClass:WrittenWork2003736520972017-06-19T10:47:11Z{{Class -|labels = - {{label|en|written work}} -{{label|ga|obair scríofa}} - {{label|da|skriftligt værk}} - {{label|de|geschriebenes Erzeugnis}} - {{label|nl|geschreven werk}} - {{label|fr|œuvre écrite}} - {{label|es|obra escrita}} -| comments = -{{comment|en|Written work is any text written to read it (e.g.: books, newspaper, articles)}} -{{comment|de|Ein geschriebenes Erzeugnis ist jede Art von Text der geschrieben wurde um ihn zu lesen (z.B. Bücher, Zeitungen, Artikel). }} -| rdfs:subClassOf = Work -| owl:equivalentClass = wikidata:Q234460 -}}OntologyClass:Year2004814528452018-02-08T20:33:17Z{{Class -| labels = - {{label|en|year}} - {{label|el|έτος}} - {{label|da|år}} - {{label|de|Jahr}} - {{label|pt|ano}} - {{label|ja|年}} - {{label|nl|jaar}} - {{label|fr|année}} - {{label|es|año}} - {{label|pl|rok}} - {{label|ga|bliain}} -| rdfs:subClassOf = TimePeriod -| owl:equivalentClass = wikidata:Q577 -}}OntologyClass:YearInSpaceflight200493470842015-03-23T14:19:41Z{{Class -| labels = -{{label|en|year in spaceflight}} -{{label|es|año del vuelo espacial}} -{{label|fr|année de vols spatiaux}} -{{label|nl|vliegjaren}} -{{label|de|Zeitraum Raumflug}} -| rdfs:subClassOf = TimePeriod -}}OntologyClass:Zoo2009215523422017-10-10T13:44:45Z{{Class -| labels = -{{label|en|zoo}} -{{label|ga|zú}} -{{label|da|zoo}} -{{label|de|Zoo}} -{{label|fr|zoo}} -{{label|ja|動物園}} -{{label|el|ζωολογικός κήπος}} -{{label|nl|dierentuin}} -| rdfs:subClassOf = ArchitecturalStructure -| owl:equivalentClass = wikidata:Q43501 -}}OntologyProperty:ASide202567473762015-03-31T14:24:04Z{{DatatypeProperty -| rdfs:label@en = a side -| rdfs:label@ca = cara A -| rdfs:label@de = Single -| rdfs:label@el = εξώφυλλο -| rdfs:label@ga = taobh a -| rdfs:label@pl = strona A -| rdfs:label@sr = страна -| rdfs:domain = Single -| rdfs:range = xsd:string -| rdfs:comment@en = -}}OntologyProperty:AbbeychurchBlessing2027823491392015-10-13T09:46:06Z{{DatatypeProperty -| rdfs:label@en = abbey church blessing -| rdfs:label@de = Abteikirche weihe -| rdfs:label@sr = опатијски црквени благослов -| rdfs:domain = Cleric -| rdfs:range = xsd:string -}}OntologyProperty:AbbeychurchBlessingCharge2027822491402015-10-13T09:46:42Z{{DatatypeProperty -| rdfs:label@en = abbey church blessing charge -| rdfs:domain = Cleric -| rdfs:range = xsd:string -}}OntologyProperty:Abbreviation202494473742015-03-31T14:21:47Z{{DatatypeProperty -| labels = -{{label|en|abbreviation}} -{{label|nl|afkorting}} -{{label|el|συντομογραφία}} -{{label|de|Abkürzung}} -{{label|fr|abréviation}} -{{label|ga|giorrúchán}} -{{label|sr|скраћеница}} -{{label|pl|skrót}} -| rdfs:domain = owl:Thing -| rdfs:range = xsd:string -| owl:equivalentProperty = wikidata:P743 -}}OntologyProperty:AbleToGrind2028409458352015-03-14T14:10:12Z{{DatatypeProperty -| labels = -{{label|en|able to grind}} -{{label|de|mahlenfähig}} -{{label|nl|maalvaardig}} -| rdfs:domain = Mill -| rdfs:range = xsd:string -}}OntologyProperty:AbsoluteMagnitude2024355510762016-05-14T13:53:19Z{{DatatypeProperty - |rdfs:label@en=absolute magnitude - |rdfs:label@el=απόλυτο μέγεθος - |rdfs:label@de=absolute Helligkeit - |rdfs:label@fr=magnitude absolue - |rdfs:label@ga=dearbhmhéid - |rdfs:label@pl=wielkość absolutna - |rdfs:label@sr=апсолутна магнитуда - |rdfs:domain=CelestialBody - |rdfs:range=xsd:double - |owl:equivalentProperty = wikidata:P1457 -}}OntologyProperty:Abstentions2029132476312015-04-03T14:01:01Z{{DatatypeProperty -| rdfs:label@en = abstentions -| rdfs:label@el = Αριθμός αποχών μετά από ψηφοφορία -| rdfs:label@de = Anzahl der Enthaltungen nach der Abstimmung -| rdfs:label@ga = staonadh -| rdfs:label@nl = Aantal onthoudingen -| rdfs:comment@en = Number of abstentions from the vote -| rdfs:comment@ga= an líon daoine a staon ó vótáil -| rdfs:domain = StatedResolution -| rdfs:range = xsd:nonNegativeInteger -}}OntologyProperty:Abstract202495458442015-03-14T20:05:59Z'''{{Reserved for DBpedia}}''' - -{{DatatypeProperty -| labels = -{{label|en|has abstract}} -{{label|de|abstract}} -{{label|el|έχει περίληψη}} -{{label|sr|апстракт}} -| comments = -{{comment|en|Reserved for DBpedia. {{Reserved for DBpedia}}}} -{{comment|el|Προορίζεται για την DBpedia. {{Reserved for DBpedia}}}} -| rdfs:range = rdf:langString -}}OntologyProperty:AcademicAdvisor202496357812014-07-08T12:22:38Z -{{ObjectProperty -| labels = - {{label|en|academic advisor}} - {{label|nl|promotor}} - {{label|el|ακαδημαϊκοί_σύμβουλοι}} - {{label|sr|академски саветник}} -| rdfs:domain = Scientist -| rdfs:range = Person -| rdfs:subPropertyOf = dul:coparticipatesWith -}}OntologyProperty:AcademicDiscipline2023739357802014-07-08T12:22:15Z{{ObjectProperty -| rdfs:label@en = academic discipline -| rdfs:label@de = wissenschaftliche Disziplin -| rdfs:label@sr = академска дисциплина -| rdfs:domain = AcademicJournal -| rdfs:range = owl:Thing -| rdfs:comment@en = 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. -| rdfs:subPropertyOf = dul:isAbout -}}OntologyProperty:AcademyAward202497478272015-04-28T15:53:02Z{{ObjectProperty -| rdfs:label@en = Academy Award -| rdfs:label@de = Academy Award -| rdfs:label@el = Βραβείο ακαδημίας -| rdfs:label@ga = Duais an Acadaimh -| rdfs:label@pl = Nagroda Akademii Filmowej -| rdfs:label@sr = оскар -| rdfs:domain = Artist -| rdfs:range = Award -| rdfs:subPropertyOf = dul:coparticipatesWith -}}OntologyProperty:Acceleration202498526632017-11-18T08:44:32Z{{DatatypeProperty -| rdfs:label@ca = acceleració -| rdfs:label@de = Beschleunigung -| rdfs:label@en = acceleration -| rdfs:label@nl = acceleratie -| rdfs:label@el = επιτάχυνση -| rdfs:label@ga = luasghéarú -| rdfs:label@pl = przyspieszenie -| rdfs:label@sr = убрзање -| rdfs:domain = AutomobileEngine -| rdfs:range = Time -| rdf:type = owl:FunctionalProperty -}}OntologyProperty:Access202499526642017-11-18T08:46:53Z{{DatatypeProperty -| rdfs:label@en = access -| rdfs:label@nl = toegang -| rdfs:label@de = Zugriff -| rdfs:label@el = πρόσβαση -| rdfs:label@sr = приступ -| rdfs:range = xsd:string -}}OntologyProperty:AccessDate202500526652017-11-18T08:49:21Z{{DatatypeProperty -| rdfs:label@en = access date -| rdfs:label@nl = toegangsdatum -| rdfs:label@de = Zugriffsdatum -| rdfs:label@el = ημερομηνία πρόσβασης -| rdfs:label@sr = датум приступа -| rdfs:range = xsd:date -}}OntologyProperty:Achievement2026061526662017-11-18T08:51:48Z{{ObjectProperty -|labels = - {{label|en|achievement}} - {{label|nl|prestatie}} - {{label|de|Leistung}} - {{label|el|κατόρθωμα}} - {{label|fr|haut fait, accomplissement}} - {{label|es|logro}} - {{label|sr|достигнуће}} -| rdfs:domain = Person -}}OntologyProperty:AcquirementDate2023101456232015-03-11T11:30:00Z{{DatatypeProperty -| rdfs:label@en=date of acquirement -| rdfs:label@de=Anschaffungszeitpunkt -| rdfs:label@el=ημερομηνία απόκτησης -| rdfs:domain = Ship -| rdfs:range = xsd:date - -}}OntologyProperty:ActScore2023139357832014-07-08T12:36:12Z -{{ObjectProperty -| rdfs:label@en = ACT score -| rdfs:label@el = ACT σκορ -| rdfs:label@sr = ACT резултат -| rdfs:comment@en = most recent average ACT scores -| rdfs:comment@el = ποιό πρόσφατες μέσες βαθμολογίες ACT -| rdfs:domain = School -| rdfs:subPropertyOf = dul:hasQuality -}}OntologyProperty:ActingHeadteacher202501525752017-10-31T08:24:27Z -{{ObjectProperty -| rdfs:label@en = acting headteacher -| rdfs:label@el = διευθυντής σχολείου -| rdfs:label@sr = вд шефа наставе -| rdfs:domain = EducationalInstitution -| rdfs:range = Person -| rdfs:subPropertyOf = dul:coparticipatesWith -}}OntologyProperty:ActiveCases20212297536082020-04-10T06:18:00Z{{DatatypeProperty -| labels = -{{label|en|Active Cases}} -| rdfs:comment@en = Number of active cases in a pandemic -| rdfs:domain = Outbreak -| rdfs:range = xsd:integer -}}OntologyProperty:ActiveYears2027752537922020-10-26T22:52:41Z{{DatatypeProperty -| labels = -{{label|en|active years}} -{{label|de|aktive Jahre}} -{{label|sr|активне године}} -| rdfs:domain = Person -| rdfs:range = xsd:string -| rdfs:comment@en = Also called "floruit". Use this if the active years are in one field that can't be split. Else use activeYearsStartYear and activeYearsEndYear -| owl:equivalentProperty = gnd:periodOfActivity -}}OntologyProperty:ActiveYearsEndDate202502303542014-01-21T10:27:11Z{{DatatypeProperty -| labels = -{{label|en|active years end date}} -{{label|el|ενεργή ημερομηνία λήξης χρόνου}} -{{label|nl|actieve jaren einddatum}} -{{label|sr|датум завршетка активних година}} -| rdfs:range = xsd:date -}}OntologyProperty:ActiveYearsEndDateMgr2027659269182013-07-03T12:22:59Z{{DatatypeProperty -| labels = -{{label|en|active years end date manager}} -| rdfs:domain = Person -| rdfs:range = xsd:string -}}OntologyProperty:ActiveYearsEndYear202503303612014-01-21T10:32:07Z{{DatatypeProperty -| labels = -{{label|en|active years end year}} -{{label|ja|引退年}} -{{label|el|ενεργά χρόνια τέλος του χρόνου}} -{{label|nl|actieve jaren eind jaar}} -{{label|sr|последња година активних година}} -| rdfs:domain = owl:Thing -| rdfs:range = xsd:gYear -}}OntologyProperty:ActiveYearsEndYearMgr2027660269192013-07-03T12:23:17Z{{DatatypeProperty -| labels = -{{label|en|active years end year manager}} -| rdfs:domain = Person -| rdfs:range = xsd:gYear -}}OntologyProperty:ActiveYearsStartDate202504303632014-01-21T10:33:30Z{{DatatypeProperty -| labels = -{{label|en|active years start date}} -{{label|el|ενεργά χρόνια ημερομηνία έναρξης}} -{{label|nl|actieve jaren startdatum}} -{{label|fr|date de début d'activité}} -{{label|sr|датум почетка активних година}} -| rdfs:range = xsd:date -}}OntologyProperty:ActiveYearsStartDateMgr2027657269162013-07-03T12:21:58Z{{DatatypeProperty -| labels = -{{label|en|active years start date manager}} -| rdfs:domain = Person -| rdfs:range = xsd:date -}}OntologyProperty:ActiveYearsStartYear202505303652014-01-21T10:35:43Z{{DatatypeProperty -| labels = -{{label|en|active years start year}} -{{label|el|ενεργός χρόνος έτος λειτουργίας}} -{{label|nl|actieve jaren start jaar}} -{{label|sr|почетна година активних година}} -| rdfs:domain = owl:Thing -| rdfs:range = xsd:gYear -}}OntologyProperty:ActiveYearsStartYearMgr2027658269172013-07-03T12:22:38Z{{DatatypeProperty -| labels = -{{label|en|active years start year manager}} -| rdfs:domain = Person -| rdfs:range = xsd:gYear -}}OntologyProperty:Activity2026815345692014-04-13T08:57:35Z{{ObjectProperty -| labels = -{{label|en|activity}} -{{label|el|δραστηριότητα}} -{{label|de|Aktivität}} -{{label|sr|активност}} -| rdfs:domain = Person -}}OntologyProperty:Address202507536932020-09-04T15:15:42Z{{DatatypeProperty -| labels = -{{label|en|address}} -{{label|de|Adresse}} -{{label|fr|adresse}} -{{label|sr|адреса}} -{{label|ru|адрес}} -{{label|nl|adres}} -{{label|el|διεύθυνση}} -| rdfs:domain = Place -| rdfs:range = rdf:langString -| owl:equivalentProperty = schema:address, wikidata:P969, ceo:volledigAdres -|comments= -{{comment|en|Address of something as literal. Usually Building, but we also use it for the address of a Region's or Settlement's government}} -}}OntologyProperty:AddressInRoad2023267357852014-07-08T12:36:28Z -{{ObjectProperty -| rdfs:label@en = address in road -| rdfs:label@de = Adresse in Straße -| rdfs:label@el = διεύθυνση στον δρόμο -| rdfs:label@sr = Адреса на путу -| rdfs:domain = Road -| rdfs:range = owl:Thing -| rdfs:comment@en = A building, organisation or other thing that is located in the road. -| rdfs:comment@el = Ένα κτήριο, οργανισμός ή κάτι άλλο που βρίσκεται στον δρόμο. -| rdfs:subPropertyOf = dul:isLocationOf -}}OntologyProperty:AdjacentSettlement2026943492022015-10-14T13:05:30Z{{ObjectProperty -| labels = - {{label|en|adjacent settlement of a switzerland settlement}} - {{label|sr|Суседно насеље у Швајцарској}} -| rdfs:domain = Settlement -| rdfs:range = Settlement -| rdfs:subPropertyOf = dul:nearTo -}}OntologyProperty:AdministrativeCenter2026847491952015-10-14T12:29:50Z{{ObjectProperty -| labels = - {{label|en|administrative center}} - {{label|de|Verwaltungszentrum}} - {{label|sr|административни центар}} -| rdfs:domain = AdministrativeRegion -| rdfs:range = Place -| rdfs:subPropertyOf = dul:sameSettingAs -}}OntologyProperty:AdministrativeCollectivity202508357882014-07-08T12:36:52Z -{{ObjectProperty -| labels = - {{label|en|administrative collectivity}} - {{label|de|Verwaltungsgemeinschaft}} - {{label|nl|administratieve gemeenschap}} - {{label|el|διοικητική συλλογικότητα}} - {{label|sr|административна заједница}} -| rdfs:domain = Settlement -| rdfs:range = PopulatedPlace -| rdfs:subPropertyOf = dul:coparticipatesWith -}}OntologyProperty:AdministrativeDistrict202509357892014-07-08T12:37:01Z - -{{ObjectProperty -| labels = - {{label|en|administrative district}} - {{label|de|Verwaltungsbezirk}} - {{label|nl|provincie}} - {{label|el|δήμος}} - {{label|sr|управни округ}} -| rdfs:domain = Settlement -| rdfs:range = PopulatedPlace -| rdfs:subPropertyOf = http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#isPartOf, dul:isPartOf -}}OntologyProperty:AdministrativeHeadCity2028062306962014-01-22T10:36:49Z{{ObjectProperty -| labels = -{{label|en|head city}} -{{label|fr|ville dirigeante}} -{{label|es|ciudad a la cabeza}} -{{label|sr|административни центар (град)}} -| comments = -{{comment|en|city where stand the administrative power}} -{{comment|fr|ville où siège le pouvoir administratif}} -| rdfs:domain = PopulatedPlace -| rdfs:range = City -}}OntologyProperty:AdministrativeStatus2027225333842014-04-03T14:01:04Z{{DatatypeProperty -| labels = -{{label|en|administrative status}} -{{label|de|administrativer Status}} -{{label|sr|административни статус}} -| rdfs:range = xsd:string -}}OntologyProperty:Administrator202510525742017-10-31T08:21:57Z -{{ObjectProperty -| labels = -{{label|en|administrator}} -{{label|de|Verwalter}} -{{label|sr|управник}} -{{label|el|διαχειριστής}} -| rdfs:domain = Organisation -| rdfs:range = Person -}}OntologyProperty:AfdbId2023301459702015-03-16T13:31:56Z{{DatatypeProperty -| rdfs:label@en = afdb id -| rdfs:label@el = afdb id -| rdfs:label@pt = código no afdb -| rdfs:label@sr = AFDB ID -| rdfs:label@de = AFDB ID -| rdfs:domain = Film -| rdfs:range = xsd:string -}}OntologyProperty:Affair2027559303942014-01-21T11:05:05Z{{DatatypeProperty -| labels = -{{label|en|affair}} -{{label|sr|афера}} -| rdfs:domain = Person -| rdfs:range = xsd:string -}}OntologyProperty:Affiliate2026821306942014-01-22T10:35:11Z{{DatatypeProperty -| labels = -{{label|en|affiliate}} -| rdfs:domain = FictionalCharacter -| rdfs:range = xsd:string -}}OntologyProperty:Affiliation202511537942020-10-26T23:29:49Z -{{ObjectProperty -| labels = - {{label|en|affiliation}} - {{label|el|ιστολόγιο}} - {{label|nl|lidmaatschap}} - {{label|sr|припадност}} -| rdfs:range = Organisation -| rdfs:subPropertyOf = dul:coparticipatesWith -| owl:equivalentProperty = gnd:affiliation -}}OntologyProperty:AfiAward202512357922014-07-08T12:37:30Z -{{ObjectProperty -| rdfs:label@en = AFI Award -| rdfs:label@el = βραβείο AFI -| rdfs:label@sr = AFI награда -| rdfs:domain = Artist -| rdfs:range = Award -| rdfs:subPropertyOf = dul:coparticipatesWith -}}OntologyProperty:Age2026153526622017-11-18T08:42:19Z{{DatatypeProperty -| rdfs:label@en = age -| rdfs:label@nl = leeftijd -| rdfs:label@de = Alter -| rdfs:label@el = ηλικία -| rdfs:label@sr = старост -| rdfs:domain = Agent -| rdfs:range = xsd:integer -}}OntologyProperty:AgeRange202513487042015-08-10T10:26:36Z{{DatatypeProperty -| rdfs:label@en = age range -| rdfs:label@de = Altersgruppe -| rdfs:label@el = εύρος ηλικίας -| rdfs:label@sr = опсег година -| rdfs:comment@en = Age range of students admitted in a School, MilitaryUnit, etc -| rdfs:range = xsd:nonNegativeInteger -}}OntologyProperty:Agency2027542333882014-04-03T14:01:21Z{{ObjectProperty -| labels = -{{label|en|agency}} -{{label|de|Agentur}} -{{label|sr|делатност}} -| rdfs:domain = Person -}}OntologyProperty:AgencyStationCode2023247304052014-01-21T11:18:52Z{{DatatypeProperty -| labels = -{{label|en|agency station code}} -{{label|nl|stationscode}} -{{label|de|Stationsabkürzung}} -{{label|el|κωδικός πρακτορείου }} -{{label|sr|код станице }} -| rdfs:domain = Station -| rdfs:range = xsd:string -| rdfs:comment@en = Agency station code (used on tickets/reservations, etc.). -| rdfs:comment@de = Offizielle Stationsabkürzung (beispielsweise benutzt auf Fahrkarten). Für Deutschland siehe: http://en.wikipedia.org/wiki/List_of_Deutsche_Bahn_station_abbreviations -| rdfs:comment@el = Κωδικός πρακτορείου (χρησιμοποιείται σε εισιτήρια/κρατήσεις,κτλ.). -}}OntologyProperty:Agglomeration2027933304062014-01-21T11:20:57Z{{ObjectProperty -| labels = -{{label|en|agglomeration}} -{{label|sr|агломерација}} -| rdfs:domain = PopulatedPlace -| rdfs:range = Agglomeration -}}OntologyProperty:AgglomerationArea2026930473492015-03-30T18:03:46Z{{ObjectProperty -| labels = -{{label|en|agglomeration area}} -{{label|de|Ballungsraum}} -{{label|sr|област агломерације}} -| rdfs:domain = PopulatedPlace -| rdfs:range = Area -}}OntologyProperty:AgglomerationDemographics2027914304082014-01-21T11:23:20Z{{ObjectProperty -| labels = -{{label|en|agglomeration demographics}} -{{label|sr|демографија агломерације}} -| rdfs:domain = PopulatedPlace -| rdfs:range = Demographics -}}OntologyProperty:AgglomerationPopulation2026783306802014-01-22T10:00:41Z{{ObjectProperty -| labels = -{{label|en|agglomeration population}} -{{label|sr|популација агломерације}} -| rdfs:domain = Settlement -| rdfs:range = Population -}}OntologyProperty:AgglomerationPopulationTotal2027915306792014-01-22T10:00:22Z{{DatatypeProperty -| labels = -{{label|en|agglomeration population total}} -{{label|sr|укупна популација агломерације}} -| rdfs:range = xsd:nonNegativeInteger -}}OntologyProperty:AgglomerationPopulationYear2026784306782014-01-22T09:59:14Z{{DatatypeProperty -| labels = -{{label|en|agglomerationPopulationYear}} -{{label|sr|година популације агломерације}} -| rdfs:domain = Settlement -| rdfs:range = xsd:string -}}OntologyProperty:Aggregation20210305388582014-12-08T21:49:32Z{{DatatypeProperty -| rdfs:label@en = Aggregation -| rdfs:label@nl = Aggregatie -| rdfs:domain = ChemicalSubstance -| rdfs:range = xsd:string -}}OntologyProperty:AirDate202530304182014-01-21T12:19:44Z{{DatatypeProperty -| rdfs:label@en = airdate -| rdfs:label@el = ημερομηνία αέρα -| rdfs:label@sr = датум емитовања -| rdfs:domain = RadioStation -| rdfs:range = xsd:date -}}OntologyProperty:AircraftAttack202514357932014-07-08T12:37:37Z -{{ObjectProperty -| rdfs:label@en = aircraft attack -| rdfs:label@de = Flugzeugangriff -| rdfs:label@sr = напад из ваздуха -| rdfs:label@el = επίθεση αεροσκάφους -| rdfs:domain = MilitaryUnit -| rdfs:range = MeanOfTransportation -| rdfs:subPropertyOf = dul:coparticipatesWith -}}OntologyProperty:AircraftBomber202515357942014-07-08T12:37:46Z -{{ObjectProperty -| rdfs:label@en = aircraft bomber -| rdfs:label@sr = авион бомбардер -| rdfs:label@el = βομβαρδιστικό αεροσκάφος -| rdfs:domain = MilitaryUnit -| rdfs:range = MeanOfTransportation -| rdfs:subPropertyOf = dul:coparticipatesWith -}}OntologyProperty:AircraftElectronic202516357952014-07-08T12:37:54Z -{{ObjectProperty -| rdfs:label@en = aircraft electronic -| rdfs:label@el = ηλεκτρονικό αεροσκάφος -| rdfs:domain = MilitaryUnit -| rdfs:range = MeanOfTransportation -| rdfs:subPropertyOf = dul:coparticipatesWith -}}OntologyProperty:AircraftFighter202517357962014-07-08T12:38:03Z -{{ObjectProperty -| rdfs:label@en = aircraft fighter -| rdfs:label@sr = борбени авион -| rdfs:label@el = μαχητικό αεροσκάφος -| rdfs:domain = MilitaryUnit -| rdfs:range = MeanOfTransportation -| rdfs:subPropertyOf = dul:coparticipatesWith -}}OntologyProperty:AircraftHelicopter202518357972014-07-08T12:38:11Z -{{ObjectProperty -| labels = - {{label|en|aircraft helicopter}} - {{label|de|Hubschrauber}} - {{label|sr|хеликоптер}} - {{label|el|ελικοφόρο αεροσκάφος}} -| rdfs:domain = MilitaryUnit -| rdfs:range = MeanOfTransportation -| rdfs:subPropertyOf = dul:coparticipatesWith -}}OntologyProperty:AircraftHelicopterAttack202519357982014-07-08T12:38:18Z -{{ObjectProperty -| labels = - {{label|en|aircraft helicopter attack}} - {{label|de|Hubschrauberangriff}} - {{label|el|επίθεση ελικοφόρων αεροσκαφών}} - {{label|sr|ваздушни напад хеликоптером}} -| rdfs:domain = MilitaryUnit -| rdfs:range = MeanOfTransportation -| rdfs:subPropertyOf = dul:coparticipatesWith -}}OntologyProperty:AircraftHelicopterCargo202520357992014-07-08T12:38:26Z -{{ObjectProperty -| labels = - {{label|en|aircraft helicopter cargo}} - {{label|el|φορτίο ελικοφόρου αεροσκάφους}} - {{label|sr|теретни хеликоптер}} -| rdfs:domain = MilitaryUnit -| rdfs:range = MeanOfTransportation -| rdfs:subPropertyOf = dul:coparticipatesWith -}}OntologyProperty:AircraftHelicopterMultirole202521358002014-07-08T12:38:34Z -{{ObjectProperty -| labels = - {{label|en|aircraft helicopter multirole}} - {{label|de|Mehrzweck-Hubschrauber}} - {{label|el|ελικοφόρο αεροσκάφος πολλαπλών ρόλων}} - {{label|sr|вишенаменски хеликоптер}} -| rdfs:domain = MilitaryUnit -| rdfs:range = MeanOfTransportation -| rdfs:subPropertyOf = dul:coparticipatesWith -}}OntologyProperty:AircraftHelicopterObservation202522358012014-07-08T12:38:43Z -{{ObjectProperty -| labels = - {{label|en|aircraft helicopter observation}} - {{label|el|παρατήρηση ελικοφόρου αεροσκάφους}} - {{label|sr|осматрање хеликоптером}} -| rdfs:domain = MilitaryUnit -| rdfs:range = MeanOfTransportation -| rdfs:subPropertyOf = dul:coparticipatesWith -}}OntologyProperty:AircraftHelicopterTransport202523358022014-07-08T12:38:51Z -{{ObjectProperty -| labels = - {{label|en|aircraft helicopter transport}} - {{label|el|μεταφορές που πραγματοποιούνται με ελικοφόρο αεροσκάφος}} - {{label|sr|транспортни хеликоптер}} -| rdfs:domain = MilitaryUnit -| rdfs:range = MeanOfTransportation -| rdfs:subPropertyOf = dul:coparticipatesWith -}}OntologyProperty:AircraftHelicopterUtility202524358032014-07-08T12:39:12Z -{{ObjectProperty -| rdfs:label@en = aircraft helicopter utility -| rdfs:domain = MilitaryUnit -| rdfs:range = MeanOfTransportation -| rdfs:subPropertyOf = dul:coparticipatesWith -}}OntologyProperty:AircraftInterceptor202525358042014-07-08T12:39:20Z -{{ObjectProperty -| labels = - {{label|en|aircraft interceptor}} - {{label|el|αναχαίτιση αεροσκάφους}} - {{label|sr|авион пресретач}} -| rdfs:domain = MilitaryUnit -| rdfs:range = MeanOfTransportation -| rdfs:subPropertyOf = dul:coparticipatesWith -}}OntologyProperty:AircraftPatrol202526358052014-07-08T12:39:28Z -{{ObjectProperty -| labels = - {{label|en|aircraft patrol}} - {{label|el|περιπολία αεροσκάφους}} -| rdfs:domain = MilitaryUnit -| rdfs:range = MeanOfTransportation -| rdfs:subPropertyOf = dul:coparticipatesWith -}}OntologyProperty:AircraftRecon202527358062014-07-08T12:39:37Z -{{ObjectProperty -| rdfs:label@en = aircraft recon -| rdfs:domain = MilitaryUnit -| rdfs:range = MeanOfTransportation -| rdfs:subPropertyOf = dul:coparticipatesWith -}}OntologyProperty:AircraftTrainer202528358072014-07-08T12:39:44Z -{{ObjectProperty -| rdfs:label@en = aircraft trainer -| rdfs:domain = MilitaryUnit -| rdfs:range = MeanOfTransportation -| rdfs:subPropertyOf = dul:coparticipatesWith -}}OntologyProperty:AircraftTransport202529358082014-07-08T12:39:53Z -{{ObjectProperty -| labels = - {{label|en|aircraft transport}} - {{label|el|αερομεταφορές}} -| rdfs:domain = MilitaryUnit -| rdfs:range = MeanOfTransportation -| rdfs:subPropertyOf = dul:coparticipatesWith -}}OntologyProperty:AircraftType2024793333932014-04-03T14:02:07Z{{DatatypeProperty -| labels = -{{label|en|aircraft type}} -{{label|de|Flugzeugtyp}} -{{label|el|τύπος αεροσκάφους}} -{{label|sr|тип летелице}} -{{label|es|tipo de avión}} -| rdfs:domain = Aircraft -| rdfs:range = xsd:string -}}OntologyProperty:AircraftUser2024796358092014-07-08T12:40:12Z -{{ObjectProperty -| labels = - {{label|en|aircraft user}} - {{label|de|Flugzeugnutzer}} - {{label|el|χρήστης αεροσκάφους}} - {{label|es|usuario del avión}} -| rdfs:domain = Aircraft -| rdfs:range = Organisation -| rdfs:subPropertyOf = dul:coparticipatesWith -}}OntologyProperty:AirportUsing2022161333952014-04-03T14:02:15Z{{DatatypeProperty -| labels = -{{label|en|Different usage of an airport}} -{{label|de|Unterschiedliche Nutzung eines Flughafens}} -{{label|el|οι χρήσεις ενός αεροδρομίου}} -| rdfs:domain = Airport -| rdfs:range = xsd:string -}}OntologyProperty:AitaCode2027228528682018-02-13T10:30:22Z{{DatatypeProperty -| labels = -{{label|en|aita code}} -{{label|sr|AITA код}} -| rdfs:range = xsd:string -| rdfs:subPropertyOf = code -}}OntologyProperty:Albedo2024358304512014-01-21T13:03:18Z{{DatatypeProperty - |rdfs:label@en=albedo - |rdfs:label@el=albedo - |rdfs:label@sr=албедо - |rdfs:comment@en=reflection coefficient - |rdfs:comment@el=συντελεστής ανάκλασης - |rdfs:domain=Planet - |rdfs:range=xsd:double -}}OntologyProperty:Album202531358102014-07-08T12:40:20Z -{{ObjectProperty -| labels = - {{label|en|album}} - {{label|de|Album}} - {{label|nl|album}} - {{label|sr|албум}} - {{label|el|από το άλμπουμ}} -| rdfs:range = Album -| rdfs:subPropertyOf = dul:coparticipatesWith -}}OntologyProperty:AlbumRuntime2027864528322018-02-08T20:14:33Z{{Merge|duration}} - -{{DatatypeProperty -| labels = -{{label|en|album duration}} -{{label|de|Album Länge}} -{{label|sr|трајање албума}} -| rdfs:domain = Album -| rdfs:range = Time -| owl:equivalentProperty = -| rdfs:subPropertyOf = runtime -}}OntologyProperty:Alias2022354537102020-09-04T15:41:18Z{{DatatypeProperty -| labels = -{{label|en|alias}} -{{label|el|ψευδώνυμο}} -{{label|nl|alias}} -{{label|sr|алијас}} -{{label|ru|псевдоним}} -{{label|fr|alias}} -{{label|ja|別名}} -| rdfs:range = rdf:langString -| rdfs:subPropertyOf -| owl:equivalentProperty = wikidata:P742, schema:alternateName -}}OntologyProperty:AllcinemaId2025882306542014-01-22T08:51:32Z{{DatatypeProperty -| rdfs:label@ja = allcinema id -| rdfs:label@en = allcinema id -| rdfs:label@el = allcinema id -| rdfs:label@sr = allcinema id -| rdfs:domain = Film -| rdfs:range = xsd:string -}}OntologyProperty:Allegiance202532304712014-01-21T13:29:06Z{{DatatypeProperty -| rdfs:label@en = allegiance -| rdfs:label@el = υποταγή -| rdfs:label@sr = верност -| rdfs:domain = Person -| rdfs:comment@en = 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. -| rdfs:range = xsd:string -}}OntologyProperty:Alliance202533358112014-07-08T12:40:28Z -{{ObjectProperty -| rdfs:label@en = alliance -| rdfs:label@de = Allianz -| rdfs:label@el = συμμαχία -| rdfs:label@sr = савез -| rdfs:domain = Airline -| rdfs:subPropertyOf = dul:isMemberOf -}}OntologyProperty:AlmaMater202534368132014-07-15T06:39:32Z{{ObjectProperty -| rdfs:label@en = alma mater -| rdfs:label@el = σπουδές -| rdfs:label@sr = студије -| rdfs:label@ru = альма-матер -| rdfs:domain = Person -| rdfs:comment@en = schools that they attended -| rdfs:range = EducationalInstitution -| rdfs:subPropertyOf = dul:coparticipatesWith -| owl:equivalentProperty = wikidata:P69 -}}OntologyProperty:Alongside2022325358132014-07-08T12:40:44Z -{{ObjectProperty -| rdfs:label@en = alongside -| rdfs:label@el = δίπλα -| rdfs:label@sr = уз -| rdfs:range = Person -| rdfs:subPropertyOf = dul:sameSettingAs -}}OntologyProperty:AlpsGroup2025696358142014-07-08T12:40:53Z -{{ObjectProperty -| rdfs:domain = Mountain -| rdfs:range = MountainRange -| rdfs:label@en = Alps group -| rdfs:label@el = ομάδα των άλπεων -| rdfs:label@it = gruppo alpino -| rdfs:label@sr = алпска група -| rdfs:comment@en = the Alps group to which the mountain belongs, according to the SOIUSA classification<ref name="alpsMainPart">http://en.wikipedia.org/wiki/SOIUSA</ref> -| rdfs:subPropertyOf = dul:hasLocation -}} -==References== -<references/>OntologyProperty:AlpsMainPart2025680358152014-07-08T12:41:01Z -{{ObjectProperty -| rdfs:domain = Mountain -| rdfs:range = MountainRange -| rdfs:label@en = Alps main part -| rdfs:label@el = κύριο μέρος των άλπεων -| rdfs:label@it = grande parte alpina -| rdfs:label@sr = главни део Алпа -| rdfs:comment@en = the Alps main part to which the mountain belongs, according to the SOIUSA classification<ref name="alpsMainPart">http://en.wikipedia.org/wiki/SOIUSA</ref> -| rdfs:subPropertyOf = dul:hasLocation -}} -==References== -<references/>OntologyProperty:AlpsMajorSector2025692358162014-07-08T12:41:08Z -{{ObjectProperty -| rdfs:domain = Mountain -| rdfs:range = MountainRange -| rdfs:label@en = Alps major sector -| rdfs:label@sr = главни Алпски сектор -| rdfs:label@el = σημαντικότερος τομέας των άλπεων -| rdfs:label@it = grande settore alpino -| rdfs:comment@en = the Alps major sector to which the mountain belongs, according to the SOIUSA classification<ref name="alpsMainPart">http://en.wikipedia.org/wiki/SOIUSA</ref> -| rdfs:subPropertyOf = dul:hasLocation -}} -==References== -<references/>OntologyProperty:AlpsSection2025693358172014-07-08T12:41:16Z -{{ObjectProperty -| rdfs:domain = Mountain -| rdfs:range = MountainRange -| rdfs:label@en = Alps section -| rdfs:label@el = τμήμα των άλπεων -| rdfs:label@sr = Алпска секција -| rdfs:label@it = sezione alpina -| rdfs:comment@en = the Alps section to which the mountain belongs, according to the SOIUSA classification<ref name="alpsMainPart">http://en.wikipedia.org/wiki/SOIUSA</ref> -| rdfs:subPropertyOf = dul:hasLocation -}} -==References== -<references/>OntologyProperty:AlpsSoiusaCode2025698304882014-01-21T13:55:26Z{{DatatypeProperty -| rdfs:domain = Mountain -| rdfs:range = xsd:string -| rdfs:label@en = Alps SOIUSA code -| rdfs:label@el = κώδικας SOIUSA των άλπεων -| rdfs:label@it = codice SOIUSA -| rdfs:label@sr = алпски SOIUSA код -| rdfs:comment@en = the Alps SOIUSA code corresponding to the mountain, according to the SOIUSA classification<ref name="alpsMainPart">http://en.wikipedia.org/wiki/SOIUSA</ref> -}} -==References== -<references/>OntologyProperty:AlpsSubgroup2025697358182014-07-08T12:41:38Z -{{ObjectProperty -| rdfs:domain = Mountain -| rdfs:range = MountainRange -| rdfs:label@en = Alps subgroup -| rdfs:label@el = υποομάδα των άλπεων -| rdfs:label@it = sottogruppo alpino -| rdfs:label@sr = Алпска подгрупа -| rdfs:comment@en = the Alps subgroup to which the mountain belongs, according to the SOIUSA classification<ref name="alpsMainPart">http://en.wikipedia.org/wiki/SOIUSA</ref> -| rdfs:subPropertyOf = dul:hasLocation -}} -==References== -<references/>OntologyProperty:AlpsSubsection2025694358192014-07-08T12:41:47Z -{{ObjectProperty -| rdfs:domain = Mountain -| rdfs:range = MountainRange -| rdfs:label@en = Alps subsection -| rdfs:label@el = Alps υποδιαίρεση των άλπεων -| rdfs:label@it = sottosezione alpina -| rdfs:label@sr = Алпска подсекција -| rdfs:comment@en = the Alps subsection to which the mountain belongs, according to the SOIUSA classification<ref name="alpsMainPart">http://en.wikipedia.org/wiki/SOIUSA</ref> -| rdfs:subPropertyOf = dul:hasLocation -}} -==References== -<references/>OntologyProperty:AlpsSupergroup2025695358202014-07-08T12:41:55Z -{{ObjectProperty -| rdfs:domain = Mountain -| rdfs:range = MountainRange -| rdfs:label@en = Alps supergroup -| rdfs:label@el = Alps υπερομάδα -| rdfs:label@it = supergruppo alpino -| rdfs:label@sr = Алпска супергрупа -| rdfs:comment@en = the Alps supergroup to which the mountain belongs, according to the SOIUSA classification<ref name="alpsMainPart">http://en.wikipedia.org/wiki/SOIUSA</ref> -| rdfs:subPropertyOf = dul:hasLocation -}} -==References== -<references/>OntologyProperty:AlternativeName2028167537852020-10-21T19:10:59Z{{DatatypeProperty -| labels = -{{label|en|alternative name}} -{{label|de|alternativer Name}} -{{label|nl|naamsvariant}} -{{label|sr|алтернативни назив}} -| rdfs:range = rdf:langString -| rdfs:comment@en = Alternative naming of anything not being a Person (for which case foaf:nick should be used). -| owl:equivalentProperty=gn:shortName, gnd:variantNameForThePlaceOrGeographicName -}}OntologyProperty:AlternativeTitle2026795536642020-07-30T21:17:57Z{{ DatatypeProperty -| labels = -{{label|en|alternative title}} -{{label|de|alternativer Titel}} -{{label|nl|alternatieve titel}} -{{label|sr|алтернативни наслов}} -| rdfs:comment@en = The alternative title attributed to a work -| rdfs:domain = Work -| rdfs:range = rdf:langString -| owl:equivalentProperty = schema:alternativeTitle -}}OntologyProperty:Altitude2027921537752020-10-19T17:21:23Z{{ObjectProperty -| labels = -{{label|en|altitude}} -{{label|de|Höhe}} -{{label|fr|altitude}} -{{label|es|altitud}} -{{label|nl|hoogte}} -{{label|el|υψόμετρο}} -{{label|sr|апсолутна висина}} -{{label|ja|標高}} -| rdfs:domain = Place -| rdfs:range = Altitude -}}OntologyProperty:Alumni202535358212014-07-08T12:42:03Z -{{ObjectProperty -| rdfs:label@en = alumni -| rdfs:label@de = Alumni -| rdfs:label@el = απόφοιτοι πανεπιστημίου -| rdfs:label@sr = алумни -| rdfs:domain = EducationalInstitution -| rdfs:range = Person -| rdfs:subPropertyOf = dul:coparticipatesWith -}}OntologyProperty:AmateurDefeat2027594305082014-01-21T14:13:03Z{{DatatypeProperty -| labels = -{{label|en|amateur defeat}} -{{label|sr|аматерских пораза}} -| rdfs:domain = Boxer -| rdfs:range = xsd:nonNegativeInteger -}}OntologyProperty:AmateurFight2027591305102014-01-21T14:14:06Z{{DatatypeProperty -| labels = -{{label|en|amateur fight}} -{{label|sr|аматерских борби}} -| rdfs:domain = Boxer -| rdfs:range = xsd:nonNegativeInteger -}}OntologyProperty:AmateurKo2027593305162014-01-21T14:27:24Z{{DatatypeProperty -| labels = -{{label|en|amateur ko}} -{{label|sr|број аматерских нокаута}} -| rdfs:domain = Boxer -| rdfs:range = xsd:nonNegativeInteger -}}OntologyProperty:AmateurNoContest2027596268242013-07-02T10:58:22Z{{DatatypeProperty -| labels = -{{label|en|amateur no contest}} -| rdfs:domain = Boxer -| rdfs:range = xsd:nonNegativeInteger -}}OntologyProperty:AmateurTeam2027623305232014-01-21T14:39:40Z{{ObjectProperty -| labels = -{{label|en|amateur team}} -{{label|sr|аматерски тим}} -| rdfs:range = SportsTeam -| rdfs:domain = Athlete, CareerStation -}}OntologyProperty:AmateurTie2027595268232013-07-02T10:58:02Z{{DatatypeProperty -| labels = -{{label|en|amateur tie}} -| rdfs:domain = Boxer -| rdfs:range = xsd:nonNegativeInteger -}}OntologyProperty:AmateurTitle2027597472742015-03-29T16:54:30Z{{DatatypeProperty -| labels = -{{label|en|amateur title}} -{{label|de|Amateurtitel}} -{{label|sr|аматерска титула}} -| rdfs:domain = Boxer -| rdfs:range = xsd:string -}}OntologyProperty:AmateurVictory2027592306382014-01-22T08:33:37Z{{DatatypeProperty -| labels = -{{label|en|amateur victory}} -{{label|sr|aматерских победа}} -| rdfs:domain = Boxer -| rdfs:range = xsd:nonNegativeInteger -}}OntologyProperty:AmateurYear2027626306292014-01-22T08:24:22Z{{DatatypeProperty -| labels = -{{label|en|amateur year}} -| rdfs:range = xsd:string -| rdfs:domain = Athlete, CareerStation -}}OntologyProperty:AmericanComedyAward202536358222014-07-08T12:42:11Z -{{ObjectProperty -| labels = - {{label|en|American Comedy Award}} - {{label|el|αμερικάνικο βραβείο κωμωδίας}} - {{label|sr|америчка награда за комедију}} -| rdfs:domain = Comedian -| rdfs:range = Award -| rdfs:subPropertyOf = dul:coparticipatesWith -}}OntologyProperty:Amgid202537475012015-04-02T11:02:15Z{{DatatypeProperty -| rdfs:label@en = amgId -| rdfs:label@sr = AMG ID -| rdfs:domain = Film -| rdfs:range = xsd:string -| owl:equivalentProperty = wikidata:P1562 -}}OntologyProperty:AmsterdamCode2028140305442014-01-21T15:01:20Z{{DatatypeProperty -| labels = -{{label|en|Amsterdam Code}} -{{label|sr|Амстердам код}} -{{label|nl|Amsterdamse code}} -| rdfs:domain = Municipality -| rdfs:range = xsd:string -}}OntologyProperty:AnalogChannel2023053334052014-04-03T14:02:54Z{{DatatypeProperty -| labels = -{{label|en|analog channel}} -{{label|de|Analogkanal}} -{{label|el|αναλογικό κανάλι}} -{{label|sr|аналогни канал}} -| rdfs:domain = Broadcaster -| rdfs:range = xsd:string -}}OntologyProperty:Animal202538358232014-07-08T12:42:20Z -{{ObjectProperty -| labels = - {{label|en|animal}} - {{label|de|Tier}} - {{label|el|ζώο}} - {{label|fr|animal}} - {{label|nl|beest}} - {{label|ja|動物}} - {{label|sr|животиња}} -| rdfs:range = Animal -| rdfs:subPropertyOf = dul:isLocationOf -}}OntologyProperty:Animator2026104368022014-07-12T21:21:15Z{{ObjectProperty -| labels = - {{label|en|animator}} - {{label|el|ανιμέιτορ}} - {{label|sr|аниматор}} -| rdfs:domain = Cartoon -| rdfs:range = Agent -| rdfs:subPropertyOf = dul:coparticipatesWith -}}OntologyProperty:Anniversary202539334062014-04-03T14:03:11Z{{DatatypeProperty -| labels = -{{label|en|anniversary}} -{{label|de|Jubiläum}} -{{label|el|επέτειος}} -{{label|sr|годишњица}} -| rdfs:domain = MilitaryUnit -| rdfs:range = xsd:date -}}OntologyProperty:AnnouncedFrom2028021281752013-09-03T17:36:59Z{{ObjectProperty -| rdfs:label@en = announcedFrom -| rdfs:domain = Person -| rdfs:range = Place -}}OntologyProperty:AnnualTemperature202540334072014-04-03T14:03:15Z{{DatatypeProperty -| labels = -{{label|en|annual temperature}} -{{label|de|Jahrestemperatur}} -{{label|el|ετήσια θερμοκρασία}} -{{label|nl|jaartemperatuur}} -{{label|sr|годишња температура}} -| rdfs:domain = Place -| rdfs:range = Temperature -}}OntologyProperty:Anthem202541486932015-08-10T10:15:23Z{{ObjectProperty -| labels = - {{label|en|anthem}} - {{label|de|Hymne}} - {{label|nl|volkslied}} - {{label|el|ύμνος}} - {{label|pt|hino}} - {{label|sr|химна}} - {{label|ru|гимн}} -| rdfs:comment@en = Official song (anthem) of a PopulatedPlace, SportsTeam, School or other -| rdfs:range = Work -| rdfs:subPropertyOf = dul:coparticipatesWith -| owl:equivalentProperty = wikidata:P85 -}}OntologyProperty:AoCloassification20211878522152017-10-07T15:56:03Z{{DatatypeProperty -| labels = -{{label|en|AO}} -{{label|nl|AO}} -{{label|de|AO}} -{{label|fr|AO}} -| rdfs:domain = Disease -| rdfs:range = xsd:string -}}OntologyProperty:ApcPresident2026850358262014-07-08T12:42:50Z -{{ObjectProperty -| labels = - {{label|en|apc president}} -| rdfs:range = Person -| rdfs:subPropertyOf = dul:sameSettingAs -}}OntologyProperty:Apoapsis202542353352014-06-17T12:45:02Z{{DatatypeProperty -| labels = -{{label|en|apoapsis}} -{{label|de|Apoapsisdistanz}} -{{label|el|απόαψης}} -{{label|sr|апоапсис}} -| rdfs:domain = CelestialBody -| rdfs:range = Length -}}OntologyProperty:Apofocus20211492499182015-12-29T11:02:34Z{{DatatypeProperty -| labels = -{{label|en|apofocus}} -{{label|nl|apofocus}} -| rdfs:domain = CelestialBody -| rdfs:range = xsd:string -}}OntologyProperty:ApparentMagnitude2024356368152014-07-15T06:46:35Z{{DatatypeProperty -| labels = - {{label|en|apparent magnitude}} - {{label|de|scheinbare Helligkeit}} - {{label|el|φαινόμενο μέγεθος}} - {{label|sr|привидна звездана величина}} - {{label|ru|видимая звёздная величина}} -|rdfs:domain=Planet -|rdfs:range=xsd:double -|owl:equivalentProperty = wikidata:P1215 -}}OntologyProperty:Appearance20212043527992018-02-07T19:08:27Z{{DatatypeProperty -| labels = -{{label|en|appearance}} -{{label|de|Erscheinungsbild}} -| rdfs:range = xsd:string -}}OntologyProperty:AppearancesInLeague202543305662014-01-21T15:28:38Z{{DatatypeProperty -| labels = -{{label|en|appearances in league}} -{{label|el|εμφανίσεις στο πρωτάθλημα}} -{{label|sr|број наступа у лиги}} -| rdfs:domain = SoccerPlayer -| rdfs:range = xsd:nonNegativeInteger -}}OntologyProperty:AppearancesInNationalTeam202544305672014-01-21T15:29:36Z{{DatatypeProperty -| labels = -{{label|en|appearances in national team}} -{{label|el|εμφανίσεις στην εθνική ομάδα}} -{{label|sr|број наступа у националном тиму}} -| rdfs:domain = SoccerPlayer -| rdfs:range = xsd:nonNegativeInteger -}}OntologyProperty:Appointer2022348358272014-07-08T12:42:59Z -{{ObjectProperty -| rdfs:label@en = appointer -| rdfs:range = Person -| rdfs:subPropertyOf = dul:sameSettingAs -}}OntologyProperty:Apprehended20211900522812017-10-08T18:08:31Z{{DatatypeProperty -| rdfs:label@en = apprehended -| rdfs:label@de = gefasst -| rdfs:domain = Criminal -| rdfs:range = xsd:date -| rdfs:comment = The date a criminal was apprehended. -}}OntologyProperty:Approach2027775270682013-07-05T10:21:44Z{{ObjectProperty -| labels = -{{label|en|approach}} -| rdfs:domain = Person -}}OntologyProperty:ApprovedByLowerParliament20211378492432015-10-16T10:55:45Z{{DatatypeProperty -| labels = -{{label|en|date of approval by lower parliament}} -{{label|nl|datum aangenomen door Tweede Kamer, Lagerhuis, Bondsdag enz.}} -| rdfs:domain = Law -| rdfs:range = xsd:date -| rdfs:comment@en = Date of approval by lower parliament (House of Commons, Chambre des Députés, Bundestag, Tweede Kamer etc.). -}}OntologyProperty:ApprovedByUpperParliament20211379492442015-10-16T10:57:33Z{{DatatypeProperty -| labels = -{{label|en|date of approval by upper parliament}} -{{label|nl|datum aangenomen door Eerste Kamer, Hogerhuis, Senaat enz.}} -| rdfs:domain = Law -| rdfs:range = xsd:date -| rdfs:comment@en = Date of approval by upper parliament (House of Lords, Sénat, Eerste Kamer etc.). -}}OntologyProperty:ApproximateCalories2023933334092014-04-03T14:03:28Z{{DatatypeProperty -| labels = -{{label|en|approximate calories}} -{{label|de|ungefähre Kalorien}} -{{label|el|κατά προσέγγιση θερμίδες}} -{{label|sr|приближно калорија}} -| rdfs:domain = Food -| rdfs:range = Energy -| comments = -{{comment|en|Approximate calories per serving.}} -{{comment|el|Kατά προσέγγιση θερμίδες ανά μερίδα.}} -}}OntologyProperty:Apskritis2027251305702014-01-21T15:43:20Z{{DatatypeProperty -| labels = -{{label|en|apskritis}} -{{label|sr|литвански округ}} -| rdfs:domain = PopulatedPlace -| rdfs:range = xsd:string -}}OntologyProperty:Archipelago202545491962015-10-14T12:31:34Z{{ObjectProperty -| labels = - {{label|en|archipelago}} - {{label|de|Archipel}} - {{label|el|αρχιπέλαγος}} - {{label|nl|archipel}} - {{label|sr|архипелаг}} -| rdfs:domain = Island -| rdfs:range = -| rdfs:subPropertyOf = dul:isPartOf -}}OntologyProperty:Architect202546473782015-03-31T17:09:12Z{{ObjectProperty -| labels = - {{label|en|architect}} - {{label|de|Architekt}} - {{label|el|αρχιτέκτονας}} - {{label|fr|architecte}} - {{label|ga|ailtire}} - {{label|it|architetto}} - {{label|nl|architect}} - {{label|pl|architekt}} - {{label|ru|архитектор}} - {{label|sr|архитекта}} -| rdfs:domain = ArchitecturalStructure -| rdfs:range = Architect -| rdfs:subPropertyOf = dul:coparticipatesWith -| owl:equivalentProperty = wikidata:P84 -}}OntologyProperty:ArchitectualBureau202547358302014-07-08T12:43:23Z -{{ObjectProperty -| rdfs:label@en = architectual bureau -| rdfs:label@de = Architekturbüro -| rdfs:label@el = αρχιτεκτονική κατασκευή -| rdfs:domain = ArchitecturalStructure -| rdfs:range = Company -| rdfs:subPropertyOf = dul:coparticipatesWith -}}OntologyProperty:ArchitecturalMovement2027539491522015-10-13T10:08:55Z{{DatatypeProperty -| labels = -{{label|en|architectural movement}} -{{label|de|Architekturbewegung}} -{{label|sr|архитектонски покрет}} -| rdfs:domain = Architect -| rdfs:range = xsd:string -}}OntologyProperty:ArchitecturalStyle202548368172014-07-15T06:56:03Z{{ObjectProperty -| labels = - {{label|en|architectural style}} - {{label|el|αρχιτεκτονικό στυλ}} - {{label|nl|bouwstijl}} - {{label|sr|архитектонски стил}} - {{label|fr|style architectural}} - {{label|ru|архитектурный стиль}} -| rdfs:domain = ArchitecturalStructure -| rdfs:subPropertyOf = dul:isDescribedBy -| owl:equivalentProperty = wikidata:P149 -}}OntologyProperty:Area2027943485222015-08-05T14:52:41Z{{DatatypeProperty -| labels = -{{label|en|area}} -{{label|nl|oppervlakte}} -{{label|pt|área}} -{{label|de|Fläche}} -{{label|fr|superficie}} -{{label|el|έκταση}} -{{label|sr|област}} -| rdfs:range = Area -| comments = -{{comment|en|The area of the thing in square meters.}} -}}OntologyProperty:AreaCode202550517642016-12-19T14:48:31Z{{DatatypeProperty -| labels = -{{label|de|Vorwahl}} -{{label|en|area code}} -{{label|fr|indicatif régional}} -{{label|nl|netnummer}} -{{label|el|κωδικός_περιοχής}} -{{label|sr|позивни број}} -{{label|ru|местный телефонный код}} -{{label|hi|दूरभाष कोड}} -| rdfs:comment@en = Area code for telephone numbers. Use this not phonePrefix -| rdfs:domain = Place -| rdfs:range = xsd:string -| owl:equivalentProperty = wikidata:P473 -}}OntologyProperty:AreaDate2027177257262013-06-01T10:19:38Z{{DatatypeProperty -| labels = -{{label|en|area date}} -| rdfs:domain = Place -| rdfs:range = xsd:date -}}OntologyProperty:AreaLand202551305922014-01-22T07:44:12Z{{DatatypeProperty -| labels = -{{label|en|area land}} -{{label|nl|oppervlakte land}} -{{label|el|έκταση_στεριάς_περιοχής}} -{{label|sr|површина земљишта}} -| rdfs:domain = Place -| rdfs:range = Area -}}OntologyProperty:AreaMetro202553305962014-01-22T07:47:10Z{{DatatypeProperty -| rdfs:label@en = area metro -| rdfs:label@el = περιοχή μετρό -| rdfs:label@sr = метрополска област -| rdfs:range = Area -}}OntologyProperty:AreaOfCatchment202554334142014-04-03T14:03:55Z{{DatatypeProperty -| rdfs:label@en = area of catchment -| rdfs:label@de = Einzugsgebiet -| rdfs:label@el = λίμνη -| rdfs:label@sr = подручје слива -| rdfs:domain = Lake -| rdfs:range = Area -}}OntologyProperty:AreaOfCatchmentQuote2027096256202013-05-26T13:35:32Z{{DatatypeProperty -| labels = -{{label|en|area of catchment quote}} -| rdfs:domain = Place -| rdfs:range = xsd:string -}}OntologyProperty:AreaOfSearch202555358322014-07-08T12:43:51Z -{{ObjectProperty -| rdfs:label@en = area of search -| rdfs:label@de = Suchgebiet -| rdfs:label@el = Περιοχή Αναζήτησης -| rdfs:domain = SiteOfSpecialScientificInterest -| rdfs:range = PopulatedPlace -| rdfs:subPropertyOf = dul:hasLocation -}}OntologyProperty:AreaQuote2027083256072013-05-26T13:27:02Z{{DatatypeProperty -| labels = -{{label|en|area quote}} -| rdfs:domain = Place -| rdfs:range = xsd:string -}}OntologyProperty:AreaRank2027132306032014-01-22T07:54:58Z{{DatatypeProperty -| labels = -{{label|en|area rank}} -{{label|sr|површина ранг}} -| rdfs:domain = Place -| rdfs:range = xsd:string -}}OntologyProperty:AreaRural2024348306072014-01-22T07:56:51Z{{DatatypeProperty -| rdfs:label@en = area rural -| rdfs:label@el = αγροτική περιοχή -| rdfs:label@sr = рурална област -| rdfs:domain = PopulatedPlace -| rdfs:range = Area -}}OntologyProperty:AreaTotal202556538092020-12-01T18:04:33Z{{DatatypeProperty -| labels = -{{label|de|Fläche}} -{{label|en|area total}} -{{label|nl|oppervlakte}} -{{label|el|έκταση περιοχής}} -{{label|fr|superficie}} -{{label|sr|укупна површина}} -| rdfs:domain = Place -| rdfs:range = Area -| owl:equivalentProperty=wikidata:P2046 -}}OntologyProperty:AreaTotalRanking2025295306132014-01-22T08:08:24Z{{ DatatypeProperty - - | rdfs:label@en = total area ranking -| rdfs:label@el = συνολική περιοχή - | rdfs:label@sr = укупна површина ранг - | rdfs:domain = PopulatedPlace - | rdfs:range = xsd:positiveInteger - -}}OntologyProperty:AreaUrban202557334162014-04-03T14:04:03Z{{DatatypeProperty -| rdfs:label@en = area urban -| rdfs:label@de = Stadtgebiet -| rdfs:label@el = αστική περιοχή -| rdfs:label@sr = урбана површина -| rdfs:domain = PopulatedPlace -| rdfs:range = Area -}}OntologyProperty:AreaWater202558306192014-01-22T08:12:21Z{{DatatypeProperty -| labels = -{{label|en|area water}} -{{label|nl|oppervlakte water}} -{{label|el|έκταση_υδάτων_περιοχής}} -{{label|sr|водена површина}} -| rdfs:domain = Place -| rdfs:range = Area -}}OntologyProperty:ArgueDate202559210942012-12-27T10:57:36Z{{DatatypeProperty -| rdfs:label@en = argue date -| rdfs:label@el = δημοφιλής ημερομηνία -| rdfs:domain = SupremeCourtOfTheUnitedStatesCase -| rdfs:range = xsd:date -}}OntologyProperty:ArielAward202560358332014-07-08T12:43:59Z -{{ObjectProperty -| rdfs:label@en = Ariel Award -| rdfs:label@el = Ariel Award -| rdfs:label@sr = ARIEL награда -| rdfs:domain = Actor -| rdfs:range = Award -| rdfs:subPropertyOf = dul:coparticipatesWith -}}OntologyProperty:Arm202561210962012-12-27T10:59:21Z{{DatatypeProperty -| rdfs:label@en = arm -| rdfs:label@el = ώμος -| rdfs:domain = Protein -| rdfs:range = xsd:string -}}OntologyProperty:Army2027551491432015-10-13T09:52:34Z{{DatatypeProperty -| labels = - {{label|en|army}} - {{label|de|Armee}} - {{label|nl|leger}} - {{label|el|στρατός}} -| comments = - {{comment|el|Ένας στρατός αποτελεί τις επίγειες ένοπλες δυνάμεις ενός έθνους}} -| rdfs:domain = MilitaryPerson -| rdfs:range = xsd:string -}}OntologyProperty:ArrestDate2028031281852013-09-03T18:00:03Z{{DatatypeProperty -| labels = -{{label|en|arrest date}} -| rdfs:domain = Person -| rdfs:range = xsd:date -}}OntologyProperty:Arrondissement2026883358342014-07-08T12:44:07Z -{{ObjectProperty -| labels = - {{label|en|arrondissement}} - {{label|nl|arrondissement}} - {{label|fr|arrondissement}} - {{label|el|διαμέρισμα}} -| rdfs:domain = PopulatedPlace | rdfs:range = PopulatedPlace -| rdfs:subPropertyOf = dul:hasLocation -}}OntologyProperty:ArtPatron2027337358352014-07-08T12:44:16Z -{{ObjectProperty -| labels = - {{label|en|patron (art)}} - {{label|fr|mécène}} -| rdfs:domain = Agent -| rdfs:range = Artist -| comments = - {{comment|en|An influential, wealthy person who supported an artist, craftsman, a scholar or a noble.<ref>http://en.wiktionary.org/wiki/patron</ref>. See also<ref>http://en.wikipedia.org/wiki/Patronage</ref>}} - {{comment|fr|Celui qui encourage par ses libéralités les sciences, les lettres et les arts.<ref>http://fr.wiktionary.org/wiki/m%C3%A9c%C3%A8ne</ref>}} -| rdfs:subPropertyOf = dul:sameSettingAs -}} -<references/>OntologyProperty:Artery202563358362014-07-08T12:44:25Z -{{ObjectProperty -| rdfs:label@en = artery -| rdfs:label@de = Arterie -| rdfs:label@el = αρτηρία -| rdfs:label@nl = ader -| rdfs:domain = AnatomicalStructure -| rdfs:range = Artery -| rdfs:subPropertyOf = dul:coparticipatesWith -}}OntologyProperty:ArtificialSnowArea2027206257562013-06-01T13:28:10Z{{DatatypeProperty -| labels = -{{label|en|artificial snow area}} -| rdfs:domain = Place -| rdfs:range = xsd:float -}}OntologyProperty:Artist202564358372014-07-08T12:44:33Z -{{ObjectProperty -| labels = - {{label|de|Interpret}} - {{label|el|καλλιτέχνης}} - {{label|en|artist}} - {{label|en|performer}} - {{label|es|intérprete}} - {{label|fr|interprète}} - {{label|nl|artiest}} - {{label|pl|wykonawca}} -| rdfs:comment@en = The performer or creator of the musical work. -| rdfs:domain = MusicalWork -| rdfs:range = Agent -| owl:equivalentProperty = schema:byArtist, wikidata:P175 -| rdfs:subPropertyOf = dul:coparticipatesWith -}}OntologyProperty:ArtisticFunction2027885273852013-07-10T15:01:03Z{{DatatypeProperty -| labels = -{{label|en|artistic function}} -| rdfs:domain = Person -| rdfs:range = xsd:string -}}OntologyProperty:AsWikiText20210108454142015-02-23T13:52:51Z'''{{Reserved for DBpedia}}''' - -{{DatatypeProperty -| labels= -{{label|en|Contains a [https://www.mediawiki.org/wiki/Wikitext WikiText] representation of this thing}} -| rdfs:domain = -| rdfs:range = xsd:string -}}OntologyProperty:Ascent202565391912015-01-11T19:48:23Z{{DatatypeProperty -| rdfs:label@en = ascent -| rdfs:label@de = Aufstieg -| rdfs:label@el = ανάβαση -|comments= -{{comment|en|Ascent of a celestial body, aircraft, etc. For person who ascended a mountain, use firstAscent}} -| rdfs:range = xsd:string -}}OntologyProperty:AsiaChampionship2028056282112013-09-03T18:51:25Z{{DatatypeProperty -| labels = -{{label|en|asia championship}} -| rdfs:domain = Athlete -| rdfs:range = xsd:string -}}OntologyProperty:AspectRatio2022123358382014-07-08T12:44:43Z -{{ObjectProperty -| rdfs:label@de = Seitenverhältnis -| rdfs:label@en = Aspect Ratio -| rdfs:label@el = λόγος -| rdfs:domain = Software -| rdfs:subPropertyOf = dul:hasQuality -}}OntologyProperty:Assembly202568334202014-04-03T14:04:17Z{{ObjectProperty -| rdfs:label@en = assembly -| rdfs:label@de = Montage -| rdfs:label@el = συνέλευση -| rdfs:domain = MeanOfTransportation -}}OntologyProperty:AssetUnderManagement202570212612012-12-27T23:12:29Z{{DatatypeProperty -| labels = -{{label|en|asset under management}} -{{label|el|κεφάλαιο υπό διαχείριση}} -| rdfs:domain = Company -| rdfs:range = Currency -}}OntologyProperty:Assets202569334212014-04-03T14:04:20Z{{DatatypeProperty -| labels = -{{label|en| assets}} -{{label|de|Aktiva}} -{{label|el|περιουσιακά στοιχεία}} -| rdfs:domain = Company -| rdfs:range = Currency -| comments = -{{comment|en| 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. -}} -{{comment|el|Περιουσιακά στοιχεία και υποχρεώσεις αποτελούν μέρος του ισολογισμού μιας εταιρείας.Σε χρηματοοικονομική λογιστική,τα περιουσιακά στοιχεία είναι οι οικονομικοί πόροι. Οτιδήποτε ενσώματο ή άυλο, που είναι ικανό να ανήκει ή να ελέγχεται για να παράγει αξία και που κατέχεται για να έχει θετική οικονομική αξία θεωρείται ένα περιουσιακό στοιχείο.}} -}}OntologyProperty:AssistantPrincipal2023129525762017-10-31T08:26:03Z -{{ObjectProperty -| labels = - {{label|en|assistant principal}} - {{label|el|κύριος βοηθός}} -| rdfs:domain = EducationalInstitution -| rdfs:subPropertyOf = dul:coparticipatesWith -}}OntologyProperty:Associate2022349358402014-07-08T12:45:11Z -{{ObjectProperty -| labels = - {{label|en|associate}} - {{label|el|συνεργάτης}} -| rdfs:range = Person -| rdfs:subPropertyOf = dul:coparticipatesWith -}}OntologyProperty:AssociateEditor202575358412014-07-08T12:45:19Z -{{ObjectProperty -| labels = - {{label|en|associate editor}} - {{label|el|συνεργαζόμενος συντάκτης}} -| rdfs:domain = Newspaper -| rdfs:range = Person -| rdfs:subPropertyOf = dul:coparticipatesWith -}}OntologyProperty:AssociateStar2024550358422014-07-08T12:45:28Z -{{ObjectProperty -| labels = - {{label|en|associateStar}} - {{label|el|συγγενικός αστέρας}} - {{label|tr|çevreleyen}} -| rdfs:range = Constellation -| rdfs:subPropertyOf = dul:isMemberOf -}}OntologyProperty:AssociatedAct202571358432014-07-08T12:45:36Z -{{ObjectProperty -| labels = - {{label|en|associated act}} - {{label|el|συνδεδεμένη πράξη}} -| rdfs:domain = Artist -| rdfs:range = Artist -| rdfs:subPropertyOf = dul:coparticipatesWith -}}OntologyProperty:AssociatedBand202572358442014-07-08T12:45:45Z -{{ObjectProperty -| labels = - {{label|en|associated band}} - {{label|el|συνεργαζόμενο συγκρότημα}} -| rdfs:range = Band -| rdfs:subPropertyOf = dul:isMemberOf -}}OntologyProperty:AssociatedMusicalArtist202573358452014-07-08T12:45:54Z -{{ObjectProperty -| labels = - {{label|en|associated musical artist}} - {{label|el|συνεργάτης-μουσικός καλλιτέχνης}} -| rdfs:range = MusicalArtist -| rdfs:subPropertyOf = dul:hasMember -}}OntologyProperty:AssociatedRocket202574358462014-07-08T12:46:02Z -{{ObjectProperty -| labels = - {{label|en|associated rocket}} - {{label|el|συνδεόμενος πύραυλος}} -| rdfs:domain = LaunchPad -| rdfs:range = Rocket -| rdfs:subPropertyOf = dul:coparticipatesWith -}}OntologyProperty:AssociationOfLocalGovernment202576358472014-07-08T12:46:12Z -{{ObjectProperty -| labels = - {{label|en|association of local government}} - {{label|nl|vereniging van lokale overheden}} - {{label|el|συνεργασία της τοπικής αυτοδιοίκησης}} -| rdfs:domain = Settlement -| rdfs:range = PopulatedPlace -| rdfs:subPropertyOf = dul:coparticipatesWith -}}OntologyProperty:AstrologicalSign2023297358482014-07-08T12:46:20ZAstrologicalSign - -{{ObjectProperty -| labels = - {{label|en|astrological sign}} - {{label|el|αστρολογικό ζώδιο}} - {{label|de|Sternzeichen}} - {{label|pt|signo astrológico}} -| rdfs:domain = Person -| rdfs:subPropertyOf = dul:isDescribedBy -}}OntologyProperty:AtPage2029249334222014-04-03T14:04:24Z{{ DatatypeProperty -| labels = -{{label|en|page number}} -{{label|de|Seitenzahl}} -{{label|nl|pagina van verwijzing}} -| rdfs:comment@en = Page # where the referenced resource is to be found in the source document -| rdfs:domain = Reference -| rdfs:range = xsd:string -}}OntologyProperty:AtRowNumber2029250334232014-04-03T14:04:29Z{{ DatatypeProperty -| labels = -{{label|en|row number}} -{{label|de|Zeilennummer}} -{{label|nl|regelnummer van verwijzing}} -| rdfs:comment@en = Row # where the referenced resource is to be found in the source file -| rdfs:domain = Reference -| rdfs:range = xsd:string -}}OntologyProperty:AtcCode202579528692018-02-13T10:31:43Z{{DatatypeProperty -| labels = -{{label|en|ATC code}} -{{label|fr|ATC code}} -{{label|el|κώδικας ATC}} -| rdfs:range = xsd:string -| rdfs:subPropertyOf = code -}}OntologyProperty:AtcPrefix202577212732012-12-27T23:41:14Z{{DatatypeProperty -| labels = -{{label|en|ATC prefix}} -{{label|el|ATC πρόθεμα}} -{{label|fr |préfix ATC}} -| rdfs:range = xsd:string -}}OntologyProperty:AtcSuffix202578212742012-12-27T23:42:48Z{{DatatypeProperty -| labels = -{{label|en|ATC suffix}} -{{label|el|ATC κατάληξη}} -{{label|fr |suffix ATC}} -| rdfs:range = xsd:string -}}OntologyProperty:AtcSupplemental20211921523982017-10-15T13:04:35Z#REDIRECT [[OntologyProperty:AtcCode]]OntologyProperty:Athletics202580358492014-07-08T12:46:29Z -{{ObjectProperty -| rdfs:label@en = athletics -| rdfs:label@de = Leichtathletik -| rdfs:label@el = αθλητισμός -| rdfs:domain = University -| rdfs:subPropertyOf = dul:sameSettingAs -}}OntologyProperty:AthleticsDiscipline2027843334252014-04-03T14:04:37Z{{ObjectProperty -| labels = -{{label|en|athletics discipline}} -{{label|de|Leichtathletikdisziplin}} -| rdfs:domain = Athlete -| rdfs:range = Athletics -}}OntologyProperty:AtomicNumber20211020453342015-02-14T13:42:39Z{{DatatypeProperty -| labels = -{{label|en|atomic number}} -{{label|nl|atoomnummer}} -{{label|de|Ordnungszahl}} -{{label|ga|uimhir adamhach}} -{{label|pl|liczba atomowa}} -| comments = -{{comment|en|the ratio of the average mass of atoms of an element (from a single given sample or source) to 1⁄12 of the mass of an atom of carbon-12<ref>https://en.wikipedia.org/wiki/Atomic_number</ref>}} -{{comment|nl|het atoomnummer of atoomgetal (symbool: Z) geeft het aantal protonen in de kern van een atoom aan.<ref>https://nl.wikipedia.org/wiki/Atoomnummer</ref>}} -{{comment|de|die Anzahl der Protonen im Atomkern eines chemischen Elements, deshalb auch Protonenzahl.<ref>https://de.wikipedia.org/wiki/Ordnungszahl</ref>}} -{{comment|ga|Is eard is uimhir adamhach (Z) adaimh ann ná líon na bprótón i núicléas an adaimh sin<ref>https://ga.wikipedia.org/wiki/Uimhir_adamhach</ref>}} -{{comment|pl|liczba określająca, ile protonów znajduje się w jądrze danego atomu<ref>https://pl.wikipedia.org/wiki/Liczba_atomowa</ref>}} -| rdfs:domain = ChemicalElement -| rdfs:range = xsd:nonNegativeInteger -| owl:equivalentProperty = wikidata:P1086 -}} - -<references/>OntologyProperty:AttorneyGeneral2026601358502014-07-08T12:46:43Z -{{ObjectProperty -| labels = - {{label|en|attorney general}} - {{label|de|Generalstaatsanwalt}} - {{label|nl|procureur-generaal}} -| comments = - {{comment|en|Public attorney }} - {{comment|nl|de procureur-generaal}} -| rdfs:domain = LegalCase -| rdfs:range = Person -| rdf:type = | rdfs:subPropertyOf = personFunction -| owl:equivalentProperty = -| rdfs:subPropertyOf = dul:isSettingFor -}}OntologyProperty:Aunt20212292535922020-01-30T18:39:57Z{{ObjectProperty -| labels = - {{label|en|aunt}} - {{label|nl|tante}} - {{label|de|Tante}} - {{label|el|θεία}} - {{label|ja|叔母}} - {{label|ar|عمة}} -| rdfs:domain = Woman -| rdfs:range = Person -| owl:propertyDisjointWith = Uncle -}}OntologyProperty:AustraliaOpenDouble2027722500902016-01-04T12:51:33Z{{DatatypeProperty -| labels = -{{label|en|australia open double}} -| rdfs:domain = TennisPlayer -| rdfs:range = xsd:string -}}OntologyProperty:AustraliaOpenMixed2027726500912016-01-04T12:52:04Z{{DatatypeProperty -| labels = -{{label|en|australia open mixed}} -| rdfs:domain = TennisPlayer -| rdfs:range = xsd:string -}}OntologyProperty:AustraliaOpenSingle2027718500922016-01-04T12:52:38Z{{DatatypeProperty -| labels = -{{label|en|australia open single}} -| rdfs:domain = TennisPlayer -| rdfs:range = xsd:string -}}OntologyProperty:Author202581537482020-09-30T12:11:20Z{{ObjectProperty -| labels = - {{label|en|author}} - {{label|ca|autor}} - {{label|de|autor}} - {{label|el|συγγραφέας}} - {{label|fr|auteur}} - {{label|ga|údar}} - {{label|ja|作者}} - {{label|nl|auteur}} - {{label|pl|autor}} - {{label|ru|автор}} -| rdfs:domain = Work -| rdfs:range = Person -| owl:equivalentProperty = schema:author, wikidata:P50, bibschema:author, dblp2:authoredBy -| rdfs:subPropertyOf = dul:coparticipatesWith -}}OntologyProperty:Authority2023124358522014-07-08T12:46:59Z -{{ObjectProperty -| labels = - {{label|en|authority}} - {{label|de|Behörde}} - {{label|nl|autoriteit}} - {{label|el|αρχή}} -| rdfs:subPropertyOf = dul:sameSettingAs -}}OntologyProperty:AuthorityMandate2027155256962013-05-26T16:39:10Z{{DatatypeProperty -| labels = -{{label|en|authority mandate}} -| rdfs:domain = Place -| rdfs:range = xsd:string -}}OntologyProperty:AuthorityTitle2026924253892013-05-25T10:50:41Z{{DatatypeProperty -| labels = -{{label|en|authority title of a romanian settlement}} -| rdfs:domain = RomaniaSettlement -| rdfs:range = xsd:string -}}OntologyProperty:AutomobileModel202582334282014-04-03T14:04:52Z{{DatatypeProperty -|labels= -{{label|en|automobile model}} -{{label|de|Automobilmodell}} -{{label|el|μοντέλο αυτοκινήτου}} -| rdfs:domain = AutomobileEngine -| rdfs:range = xsd:string -}}OntologyProperty:AutomobilePlatform2022121358532014-07-08T12:47:08Z -{{ObjectProperty -| labels = - {{label|en|automobile platform}} - {{label|de|Automobilplattform}} - {{label|el|πλατφόρμα αυτοκινήτων}} -| rdfs:domain = Automobile -| rdfs:range = Automobile -| rdfs:subPropertyOf = dul:hasComponent -}}OntologyProperty:Autonomy2026309334302014-04-03T14:05:01Z{{ObjectProperty -| rdfs:label@en = autonomy -| rdfs:label@de = Autonomie -| rdfs:label@el = αυτονομία -}}OntologyProperty:AvailableSmartCard2023249358542014-07-08T12:47:17Z -{{ObjectProperty -| labels = - {{label|en|available smart card}} - {{label|de|benutzbare Chipkarte}} - {{label|el|διαθέσιμη έξυπνη κάρτα}} -| rdfs:domain = Station -| rdfs:range = owl:Thing -| comments = - {{comment|en|Smartcard for fare payment system for public transit systems that are or will be available at the station.}} - {{comment|de|Chipkarte für automatische Bezahlsysteme im Personenverkehr die an diesem Bahnhof benutzt werden kann.}} - {{comment|el|Έξυπνη κάρτα για το σύστημα πληρωμής των ναύλων για τα δημόσια συστήματα μεταφορών που είναι ή θα είναι διαθέσιμα στο σταθμό.}} -| rdfs:subPropertyOf = dul:coparticipatesWith -}}OntologyProperty:Average2027923493282015-10-23T13:04:10Z{{DatatypeProperty -| labels = -{{label|en|average}} -{{label|el|μέσος όρος}} -{{label|de|Durchschnitt}} -| rdfs:range = xsd:double -}}OntologyProperty:AverageAnnualGeneration2029587355132014-06-28T21:59:00Z{{DatatypeProperty -| rdfs:label@en = average annual gross power generation -| rdfs:domain = PowerStation -| rdfs:range = Energy -| rdf:type = owl:FunctionalProperty -}}OntologyProperty:AverageClassSize202583334322014-04-03T14:05:09Z{{DatatypeProperty -|labels= -{{label|en|average class size}} -{{label|de|durchschnittliche Klassengröße}} -{{label|el|μέσο μέγεθος τάξης}} -| rdfs:domain = School -| rdfs:range = xsd:float -}}OntologyProperty:AverageDepth2027093493272015-10-23T13:00:52Z{{DatatypeProperty -| labels = -{{label|de|durchschnittliche Tiefe}} -{{label|en|average depth}} -{{label|el|μέσο βάθος}} -{{label|fr|profondeur moyenne}} -| comments = -{{comment|en|Source of the value can be declare by {{linkProperties|averageDepthQuote|}}.}} -| rdfs:domain = Place -| rdfs:range = Length -| rdfs:subPropertyOf = depth -| owl:propertyDisjointWith = maximumDepth -}}OntologyProperty:AverageDepthQuote2027094493242015-10-23T12:49:35Z{{DatatypeProperty -| labels = -{{label|en|average depth quote}} -| comments = -{{comment|en|Source of the {{linkProperties|averageDepth|}} value.}} -| rdfs:domain = Place -| rdfs:range = xsd:string -}}OntologyProperty:AverageSpeed202584210422012-12-26T10:46:18Z{{DatatypeProperty -|labels= -{{label|en|average speed}} -{{label|de|Durchschnittsgeschwindigkeit}} -{{label|el|μέση ταχύτητα}} -| rdfs:domain = owl:Thing -| rdfs:range = Speed -|comments= -{{comment|en|The average speed of a thing.}} -{{comment|el|Η μέση ταχύτητα ενός πράγματος.}} -}}OntologyProperty:AvifaunaPopulation2027102256262013-05-26T13:38:35Z{{DatatypeProperty -| labels = -{{label|en|avifauna population}} -| rdfs:domain = Place -| rdfs:range = xsd:string -}}OntologyProperty:Award202585537112020-09-04T15:42:21Z{{ObjectProperty -| labels = - {{label|en|award}} - {{label|nl|onderscheiding}} - {{label|fr|récompense}} - {{label|el|διακρίσεις}} - {{label|de|Auszeichnung}} - {{label|ja|受賞}} -| rdfs:range = Award -| rdfs:comment@en = Award won by a Person, Musical or other Work, RaceHorse, Building, etc -| owl:equivalentProperty = schema:awards , wikidata:P166, rkd:Award -| rdfs:subPropertyOf = dul:coparticipatesWith -}}OntologyProperty:AwardName20210477397722015-02-05T12:19:38Z{{DatatypeProperty -| labels = -{{label|en|awardName}} -|comments= -{{comment|en|Award a person has received (literal). Compare to award (ObjectProperty)}} -| rdfs:domain = Person -| rdfs:range = xsd:string -}}OntologyProperty:AwayColourHexCode2026407235372013-01-23T23:55:24Z{{DatatypeProperty -| labels = -{{label|en|colour hex code of away jersey or its parts}} -{{label|de|Farben Hex Code des Auswärtstrikots oder Teile dieses}} -| rdfs:domain = owl:Thing -| rdfs:range = xsd:string -| comments = -{{comment|en|A colour represented by its hex code (e.g.: #FF0000 or #40E0D0).}} -| rdfs:subPropertyOf = colourHexCode -}}OntologyProperty:BSide202627473752015-03-31T14:23:29Z{{DatatypeProperty -| rdfs:label@en = b side -| rdfs:label@ca = cara b -| rdfs:label@de = B-Seite -| rdfs:label@ga = taobh b -| rdfs:label@pl = strona b -| rdfs:domain = Single -| rdfs:range = xsd:string -| rdfs:comment@en = -| owl:equivalentProperty = wikidata:P1432 -}}OntologyProperty:Background202587334352014-04-03T14:05:24Z{{DatatypeProperty -|labels= -{{label|en|background}} -{{label|de|Hintergrund}} -{{label|el|φόντο}} -| rdfs:range = xsd:string -}}OntologyProperty:Backhand2027709334362014-04-03T14:05:28Z{{DatatypeProperty -| labels = -{{label|en|backhand}} -{{label|de|Rückhand}} -| rdfs:domain = Athlete -| rdfs:range = xsd:string -}}OntologyProperty:BadGuy2027762334372014-04-03T14:05:33Z{{DatatypeProperty -| labels = -{{label|en|bad guy}} -{{label|de|Bösewicht}} -| rdfs:domain = Person -| rdfs:range = xsd:string -}}OntologyProperty:BaftaAward202588358562014-07-08T12:47:41Z -{{ObjectProperty -| labels = - {{label|en|BAFTA Award}} - {{label|de|BAFTA Award}} - {{label|el|βραβείο BAFTA}} -| rdfs:domain = Artist -| rdfs:range = Award -| rdfs:subPropertyOf = dul:coparticipatesWith -}}OntologyProperty:Band202589334432014-04-03T14:09:56Z{{DatatypeProperty -|labels= -{{label|en|band}} -{{label|el|μπάντα}} -| rdfs:domain = Protein -| rdfs:range = xsd:string -}}OntologyProperty:BandMember2024346358572014-07-08T12:47:49Z -{{ObjectProperty -| labels = - {{label|en|band member}} - {{label|de|Bandmitglied}} - {{label|nl|bandlid}} - {{label|el|μέλος μπάντας}} -| rdfs:domain = Band -| rdfs:range = Person -| comments = - {{comment|en|A member of the band.}} - {{comment|el|Ένα μέλος της μπάντας.}} -| rdfs:subPropertyOf = dul:hasMember -}}OntologyProperty:BarPassRate202590210472012-12-26T11:32:45Z{{DatatypeProperty -|labels= -{{label|en|bar pass rate}} -{{label|el|ποσοστό επιτυχίας}} -| rdfs:domain = School -| rdfs:range = xsd:float -}}OntologyProperty:Barangays2027291259662013-06-13T15:30:31Z{{DatatypeProperty -| labels = -{{label|en|barangays}} -| rdfs:domain = PopulatedPlace -| rdfs:range = xsd:string -}}OntologyProperty:BasedOn202591475042015-04-02T11:13:32Z{{ObjectProperty -| rdfs:label@en = based on -| rdfs:label@de = basierend auf -| rdfs:label@el = βασισμένο σε -| rdfs:label@ga = bunaithe ar -| rdfs:label@nl = op basis van -| rdfs:label@pl = na podstawie -| rdfs:domain = Work -| rdfs:range = Work -| rdfs:subPropertyOf = dul:coparticipatesWith -| owl:equivalentProperty = wikidata:P144 -}}OntologyProperty:Battery20211979526072017-10-31T11:12:38Z{{ObjectProperty -| labels = {{label|it|batteria}} -{{label|nl|batterij}} -{{label|es|batería}} -{{label|pt|bateria}} -{{label|fr|pile}} -{{label|de|Batterie}} -{{label|en|battery}} -| comments = - {{comment|en|Points out the battery used with/in a thing.}} -| rdfs:range = Battery -}}OntologyProperty:BattingSide202592522722017-10-08T13:53:34Z{{DatatypeProperty -| rdfs:label@en = batting side -| rdfs:label@de = Schlagarm -| rdfs:domain = Athlete -| rdfs:range = xsd:string -| rdfs:comment = The side the player bats, Left, Right, or Unknown. -}}OntologyProperty:Battle202593475392015-04-03T08:43:57Z{{ObjectProperty -| labels = - {{label|en|battle}} - {{label|nl|veldslag}} - {{label|de|Schlacht}} -| rdfs:range = MilitaryConflict -| rdfs:subPropertyOf = dul:isPartOf -| owl:equivalentProperty = wikidata:P607 -}}OntologyProperty:BattleHonours20259478782010-05-28T12:47:55Z{{DatatypeProperty -| rdfs:label@en = battle honours -| rdfs:domain = MilitaryUnit -| rdfs:range = xsd:string -}}OntologyProperty:Bbr20211891522472017-10-08T08:28:54Z{{DatatypeProperty -| labels = -{{label|en|BBR}} -{{label|nl|BBR}} -{{label|de|BBR}} -{{label|fr|BBR}} -| rdfs:domain = GridironFootballPlayer -| rdfs:range = xsd:string -| comments = -{{comment|en|For NBA players, the text between the last slash and .html in the URL of the player's basketball-reference.com profile (linked at http://www.basketball-reference.com/players/).}} -}}OntologyProperty:BeatifiedBy202595358602014-07-08T12:48:13Z -{{ObjectProperty -| labels = - {{label|en|beatified by}} - {{label|nl|zalig verklaard door}} -| rdfs:domain = Saint -| rdfs:range = Person -| rdfs:subPropertyOf = dul:coparticipatesWith -}}OntologyProperty:BeatifiedDate202596223292013-01-11T19:41:50Z{{DatatypeProperty -| labels = -{{label|en|beatified date}} -{{label|nl|zalig verklaard datum}} -| rdfs:domain = Saint -| rdfs:range = xsd:date -}}OntologyProperty:BeatifiedPlace202597358612014-07-08T12:48:21Z -{{ObjectProperty -| labels = - {{label|en|beatified place}} - {{label|nl|zalig verklaard plaats}} -| rdfs:domain = Saint -| rdfs:range = PopulatedPlace -| rdfs:subPropertyOf = dul:coparticipatesWith -}}OntologyProperty:BedCount202598224682013-01-12T23:03:16Z{{DatatypeProperty -| labels = -{{label|en|bed count}} -{{label|nl|aantal bedden}} -{{label|de|Anzahl Betten}} -{{label|el|αριθμός κρεβατιών}} -| rdfs:domain = Hospital -| rdfs:range = xsd:nonNegativeInteger -}}OntologyProperty:Believers2026165334462014-04-03T14:39:55Z{{DatatypeProperty -| rdfs:label@en = Believers -| rdfs:label@de = Gläubige -| rdfs:domain = ChristianDoctrine -| rdfs:range = xsd:string -}}OntologyProperty:BeltwayCity202599358652014-07-08T12:49:05Z -{{ObjectProperty -| rdfs:label@en = beltway city -| rdfs:domain = Road -| rdfs:range = City -| rdfs:subPropertyOf = dul:hasLocation -}}OntologyProperty:BestFinish2024120141212011-07-14T15:56:10Z{{DatatypeProperty -| rdfs:label@en = best ranking finish -| rdfs:label@de = beste Platzierung im Ranglistenturnier -| rdfs:domain = SnookerPlayer -| rdfs:range = xsd:string -}}OntologyProperty:BestLap2027807334472014-04-03T14:39:58Z{{DatatypeProperty -| labels = -{{label|en|best lap}} -{{label|de|beste Runde}} -| rdfs:range = xsd:string -| rdfs:domain = Person -}}OntologyProperty:BestRankDouble2027717500932016-01-04T12:53:16Z{{DatatypeProperty -| labels = -{{label|en|best rank double}} -| rdfs:domain = TennisPlayer -| rdfs:range = xsd:string -}}OntologyProperty:BestRankSingle2027714500942016-01-04T12:53:46Z{{DatatypeProperty -| labels = -{{label|en|best rank single}} -| rdfs:domain = TennisPlayer -| rdfs:range = xsd:string -}}OntologyProperty:BestWsopRank2028037281922013-09-03T18:15:27Z{{DatatypeProperty -| labels = -{{label|en|best wsop rank}} -| rdfs:domain = PokerPlayer -| rdfs:range = xsd:nonNegativeInteger -}}OntologyProperty:BestYearWsop2028038281932013-09-03T18:15:53Z{{DatatypeProperty -| labels = -{{label|en|best year wsop}} -| rdfs:domain = PokerPlayer -| rdfs:range = xsd:gYear -}}OntologyProperty:BgafdId2023300121762011-04-15T10:09:34Z{{DatatypeProperty -| rdfs:label@en = bgafd id -| rdfs:label@el = bgafd id -| rdfs:label@pt = código no bgafd -| rdfs:domain = Film -| rdfs:range = xsd:string -}}OntologyProperty:Bibo:pages20210309471382015-03-24T10:11:12Z{{DatatypeProperty -| labels = -{{label|en|pages}} -| rdfs:domain = Work -| rdfs:range = xsd:string -| comments = -{{comment|en|Potentially non-contiguous page spans that locate a Document within a Collection. Example: 23-25, 34, 54-56, iii-iv. Applies to Work (eg WrittenWork, Document, etc)}} -}}OntologyProperty:BibsysId2028426528702018-02-13T10:33:18Z{{DatatypeProperty -| labels = -{{label|en|BIBSYS Id}} -{{label|fr|identifiant BIBSYS}} -| comments = -{{comment|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.}} -| rdfs:range = xsd:string -| owl:equivalentProperty = wikidata:P1015 -| rdfs:subPropertyOf = code -}}OntologyProperty:BicycleInformation2023236120592011-04-07T16:03:53Z{{DatatypeProperty -| rdfs:label@en = bicycle information -| rdfs:label@de = Fahrradinformationen -| rdfs:domain = Station -| rdfs:range = xsd:string -| rdfs:comment@en = Information on station's bicycle facilities. -}}OntologyProperty:BigPoolRecord2027759270472013-07-04T14:46:43Z{{DatatypeProperty -| labels = -{{label|en|big pool record}} -| rdfs:domain = Person -| rdfs:range = xsd:string -}}OntologyProperty:BiggestCity2027955334482014-04-03T14:40:02Z{{ObjectProperty -| labels = -{{label|en|biggest city}} -{{label|de|größte Stadt}} -| rdfs:domain = Place -| rdfs:range = PopulatedPlace -}}OntologyProperty:Billed202600358662014-07-08T12:49:14Z -{{ObjectProperty -| rdfs:label@en = billed -| rdfs:domain = Wrestler -| rdfs:range = PopulatedPlace -| rdfs:subPropertyOf = dul:coparticipatesWith -}}OntologyProperty:Binomial202601358672014-07-08T12:49:22Z -{{ObjectProperty -| labels = - {{label|en|binomial}} - {{label|de|Doppelbenennung}} - {{label|el|διωνυμικός}} - {{label|ja|学名}} -| rdfs:domain = Species -| rdfs:subPropertyOf = dul:sameSettingAs -}}OntologyProperty:BinomialAuthority202602358682014-07-08T12:49:31Z -{{ObjectProperty -| rdfs:label@en = binomial authority -| rdfs:label@ja = (学名命名者) -| rdfs:domain = Species -| rdfs:subPropertyOf = dul:sameSettingAs -}}OntologyProperty:Bioavailability2025868191442012-07-31T13:15:11Z{{DatatypeProperty -| rdfs:label@en = Bioavailability -| rdfs:comment@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)." -| rdfs:domain = Drug -| rdfs:range = xsd:float -| owl:equivalentProperty = http://ncicb.nci.nih.gov/xml/owl/EVS/Thesaurus.owl#bioavailability -}}OntologyProperty:Bioclimate2027082334502014-04-03T14:40:10Z{{DatatypeProperty -| labels = -{{label|en|bioclimate}} -{{label|de|Bioklima}} -| rdfs:domain = Place -| rdfs:range = xsd:string -}}OntologyProperty:Biome202603358692014-07-08T12:49:38Z -{{ObjectProperty -| rdfs:label@en = biome -| rdfs:label@ja = 生物群系 -| rdfs:subPropertyOf = dul:isClassifiedBy -}}OntologyProperty:Bird2027136474312015-04-01T14:06:17Z{{ObjectProperty -| labels = - {{label|en|bird}} -{{label|de|Vogel}} - {{label|el|πτηνά}} - {{label|ga|éan}} - {{label|pl|ptak}} -| comments = - {{comment|el|Τα πτηνά είναι ζώα ομοιόθερμα σπονδυλωτά, που στη συντριπτική πλειονότητα τους μπορούν να πετούν με τις πτέρυγες ή φτερούγες τους.}} -| rdfs:domain = Place -| rdfs:range = Species -}}OntologyProperty:BirthDate202604537782020-10-20T14:14:28Z{{DatatypeProperty -| labels = -{{label|en|birth date}} -{{label|bn|জন্মদিন}} -{{label|ca|data de naixement}} -{{label|de|Geburtsdatum}} -{{label|el|ημερομηνία_γέννησης}} -{{label|fr|date de naissance}} -{{label|ga|dáta breithe}} -{{label|ja|生年月日}} -{{label|nl|geboortedatum}} -{{label|pl|data urodzenia}} -| rdfs:domain = Person -| rdfs:range = xsd:date -| rdf:type = owl:FunctionalProperty -| owl:equivalentProperty = schema:birthDate, wikidata:P569, gnd:dateOfBirth -}}OntologyProperty:BirthName202605474352015-04-01T14:21:02Z{{DatatypeProperty -| labels = -{{label|en|birth name}} -{{label|ca|nom de naixement}} -{{label|de|Geburtsname}} -{{label|el|όνομα_γέννησης}} -{{label|nl|geboortenaam}} -{{label|pl|imię i nazwisko przy urodzeniu}} -| rdfs:domain = Person -| rdfs:range = rdf:langString -| owl:equivalentProperty = wikidata:P1477 -}}OntologyProperty:BirthPlace202606536682020-07-30T21:21:25Z{{ObjectProperty -| labels = - {{label|en|birth place}} - {{label|ca|lloc de naixement}} - {{label|de|Geburtsort}} - {{label|el|τόπος_γέννησης}} - {{label|fr|lieu de naissance}} - {{label|ga|áit bhreithe}} - {{label|ja|出生地}} - {{label|nl|geboorteplaats}} - {{label|pl|miejsce urodzenia}} -| comments = - {{comment|en|where the person was born}} -| rdfs:domain = Person -| rdfs:range = Place -| owl:equivalentProperty = schema:birthPlace, wikidata:P19 -| rdfs:subPropertyOf = dul:hasLocation -}}OntologyProperty:BirthSign2027770535512019-08-22T14:16:02Z{{ObjectProperty -| labels = -{{label|en|birth sign}} -{{label|de|Sternzeichen}} -| rdfs:domain = Person -}}OntologyProperty:BirthYear202607537902020-10-26T19:55:45Z{{DatatypeProperty -| labels = -{{label|en|birth year}} -{{label|el|έτος γέννησης}} -{{label|nl|geboortejaar}} -{{label|de|Geburtsjahr}} -{{label|ja|生年}} -| rdfs:domain = Person -| rdfs:range = xsd:gYear -| rdf:type = owl:FunctionalProperty -| owl:equivalentProperty = wikidata:P569, gnd:dateOfBirth -}}OntologyProperty:Bishopric20211238478552015-05-07T14:25:11Z{{ObjectProperty -| rdfs:label@en = bishopric -| rdfs:label@bg = архиерейско наместничество -| rdfs:domain = ReligiousBuilding -| rdfs:comment@en = A bishopric (diocese or episcopal see) is a district under the supervision of a bishop. It is divided into parishes. Compare with eparchy -}}OntologyProperty:BlackLongDistancePisteNumber2027200257502013-06-01T13:24:10Z{{DatatypeProperty -| labels = -{{label|en|long distance piste number}} -| rdfs:domain = Place -| rdfs:range = xsd:nonNegativeInteger -}}OntologyProperty:BlackSkiPisteNumber2027193257432013-06-01T13:21:02Z{{DatatypeProperty -| labels = -{{label|en|black ski piste number}} -| rdfs:domain = Place -| rdfs:range = xsd:nonNegativeInteger -}}OntologyProperty:Blazon2026775510752016-05-12T16:55:42Z{{DatatypeProperty -| labels = -{{label|en|blazon}} -{{label|de|Wappen}} -{{label|fr|blason}} -{{label|bg|емблема}} -| comments = -{{comment|en|Coat of arms (heraldic image) or emblem }} -| rdfs:range = xsd:string -}}OntologyProperty:BlazonCaption2026776278662013-07-16T15:04:14Z{{DatatypeProperty -| labels = -{{label|en|Blazon caption}} -| rdfs:domain = Blazon -| rdfs:range = xsd:string -}}OntologyProperty:BlazonLink2027116256492013-05-26T14:55:03Z{{DatatypeProperty -| labels = -{{label|en|blazon link}} -| rdfs:range = xsd:string -}}OntologyProperty:BlazonRatio2027562267742013-07-01T14:45:25Z{{DatatypeProperty -| labels = -{{label|en|blazon ratio}} -| rdfs:range = xsd:double -}}OntologyProperty:Block2024439334532014-04-03T14:40:31Z{{DatatypeProperty -| rdfs:label@en = block -| rdfs:label@de = Block -| rdfs:label@tr = blok -| rdfs:domain = VolleyballPlayer -| rdfs:range = xsd:string -}}OntologyProperty:BlockAlloy202608358712014-07-08T12:50:08Z -{{ObjectProperty -| labels = - {{label|en|block alloy}} - {{label|el|κράμα μετάλλου}} -| rdfs:domain = AutomobileEngine -| rdfs:subPropertyOf = dul:coparticipatesWith -}}OntologyProperty:BloodGroup2027771367552014-07-09T10:18:15Z{{DatatypeProperty -| labels = -{{label|en|blood group}} -{{label|el|ομάδα αίματος}} -{{label|de|Blutgruppe}} -| rdfs:domain = Person -| rdfs:range = xsd:string -}}OntologyProperty:BloodType2023295358722014-07-08T12:50:17Z -{{ObjectProperty -| labels = - {{label|en|blood type}} - {{label|el|ομάδα αίματος}} - {{label|de|Blutgruppe}} - {{label|pt|tipo sanguíneo}} - {{label|nl|bloedgroep}} - {{label|ja|血液型}} -| rdfs:domain = Person -| rdfs:subPropertyOf = dul:isClassifiedBy -}}OntologyProperty:BlueLongDistancePisteNumber2027202257522013-06-01T13:25:17Z{{DatatypeProperty -| labels = -{{label|en|blue long distance piste number}} -| rdfs:domain = Place -| rdfs:range = xsd:nonNegativeInteger -}}OntologyProperty:BlueSkiPisteNumber2027195257452013-06-01T13:21:54Z{{DatatypeProperty -| labels = -{{label|en|blue ski piste number}} -| rdfs:domain = Place -| rdfs:range = xsd:nonNegativeInteger -}}OntologyProperty:BnfId2028423528712018-02-13T10:34:40Z{{DatatypeProperty -| labels = -{{label|en|BNF Id}} -| comments = -{{comment|en|Authority data of people listed in the general catalogue of the National Library of France}} -| rdfs:range = xsd:string -| owl:equivalentProperty = wikidata:P268 -| rdfs:subPropertyOf = code -}}OntologyProperty:Board202609358732014-07-08T12:50:26Z -{{ObjectProperty -| labels = - {{label|en|board}} - {{label|el|επιβιβάζομαι}} - {{label|nl|bestuur}} - {{label|ja|取締役会}} -| rdfs:domain = Person -| rdfs:subPropertyOf = dul:isMemberOf -}}OntologyProperty:BodyDiscovered202611491442015-10-13T09:55:44Z{{DisclaimerOntologyProperty}} - - -{{ObjectProperty -| labels = - {{label|en|body discovered}} - {{label|de|Leiche entdeckt}} - {{label|el|ανακάλυψη σώματος}} - {{label|ja|遺体発見}} -| rdfs:domain = Person -| rdfs:range = Place -| rdfs:subPropertyOf = dul:hasLocation -}}OntologyProperty:BodyStyle202613358752014-07-08T12:50:42Z -{{ObjectProperty -| labels = - {{label|en|body style}} - {{label|el|τύπος σώματος}} -| rdfs:domain = Automobile -| rdfs:subPropertyOf = dul:isDescribedBy -}}OntologyProperty:Boiler2022539358762014-07-08T12:50:50Z -{{ObjectProperty -| labels = - {{label|en|boiler}} - {{label|de|Kessel}} - {{label|el|δοχείο βράσης}} -| rdfs:domain = Locomotive -| rdfs:subPropertyOf = dul:hasComponent -}}OntologyProperty:BoilerPressure2022540358772014-07-08T12:50:58Z -{{ObjectProperty -| labels = - {{label|en|boiler pressure}} - {{label|de|Kesseldruck}} - {{label|el|πίεση δοχείου βράσης}} -| rdfs:domain = Locomotive -| rdfs:subPropertyOf = dul:isClassifiedBy -}}OntologyProperty:BoilingPoint202614328552014-03-20T21:56:18Z{{DatatypeProperty -| labels = -{{label|en|boiling point}} -{{label|el|σημείο βρασμού}} -{{label|de|Siedepunkt}} -{{label|fr|point d'ébullition}} -{{label|ja|沸点}} -{{label|nl|kookpunt}} -| rdfs:domain = ChemicalSubstance -| rdfs:range = Temperature -}}OntologyProperty:Booster202615358782014-07-08T12:51:06Z -{{ObjectProperty -| labels = - {{label|en|booster}} - {{label|el|προωθητής}} -| rdfs:domain = SpaceMission -| rdfs:range = Rocket -| rdfs:subPropertyOf = dul:hasParticipant -}}OntologyProperty:Border202616523032017-10-08T20:22:38Z -{{ObjectProperty -| labels = - {{label|en|border}} - {{label|de|Grenze}} - {{label|el|σύνορα}} -| rdfs:domain = owl:Thing -| rdfs:range = Area -| rdfs:subPropertyOf = dul:hasCommonBoundary -}}OntologyProperty:Borough2022135358802014-07-08T12:51:23Z -{{ObjectProperty -| labels = - {{label|en|borough}} - {{label|de|Bezirk}} - {{label|el|δήμος}} - {{label|nl|stadsdeel}} -| rdfs:domain = PopulatedPlace -| rdfs:range = PopulatedPlace -| rdfs:subPropertyOf = dul:hasLocation -}}OntologyProperty:Bourgmestre2026967358812014-07-08T12:51:31Z -{{ObjectProperty -| labels = - {{label|en|bourgmestre}} -| rdfs:domain = Settlement -| rdfs:range = Person -| rdfs:subPropertyOf = dul:sameSettingAs -}}OntologyProperty:BowlRecord202617235782013-01-26T11:22:26Z{{DatatypeProperty -| labels = -{{label|en|bowl record}} -{{label|el|ρεκόρ μπόουλινγκ}} -| rdfs:domain = CollegeCoach -| rdfs:range = xsd:string -}}OntologyProperty:BowlingSide20211896522712017-10-08T13:52:55Z{{DatatypeProperty -| rdfs:label@en = bowling side -| rdfs:label@de = Werfarm -| rdfs:domain = Athlete -| rdfs:range = xsd:string -| rdfs:comment = The side the player bowls, Left, Right, or Unknown. -}}OntologyProperty:BoxerStyle2027847526452017-11-03T16:10:09Z{{ObjectProperty -| labels = - {{label|en|boxing style}} - {{label|de|Boxstil}} -| rdfs:domain = Boxer -| rdfs:range = Sport -}}OntologyProperty:BpnId2028424528622018-02-13T08:36:00Z{{DatatypeProperty -| labels = -{{label|en|BPN Id}} -| comments = -{{comment|en|Dutch project with material for 40,000 digitized biographies, including former colonies of the Netherlands.}} -| rdfs:range = xsd:string -| rdfs:subPropertyOf = code -}}OntologyProperty:BrainInfoNumber202618230382013-01-15T23:04:27Z{{DatatypeProperty -| labels = -{{label|en|brain info number}} -{{label|el|αριθμός νοητικής πληροφόρησης}} -| rdfs:domain = Brain -| rdfs:range = xsd:string -}}OntologyProperty:BrainInfoType202619230392013-01-15T23:05:56Z{{DatatypeProperty -| labels = -{{label|en|brain info type}} -{{label|el|τύπος νοητικής πληροφόρησης}} -| rdfs:domain = Brain -| rdfs:range = xsd:string -}}OntologyProperty:BranchFrom202621358822014-07-08T12:51:39Z -{{ObjectProperty -| labels = - {{label|en|branch from}} - {{label|el|παράρτημα από}} -| rdfs:domain = AnatomicalStructure -| rdfs:range = AnatomicalStructure -| rdfs:subPropertyOf = dul:hasCommonBoundary -}}OntologyProperty:BranchTo202623358832014-07-08T12:51:57Z -{{ObjectProperty -| rdfs:label@en = branch to -| rdfs:label@el = υποκατάστημα -| rdfs:domain = AnatomicalStructure -| rdfs:range = AnatomicalStructure -| rdfs:subPropertyOf = dul:hasCommonBoundary -}}OntologyProperty:Brand202624358842014-07-08T12:52:05Z -{{ObjectProperty -| rdfs:label@en = brand -| rdfs:label@el = μάρκα -| rdfs:domain = WrestlingEvent -| rdfs:range = TelevisionShow -| rdfs:subPropertyOf = dul:coparticipatesWith -}}OntologyProperty:Breeder2026178358852014-07-08T12:52:13Z -{{ObjectProperty -| labels = - {{label|en|breeder}} - {{label|de|Züchter}} - {{label|el|κτηνοτρόφος}} -| rdfs:domain = Animal -| rdfs:range = Person -| rdfs:subPropertyOf = dul:coparticipatesWith -}}OntologyProperty:BridgeCarries2023435217332013-01-03T16:42:18Z{{DatatypeProperty -| rdfs:label@en = bridge carries -| rdfs:label@el = γέφυρα μεταφοράς -| rdfs:domain = Bridge -| rdfs:range = xsd:string -| rdfs:comment@en = Type of vehicles the bridge carries. -}}OntologyProperty:BrinCode20212058529162018-02-20T15:52:20Z{{DatatypeProperty -| rdfs:label@en = BRIN code -| rdfs:label@nl = Brin code -| rdfs:domain = EducationalInstitution -| rdfs:range = xsd:string -| rdfs:subPropertyOf = code -| rdfs:comment@en = The code used by the Dutch Ministry of Education to identify a school (as an organisation) -}}OntologyProperty:BritishComedyAwards202625358862014-07-08T12:52:21Z -{{ObjectProperty -| rdfs:label@en = British Comedy Awards -| rdfs:label@de = British Comedy Awards -| rdfs:label@el = Βρετανικά Βραβεία Κωμωδίας -| rdfs:domain = Comedian -| rdfs:range = Award -| rdfs:subPropertyOf = dul:coparticipatesWith -}}OntologyProperty:BritishOpen2028051282062013-09-03T18:49:40Z{{DatatypeProperty -| labels = -{{label|en|britishOpen}} -| rdfs:domain = Athlete -| rdfs:range = xsd:string -}}OntologyProperty:BritishWins2027648273172013-07-10T11:27:34Z{{ObjectProperty -| labels = -{{label|en|british wins}} -| rdfs:domain = Person -| rdfs:range = skos:Concept -}}OntologyProperty:BroadcastArea202626358872014-07-08T12:52:31Z -{{ObjectProperty -| rdfs:label@en = broadcast area -| rdfs:label@de = Empfangsgebiet -| rdfs:label@el = περιοχή αναμετάδοσης -| rdfs:domain = Broadcaster -| rdfs:range = PopulatedPlace -| rdfs:subPropertyOf = dul:hasLocation -}}OntologyProperty:BroadcastNetwork2023027535442019-06-28T18:34:35Z -{{ObjectProperty -| rdfs:label@en = broadcast network -| rdfs:label@ar = الشبكة -| rdfs:label@de = Sendergruppe -| rdfs:label@el = τηλεοπτικό κανάλι -| rdfs:label@fr = chaîne de télévision généraliste -| rdfs:domain = Broadcaster -| rdfs:range = BroadcastNetwork -| rdfs:comment@en = The parent broadcast network to which the broadcaster belongs. -| rdfs:comment@de = Die Sendergruppe zu dem der Rundfunkveranstalter gehört. -| rdfs:subPropertyOf = dul:isMemberOf -}}OntologyProperty:BroadcastRepeater2023083217402013-01-03T17:01:23Z{{DatatypeProperty -| rdfs:label@en = broadcast repeater -| rdfs:label@el = επαναληπτική αναμετάδοση -| rdfs:domain = Broadcaster -| rdfs:range = xsd:string -| rdfs:comment@en = A repeater is an electronic device that receives a signal and retransmits it at a higher level and/or higher power, or onto the other side of an obstruction, so that the signal can cover longer distances (http://en.wikipedia.org/wiki/Repeater). -}}OntologyProperty:BroadcastStationClass2023086217412013-01-03T17:04:23Z{{DatatypeProperty -| rdfs:label@en = broadcast station class -| rdfs:label@el = αναμετάδοση ραδιοφωνικού σταθμού -| rdfs:domain = Broadcaster -| rdfs:range = xsd:string -| rdfs:comment@en = The broadcast station class (http://en.wikipedia.org/wiki/List_of_North_American_broadcast_station_classes). -}}OntologyProperty:BroadcastTranslator2023081217422013-01-03T17:06:33Z{{DatatypeProperty -| rdfs:label@en = broadcast translator -| rdfs:label@el = αναμετάδοση μεταφραστή -| rdfs:domain = Broadcaster -| rdfs:range = xsd:string -| rdfs:comment@en = A broadcast relay station, relay transmitter, broadcast translator (U.S.), rebroadcaster (Canada), or repeater (two-way radio) is a broadcast transmitter which relays, repeats, or reflects the signal of another radio station or television station (http://en.wikipedia.org/wiki/Broadcast_relay_station). -}}OntologyProperty:Broadcaster20212283535412019-06-28T18:19:10Z{{Class -| labels = -{{label|ar|الشبكة}} -{{label|en|broadcaster}} -{{label|ga|craoltóir}} -{{label|fr|diffuseur}} -{{label|el|εκφωνητής}} -{{label|nl|omroep}} -{{label|de|Rundfunkveranstalter}} -{{label|ja|放送事業者}} -{{label|ko|방송}} -{{label|it|emittente}} -| rdfs:subClassOf = Organisation -| comments = -{{comment|en|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)}} -{{comment|el|Ο ραδιοτηλεοπτικός φορέας είναι ένας οργανισμός που είναι υπεύθυνος για την παραγωγή ραδιοφωνικών ή τηλεοπτικών προγραμμάτων και / ή τη διαβίβασή τους}} -{{comment|de|Ein Rundfunkveranstalter (oder auch Sendeunternehmen) betreibt Hörfunk- oder Fernsehprogramme. (http://de.wikipedia.org/wiki/Rundfunkveranstalter - 28/03/2011)}} -| owl:equivalentClass = wikidata:Q15265344 -}}OntologyProperty:BronzeMedalDouble2027735500952016-01-04T12:54:27Z{{DatatypeProperty -| labels = -{{label|en|bronze medal double}} -{{label|de|Bronzemedaille Doppel}} -| rdfs:domain = TennisPlayer -| rdfs:range = xsd:string -}}OntologyProperty:BronzeMedalMixed2027738500962016-01-04T12:54:54Z{{DatatypeProperty -| labels = -{{label|en|bronze medal mixed}} -{{label|de|Bronzemedaille gemischt}} -| rdfs:domain = TennisPlayer -| rdfs:range = xsd:string -}}OntologyProperty:BronzeMedalSingle2027732500972016-01-04T12:55:25Z{{DatatypeProperty -| labels = -{{label|en|bronze medal single}} -{{label|de|Bronzemedaille Einzel}} -| rdfs:domain = TennisPlayer -| rdfs:range = xsd:string -}}OntologyProperty:BronzeMedalist2025668358892014-07-08T12:52:48Z -{{ObjectProperty -| rdfs:label@en = bronze medalist -| rdfs:label@de = Bronzemedaillengewinner -| rdfs:label@pt = medalha de bronze -| rdfs:label@el = χάλκινο μετάλλιο -| rdfs:label@nl = bronzen medaille drager -| rdfs:domain = SportsEvent -| rdfs:range = Person -| rdfs:subPropertyOf = Medalist, dul:hasParticipant -}}OntologyProperty:Brother20212286535782020-01-30T10:04:00Z{{ObjectProperty -| labels = - {{label|en|brother}} - {{label|nl|broer}} - {{label|de|Bruder}} - {{label|el|αδελφός}} - {{label|ja|兄}} - {{label|ar|شقيق}} -| rdfs:domain = Man -| rdfs:range = Person -| owl:propertyDisjointWith = parent -}}OntologyProperty:Budget202628538032020-12-01T17:58:07Z{{DatatypeProperty -| labels = -{{label|en|budget}} -{{label|da|budget}} -{{label|de|Etat}} -{{label|nl|budget}} -{{label|el|προϋπολογισμός}} -| rdfs:range = Currency -| owl:equivalentProperty=wikidata:P2769 -}}OntologyProperty:BudgetYear2026984334712014-04-03T14:42:00Z{{DatatypeProperty -| labels = -{{label|en|budget year}} -{{label|de|Haushaltsjahr}} -| rdfs:range = xsd:string -| rdfs:domain = Place -}}OntologyProperty:Builder2022534475412015-04-03T08:47:39Z{{ObjectProperty -| labels = - {{label|en|builder}} - {{label|de|Baumeister}} - {{label|nl|bouwer}} - {{label|el|οικοδόμος}} -| rdfs:subPropertyOf = dul:coparticipatesWith -| owl:equivalentProperty = wikidata:P176 -}}OntologyProperty:Building202629358912014-07-08T12:53:06Z -{{ObjectProperty -| rdfs:label@en = building -| rdfs:label@de = Gebäude -| rdfs:label@nl = gebouw -| rdfs:label@el = κτίριο -| rdfs:domain = Island -| rdfs:range = Building -| rdfs:subPropertyOf = dul:isLocationOf -}}OntologyProperty:BuildingEndDate202630486992015-08-10T10:23:21Z{{DatatypeProperty -| rdfs:label@en = building end date -| rdfs:label@el = Ημερομηνία λήξης κατασκευής -| rdfs:comment@en = Building end date of an ArchitecturalStructure, man-made Lake, etc. For older structures this can be just a year or century, for newer structures an exact date is preferred -| rdfs:range = xsd:string -}}OntologyProperty:BuildingEndYear2023387217222013-01-03T16:26:25Z{{DatatypeProperty -| labels = -{{label|en|building end year}} -{{label|nl|bouw eindjaar}} -{{label|el|έτος λήξης κατασκευής}} -| rdfs:domain = ArchitecturalStructure -| rdfs:range = xsd:gYear -}}OntologyProperty:BuildingStartDate202631487002015-08-10T10:23:45Z{{DatatypeProperty -| rdfs:label@en = building start date -| rdfs:label@el = Ημερομηνία έναρξης κατασκευής -| rdfs:comment@en = Building start date of an ArchitecturalStructure, man-made Lake, etc. For older structures this can be just a year or century, for newer structures an exact date is preferred -| rdfs:range = xsd:string -}}OntologyProperty:BuildingStartYear2023388217202013-01-03T16:24:35Z{{DatatypeProperty -| labels = -{{label|en|building start year}} -{{label|nl|bouw start jaar}} -{{label|el|έτος έναρξης κατασκευής}} -| rdfs:domain = ArchitecturalStructure -| rdfs:range = xsd:gYear -}}OntologyProperty:BuildingType2026257358922014-07-08T12:53:17Z -{{ObjectProperty -| labels = - {{label|en|buildingType}} - {{label|el|Τύπος κτιρίου}} - {{label|nl|soort gebouw}} -| comments = - {{comment|en|Type is too general. We should be able to distinguish types of music from types of architecture}} - {{comment|nl|Type is te algemeen. We moeten soorten muziek van soorten gebouwen kunnen onderscheiden}} - {{comment|el|Ο τύπος είναι πολύ γενικό.Θα πρέπει να είναι σε θέση να διακρίνουν τα είδη της μουσικής από τους τύπους της αρχιτεκτονικής}} -| rdfs:domain = Building -| rdfs:range = owl:Thing -| rdf:type = | rdfs:subPropertyOf = Type -| owl:equivalentProperty = -| rdfs:subPropertyOf = dul:isClassifiedBy -}}OntologyProperty:BustSize2022410433112015-02-06T12:16:45Z{{DatatypeProperty - |rdfs:label@en=bust size - |rdfs:label@el=Μέγεθος προτομής - |rdfs:label@ja=バスト - |rdfs:label@pl=biust - |rdfs:label@bg=размер бюст - |rdfs:domain=Person - |rdfs:range=Length -}}OntologyProperty:BustWaistHipSize20210988433172015-02-06T12:19:51Z{{DatatypeProperty - |rdfs:label@en=bust-waist-hip Size - |rdfs:label@bg=размер бюст-талия-ханш - |rdfs:domain=Person - |rdfs:range=xsd:string - |rdfs:comment@en=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 -}}OntologyProperty:CableCar2027188334742014-04-03T14:42:11Z{{DatatypeProperty -| labels = -{{label|en|cable car}} -{{label|de|Drahtseilbahn}} -| rdfs:domain = Place -| rdfs:range = xsd:nonNegativeInteger -}}OntologyProperty:CalculationNeeds20211769518102017-01-06T15:33:41Z -{{ObjectProperty -| rdfs:label@en = its calculation needs -| rdfs:label@ru = вычисление требует -| rdfs:domain = owl:Thing -| rdfs:range = owl:Thing -}}OntologyProperty:CallSign202632335242014-04-03T15:06:17Z{{DatatypeProperty -| rdfs:label@en = call sign -| rdfs:label@pt = indicativo de chamada -| rdfs:range = xsd:string -| rdfs:comment@en = 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. -| rdfs:comment@pt = Indicativo de chamada (também chamado de call-sign, call letters ou simplesmente call) é uma designação única de uma estação de transmissão de rádio. Também é conhecido, de forma errônea, como prefixo. -}}OntologyProperty:CallsignMeaning202633114222011-03-31T13:18:22Z{{DatatypeProperty -| rdfs:label@en = call sign meaning -| rdfs:domain = Broadcaster -| rdfs:range = xsd:string -| rdfs:comment@en = The out written call sign. -}}OntologyProperty:Campus202634358942014-07-08T12:53:34Z -{{ObjectProperty -| labels = - {{label|en|campus}} - {{label|de|Campus}} - {{label|el|πανεπιστημιούπολη}} -| comments = - {{comment|el|Πανεπιστημιούπολη εννοείται κάθε πολεοδομικό συγκρότημα που προσφέρει οικιστικές, διδακτικές και ερευνητικές διευκολύνσεις στους φοιτητές ενός πανεπιστημίου.}} -| rdfs:domain = University -| rdfs:subPropertyOf = dul:hasLocation -}}OntologyProperty:CampusSize20263778942010-05-28T12:50:23Z{{DatatypeProperty -| rdfs:label@en = campus size -| rdfs:domain = School -| rdfs:range = Area -}}OntologyProperty:CampusType202638525782017-10-31T08:28:01Z{{DatatypeProperty -| rdfs:label@en = campus type -| rdfs:domain = EducationalInstitution -| rdfs:range = rdf:langString -}}OntologyProperty:CanBaggageChecked2023237120602011-04-07T16:08:26Z{{DatatypeProperty -| rdfs:label@en = can baggage checked -| rdfs:label@de = Gepäckkontrolle möglich -| rdfs:domain = Station -| rdfs:range = xsd:boolean -| rdfs:comment@en = Whether bags can be checked. -}}OntologyProperty:CannonNumber2027205257552013-06-01T13:27:37Z{{DatatypeProperty -| labels = -{{label|en|cannon number}} -| rdfs:domain = Place -| rdfs:range = xsd:nonNegativeInteger -}}OntologyProperty:CanonizedBy202639358952014-07-08T12:53:42Z -{{ObjectProperty -| labels = - {{label|en|canonized by}} - {{label|nl|heilig verklaard door}} -| rdfs:domain = Saint -| rdfs:range = Person -| rdfs:subPropertyOf = dul:coparticipatesWith -}}OntologyProperty:CanonizedDate202640223362013-01-11T19:46:40Z{{DatatypeProperty -| labels = -{{label|en|canonized date}} -{{label|nl|heiligverklaring datum}} -| rdfs:domain = Saint -| rdfs:range = xsd:date -}}OntologyProperty:CanonizedPlace202641358962014-07-08T12:53:50Z -{{ObjectProperty -| labels = - {{label|en|canonized place}} - {{label|nl|heiligverklaring plaats}} -| rdfs:domain = Saint -| rdfs:range = PopulatedPlace -| rdfs:subPropertyOf = dul:coparticipatesWith -}}OntologyProperty:Canton202642358972014-07-08T12:53:58Z -{{ObjectProperty -| labels = - {{label|en|canton}} - {{label|de|Kanton}} - {{label|nl|kanton}} - {{label|fr|canton}} -| rdfs:domain = Settlement -| rdfs:range = Settlement -| rdfs:subPropertyOf = dul:hasLocation -}}OntologyProperty:Capacity202643487062015-08-10T10:29:40Z{{DatatypeProperty -| rdfs:label@en = capacity -| rdfs:label@de = Kapazität -| rdfs:label@fr = capacité -| rdfs:comment@en = Number of people who can be served by a Train or other service; or participate in a SoccerClub, CricketTeam, etc -| rdfs:range = xsd:nonNegativeInteger -}}OntologyProperty:CapacityFactor2029591355172014-06-28T22:30:10Z{{DatatypeProperty -| rdfs:label@en = capacity factor -| rdfs:domain = PowerStation -| rdfs:range = xsd:float -}}OntologyProperty:Capital202644517892017-01-03T12:52:31Z{{ObjectProperty -| labels = - {{label|de|Hauptstadt}} - {{label|en|capital}} - {{label|el|πρωτεύουσα}} - {{label|fr|capitale}} - {{label|es|capital}} - {{label|pt|capital}} - {{label|nl|hoofdstad}} - {{label|hi|राजधानी}} -| rdfs:domain = PopulatedPlace -| rdfs:range = City -| rdfs:subPropertyOf = administrativeHeadCity, dul:isLocationOf -| owl:equivalentProperty = wikidata:P36 -}}OntologyProperty:CapitalCoordinates2027118334792014-04-03T14:42:31Z{{DatatypeProperty -| labels = -{{label|en|capital coordinates}} -{{label|de|Hauptstadt Koordinaten}} -| rdfs:domain = Place -| rdfs:range = xsd:string -}}OntologyProperty:CapitalCountry202645358992014-07-08T12:54:26Z -{{ObjectProperty -| rdfs:label@en = capital country -| rdfs:label@de = Hauptstadt Land -| rdfs:domain = Island -| rdfs:range = Country -| rdfs:subPropertyOf = dul:hasLocation -}}OntologyProperty:CapitalDistrict202646359002014-07-08T12:54:35Z -{{ObjectProperty -| rdfs:label@en = capital district -| rdfs:domain = Island -| rdfs:range = PopulatedPlace -| rdfs:subPropertyOf = dul:hasLocation -}}OntologyProperty:CapitalElevation20264778982010-05-28T12:50:54Z{{DatatypeProperty -| rdfs:label@en = capital elevation -| rdfs:domain = Island -| rdfs:range = Length -}}OntologyProperty:CapitalMountain202648359012014-07-08T12:54:42Z -{{ObjectProperty -| rdfs:label@en = capital mountain -| rdfs:domain = Island -| rdfs:range = Mountain -| rdfs:subPropertyOf = dul:hasLocation -}}OntologyProperty:CapitalPlace202649359022014-07-08T12:54:51Z -{{ObjectProperty -| rdfs:label@en = capital place -| rdfs:domain = Island -| rdfs:range = PopulatedPlace -| rdfs:subPropertyOf = dul:hasLocation -}}OntologyProperty:CapitalPosition202650359032014-07-08T12:54:59Z -{{ObjectProperty -| rdfs:label@en = capital position -| rdfs:domain = Island -| rdfs:range = geo:SpatialThing -| rdfs:subPropertyOf = dul:hasLocation -}}OntologyProperty:CapitalRegion202651359042014-07-08T12:55:07Z -{{ObjectProperty -| rdfs:label@en = capital region -| rdfs:label@de = Hauptstadtregion -| rdfs:domain = Island -| rdfs:range = PopulatedPlace -| rdfs:subPropertyOf = dul:hasLocation -}}OntologyProperty:CaptureDate2023102116472011-04-02T10:50:02Z{{DatatypeProperty -| rdfs:label@en=capture date -| rdfs:domain = Ship -| rdfs:range = xsd:date -}}OntologyProperty:CarNumber20265779042010-05-28T12:51:43Z{{DatatypeProperty -| rdfs:label@en = car number -| rdfs:domain = FormulaOneRacer -| rdfs:range = xsd:integer -}}OntologyProperty:Carbohydrate20211302487642015-08-13T10:15:26Z{{DatatypeProperty -| labels = -{{label|en|carbohydrate}} -| rdfs:domain = Food -| rdfs:range = Mass -| comments = -{{comment|en|Amount of carbohydrates per servingSize of a Food}} -}}OntologyProperty:Carcinogen2028938334822014-04-03T14:42:51Z{{DatatypeProperty -| rdfs:label@en = carcinogen -| rdfs:label@de = Karzinogen -| rdfs:label@nl = kankerverwekkend -| rdfs:domain = ChemicalSubstance -| rdfs:range = xsd:string -}}OntologyProperty:CareerPoints20265278992010-05-28T12:51:03Z{{DatatypeProperty -| rdfs:label@en = career points -| rdfs:domain = FormulaOneRacer -| rdfs:range = xsd:integer -}}OntologyProperty:CareerPrizeMoney202653236932013-02-11T08:15:31Z{{DatatypeProperty -| labels = -{{label|en|career prize money}} -{{label|nl|prijzengeld loopbaan}} -| rdfs:domain = TennisPlayer -| rdfs:range = Currency -}}OntologyProperty:CareerStation2026504359052014-07-08T12:55:27Z -{{ObjectProperty -| labels = - {{label|en|career station}} - {{label|de|Karrierestation}} - {{label|nl|carrièrestap}} -| rdfs:range = CareerStation -| rdfs:domain = Person -| comments = - {{comment|en|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.}} -| rdfs:subPropertyOf = dul:hasSetting -}}OntologyProperty:CargoFuel20265479012010-05-28T12:51:19Z{{DatatypeProperty -| rdfs:label@en = cargo fuel -| rdfs:domain = Spacecraft -| rdfs:range = Mass -}}OntologyProperty:CargoGas20265579022010-05-28T12:51:25Z{{DatatypeProperty -| rdfs:label@en = cargo gas -| rdfs:domain = Spacecraft -| rdfs:range = Mass -}}OntologyProperty:CargoWater20265679032010-05-28T12:51:35Z{{DatatypeProperty -| rdfs:label@en = cargo water -| rdfs:domain = Spacecraft -| rdfs:range = Mass -}}OntologyProperty:CasNumber202658486292015-08-06T14:12:40Z{{DatatypeProperty -| rdfs:label@en = CAS number -| rdfs:label@fr = numéro CAS -| rdfs:label@ja = CAS番号 -| rdfs:comment@en = Chemical Abstracts Service number. Applicable to ChemicalCompound or Biomolecule (eg Protein) -| rdfs:range = xsd:string -}}OntologyProperty:CasSupplemental20265979062010-05-28T12:51:59Z{{DatatypeProperty -| rdfs:label@en = CAS supplemental -| rdfs:range = xsd:string -}}OntologyProperty:Case2028028334832014-04-03T14:42:55Z{{DatatypeProperty -| labels = -{{label|en|case}} -{{label|de|Fall}} -| rdfs:domain = Person -| rdfs:range = xsd:string -}}OntologyProperty:Casualties2027471528662018-02-13T10:20:36Z{{DatatypeProperty -| labels = -{{label|fr|pertes}} -{{label|en|casualties}} -{{label|de|Verluste}} -{{label|nl|verliezen}} -| rdfs:comment@en = Number of casualties of a MilitaryConflict or natural disaster such as an Earthquake -| rdfs:domain = MilitaryConflict , NaturalEvent , Attack -| rdfs:range = xsd:integer -}}OntologyProperty:Catch2027779270762013-07-05T13:00:16Z{{DatatypeProperty -| labels = -{{label|en|catch}} -| rdfs:domain = Person -| rdfs:range = xsd:string -}}OntologyProperty:Category2022305537932020-10-26T23:23:22Z{{ObjectProperty -| rdfs:label@en = category -| rdfs:label@nl = categorie -| rdfs:label@de = Kategorie -| rdfs:label@fr = catégorie -| rdfs:label@el = κατηγορία -| rdfs:label@cs = Kategorie -| rdfs:subPropertyOf = dul:isClassifiedBy -| owl:equivalentProperty = gnd:gndSubjectCategory -}}OntologyProperty:Caterer20211142461832015-03-18T08:52:46Z{{ObjectProperty -| labels = - {{label|en|caterer}} - {{label|nl|horeca}} -| rdfs:domain = Infrastructure -| rdfs:range = Caterer -}}OntologyProperty:CatholicPercentage2027311260602013-06-14T11:47:36Z{{DatatypeProperty -| labels = -{{label|en|catholic percentage}} -| rdfs:domain = PopulatedPlace -| rdfs:range = xsd:string -}}OntologyProperty:Causalties20266079072010-05-28T12:52:07Z{{DatatypeProperty -| rdfs:label@en = causalties -| rdfs:domain = MilitaryConflict -| rdfs:range = xsd:string -}}OntologyProperty:CauseOfDeath2028026474372015-04-01T14:28:06Z{{DatatypeProperty -| labels = -{{label|en|cause of death}} -{{label|ca|causa de mort}} -{{label|de|Todesursache}} -{{label|pl|przyczyna śmierci}} -| rdfs:domain = Person -| rdfs:range = xsd:string -| owl:equivalentProperty = wikidata:P509 -}}OntologyProperty:CausedBy2027459367522014-07-09T10:08:20Z{{ObjectProperty -| labels = - {{label|en|caused by}} -{{label|el|προκαλείται από}} -{{label|fr|casus}} -| rdfs:domain = Event -| rdfs:range = owl:Thing -| rdfs:subPropertyOf = dul:sameSettingAs -}}OntologyProperty:CcaState2027242258982013-06-12T14:36:48Z{{DatatypeProperty -| labels = -{{label|en|cca state}} -| rdfs:domain = PopulatedPlace -| rdfs:range = xsd:string -}}OntologyProperty:Ceeb202661528952018-02-13T12:28:28Z{{DatatypeProperty -| rdfs:label@en = ceeb -| rdfs:domain = School -| rdfs:range = xsd:string -| rdfs:subPropertyOf = code -}}OntologyProperty:Ceiling20211316487942015-09-05T09:54:48Z{{DatatypeProperty -| rdfs:label@en = ceiling -| rdfs:label@nl = dienstplafond -| rdfs:comment@en = Maximum distance to the earth surface, to be expressed in kilometers -| rdfs:domain = Aircraft -| rdfs:range = xsd:positiveInteger -}}OntologyProperty:Cemetery2029343329822014-03-26T11:54:02Z{{ObjectProperty -| labels = - {{label|en|cemetery}} - {{label|nl|kerkhof}} - {{label|fr|cimetière}} - {{label|de|Friedhof}} -| rdfs:domain = ReligiousBuilding -| rdfs:range = Cemetery -}}OntologyProperty:CensusYear202662282252013-09-04T05:45:46Z{{DatatypeProperty -| labels = -{{label|en|census year}} -{{label|el|έτος απογραφής}} -{{label|de|Zensusjahr}} -{{label|fr|année de recensement}} -{{label|es|año de censo}} -| rdfs:domain = PopulatedPlace -| rdfs:range = xsd:gYear -}}OntologyProperty:Center2026915253772013-05-24T22:25:58Z{{DatatypeProperty -| labels = -{{label|en|norwegian center}} -| rdfs:domain = NorwaySettlement -| rdfs:range = xsd:string -}}OntologyProperty:CenturyBreaks2023539126732011-05-07T13:44:11Z{{DatatypeProperty -| rdfs:label@en = century breaks -| rdfs:label@de = Century Breaks -| rdfs:comment@en = number of breaks with 100 points and more -| rdfs:comment@de = Anzahl Breaks mit 100 Punkten oder mehr, wird nicht übersetzt -| rdfs:domain = SnookerPlayer -| rdfs:range = xsd:integer -}}OntologyProperty:Ceo202663475432015-04-03T08:50:10Z{{ObjectProperty -| rdfs:label@en = chief executive officer -| rdfs:label@de = Geschäftsführer -| rdfs:domain = Organisation -| rdfs:range = Person -| rdfs:subPropertyOf = dul:coparticipatesWith -| owl:equivalentProperty = wikidata:P169 -}}OntologyProperty:CeremonialCounty2022138359092014-07-08T12:56:00Z -{{ObjectProperty -| rdfs:label@en = Ceremonial County -| rdfs:domain = PopulatedPlace -| rdfs:range = PopulatedPlace -| rdfs:subPropertyOf = dul:sameSettingAs -}}OntologyProperty:Certification202664107672011-01-14T22:30:45Z{{DatatypeProperty -| rdfs:label@en = certification -| rdfs:label@fr = certification -| rdfs:domain = Single -| rdfs:range = xsd:string -}}OntologyProperty:CertificationDate2021693242252013-03-05T12:14:06Z{{DatatypeProperty -| rdfs:label@en = certification date -| rdfs:label@nl = datum certificatie -| rdfs:domain = Single -| rdfs:range = xsd:date -}}OntologyProperty:CesarAward202665359102014-07-08T12:56:09Z -{{ObjectProperty -| rdfs:label@en = Cesar Award -| rdfs:domain = Artist -| rdfs:range = Award -| rdfs:subPropertyOf = dul:coparticipatesWith -}}OntologyProperty:ChEBI2025869191402012-07-31T12:54:37Z{{DatatypeProperty -| rdfs:label@en = ChEBI -| rdfs:comment@en = A unique identifier for the drug in the Chemical Entities of Biological Interest (ChEBI) ontology -| rdfs:domain = Drug -| rdfs:range = xsd:string -}}OntologyProperty:ChEMBL20211922524002017-10-15T13:46:45Z{{DatatypeProperty -| rdfs:label@en = ChEMBL -| rdfs:comment@en = ChEMBL is a manually curated chemical database of bioactive molecules with drug-like properties. -| rdfs:domain = ChemicalSubstance -| rdfs:range = xsd:string -}}OntologyProperty:Chain2022516526112017-10-31T11:55:23Z -{{ObjectProperty -| rdfs:label@en = chain -| rdfs:label@de = Kette -| rdfs:label@el = αλυσίδα -| rdfs:comment@en = The (business) chain this instance is associated with. -| rdfs:range = Company -| rdfs:subPropertyOf = dul:isMemberOf -}}OntologyProperty:ChairLabel2023118359122014-07-08T12:56:26Z -{{ObjectProperty -| rdfs:label@en = chair label -| rdfs:subPropertyOf = dul:sameSettingAs -}}OntologyProperty:Chairman202666368042014-07-12T21:27:20Z{{ObjectProperty -| rdfs:label@en = chairman -| rdfs:label@de = Vorsitzender -| rdfs:label@el = πρόεδρος -| rdfs:range = Person -| rdfs:subPropertyOf = dul:coparticipatesWith -}}OntologyProperty:ChairmanTitle202667348042014-05-14T11:24:46Z{{DatatypeProperty -| rdfs:label@en = chairman title -| rdfs:domain = SoccerClub -| rdfs:range = rdf:langString -}}OntologyProperty:Chairperson202668359142014-07-08T12:56:42Z -{{ObjectProperty -| labels = - {{label|en|chairperson}} - {{label|de|Vorsitzender}} - {{label|nl|voorzitter}} -| rdfs:domain = Organisation -| rdfs:range = Person -| rdfs:subPropertyOf = dul:coparticipatesWith -}}OntologyProperty:Champion2026388488582015-09-12T18:48:48Z{{ObjectProperty -| labels = - {{label|en|champion}} - {{label|de|Meister}} - {{label|el|πρωταθλητής}} - {{label|fr|champion}} - {{label|es|Campeón}} - {{label|nl|winnaar}} -| comments = - {{comment|en|winner of a competition}} - {{comment|el|νικητής ενός διαγωνισμού}} -| rdfs:domain = SportsEvent -| rdfs:range = Athlete -| rdfs:subPropertyOf = dul:hasParticipant -}}OntologyProperty:ChampionInDouble2026390359162014-07-08T12:56:59Z -{{ObjectProperty -| labels = - {{label|en|champion in double}} - {{label|nl|kampioen dubbel}} - {{label|fr|champion en double}} - {{label|es|Campeón en doble}} -| comments = - {{comment|en|winner of a competition in the double session (as in tennis)}} -| rdfs:domain = SportsEvent -| rdfs:range = Athlete -| rdfs:subPropertyOf = champion, dul:hasParticipant -}}OntologyProperty:ChampionInDoubleFemale2026395359172014-07-08T12:57:08Z -{{ObjectProperty -| labels = - {{label|en|champion in double female}} - {{label|fr|champion en double femmes}} - {{label|es|Campeón en doble mujeres}} -| comments = - {{comment|en|winner of a competition in the female double session (as in tennis)}} -| rdfs:domain = SportsEvent -| rdfs:range = Athlete -| rdfs:subPropertyOf = championInDouble, dul:hasParticipant -}}OntologyProperty:ChampionInDoubleMale2026394359182014-07-08T12:57:25Z -{{ObjectProperty -| labels = - {{label|en|champion in double male}} - {{label|fr|champion en double hommes}} - {{label|es|Campeón en doble hombres}} -| comments = - {{comment|en|winner of a competition in the male double session (as in tennis)}} -| rdfs:domain = SportsEvent -| rdfs:range = Athlete -| rdfs:subPropertyOf = championInDouble, dul:hasParticipant -}}OntologyProperty:ChampionInMixedDouble2026396359192014-07-08T12:57:34Z -{{ObjectProperty -| labels = - {{label|en|champion in mixed double}} - {{label|nl|kampioen gemengd dubbelspel}} - {{label|fr|champion en double mixte}} - {{label|es|Campeón en doble mixto}} -| comments = - {{comment|en|winner of a competition in the mixed double session (as in tennis)}} -| rdfs:domain = SportsEvent -| rdfs:range = Athlete -| rdfs:subPropertyOf = championInDouble, dul:hasParticipant -}}OntologyProperty:ChampionInSingle2026389359202014-07-08T12:57:42Z -{{ObjectProperty -| labels = - {{label|en|champion in single}} - {{label|nl|kampioen enkelspel}} - {{label|fr|champion en simple}} - {{label|es|Campeón en simple}} -| comments = - {{comment|en|winner of a competition in the single session, to distinguish from the double session (as in tennis)}} -| rdfs:domain = SportsEvent -| rdfs:range = Athlete -| rdfs:subPropertyOf = champion, dul:hasParticipant -}}OntologyProperty:ChampionInSingleFemale2026393359212014-07-08T12:57:50Z -{{ObjectProperty -| labels = - {{label|en|champion in single female}} - {{label|fr|champion en simple femmes}} - {{label|es|Campeón en simple mujeres}} -| comments = - {{comment|en|winner of a competition in the single female session, to distinguish from the double session (as in tennis)}} -| rdfs:domain = SportsEvent -| rdfs:range = Athlete -| rdfs:subPropertyOf = championInSingle, dul:hasParticipant -}}OntologyProperty:ChampionInSingleMale2026392359222014-07-08T12:57:59Z -{{ObjectProperty -| labels = - {{label|en|champion in single male}} - {{label|fr|champion en simple homme}} - {{label|es|Campeón en simple hombres}} -| comments = - {{comment|en|winner of a competition in the single male session, to distinguish from the double session (as in tennis)}} -| rdfs:domain = SportsEvent -| rdfs:range = Athlete -| rdfs:subPropertyOf = championInSingle, dul:hasParticipant -}}OntologyProperty:Championships202669522632017-10-08T11:07:06Z{{DatatypeProperty -| rdfs:label@en = championships -| rdfs:label@de = gewonnene Title -| rdfs:domain = Agent -| rdfs:range = xsd:nonNegativeInteger -}}OntologyProperty:Chancellor202670359232014-07-08T12:58:07Z -{{ObjectProperty -| rdfs:label@en = chancellor -| rdfs:label@de = Kanzler -| rdfs:range = Person -| rdfs:subPropertyOf = dul:coparticipatesWith -}}OntologyProperty:Channel202671359242014-07-08T12:58:16Z -{{ObjectProperty -| rdfs:label@en = channel -| rdfs:label@de = Kanal -| rdfs:label@el = κανάλι -| rdfs:label@nl = kanaal -| rdfs:range = Broadcaster -| rdfs:subPropertyOf = dul:coparticipatesWith -}}OntologyProperty:Chaplain202672525812017-10-31T08:31:13Z -{{ObjectProperty -| rdfs:label@en = chaplain -| rdfs:label@de = Kaplan -| rdfs:domain = Organisation -| rdfs:range = Person -| rdfs:subPropertyOf = dul:coparticipatesWith -}}OntologyProperty:CharacterInPlay2023825133452011-06-06T10:20:12Z{{DatatypeProperty -| rdfs:label@en = character in play -| rdfs:domain = Play -| rdfs:range = xsd:string -| rdfs:comment@en = Name of a character in play. -}}OntologyProperty:Chef2022531359262014-07-08T12:58:32Z -{{ObjectProperty -| labels = - {{label|en|chef}} - {{label|de|Koch}} - {{label|nl|sous-chef}} - {{label|el|chef}} - {{label|fr|chef cuisinier}} -| rdfs:domain = Restaurant -| rdfs:range = Person -| rdfs:subPropertyOf = dul:coparticipatesWith -}}OntologyProperty:ChemSpiderId20212039527932018-02-07T09:30:32Z{{DatatypeProperty -| rdfs:label@en = ChemSpider Id -| rdfs:comment@en = identifier in a free chemical database, owned by the Royal Society of Chemistry -| rdfs:domain = ChemicalSubstance -| rdfs:range = xsd:string -}}OntologyProperty:ChemicalFormula20211925524042017-10-15T14:12:55Z{{DatatypeProperty -| rdfs:label@en = chemical formula -| rdfs:domain = ChemicalSubstance -| rdfs:range = xsd:string -}}OntologyProperty:ChiefEditor202673359272014-07-08T12:58:41Z -{{ObjectProperty -| labels = - {{label|en|chief editor}} - {{label|de|Chefredakteur}} - {{label|nl|hoofdredacteur}} -| rdfs:domain = Work -| rdfs:range = Person -| rdfs:subPropertyOf = dul:coparticipatesWith -}}OntologyProperty:ChiefPlace2027226359282014-07-08T12:58:49Z -{{ObjectProperty -| labels = - {{label|en|chief place}} -| rdfs:range = PopulatedPlace -| rdfs:subPropertyOf = dul:hasLocation -}}OntologyProperty:Child202674535982020-02-17T07:44:43Z{{ObjectProperty -| labels = - {{label|en|child}} - {{label|nl|kind}} - {{label|de|Kind}} - {{label|el|παιδί}} - {{label|ja|子供}} - {{label|ar|طفل}} -| rdfs:domain = Person -| rdfs:range = Person -| owl:equivalentProperty = schema:children -| owl:propertyDisjointWith = parent, spouse -| rdfs:subPropertyOf = dul:sameSettingAs -| owl:equivalentProperty = wikidata:P40 -}}OntologyProperty:ChildOrganisation2023727359302014-07-08T12:59:17Z -{{ObjectProperty -| rdfs:label@en = child organisation -| rdfs:label@nl = dochterorganisatie -| rdfs:domain = Organisation -| rdfs:range = Organisation -| rdfs:subPropertyOf = dul:sameSettingAs -}}OntologyProperty:Choreographer202675359312014-07-08T12:59:24Z -{{ObjectProperty -| rdfs:label@en = choreographer -| rdfs:label@de = Choreograph -| rdfs:label@nl = choreograaf -| labels = - {{label|el|χορογράφος}} -| rdfs:domain = FigureSkater -| rdfs:range = Person -| rdfs:subPropertyOf = dul:coparticipatesWith -}}OntologyProperty:ChorusCharacterInPlay2023827133472011-06-06T10:24:11Z{{DatatypeProperty -| rdfs:label@en = chorus character in play -| rdfs:domain = Play -| rdfs:range = xsd:string -| rdfs:subPropertyOf = characterInPlay -| rdfs:comment@en = The name of the (Greek) chorus character in play. -}}OntologyProperty:ChristeningDate2023103204742012-12-20T15:46:49Z{{DatatypeProperty -| rdfs:label@en=date of christening -| rdfs:label@nl = doopdatum -| rdfs:domain = Ship -| rdfs:range = xsd:date -}}OntologyProperty:Chromosome202676475112015-04-02T12:03:14Z{{DatatypeProperty -| rdfs:label@en = chromosome -| rdfs:label@de = Chromosom -| rdfs:label@ga = crómasóm -| rdfs:label@el =χρωμόσωμα -| rdfs:label@ja = 染色体 -| rdfs:label@pl = chromosom -| rdfs:domain = Protein -| rdfs:range = xsd:string -| owl:equivalentProperty = wikidata:P1057 -}}OntologyProperty:Cinematography202677475062015-04-02T11:34:35Z{{ObjectProperty -| labels = - {{label|en|cinematography}} - {{label|de|Kinematografie}} - {{label|ga|cineamatagrafaíocht}} - {{label|nl|cinematografie}} -| rdfs:domain = Film -| rdfs:range = Person -| rdfs:subPropertyOf = dul:sameSettingAs -| owl:equivalentProperty = wikidata:P344 -}}OntologyProperty:Circle2026971334972014-04-03T14:43:54Z{{DatatypeProperty -| labels = -{{label|en|region}} -{{label|de|Region}} -| rdfs:domain = PopulatedPlace -| rdfs:range = xsd:string -}}OntologyProperty:CircuitLength2025334335192014-04-03T14:51:53Z{{ DatatypeProperty - - | rdfs:label@en = circuit length - | rdfs:domain = FormulaOneRacing - | rdfs:range = Length -<!-- | rdf:type = owl:FunctionalProperty --> - -}}OntologyProperty:CircuitName2025332348402014-05-15T05:18:44Z{{ DatatypeProperty - - | rdfs:label@en = circuit name - | rdfs:domain = FormulaOneRacing - | rdfs:range = rdf:langString - -}}OntologyProperty:Circulation202678478232015-04-28T15:31:11Z{{DatatypeProperty -| labels = -{{label|en|circulation}} -{{label|nl|oplage}} -{{label|el|κυκλοφορία}} -{{label|ga|ciorclaíocht}} -| rdfs:domain = WrittenWork -| rdfs:range = xsd:nonNegativeInteger -}}OntologyProperty:Circumcised2027817271262013-07-05T14:43:30Z{{DatatypeProperty -| labels = -{{label|en|circumcised}} -| rdfs:domain = Person -| rdfs:range = xsd:string -}}OntologyProperty:Cites20210086372642014-07-23T02:54:29Z{{DatatypeProperty -| labels = -{{label|en|cites}} -| comments = -{{comment|en|A document cited by this work. Like [[OntologyProperty:dct:references]], but as a datatype property.}} -| rdfs:domain = Work -| rdfs:range = xsd:string -| rdf:type = -| rdfs:subPropertyOf = -| owl:equivalentProperty = -}}OntologyProperty:Citizenship202679523452017-10-10T13:46:46Z -{{ObjectProperty -| labels = - {{label|en|citizenship}} - {{label|nl|burgerschap}} - {{label|da|statsborgerskab}} - {{label|de|Staatsangehörigkeit}} - {{label|el|υπηκοότητα}} -| rdfs:domain = Person -| owl:equivalentProperty = wikidata:P27 -| rdfs:subPropertyOf = dul:sameSettingAs -}}OntologyProperty:City202680523442017-10-10T13:45:58Z{{ObjectProperty -| labels = - {{label|en|city}} - {{label|da|by}} - {{label|de|Stadt}} - {{label|el|πόλη}} - {{label|fr|ville}} - {{label|ga|cathair}} - {{label|nl|stad}} - {{label|pl|miasto}} -| rdfs:domain = owl:Thing -| rdfs:range = City -| owl:equivalentProperty = wikidata:P131 -| rdfs:subPropertyOf = dul:hasLocation -}}OntologyProperty:CityLink2027119256522013-05-26T14:56:17Z{{DatatypeProperty -| labels = -{{label|en|city link}} -| rdfs:domain = Place -| rdfs:range = xsd:string -}}OntologyProperty:CityRank2026423234622013-01-22T12:46:07Z{{DatatypeProperty -| labels = -{{label|en|city rank}} -{{label|de|Rang Stadt}} -| comments = -{{comment|en|Place of the building in the list of the highest buildings in the city}} -{{comment|de|Der Platz des Gebäudes in der Liste der höchsten Gebäude der Stadt}} -| rdfs:domain = Skyscraper -| rdfs:range = xsd:nonNegativeInteger -}}OntologyProperty:CitySince2027257259222013-06-13T09:46:01Z{{DatatypeProperty -| labels = -{{label|en|city since}} -| rdfs:domain = PopulatedPlace -| rdfs:range = xsd:string -}}OntologyProperty:CityType202681221532013-01-10T19:53:19Z{{DatatypeProperty -| labels = -{{label|en|city type}} -{{label|nl|type stad}} -{{label|el|τύπος}} -| rdfs:domain = PopulatedPlace -| rdfs:range = xsd:string -}}OntologyProperty:Clade20211994526832017-11-18T18:36:36Z{{ObjectProperty -| labels = -{{label|en|clade}} -{{label|nl|cladon}} -| rdfs:domain = Species -}}OntologyProperty:Class202682537712020-10-19T16:16:26Z -{{ObjectProperty -| rdfs:label@en = class -| rdfs:label@de = Klasse -| rdfs:label@el = τάξη -| rdfs:label@nl = klasse -| rdfs:domain = owl:Thing -| rdfs:subPropertyOf = dul:isClassifiedBy -| owl:equivalentProperty = gn:featureClass -}}OntologyProperty:Classes202683471742015-03-25T12:56:58Z{{DatatypeProperty -| labels = -{{label|en|classes}} -{{label|de|Klasse}} -{{label|el|τάξεις}} -| rdfs:domain = School -| rdfs:range = xsd:nonNegativeInteger -}}OntologyProperty:Classification2022634522762017-10-08T17:20:37Z{{DatatypeProperty -| rdfs:label@en = classification -| rdfs:label@de = Klassifikation -| rdfs:label@nl = categorie -| rdfs:domain = owl:Thing -| rdfs:range = xsd:string -| rdfs:comment@en = Any string representing a class or category this thing is assigned to. -}}OntologyProperty:Classis2025202283302013-09-11T13:36:49Z{{ObjectProperty -| labels = -{{label|en|classis}} -{{label|es|clase (biología)}} -{{label|fr|classe (biologie)}} -{{label|nl|klasse}} -{{label|ja|綱_(分類学)}} -| rdfs:domain = Species -| rdfs:range = owl:Thing -|comments = -{{comment|en|the living thing class (from the Latin "classis"), according to the biological taxonomy}} -{{comment|fr|Troisième niveau de la classification classique (c’est-à-dire n’utilisant pas la notion de distance génétique) des espèces vivantes (voir systématique).<ref>https://fr.wikipedia.org/wiki/Classe_%28biologie%29</ref>}} -| owl:equivalentProperty = wikidata:P77 -<!-- wrong range, find more suited property for P225| owl:equivalentProperty = wikidata:P225 --> -}} - -== references == -<references/>OntologyProperty:Climate2023802359362014-07-08T13:00:12Z -{{ObjectProperty -| rdfs:label@en = climate -| rdfs:label@pt = clima -| rdfs:label@de = klima -| rdfs:label@nl = klimaat -| rdfs:domain = Place -| rdfs:subPropertyOf = dul:hasQuality -}}OntologyProperty:ClimbUpNumber2027187257372013-06-01T13:15:32Z{{DatatypeProperty -| labels = -{{label|en|clip up number}} -| rdfs:domain = Place -| rdfs:range = xsd:nonNegativeInteger -}}OntologyProperty:CloseTo20211081491082015-10-10T16:53:19Z{{ObjectProperty -| labels = -{{label|en|is close to}} -{{label|fr|à côté de}} -| comments = -{{comment|fr|lieu proche d'un autre.}} -{{comment|en|place close to another place}} -| rdfs:domain = Place -| rdfs:range = Place -}}OntologyProperty:Closed202684335022014-04-03T14:44:13Z{{DatatypeProperty -| labels = -{{label|en|closed}} -{{label|de|geschlossen}} -{{label|nl|gesloten}} -| rdfs:domain = EducationalInstitution -| rdfs:range = xsd:date -}}OntologyProperty:ClosingDate202685173372012-04-20T14:43:04Z{{DatatypeProperty -| rdfs:label@en = closing date -| rdfs:label@el = ημερομηνία κλεισίματος -| rdfs:label@fr = date de fermeture -| rdfs:range = xsd:date -}}OntologyProperty:ClosingFilm202686359372014-07-08T13:00:20Z -{{ObjectProperty -| rdfs:label@en = closing film -| rdfs:domain = FilmFestival -| rdfs:range = Film -| rdfs:subPropertyOf = dul:hasParticipant -}}OntologyProperty:ClosingYear2023384199392012-11-22T12:28:33Z{{DatatypeProperty -| labels = -{{label|en|closing year}} -{{label|nl|Sluitingsjaar}} -{{label|de|Schließungsjahr}} -| rdfs:range = xsd:gYear -}}OntologyProperty:ClothSize2027750270342013-07-04T14:02:58Z{{DatatypeProperty -| labels = -{{label|en|cloth size}} -| rdfs:domain = Person -| rdfs:range = xsd:string -}}OntologyProperty:ClothingSize2028058335032014-04-03T14:44:21Z{{DatatypeProperty -| rdfs:label@en = clothing size -| rdfs:label@de = Konfektionsgröße -| rdfs:domain = Person -| rdfs:range = xsd:string -}}OntologyProperty:Club202687514372016-08-16T07:29:32Z{{ObjectProperty -| labels = - {{label|en|club}} - {{label|de|Verein}} - {{label|nl|club}} - {{label|el|ομάδα}} - {{label|ja|クラブ}} -| rdfs:domain = Athlete -| rdfs:range = SportsTeam -| owl:equivalentProperty = team -| rdfs:subPropertyOf = dul:isMemberOf -}}OntologyProperty:ClubsRecordGoalscorer202688359392014-07-08T13:00:39Z -{{ObjectProperty -| rdfs:label@en = clubs record goalscorer -| rdfs:domain = SoccerClub -| rdfs:range = Person -| rdfs:subPropertyOf = dul:coparticipatesWith -}}OntologyProperty:Cluster2024444359402014-07-08T13:00:48Z -{{ObjectProperty -| rdfs:label@en = cluster -| rdfs:label@tr = birlik -| rdfs:domain = Galaxy -| rdfs:subPropertyOf = dul:hasPart -}}OntologyProperty:CmpEvaDuration20268979192010-05-28T12:53:43Z{{DatatypeProperty -| rdfs:label@en = CMP EVA duration -| rdfs:domain = SpaceMission -| rdfs:range = Time -}}OntologyProperty:CmykCoordinateBlack202237484082010-05-28T14:00:19Z{{DatatypeProperty -| rdfs:label@en = black coordinate in the CMYK space -| rdfs:domain = Colour -| rdfs:range = xsd:integer -}}OntologyProperty:CmykCoordinateCyanic202237384072010-05-28T14:00:10Z{{DatatypeProperty -| rdfs:label@en = cyanic coordinate in the CMYK space -| rdfs:domain = Colour -| rdfs:range = xsd:integer -}}OntologyProperty:CmykCoordinateMagenta202237684102010-05-28T14:00:33Z{{DatatypeProperty -| rdfs:label@en = magenta coordinate in the CMYK space -| rdfs:domain = Colour -| rdfs:range = xsd:integer -}}OntologyProperty:CmykCoordinateYellow202237584092010-05-28T14:00:25Z{{DatatypeProperty -| rdfs:label@en = yellow coordinate in the CMYK space -| rdfs:domain = Colour -| rdfs:range = xsd:integer -}}OntologyProperty:Co2Emission20269079202010-05-28T12:53:52Z{{DatatypeProperty -| rdfs:label@en = CO2 emission -| rdfs:domain = AutomobileEngine -| rdfs:range = LinearMassDensity -| rdf:type = owl:FunctionalProperty -}}OntologyProperty:CoExecutiveProducer202697359412014-07-08T13:00:57Z -{{ObjectProperty -| rdfs:label@en = co executive producer -| rdfs:domain = TelevisionShow -| rdfs:range = Person -| rdfs:subPropertyOf = dul:coparticipatesWith -}}OntologyProperty:CoProducer202721359422014-07-08T13:01:06Z -{{ObjectProperty -| rdfs:label@en = co producer -| rdfs:label@de = Co-Produzent -| rdfs:domain = TelevisionShow -| rdfs:range = Person -| rdfs:subPropertyOf = dul:coparticipatesWith -}}OntologyProperty:Coach202691359432014-07-08T13:01:14Z -{{ObjectProperty -| rdfs:label@en = coach -| rdfs:label@de = Trainer -| rdfs:label@el = προπονητής -| rdfs:range = Person -| rdfs:subPropertyOf = dul:coparticipatesWith -}}OntologyProperty:CoachClub2027675269452013-07-04T07:57:18Z{{ObjectProperty -| labels = -{{label|en|coach club}} -| rdfs:range = SportsTeam -| rdfs:domain = Athlete -}}OntologyProperty:CoachSeason2027674269442013-07-04T07:56:11Z{{DatatypeProperty -| labels = -{{label|en|coach season}} -| rdfs:range = xsd:string -| rdfs:domain = Athlete -}}OntologyProperty:CoachedTeam202692523852017-10-14T20:25:32Z -{{ObjectProperty -| rdfs:label@en = coached team -| rdfs:domain = owl:Thing -| rdfs:range = SportsTeam -| rdfs:subPropertyOf = dul:coparticipatesWith -}}OntologyProperty:CoachingRecord20269379212010-05-28T12:53:58Z{{DatatypeProperty -| rdfs:label@en = coaching record -| rdfs:domain = CollegeCoach -| rdfs:range = xsd:string -}}OntologyProperty:Coalition2027814349532014-05-24T07:23:57Z{{DatatypeProperty -| labels = -{{label|en|coalition}} -{{label|de|Koalition}} -{{label|el|συνασπισμός}} -| comments = -{{comment|el|Παλαιότερα ο συνασπισμός χρησιμοποιούνταν ως στρατιωτικός όρος που υποδήλωνε την όμορη παράταξη πολεμιστών κατά την οποία ο κάθε στρατιώτης προφύλασσε τον διπλανό του με την ασπίδα του.}} -| rdfs:domain = Person -| rdfs:range = xsd:string -}}OntologyProperty:CoastLength2027050335082014-04-03T14:44:55Z{{DatatypeProperty -| labels = -{{label|en|length of a coast}} -{{label|de|Länge einer Küste}} -| rdfs:domain = Place -| rdfs:range = xsd:float -}}OntologyProperty:CoastLine202695471732015-03-25T12:52:42Z{{DatatypeProperty -| labels = -{{label|en|coast line}} -{{label|de|Küste}} -| rdfs:domain = Settlement -| rdfs:range = Length -}}OntologyProperty:CoatOfArms20210315389492014-12-23T11:40:45Z{{ObjectProperty -| rdfs:label@en = coat of arms image -| rdfs:label@de = bild wappen -| rdfs:comment@en = image of the coat of arms (heraldic symbol) -| owl:equivalentProperty = wikidata:P94 -}}OntologyProperty:Code202696537762020-10-19T17:26:28Z{{DatatypeProperty -| labels = -{{label|en|code}} -{{label|el|κωδικός}} -{{label|de|Code}} -{{label|nl|code}} -| rdfs:range = xsd:string -| rdfs:comment@en = Superproperty for any designation (string, integer as string) that is meant to identify an entity within the context of a system -| owl:equivalentProperty=gn:featureCode -}}OntologyProperty:CodeBook2026606335182014-04-03T14:49:51Z{{DatatypeProperty -| labels = -{{label|en|code book}} -{{label|de|Gesetzbuch}} -{{label|nl|wetboek}} -| comments = -{{comment|en| code book or statute book referred to in this legal case }} -| rdfs:domain = LegalCase -| rdfs:range = xsd:string -| rdf:type = -| rdfs:subPropertyOf = -| owl:equivalentProperty = -}}OntologyProperty:CodeDistrict2029254322842014-03-07T08:37:51Z{{DatatypeProperty -| labels = -{{label|en|City district code}} -| rdfs:domain = CityDistrict -| rdfs:range = xsd:string -}}OntologyProperty:CodeIndex20210245385292014-10-03T15:26:35Z{{DatatypeProperty -| labels = -{{label|en|code on index}} - -{{label|nl|Indexcode}} -| rdfs:domain = MemberResistanceMovement -| rdfs:range = xsd:string -| rdfs:subPropertyOf = code -}}OntologyProperty:CodeLandRegistry20211971525562017-10-26T10:33:33Z#REDIRECT [[OntologyProperty:Registry]]OntologyProperty:CodeListOfHonour20210244385282014-10-03T15:24:47Z{{DatatypeProperty -| labels = -{{label|en|code on List of Honour}} -{{label|de|Code Ehrenliste}} -{{label|nl|Code Erelijst van Gevallenen}} -| rdfs:domain = MemberResistanceMovement -| rdfs:range = xsd:string -| rdfs:subPropertyOf = code -}}OntologyProperty:CodeMemorial2026528239782013-02-24T14:08:10Z{{DatatypeProperty -| labels = -{{label|en|memorial ID number}} -{{label|nl|code gedenkteken}} -| comments = -{{comment|en|Identifier for monuments of the Memorial type}} -{{comment|nl|Code oorlogsmonument of ander gedenkteken}} -| rdfs:domain = Memorial -| rdfs:range = xsd:string -| rdf:type = -| rdfs:subPropertyOf = Code -| owl:equivalentProperty = -}}OntologyProperty:CodeMunicipalMonument2026264347632014-05-12T10:25:21Z{{DatatypeProperty -| labels = -{{label|en|monument code (municipal)}} -{{label|nl|monumentcode gemeentelijke monumenten}} -| comments = -{{comment|en|Code assigned to (Dutch) monuments at the municipal level, deemed to be of local value }} -{{comment|nl|Code toegewezen aan monumenten die op gemeenteniveau onder bescherming geplaatst zijn}} -| rdfs:domain = Place -| rdfs:range = xsd:string -| rdf:type = -| rdfs:subPropertyOf = code -| owl:equivalentProperty = -}}OntologyProperty:CodeNationalMonument2026263347622014-05-12T10:24:47Z{{DatatypeProperty -| labels = -{{label|en|monument code (national)}} -{{label|nl|monumentcode rijksmonumenten}} -| comments = -{{comment|en|Code assigned to (Dutch) monuments at the national level, deemed to be of national value }} -{{comment|nl|Code toegewezen aan (Nederlandse) monumenten, vallend onder bescherming op rijksniveau}} -| rdfs:domain = Place -| rdfs:range = xsd:string -| rdf:type = -| rdfs:subPropertyOf = code -| owl:equivalentProperty = -}}OntologyProperty:CodeProvincialMonument2026265347642014-05-12T10:25:47Z{{DatatypeProperty -| labels = -{{label|en|monument code (provinciall)}} -{{label|nl|monumentcode provinciale monumenten}} -| comments = -{{comment|en|Code assigned to (Dutch) monuments at the provincial level, mostly for monuments in the countryside, or for waterworks }} -{{comment|nl|Code voor monumentenbescherming, in Nederland op provinciaal niveau. Meestal gebruikt voor agrarische monumenten of waterwerken}} -| rdfs:domain = Place -| rdfs:range = xsd:string -| rdf:type = -| rdfs:subPropertyOf = code -| owl:equivalentProperty = -}}OntologyProperty:CodeSettlement2026876253012013-05-23T15:29:55Z{{DatatypeProperty -| labels = -{{label|en|settlement code}} -| rdfs:domain = Settlement -| rdfs:range = xsd:string -}}OntologyProperty:CodeStockExchange2029371347612014-05-12T10:23:19Z{{DatatypeProperty -| labels = -{{label|en|code Stock Exchange}} -{{label|nl|beurscode}} -| rdfs:domain = Company -| rdfs:range = xsd:string -| rdfs:subPropertyOf = code -}}OntologyProperty:Coden2023751475452015-04-03T08:52:52Z{{DatatypeProperty -| rdfs:label@en = CODEN -| rdfs:domain = WrittenWork -| rdfs:range = xsd:string -| rdfs:comment@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. -| owl:equivalentProperty = wikidata:P1159 -}}OntologyProperty:Coemperor2027635491452015-10-13T09:57:58Z{{ObjectProperty -| labels = -{{label|en|coemperor}} -| rdfs:domain = Monarch -| rdfs:range = Monarch -}}OntologyProperty:Collaboration2027756367512014-07-09T10:06:18Z{{ObjectProperty -| labels = -{{label|en|collaboration}} -{{label|el|συνεργασία}} -{{label|de|Zusammenarbeit}} -| rdfs:domain = Person -| rdfs:range = Person -}}OntologyProperty:Colleague20210422394312015-01-20T10:04:05Z{{ObjectProperty -| rdfs:label@en = colleague -| rdfs:comment@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). -| rdfs:domain = Person -| rdfs:range = Person -| rdfs:subPropertyOf = dul:coparticipatesWith -}}OntologyProperty:Collection2022521335132014-04-03T14:45:17Z{{DatatypeProperty -| rdfs:label@en = collection -| rdfs:label@de = Sammlung -| rdfs:label@el = συλλογή -| rdfs:domain = Museum -| rdfs:range = xsd:string -}}OntologyProperty:CollectionSize2026683359452014-07-08T13:01:31Z -{{ObjectProperty -| labels = - {{label|en|country}} - {{label|de|Land}} - {{label|ja|蔵書数}} -| rdfs:subPropertyOf = dul:hasRegion -}}OntologyProperty:CollectivityMinority2026908274342013-07-12T10:39:13Z{{ObjectProperty -| labels = -{{label|en|collectivity minority}} -| rdfs:domain = Settlement -}}OntologyProperty:College202698359462014-07-08T13:01:40Z -{{ObjectProperty -| rdfs:label@en = college -| rdfs:label@de = College -| rdfs:label@el = κολλέγιο -| rdfs:label@fr = haute école -| rdfs:label@pl = college -| rdfs:label@pl = koledż -| rdfs:domain = Person -| rdfs:range = EducationalInstitution -| rdfs:subPropertyOf = dul:sameSettingAs -}}OntologyProperty:CollegeHof2027689269622013-07-04T09:31:32Z{{DatatypeProperty -| labels = -{{label|en|college hof}} -| rdfs:domain = Athlete -| rdfs:range = xsd:string -}}OntologyProperty:ColonialName2027248335162014-04-03T14:45:29Z{{DatatypeProperty -| labels = -{{label|en|colonial name}} -{{label|de|Kolonialname}} -| rdfs:domain = PopulatedPlace -| rdfs:range = xsd:string -}}OntologyProperty:ColorChart2026810251572013-05-09T10:03:49Z{{DatatypeProperty -| labels = -{{label|en|colorChart}} -| rdfs:domain = FictionalCharacter -| rdfs:range = xsd:string -}}OntologyProperty:Colour2023720521332017-06-19T11:21:35Z{{ObjectProperty -| rdfs:label@en = colour -| rdfs:label@da = farve -| rdfs:label@de = Farbe -| rdfs:label@el = χρώμα -| rdfs:label@fr = couleur -| rdfs:label@ja = 色 -| rdfs:label@nl = kleur -| rdfs:domain = owl:Thing -| rdfs:range = Colour -| rdfs:comment@en = A colour represented by its entity. -| rdfs:subPropertyOf = dul:hasQuality -| owl:equivalentProperty = wikidata:P462 -}}OntologyProperty:ColourHexCode2023721528752018-02-13T10:41:40Z{{DatatypeProperty -| rdfs:label@en = colour hex code -| rdfs:label@de = Farben Hex Code -| rdfs:domain = owl:Thing -| rdfs:range = xsd:string -| rdfs:comment@en = A colour represented by its hex code (e.g.: #FF0000 or #40E0D0) -| rdfs:subPropertyOf = code -}}OntologyProperty:ColourName202699473792015-03-31T17:15:08Z{{DatatypeProperty -| rdfs:label@en = colour name -| rdfs:label@el = όνομα χρώματος -| rdfs:label@de = Farbenname -| rdfs:label@fr = nom de couleur -| rdfs:label@ja = 色名 -| rdfs:domain = owl:Thing -| rdfs:range = rdf:langString -| rdfs:comment@en = A colour represented by a string holding its name (e.g.: red or green). -| rdfs:comment@el = Ένα χρώμα που αναπαρίσταται από μια ακολουθία χαρακτήρων που αντιπροσωπεύει το όνομά του (π.χ.: κόκκινο ή πράσινο). -}}OntologyProperty:Combatant202701335172014-04-03T14:45:32Z{{DatatypeProperty -| rdfs:label@en = combatant -| rdfs:label@de = Kombattant -| rdfs:domain = MilitaryConflict -| rdfs:range = xsd:string -}}OntologyProperty:Comic2026829359482014-07-08T13:01:57Z -{{ObjectProperty -| labels = - {{label|en|comic}} -| rdfs:domain = FictionalCharacter -| rdfs:range = Comic -| rdfs:subPropertyOf = dul:sameSettingAs -}}OntologyProperty:Comitat2026906253572013-05-24T21:20:39Z{{DatatypeProperty -| labels = -{{label|en|comitat of a settlement}} -| rdfs:domain = HungarySettlement -| rdfs:range = xsd:string -}}OntologyProperty:Command202702335252014-04-03T15:28:21Z{{DatatypeProperty -| rdfs:label@en = command -| rdfs:label@de = Befehl -| rdfs:domain = MilitaryPerson -| rdfs:range = xsd:string -}}OntologyProperty:CommandModule20270479282010-05-28T12:54:50Z{{DatatypeProperty -| rdfs:label@en = command module -| rdfs:domain = SpaceMission -| rdfs:range = xsd:string -}}OntologyProperty:CommandStructure202705359492014-07-08T13:02:06Z -{{ObjectProperty -| rdfs:label@en = command structure -| rdfs:label@de = Kommandostruktur -| rdfs:domain = MilitaryUnit -| rdfs:range = MilitaryUnit -| rdfs:subPropertyOf = dul:coparticipatesWith -}}OntologyProperty:Commandant2027470359502014-07-08T13:02:15Z -{{ObjectProperty -| rdfs:label@en = commandant -| rdfs:label@de = Kommandant -| rdfs:range = Person -| rdfs:subPropertyOf = keyPerson, dul:sameSettingAs -}}OntologyProperty:Commander202703385382014-10-04T12:01:28Z{{ObjectProperty -| rdfs:label@en = commander -| rdfs:label@de = Befehlshaber -| rdfs:label@nl = commandant -| rdfs:range = Person -| rdfs:subPropertyOf = dul:coparticipatesWith -}}OntologyProperty:Comment2027103536812020-07-30T21:35:16Z{{DatatypeProperty -| labels = -{{label|en|comment}} -{{label|de|Kommentar}} -{{label|el|σχόλιο}} -| rdfs:range = xsd:string -| owl:equivalentProperty = schema:comment -}}OntologyProperty:Commissioner2027243528052018-02-08T13:28:28Z{{DatatypeProperty -| labels = -{{label|en|commissioner}} -{{label|de|Kommissar}} -{{label|nl|opdrachtgever}} -| rdfs:domain = Building -| rdfs:domain = Work -| rdfs:range = xsd:string -}}OntologyProperty:CommissionerDate2027244259002013-06-12T14:37:39Z{{DatatypeProperty -| labels = -{{label|en|commissioner date}} -| rdfs:domain = PopulatedPlace -| rdfs:range = xsd:string -}}OntologyProperty:CommissioningDate2023104376152014-08-25T15:59:08Z{{DatatypeProperty -| rdfs:label@en=commissioning date -| rdfs:label@es=fecha de entrada en servicio -| rdfs:domain = Ship -| rdfs:range = xsd:date -}}OntologyProperty:Committee2022352335312014-04-03T15:28:59Z{{DatatypeProperty -| rdfs:label@en = committee -| rdfs:label@de = Ausschuss -| rdfs:range = xsd:string -}}OntologyProperty:CommitteeInLegislature2023529359522014-07-08T13:02:39Z -{{ObjectProperty -| rdfs:label@en = committee in legislature -| rdfs:label@de = Ausschuss in der Legislative -| rdfs:domain = Legislature -| rdfs:range = owl:Thing -| rdfs:comment@en = Committee in the legislature (eg.: Committee on Economic and Monetary Affairs of the European Parliament). -| rdfs:subPropertyOf = dul:hasPart -}}OntologyProperty:CommonName2025046348232014-05-15T05:05:54Z{{DatatypeProperty -| rdfs:label@en = common name -| rdfs:label@de = gewöhnlicher Name -| rdfs:comment@en = 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. -| rdfs:domain = owl:Thing -| rdfs:range = rdf:langString -}}OntologyProperty:Commune202706359532014-07-08T13:02:47Z -{{ObjectProperty -| rdfs:label@en = commune -| rdfs:label@de = Kommune -| rdfs:label@fr = commune -| rdfs:domain = Settlement -| rdfs:range = Settlement -| rdfs:subPropertyOf = dul:hasPart -}}OntologyProperty:CommunityIsoCode2026881253132013-05-23T16:04:33Z{{DatatypeProperty -| labels = -{{label|en|iso code of a community}} -| rdfs:subPropertyOf = isoCode -| rdfs:domain = PopulatedPlace -| rdfs:range = xsd:string -}}OntologyProperty:Company202707359542014-07-08T13:02:56Z -{{ObjectProperty -| labels = - {{label|en|company}} - {{label|de|Firma}} - {{label|nl|organisatie}} - {{label|el|εταιρεία}} - {{label|ja|会社}} -| rdfs:domain = owl:Thing -| rdfs:range = Organisation -| rdfs:subPropertyOf = dul:sameSettingAs -}}OntologyProperty:Comparable202708359552014-07-08T13:03:05Z -{{ObjectProperty -| rdfs:label@en = comparable -| rdfs:label@de = vergleichbar -| rdfs:domain = Rocket -| rdfs:range = Rocket -| rdfs:comment@en = similar, unrelated rockets -| rdfs:subPropertyOf = dul:sameSettingAs -}}OntologyProperty:Competition2026057359562014-07-08T13:03:13Z -{{ObjectProperty -| labels = - {{label|en|competition}} - {{label|de|Wettbewerb}} - {{label|fr|competition}} - {{label|es|competición}} -| rdfs:domain = SportCompetitionResult -| rdfs:range = Event -| rdfs:subPropertyOf = dul:isParticipantIn -}}OntologyProperty:CompetitionTitle2027849519992017-03-22T16:41:38Z{{ObjectProperty -| labels = -{{label|en|competition title}} -{{label|de|Sterbeort}} -| rdfs:domain = Person -| rdfs:range = SportsEvent -}}OntologyProperty:Compiler202709359572014-07-08T13:03:22Z -{{ObjectProperty -| rdfs:label@en = compiler -| rdfs:domain = Album -| rdfs:range = Person -| rdfs:comment@en = For compilation albums: the person or entity responsible for selecting the album's track listing. -| rdfs:subPropertyOf = dul:coparticipatesWith -}}OntologyProperty:CompletionDate202710367542014-07-09T10:16:40Z{{DatatypeProperty -| labels = -{{label|en|completion date}} -{{label|el|ημερομηνία ολοκλήρωσης}} -{{label|de|Fertigstellungstermin}} -{{label|nl|datum van oplevering}} -| rdfs:domain = Work -| rdfs:range = xsd:date -}}OntologyProperty:Complexion2023294359582014-07-08T13:03:39Z -{{ObjectProperty -| rdfs:label@en = complexion -| rdfs:label@pt = cor da pele -| rdfs:domain = Person -| rdfs:subPropertyOf = dul:hasQuality -}}OntologyProperty:Complexity20211306487682015-08-13T10:20:07Z{{DatatypeProperty -| labels = -{{label|en|complexity}} -| rdfs:domain = Food -| rdfs:range = xsd:string -| comments = -{{comment|en|Complexity of preparing a Food (recipe)}} -}}OntologyProperty:Complications20211861521982017-10-07T14:00:21Z{{DatatypeProperty -| labels = -{{label|de |Komplikationen}} -{{label|en|complications}} -{{label|el|επιπλοκές}} -{{label|fr |complications}} -| rdfs:domain = Disease -| rdfs:range = xsd:string -}}OntologyProperty:Component202711359592014-07-08T13:03:47Z -{{ObjectProperty -| rdfs:label@en = component -| rdfs:label@de = Komponente -| rdfs:domain = Brain -| rdfs:range = AnatomicalStructure -| rdfs:subPropertyOf = dul:hasComponent -}}OntologyProperty:Composer202712475472015-04-03T08:54:40Z{{ObjectProperty -| rdfs:label@en = composer -| rdfs:label@de = Komponist -| rdfs:label@fr = compositeur -| rdfs:label@el = συνθέτης -| rdfs:label@nl = componist -| rdfs:label@pl = kompozytor -| rdfs:domain = Work -| rdfs:range = Person -| rdfs:subPropertyOf = dul:coparticipatesWith -| owl:equivalentProperty = wikidata:P86 -}}OntologyProperty:CompressionRatio202713475482015-04-03T08:55:35Z{{DatatypeProperty -| rdfs:label@en = compression ratio -| rdfs:label@de = Kompressionsverhältnis -| rdfs:domain = AutomobileEngine -| rdfs:range = xsd:string -| owl:equivalentProperty = wikidata:P1247 -}}OntologyProperty:ComputingInput2022126359612014-07-08T13:04:03Z -{{ObjectProperty -| rdfs:label@en = Computing input -| rdfs:domain = Software -| rdfs:subPropertyOf = dul:coparticipatesWith -}}OntologyProperty:ComputingMedia2022125359622014-07-08T13:04:11Z -{{ObjectProperty -| rdfs:label@en = Computing Media -| rdfs:domain = Software -| rdfs:subPropertyOf = dul:coparticipatesWith -}}OntologyProperty:ComputingPlatform2022120475492015-04-03T08:56:09Z{{ObjectProperty -| rdfs:label@en = computing platform -| rdfs:comment@en = some sort of hardware architecture or software framework, that allows this software to run -| rdfs:domain = Software -| rdfs:subPropertyOf = dul:coparticipatesWith -| owl:equivalentProperty = wikidata:P400 -}}OntologyProperty:Configuration202714528562018-02-08T20:46:17Z -{{DatatypeProperty -| rdfs:label@en = configuration -| rdfs:label@nl = configuratie -| rdfs:label@de = Konfiguration -| rdfs:label@fr = configuration -| rdfs:domain = AutomobileEngine -| rdfs:range = engineConfiguration -| rdfs:subPropertyOf = -}}OntologyProperty:ConfirmedCases20212295536062020-04-04T16:35:53Z{{DatatypeProperty -| labels = -{{label|en|Confirmed Cases}} -| rdfs:comment@en = Number of confirmed cases in a pandemic -| rdfs:domain = Outbreak -| rdfs:range = xsd:integer -}}OntologyProperty:Conflict2027556335432014-04-03T15:29:59Z{{ObjectProperty -| labels = -{{label|en|conflict}} -{{label|de|Konflikt}} -| rdfs:range =MilitaryConflict -}}OntologyProperty:CongressionalDistrict2023216359652014-07-08T13:04:36Z -{{ObjectProperty -| rdfs:label@en = congressional district -| rdfs:domain = AdministrativeRegion -| rdfs:subPropertyOf = dul:isPartOf -}}OntologyProperty:ConnectsReferencedTo20211277487282015-08-12T08:35:55Z{{ObjectProperty -| labels = -{{label|en| connects referenced to }} -{{label|nl| verbindt referentieobject met}} -| comments = -{{comment|en| connects a referenced resource to another resource. This property is important to connect non-extracted resources to extracted ones }} -{{comment|nl| creëert een verwijzing van het gerefereerde objct naar een ander object. Speciaal van belang voor het verbinden van niet-geëxtraheerde resources met de gebruikelijke resources}} -| rdfs:domain = Reference -| rdfs:range = owl:Thing -}}OntologyProperty:Connotation2022271359662014-07-08T13:04:45Z -{{ObjectProperty -| rdfs:label@en = connotation -| rdfs:label@de = Konnotation -| rdfs:comment@en = A meaning of a word or phrase that is suggested or implied, as opposed to a denotation, or literal meaning. -| rdfs:subPropertyOf = dul:sameSettingAs -}}OntologyProperty:Consecration2027820491472015-10-13T09:59:41Z{{DatatypeProperty -| rdfs:label@en = consecration -| rdfs:label@de = Weihe -| rdfs:label@nl = wijding -| rdfs:domain = Cleric -| rdfs:range = xsd:string -}}OntologyProperty:ConservationStatus202715336192014-04-03T16:07:32Z{{DatatypeProperty -| rdfs:label@en = conservation status -| rdfs:label@ja = 保全状況 -| rdfs:domain = Species -| rdfs:range = xsd:string -}}OntologyProperty:ConservationStatusSystem20271679332010-05-28T12:55:33Z{{DatatypeProperty -| rdfs:label@en = conservation status system -| rdfs:domain = Species -| rdfs:range = xsd:string -}}OntologyProperty:Constellation2024447491822015-10-14T10:32:40Z{{ObjectProperty -| rdfs:label@en = constellation -| rdfs:label@de = Sternbild -| rdfs:label@pl = gwiazdozbiór -| rdfs:label@tr = Takımyıldız -| rdfs:label@nl = sterrenbeeld -| rdfs:range = owl:Thing -| rdfs:domain = CelestialBody -| rdfs:subPropertyOf = dul:hasPart -| owl:equivalentProperty = wikidata:P59 -}}OntologyProperty:ConstituencyDistrict20211948524842017-10-16T07:51:06Z{{ObjectProperty -| labels = - {{label|en|constituency district}} - {{label|de|Whalbezirk}} - {{label|fr|circonscription électorale}} -| rdfs:range = PopulatedPlace -}}OntologyProperty:Construction2026429367562014-07-09T10:21:33Z{{ObjectProperty -| labels = - {{label|en|construction}} -{{label|el|κατασκευή}} -{{label|de|Konstruktion}} -| rdfs:domain = ArchitecturalStructure -| rdfs:range = owl:Thing -| rdfs:subPropertyOf = dul:sameSettingAs -}}OntologyProperty:ConstructionMaterial2023436475512015-04-03T08:57:36Z{{ObjectProperty -| labels = - {{label|en|construction material}} -{{label|el|υλικό κατασκευής}} -{{label|nl|bouwmateriaal}} - {{label|de|Baumaterial}} -| rdfs:domain = ArchitecturalStructure -| rdfs:range = owl:Thing -| rdfs:comment@en = Construction material (eg. concrete, steel, iron, stone, brick, wood). -| rdfs:subPropertyOf = dul:hasConstituent -| owl:equivalentProperty = wikidata:P186 -}}OntologyProperty:Contest2028059335482014-04-03T15:30:29Z{{ObjectProperty -| rdfs:label@en = contest -| rdfs:label@de = Wettbewerb -| rdfs:domain = Person -| rdfs:range = Contest -}}OntologyProperty:Continent2025941475522015-04-03T08:58:22Z{{ObjectProperty -| labels = - {{label|en|continent}} - {{label|de|Kontinent}} - {{label|el|ήπειρος}} - {{label|it|continente}} -| comments = - {{comment|en|links a country to the continent it belongs}} - {{comment|el|μεγάλες περιοχές ξηράς που περιστοιχίζονται από ωκεανούς}} -| rdfs:domain = Country -| rdfs:range = Continent -| rdfs:subPropertyOf = dul:isPartOf -| owl:equivalentProperty = wikidata:P30 -}}OntologyProperty:ContinentRank2026426234652013-01-22T12:56:31Z{{DatatypeProperty -| labels = -{{label|en|continent rank}} -{{label|de|Rang Kontinent}} -| comments = -{{comment|en|Place of the building in the list of the highest buildings in the continent}} -{{comment|de|Der Platz des Gebäudes in der Liste der höchsten Gebäude des Kontinents}} -| rdfs:domain = Skyscraper -| rdfs:range = xsd:nonNegativeInteger -}}OntologyProperty:ContinentalTournament2027568267922013-07-02T09:51:25Z{{ObjectProperty -| labels = -{{label|en|continental tournament}} -| rdfs:range = Tournament -| rdfs:domain = Person -}}OntologyProperty:ContinentalTournamentBronze2027578268042013-07-02T10:01:49Z{{DatatypeProperty -| labels = -{{label|en|continental tournament bronze}} -| rdfs:domain = Person -| rdfs:range = xsd:nonNegativeInteger -}}OntologyProperty:ContinentalTournamentGold2027576268022013-07-02T10:00:59Z{{DatatypeProperty -| labels = -{{label|en|continental tournament gold}} -| rdfs:domain = Person -| rdfs:range = xsd:nonNegativeInteger -}}OntologyProperty:ContinentalTournamentSilver2027577268032013-07-02T10:01:23Z{{DatatypeProperty -| labels = -{{label|en|continental tournament silver}} -| rdfs:domain = Person -| rdfs:range = xsd:nonNegativeInteger -}}OntologyProperty:ContractAward20271779342010-05-28T12:55:42Z{{DatatypeProperty -| rdfs:label@en = contract award -| rdfs:domain = SpaceShuttle -| rdfs:range = xsd:date -}}OntologyProperty:Contractor202718359712014-07-08T13:05:40Z -{{ObjectProperty -| rdfs:label@en = contractor -| rdfs:label@el = εργολάβος -| rdfs:label@de = Auftragnehmer -| rdfs:label@nl = aannemer -| rdfs:domain = Skyscraper -| rdfs:range = Company -| rdfs:subPropertyOf = dul:coparticipatesWith -}}OntologyProperty:ConvictionDate2028027281812013-09-03T17:58:43Z{{DatatypeProperty -| labels = -{{label|en|conviction date}} -| rdfs:domain = Person -| rdfs:range = xsd:date -}}OntologyProperty:ConvictionPenalty20211899522802017-10-08T18:03:37Z{{ObjectProperty -| labels = - {{label|en|conviction penalty}} - {{label|de|Strafe}} -| rdfs:domain = Criminal -| rdfs:range = owl:Thing -}}OntologyProperty:CoolingSystem202719359722014-07-08T13:05:48Z -{{ObjectProperty -| rdfs:label@en = cooling system -| rdfs:label@de = Kühlsystem -| rdfs:domain = AutomobileEngine -| rdfs:subPropertyOf = dul:coparticipatesWith -}}OntologyProperty:Copilote2027804335532014-04-03T15:30:52Z{{ObjectProperty -| labels = -{{label|en|copilote}} -{{label|de|Copilot}} -| rdfs:range = Person -| rdfs:domain = Person -}}OntologyProperty:CoronationDate2024213213372012-12-29T09:50:49Z{{DatatypeProperty -| rdfs:label@en = coronation date -| rdfs:label@nl = kroningsdatum -| rdfs:domain = Royalty -| rdfs:range = xsd:date -}}OntologyProperty:CosparId202723528722018-02-13T10:36:14Z{{DatatypeProperty - -| labels = -{{label|en|COSPAR id}} -| comments = -{{comment|en|Described at http://en.wikipedia.org/wiki/International_Designator}} - -| rdfs:range = xsd:string -| owl:equivalentProperty = wikidata:P247 -| rdfs:subPropertyOf = code -}}OntologyProperty:Cost202724487012015-08-10T10:24:24Z{{DatatypeProperty -| labels = -{{label|en|cost}} -{{label|de|Kosten}} -{{label|nl|kosten}} -{{label|el|κόστος}} -| rdfs:comment@en = Cost of building an ArchitecturalStructure, Ship, etc -| rdfs:range = Currency -}}OntologyProperty:CostumeDesigner2025149359732014-07-08T13:05:56Z -{{ObjectProperty -| rdfs:domain = Film -| rdfs:range = Person -| rdfs:label@en = costume designer -| rdfs:label@it = costumista -| rdfs:comment@en = the person who is responsible for the film costume design -| rdfs:subPropertyOf = dul:coparticipatesWith -}}OntologyProperty:Council2026964254392013-05-25T14:04:00Z{{DatatypeProperty -| labels = -{{label|en|council of a liechtenstein settlement}} -| rdfs:domain = LiechtensteinSettlement -| rdfs:range = xsd:string -}}OntologyProperty:CouncilArea2022136359742014-07-08T13:06:04Z -{{ObjectProperty -| rdfs:label@en = Council area -| rdfs:domain = PopulatedPlace -| rdfs:range = PopulatedPlace -| rdfs:subPropertyOf = dul:isPartOf -}}OntologyProperty:Country202725474382015-04-01T14:35:43Z{{ObjectProperty -| labels = - {{label|en|country}} - {{label|ca|estat}} - {{label|de|Land}} - {{label|pt|país}} - {{label|el|χώρα}} - {{label|es|país}} - {{label|fr|pays}} - {{label|ga|tír}} - {{label|nl|land}} - {{label|pl|kraj}} -| comments = -{{comment|en|The country where the thing is located.}} -| rdfs:domain = owl:Thing -| rdfs:range = Country -| owl:equivalentProperty = wikidata:P17 -| rdfs:subPropertyOf = dul:hasLocation -}}OntologyProperty:CountryCode20211955537692020-10-14T23:12:45Z{{DatatypeProperty -| labels = -{{label|de|Ländervorwahl}} -{{label|en|country code}} -| rdfs:comment@en = Country code for telephone numbers. -| rdfs:domain = Place -| rdfs:range = xsd:string -| owl:equivalentProperty = gn:countryCode -}}OntologyProperty:CountryOrigin202726359762014-07-08T13:06:22Z -{{ObjectProperty -| rdfs:label@en = country origin -| rdfs:label@de = Land Herkunft -| rdfs:domain = Rocket -| rdfs:range = Country -| rdfs:subPropertyOf = dul:coparticipatesWith -}}OntologyProperty:CountryRank2026424234612013-01-22T12:44:23Z{{DatatypeProperty -| labels = -{{label|en|country rank}} -{{label|de|Rang Land}} -| comments = -{{comment|en|Place of the building in the list of the highest buildings in the country}} -{{comment|de|Der Platz des Gebäudes in der Liste der höchsten Gebäude des Landes}} -| rdfs:domain = Skyscraper -| rdfs:range = xsd:nonNegativeInteger -}}OntologyProperty:CountryWithFirstAstronaut202727359772014-07-08T13:06:30Z -{{ObjectProperty -| rdfs:label@en = country with first astronaut -| rdfs:domain = YearInSpaceflight -| rdfs:range = Country -| rdfs:subPropertyOf = dul:hasParticipant -}}OntologyProperty:CountryWithFirstSatellite202728359782014-07-08T13:06:38Z -{{ObjectProperty -| rdfs:label@en = country with first satellite -| rdfs:domain = YearInSpaceflight -| rdfs:range = Country -| rdfs:subPropertyOf = dul:hasParticipant -}}OntologyProperty:CountryWithFirstSatelliteLaunched202729359792014-07-08T13:06:47Z -{{ObjectProperty -| rdfs:label@en = country with first satellite launched -| rdfs:domain = YearInSpaceflight -| rdfs:range = Country -| rdfs:subPropertyOf = dul:hasParticipant -}}OntologyProperty:CountryWithFirstSpaceflight202730359802014-07-08T13:06:59Z -{{ObjectProperty -| rdfs:label@en = country with first spaceflight -| rdfs:domain = YearInSpaceflight -| rdfs:range = Country -| rdfs:subPropertyOf = dul:hasParticipant -}}OntologyProperty:County202731474392015-04-01T14:38:53Z{{ObjectProperty -| labels = - {{label|en|county}} - {{label|nl|provincie}} - {{label|de|Bezirk}} - {{label|el|Επαρχία}} - {{label|ga|contae}} - {{label|pl|hrabstwo}} -| rdfs:comment@en = The county where the thing is located. -| rdfs:domain = owl:Thing -| rdfs:range = PopulatedPlace -| rdfs:subPropertyOf = dul:hasLocation -| owl:equivalentProperty = wikidata:P131 -}}OntologyProperty:CountySeat2023215359822014-07-08T13:07:17Z -{{ObjectProperty -| labels = - {{label|en|county seat}} - {{label|nl|provincie zetel}} -| rdfs:domain = PopulatedPlace -| rdfs:subPropertyOf = dul:hasLocation -}}OntologyProperty:Course20273279382010-05-28T12:56:18Z{{DatatypeProperty -| rdfs:label@en = course -| rdfs:domain = GrandPrix -| rdfs:range = Length -}}OntologyProperty:CourseArea20211809519322017-02-20T12:13:24Z{{DatatypeProperty -| labels = -{{label|en|course area}} -{{label|ja|コース面積}} -| rdfs:range = Area -| rdfs:subProperty = area -| comments = -{{comment|en|The area of courses in square meters.}} -}}OntologyProperty:Cousurper2027637268832013-07-03T09:07:34Z{{ObjectProperty -| labels = -{{label|en|cousurper}} -| rdfs:domain = Person -| rdfs:range = Person -}}OntologyProperty:CoverArtist202733475542015-04-03T09:01:12Z{{ObjectProperty -| labels = - {{label|en|cover artist}} - {{label|nl|cover artist}} -| rdfs:domain = Work -| rdfs:range = Person -| rdfs:comment@en = Cover artist -| rdfs:subPropertyOf = dul:coparticipatesWith -| owl:equivalentProperty = wikidata:P736 -}}OntologyProperty:Cpu2022127487082015-08-10T10:33:08Z{{ObjectProperty -| rdfs:label@en = CPU -| rdfs:label@de = CPU -| rdfs:label@nl = processor (CPU) -| rdfs:label@pl = procesor (CPU) -| rdfs:comment@en = CPU of an InformationAppliance or VideoGame (which unfortunately is currently under Software) -| rdfs:subPropertyOf = dul:coparticipatesWith -| owl:equivalentProperty = wikidata:P880 -}}OntologyProperty:Created2027764335572014-04-03T15:31:16Z{{ObjectProperty -| labels = -{{label|en|created}} -{{label|de|erstellt}} -| rdfs:domain = Person -| rdfs:range = Work -}}OntologyProperty:CreationChristianBishop2027821491482015-10-13T10:00:50Z{{DatatypeProperty -| rdfs:label@en = creation christian bishop -| rdfs:domain = Bishop -| rdfs:range = xsd:string -}}OntologyProperty:CreationYear2022387367572014-07-09T10:24:18Z{{DatatypeProperty -| labels = -{{label|en|year of creation}} -{{label|el|έτος δημιουργίας}} -{{label|de|Entstehungsjahr}} -{{label|nl|jaar van creatie}} -| rdfs:domain = -| rdfs:range = xsd:gYear -}}OntologyProperty:CreativeDirector202734359852014-07-08T13:07:42Z -{{ObjectProperty -| rdfs:label@en = creative director -| rdfs:domain = TelevisionShow -| rdfs:range = Person -| rdfs:subPropertyOf = dul:coparticipatesWith -}}OntologyProperty:Creator202735536792020-07-30T21:32:45Z{{ObjectProperty -| labels = - {{label|en|creator (agent)}} - {{label|de|Urheber}} - {{label|el|δημιουργός}} - {{label|nl|maker}} -| rdfs:range = Agent -| rdfs:comment@en=Creator/author of a work. For literal (string) use dc:creator; for object (URL) use creator -| rdfs:subPropertyOf = dul:coparticipatesWith -| owl:equivalentProperty = schema:creator, wikidata:P170 -}}OntologyProperty:CreatorOfDish2023930359872014-07-08T13:08:06Z -{{ObjectProperty -| rdfs:label@en = creator of dish -| rdfs:domain = Food -| rdfs:range = Person -| rdfs:comment@en = The person that creates (invents) the food (eg. Caesar Cardini is the creator of the Caesar salad). -| rdfs:subPropertyOf = dul:coparticipatesWith -}}OntologyProperty:Credit2026142462172015-03-18T11:04:15Z{{DatatypeProperty -| rdfs:label@en = credit -| rdfs:domain = Openswarm -| rdfs:range = xsd:string -}}OntologyProperty:Crest2029555353842014-06-20T13:39:46Z{{ObjectProperty -| labels = -{{label|en|crest}} -{{label|de|Wappen}} -{{label|pl|herb}} -| rdfs:domain = owl:Thing -| rdfs:range = owl:Thing -}}OntologyProperty:Crew202736359882014-07-08T13:08:14Z -{{ObjectProperty -| rdfs:label@de = Crew -| rdfs:label@el = πλήρωμα -| rdfs:label@en = crew -| rdfs:domain = Spacecraft -| rdfs:range = SpaceMission -| rdfs:subPropertyOf = dul:coparticipatesWith -}}OntologyProperty:CrewMember202737475562015-04-03T09:04:41Z{{ObjectProperty -| rdfs:label@en = crew member -| rdfs:label@de = Besatzungsmitglied -| rdfs:domain = SpaceMission -| rdfs:range = Astronaut -| rdfs:subPropertyOf = dul:hasParticipant -| owl:equivalentProperty = wikidata:P1029 -}}OntologyProperty:CrewSize202739335622014-04-03T15:31:43Z{{DatatypeProperty -| rdfs:label@en = crew size -| rdfs:label@de = Besatzungsstärke -| rdfs:domain = SpaceMission -| rdfs:range = xsd:nonNegativeInteger -}}OntologyProperty:Crews202738335632014-04-03T15:31:50Z{{DatatypeProperty -| rdfs:label@en = crews -| rdfs:label@de = Besatzungen -| rdfs:domain = SpaceShuttle -| rdfs:range = xsd:nonNegativeInteger -}}OntologyProperty:CriminalCharge20211898522792017-10-08T17:55:06Z{{DatatypeProperty -| rdfs:label@en = criminal charge -| rdfs:label@de = Strafantrag -| rdfs:domain = Criminal -| rdfs:range = xsd:string -| rdfs:comment = The criminal charges for the crime(s) this individual is known for. -}}OntologyProperty:Criteria2023305347592014-05-12T06:46:51Z{{DatatypeProperty -| rdfs:label@en = criteria -| rdfs:label@el = κριτήριο -| rdfs:label@de = Kriterien -| rdfs:label@pt = critério -| rdfs:range = xsd:string -}}OntologyProperty:Crosses202740475572015-04-03T09:06:39Z{{ObjectProperty -| rdfs:label@en = crosses -| rdfs:label@el = διασχίζει -| rdfs:domain = Bridge -| rdfs:range = River -| rdfs:subPropertyOf = dul:hasLocation -| owl:equivalentProperty = wikidata:P177 -}}OntologyProperty:CrownDependency20274179412010-05-28T12:56:43Z{{DatatypeProperty -| rdfs:label@en = crown dependency -| rdfs:domain = City -| rdfs:range = xsd:string -}}OntologyProperty:Cuisine2022525487542015-08-13T09:55:26Z{{DatatypeProperty -| labels = -{{label|en|cuisine}} -{{label|de|Küche}} -{{label|nl|keuken}} -{{label|el|κουζίνα}} -{{label|fr|cuisine}} -| rdfs:comment@en = National cuisine of a Food or Restaurant -| rdfs:range = xsd:string -}}OntologyProperty:CultivatedVariety2026253359912014-07-08T13:08:38Z -{{ObjectProperty -| labels = - {{label|en|cultivar}} -| comments = - {{comment|en|Name of the cultivar (cultivated variety)}} -| rdfs:range = CultivatedVariety -| rdfs:domain = Plant -| rdfs:subPropertyOf = dul:isSpecializedBy -}}OntologyProperty:Curator2022519359922014-07-08T13:08:46Z -{{ObjectProperty -| labels = - {{label|en|curator}} - {{label|de|Kurator}} - {{label|nl|conservator}} -| rdfs:domain = Museum -| rdfs:range = Person -| rdfs:subPropertyOf = dul:coparticipatesWith -}}OntologyProperty:Currency202742474422015-04-01T14:52:43Z{{ObjectProperty -| labels = - {{label|en|currency}} - {{label|de|Währung}} - {{label|el|νομισματική μονάδα}} - {{label|fr|devise}} - {{label|ga|airgeadra}} - {{label|nl|valuta}} - {{label|pl|waluta}} - {{label|pt|moeda}} -| comments = - {{comment|el|υπολογίζει ή εκφράζει οικονομικές αξίες}} -| rdfs:range = Currency -| rdfs:subPropertyOf = dul:sameSettingAs -| owl:equivalentProperty = wikidata:P38 -}}OntologyProperty:CurrencyCode2025294474412015-04-01T14:48:34Z{{ DatatypeProperty - - | rdfs:label@en = currency code - | rdfs:label@de = Währungscode - | rdfs:label@ga = cód airgeadra - | rdfs:comment@en = ISO 4217 currency designators. - | rdfs:domain= Place - | rdfs:range = xsd:string - | owl:equivalentProperty = wikidata:P498 - -}}OntologyProperty:CurrentCity2027958335682014-04-03T15:32:15Z{{ObjectProperty -| labels = -{{label|en|current city}} -{{label|de|aktuelle Stadt}} -| rdfs:range = City -}}OntologyProperty:CurrentLeague2027782336222014-04-03T16:11:50Z{{ObjectProperty -| labels = -{{label|en|current league}} -{{label|de|aktuelle Liga}} -| rdfs:domain = Athlete -| rdfs:range = SportsLeague -}}OntologyProperty:CurrentMember202744359942014-07-08T13:09:07Z -{{ObjectProperty -| rdfs:label@en = current member -| rdfs:label@de = aktuelles Mitglied -| rdfs:range = Person -| rdfs:domain = SportsTeam -| rdfs:subPropertyOf = dul:hasMember -}}OntologyProperty:CurrentPartner202746359952014-07-08T13:09:15Z -{{ObjectProperty -| rdfs:label@en = current partner -| rdfs:label@de = aktueller Partner -| rdfs:domain = FigureSkater -| rdfs:range = Person -| rdfs:subPropertyOf = dul:coparticipatesWith -}}OntologyProperty:CurrentProduction2023839359962014-07-08T13:09:23Z -{{ObjectProperty -| rdfs:label@en = current production -| rdfs:domain = Theatre -| rdfs:range = owl:Thing -| rdfs:comment@en = The current production running in the theatre. -| rdfs:subPropertyOf = dul:coparticipatesWith -}}OntologyProperty:CurrentRank2023535126692011-05-07T13:25:03Z{{DatatypeProperty -| rdfs:label@en = current rank -| rdfs:label@de = aktueller Ranglistenplatz -| rdfs:domain = SnookerPlayer -| rdfs:range = xsd:integer -}}OntologyProperty:CurrentRecord20274879422010-05-28T12:56:51Z{{DatatypeProperty -| rdfs:label@en = current record -| rdfs:domain = CollegeCoach -| rdfs:range = xsd:string -}}OntologyProperty:CurrentSeason2022194335722014-04-03T15:32:31Z{{DatatypeProperty -| rdfs:label@en = current season -| rdfs:label@de = aktuelle Spielzeit -| rdfs:label@el = Τρέχον Περίοδος -| rdfs:domain = SportsLeague -| rdfs:range = xsd:string -}}OntologyProperty:CurrentStatus202749335732014-04-03T15:32:35Z{{DatatypeProperty -| labels = -{{label|en|current status}} -{{label|de|aktueller Status}} -{{label|nl|huidige status}} -| rdfs:domain = owl:Thing -| rdfs:range = xsd:string -}}OntologyProperty:CurrentTeam2027665335742014-04-03T15:32:38Z{{ObjectProperty -| labels = -{{label|en|current team}} -{{label|de|aktuelle Mannschaft}} -{{label|ja|所属チーム}} -| rdfs:domain = Athlete -| rdfs:range = SportsTeam -}}OntologyProperty:CurrentTeamManager2027798271002013-07-05T13:20:12Z{{ObjectProperty -| labels = -{{label|en|current team manager}} -| rdfs:domain = Person -| rdfs:range = SportsTeam -}}OntologyProperty:CurrentTeamMember2025024359972014-07-08T13:09:31Z -{{ObjectProperty -| rdfs:label@en = current team member -| rdfs:comment@en = A current member of an athletic team. -| rdfs:domain = SportsTeam -| rdfs:range = TeamMember -| rdfs:subPropertyOf = dul:hasMember -}}OntologyProperty:CurrentWorldChampion2026058359982014-07-08T13:09:40Z -{{ObjectProperty -| labels = - {{label|en|current world champion}} - {{label|de|aktueller Weltmeister}} - {{label|fr|champion du monde actuel}} - {{label|es|actual Campeón del mundo}} - {{label|nl|huidig wereldkampioen}} -| rdfs:domain = Sport -| rdfs:range = Agent <!-- it could be a country ... --> -| rdfs:subPropertyOf = dul:hasParticipant -}}OntologyProperty:CurrentlyUsedFor2023838266622013-06-28T17:01:54Z{{DatatypeProperty -| labels = -{{label|en|currently used for}} -{{label|nl|huidig gebruik}} -{{label|fr|usage actuel}} -{{label|es|uso actual}} -| rdfs:domain = ArchitecturalStructure -| rdfs:range = xsd:string -| rdfs:comment@en = Current use of the architectural structure, if it is currently being used as anything other than its original purpose. -}}OntologyProperty:Custodian202751525832017-10-31T08:37:41Z -{{ObjectProperty -| rdfs:label@en = custodian -| rdfs:label@de = Aufsichtsperson -| rdfs:domain = EducationalInstitution -| rdfs:range = Person -| rdfs:subPropertyOf = dul:coparticipatesWith -}}OntologyProperty:CyclistGenre2027868272872013-07-10T10:16:12Z{{ObjectProperty -| labels = -{{label|en|cyclist genre}} -| rdfs:domain = Athlete, CareerStation -}}OntologyProperty:CylinderBore20275279442010-05-28T12:57:04Z{{DatatypeProperty -| rdfs:label@en = cylinder bore -| rdfs:domain = AutomobileEngine -| rdfs:range = Length -}}OntologyProperty:CylinderCount2022546102522010-11-09T16:26:37Z{{DatatypeProperty - |rdfs:label@en=cylinder count - |rdfs:domain=Locomotive - |rdfs:range=xsd:nonNegativeInteger -}}OntologyProperty:Daira2026845360002014-07-08T13:09:58Z -{{ObjectProperty -| labels = - {{label|en|daira}} -| rdfs:domain = Settlement -| rdfs:range = Place -| rdfs:subPropertyOf = dul:hasLocation -}}OntologyProperty:Dam2026172360012014-07-08T13:10:06Z -{{ObjectProperty -| labels = - {{label|en|dam}} - {{label|de|Hirschkalb}} -| rdfs:domain = Animal -| rdfs:range = Animal -| rdfs:subPropertyOf = dul:sameSettingAs -}}OntologyProperty:Damage20211125460492015-03-16T21:41:13Z{{ObjectProperty -| labels = - {{label|en|damage amount}} - {{label|nl|schadebedrag}} -| rdfs:domain = Event -| rdfs:range = Currency -}}OntologyProperty:Damsire2026174360022014-07-08T13:10:24Z -{{ObjectProperty -| labels = - {{label|en|damsire}} -| rdfs:domain = Animal -| rdfs:range = Animal -| rdfs:subPropertyOf = dul:sameSettingAs -}}OntologyProperty:DanseCompetition2028072282352013-09-04T09:14:44Z{{DatatypeProperty -| labels = -{{label|en|danse competition}} -| rdfs:domain = Person -| rdfs:range = xsd:string -}}OntologyProperty:DanseScore2028071282342013-09-04T09:13:13Z{{DatatypeProperty -| labels = -{{label|en|danse score}} -| rdfs:domain = Person -| rdfs:range = xsd:string -}}OntologyProperty:Date202753475582015-04-03T09:07:55Z{{DatatypeProperty -| labels = -{{label|en|date}} -{{label|de|Datum}} -{{label|nl|datum}} -{{label|el|ημερομηνία}} -| rdfs:range = xsd:date -| owl:equivalentProperty = wikidata:P585 -}}OntologyProperty:DateAct202754115422011-04-01T11:05:12Z{{DatatypeProperty -| rdfs:label@en = date act -| rdfs:label@el = απόφαση_διάνοιξης -| rdfs:domain = Canal -| rdfs:range = xsd:date -}}OntologyProperty:DateAgreement2027042255412013-05-25T22:55:09Z{{DatatypeProperty -| labels = -{{label|en|date of an agreement}} -| rdfs:domain = Place -| rdfs:range = xsd:date -}}OntologyProperty:DateBudget2027075255962013-05-26T12:21:25Z{{DatatypeProperty -| labels = -{{label|en|date budget}} -| rdfs:range = xsd:date -}}OntologyProperty:DateClosed202755115482011-04-01T11:09:49Z{{DatatypeProperty -| rdfs:label@en = date closed -| rdfs:label@el = τερματισμός_λειτουργίας -| rdfs:domain = Canal -| rdfs:range = xsd:date -}}OntologyProperty:DateCompleted202756115462011-04-01T11:08:04Z{{DatatypeProperty -| rdfs:label@en = date completed -| rdfs:label@el = ολοκλήρωση -| rdfs:domain = Canal -| rdfs:range = xsd:date -}}OntologyProperty:DateConstruction202757335802014-04-03T15:33:01Z{{DatatypeProperty -| rdfs:label@en = date construction -| rdfs:label@de = Bauzeit -| rdfs:label@el = έναρξη_κατασκευής -| rdfs:domain = Canal -| rdfs:range = xsd:date -}}OntologyProperty:DateExtended202758115472011-04-01T11:08:51Z{{DatatypeProperty -| rdfs:label@en = date extended -| rdfs:label@el = επέκταση -| rdfs:domain = Canal -| rdfs:range = xsd:date -}}OntologyProperty:DateLastUpdated2027169335812014-04-03T15:33:05Z{{DatatypeProperty -| rdfs:domain = Document -| rdfs:range = xsd:date -| labels = - {{label|en|Date Last Updated}} -{{label|de|Datum der letzten Aktualisierung}} - {{label|nl|datum laatste bewerking}} -}}OntologyProperty:DateOfAbandonment202214383662010-05-28T13:54:42Z{{DatatypeProperty -| rdfs:label@en = date of abandonment -| rdfs:range = xsd:date -}}OntologyProperty:DateOfBurial202759335822014-04-03T15:33:09Z{{DatatypeProperty -| rdfs:label@en = date of burial -| rdfs:label@de = Datum der Beerdigung -| rdfs:label@nl = datum begrafenis -| rdfs:domain = Person -| rdfs:range = xsd:date -}}OntologyProperty:DateUnveiled2026474237342013-02-14T10:01:56Z{{DatatypeProperty -| labels = -{{label|en|date unveiled}} -{{label|nl|datum onthulling}} -| comments = -{{comment|en|Designates the unveiling date }} -{{comment|nl|Duidt de datum van onthulling aan}} -| rdfs:domain = Monument -| rdfs:range = xsd:date -| rdf:type = -| rdfs:subPropertyOf = -| owl:equivalentProperty = -}}OntologyProperty:DateUse202761115452011-04-01T11:07:11Z{{DatatypeProperty -| rdfs:label@en = date use -| rdfs:label@el = έναρξη_χρήσης -| rdfs:domain = Canal -| rdfs:range = xsd:date -}}OntologyProperty:Daughter20212291535872020-01-30T18:25:53Z{{ObjectProperty -| labels = - {{label|en|daughter}} - {{label|nl|dochter}} - {{label|de|Tochter}} - {{label|el|κόρη}} - {{label|ja|娘}} - {{label|ar|ابنة}} -| rdfs:domain = Woman -| rdfs:range = Person -| owl:propertyDisjointWith = parent -}}OntologyProperty:DavisCup2027739500982016-01-04T12:56:51Z{{DatatypeProperty -| labels = -{{label|en|davis cup}} -| rdfs:domain = TennisPlayer -| rdfs:range = xsd:string -}}OntologyProperty:Day202762335832014-04-03T15:33:12Z{{DatatypeProperty -| labels = -{{label|en|day}} -{{label|de|Tag}} -{{label|el|ημέρα}} -{{label|fr|jour}} - -| rdfs:domain = Settlement -| rdfs:range = xsd:date -}}OntologyProperty:DaylightSavingTimeZone2022346360032014-07-08T13:10:32Z -{{ObjectProperty -| rdfs:label@en = daylight saving time zone -| rdfs:label@de = Sommerzeitzone -| rdfs:domain = Place -| rdfs:subPropertyOf = dul:isPartOf -}}OntologyProperty:DbnlCodeDutch2028143285442013-10-10T08:47:57Z{{DatatypeProperty -| labels = -{{label|en|Digital Library code NL}} -{{label|nl|DBNL code NL}} -| rdfs:domain = Writer -| rdfs:range = xsd:string -| rdfs:comment@en = identifier in Dutch digital library (dbnl) -| rdfs:comment@nl = ID in Digitale Bibliotheek voor de Nederlandse Letteren (dbnl) -}}OntologyProperty:Dc:creator20211280486452015-08-06T15:12:03Z{{DatatypeProperty -| labels = - {{label|en|creator (literal)}} - {{label|de|Urheber}} - {{label|el|δημιουργός}} - {{label|nl|maker}} -| rdfs:range = xsd:string -| rdfs:comment@en=Creator/author of a work. For literal (string) use dc:creator; for object (URL) use creator -| rdfs:subPropertyOf = dul:coparticipatesWith -| owl:equivalentProperty = wikidata:P170 -}}OntologyProperty:Dc:description2021610174602012-04-27T19:37:44Z{{DatatypeProperty -|rdfs:label@en = description -|rdfs:comment@en = Dublin Core (dc) properties should only be used for media resources compatible with a [http://dublincore.org/documents/dcmi-type-vocabulary/ Dublin Core type]. -|rdfs:domain = Work -|rdfs:range = xsd:string -}}OntologyProperty:Dc:identifier2029569525532017-10-26T10:28:39Z{{ DatatypeProperty - | labels = -{{label|en|identifier}} - | comments = -{{comment|en|An identifier used to identify this thing.}} - | rdfs:range = xsd:string -}} - -[[Category:Identifier]]OntologyProperty:Dc:language2022307486722015-08-06T16:43:34Z{{DatatypeProperty -|rdfs:label@en = language (literal) -|rdfs:label@de = Sprache -|rdfs:comment@en = Language of the resource. Use dc:language for literal, language for object -|rdfs:domain = owl:Thing -|rdfs:range = xsd:string -}}OntologyProperty:Dc:publisher2025090486412015-08-06T15:09:30Z{{DatatypeProperty - |rdfs:label@en=publisher - |rdfs:label@de=Verlag - |rdfs:comment@en=Publisher of a work. For literal (string) use dc:publisher; for object (URL) use publisher - |rdfs:domain=Work - |rdfs:range=xsd:string -}}OntologyProperty:Dc:rights2021611185012012-05-19T15:44:55Z{{ObjectProperty -|rdfs:comment@en = Dublin Core (dc) properties should only be used for media resources compatible with a [http://dublincore.org/documents/dcmi-type-vocabulary/ Dublin Core type]. -|rdfs:label@en = rights -|rdfs:label@de = Rechte -}}OntologyProperty:Dc:subject2025091197232012-10-31T08:51:17Z{{ObjectProperty - |rdfs:label@en=subject - |rdfs:comment@en=Typically, the subject will be represented using keywords, key phrases, or classification codes. Recommended best practice is to use a controlled vocabulary. To describe the spatial or temporal topic of the resource, use the Coverage element. Dublin Core (dc) properties should only be used for media resources compatible with a [http://dublincore.org/documents/dcmi-type-vocabulary/ Dublin Core type]. - |rdfs:label@nl=onderwerp - |rdfs:comment@nl=Een onderwerp wordt in de regel aangeduid met trefwoorden of met een verwijzing naar een bepaalde classificatie. Het wordt aanbevolen hiervoor gebruik te maken van een verzameling termen en concepten die onder redactie staat. Om de dimensies in ruimte en tijd van het informatieobject aan te duiden kan beter het Coverage element worden gebruikt. Properties van de Dublin Core (dc) zijn in principe alleen van toepassing op het type informatieobjecten dat als [http://dublincore.org/documents/dcmi-type-vocabulary/ Dublin Core type] is benoemd. - |rdfs:domain=owl:Thing - |rdfs:range=owl:Thing -}}OntologyProperty:Dc:title2026762453772015-02-16T16:29:18Z{{DatatypeProperty -|rdfs:label@en = title -|rdfs:range = xsd:string -|rdfs:comment@en = Title that's a plain xsd:string, not rdf:langString (i.e. doesn't carry a language tag) -}}OntologyProperty:Dc:type20210352391192015-01-09T19:15:39Z{{DatatypeProperty -| labels = -{{label|en|type (literal)}} -| comments = -{{comment|en|type as literal. If the template field is a string, use "dc:type". If it's a wikipedia page, use "type". If it can be either, use *both* "dc:type" and "type" (by mapping it twice)}} -| rdfs:domain = owl:Thing -| rdfs:range = xsd:string -| rdf:type = -| rdfs:subPropertyOf = -| owl:equivalentProperty = -}}OntologyProperty:Dcc2021719486912015-08-10T10:12:45Z{{DatatypeProperty -| rdfs:label@en = Dewey Decimal Classification -| rdfs:comment@en = The Dewey Decimal Classification is a proprietary system of library classification developed by Melvil Dewey in 1876. -| rdfs:domain = Work -| rdfs:range = xsd:string -| owl:equivalentProperty = wikidata:P1036 -}}OntologyProperty:Dct:created2029549512082016-06-08T13:45:41Z{{DatatypeProperty -| labels = -{{label|en|Date or range when this object was created}} -| comments = -{{comment|en|Based on http://purl.org/dc/terms/created}} -| rdfs:range = xsd:string -}}OntologyProperty:Dct:dateSubmitted2026001201252012-12-04T11:23:04Z{{DatatypeProperty -|labels= - {{label|en|date submitted}} -|rdfs:range = xsd:date -}}OntologyProperty:Dct:description2026761471922015-03-25T18:07:24Z{{DatatypeProperty -| labels = -{{label|en|Description}} -| rdfs:range = rdf:langString -}}OntologyProperty:Dct:extent20210400393392015-01-16T20:19:47Z{{DatatypeProperty -| comments= -{{comment|en|The size or duration of the resource. Use Use dct:format for file format, or dct:medium for material or physical carrier. Similar to http://purl.org/dc/terms/extent but that's an object property}} -| labels= -{{label|en|medium}} -| rdfs:domain = owl:Thing -| rdfs:range = xsd:string -}}OntologyProperty:Dct:format2029478486582015-08-06T16:32:37Z{{DatatypeProperty -| comments= -{{comment|en|File format of the resource. Use dct:medium for physical medium, or dct:extent for dimensions. Use dct:format for literal, format for object}} -| labels= -{{label|en|format (literal)}} -| rdfs:domain = owl:Thing -| rdfs:range = xsd:string -}}OntologyProperty:Dct:medium20210397393372015-01-16T20:19:12Z{{DatatypeProperty -| comments= -{{comment|en|The material or physical carrier of the resource. Use dct:format for file format, or dct:extent for dimensions. Similar to http://purl.org/dc/terms/medium but that's an object property}} -| labels= -{{label|en|medium}} -| rdfs:domain = owl:Thing -| rdfs:range = xsd:string -}}OntologyProperty:Dct:modified2026000335852014-04-03T15:33:20Z{{DatatypeProperty -|labels= - {{label|en|modified}} -{{label|de|geändert}} -|rdfs:range = xsd:date -}}OntologyProperty:Dct:references2029251375632014-07-28T13:32:30Z{{ObjectProperty - |rdfs:label@en=references - |rdfs:label@nl=verwijst naar - |rdfs:domain=Work - |rdfs:range=owl:Thing - |owl:equivalentProperty=http://purl.org/dc/terms/references -}}OntologyProperty:Dct:source2029252322812014-03-06T15:13:58Z{{ObjectProperty - |rdfs:label@en=source - |rdfs:label@nl=heeft als bron - |rdfs:domain=Work - |rdfs:range=owl:Thing - |owl:equivalendProperty=http://purl.org/dc/terms/source -}}OntologyProperty:Dct:spatial2025763186362012-05-24T10:43:07Z{{ObjectProperty -|rdfs:label@en = spatial -}}OntologyProperty:Dct:subject2022899107122010-12-10T19:09:47Z{{ObjectProperty -|rdfs:label@en = subject -}}OntologyProperty:Dct:temporal2026766250192013-04-18T11:15:36Z{{ObjectProperty -|rdfs:label@en = temporal -}}OntologyProperty:Dct:type20210463250052013-04-18T10:35:14Z{{ObjectProperty -|rdfs:label@en = type -}}OntologyProperty:DeFactoLanguage2027035255332013-05-25T22:45:01Z{{ObjectProperty -| labels = -{{label|en|de facto language}} -| rdfs:range = Language -| owl:equivalentProperty = language -}}OntologyProperty:DeadInFightDate2027801271042013-07-05T13:40:31Z{{DatatypeProperty -| labels = -{{label|en|dead in fight date}} -| rdfs:domain = Person -| rdfs:range = xsd:string -}}OntologyProperty:DeadInFightPlace2027802271052013-07-05T13:40:46Z{{DatatypeProperty -| labels = -{{label|en|dead in fight place}} -| rdfs:domain = Person -| rdfs:range = xsd:string -}}OntologyProperty:Dean202763360042014-07-08T13:10:41Z -{{ObjectProperty -| rdfs:label@en = dean -| rdfs:label@de = Dekan -| rdfs:label@el = πρύτανης -| rdfs:label@nl = decaan -| rdfs:domain = EducationalInstitution -| rdfs:range = Person -| rdfs:subPropertyOf = dul:coparticipatesWith -}}OntologyProperty:Deanery2026481360052014-07-08T13:10:49Z -{{ObjectProperty -| labels = - {{label|en|deanery}} - {{label|de|Dekanat}} - {{label|nl|proosdij}} -| comments = - {{comment|en|Dioceses and parishes should know which deaneries there are }} -| rdfs:domain = Diocese, Parish -| rdfs:range = Deanery -| rdf:type = | rdfs:subPropertyOf = -| owl:equivalentProperty = -| rdfs:subPropertyOf = dul:isPartOf -}}OntologyProperty:DeathAge2027538348892014-05-18T17:46:27Z{{DatatypeProperty -| labels = -{{label|en|death age}} -{{label|el|ηλικία θανάτου}} -{{label|de|Sterbealter}} -| rdfs:domain = Person -| rdfs:range = xsd:nonNegativeInteger -}}OntologyProperty:DeathCause202764360062014-07-08T13:10:58Z -{{ObjectProperty -| labels = - {{label|en|death cause}} - {{label|nl|doodsoorzaak}} - {{label|de|Todesursache}} - {{label|el|αιτία_θανάτου}} -| rdfs:domain = Person -| owl:equivalentProperty = wikidata:P509 -| rdfs:subPropertyOf = dul:coparticipatesWith -}}OntologyProperty:DeathDate202765537792020-10-20T14:16:25Z{{DatatypeProperty -| labels = -{{label|en|death date}} -{{label|de|Sterbedatum}} -{{label|fr|date de décès}} -{{label|el|ημερομηνία_θανάτου}} -{{label|ja|没年月日}} -{{label|nl|sterfdatum}} -| rdfs:domain = Person -| rdfs:range = xsd:date -| rdf:type = owl:FunctionalProperty -| owl:equivalentProperty = schema:deathDate, wikidata:P570, gnd:dateOfDeath -}}OntologyProperty:DeathPlace202766536672020-07-30T21:20:29Z{{ObjectProperty -| labels = - {{label|en|death place}} - {{label|de|Sterbeort}} - {{label|fr|lieu de décès}} - {{label|el|τόπος_θανάτου}} - {{label|ja|死没地}} - {{label|nl|plaats van overlijden}} -| rdfs:domain = Person -| comments = -{{comment|en|The place where the person died.}} -| rdfs:range = Place -| owl:equivalentProperty = schema:deathPlace, wikidata:P20 -| rdfs:subPropertyOf = dul:hasLocation -}}OntologyProperty:DeathYear202767537912020-10-26T19:57:47Z{{DatatypeProperty -| labels = -{{label|en|death year}} -{{label|nl|jaar van overlijden}} -{{label|de|Sterbejahr}} -{{label|ja|没年}} -{{label|el|έτος θανάτου}} -| rdfs:domain = Person -| rdfs:range = xsd:gYear -| rdf:type = owl:FunctionalProperty -| owl:equivalentProperty = gnd:dateOfDeath -}}OntologyProperty:Debut202768348902014-05-18T17:46:57Z{{DatatypeProperty -| rdfs:label@en = debut -| rdfs:label@el = ντεμπούτο -| rdfs:label@de = Debüt -| rdfs:label@ja = デビュー -| rdfs:domain = Wrestler -| rdfs:range = xsd:date -}}OntologyProperty:DebutTeam202770360082014-07-08T13:11:14Z -{{ObjectProperty -| rdfs:label@en = debut team -| rdfs:label@el = πρώτη ομάδα -| rdfs:domain = Athlete -| rdfs:range = SportsTeam -| rdfs:subPropertyOf = dul:isMemberOf -}}OntologyProperty:DebutWork20210414394042015-01-19T13:13:36Z{{ObjectProperty -| labels= -{{label|en|debutWork}} -| comments= -{{comment|en|First work of a person (may be notableWork or not)}} -| rdfs:domain = Person -| rdfs:range = Work -}}OntologyProperty:Dec2026143462182015-03-18T11:04:18Z{{DatatypeProperty -| rdfs:label@en = dec -| rdfs:domain = Openswarm -| rdfs:range = xsd:string -}}OntologyProperty:Decay202772216512013-01-02T19:17:51Z{{DatatypeProperty -| rdfs:label@en = decay -| rdfs:label@el = αποσύνθεση -| rdfs:domain = Spacecraft -| rdfs:range = xsd:date -}}OntologyProperty:DecideDate20277379592010-05-28T12:59:03Z{{DatatypeProperty -| rdfs:label@en = decide date -| rdfs:domain = SupremeCourtOfTheUnitedStatesCase -| rdfs:range = xsd:date -}}OntologyProperty:Declination2025342176742012-04-29T10:14:29Z{{ DatatypeProperty - - | rdfs:label@en = declination - | rdfs:domain = Constellation - | rdfs:range = xsd:nonNegativeInteger - -}}OntologyProperty:DecommissioningDate2023105376162014-08-25T15:59:53Z{{DatatypeProperty -| rdfs:label@en=decommissioning date -| rdfs:label@es=fecha de baja de servicio -| rdfs:domain = Ship -| rdfs:range = xsd:date -}}OntologyProperty:Decoration2027544271792013-07-09T09:56:13Z{{ObjectProperty -| labels = -{{label|en|decoration}} -| rdfs:domain = Person -}}OntologyProperty:Defeat2027588348922014-05-18T17:48:17Z{{DatatypeProperty -| labels = -{{label|en|defeat}} -{{label|el|ήττα}} -{{label|de|Niederlage}} -| rdfs:domain = Boxer -| rdfs:range = xsd:nonNegativeInteger -}}OntologyProperty:DefeatAsMgr2027662491422015-10-13T09:49:25Z{{DatatypeProperty -| labels = -{{label|en|defeat as team manager}} -{{label|de|Niederlage als Trainer}} -| rdfs:domain = Coach -| rdfs:range = xsd:nonNegativeInteger -}}OntologyProperty:Definition2024442537832020-10-21T18:57:14Z{{DatatypeProperty -| rdfs:domain = Galaxy -| rdfs:range = xsd:string -| labels = - {{label|fr|définition}} - {{label|en|definition}} - {{label|tr|tanımlar}} -| owl:equivalentProperty = gnd:definition -}}OntologyProperty:Defunct20211892522492017-10-08T08:48:54Z{{DatatypeProperty -| rdfs:domain = Company -| rdfs:range = xsd:boolean -| comments = -{{comment|en|If the company is defunct or not. Use end_date if a date is given}} -}}OntologyProperty:DelegateMayor2027108360092014-07-08T13:11:22Z -{{ObjectProperty -| labels = - {{label|en|delegate mayor}} -| rdfs:domain = PopulatedPlace -| rdfs:range = Person -| rdfs:subPropertyOf = dul:sameSettingAs -}}OntologyProperty:Delegation2027284336162014-04-03T16:01:11Z{{DatatypeProperty -| labels = -{{label|en|delegation}} -| rdfs:domain = PopulatedPlace -| rdfs:range = xsd:string -}}OntologyProperty:DeliveryDate2022548221262013-01-10T14:43:26Z{{DatatypeProperty - |rdfs:label@en=delivery date - |rdfs:label@nl=leverdatum - |rdfs:range=xsd:date -}}OntologyProperty:Deme2027239258952013-06-12T14:03:24Z{{DatatypeProperty -| labels = -{{label|en|deme}} -| rdfs:domain = PopulatedPlace -| rdfs:range = xsd:string -}}OntologyProperty:Demographics2027912335942014-04-03T15:34:01Z{{ObjectProperty -| labels = -{{label|en|demographics}} -{{label|de|Demografie}} -| rdfs:domain = PopulatedPlace -| rdfs:range = Demographics -}}OntologyProperty:DemographicsAsOf2023809133242011-06-03T20:05:45Z{{DatatypeProperty -| rdfs:label@en = demographics as of -| rdfs:label@pt = indicadores demograficos em -| rdfs:domain = PopulatedPlace -| rdfs:range = xsd:date -}}OntologyProperty:DemolitionDate202774133692011-06-06T13:53:26Z{{DatatypeProperty -| rdfs:label@en = demolition date -| rdfs:label@el = ημερομηνία κατεδάφισης -| rdfs:domain = ArchitecturalStructure -| rdfs:range = xsd:date -| rdfs:comment@en = The date the building was demolished. -}}OntologyProperty:DemolitionYear2023840222302013-01-10T23:18:00Z{{DatatypeProperty -| labels = -{{label|en|demolition year}} -{{label|nl|sloop jaar}} -| rdfs:domain = ArchitecturalStructure -| rdfs:range = xsd:gYear -| rdfs:comment@en = The year the building was demolished. -}}OntologyProperty:Demonym202775488842015-09-23T10:52:52Z{{DatatypeProperty -| rdfs:label@en = demonym -| rdfs:label@de = Volksbezeichnung -| rdfs:label@el = τοπονύμιο_πληθυσμού -| rdfs:label@gl = xentilicio -| rdfs:label@fr = gentilé -| rdfs:label@fr = démonyme -| rdfs:label@nl = naam bevolkingsgroep -| rdfs:range = rdf:langString -}}OntologyProperty:Denomination202776525852017-10-31T08:40:59Z -{{ObjectProperty -| rdfs:label@en = denomination -|rdfs:comment@en = Religious denomination of a church, religious school, etc. Examples: Haredi_Judaism, Sunni_Islam, Seventh-day_Adventist_Church, Non-Denominational, Multi-denominational, Non-denominational_Christianity -| rdfs:subPropertyOf = dul:isExpressedBy -| rdfs:domain = Agent -}}OntologyProperty:Density202777353572014-06-18T22:31:54Z{{DatatypeProperty -| rdfs:label@en = density -| rdfs:label@de = Dichte -| rdfs:label@pt = densidade -| rdfs:label@el = πυκνότητα -| rdfs:label@fr = densité -| rdfs:label@ja = 密度 -| rdfs:label@it= densità -| rdfs:range = Density -}}OntologyProperty:Department202778528062018-02-08T13:36:12Z -{{ObjectProperty -| labels = - {{label|en|department}} - {{label|de|Abteilung}} - {{label|nl|afdeling}} - {{label|fr|département}} - {{label|eu|eskualdea}} -| rdfs:domain = PopulatedPlace -| rdfs:range = Department -| rdfs:subPropertyOf = dul:isPartOf -}}OntologyProperty:DepartmentCode2029273325262014-03-10T15:29:00Z{{DatatypeProperty -| labels = -{{label|en|code of the department}} -{{label|nl|departementcode}} -| rdfs:domain = Municipality -| rdfs:range = xsd:string -}}OntologyProperty:DepartmentPosition2026788250762013-04-21T14:45:47Z{{DatatypeProperty -| labels = -{{label|en|geolocDepartment}} -| rdfs:domain = PopulatedPlace -| rdfs:range = xsd:string -}}OntologyProperty:DepictionDescription2026140348412014-05-15T05:18:55Z{{DatatypeProperty -| labels = {{label|en|depiction description (caption)}} -| comments = {{comment|en|This property can be used to map image captions from Infoboxes}} -| rdfs:range = rdf:langString -}}OntologyProperty:Depth202779485072015-07-28T17:24:07Z{{DatatypeProperty -| labels = -{{label|en|depth}} -{{label|de|Tiefe}} -{{label|nl|diepte}} -{{label|el|βάθος}} -{{label|fr|profondeur}} -| comments = -{{comment|en|Is a measure of the distance between a reference height and a point underneath. The exact meaning for a place is unclear. If possible, use {{linkProperties|maximumDepth|}} or {{linkProperties|averageDepth|}} to be unambiguous.}} -| rdfs:domain = Place -| rdfs:range = Length -}}OntologyProperty:DepthQuote2027091256152013-05-26T13:33:31Z{{DatatypeProperty -| labels = -{{label|en|depth quote}} -| rdfs:domain = Place -| rdfs:range = xsd:string -}}OntologyProperty:Depths2027925276782013-07-15T15:05:02Z{{ObjectProperty -| labels = -{{label|en|depths}} -| rdfs:domain = Place -| rdfs:range = Depth -}}OntologyProperty:Deputy2022341360122014-07-08T13:11:56Z -{{ObjectProperty -| rdfs:label@en = deputy -| rdfs:label@de = Stellvertreter -| rdfs:range = Person -| rdfs:subPropertyOf = dul:coparticipatesWith -}}OntologyProperty:Derivative202780360132014-07-08T13:12:05Z{{DisclaimerOntologyProperty}} - - -{{ObjectProperty -| rdfs:label@en = derivative -| rdfs:domain = MusicGenre -| rdfs:range = MusicGenre -| rdfs:subPropertyOf = dul:specializes -}}OntologyProperty:DerivedWord2027746336002014-04-03T15:34:35Z{{DatatypeProperty -| labels = -{{label|en|derived word}} -{{label|de|abgeleitetes Wort}} -| rdfs:domain = Person -| rdfs:range = xsd:string -}}OntologyProperty:Description2025241536622020-07-30T21:16:08Z{{ DatatypeProperty - | rdfs:comment@en = Short description of a person - | rdfs:label@en = description - | rdfs:label@el = περιγραφή - | rdfs:label@de = Beschreibung - | rdfs:label@nl = omschrijving - | rdfs:range = rdf:langString - | owl:equivalentProperty = schema:description -}}OntologyProperty:DesignCompany202781525992017-10-31T10:21:44Z -{{ObjectProperty -| rdfs:label@en = designer company -| rdfs:range = Company -| rdfs:subPropertyOf = dul:coparticipatesWith -}}OntologyProperty:Designer202782475592015-04-03T09:09:30Z{{ObjectProperty -| rdfs:label@en = designer -| rdfs:label@el = σχεδιαστής -| rdfs:range = Person -| rdfs:subPropertyOf = dul:coparticipatesWith -| owl:equivalentProperty = wikidata:P287 -}}OntologyProperty:Destination202784522522017-10-08T09:28:15Z -{{ObjectProperty -| rdfs:label@en = destination -| rdfs:label@de = Ziel -| rdfs:label@el = προορισμός -| rdfs:domain = PublicTransitSystem -| rdfs:range = PopulatedPlace -| rdfs:subPropertyOf = dul:coparticipatesWith -}}OntologyProperty:DestructionDate202785224732013-01-12T23:09:14Z{{DatatypeProperty -| labels = -{{label|en|destruction date}} -{{label|nl|sloopdatum}} -{{label|el|ημερομηνία καταστροφής}} -| rdfs:range = xsd:date -}}OntologyProperty:DetectionMethod2022146336022014-04-03T15:34:43Z{{DatatypeProperty -| rdfs:label@en = Method of discovery -| rdfs:label@de = Verfahren zur Entdeckung -| rdfs:domain = Planet -| rdfs:range = xsd:string -}}OntologyProperty:Detractor2027776336032014-04-03T15:34:47Z{{ObjectProperty -| labels = -{{label|en|detractor}} -{{label|de|Kritiker}} -| rdfs:domain = Person -| rdfs:range = Person -}}OntologyProperty:Developer202786487092015-08-10T10:33:56Z{{ObjectProperty -| labels = - {{label|en|developer}} - {{label|nl|ontwikkelaar}} - {{label|de|Entwickler}} - {{label|fr|développeur}} -| rdfs:comment@en = Developer of a Work (Artwork, Book, Software) or Building (Hotel, Skyscraper) -| rdfs:range = Agent -| rdfs:subPropertyOf = dul:coparticipatesWith -| owl:equivalentProperty = wikidata:P178 -}}OntologyProperty:DfE2023120528942018-02-13T12:27:26Z{{ObjectProperty - |rdfs:label@en=DfE - |rdfs:comment@en=Department for Education (UK) number of a school in England or Wales - |rdfs:domain=School - |rdfs:subPropertyOf=code -}}OntologyProperty:Diameter202787527732018-01-23T14:56:10Z{{DatatypeProperty -| labels = -{{label|en|diameter}} -{{label|de|Durchmesser}} -{{label|nl|diameter}} -{{label|fr|diamètre}} -{{label|el|διάμετρος}} -| rdfs:range = Length -| rdf:type = owl:FunctionalProperty -| owl:equivalentProperty = wikidata:P2386 -}}OntologyProperty:DifferentialDiagnosis20211863522002017-10-07T14:32:20Z{{ObjectProperty -| labels = - {{label|en|differential diagnosis}} - {{label|fr|diagnostic différentiel}} - {{label|de|Differentialdiagnose}} -| rdfs:domain = Disease -| rdfs:range = owl:Thing -}}OntologyProperty:DigitalChannel2023052347532014-05-11T19:58:21Z{{DatatypeProperty -| rdfs:label@en = digital channel -| rdfs:label@de = Digitalkanal -| rdfs:label@el = Ψηφιακό κανάλι -| rdfs:comment@el = Ένα ψηφιακό κανάλι επιτρέπει την μετάδοση δεδομένων σε ψηφιακή μορφή. -| rdfs:domain = Broadcaster -| rdfs:range = xsd:string -}}OntologyProperty:DigitalSubChannel2023183119122011-04-05T10:35:32Z{{DatatypeProperty -| rdfs:label@en = digital sub channel -| rdfs:domain = Broadcaster -| rdfs:range = xsd:string -| rdfs:comment@en = In broadcasting, digital subchannels are a means to transmit more than one independent program at the same time from the same digital radio or digital television station on the same radio frequency channel. (http://en.wikipedia.org/wiki/Digital_subchannel - 05/04/2011) -}}OntologyProperty:Diocese2026482524482017-10-15T18:17:22Z{{ObjectProperty -| labels = - {{label|en|diocese}} - {{label|de|Diözese}} - {{label|nl|bisdom}} -| comments = - {{comment|en|A religious administrative body above the parish level}} -| rdfs:domain = owl:Thing -| rdfs:range = Diocese -| rdf:type = | rdfs:subPropertyOf = -| owl:equivalentProperty = -<!--| rdfs:subPropertyOf = dul:isPartOf--> -| owl:equivalentProperty = wikidata:P708 -}}OntologyProperty:Diploma2027540336072014-04-03T15:35:04Z{{ObjectProperty -| labels = -{{label|en|diploma}} -{{label|de|Diplom}} -| rdfs:domain = Person -| rdfs:range = Diploma -}}OntologyProperty:Director202788525402017-10-23T10:16:53Z -{{ObjectProperty -| labels = - {{label|en|director}} - {{label|en|film director}} - {{label|nl|regisseur}} - {{label|da|instruktør}} - {{label|de|regisseur}} - {{label|ru|директор}} - {{label|el|σκηνοθέτης}} - {{label|es|director de cine}} - {{label|fr|réalisateur}} -| comments = - {{comment|en|A film director is a person who directs the making of a film.<ref>https://en.wikipedia.org/wiki/Film_director</ref>}} - {{comment|fr|Un réalisateur (au féminin, réalisatrice) est une personne qui dirige la fabrication d'une œuvre audiovisuelle, généralement pour le cinéma ou la télévision.<ref>https://fr.wikipedia.org/wiki/Réalisateur</ref>}} -| rdfs:domain = Film -| rdfs:range = Person -| owl:equivalentProperty = schema:director, wikidata:P57 -| rdfs:subPropertyOf = dul:coparticipatesWith -}} -'''Warning''': this property is used for film making. For a more general term see [[OntologyProperty:Head]]. - -== references == -<references/>OntologyProperty:DisappearanceDate2027072255902013-05-26T12:12:20Z{{DatatypeProperty -| labels = -{{label|en|date disappearance of a populated place}} -| rdfs:domain = PopulatedPlace -| rdfs:range = xsd:date -}}OntologyProperty:Disbanded20278979662010-05-28T13:00:02Z{{DatatypeProperty -| rdfs:label@en = disbanded -| rdfs:domain = MilitaryUnit -| rdfs:range = xsd:date -}}OntologyProperty:Discharge202790486152015-08-06T12:27:35Z{{DatatypeProperty -| rdfs:label@en = discharge -| rdfs:label@el = εκροή -| rdfs:label@nl = uitstoot -| rdfs:domain = Stream -| rdfs:range = FlowRate -}}OntologyProperty:DischargeAverage202791328592014-03-20T22:03:12Z{{DatatypeProperty -| rdfs:label@en = discharge average -| rdfs:domain = MeanOfTransportation -| rdfs:range = FlowRate -}}OntologyProperty:Disciple2027338360202014-07-08T13:13:10Z -{{ObjectProperty -| labels = - {{label|en|disciple}} - {{label|fr|disciple}} - {{label|fr|élève}} -| rdfs:domain = Artist -| rdfs:range = Artist -| owl:inversePropertyOf = mentor -| comments = - {{comment|en|A person who learns from another, especially one who then teaches others..<ref>http://en.wiktionary.org/wiki/disciple</ref>}} - {{comment|fr|Celui qui apprend d’un maître quelque science ou quelque art libéral.<ref>http://fr.wiktionary.org/wiki/disciple</ref>}} -| rdfs:subPropertyOf = dul:sameSettingAs -}} -<references/>OntologyProperty:Discipline2026134475642015-04-03T09:13:23Z{{ObjectProperty -| labels = - {{label|en|discipline}} - {{label|de|Disziplin}} -| rdfs:domain = Agent -| rdfs:subPropertyOf = dul:isDescribedBy -| owl:equivalentProperty = wikidata:P101 -}}OntologyProperty:Discontinued20279279692010-05-28T13:00:28Z{{DatatypeProperty -| rdfs:label@en = discontinued -| rdfs:domain = Beverage -| rdfs:range = xsd:date -}}OntologyProperty:Discovered202793491972015-10-14T12:41:25Z{{DatatypeProperty -| labels = -{{label|en|discovered}} -{{label|de|entdeckt}} -{{label|en|discovery date}} -{{label|el|Ημερομηνία ανακάλυψης}} -{{label|fr|date de découverte}} -{{label|es|fecha de descubrimiento}} -{{label|pt|descobridor}} -| rdfs:domain = CelestialBody -| rdfs:range = xsd:date -| owl:equivalentProperty = wikidata:P575 -}}OntologyProperty:Discoverer202794360222014-07-08T13:13:25Z -{{ObjectProperty -| labels = - {{label|en|discoverer}} - {{label|de|Entdecker}} - {{label|el|Ανακαλύφθηκε από}} - {{label|fr|découvreur}} - {{label|es|descubridor}} -| rdfs:range = Person -| owl:equivalentProperty = wikidata:P61 <!-- P61 is somehow more general : discoverer or inventor --> -| rdfs:subPropertyOf = dul:coparticipatesWith -}}OntologyProperty:Discovery2027059336112014-04-03T15:35:22Z{{DatatypeProperty -| labels = -{{label|en|date when the island has been discovered}} -{{label|de|Datum als die Insel entdeckt wurde}} -{{label|nl|datum waarop het eiland is ontdekt}} -| rdfs:domain = Island -| rdfs:range = xsd:string -}}OntologyProperty:Disease20211907522952017-10-08T19:32:51Z{{ObjectProperty -| labels = - {{label|en|disease}} - {{label|de|Krankheit}} -| comments = - {{comment|en|Points to a disease pertaining to the subject at hand.}} - {{comment|de|Verweist auf eine Krankheit.}} -| rdfs:domain = owl:Thing -| rdfs:range = Disease -}}OntologyProperty:DiseasesDB20211870522072017-10-07T15:38:54Z{{DatatypeProperty -| labels = -{{label|en|DiseasesDB}} -{{label|nl|DiseasesDB}} -{{label|de|DiseasesDB}} -{{label|fr|DiseasesDB}} -| rdfs:domain = Disease -| rdfs:range = xsd:string -}}OntologyProperty:DiseasesDb202795476162015-04-03T10:25:50Z{{DatatypeProperty -| labels = -{{label|en|diseasesDb}} -{{label|nl|diseasesDb}} -{{label|ja|diseasesDb}} -| rdfs:domain = Disease -| rdfs:range = xsd:string -| owl:equivalentProperty = wikidata:P557 -}}OntologyProperty:Displacement202796376142014-08-25T15:06:07Z{{DatatypeProperty -| rdfs:label@en = displacement -| rdfs:label@es = cilindrada -| rdfs:domain = AutomobileEngine -| rdfs:range = Volume -| rdf:type = owl:FunctionalProperty -}}OntologyProperty:DissolutionDate2022318536702020-07-30T21:23:35Z{{merge|dissolved|dissolutionYear}} - -{{DatatypeProperty -| labels = -{{label|en|dissolution date}} -{{label|nl|ontbindingsdatum}} -| rdfs:domain = Organisation, PopulatedPlace -| rdfs:range = xsd:date -| owl:equivalentProperty = schema:dissolutionDate -}}OntologyProperty:DissolutionYear2022316466252015-03-20T08:24:08Z{{merge|dissolved|dissolutionDate}} - -{{DatatypeProperty -| rdfs:label@en = dissolution year -| rdfs:domain = Organisation, PopulatedPlace -| rdfs:range = xsd:gYear -}}OntologyProperty:Dissolved202797172682012-04-18T09:08:57Z{{merge|dissolutionDate|dissolutionYear}} - -{{DatatypeProperty -| rdfs:label@en = dissolved -| rdfs:domain = SoccerClub -| rdfs:range = xsd:date -}}OntologyProperty:Dist ly2026137462132015-03-18T11:03:48Z{{DatatypeProperty -| rdfs:label@en = dist_ly -| rdfs:domain = Openswarm -| rdfs:range = xsd:string -}}OntologyProperty:Dist pc2026141462162015-03-18T11:04:11Z{{DatatypeProperty -| rdfs:label@en = dist_pc -| rdfs:domain = Openswarm -| rdfs:range = xsd:integer -}}OntologyProperty:Distance202798185372012-05-19T16:11:43Z{{DatatypeProperty -| rdfs:label@en = distance -| rdfs:label@de = Entfernung -| rdfs:range = Length -}}OntologyProperty:DistanceLaps202799103722010-11-10T14:28:31Z{{DatatypeProperty -| rdfs:label@en = distance laps -| rdfs:domain = GrandPrix -| rdfs:range = xsd:nonNegativeInteger -}}OntologyProperty:DistanceToBelfast20280079762010-05-28T13:01:23Z{{DatatypeProperty -| rdfs:label@en = distance to Belfast -| rdfs:domain = Settlement -| rdfs:range = Length -}}OntologyProperty:DistanceToCapital2023271247532013-04-05T07:34:22Z{{DatatypeProperty -| rdfs:label@en = distance to capital -| rdfs:label@de = entfernung zur hauptstadt -| rdfs:label@it = distanza alla capitale -| rdfs:label@el = απόσταση από την πρωτεύουσα -| rdfs:label@pt = distância até a capital -| rdfs:domain = Settlement -| rdfs:range = Length -| rdfs:subPropertyOf = Distance -}}OntologyProperty:DistanceToCardiff202801212232012-12-27T20:47:19Z{{DatatypeProperty -| rdfs:label@en = distance to Cardiff -| rdfs:label@el = απόσταση από το Cardiff -| rdfs:domain = Settlement -| rdfs:range = Length -}}OntologyProperty:DistanceToCharingCross202213283652010-05-28T13:54:28Z{{DatatypeProperty -| rdfs:label@en = distance to Charing Cross -| rdfs:domain = Settlement -| rdfs:range = Length -}}OntologyProperty:DistanceToDouglas202802212242012-12-27T20:48:20Z{{DatatypeProperty -| rdfs:label@en = distance to Douglas -| rdfs:label@el = απόσταση από το Douglas -| rdfs:domain = Settlement -| rdfs:range = Length -}}OntologyProperty:DistanceToDublin2022131212252012-12-27T20:49:03Z{{DatatypeProperty -| rdfs:label@en = distance to Dublin -| rdfs:label@el = απόσταση από το Δουβλίνο -| rdfs:domain = Settlement -| rdfs:range = Length -}}OntologyProperty:DistanceToEdinburgh202803212262012-12-27T20:50:11Z{{DatatypeProperty -| rdfs:label@en = distance to Edinburgh -| rdfs:label@el = απόσταση από το Εδιμβούργο -| rdfs:domain = Settlement -| rdfs:range = Length -}}OntologyProperty:DistanceToLondon202804212272012-12-27T20:51:06Z{{DatatypeProperty -| rdfs:label@en = distance to London -| rdfs:label@el = απόσταση από το Λονδίνο -| rdfs:domain = Settlement -| rdfs:range = Length -}}OntologyProperty:DistanceToNearestCity20211783518392017-01-14T01:33:52Z{{DatatypeProperty -| rdfs:label@en = distance to nearest city -| rdfs:label@cs = vzdálenost k nejbližšímu městu -| rdfs:domain = Settlement -| rdfs:range = Length -}}OntologyProperty:DistanceTraveled202805336122014-04-03T15:35:27Z{{DatatypeProperty -| rdfs:label@en = distance traveled -| rdfs:label@de = Zurückgelegte Entfernung -| rdfs:label@nl = afgelegde afstand -| rdfs:domain = SpaceMission -| rdfs:range = Length -}}OntologyProperty:DistributingCompany202806360232014-07-08T13:13:33Z -{{ObjectProperty -| rdfs:label@en = distributing company -| rdfs:domain = RecordLabel -| rdfs:range = Company -| rdfs:subPropertyOf = dul:coparticipatesWith -}}OntologyProperty:DistributingLabel202807360242014-07-08T13:13:43Z -{{ObjectProperty -| rdfs:label@en = distributing label -| rdfs:domain = RecordLabel -| rdfs:range = RecordLabel -| rdfs:subPropertyOf = dul:coparticipatesWith -}}OntologyProperty:Distributor202808475652015-04-03T09:14:40Z{{ObjectProperty -| rdfs:label@en = distributor -| rdfs:label@fr = allumeur -| rdfs:range = Organisation -| rdfs:subPropertyOf = dul:coparticipatesWith -| owl:equivalentProperty = wikidata:P750 -}}OntologyProperty:District202809517612016-12-19T10:16:42Z -{{ObjectProperty -| labels = - {{label|en|district}} - {{label|nl|streek}} - {{label|pt|distrito}} - {{label|de|Bezirk}} - {{label|el|περιοχή}} - {{label|hi|जिला}} -| rdfs:range = PopulatedPlace -| rdfs:domain = Place -| owl:equivalentProperty = wikidata:P131 -| rdfs:subPropertyOf = dul:isPartOf -}}OntologyProperty:Division202810360272014-07-08T13:14:17Z -{{ObjectProperty -| labels = - {{label|en|division}} - {{label|nl|verdeling}} -| rdfs:subPropertyOf = dul:isPartOf -}}OntologyProperty:DockedTime20281179822010-05-28T13:02:13Z{{DatatypeProperty -| rdfs:label@en = docked time -| rdfs:domain = Spacecraft -| rdfs:range = Time -}}OntologyProperty:DoctoralAdvisor202813475662015-04-03T09:15:38Z{{ObjectProperty -| rdfs:label@en = doctoral advisor -| rdfs:label@de = Doktorvater -| rdfs:label@el = διδακτορικός_σύμβουλος -| rdfs:domain = Scientist -| rdfs:range = Person -| rdfs:subPropertyOf = dul:coparticipatesWith -| owl:equivalentProperty = wikidata:P184 -}}OntologyProperty:DoctoralStudent202814475672015-04-03T09:16:21Z{{ObjectProperty -| rdfs:label@en = doctoral student -| rdfs:label@de = Doktorand -| rdfs:label@el = διδακτορικοί_φοιτητές -| rdfs:label@nl = doctoraalstudent -| rdfs:domain = Scientist -| rdfs:range = Person -| rdfs:subPropertyOf = dul:coparticipatesWith -| owl:equivalentProperty = wikidata:P185 -}}OntologyProperty:DocumentDesignation2029129316152014-02-10T14:21:08Z{{DatatypeProperty -| rdfs:label@en = String designation of the WrittenWork describing the resource -| rdfs:label@nl = Aanduiding beschrijvend document -| rdfs:domain = owl:Thing -| rdfs:range = xsd:string -}}OntologyProperty:DocumentNumber2028411513212016-06-30T10:16:57Z{{ DatatypeProperty - | rdfs:comment@en = Identification a document within a particular registry - | rdfs:label@en = document number -| rdfs:label@de = Dokumentnummer - | rdfs:label@nl = documentnummer - | rdfs:domain = Document - | rdfs:range = xsd:string - | rdfs:subPropertyOf = -}}OntologyProperty:Domain202815360302014-07-08T13:14:41Z -{{ObjectProperty -| labels = - {{label|en|domain}} - {{label|nl|domein}} - {{label|ja|ドメイン_(分類学)}} -| rdfs:domain = Species -| rdfs:subPropertyOf = dul:specializes -}}OntologyProperty:DorlandsId20211902522852017-10-08T18:49:37Z{{DatatypeProperty -| labels = -{{label|en|DorlandsID}} -{{label|nl|DorlandsID}} -{{label|ja|DorlandsID}} -| rdfs:domain = AnatomicalStructure -| rdfs:range = xsd:string -}}OntologyProperty:DorlandsPrefix20281679842010-05-28T13:02:30Z{{DatatypeProperty -| rdfs:label@en = Dorlands prefix -| rdfs:domain = AnatomicalStructure -| rdfs:range = xsd:string -}}OntologyProperty:DorlandsSuffix20281779852010-05-28T13:02:39Z{{DatatypeProperty -| rdfs:label@en = Dorlands suffix -| rdfs:domain = AnatomicalStructure -| rdfs:range = xsd:string -}}OntologyProperty:Draft202818185032012-05-19T15:47:08Z{{DatatypeProperty -| rdfs:label@en = draft -| rdfs:label@de = Entwurf -| rdfs:range = xsd:string -}}OntologyProperty:DraftLeague2027683269552013-07-04T09:27:33Z{{DatatypeProperty -| labels = -{{label|en|draft league}} -| rdfs:domain = Athlete -| rdfs:range = xsd:string -}}OntologyProperty:DraftPick20281979872010-05-28T13:02:59Z{{DatatypeProperty -| rdfs:label@en = draft pick -| rdfs:domain = GridironFootballPlayer -| rdfs:range = xsd:string -}}OntologyProperty:DraftPosition2027668269362013-07-03T14:43:47Z{{DatatypeProperty -| labels = -{{label|en|draft position}} -| rdfs:range = xsd:nonNegativeInteger -| rdfs:domain = Athlete -}}OntologyProperty:DraftRound20282079882010-05-28T13:03:10Z{{DatatypeProperty -| rdfs:label@en = draft round -| rdfs:domain = GridironFootballPlayer -| rdfs:range = xsd:string -}}OntologyProperty:DraftTeam202821360312014-07-08T13:14:50Z -{{ObjectProperty -| rdfs:label@en = draft team -| rdfs:domain = Athlete -| rdfs:range = SportsTeam -| rdfs:subPropertyOf = dul:isMemberOf -}}OntologyProperty:DraftYear20282279892010-05-28T13:03:19Z{{DatatypeProperty -| rdfs:label@en = draft year -| rdfs:range = xsd:gYear -}}OntologyProperty:DrainsFrom202823360322014-07-08T13:14:58Z -{{ObjectProperty -| rdfs:label@en = drains from -| rdfs:domain = AnatomicalStructure -| rdfs:range = AnatomicalStructure -| rdfs:subPropertyOf = dul:hasCommonBoundary -}}OntologyProperty:DrainsTo202824360332014-07-08T13:15:06Z -{{ObjectProperty -| rdfs:label@en = drains to -| rdfs:domain = AnatomicalStructure -| rdfs:range = AnatomicalStructure -| rdfs:subPropertyOf = dul:hasCommonBoundary -}}OntologyProperty:Drama2026827360342014-07-08T13:15:14Z -{{ObjectProperty -| labels = - {{label|en|drama}} - {{label|de|Drama}} -| rdfs:domain = FictionalCharacter -| rdfs:range = Drama -| rdfs:subPropertyOf = dul:isParticipantIn -}}OntologyProperty:DressCode202252693172010-08-05T14:31:43Z{{DatatypeProperty -| rdfs:label@en = dress code -| rdfs:comment@en = The recommended dress code for an establishment or event. -| rdfs:domain = Restaurant -| rdfs:range = xsd:string -}}OntologyProperty:Drugbank202825191562012-07-31T19:18:39Z{{DatatypeProperty -| rdfs:label@en = DrugBank -| rdfs:label@ja = DrugBank -| rdfs:range = xsd:string -}}OntologyProperty:Drugs.com20211920523942017-10-15T12:18:36Z{{ObjectProperty -| labels = - {{label|en|drugs.com}} - {{label|de|drugs.com}} -| comments = - {{comment|en|external link to drug articles in the drugs.com website}} - {{comment|de|Verweist auf den drugs.com Artikel über ein Medikament.}} -| rdfs:domain = Drug -| rdfs:range = owl:Thing -}}OntologyProperty:DryCargo202826336262014-04-03T16:29:14Z{{DatatypeProperty -| rdfs:label@en = dry cargo -| rdfs:label@de = Trockenfracht -| rdfs:label@nl = droge last -| rdfs:domain = Spacecraft -| rdfs:range = Mass -}}OntologyProperty:Dubber2025204360352014-07-08T13:15:22Z -{{ObjectProperty -| rdfs:range = Person -| rdfs:domain = Person -| rdfs:label@en = dubber -| rdfs:comment@en = the person who dubs another person e.g. an actor or a fictional character in movies -| rdfs:subPropertyOf = dul:coparticipatesWith -}}OntologyProperty:Duration2025670528342018-02-08T20:17:33Z{{Merge|runtime}} - -{{DatatypeProperty -| labels = - {{label|en|duration}} - {{label|de|Dauer}} - {{label|nl|duur}} -| comments = - {{comment|en|The duration of the item (movie, audio recording, event, etc.) in ISO 8601 date format<ref name="schema:duration">http://schema.org/duration</ref>}} -| rdfs:domain = -| rdfs:range = Time -| owl:equivalentProperty = schema:duration -}} - -==References== -<references/>OntologyProperty:DutchArtworkCode20211710513112016-06-30T08:40:50Z{{DatatypeProperty -| labels = -{{label|en|Dutch artwork code}} -{{label|nl|code RKD}} -| rdfs:domain = Artwork -| rdfs:range = xsd:string -| rdfs:subPropertyOf = code -}}OntologyProperty:DutchCOROPCode2029122315862014-02-10T10:21:53Z{{DatatypeProperty -| labels = -{{label|en|Dutch COROP code}} -| rdfs:domain = Region -| rdfs:range = xsd:string -}}OntologyProperty:DutchMIPCode2026484237622013-02-18T09:20:38Z{{DatatypeProperty -| labels = -{{label|en|monument code for the Monuments Inventory Project}} -{{label|nl|monumentcode voor het Monumenten Inventarisatie Project}} -| comments = -{{comment|en|The Dutch MIP project was meant to take stock of all kinds of monuments }} -{{comment|nl|Code voor alle soorten monumenten gebezigd door het MI-project}} -| rdfs:domain = ArchitecturalStructure, Monument -| rdfs:range = xsd:string -| rdf:type = -| rdfs:subPropertyOf = Code -| owl:equivalentProperty = -}}OntologyProperty:DutchNAIdentifier20210246385302014-10-03T15:29:47Z{{DatatypeProperty -| labels = -{{label|en|Identifier for Duch National Archive}} - -{{label|nl|Code Nationaal Archief}} -| rdfs:domain = MemberResistanceMovement -| rdfs:range = xsd:string -| rdfs:subPropertyOf = code -}}OntologyProperty:DutchPPNCode20210194378282014-09-22T11:45:53Z{{DatatypeProperty -| rdfs:label@en = Dutch PPN code -| rdfs:domain = WrittenWork -| rdfs:range = xsd:string -| rdfs:subPropertyOf = code -| rdfs:comment@en = Dutch PPN code is a library cataloguing code for collection items (books, journals and the like). -| rdfs:comment@nl = Dutch PPN code is in de Nederlandse bibliotheekwereld een cataloguscode (PICA) voor items in de collectie. -}}OntologyProperty:DutchRKDCode2029277357362014-07-07T08:35:47Z{{DatatypeProperty -| labels = -{{label|en|Dutch RKD code}} -{{label|nl|Code Rijksbureau voor Kunsthistorische Documentatie}} -| rdfs:domain = Artist -| rdfs:range = xsd:string -}}OntologyProperty:DutchWinkelID20210195378292014-09-22T11:52:56Z{{DatatypeProperty -| rdfs:label@en = Dutch PPN code -| rdfs:domain = UndergroundJournal -| rdfs:range = xsd:string -| rdfs:subPropertyOf = code -| rdfs:comment@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. -| rdfs:comment@nl = Dutch Winkel ID is een code toegekend door Lydia Winkel in haar boek over De Ondergrondse Pers 1940-1945. -}}OntologyProperty:Dynasty2025636336282014-04-03T16:29:22Z{{ObjectProperty -| labels = -{{label|en|dynasty}} -{{label|de|Dynastie}} -{{label|nl|dynastie}} -| rdfs:range = owl:Thing -}}OntologyProperty:EMedicineSubject202833391462015-01-11T15:50:50Z{{DatatypeProperty -| labels = -{{label|en|eMedicine subject}} -{{label|nl|eMedicine onderwerp}} -| rdfs:domain = Disease -| rdfs:range = rdf:langString -}}OntologyProperty:EMedicineTopic202834391502015-01-11T15:59:56Z{{DatatypeProperty -| labels = -{{label|en|eMedicine topic}} -{{label|nl|eMedicine topic}} -|comments= -{{comment|en|Different from eMedicineSubject, which see}} -| rdfs:domain = Disease -| rdfs:range = rdf:langString -}}OntologyProperty:ETeatrId202247091642010-07-08T03:11:01Z{{DatatypeProperty -| rdfs:label@en = e-teatr.pl id -| rdfs:domain = Film -| rdfs:range = xsd:string -}}OntologyProperty:EastPlace20211084455972015-03-08T14:11:16Z{{ObjectProperty -| rdfs:label@en = east place -| rdfs:label@fr = lieu à l'est -| rdfs:comment@fr = indique un autre lieu situé à l'est. -| rdfs:comment@en = indicates another place situated east. -| rdfs:domain = Place -| rdfs:range = Place -| owl:inverseOf = westPlace -| rdfs:subPropertyOf = closeTo - -}}OntologyProperty:EcNumber202827475682015-04-03T09:17:41Z{{DatatypeProperty -| rdfs:label@en = EC number -| rdfs:label@ja = EC番号 -| rdfs:domain = Biomolecule -| rdfs:range = xsd:string -| owl:equivalentProperty = wikidata:P591 -}}OntologyProperty:Editing202828475092015-04-02T11:49:14Z{{ObjectProperty -| rdfs:label@en = editing -| rdfs:label@de = Bearbeitung -| rdfs:label@ga = eagarthóireacht -| rdfs:domain = Film -| rdfs:range = Person -| rdfs:subPropertyOf = dul:coparticipatesWith -| owl:equivalentProperty = wikidata:P1040 -}}OntologyProperty:Editor202829537512020-09-30T12:15:44Z{{ObjectProperty -| rdfs:label@en = editor -| rdfs:label@el = συντάκτης -| rdfs:label@de = Herausgeber -| rdfs:label@ga = eagarthóir -| rdfs:label@nl = redacteur -| rdfs:label@pl = redaktor -| rdfs:range = Agent -| rdfs:subPropertyOf = dul:coparticipatesWith -| owl:equivalentProperty = schema:editor, wikidata:P98, dblp2:editedBy -}}OntologyProperty:EditorTitle202830348322014-05-15T05:18:07Z{{DatatypeProperty -| rdfs:label@en = editor title -| rdfs:label@el = τίτλος συντάκτη -| rdfs:domain = Magazine -| rdfs:range = rdf:langString -}}OntologyProperty:Education202831475692015-04-03T09:18:55Z{{ObjectProperty -| labels = - {{label|en|education}} - {{label|de|Bildung}} - {{label|nl|opleiding}} - {{label|fr|éducation}} - {{label|ja|教育}} -| rdfs:domain = Person -| rdfs:subPropertyOf = dul:sameSettingAs -| owl:equivalentProperty = wikidata:P69 -}}OntologyProperty:EducationPlace2027757336312014-04-03T16:29:41Z{{ObjectProperty -| labels = -{{label|en|education place}} -{{label|de|Bildungsstätte}} -| rdfs:domain = Person -| rdfs:range = Place -}}OntologyProperty:EducationSystem2023136360392014-07-08T13:16:07Z -{{ObjectProperty -| rdfs:label@en = education system -| rdfs:domain = EducationalInstitution -| rdfs:subPropertyOf = dul:isPartOf -}}OntologyProperty:EffectiveRadiatedPower2022433126292011-05-03T14:43:08Z{{DatatypeProperty -| rdfs:label@en = effectiveRadiatedPower -| rdfs:domain = Broadcaster -| rdfs:range = Power -| rdfs:comment@en = In radio telecommunications, effective radiated power or equivalent radiated power (ERP) is a standardized theoretical measurement of radio frequency (RF) energy using the SI unit watts (http://en.wikipedia.org/wiki/Effective_radiated_power). -}}OntologyProperty:EgafdId2023299121752011-04-15T09:58:00Z{{DatatypeProperty -| rdfs:label@en = egafd id -| rdfs:label@el = egafd id -| rdfs:label@pt = código no egafd -| rdfs:domain = Film -| rdfs:range = xsd:string -}}OntologyProperty:EinecsNumber2028940475712015-04-03T09:19:34Z{{DatatypeProperty -| rdfs:label@en = EINECS number -| rdfs:range = xsd:string -| owl:equivalentProperty = wikidata:P232 -}}OntologyProperty:EkatteCode2025235453442015-02-15T14:25:20Z{{ DatatypeProperty -| labels = {{label|en|EKATTE code}} -| rdfs:domain = PopulatedPlace -| rdfs:range = xsd:string -| comments = - {{comment|en|Indexing code used by the Bulgarian National Statistical Institute to identify populated places}} - {{comment|bg|Единен класификатор на административно-териториалните и териториалните единици}} -| rdfs:subPropertyOf = codeSettlement -}}OntologyProperty:ElectionDate2022365184182012-05-19T14:46:27Z{{DatatypeProperty -| rdfs:label@en = election date -| rdfs:label@de = Wahltermin -| rdfs:domain = Person -| rdfs:range = xsd:date -}}OntologyProperty:ElectionDateLeader2023531126622011-05-06T12:19:50Z{{DatatypeProperty -| rdfs:label@en = election date leader -| rdfs:label@de = Wahldatum des Vorsitzenden -| rdfs:domain = Legislature -| rdfs:range = xsd:date -| rdfs:comment@en = The date that leader was elected. -}}OntologyProperty:ElectionMajority2022332103552010-11-10T14:10:10Z{{DatatypeProperty -| rdfs:label@en = election majority -| rdfs:comment@en = number of votes the office holder attained -| rdfs:range = xsd:nonNegativeInteger -}}OntologyProperty:ElementAbove2024605453042015-02-13T16:22:13Z{{ObjectProperty -| rdfs:label@en = element above -| rdfs:label@ru = элемент снизу -| rdfs:label@nl = hoger element -| rdfs:comment@en = element placed above current element in D.I.Mendeleev's table -| rdfs:comment@ru = Элемент снизу под текущим элементом в таблице Д.И.Менделеева -| rdfs:domain = owl:Thing -| rdfs:range = ChemicalSubstance -| rdfs:subPropertyOf = dul:sameSettingAs -}}OntologyProperty:ElementBlock20211023453102015-02-13T17:03:03Z{{DatatypeProperty -|labels= -{{label|en|element block}} -{{label|ca|bloc de la taula periòdica}} -{{label|de|Block des Periodensystems}} -{{label|pl|blok układu okresowego}} -{{label|ru|блок периодической таблицы}} -| comments = -{{comment|en|A block of the periodic table of elements is a set of adjacent groups.<ref>https://en.wikipedia.org/wiki/Block_(periodic_table)</ref>}} -{{comment|ca|La taula periòdica dels elements es pot dividir en blocs d'elements segons l'orbital que estiguen ocupant els electrons més externs<ref>https://ca.wikipedia.org/wiki/Bloc_de_la_taula_peri%C3%B2dica</ref>}} -{{comment|de|Als Block im Periodensystem werden chemische Elemente nach den energiereichsten Atomorbitalen ihrer Elektronenhülle zusammengefasst.<ref>https://de.wikipedia.org/wiki/Block_des_Periodensystems</ref>}} -{{comment|ru|совокупность химических элементов со сходным расположением валентных электронов в атоме.<ref>https://ru.wikipedia.org/wiki/%D0%91%D0%BB%D0%BE%D0%BA_%D0%BF%D0%B5%D1%80%D0%B8%D0%BE%D0%B4%D0%B8%D1%87%D0%B5%D1%81%D0%BA%D0%BE%D0%B9_%D1%82%D0%B0%D0%B1%D0%BB%D0%B8%D1%86%D1%8B</ref>}} -| rdfs:domain = ChemicalElement -| rdfs:range = xsd:string -}} - -<references/>OntologyProperty:ElementGroup20211022453082015-02-13T16:45:16Z{{DatatypeProperty -|labels= -{{label|en|element group}} -{{label|ca|grup de la taula periòdica}} -{{label|de|Gruppe des Periodensystems}} -{{label|ga|grúpa an tábla pheiriadaigh}} -{{label|pl|grupa układu okresowego}} -{{label|ru|группа периодической системы}} -| comments = -{{comment|en|In chemistry, a group (also known as a family) is a column of elements in the periodic table of the chemical elements. <ref>https://en.wikipedia.org/wiki/Group_(periodic_table)</ref>}} -{{comment|ca|Un grup d'elements equival a una columna de la taula periòdica.<ref>https://ca.wikipedia.org/wiki/Grup_de_la_taula_peri%C3%B2dica</ref>}} -{{comment|de|Unter einer Gruppe des Periodensystems versteht man in der Chemie jede Spalte des Periodensystems.<ref>https://de.wikipedia.org/wiki/Gruppe_des_Periodensystems</ref>}} -{{comment|ga|Séard atá i gceist le grúpa sa choimhthéacs seo ná colún ceartingearach i dtábla peiriadach na ndúl ceimiceach.<ref>https://ga.wikipedia.org/wiki/Gr%C3%BApa%C3%AD_an_t%C3%A1bla_pheiriadaigh</ref>}} -{{comment|pl|grupa jest pionową kolumną w układzie okresowym pierwiastków chemicznych.<ref>https://pl.wikipedia.org/wiki/Grupa_uk%C5%82adu_okresowego</ref>}} -{{comment|ru|последовательность атомов по возрастанию заряда ядра, обладающих однотипным электронным строением.<ref>https://ru.wikipedia.org/wiki/%D0%93%D1%80%D1%83%D0%BF%D0%BF%D0%B0_%D0%BF%D0%B5%D1%80%D0%B8%D0%BE%D0%B4%D0%B8%D1%87%D0%B5%D1%81%D0%BA%D0%BE%D0%B9_%D1%81%D0%B8%D1%81%D1%82%D0%B5%D0%BC%D1%8B</ref>}} -| rdfs:domain = ChemicalElement -| rdfs:range = xsd:nonNegativeInteger -}} - -<references/>OntologyProperty:ElementPeriod20211024453152015-02-13T17:35:20Z{{DatatypeProperty -|labels= -{{label|en|element period}} -{{label|ca|període de la taula periòdica}} -{{label|de|Periode des Periodensystems}} -{{label|ga|peiriad an tábla pheiriadaigh}} -{{label|pl|okres układu okresowego}} -{{label|ru|период периодической таблицы}} -| comments = -{{comment|en|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.<ref>https://en.wikipedia.org/wiki/Period_(periodic_table)</ref>}} -{{comment|ca|En la taula periòdica dels elements, un període és una filera de la taula<ref>https://ca.wikipedia.org/wiki/Per%C3%ADode_de_la_taula_peri%C3%B2dica</ref>}} -{{comment|de|Unter einer Periode des Periodensystems versteht man in der Chemie jede Zeile des Periodensystems der Elemente.<ref>https://de.wikipedia.org/wiki/Periode_des_Periodensystems</ref>}} -{{comment|ru|строка периодической системы химических элементов, последовательность атомов по возрастанию заряда ядра и заполнению электронами внешней электронной оболочки.<ref>https://ru.wikipedia.org/wiki/%D0%9F%D0%B5%D1%80%D0%B8%D0%BE%D0%B4_%D0%BF%D0%B5%D1%80%D0%B8%D0%BE%D0%B4%D0%B8%D1%87%D0%B5%D1%81%D0%BA%D0%BE%D0%B9_%D1%81%D0%B8%D1%81%D1%82%D0%B5%D0%BC%D1%8B</ref>}} -| rdfs:domain = ChemicalElement -| rdfs:range = xsd:nonNegativeInteger -}} - -<references/>OntologyProperty:Elevation202832538082020-12-01T18:03:02Z{{DatatypeProperty -| labels = -{{label|el|υψόμετρο}} -{{label|en|elevation}} -{{label|de|Höhe}} -{{label|es|altitud}} -{{label|fr|altitude}} -{{label|nl|hoogte}} -{{label|pt|altitude}} -{{label|hi|ऊँचाई}} -| rdfs:domain = Place -| rdfs:range = Length -| rdfs:comment@en = average elevation above the sea level -| rdfs:comment@pt = altitude média acima do nível do mar -| owl:equivalentProperty=wikidata:P2044 -}}OntologyProperty:ElevationQuote2027090256142013-05-26T13:33:06Z{{DatatypeProperty -| labels = -{{label|en|elevation quote}} -| rdfs:domain = Place -| rdfs:range = xsd:string -}}OntologyProperty:ElevatorCount2026425234632013-01-22T12:49:56Z{{DatatypeProperty -| labels = -{{label|en|elevator count}} -{{label|de|Aufzüge}} -| rdfs:domain = Building -| rdfs:range = xsd:nonNegativeInteger -}}OntologyProperty:Elo2025688475722015-04-03T09:20:29Z{{ DatatypeProperty - - | rdfs:label@en = ELO rating - | rdfs:domain = ChessPlayer - | rdfs:range = xsd:nonNegativeInteger - | owl:equivalentProperty = wikidata:P1087 -}}OntologyProperty:EloRecord2025689181542012-05-05T19:49:32Z{{ DatatypeProperty - - | rdfs:label@en = maximum ELO rating - | rdfs:domain = ChessPlayer - | rdfs:range = xsd:nonNegativeInteger - -}}OntologyProperty:Emblem2027307475732015-04-03T09:21:12Z{{DatatypeProperty -| labels = -{{label|en|emblem}} -| rdfs:domain = PopulatedPlace -| rdfs:range = xsd:string -| owl:equivalentProperty = wikidata:P158 -}}OntologyProperty:EmmyAward202835360412014-07-08T13:16:24Z -{{ObjectProperty -| rdfs:label@en = Emmy Award -| rdfs:label@de = Emmy Award -| rdfs:domain = Artist -| rdfs:range = Award -| rdfs:subPropertyOf = dul:coparticipatesWith -}}OntologyProperty:Employer202836360422014-07-08T13:16:32Z -{{ObjectProperty -| rdfs:label@en = employer -| rdfs:label@de = Arbeitgeber -| rdfs:label@ja = 雇用者 -| rdfs:label@el = θέσεις_εργασίας -| rdfs:domain = Person -| rdfs:range = Organisation -| owl:equivalentProperty = wikidata:P108 -| rdfs:subPropertyOf = dul:isMemberOf -}}OntologyProperty:EmployersCelebration2026853492152015-10-15T07:14:48Z{{DatatypeProperty -| labels = -{{label|en|employer's celebration}} -| rdfs:domain = Settlement -| rdfs:range = xsd:string -}}OntologyProperty:End20211916524562017-10-15T19:27:31Z{{DatatypeProperty -| labels = -{{label|en|end}} -{{label|de|Ende}} -| rdfs:range = xsd:date -| rdfs:domain = TimePeriod -}}OntologyProperty:EndCareer2027553267652013-07-01T14:39:51Z{{DatatypeProperty -| labels = -{{label|en|end career}} -| rdfs:domain = Person -| rdfs:range = xsd:string -}}OntologyProperty:EndDate202837536942020-09-04T15:19:05Z{{DatatypeProperty -| labels = - {{label|en|end date}} -{{label|de|Enddatum}} - {{label|nl|einddatum}} - {{label|fr|date de fin}} - {{label|es|fecha de fin}} -| rdfs:domain = Event -| rdfs:range = xsd:date -| rdfs:subPropertyOf = schema:endDate, ceo:einddatum -| owl:equivalentProperty = wikidata:P582 -| rdfs:comment@en = The end date of the event. -}}OntologyProperty:EndDateTime20210294387992014-12-02T10:50:43Z{{DatatypeProperty -| labels = - {{label|en|end date and time}} - {{label|nl|datum en tijd van einde}} -| rdfs:domain = Event -| rdfs:range = xsd:dateTime -| rdfs:comment@en = The end date and time of the event. -}}OntologyProperty:EndOccupation2027792273742013-07-10T14:37:11Z{{DatatypeProperty -| labels = -{{label|en|end occupation}} -| rdfs:range = xsd:string -}}OntologyProperty:EndPoint202840523812017-10-14T19:35:40Z -{{ObjectProperty -| rdfs:label@en = end point -| rdfs:label@de = Endpunkt -| rdfs:label@el = σημείο_τέλους -| rdfs:domain = Place -| rdfs:range = Place -| rdfs:subPropertyOf = dul:hasCommonBoundary -}}OntologyProperty:EndReign2027550271722013-07-09T09:22:30Z{{ObjectProperty -| labels = -{{label|en|end reign}} -| rdfs:domain = Person -| rdfs:range = skos:Concept -}}OntologyProperty:EndYear2027173520052017-03-22T20:14:33Z{{DatatypeProperty -| labels = -{{label|en|end year}} -{{label|de|Startjahr}} -| rdfs:range = xsd:gYear -}}OntologyProperty:EndYearOfInsertion20284179992010-05-28T13:04:53Z{{DatatypeProperty -| rdfs:label@en = end year of insertion -| rdfs:domain = AutomobileEngine -| rdfs:range = xsd:gYear -}}OntologyProperty:EndYearOfSales20284280002010-05-28T13:05:00Z{{DatatypeProperty -| rdfs:label@en = end year of sales -| rdfs:domain = Sales -| rdfs:range = xsd:gYear -}}OntologyProperty:EndangeredSince2023304336392014-04-03T16:30:15Z{{DatatypeProperty -| rdfs:label@en = endangered since -| rdfs:label@de = gefährdet seit -| rdfs:label@pt = em perigo desde -| rdfs:domain = Place -| rdfs:range = xsd:date -}}OntologyProperty:EndingTheme202838360442014-07-08T13:16:52Z{{DisclaimerOntologyProperty}} - - -{{ObjectProperty -| rdfs:label@en = ending theme -| rdfs:domain = TelevisionShow -| rdfs:range = Work -| rdfs:subPropertyOf = dul:coparticipatesWith -}}OntologyProperty:Endowment202839336882014-04-03T16:33:59Z{{DatatypeProperty -| rdfs:label@en = endowment -| rdfs:domain = Organisation -| rdfs:range = Currency -}}OntologyProperty:Enemy2026831360452014-07-08T13:16:59Z -{{ObjectProperty -| labels = - {{label|en|enemy}} - {{label|de|Feind}} -| rdfs:domain = FictionalCharacter -| rdfs:range = Species -| rdfs:subPropertyOf = dul:coparticipatesWith -}}OntologyProperty:Engine202843360462014-07-08T13:17:07Z -{{ObjectProperty -| rdfs:label@en = engine -| rdfs:label@de = Motor -| rdfs:label@el = μηχανή -| rdfs:label@pt = motor -| rdfs:domain = Automobile -| rdfs:range = AutomobileEngine -| rdfs:subPropertyOf = dul:hasComponent -}}OntologyProperty:EnginePower20211094456282015-03-11T11:52:25Z{{DatatypeProperty -| rdfs:label@en = engine power -| rdfs:label@nl = motorvermogen -| rdfs:comment@en = Power to be expressed in Watts (kiloWatt, megaWatt) -| rdfs:domain = MeanOfTransportation -| rdfs:range = xsd:positiveInteger -}}OntologyProperty:EngineType2022538360472014-07-08T13:17:16Z -{{ObjectProperty -| rdfs:label@en = engine type -| rdfs:domain = MeanOfTransportation -| rdfs:subPropertyOf = dul:isClassifiedBy -}}OntologyProperty:Engineer202844360482014-07-08T13:17:24Z -{{ObjectProperty -| labels = - {{label|en|engineer}} - {{label|nl|ingenieur}} - {{label|de|Ingenieur}} - {{label|el|μηχανικός}} -| rdfs:range = Person -| rdfs:subPropertyOf = dul:coparticipatesWith -}}OntologyProperty:Ensembl2025030191272012-07-31T11:10:58Z{{ DatatypeProperty -| rdfs:label@en = ensemble -| rdfs:label@ja = ensemble -| rdfs:domain = Biomolecule -| rdfs:range = xsd:string -}}OntologyProperty:EnshrinedDeity2026670360492014-07-08T13:17:33Z -{{ObjectProperty -| rdfs:label@en = enshrined deity -| rdfs:label@ja = 祭神 -| rdfs:domain = Shrine -| rdfs:range = Deity -| rdfs:subPropertyOf = dul:isLocationOf -}}OntologyProperty:Entourage2026822360502014-07-08T13:17:43Z -{{ObjectProperty -| labels = - {{label|en|entourage}} - {{label|de|Gefolge}} -| rdfs:domain = FictionalCharacter -| rdfs:range = Species -| rdfs:subPropertyOf = dul:sameSettingAs -}}OntologyProperty:Entrezgene202845191262012-07-31T11:10:45Z{{DatatypeProperty -| rdfs:label@en = EntrezGene -| rdfs:label@ja = EntrezGene -| rdfs:domain = Biomolecule -| rdfs:range = xsd:string -}}OntologyProperty:Eparchy20211236478562015-05-07T14:25:34Z{{ObjectProperty -| rdfs:label@en = eparchy -| rdfs:label@bg = епархия -| rdfs:label@el = metropoleis -| rdfs:domain = ReligiousBuilding -| rdfs:comment@en = Compare with bishopric -}}OntologyProperty:Episode2026830336452014-04-03T16:30:39Z{{DatatypeProperty -| labels = -{{label|en|episode}} -{{label|de|Folge}} -| rdfs:domain = FictionalCharacter -| rdfs:range = xsd:string -}}OntologyProperty:EpisodeNumber2022106136612011-06-14T14:19:27Z{{DatatypeProperty -| rdfs:label@en = episode number -| rdfs:domain = TelevisionEpisode -| rdfs:range = xsd:nonNegativeInteger -| owl:equivalentProperty = schema:episodeNumber -| rdfs:comment@en = The episode number of the TelevisionEpisode. -}}OntologyProperty:Epoch2024357146722011-07-29T13:21:55Z{{DatatypeProperty - |rdfs:label@en=epoch - |rdfs:comment@en=moment in time used as a referrence point for some time-vaying astronomical quantity - |rdfs:domain=Planet - |rdfs:range=xsd:string -}}OntologyProperty:EptFinalTable2028044281992013-09-03T18:18:00Z{{DatatypeProperty -| labels = -{{label|en|ept final table}} -| rdfs:domain = PokerPlayer -| rdfs:range = xsd:nonNegativeInteger -}}OntologyProperty:EptItm2028045282002013-09-03T18:18:16Z{{DatatypeProperty -| labels = -{{label|en|ept itm}} -| rdfs:domain = PokerPlayer -| rdfs:range = xsd:nonNegativeInteger -}}OntologyProperty:EptTitle2028043281982013-09-03T18:17:42Z{{DatatypeProperty -| labels = -{{label|en|ept title}} -| rdfs:domain = PokerPlayer -| rdfs:range = xsd:string -}}OntologyProperty:Equipment2022303466262015-03-20T08:26:40Z{{ObjectProperty -| labels = - {{label|en|equipment}} - {{label|de|Ausrüstung}} - {{label|el|εξοπλισμός}} - {{label|nl|uitrusting}} -| rdfs:domain = Activity -| rdfs:subPropertyOf = dul:hasParticipant -}}OntologyProperty:Equity202847336472014-04-03T16:30:46Z{{DatatypeProperty -| rdfs:label@en = equity -| rdfs:label@de = Gerechtigkeit -| rdfs:domain = Company -| rdfs:range = Currency -}}OntologyProperty:Era2022309360522014-07-08T13:18:12Z -{{ObjectProperty -| rdfs:label@en = era -| rdfs:label@el = εποχή -| rdfs:domain = owl:Thing -| rdfs:subPropertyOf = dul:isDescribedBy -}}OntologyProperty:Eruption2027062336482014-04-03T16:30:50Z{{DatatypeProperty -| labels = -{{label|en|eruption}} -{{label|de|Ausbruch}} -| rdfs:domain = Island -| rdfs:range = xsd:string -}}OntologyProperty:EruptionYear2022418252052013-05-16T13:18:41Z{{DatatypeProperty -| rdfs:label@en = eruption date -| rdfs:label@de = Jahr des letzten Ausbruchs -| rdfs:label@nl = jaar uitbarsting -| rdfs:domain = Volcano -| rdfs:range = xsd:gYear -}}OntologyProperty:Escalafon2027838271542013-07-05T16:09:17Z{{DatatypeProperty -| labels = -{{label|en|escalafon}} -| rdfs:domain = Person -| rdfs:range = xsd:string -}}OntologyProperty:EscapeVelocity2024359146752011-07-29T14:46:30Z{{DatatypeProperty - |rdfs:label@en=escape velocity - |rdfs:domain=Planet - |rdfs:range=Speed -}}OntologyProperty:EspnId20284880042010-05-28T13:05:30Z{{DatatypeProperty -| rdfs:label@en = ESPN id -| rdfs:domain = Athlete -| rdfs:range = xsd:integer -}}OntologyProperty:Established2026161336492014-04-03T16:30:54Z{{DatatypeProperty -| rdfs:label@en = Established -| rdfs:label@de = etabliert -| rdfs:domain = ChristianDoctrine -| rdfs:range = xsd:string -}}OntologyProperty:Establishment2026164337192014-04-03T16:41:01Z{{DatatypeProperty -| rdfs:label@en = Establishment -| rdfs:domain = ChristianDoctrine -| rdfs:range = xsd:integer -| rdfs:label@el = ίδρυση - }}OntologyProperty:EthnicGroup202851360532014-07-08T13:18:20Z -{{ObjectProperty -| rdfs:label@en = ethnic group -| rdfs:label@de = ethnie -| rdfs:label@it = etnia -| rdfs:domain = PopulatedPlace -| rdfs:range = EthnicGroup -| rdfs:subPropertyOf = dul:isLocationOf -}}OntologyProperty:EthnicGroupsInYear20285280052010-05-28T13:05:38Z{{DatatypeProperty -| rdfs:label@en = ethnic groups in year -| rdfs:range = xsd:gYear -}}OntologyProperty:Ethnicity202853360542014-07-08T13:18:28Z -{{ObjectProperty -| labels = - {{label|en|ethnicity}} - {{label|el|εθνότητα}} - {{label|de|ethnische zugehörigkeit }} - {{label|it|etnia}} -| comments = - {{comment|el|Μία ορισμένη κοινωνική κατηγορία ανθρώπων που έχουν κοινή καταγωγή ή εμπειρίες.}} -| rdfs:domain = Person -| rdfs:range = EthnicGroup -| owl:equivalentProperty = wikidata:P172 -| rdfs:subPropertyOf = dul:isMemberOf -}}OntologyProperty:EurobabeIndexId2023302121782011-04-15T10:20:21Z{{DatatypeProperty -| rdfs:label@en = eurobabe index id -| rdfs:label@el = eurobabeindex id -| rdfs:label@pt = código no eurobabeindex -| rdfs:domain = Film -| rdfs:range = xsd:string -}}OntologyProperty:EuropeanAffiliation2023343528402018-02-08T20:29:57Z{{ObjectProperty -| labels = - {{label|en|european affiliation}} - {{label|pt|afiliacao europeia}} -| rdfs:domain = PoliticalParty -| rdfs:subPropertyOf = -}}OntologyProperty:EuropeanChampionship2028055336522014-04-03T16:31:06Z{{DatatypeProperty -| labels = -{{label|en|european championship}} -{{label|de|Europameisterschaft}} -| rdfs:domain = Athlete -| rdfs:range = xsd:string -}}OntologyProperty:EuropeanParliamentGroup2023344360562014-07-08T13:18:45Z -{{ObjectProperty -| rdfs:label@en = european parliament group -| rdfs:label@pt = grupo parlamentar europeu -| rdfs:domain = PoliticalParty -| rdfs:subPropertyOf = dul:isMemberOf -}}OntologyProperty:EuropeanUnionEntranceDate2023330122132011-04-15T13:12:21Z{{DatatypeProperty -| rdfs:label@en = european union entrance date -| rdfs:label@pt = data de entrada na uniao europeia -| rdfs:domain = Country -| rdfs:range = xsd:date -}}OntologyProperty:Event202854536952020-09-04T15:20:30Z{{ObjectProperty -| rdfs:label@en = event -| rdfs:label@de = Veranstaltung -| rdfs:label@pt = evento -| rdfs:range = Event -| rdfs:subPropertyOf = dul:hasParticipant -| owl:equivalentProperty = schema:event, ceo:heeftGebeurtenis -}}OntologyProperty:EventDate2027178537952020-10-26T23:31:17Z{{DatatypeProperty -| labels = -{{label|en|event date}} -{{label|de|Veranstaltungstermin}} -| rdfs:domain = Place -| rdfs:range = xsd:date -| owl:equivalentProperty = gnd:dateOfConferenceOrEvent -}}OntologyProperty:EventDescription20211318488012015-09-05T20:10:21Z{{DatatypeProperty -| labels = -{{label|en|event description}} -{{label|nl|beschrijving gebeurtenis}} -| rdfs:domain = HistoricPlace -| rdfs:range = xsd:string -| rdfs:comment = This is to describe the event that hapened here (in case there is no event resource to be linked to) -}}OntologyProperty:ExecutiveHeadteacher202855360582014-07-08T13:19:13Z -{{ObjectProperty -| rdfs:label@en = executive headteacher -| rdfs:domain = School -| rdfs:range = Person -| rdfs:subPropertyOf = dul:coparticipatesWith -}}OntologyProperty:ExecutiveProducer202856360592014-07-08T13:19:21Z -{{ObjectProperty -| rdfs:label@en = executive producer -| rdfs:label@de = Ausführender Produzent -| rdfs:range = Person -| rdfs:subPropertyOf = dul:coparticipatesWith -}}OntologyProperty:Exhibition20210401393432015-01-16T20:20:54Z{{DatatypeProperty -| comments= -{{comment|en|Notes about an exhibition the object has been to}} -| labels= -{{label|en|exhibition}} -| rdfs:domain = owl:Thing -| rdfs:range = xsd:string -}}OntologyProperty:Existence2027934336562014-04-03T16:31:22Z{{ObjectProperty -|labels = - {{label|en|existence}} -{{label|de|Existenz}} - {{label|el|είναι}} -|comments = - {{comment|el|Το είναι αντικατοπτρίζει αυτό που υπάρχει.}} -| rdfs:range = owl:Thing -}}OntologyProperty:Expedition2027631336572014-04-03T16:31:26Z{{DatatypeProperty -| labels = -{{label|en|expedition}} -{{label|de|Expedition}} -| rdfs:domain = Person -| rdfs:range = xsd:string -}}OntologyProperty:Explorer2024443360602014-07-08T13:19:30Z -{{ObjectProperty -| rdfs:label@en = explorer -| rdfs:label@de = Erforscher -| rdfs:label@tr = kaşif -| rdfs:range = owl:Thing -| rdfs:domain = Galaxy -| rdfs:subPropertyOf = dul:coparticipatesWith -}}OntologyProperty:ExternalOrnament2027561267732013-07-01T14:44:43Z{{DatatypeProperty -| labels = -{{label|en|external ornament}} -| rdfs:domain = Person -| rdfs:range = xsd:string -}}OntologyProperty:ExtinctionDate202857523052017-10-09T12:29:41Z{{DatatypeProperty -| labels = -{{label|en|extinction date}} -{{label|nl|ontbindingsdatum}} -| rdfs:comment@en = !!! Do NOT use this property for non Species related dates!!! - Date when an Organization (eg PoliticalParty, Company) or Species ceased to exist -| rdfs:range = xsd:date -}}OntologyProperty:ExtinctionYear202858523062017-10-09T12:30:38Z{{DatatypeProperty -| rdfs:label@en = extinction year -| rdfs:domain = Species -| rdfs:range = xsd:gYear -| rdfs:comment@en = !!! Do NOT use this property for non Species related dates!!! - Year this species went extinct. -}}OntologyProperty:EyeColor2023292528392018-02-08T20:28:26Z{{DatatypeProperty -| rdfs:label@en = eye color -| rdfs:label@el = χρώμα ματιού -| rdfs:label@de = Augenfarbe -| rdfs:label@ga = dath súile -| rdfs:label@pl = kolor oczu -| rdfs:label@pt = cor dos olhos -| rdfs:domain = Person -| rdfs:range = xsd:string -| rdfs:subPropertyOf = -| owl:equivalentProperty = wikidata:P1340 -}}OntologyProperty:EyeColour2027749336592014-04-03T16:31:32Z{{DatatypeProperty -| labels = -{{label|en|eye colour}} -{{label|de|Augenfarbe}} -| rdfs:domain = Person -| rdfs:range = xsd:string -}}OntologyProperty:Eyes2026814336602014-04-03T16:31:36Z{{DatatypeProperty -| labels = - {{label|en|eyes}} -{{label|de|Augen}} - {{label|el|μάτια}} - {{label|nl| ogen}} -| comments = - {{comment|el|Μάτι ονομάζεται το αισθητήριο όργανο της όρασης των ζωντανών οργανισμών.}} -| rdfs:domain = FictionalCharacter -| rdfs:range = xsd:string -}}OntologyProperty:FaaLocationIdentifier202215983722010-05-28T13:55:33Z{{DatatypeProperty -| rdfs:label@en = FAA Location Identifier -| rdfs:domain = Airport -| rdfs:range = xsd:string -}}OntologyProperty:FacilityId202859353622014-06-18T22:37:53Z{{DatatypeProperty -| rdfs:label@en = facility id -| rdfs:label@it = identificativo dell'impianto -| rdfs:domain = RadioStation -| rdfs:range = xsd:integer -}}OntologyProperty:FacultySize202860103672010-11-10T14:25:18Z{{DatatypeProperty -| rdfs:label@en = faculty size -| rdfs:comment@en = number of faculty members -| rdfs:domain = EducationalInstitution -| rdfs:range = xsd:nonNegativeInteger -}}OntologyProperty:FailedLaunches202861103682010-11-10T14:25:27Z{{DatatypeProperty -| rdfs:label@en = failed launches -| rdfs:range = xsd:nonNegativeInteger -}}OntologyProperty:Family202862360622014-07-08T13:19:46Z -{{ObjectProperty -| labels = - {{label|en|family}} - {{label|nl|familie}} - {{label|de|familie}} - {{label|el|οικογένεια}} - {{label|fr|famille}} - {{label|pl|rodzina}} - {{label|ja|科_(分類学)}} -| rdfs:domain = Species -| rdfs:range = Species -| owl:equivalentProperty = wikidata:P71 -| rdfs:subPropertyOf = dul:specializes -}}OntologyProperty:FamilyMember2029294336612014-04-03T16:31:40Z{{ObjectProperty -|labels = -{{label|en|family member}} -{{label|de|Familienmitglied}} -{{label|nl|familielid}} -| rdfs:domain = Family -| rdfs:range = Person -}}OntologyProperty:Fansgroup20286380112010-05-28T13:06:23Z{{DatatypeProperty -| rdfs:label@en = fansgroup -| rdfs:domain = SoccerClub -| rdfs:range = xsd:string -}}OntologyProperty:FareZone2023248120722011-04-08T10:49:33Z{{DatatypeProperty -| rdfs:label@en = fare zone -| rdfs:label@de = Tarifzone -| rdfs:domain = Station -| rdfs:range = xsd:string -| rdfs:comment@en = The fare zone in which station is located. -| rdfs:comment@de = Die Tarifzone zu der die Station gehört. -}}OntologyProperty:FastestDriver202864360632014-07-08T13:19:54Z -{{ObjectProperty -| rdfs:label@en = fastest driver -| rdfs:label@de = schnellster Fahrer -| rdfs:label@el = ταχύτερος οδηγός -| rdfs:domain = GrandPrix -| rdfs:range = Person -| rdfs:subPropertyOf = dul:hasParticipant -}}OntologyProperty:FastestDriverCountry202865360642014-07-08T13:20:03Z{{DisclaimerOntologyProperty}} - - -{{ObjectProperty -| rdfs:label@en = fastest driver country -| rdfs:label@de = schnellster Fahrer Land -| rdfs:domain = GrandPrix -| rdfs:range = Country -| rdfs:subPropertyOf = dul:hasParticipant -}}OntologyProperty:FastestDriverTeam202866360652014-07-08T13:20:18Z -{{ObjectProperty -| rdfs:label@en = fastest driver team -| rdfs:label@el = ομάδα ταχύτερου οδηγού -| rdfs:label@de = schnellster Fahrer Team -| rdfs:domain = GrandPrix -| rdfs:range = SportsTeam -| rdfs:subPropertyOf = dul:hasParticipant -}}OntologyProperty:FastestLap202867348002014-05-14T10:46:04Z{{DatatypeProperty -| rdfs:label@en = fastest lap -| rdfs:label@el = ταχύτερος γύρος -| rdfs:label@de = schnellste Runde -| rdfs:domain = FormulaOneRacer -| rdfs:range = xsd:nonNegativeInteger -}}OntologyProperty:Fat20211301487592015-08-13T10:12:58Z{{DatatypeProperty -| labels = -{{label|en|fat}} -| rdfs:domain = Food -| rdfs:range = Mass -| comments = -{{comment|en|Amount of fat per servingSize of a Food}} -}}OntologyProperty:FatalityRate20212302536162020-04-10T06:32:56Z{{DatatypeProperty -| labels = -{{label|en|Fatality Rate}} -| rdfs:comment@en = Number of deaths from pandemic compared to the total number of people diagnosed. -| rdfs:domain = Outbreak -| rdfs:range = xsd:integer -}}OntologyProperty:Fate202868357022014-06-30T21:30:47Z{{DatatypeProperty -| rdfs:label@en = fate -| rdfs:label@de = Schicksal -| rdfs:domain = Company -| rdfs:range = rdf:langString -}}OntologyProperty:Father2027545535842020-01-30T11:12:13Z{{ObjectProperty -| labels = - {{label|en|father}} - {{label|de|Vater}} -| rdfs:domain = Man -| rdfs:range = Person -| rdfs:subPropertyOf = dul:sameSettingAs -| owl:equivalentProperty = wikidata:P22 -}}OntologyProperty:Fauna2027147336682014-04-03T16:32:07Z{{DatatypeProperty -| labels = -{{label|en|fauna}} -{{label|de|Fauna}} -{{label|nl|fauna}} -| rdfs:domain = Place -| rdfs:range = xsd:string -}}OntologyProperty:Fc202870107902011-01-14T22:58:09Z{{DatatypeProperty -| rdfs:label@en = FC -| rdfs:label@fr = FC -| rdfs:domain = Cricketer -| rdfs:range = xsd:nonNegativeInteger -}}OntologyProperty:FcRuns202871103642010-11-10T14:22:38Z{{DatatypeProperty -| rdfs:label@en = FC runs -| rdfs:domain = Cricketer -| rdfs:range = xsd:nonNegativeInteger -}}OntologyProperty:FdaUniiCode2025854528732018-02-13T10:37:51Z{{DatatypeProperty -| rdfs:label@en = FDA UNII code -| rdfs:label@pt = código FDA UNII -| rdfs:comment@en = FDA Unique Ingredient Identifier (UNII) code for a DBpedia Drug -| rdfs:domain = owl:Thing -| rdfs:range = xsd:string -| rdfs:subPropertyOf = code -}}OntologyProperty:FeastDay202872433252015-02-06T13:49:36Z{{DatatypeProperty -| labels = -{{label|en|feast day, holiday}} -{{label|de|Festtag}} -{{label|nl|feestdag}} -| rdfs:comment@en = A day of celebration associated with the entity. Applies to Saint, School etc -| rdfs:range = xsd:date -}}OntologyProperty:Feat2027557267692013-07-01T14:42:27Z{{DatatypeProperty -| labels = -{{label|en|feat}} -| rdfs:domain = Person -| rdfs:range = xsd:string -}}OntologyProperty:Feature2026816251632013-05-09T10:07:16Z{{DatatypeProperty -| labels = -{{label|en|feature}} -| rdfs:domain = FictionalCharacter -| rdfs:range = xsd:string -}}OntologyProperty:Features2026013360672014-07-08T13:20:33Z -{{ObjectProperty -| labels = - {{label|en|features}} - {{label|el|χαρακτηριστικό}} - {{label|nl|kenmerk}} -| rdfs:domain = ArchitecturalStructure -| rdfs:range = Work -| rdfs:comment@en = -| rdfs:subPropertyOf = dul:hasPart -}}OntologyProperty:FedCup2027740270222013-07-04T13:13:50Z{{DatatypeProperty -| labels = -{{label|en|fed cup}} -| rdfs:domain = Athlete -| rdfs:range = xsd:string -}}OntologyProperty:FederalState202873360682014-07-08T13:20:42Z -{{ObjectProperty -| labels = - {{label|de|Bundesland}} - {{label|en|federal state}} - {{label|nl|provincie}} -| rdfs:domain = Settlement -| rdfs:range = PopulatedPlace -| rdfs:subPropertyOf = dul:isPartOf -}}OntologyProperty:Federation2027599336702014-04-03T16:32:15Z{{ObjectProperty -| labels = -{{label|en|federation}} -{{label|de|Verband}} -| rdfs:domain = Person -| rdfs:range = Organisation -}}OntologyProperty:Fees202874336712014-04-03T16:32:18Z{{DatatypeProperty -| rdfs:label@en = fees -| rdfs:label@de = Gebühren -| rdfs:label@el = δίδακτρα -| rdfs:domain = School -| rdfs:range = Currency -}}OntologyProperty:Fibahof2027677269472013-07-04T08:02:28Z{{DatatypeProperty -| labels = -{{label|en|fibahof}} -| rdfs:range = xsd:string -| rdfs:domain = Athlete -}}OntologyProperty:Field202875360692014-07-08T13:20:50Z -{{ObjectProperty -| rdfs:label@en = field -| rdfs:label@de = Feld -| rdfs:domain = Artist -| rdfs:subPropertyOf = dul:isDescribedBy -}}OntologyProperty:Fight2027585337172014-04-03T16:37:16Z{{DatatypeProperty -| labels = -{{label|en|fight}} -{{label|de|Kampf}} -| rdfs:domain = Boxer -| rdfs:range = xsd:nonNegativeInteger -}}OntologyProperty:Fighter2027474336742014-04-03T16:32:30Z{{DatatypeProperty -| labels = -{{label|fr|combattant}} -{{label|en|fighter}} -{{label|de|Kämpfer}} -| rdfs:range = xsd:string -}}OntologyProperty:FileExtension2029398354752014-06-26T06:36:09Z{{DatatypeProperty -| labels= -{{label|en|The extension of this file}} -| rdfs:domain = File -| rdfs:range = xsd:string -}}OntologyProperty:FileSize2021432511192016-05-25T12:07:58Z{{DatatypeProperty -| rdfs:label@en = size -| rdfs:label@el = μέγεθος αρχείου -| rdfs:label@de = Dateigröße -| rdfs:label@fr = taille de fichier -| rdfs:comment@en = size of a file or software -| rdfs:comment@el = μέγεθος ενός ηλεκτρονικού αρχείου -| rdfs:domain = Work -| rdfs:range = InformationUnit -}}OntologyProperty:FileURL2029684357292014-07-04T21:10:02Z{{ObjectProperty -|labels = -{{label|en|The URL at which this file can be downloaded}} -|rdfs:domain = File -|rdfs:range = File -}}OntologyProperty:Filename2026229511202016-05-25T12:09:10Z{{DatatypeProperty -| labels = -{{label|en| filename}} -{{label|nl| bestandsnaam}} -{{label|de| dateiname}} -{{label|el| όνομα αρχείου}} -{{label|fr| nom de fichier}} -| rdfs:domain = Work -| rdfs:range = xsd:string -}}OntologyProperty:FillingStation20211140461812015-03-18T08:43:55Z{{ObjectProperty -| rdfs:label@en = filling station -| rdfs:domain = RestArea -| rdfs:range = FillingStation -}}OntologyProperty:Film202876523402017-10-10T13:41:29Z -{{ObjectProperty -| labels = - {{label|en|film}} - {{label|da|film}} - {{label|de|film}} - {{label|nl|film}} - {{label|el|ταινία}} - {{label|fr|film}} -| rdfs:domain = FilmFestival -| rdfs:range = Film -| rdfs:subPropertyOf = dul:hasPart -}}OntologyProperty:FilmAudioType2025145170282012-03-23T17:11:04Z{{DatatypeProperty -| rdfs:label@en = film audio type -| rdfs:comment@en = specifies the audio type of the film i.e. 'sound' or 'silent' -| rdfs:domain = Film -| rdfs:range = xsd:string -}}OntologyProperty:FilmColourType2025144170272012-03-23T17:06:54Z{{DatatypeProperty -| rdfs:label@en = film colour type -| rdfs:comment@en = specifies the colour type of the film i.e. 'colour' or 'b/w' -| rdfs:domain = Film -| rdfs:range = xsd:string -}}OntologyProperty:FilmFareAward202877360712014-07-08T13:21:05Z -{{ObjectProperty -| rdfs:label@en = Film Fare Award -| rdfs:domain = Artist -| rdfs:range = Award -| rdfs:subPropertyOf = dul:coparticipatesWith -}}OntologyProperty:FilmNumber2027815271232013-07-05T14:41:52Z{{DatatypeProperty -| labels = -{{label|en|film number}} -| rdfs:domain = Person -| rdfs:range = xsd:nonNegativeInteger -}}OntologyProperty:FilmPolskiId2022467528742018-02-13T10:38:58Z{{DatatypeProperty -| rdfs:label@en = FilmPolski.pl id -| rdfs:range = xsd:string -| rdfs:subPropertyOf = code -}}OntologyProperty:FilmRuntime2027865528312018-02-08T20:14:29Z{{Merge|duration}} - -{{DatatypeProperty -| labels = -{{label|en|film runtime}} -{{label|de|Filmlaufzeit}} -| rdfs:domain = Film -| rdfs:range = Time -| owl:equivalentProperty = -| rdfs:subPropertyOf = runtime -}}OntologyProperty:FilmVersion2029275325482014-03-10T20:31:19Z{{ObjectProperty -| labels = -{{label|en| film version}} -{{label|nl| verfilmd als}} -| rdfs:domain = WrittenWork -| rdfs:range = Film -}}OntologyProperty:FinalFlight202878336762014-04-03T16:32:50Z{{DatatypeProperty -| rdfs:label@en = final flight -| rdfs:label@de = letzter Flug -| rdfs:domain = Rocket -| rdfs:range = xsd:date -| rdfs:comment@en = date of final flight -}}OntologyProperty:FinalLost2028047500992016-01-04T12:57:45Z{{DatatypeProperty -| labels = -{{label|en|final lost}} -{{label|de|Finale verloren}} -| rdfs:domain = TennisPlayer -| rdfs:range = xsd:nonNegativeInteger -}}OntologyProperty:FinalLostDouble2027716500852016-01-04T12:47:32Z{{DatatypeProperty -| labels = -{{label|en|final lost double}} -| rdfs:domain = TennisPlayer -| rdfs:range = xsd:string -}}OntologyProperty:FinalLostSingle2027713500862016-01-04T12:48:09Z{{DatatypeProperty -| labels = -{{label|en|final lost single}} -| rdfs:domain = TennisPlayer -| rdfs:range = xsd:string -}}OntologyProperty:FinalLostTeam2028049282042013-09-03T18:48:58Z{{DatatypeProperty -| labels = -{{label|en|final lost team}} -| rdfs:domain = Athlete -| rdfs:range = xsd:string -}}OntologyProperty:FinalPublicationDate2023743222802013-01-11T09:54:00Z{{DatatypeProperty -| labels = -{{label|en|final publication date}} -{{label|nl|laatste publicatiedatum}} -{{label|de|Datum der finalen Ausgabe}} -| rdfs:domain = PeriodicalLiterature -| rdfs:range = xsd:date -| rdfs:comment@en = Date of the final publication. -| rdfs:comment@de = Datum der allerletzten Veröffentlichung des Periodikums. -}}OntologyProperty:FinalPublicationYear2023746132022011-05-25T16:49:00Z{{DatatypeProperty -| rdfs:label@en = final publication year -| rdfs:label@de = Jahr der finalen Ausgabe -| rdfs:domain = PeriodicalLiterature -| rdfs:range = xsd:gYear -| rdfs:comment@en = Year of the final publication. -| rdfs:comment@de = Jahr der allerletzten Veröffentlichung des Periodikums. -}}OntologyProperty:FipsCode2027288259632013-06-13T15:20:18Z{{DatatypeProperty -| labels = -{{label|en|fips code}} -| rdfs:domain = PopulatedPlace -| rdfs:range = xsd:string -}}OntologyProperty:FirstAirDate2023025113102011-03-30T13:42:00Z{{DatatypeProperty -| rdfs:label@en = first air date -| rdfs:label@de = Sendebeginn -| rdfs:domain = Broadcaster -| rdfs:range = xsd:date -| rdfs:comment@en = The date on which regular broadcasts began. -}}OntologyProperty:FirstAppearance2023098503522016-02-12T21:06:50Z -{{DatatypeProperty -| rdfs:label@en = first appearance -| rdfs:domain = FictionalCharacter -| rdfs:range = xsd:string -| rdfs:subPropertyOf = <!-- dul:isParticipantIn -- defined as object property, see https://github.com/dbpedia/ontology-tracker/issues/9 --> -}}OntologyProperty:FirstAscent2027919336792014-04-03T16:33:10Z{{DatatypeProperty -| labels = -{{label|en|first ascent}} -{{label|de|Erstbesteigung}} -| rdfs:domain = Mountain,Volcano -| rdfs:range = xsd:string -}}OntologyProperty:FirstAscentPerson2022422360732014-07-08T13:21:22Z -{{ObjectProperty -| rdfs:label@en = person that first ascented a mountain -| rdfs:label@de = Person , die zuerst einen Berg bestiegen hat -| rdfs:domain = Mountain -| rdfs:range = Person -| rdfs:subPropertyOf = dul:coparticipatesWith -}}OntologyProperty:FirstAscentYear2022421336812014-04-03T16:33:19Z{{DatatypeProperty -| labels = -{{label|en|year of first ascent}} -{{label|de|Jahr der Erstbesteigung}} -{{label|nl|jaar van de eerste beklimming}} -| rdfs:domain = Mountain -| rdfs:range = xsd:gYear -}}OntologyProperty:FirstBroadcast2027617535692020-01-28T06:09:27Z{{DatatypeProperty -| labels = -{{label|en|first broadcast}} -{{label|de|Erstausstrahlung}} -| rdfs:domain = Film -| rdfs:range = xsd:string -}}OntologyProperty:FirstDriver202880360742014-07-08T13:21:30Z -{{ObjectProperty -| rdfs:label@en = first driver -| rdfs:label@de = erster Fahrer -| rdfs:domain = GrandPrix -| rdfs:range = Person -| rdfs:subPropertyOf = dul:hasParticipant -}}OntologyProperty:FirstDriverCountry202881360752014-07-08T13:21:38Z -{{ObjectProperty -| rdfs:label@en = first driver country -| rdfs:domain = GrandPrix -| rdfs:range = Country -| rdfs:subPropertyOf = dul:hasParticipant -}}OntologyProperty:FirstDriverTeam2022759360762014-07-08T13:21:46Z -{{ObjectProperty -| rdfs:label@en = winning team -| rdfs:label@de = Siegerteam -| rdfs:domain = GrandPrix -| rdfs:range = SportsTeam -| rdfs:subPropertyOf = dul:hasParticipant -}}OntologyProperty:FirstFlight202883360772014-07-08T13:21:55Z -{{ObjectProperty -| rdfs:label@en = first flight -| rdfs:label@de = erster Flug -| rdfs:domain = SpaceShuttle -| rdfs:range = SpaceMission -| rdfs:subPropertyOf = dul:isParticipantIn -}}OntologyProperty:FirstFlightEndDate20288480192010-05-28T13:07:32Z{{DatatypeProperty -| rdfs:label@en = first flight end date -| rdfs:domain = SpaceShuttle -| rdfs:range = xsd:date -}}OntologyProperty:FirstFlightStartDate20288580202010-05-28T13:07:40Z{{DatatypeProperty -| rdfs:label@en = first flight start date -| rdfs:domain = SpaceShuttle -| rdfs:range = xsd:date -}}OntologyProperty:FirstGame202886336852014-04-03T16:33:46Z{{DatatypeProperty -| rdfs:label@en = first game -| rdfs:label@de = erstes Spiel -| rdfs:domain = SoccerClub -| rdfs:range = xsd:string -}}OntologyProperty:FirstLaunch202887336862014-04-03T16:33:51Z{{DatatypeProperty -| rdfs:label@en = first launch -| rdfs:label@de = erster Start -| rdfs:domain = YearInSpaceflight -| rdfs:range = xsd:date -}}OntologyProperty:FirstLaunchDate202888336872014-04-03T16:33:56Z{{DatatypeProperty -| rdfs:label@en = first launch date -| rdfs:label@de = erster Starttermin -| rdfs:domain = LaunchPad -| rdfs:range = xsd:date -}}OntologyProperty:FirstLaunchRocket202889360782014-07-08T13:22:03Z -{{ObjectProperty -| rdfs:label@en = first launch rocket -| rdfs:domain = LaunchPad -| rdfs:range = Rocket -| rdfs:subPropertyOf = dul:coparticipatesWith -}}OntologyProperty:FirstLeader2023125360792014-07-08T13:22:19Z -{{ObjectProperty -| labels = - {{label|en|firstLeader}} - {{label|el|πρώτος ηγέτης}} -| rdfs:range = Person -| rdfs:subPropertyOf = dul:coparticipatesWith -}}OntologyProperty:FirstMention2027258336892014-04-03T16:34:02Z{{DatatypeProperty -| labels = -{{label|en|first mention}} -{{label|de|erste Erwähnung}} -| rdfs:domain = PopulatedPlace -| rdfs:range = xsd:string -}}OntologyProperty:FirstOlympicEvent2026380360802014-07-08T13:22:27Z -{{ObjectProperty -| labels = - {{label|en|first olympic event}} - {{label|fr|première épreuve olympique}} -| rdfs:domain = Sport -| rdfs:range = OlympicEvent -| rdfs:subPropertyOf = dul:isParticipantIn -}}OntologyProperty:FirstOwner2027479360812014-07-08T13:22:35Z -{{ObjectProperty -| labels = - {{label|en|first owner}} - {{label|de|erster Besitzer}} - {{label|fr|premier propriétaire}} - {{label|es|primer dueño}} -| rdfs:range = Agent -| rdfs:subPropertyOf = dul:sameSettingAs -}}OntologyProperty:FirstPlace2028082336912014-04-03T16:34:12Z{{DatatypeProperty -| labels = -{{label|en|first place}} -{{label|de|erster Platz}} -| rdfs:domain = owl:Thing -| rdfs:range = xsd:string -}}OntologyProperty:FirstPopularVote2023127529292018-02-28T08:41:31Z -{{ObjectProperty -| rdfs:label@en = firstPopularVote -| rdfs:comment = There is no clear definition of what this means, if this property points to a date, it should be a datatype property with range xsd:date -| rdfs:range = Person -| owl:equivalentProperty = dul:sameSettingAs -}}OntologyProperty:FirstProMatch2027706336922014-04-03T16:34:17Z{{DatatypeProperty -| labels = -{{label|en|first pro match}} -{{label|de|erstes Profispiel}} -| rdfs:domain = Athlete -| rdfs:range = xsd:string -}}OntologyProperty:FirstPublicationDate2023742222812013-01-11T09:54:24Z{{DatatypeProperty -| labels = -{{label|en|first publication date}} -{{label|nl|eerste publicatiedatum}} -{{label|de|Datum der Erstausgabe}} -{{label|pl|data pierwszego wydania}} -| rdfs:domain = WrittenWork -| rdfs:range = xsd:date -| rdfs:comment@en = Date of the first publication. -| rdfs:comment@de = Datum der ersten Veröffentlichung des Periodikums. -}}OntologyProperty:FirstPublicationYear2023744232212013-01-18T15:49:03Z{{DatatypeProperty -| labels = -{{label|en|first publication year}} -{{label|de|Jahr der Erstausgabe}} -{{label|el|πρώτο έτος δημοσίευσης}} -| rdfs:domain = PeriodicalLiterature -| rdfs:range = xsd:gYear -|comments= -{{comment|en|Year of the first publication.}} -{{comment|de|Jahr der ersten Veröffentlichung des Periodikums.}} -{{comment|el|Έτος της πρώτης δημοσίευσης.}} -}}OntologyProperty:FirstPublisher2029276518022017-01-06T09:34:46Z{{ObjectProperty -| labels = -{{label|en|first publisher}} -{{label|de|erster Herausgeber}} -{{label|nl|oorspronkelijke uitgever}} -| rdfs:domain = WrittenWork -| rdfs:range = Agent -| rdfs:subPropertyOf = publisher -| owl:equivalentProperty = - -}}OntologyProperty:FirstRace202890360832014-07-08T13:22:52Z -{{ObjectProperty -| rdfs:label@en = first race -| rdfs:label@de = erstes Rennen -| rdfs:domain = FormulaOneRacer -| rdfs:range = GrandPrix -| rdfs:subPropertyOf = dul:isParticipantIn -}}OntologyProperty:FirstWin202891360842014-07-08T13:23:01Z -{{ObjectProperty -| rdfs:label@en = first win -| rdfs:label@de = erster Sieg -| rdfs:domain = FormulaOneRacer -| rdfs:range = GrandPrix -| rdfs:subPropertyOf = dul:isParticipantIn -}}OntologyProperty:FirstWinner202892360852014-07-08T13:23:15Z -{{ObjectProperty -| labels = - {{label|en|first winner}} - {{label|de|erster Gewinner}} - {{label|el|πρώτος νικητής}} -| rdfs:domain = Race -| rdfs:range = Person -| rdfs:subPropertyOf = dul:hasParticipant -}}OntologyProperty:Flag2024544394192015-01-19T15:41:34Z{{DatatypeProperty -| labels = -{{label|en|flag (image)}} -{{label|it|bandiera}} -{{label|de|Flagge}} -{{label|el|σημαία}} -{{label|nl|vlag (afbeelding)}} -{{label|tr|göndere çekmek}} -| comments = -{{comment|en|Wikimedia Commons file name representing the subject's flag}} -| rdfs:domain = owl:Thing -| rdfs:range = xsd:string -| owl:equivalentProperty = wikidata:P41 -}}OntologyProperty:FlagBearer202893360862014-07-08T13:23:23Z -{{ObjectProperty -| rdfs:label@en = flag bearer -| rdfs:label@de = Fahnenträger -| rdfs:domain = OlympicResult -| rdfs:range = Person -| rdfs:subPropertyOf = dul:coparticipatesWith -}}OntologyProperty:FlagBorder2027114256472013-05-26T14:54:20Z{{DatatypeProperty -| labels = -{{label|en|flag border}} -| rdfs:range = xsd:string -}}OntologyProperty:FlagCaption2026777278762013-07-16T15:14:21Z{{DatatypeProperty -| labels = -{{label|en|flag caption}} -| rdfs:domain = Flag -| rdfs:range = xsd:string -}}OntologyProperty:FlagLink2027115256482013-05-26T14:54:42Z{{DatatypeProperty -| labels = -{{label|en|flag Link}} -| rdfs:range = xsd:string -}}OntologyProperty:FlagSize2026778250592013-04-21T14:30:15Z{{DatatypeProperty -| labels = -{{label|en|flagSize}} -| rdfs:domain = Flag -| rdfs:range = xsd:integer -}}OntologyProperty:FlashPoint2029142317092014-02-10T23:02:17Z{{DatatypeProperty -|labels = - {{label|en|flash point}} - {{label|nl|vlampunt}} -| rdfs:comment@en = lowest temperature at which a substance can vaporize and start burning -| rdfs:domain = ChemicalSubstance -| rdfs:range = xsd:integer -}}OntologyProperty:FloodingDate202219783772010-05-28T13:56:11Z{{DatatypeProperty -| rdfs:label@en = flooding date -| rdfs:range = xsd:date -}}OntologyProperty:FloorArea202894224172013-01-11T22:43:01Z{{DatatypeProperty -| labels = -{{label|en|floor area}} -{{label|nl|vloeroppervlak}} -{{label|el|περιοχή ορόφων}} -| rdfs:domain = Building -| rdfs:range = Area -}}OntologyProperty:FloorCount202895199532012-11-22T20:54:11Z{{DatatypeProperty -| labels = -{{label|en|floor count}} -{{label|nl|verdiepingen}} -{{label|el|αριθμός ορόφων}} -| rdfs:domain = Building -| rdfs:range = xsd:positiveInteger -}}OntologyProperty:Flora2027148337002014-04-03T16:34:50Z{{DatatypeProperty -| labels = -{{label|en|flora}} -{{label|de|Flora}} -| rdfs:domain = Place -| rdfs:range = xsd:string -}}OntologyProperty:Flower2027134337012014-04-03T16:34:55Z{{ObjectProperty -| labels = -{{label|en|flower}} -{{label|de|Blume}} -{{label|el|λουλούδι}} -| rdfs:domain = Place -| rdfs:range = Species -}}OntologyProperty:FlyingHours2022144337022014-04-03T16:35:00Z{{DatatypeProperty -| rdfs:label@en = flying hours -| rdfs:label@de = Flugstunden -| rdfs:domain = MilitaryUnit -| rdfs:range = Time -}}OntologyProperty:Foaf:based near2024365147042011-08-02T14:07:07Z{{ObjectProperty -| rdfs:label@en = based near -}}OntologyProperty:Foaf:depiction2021612357282014-07-04T20:58:47Z{{ObjectProperty -|labels = -{{label|en|depiction from http://xmlns.com/foaf/spec/#term_depiction}} -|rdfs:range = Image -}}OntologyProperty:Foaf:familyName2022296348142014-05-14T11:25:43Z{{DatatypeProperty -|rdfs:label@en = family name -|rdfs:label@de = Familienname -|rdfs:domain = owl:Thing -|rdfs:range = rdf:langString -}}OntologyProperty:Foaf:gender2025805337032014-04-03T16:35:04Z{{DatatypeProperty -| rdfs:label@en = gender -| rdfs:label@de = Geschlecht -| rdfs:range = xsd:string -}}OntologyProperty:Foaf:givenName2022295348132014-05-14T11:25:38Z{{DatatypeProperty -|labels= - {{label|en|given name}} - {{label|de|Vorname}} - {{label|fr|prénom}} -|rdfs:domain = owl:Thing -|rdfs:range = rdf:langString -}}OntologyProperty:Foaf:homepage2021614491572015-10-13T15:23:16Z{{ObjectProperty -| labels = -{{label|en|homepage}} -{{label|de|Homepage}} -{{label|gl|páxina web}} -{{label|nl|homepage}} -{{label|pt|homepage }} -{{label|el|ιστοσελίδα}} -{{label|ga|líonláithreán}} -{{label|ja|ホームページ}} -{{label|pl|strona domowa}} -| rdfs:domain = Website -| rdfs:range = Website -}}OntologyProperty:Foaf:img2025086455482015-03-08T10:59:56Z{{ObjectProperty -| labels = -{{label|en|image}} -{{label|fr|image}} -{{label|de|Bild}} -{{label|nl|afbeelding}} -}}OntologyProperty:Foaf:isPrimaryTopicOf2025758184912012-05-19T15:40:20Z{{ObjectProperty -|labels = -{{label|en|A document that this thing is the primary topic of. <ref name="foaf:isPrimaryTopicOf">http://xmlns.com/foaf/spec/#term_isPrimaryTopicOf</ref>}} -|comments = -{{comment|en|Inverse of [[OntologyProperty:Foaf:primaryTopic|foaf:primaryTopic]]. <ref name="foaf:isPrimaryTopicOf"/>}} -|rdfs:domain = owl:Thing -|rdfs:range = foaf:Document -}} - -==References== -<references/>OntologyProperty:Foaf:logo2022922121052011-04-12T14:40:52Z{{ObjectProperty -|rdfs:label@en = logo -}}OntologyProperty:Foaf:mbox20210990433202015-02-06T13:28:12Z{{DatatypeProperty -| labels = -{{label|en|Email address (mbox)}} -|comments= -{{comment|en|foaf:mbox is supposed to be in URI form so we could prepend mailto: and declare it an ObjectProperty}} -|rdfs:range=xsd:string -}}OntologyProperty:Foaf:name2021615478242015-04-28T15:32:47Z{{DatatypeProperty -|labels= - {{label|en|name}} - {{label|de|Name}} - {{label|es|nombre}} - {{label|fr|nom}} - {{label|ga|ainm}} - {{label|pt|nome}} - {{label|el|όνομα}} - {{label|ja|名前}} - {{label|nl|naam}} - {{label|pl|nazwa}} - {{label|it|nome}} -| rdfs:domain = owl:Thing -| rdfs:range = rdf:langString -| owl:equivalentProperty = schema:name -}}OntologyProperty:Foaf:nick2022294348152014-05-14T11:25:50Z{{DatatypeProperty -|labels= - {{label|en|nickname}} -{{label|de|Spitzname}} - {{label|el|προσωνύμιο}} - {{label|fr|surnom}} - {{label|nl|bijnaam}} - {{label|ja|ニックネーム}} -|rdfs:domain = owl:Thing -|rdfs:range = rdf:langString -}}OntologyProperty:Foaf:page2021616224082013-01-11T22:19:37Z{{ObjectProperty -|labels= -{{label|en|A page or document about this thing.<ref name="foaf:page">http://xmlns.com/foaf/spec/#term_page</ref>}} -{{label|nl|document}} -|comments = -{{comment|en|Inverse of [[OntologyProperty:Foaf:topic|foaf:topic]]. <ref name="foaf:page"/>}} -|rdfs:range = foaf:Document -}} -==References== -<references/>OntologyProperty:Foaf:phone20210991433242015-02-06T13:37:22Z{{DatatypeProperty -| labels = -{{label|en|Telephone (phone) number}} -|comments= -{{comment|en|foaf:phone is supposed to be in URI form so we could prepend tel: and declare it an ObjectProperty}} -|rdfs:range=xsd:string -}}OntologyProperty:Foaf:primaryTopic2022308184962012-05-19T15:42:23Z{{ObjectProperty -|labels= -{{label|en|The primary topic of some page or document. <ref name="foaf:primaryTopic">http://xmlns.com/foaf/spec/#term_primaryTopic</ref>}} -|comments= -{{comment|en|Inverse of [[OntologyProperty:Foaf:isPrimaryTopicOf|foaf:isPrimaryTopicOf]]. <ref name="foaf:primaryTopic"/>}} -|rdfs:domain = foaf:Document -}} - -==References== -<references/>OntologyProperty:Foaf:surname2021618367612014-07-09T10:32:50Z{{DatatypeProperty -|labels= - {{label|en|surname}} -{{label|el|Επίθετο}} -{{label|de|Nachname}} -{{label|fr|nom de famille}} -|rdfs:range = rdf:langString -}}OntologyProperty:Foaf:thumbnail2021619388772014-12-14T14:06:33Z{{ObjectProperty -| labels = -{{label|en|thumbnail}} -{{label|nl|plaatje}} -{{label|fr|image}} -{{label|ja|画像}} -|rdfs:domain = owl:Thing -|rdfs:range = Image -}}OntologyProperty:Foaf:topic2025759282752013-09-06T09:19:24Z{{ObjectProperty -|labels= -{{label|en|A topic of some page or document. <ref name="foaf:topic">http://xmlns.com/foaf/spec/#term_topic</ref>}} -|comments= -{{comment|en|Inverse of [[OntologyProperty:Foaf:page|foaf:page]]. <ref name="foaf:topic"/>}} -|rdfs:domain = owl:Thing -}} - -==References== -<references/>OntologyProperty:FoalDate2026177207562012-12-23T14:03:04Z{{DatatypeProperty -| labels = -{{label|en|foal date}} -| rdfs:domain = Animal -| rdfs:range = xsd:date -| rdf:type = owl:FunctionalProperty -}}OntologyProperty:Focus20211903522892017-10-08T19:11:55Z{{ObjectProperty -| labels = - {{label|en|focus}} - {{label|de|Fokus}} -| comments = - {{comment|en|Points out the subject or thing someone or something is focused on.}} - {{comment|de|Verweist of den Gegenstand (auch fig.) auf welchen jemand oder etwas fokussiert ist.}} -| rdfs:domain = owl:Thing -| rdfs:range = owl:Thing -}}OntologyProperty:FollowedBy2028099337072014-04-03T16:35:22Z{{ObjectProperty -| labels = -{{label|en|followed by}} -{{label|de|gefolgt von}} -{{label|fr|suivi par}} -{{label|es|siguido de}} -| rdfs:domain = owl:Thing -| rdfs:range = owl:Thing -| owl:equivalentProperty = wikidata:P156 -}}OntologyProperty:FollowingEvent202896360872014-07-08T13:23:31Z{{DisclaimerOntologyProperty}} - - -{{ObjectProperty -| labels = - {{label|en|following event}} - {{label|fr|évènement suivant}} -| rdfs:domain = Event -| rdfs:range = Event -| rdfs:subPropertyOf = dul:precedes -}}OntologyProperty:Follows2026804337082014-04-03T16:35:27Z{{ObjectProperty -| labels = -{{label|en|follows}} -{{label|de|folgt}} -{{label|fr|vient après}} -{{label|es|sigue}} -| rdfs:domain = owl:Thing -| rdfs:range = owl:Thing -| owl:equivalentProperty = wikidata:P155 -}}OntologyProperty:Foot2027642268912013-07-03T09:39:47Z{{DatatypeProperty -| labels = -{{label|en|foot}} -| rdfs:domain = Person -| rdfs:range = xsd:string -}}OntologyProperty:Footedness2023354122402011-04-15T13:55:48Z{{ObjectProperty -| rdfs:label@en = Footedness -| rdfs:label@pt = habilidade com o pé -| rdfs:comment@en = 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. -| rdfs:domain = Sport -| rdfs:range = Person -}}OntologyProperty:Forces2027473337092014-04-03T16:35:34Z{{DatatypeProperty -| labels = -{{label|fr|forces}} -{{label|en|forces}} -{{label|de|Streitkräfte}} -| rdfs:range = xsd:string -}}OntologyProperty:ForesterDistrict2027079360882014-07-08T13:23:39Z -{{ObjectProperty -| labels = - {{label|en|foresterDistrict}} -| rdfs:domain = Place -| rdfs:subPropertyOf = dul:isPartOf -}}OntologyProperty:Format202897486592015-08-06T16:33:20Z{{ObjectProperty -| labels = - {{label|en|format (object)}} - {{label|de|Format}} - {{label|el|format}} - {{label|fr|format}} - {{label|ga|formáid}} - {{label|nl|formaat}} - {{label|pl|format}} -| rdfs:comment@en = Format of the resource (as object). Use dct:format for literal, format for object -| rdfs:subPropertyOf = dul:isClassifiedBy -}}OntologyProperty:FormationDate202898475742015-04-03T09:23:55Z{{DatatypeProperty -| labels = -{{label|en|formation date}} -{{label|nl|formatie datum}} -{{label|el|Ιδρύθηκε}} -| rdfs:domain = Organisation -| rdfs:range = xsd:date -| rdfs:comment@en = same as [[OntologyProperty:FoundingDate]]? -| owl:equivalentProperty = wikidata:P571 -}}OntologyProperty:FormationYear202899223732013-01-11T20:58:36Z{{DatatypeProperty -| labels = -{{label|en|formation year}} -{{label|nl|formatie jaar}} -| rdfs:comment@en = equivalent / sub property of [[OntologyProperty:foundingYear]]? -| rdfs:domain = Organisation -| rdfs:range = xsd:gYear -}}OntologyProperty:FormerBandMember2024347360902014-07-08T13:23:55Z -{{ObjectProperty -| labels = - {{label|en|former band member}} - {{label|de|ehemaliges Bandmitglied}} - {{label|nl|voormalig bandlid}} -| rdfs:domain = Band -| rdfs:range = Person -| rdfs:comment@en = A former member of the band. -| rdfs:subPropertyOf = dul:hasMember -}}OntologyProperty:FormerBroadcastNetwork2023028360912014-07-08T13:24:03Z -{{ObjectProperty -| rdfs:label@en = former broadcast network -| rdfs:label@de = ehemalige Sendergruppe -| rdfs:label@fr = ancienne chaîne de télévision généraliste -| rdfs:domain = Broadcaster -| rdfs:range = BroadcastNetwork -| rdfs:comment@en = A former parent broadcast network to which the broadcaster once belonged. -| rdfs:comment@de = Eine ehemalige Sendergruppe zu dem der Rundfunkveranstalter gehört hat. -| rdfs:subPropertyOf = dul:isMemberOf -}}OntologyProperty:FormerCallsign202900129182011-05-18T12:56:05Z{{DatatypeProperty -| rdfs:label@en = former call sign -| rdfs:domain = Broadcaster -| rdfs:range = xsd:string -| rdfs:comment@en = A former call sign is not a former 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 [http://en.wikipedia.org/wiki/Call_sign]. -}}OntologyProperty:FormerChannel2023185119142011-04-05T10:48:18Z{{DatatypeProperty -| rdfs:label@en = former channel -| rdfs:domain = Broadcaster -| rdfs:range = xsd:string -}}OntologyProperty:FormerChoreographer202901360922014-07-08T13:24:12Z -{{ObjectProperty -| rdfs:label@en = former choreographer -| rdfs:label@de = ehemaliger Choreograph -| rdfs:domain = FigureSkater -| rdfs:range = Person -| rdfs:subPropertyOf = dul:coparticipatesWith -}}OntologyProperty:FormerCoach202902360932014-07-08T13:24:21Z -{{ObjectProperty -| rdfs:label@en = former coach -| rdfs:label@de = Ex-Trainer -| rdfs:domain = FigureSkater -| rdfs:range = Person -| rdfs:subPropertyOf = dul:coparticipatesWith -}}OntologyProperty:FormerHighschool202903360942014-07-08T13:24:29Z -{{ObjectProperty -| rdfs:label@en = former highschool -| rdfs:label@de = ehemalige Highschool -| rdfs:domain = NationalCollegiateAthleticAssociationAthlete -| rdfs:range = EducationalInstitution -| rdfs:subPropertyOf = dul:isMemberOf -}}OntologyProperty:FormerName202904348352014-05-15T05:18:21Z{{DatatypeProperty -| rdfs:label@en = former name -| rdfs:label@de = früherer Name -| rdfs:label@el = προηγούμενο όνομα -| rdfs:range = rdf:langString -}}OntologyProperty:FormerPartner202905360952014-07-08T13:24:37Z -{{ObjectProperty -| rdfs:label@en = former partner -| rdfs:label@de = ehemaliger Partner -| rdfs:domain = FigureSkater -| rdfs:range = Person -| rdfs:subPropertyOf = dul:coparticipatesWith -}}OntologyProperty:FormerTeam202906360962014-07-08T13:24:45Z -{{ObjectProperty -| labels = - {{label|en|former team}} - {{label|nl|voormalig team}} -| rdfs:domain = Athlete -| rdfs:range = SportsTeam -| rdfs:subPropertyOf = dul:isMemberOf -}}OntologyProperty:Formula2028933307882014-01-22T13:48:40Z{{DatatypeProperty -| rdfs:label@en = formula -| rdfs:label@de = Formel -| rdfs:label@fr = formule -| rdfs:label@nl = formule -| rdfs:domain = ChemicalSubstance -| rdfs:range = xsd:string -}}OntologyProperty:Fossil20210210378852014-09-24T11:12:42Z{{ObjectProperty -| labels = - {{label|en|fossil}} - {{label|nl|fossiel}} -| rdfs:domain = Species -| rdfs:range = Species -| rdfs:subPropertyOf = dul:sameSettingAs -}}OntologyProperty:Foundation2027259337212014-04-04T13:51:51Z{{DatatypeProperty -| labels = -{{label|en|foundation}} -{{label|de|Gründung}} -| rdfs:domain = PopulatedPlace -| rdfs:range = xsd:string -}}OntologyProperty:FoundationPlace202909360972014-07-08T13:24:53Z -{{ObjectProperty -| rdfs:label@en = foundation place -| rdfs:label@de = Gründungsort -| rdfs:domain = Organisation -| rdfs:range = City -| rdfs:subPropertyOf = dul:hasLocation -}}OntologyProperty:FoundedBy2023884476342015-04-03T14:17:12Z{{ObjectProperty -| labels = - {{label|en|founded by}} - {{label|de|gegründet von}} - {{label|nl|gesticht door}} - {{label|fr|fondé par}} - {{label|ga|a bhunaigh}} - {{label|pl|założony przez}} -| rdfs:domain = owl:Thing -| rdfs:range = Agent -| owl:equivalentProperty = schema:founders -| rdfs:comment@en = Identifies the founder of the described entity. This can be a person or a organisation for instance. -| rdfs:subPropertyOf = dul:coparticipatesWith -| owl:equivalentProperty = wikidata:P112 -}}OntologyProperty:Founder2026162485272015-08-05T15:08:42Z{{ObjectProperty -| labels = - {{label|en|founder}} - {{label|de|Gründer}} - {{label|el|Ιδρυτής}} -| rdfs:domain = owl:Thing -| rdfs:range = Person -| comments = - {{comment|en|A founder or co-founder of the organization, religion or place.}} - {{comment|en|Ein Gründer oder Gründungsmitglied einer Organisation, Religion oder eines Ortes.}} -| rdfs:subPropertyOf = dul:sameSettingAs -| owl:equivalentProperty = wikidata:P112 -}}OntologyProperty:FoundingDate202910537372020-09-28T19:29:08Z{{DatatypeProperty -| rdfs:label@en = founding date -| rdfs:label@de = Gründungsdatum -| rdfs:label@el = ημερομηνία ίδρυσης -| rdfs:label@ga = dáta bunaithe -| rdfs:label@ja = 創立日 -| rdfs:label@pl = data założenia -| rdfs:range = xsd:date -| owl:equivalentProperty = schema:foundingDate, wikidata:P571 -}}OntologyProperty:FoundingYear202912537492020-09-30T12:14:36Z{{DatatypeProperty -| labels = -{{label|en|founding year}} -{{label|nl|oprichtingsjaar}} -{{label|de|Gründungsjahr}} -{{label|es|año de fundación}} -{{label|el|έτος ίδρυσης}} -| rdfs:domain = owl:Thing -| rdfs:range = xsd:gYear -| owl:equivalentProperty = bag:oorspronkelijkBouwjaar -}}OntologyProperty:FourthCommander2022145361012014-07-08T13:25:34Z -{{ObjectProperty -| rdfs:label@en = fourth commander -| rdfs:domain = MilitaryUnit -| rdfs:range = Person -| rdfs:subPropertyOf = dul:coparticipatesWith -}}OntologyProperty:Frazioni202913361022014-07-08T13:25:42Z -{{ObjectProperty -| rdfs:label@en = frazioni -| rdfs:domain = Settlement -| rdfs:range = PopulatedPlace -| rdfs:subPropertyOf = dul:hasPart -}}OntologyProperty:Free2026820337992014-04-04T14:08:33Z{{DatatypeProperty -| labels = -{{label|en|free}} -| rdfs:domain = FictionalCharacter -| rdfs:range = xsd:string -}}OntologyProperty:FreeDanseScore2028077282402013-09-04T09:18:12Z{{DatatypeProperty -| labels = -{{label|en|free danse score}} -| rdfs:domain = Person -| rdfs:range = xsd:string -}}OntologyProperty:FreeFlightTime20291480322010-05-28T13:09:15Z{{DatatypeProperty -| rdfs:label@en = free flight time -| rdfs:domain = Spacecraft -| rdfs:range = Time -}}OntologyProperty:FreeLabel2026819251662013-05-09T10:08:25Z{{DatatypeProperty -| labels = -{{label|en|freeLabel}} -| rdfs:domain = FictionalCharacter -| rdfs:range = xsd:string -}}OntologyProperty:FreeProgCompetition2028070282332013-09-04T09:12:52Z{{DatatypeProperty -| labels = -{{label|en|free prog competition}} -| rdfs:domain = Person -| rdfs:range = xsd:string -}}OntologyProperty:FreeProgScore2028069282322013-09-04T09:12:32Z{{DatatypeProperty -| labels = -{{label|en|free prog score}} -| rdfs:domain = Person -| rdfs:range = xsd:string -}}OntologyProperty:FreeScoreCompetition2028078282412013-09-04T09:18:40Z{{DatatypeProperty -| labels = -{{label|en|free score competition}} -| rdfs:domain = Person -| rdfs:range = xsd:string -}}OntologyProperty:Frequency202915337282014-04-04T13:52:18Z{{DatatypeProperty -| labels = -{{label|en|frequency}} -{{label|de|Frequenz}} -{{label|el|συχνότητα}} -{{label|fr|fréquence}} - -| rdfs:range = Frequency -}}OntologyProperty:FrequencyOfPublication2023741222762013-01-11T09:51:21Z{{DatatypeProperty -| labels = -{{label|en|frequency of publication}} -{{label|nl|frequentie van publicatie}} -{{label|de|Erscheinungsweise}} -| rdfs:domain = PeriodicalLiterature -| rdfs:range = xsd:string -| rdfs:comment@en = The frequency of periodical publication (eg. Weekly, Bimonthly). -| rdfs:comment@de = Die Häufigkeit der Erscheinungen des Periodikums (z.B. wöchentlich, monatlich). -}}OntologyProperty:FrequentlyUpdated202916337292014-04-04T13:52:23Z{{DatatypeProperty -| rdfs:label@en = frequently updated -| rdfs:label@de = häufig aktualisiert -| rdfs:domain = Software -| rdfs:range = xsd:string -}}OntologyProperty:Friend2027883337302014-04-04T13:52:27Z{{ObjectProperty -| labels = -{{label|en|friend}} -{{label|de|Freund}} -{{label|el|φίλος}} -| rdfs:domain = Person -| rdfs:range = Person -}}OntologyProperty:FrontierLength2027051255522013-05-25T23:21:54Z{{DatatypeProperty -| labels = -{{label|en|length of a frontier}} -| rdfs:domain = Place -| rdfs:range = xsd:float -}}OntologyProperty:Frozen202917503272016-02-05T08:22:32Z{{DatatypeProperty -| rdfs:label@en = frozen -| rdfs:label@de = gefroren -| rdfs:label@el = παγωμένη -| rdfs:domain = BodyOfWater -| rdfs:range = xsd:string -}}OntologyProperty:Fuel2022742361032014-07-08T13:25:51Z -{{ObjectProperty -| rdfs:label@en = fuel -| rdfs:label@el = καύσιμα -| rdfs:label@de = Treibstoff -| rdfs:label@fr = carburant -| rdfs:label@nl = brandstof -| rdfs:domain = owl:Thing -| rdfs:subPropertyOf = dul:sameSettingAs -}}OntologyProperty:FuelCapacity202918348942014-05-18T17:52:26Z{{DatatypeProperty -| rdfs:label@en = fuel capacity -| rdfs:label@el = χωρητικότητα καυσίμου -| rdfs:label@de = Kraftstoffkapazität -| rdfs:domain = Automobile -| rdfs:range = Volume -| rdf:type = owl:FunctionalProperty -}}OntologyProperty:FuelConsumption202919348952014-05-18T17:52:57Z{{DatatypeProperty -| rdfs:label@en = fuel consumption -| rdfs:label@el = κατανάλωση καυσίμου -| rdfs:label@de = Kraftstoffverbrauch -| rdfs:label@nl = brandstofverbruik -| rdfs:domain = AutomobileEngine -| rdfs:range = xsd:string -| rdf:type = owl:FunctionalProperty -}}OntologyProperty:FuelSystem202920475812015-04-03T09:30:08Z{{ObjectProperty -| rdfs:label@en = fuel system -| rdfs:label@de = Kraftstoffsystem -| rdfs:domain = AutomobileEngine -| rdfs:subPropertyOf = dul:hasComponent -| owl:equivalentProperty = wikidata:P1211 -}}OntologyProperty:FuelType202921522622017-10-08T10:34:21Z -{{ObjectProperty -| rdfs:label@en = fuel type -| rdfs:label@el = τύπος καυσίμου -| rdfs:label@de = Kraftstofftyp -| rdfs:domain = owl:Thing -| rdfs:range = owl:Thing -<!-- | rdfs:subPropertyOf = dul:isClassifiedBy -- defined as object property, see https://github.com/dbpedia/ontology-tracker/issues/9 --> -}}OntologyProperty:FuelTypeName2029588355182014-06-28T22:37:59Z{{DatatypeProperty -| labels = -{{label|en|fuel type}} -| rdfs:domain = PowerStation -| rdfs:range = rdf:langString -}}OntologyProperty:FullCompetition2028066282292013-09-04T09:10:49Z{{DatatypeProperty -| labels = -{{label|en|full competition}} -| rdfs:domain = Person -| rdfs:range = xsd:string -}}OntologyProperty:FullScore2028065282282013-09-04T09:10:29Z{{DatatypeProperty -| labels = -{{label|en|full score}} -| rdfs:domain = Person -| rdfs:range = xsd:string -}}OntologyProperty:FunctionEndDate20292380392010-05-28T13:10:07Z{{DatatypeProperty -| rdfs:label@en = function end date -| rdfs:domain = PersonFunction -| rdfs:range = xsd:date -}}OntologyProperty:FunctionEndYear202924204372012-12-20T15:03:23Z{{DatatypeProperty -| rdfs:label@en = function end year -| rdfs:label@nl = laatste jaar functie -| rdfs:domain = PersonFunction -| rdfs:range = xsd:gYear -}}OntologyProperty:FunctionStartDate20292580412010-05-28T13:10:22Z{{DatatypeProperty -| rdfs:label@en = function start date -| rdfs:domain = PersonFunction -| rdfs:range = xsd:date -}}OntologyProperty:FunctionStartYear202926538102020-12-01T18:05:49Z{{DatatypeProperty -| rdfs:label@en = function start year -| rdfs:domain = PersonFunction -| rdfs:range = xsd:gYear -| owl:equivalentProperty=wikidata:P2031 -}}OntologyProperty:FundedBy2023042361062014-07-08T13:26:29Z -{{ObjectProperty -| rdfs:label@en = funded by -| rdfs:label@el = ιδρύθηκε από -| rdfs:label@de = gefördert durch -| rdfs:domain = ResearchProject -| rdfs:range = Organisation -| rdfs:comment@en = A organisation financing the research project. -| rdfs:subPropertyOf = dul:isSettingFor -}}OntologyProperty:GalicianSpeakersDate20211361490942015-10-09T17:54:22Z{{DatatypeProperty -|labels = -{{label|en|galicianSpeakersDate}} -{{label|gl|data da enquisa sociolingüística}} - |rdfs:comment@en = The last inquiry date about linguistics uses. - |rdfs:comment@gl = data da última enquisa sociolingüística. - |rdfs:domain = Language - |rdfs:range = xsd:gYear -}}OntologyProperty:GalicianSpeakersPercentage20211360490882015-10-09T17:32:40Z{{DatatypeProperty -| labels = -{{label|en|galicianSpeakersPercentage}} -{{label|gl|porcentaxe de galegofalantes}} - | rdfs:comment@en = Percentage of Galician speakers. - | rdfs:comment@gl = porcentaxe de galegofalantes. - | rdfs:domain = Language - | rdfs:range = xsd:string -}}OntologyProperty:GalleryItem20210104453192015-02-13T17:43:26Z{{ObjectProperty -| labels= - {{label|en|gallery item}} - {{label|de|Galerieelement}} -| comments= - {{comment|en|A file contained in a [https://en.wikipedia.org/wiki/Help:Gallery_tag gallery]}} -| rdfs:domain = Document -| rdfs:range = File -}}OntologyProperty:GameArtist2023882361072014-07-08T13:26:38Z -{{ObjectProperty -| rdfs:label@en = game artist -| rdfs:label@ja = ゲームデザイナー -| rdfs:domain = VideoGame -| rdfs:range = Person -| rdfs:comment@en = 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. -| rdfs:subPropertyOf = dul:coparticipatesWith -}}OntologyProperty:GameEngine2022119475822015-04-03T09:32:03Z{{ObjectProperty -| rdfs:label@en = Game Engine -| rdfs:label@ja = ゲームエンジン -| rdfs:domain = VideoGame -| rdfs:subPropertyOf = dul:coparticipatesWith -| owl:equivalentProperty = wikidata:P408 -}}OntologyProperty:GameModus2026410235332013-01-23T23:51:35Z{{DatatypeProperty -| labels = -{{label|en|Modus the game can be played in }} -| rdfs:domain = owl:Thing -| rdfs:range = xsd:string -}}OntologyProperty:Games202928523592017-10-10T14:03:47Z{{DatatypeProperty -| rdfs:label@en = games -| rdfs:label@da = spil -| rdfs:label@de = Spiele -| rdfs:label@el = αγώνες -| rdfs:domain = OlympicResult -| rdfs:range = xsd:string -}}OntologyProperty:Garrison202929361092014-07-08T13:26:55Z -{{ObjectProperty -| rdfs:label@en = garrison -| rdfs:label@de = Garnison -| rdfs:domain = MilitaryUnit -| rdfs:range = PopulatedPlace -| rdfs:subPropertyOf = dul:hasLocation -}}OntologyProperty:GasChambers20211701512362016-06-09T10:03:00Z{{DatatypeProperty -| labels = -{{label|en|gas chambers}} -| rdfs:domain = ConcentrationCamp -| rdfs:range = xsd:string -| rdfs:comment@en = Number or description of gas chambers of a ConcentrationCamp -}}OntologyProperty:GaudiAward2022496361102014-07-08T13:27:03Z -{{ObjectProperty -| rdfs:label@en = Gaudí Award -| rdfs:comment@en = Awards of the Catalan Academy of Cinema -| rdfs:label@ca = Premis Gaudí -| rdfs:domain = Artist -| rdfs:range = Award -| rdfs:subPropertyOf = dul:coparticipatesWith -}}OntologyProperty:GdpPerCapita20211956525172017-10-18T12:02:26Z{{DatatypeProperty -| rdfs:label@en = gross domestic product (GDP) per capita -| rdfs:label@de = Bruttoinlandsprodukt pro Einwohner -| rdfs:comment@en = The nominal gross domestic product of a country per capita. -| rdfs:comment@de = Das nominale Bruttoinlandsprodukt eines Landes pro Einwohner. -| rdfs:domain = PopulatedPlace -| rdfs:range = xsd:float -}}OntologyProperty:GeminiAward202930361112014-07-08T13:27:12Z -{{ObjectProperty -| rdfs:label@en = Gemini Award -| rdfs:domain = Actor -| rdfs:range = Award -| rdfs:subPropertyOf = dul:coparticipatesWith -}}OntologyProperty:Gender2023100537802020-10-20T14:18:21Z -{{ObjectProperty -| labels = - {{label|en|gender}} - {{label|el|φύλο}} - {{label|de|Geschlecht}} - {{label|nl|geslacht}} -| rdfs:subPropertyOf = dul:isClassifiedBy -| owl:equivalentProperty = schema:gender, gnd:gender -}}OntologyProperty:GeneLocation2025049361132014-07-08T13:27:36Z -{{ObjectProperty -| rdfs:label@en = Gene Location -| rdfs:label@ja = 遺伝子座 -| rdfs:domain = Gene -| rdfs:range = GeneLocation -| rdfs:subPropertyOf = dul:hasLocation -}}OntologyProperty:GeneLocationEnd2025054390972015-01-08T23:27:01Z{{DatatypeProperty -| rdfs:label@en = gene location end -| rdfs:label@nl = locus eindpunt -| rdfs:comment@en = the end of the gene -| rdfs:label@ja = 遺伝子座のエンド座標 -| rdfs:domain = GeneLocation -| rdfs:range = xsd:integer -}}OntologyProperty:GeneLocationStart2025053390962015-01-08T23:22:43Z{{DatatypeProperty -| rdfs:label@en = gene location start -| rdfs:label@nl = locus startpunt -| rdfs:label@ja = 遺伝子座のスタート座標 -| rdfs:comment@en = the start of the gene coordinates -| rdfs:domain = GeneLocation -| rdfs:range = xsd:integer -}}OntologyProperty:GeneReviewsId2026113391452015-01-11T15:49:56Z{{DatatypeProperty -| rdfs:label@en = geneReviewsId -| rdfs:domain = Disease -| rdfs:range = xsd:string -}}OntologyProperty:GeneReviewsName2026115391422015-01-11T15:48:29Z{{DatatypeProperty -| rdfs:label@en = geneReviewsName -| rdfs:domain = Disease -| rdfs:range = rdf:langString -}}OntologyProperty:GeneralCouncil2027024274692013-07-12T13:18:17Z{{ObjectProperty -| labels = -{{label|en|general council}} -| rdfs:domain = Agent -| rdfs:range = TermOfOffice -}}OntologyProperty:GeneralManager202931475832015-04-03T09:33:27Z{{ObjectProperty -| rdfs:label@en = general manager -| rdfs:label@de = Hauptgeschäftsführer -| rdfs:domain = SportsTeam -| rdfs:range = Person -| rdfs:subPropertyOf = dul:sameSettingAs -| owl:equivalentProperty = wikidata:P505 -}}OntologyProperty:GenerationUnits2029592355232014-06-28T22:50:15Z{{DatatypeProperty -| labels = -{{label|en|generation units}} -| rdfs:domain = PowerStation -| rdfs:range = rdf:langString -}}OntologyProperty:GenomeDB2025051191572012-07-31T19:25:19Z{{DatatypeProperty -| rdfs:label@en = Genome DB -| rdfs:label@ja = Genome DB -| rdfs:comment@en = the edition of the database used (i.e. hg19) -| rdfs:domain = GeneLocation -| rdfs:range = xsd:string -}}OntologyProperty:Genre202932476152015-04-03T10:07:44Z{{ObjectProperty -| labels = - {{label|en|genre}} - {{label|de|Genre}} - {{label|fr|genre}} - {{label|el|είδος}} - {{label|nl|genre}} - {{label|ja|ジャンル}} - {{label|pl|gatunek}} - {{label|es|género}} -| rdfs:comment@en = The genre of the thing (music group, film, etc.) -| rdfs:range = Genre -| rdfs:domain = owl:Thing -| owl:equivalentProperty = schema:genre, wikidata:P136 -| rdfs:subPropertyOf = dul:isClassifiedBy -}}OntologyProperty:Genus202933361162014-07-08T13:28:01Z -{{ObjectProperty -| labels = - {{label|en|genus}} - {{label|de|Gattung}} - {{label|es|género (biología)}} - {{label|fr|genre (biologie)}} - {{label|nl|geslacht}} - {{label|ja|属_(分類学)}} -| comments = - {{comment|en|A rank in the classification of organisms, below family and above species; a taxon at that rank<ref>https://en.wiktionary.org/wiki/genus</ref>}} - {{comment|fr|Rang taxinomique (ou taxonomique) qui regroupe un ensemble d'espèces ayant en commun plusieurs caractères similaires.<ref>https://fr.wikipedia.org/wiki/Genre_(biologie)</ref>}} -| rdfs:domain = Species -| owl:equivalentProperty = wikidata:P74 -| rdfs:subPropertyOf = dul:specializes -}} -== references == -<references/>OntologyProperty:Geo:lat2021620136492011-06-14T13:45:19Z{{DatatypeProperty -|rdfs:label@en = latitude -|rdfs:domain = gml:_Feature -|rdfs:range = xsd:float -|rdf:type = owl:FunctionalProperty -|owl:equivalentProperty = schema:latitude -}}OntologyProperty:Geo:long2021621136502011-06-14T13:46:26Z{{DatatypeProperty -|rdfs:label@en = longitude -|rdfs:domain = gml:_Feature -|rdfs:range = xsd:float -|rdf:type = owl:FunctionalProperty -| owl:equivalentProperty = schema:longitude -}}OntologyProperty:GeolocDepartment2026787361172014-07-08T13:28:10Z -{{ObjectProperty -| labels = - {{label|en|geolocDepartment}} -| rdfs:domain = Settlement -| rdfs:range = PopulatedPlace -| rdfs:subPropertyOf = dul:isPartOf -}}OntologyProperty:GeolocDual2027158256992013-05-26T16:40:21Z{{DatatypeProperty -| labels = -{{label|en|geolocdual}} -| rdfs:domain = Place -| rdfs:range = xsd:string -}}OntologyProperty:GeologicPeriod202127481982010-05-28T13:31:58Z{{DatatypeProperty -| rdfs:label@en = geologic period -| rdfs:domain = Place -| rdfs:range = xsd:string -}}OntologyProperty:Geology202934337442014-04-04T13:53:44Z{{DatatypeProperty -| rdfs:label@en = geology -| rdfs:label@de = Geologie -| rdfs:label@el = γεωλογία -| rdfs:label@fr = géologie -| rdfs:range = xsd:string -}}OntologyProperty:Georss:point2021623281282013-08-29T20:30:25Z{{DatatypeProperty -|rdfs:label@en = point -|rdfs:domain = gml:_Feature -|rdfs:range = xsd:string -|rdf:type = owl:FunctionalProperty -|owl:equivalentProperty = wikidata:P625 -}}OntologyProperty:GiniCoefficient2023325475852015-04-03T09:35:32Z{{DatatypeProperty -| rdfs:label@en = gini coefficient -| rdfs:label@de = Gini-Koeffizient -| rdfs:label@pt = coeficiente de Gini -| rdfs:comment@en = is a measure of the inequality of a distribution. It is commonly used as a measure of inequality of income or wealth. -| rdfs:domain = PopulatedPlace -| rdfs:range = xsd:float -| owl:equivalentProperty = wikidata:P1125 -}}OntologyProperty:GiniCoefficientAsOf2023327122092011-04-15T13:07:51Z{{DatatypeProperty -| rdfs:label@en = gini coefficient as of -| rdfs:label@pt = coeficiente de Gini em -| rdfs:domain = PopulatedPlace -| rdfs:range = xsd:date -}}OntologyProperty:GiniCoefficientCategory2023328122102011-04-15T13:08:39Z{{ObjectProperty -| rdfs:label@en = gini coefficient category -| rdfs:label@pt = categoria do coeficiente de Gini -| rdfs:domain = PopulatedPlace -}}OntologyProperty:GiniCoefficientRanking2023326122082011-04-15T13:05:59Z{{DatatypeProperty -| rdfs:label@en = gini coefficient ranking -| rdfs:label@pt = posição no ranking do coeficiente de Gini -| rdfs:domain = PopulatedPlace -| rdfs:range = xsd:positiveInteger -}}OntologyProperty:GlycemicIndex20211305487652015-08-13T10:16:20Z{{DatatypeProperty -| labels = -{{label|en|glycemic index}} -| rdfs:domain = Food -| rdfs:range = xsd:integer -| comments = -{{comment|en|Indicates a Food's effect on a person's blood glucose (blood sugar) level. Typically ranges between 50 and 100, where 100 represents the standard, an equivalent amount of pure glucose}} -}}OntologyProperty:GnisCode2027287259622013-06-13T15:20:03Z{{DatatypeProperty -| labels = -{{label|en|gnis code}} -| rdfs:domain = PopulatedPlace -| rdfs:range = xsd:string -}}OntologyProperty:Gnl2027274259442013-06-13T13:47:33Z{{DatatypeProperty -| labels = -{{label|en|gnl}} -| rdfs:domain = PopulatedPlace -| rdfs:range = xsd:string -}}OntologyProperty:GoalsInLeague202935514452016-08-16T07:38:18Z{{DatatypeProperty -| labels = -{{label|en|goals in league}} -{{label|de|Tore in der Liga}} -{{label|nl|doelpunten in de competitie}} -{{label|ja|リーグ得点}} -| rdfs:domain = SoccerPlayer -| rdfs:range = xsd:nonNegativeInteger -}}OntologyProperty:GoalsInNationalTeam202936514462016-08-16T07:39:05Z{{DatatypeProperty -| labels = -{{label|en|goals in national team}} -{{label|de|Tore in der Nationalmannschaft}} -{{label|nl|interland doelpunten}} -{{label|ja|代表得点}} -| rdfs:domain = SoccerPlayer -| rdfs:range = xsd:nonNegativeInteger -}}OntologyProperty:GoldMedalDouble2027733500822016-01-04T12:45:11Z{{DatatypeProperty -| labels = -{{label|en|gold medal double}} -| rdfs:domain = TennisPlayer -| rdfs:range = xsd:string -}}OntologyProperty:GoldMedalMixed2027736500832016-01-04T12:45:40Z{{DatatypeProperty -| labels = -{{label|en|gold medal mixed}} -| rdfs:domain = TennisPlayer -| rdfs:range = xsd:string -}}OntologyProperty:GoldMedalSingle2027730500842016-01-04T12:46:06Z{{DatatypeProperty -| labels = -{{label|en|gold medal single}} -| rdfs:domain = TennisPlayer -| rdfs:range = xsd:string -}}OntologyProperty:GoldMedalist2025665361182014-07-08T13:28:18Z -{{ObjectProperty -| rdfs:label@en = gold medalist -| rdfs:label@de = Goldmedaillengewinner -| rdfs:label@pt = medalha de ouro -| rdfs:label@nl = gouden medaille drager -| rdfs:domain = SportsEvent -| rdfs:range = Person -| rdfs:subPropertyOf = Medalist, dul:hasParticipant -}}OntologyProperty:GoldenCalfAward202937361192014-07-08T13:28:27Z -{{ObjectProperty -| rdfs:label@en = Golden Calf Award -| rdfs:domain = Actor -| rdfs:range = Award -| rdfs:subPropertyOf = dul:coparticipatesWith -}}OntologyProperty:GoldenGlobeAward202938361202014-07-08T13:28:34Z{{DisclaimerOntologyProperty}} - - -{{ObjectProperty -| rdfs:label@en = Golden Globe Award -| rdfs:domain = Artist -| rdfs:range = Award -| rdfs:subPropertyOf = dul:coparticipatesWith -}}OntologyProperty:GoldenRaspberryAward202939361212014-07-08T13:28:54Z -{{ObjectProperty -| rdfs:label@en = Golden Raspberry Award -| rdfs:domain = Actor -| rdfs:range = Award -| rdfs:subPropertyOf = dul:coparticipatesWith -}}OntologyProperty:GoverningBody2023224361222014-07-08T13:29:02Z -{{ObjectProperty -| labels = - {{label|en|governing body}} - {{label|nl|bestuursorgaan}} - {{label|de|Verwaltungsgremium}} -| rdfs:domain = Place -| rdfs:range = Organisation -| rdfs:comment@en = Body that owns/operates the Place. -| rdfs:subPropertyOf = dul:coparticipatesWith -}}OntologyProperty:Government202940361232014-07-08T13:29:11Z -{{ObjectProperty -| rdfs:label@en = government -| rdfs:label@de = Regierung -| rdfs:label@fr = gouvernement -| rdfs:domain = Island -| rdfs:subPropertyOf = dul:sameSettingAs -}}OntologyProperty:GovernmentCountry202941361242014-07-08T13:29:19Z -{{ObjectProperty -| rdfs:label@en = government country -| rdfs:domain = Island -| rdfs:range = Country -| rdfs:subPropertyOf = dul:sameSettingAs -}}OntologyProperty:GovernmentElevation20294280482010-05-28T13:11:24Z{{DatatypeProperty -| rdfs:label@en = government elevation -| rdfs:domain = Island -| rdfs:range = Length -}}OntologyProperty:GovernmentMountain202943361252014-07-08T13:29:27Z -{{ObjectProperty -| rdfs:label@en = government mountain -| rdfs:domain = Island -| rdfs:range = Mountain -| rdfs:subPropertyOf = dul:sameSettingAs -}}OntologyProperty:GovernmentPlace202944361262014-07-08T13:29:34Z -{{ObjectProperty -| rdfs:label@en = government place -| rdfs:domain = Island -| rdfs:range = PopulatedPlace -| rdfs:subPropertyOf = dul:sameSettingAs -}}OntologyProperty:GovernmentPosition202945361272014-07-08T13:29:53Z -{{ObjectProperty -| rdfs:label@en = government position -| rdfs:domain = Island -| rdfs:range = geo:SpatialThing -| rdfs:subPropertyOf = dul:sameSettingAs -}}OntologyProperty:GovernmentRegion202946361282014-07-08T13:30:01Z -{{ObjectProperty -| rdfs:label@en = government region -| rdfs:domain = Island -| rdfs:range = PopulatedPlace -| rdfs:subPropertyOf = dul:isPartOf -}}OntologyProperty:GovernmentType202947361292014-07-08T13:30:10Z -{{ObjectProperty -| labels = - {{label|de|Staatsform}} - {{label|en|government type}} - {{label|nl|staatsvorm}} - {{label|pt|tipo de governo}} -| rdfs:comment@en = broadly, the type of structure of its government -| rdfs:range = GovernmentType -| rdfs:subPropertyOf = dul:isClassifiedBy -}}OntologyProperty:Governor2022343361302014-07-08T13:30:18Z -{{ObjectProperty -| rdfs:label@en = governor -| rdfs:label@de = Gouverneur -| rdfs:label@el = κυβερνήτης -| rdfs:label@fr = gouverneur -| rdfs:range = Person -| rdfs:subPropertyOf = dul:coparticipatesWith -}}OntologyProperty:GovernorGeneral2022322361312014-07-08T13:30:28Z -{{ObjectProperty -| rdfs:label@en = governor general -| rdfs:range = Person -| rdfs:subPropertyOf = dul:coparticipatesWith -}}OntologyProperty:Governorate2026959259562013-06-13T14:56:43Z{{DatatypeProperty -| labels = -{{label|en|governorate}} -| rdfs:domain = PopulatedPlace -| rdfs:range = xsd:string -}}OntologyProperty:GoyaAward202948361322014-07-08T13:30:36Z -{{ObjectProperty -| rdfs:label@en = Goya Award -| rdfs:domain = Artist -| rdfs:range = Award -| rdfs:subPropertyOf = dul:coparticipatesWith -}}OntologyProperty:GradName20211875522122017-10-07T15:47:31Z{{DatatypeProperty -| labels = -{{label|en|GARDName}} -{{label|nl|GARDName}} -{{label|de|GARDName}} -{{label|fr|GARDName}} -| rdfs:domain = Disease -| rdfs:range = xsd:string -}}OntologyProperty:GradNum20211874522112017-10-07T15:46:54Z{{DatatypeProperty -| labels = -{{label|en|GARDNum}} -{{label|nl|GARDNum}} -{{label|de|GARDNum}} -{{label|fr|GARDNum}} -| rdfs:domain = Disease -| rdfs:range = xsd:string -}}OntologyProperty:Grades2023132525872017-10-31T08:47:19Z -{{ObjectProperty -| rdfs:label@en = grades -| rdfs:label@el = βαθμοί -| rdfs:domain = School -| rdfs:subPropertyOf = dul:sameSettingAs -}}OntologyProperty:GrammyAward202950361342014-07-08T13:30:52Z -{{ObjectProperty -| rdfs:label@en = Grammy Award -| rdfs:label@de = Grammy Award -| rdfs:domain = Artist -| rdfs:range = Award -| rdfs:subPropertyOf = dul:coparticipatesWith -}}OntologyProperty:Grandsire2026173361352014-07-08T13:31:01Z -{{ObjectProperty -| labels = - {{label|en|grandsire}} -| rdfs:domain = Animal -| rdfs:range = Animal -| rdfs:subPropertyOf = dul:sameSettingAs -}}OntologyProperty:Grave2028087392362015-01-13T21:53:23Z{{DatatypeProperty -| labels = -{{label|en|grave}} -{{label|nl|graf}} -{{label|de|Grab}} -| rdfs:domain = Person -| rdfs:range = xsd:string -}}OntologyProperty:GrayPage202951103582010-11-10T14:13:41Z{{DatatypeProperty -| rdfs:label@en = Gray page -| rdfs:domain = AnatomicalStructure -| rdfs:range = xsd:positiveInteger -| rdfs:comment@en = Refers to the famous 1918 edition of Gray's Anatomy. -}}OntologyProperty:GraySubject202952103592010-11-10T14:14:22Z{{DatatypeProperty -| rdfs:label@en = Gray subject -| rdfs:domain = AnatomicalStructure -| rdfs:range = xsd:positiveInteger -| rdfs:comment@en = Refers to the famous 1918 edition of Gray's Anatomy. -}}OntologyProperty:GreekName20211525522862017-10-08T18:54:16Z{{DatatypeProperty -| rdfs:label@en = name in ancient Greek -| rdfs:label@de = griechische Name -| rdfs:label@nl = oudgriekse naam -| rdfs:domain = owl:Thing -| rdfs:range = xsd:string -| rdfs:subPropertyOf = Name -}}OntologyProperty:GreenLongDistancePisteNumber2027203257532013-06-01T13:25:54Z{{DatatypeProperty -| labels = -{{label|en|green long distance piste number}} -| rdfs:domain = Place -| rdfs:range = xsd:nonNegativeInteger -}}OntologyProperty:GreenSkiPisteNumber2027196257462013-06-01T13:22:22Z{{DatatypeProperty -| labels = -{{label|en|green ski piste number}} -| rdfs:domain = Place -| rdfs:range = xsd:nonNegativeInteger -}}OntologyProperty:GridReference2023443199062012-11-21T18:13:04Z{{DatatypeProperty -| labels = -{{label|en|grid reference}} -{{label|nl|coördinaten}} -| rdfs:domain = Place -| rdfs:range = xsd:string -| rdfs:comment@en = Grid references define locations on maps using Cartesian coordinates. Grid lines on maps define the coordinate system, and are numbered to provide a unique reference to features (http://en.wikipedia.org/wiki/Grid_reference). -}}OntologyProperty:GrindingCapability2026014223672013-01-11T20:54:12Z{{DatatypeProperty -| labels = -{{label|en|grinding capability}} -{{label|nl|maal capaciteit}} -| rdfs:domain = Mill -| rdfs:range = xsd:string -| rdfs:comment@en = grinding capability for Mills -}}OntologyProperty:Gross202953538022020-12-01T17:57:05Z{{DatatypeProperty -| rdfs:label@en = gross -| rdfs:label@da = indtjening -| rdfs:label@el = ακαθάριστα -| rdfs:domain = Film -| rdfs:range = Currency -| owl:equivalentProperty=wikidata:P2139 -}}OntologyProperty:GrossDomesticProduct2022384525162017-10-18T12:00:25Z{{DatatypeProperty -| rdfs:label@en = gross domestic product (GDP) -| rdfs:label@de = Bruttoinlandsprodukt -| rdfs:comment@en = The nominal gross domestic product of a country (not per capita). -| rdfs:comment@de = Das nominale Bruttoinlandsprodukt eines Landes (nicht pro Einwohner). -| rdfs:domain = PopulatedPlace -| rdfs:range = xsd:float -}}OntologyProperty:GrossDomesticProductAsOf2023266121212011-04-13T13:26:22Z{{DatatypeProperty -| rdfs:label@en = gross domestic product as of -| rdfs:label@pt = produto interno bruto em -| rdfs:domain = PopulatedPlace -| rdfs:range = xsd:date -}}OntologyProperty:GrossDomesticProductNominalPerCapita2027927276852013-07-15T15:12:08Z{{ObjectProperty -| rdfs:label@en = gross domestic product nominal per capita -| rdfs:domain = PopulatedPlace -| rdfs:range = GrossDomesticProductPerCapita -}}OntologyProperty:GrossDomesticProductPerPeople2027160257012013-05-26T17:04:09Z{{DatatypeProperty -| labels = -{{label|en|gross domestic product per people}} -| rdfs:domain = Place -| rdfs:range = xsd:string -}}OntologyProperty:GrossDomesticProductPurchasingPowerParityPerCapita2027929276862013-07-15T15:12:58Z{{ObjectProperty -| rdfs:label@en = gross domestic product purchasing power parity per capita -| rdfs:domain = PopulatedPlace -| rdfs:range = GrossDomesticProductPerCapita -}}OntologyProperty:GrossDomesticProductRank2027123256562013-05-26T15:04:15Z{{DatatypeProperty -| labels = -{{label|en|gross domestic product rank}} -| rdfs:domain = Place -| rdfs:range = xsd:string -}}OntologyProperty:Ground202954361362014-07-08T13:31:09Z -{{ObjectProperty -| rdfs:label@en = ground -| rdfs:domain = SoccerClub -| rdfs:range = Place -| rdfs:subPropertyOf = dul:coparticipatesWith -}}OntologyProperty:GroundsForLiquidation2029372357032014-06-30T21:31:36Z{{DatatypeProperty -| rdfs:label@en = grounds for termination of activities -| rdfs:label@nl = reden van opheffing -| rdfs:domain = Company -| rdfs:range = rdf:langString -}}OntologyProperty:GroupCommemorated2026473237312013-02-14T09:53:17Z{{DatatypeProperty -| labels = -{{label|en|group commemorated}} -{{label|nl|groep mensen herdacht}} -| comments = -{{comment|en|Designates the category of people commemorated by a monument }} -{{comment|nl|Aanduiding van de categorie mensen die door dit monument worden herdacht}} -| rdfs:domain = Monument -| rdfs:range = xsd:string -| rdf:type = -| rdfs:subPropertyOf = -| owl:equivalentProperty = -}}OntologyProperty:GrowingGrape202955361372014-07-08T13:31:17Z -{{ObjectProperty -| rdfs:label@en = growing grape -| rdfs:domain = WineRegion -| rdfs:range = Grape -| rdfs:subPropertyOf = dul:isLocationOf -}}OntologyProperty:Guest202956361382014-07-08T13:31:26Z -{{ObjectProperty -| rdfs:label@en = guest -| rdfs:label@de = Gast -| rdfs:label@el = επισκέπτης -| rdfs:domain = TelevisionEpisode -| rdfs:range = Person -| rdfs:subPropertyOf = dul:hasParticipant -}}OntologyProperty:Gun2025624337542014-04-04T13:54:26Z{{ DatatypeProperty - - | rdfs:label@en = aircraft gun -| rdfs:label@de = Flugabwehrkanone - | rdfs:label@el = Πολυβόλο - | rdfs:domain = Aircraft - | rdfs:range = xsd:string - -}}OntologyProperty:GymApparatus2027652337552014-04-04T13:54:29Z{{ObjectProperty -| labels = -{{label|en|gym apparatus}} -{{label|de|Fitnessgerät}} -| rdfs:domain = Person -}}OntologyProperty:HairColor2023293528552018-02-08T20:44:27Z{{DatatypeProperty -| rdfs:label@en = hair color -| rdfs:label@de = Haarfarbe -| rdfs:label@ga = dath na gruaige -| rdfs:label@pl = kolor włosów -| rdfs:label@pt = cor do cabelo -| rdfs:domain = Person -| rdfs:range = xsd:string -| rdfs:subPropertyOf = -}}OntologyProperty:HairColour2027748337562014-04-04T13:54:34Z{{DatatypeProperty -| labels = -{{label|en|hair colour}} -{{label|de|Haarfarbe}} -| rdfs:domain = Person -| rdfs:range = xsd:string -}}OntologyProperty:Hairs2026813251602013-05-09T10:06:13Z{{DatatypeProperty -| labels = -{{label|en|hairs}} -| rdfs:domain = FictionalCharacter -| rdfs:range = xsd:string -}}OntologyProperty:HallOfFame202957337572014-04-04T13:54:39Z{{DatatypeProperty -| rdfs:label@en = hall of fame -| rdfs:label@de = Ruhmeshalle -| rdfs:domain = IceHockeyPlayer -| rdfs:range = xsd:string -}}OntologyProperty:Hand2027641337582014-04-04T13:54:43Z{{ObjectProperty -| labels = -{{label|en|hand}} -{{label|de|Hand}} -| rdfs:domain = Person -}}OntologyProperty:Handedness2023353475862015-04-03T09:36:22Z{{ObjectProperty -| rdfs:label@en = handedness -| rdfs:label@pt = habilidade com a mao -| rdfs:comment@en = an attribute of humans defined by their unequal distribution of fine motor skill between the left and right hands. -| rdfs:domain = Person -| rdfs:subPropertyOf = dul:hasQuality -| owl:equivalentProperty = wikidata:P552 -}}OntologyProperty:Handisport2027705269862013-07-04T12:20:13Z{{DatatypeProperty -| labels = -{{label|en|handisport}} -| rdfs:domain = Person -| rdfs:range = xsd:string -}}OntologyProperty:HasAbsorbedMunicipality2028174294612014-01-08T21:03:58Z{{ObjectProperty -| labels = -{{label|en|the previous municipality from which this one has been created or enlarged}} -{{label|nl|samengevoegde gemeente}} -| rdfs:domain = Municipality -| rdfs:range = FormerMunicipality -}}OntologyProperty:HasAnnotation20211451454162015-02-23T13:53:30Z'''{{Reserved for DBpedia}}''' - -{{ObjectProperty -| labels= -{{label|en|Indicates an annotation associated with this document}} -| rdfs:domain = Document -| rdfs:range = Annotation -}}OntologyProperty:HasChannel2026800511132016-05-25T08:43:48Z{{ObjectProperty -| rdfs:label@en = has channel -| rdfs:domain = owl:Thing -| rdfs:range = owl:Thing -<!--| rdfs:subPropertyOf = foaf:homepage --> -}}OntologyProperty:HasInput2026764250132013-04-18T10:45:37Z{{ObjectProperty -| rdfs:label@en = has input -| rdfs:domain = owl:Thing -| rdfs:range = owl:Thing -}}OntologyProperty:HasInsidePlace20211091455882015-03-08T13:57:42Z{{ObjectProperty -| rdfs:label@en = has inside place -| rdfs:label@fr = a un lieu intérieur -| rdfs:comment@fr = indique un autre lieu situé à l'intérieur. -| rdfs:comment@en = indicates another place situated inside. -| rdfs:domain = Place -| rdfs:range = Place -| owl:inverseOf = hasOutsidePlace -}}OntologyProperty:HasJunctionWith202958361412014-07-08T13:31:52Z -{{ObjectProperty -| rdfs:label@en = has junction with -| rdfs:label@el = σύνδεση -| rdfs:domain = Canal -| rdfs:range = Canal -| rdfs:subPropertyOf = dul:hasCommonBoundary -}}OntologyProperty:HasKMLData20210106454152015-02-23T13:53:15Z'''{{Reserved for DBpedia}}''' - -{{DatatypeProperty -| labels= -{{label|en|Has KML data associated with it (usually because of [https://commons.wikimedia.org/wiki/Commons:Geocoding/Overlay KML overlays])}} -| rdfs:domain = File -| rdfs:range = xsd:string -}}OntologyProperty:HasNaturalBust2023289121652011-04-15T09:47:05Z{{DatatypeProperty -| rdfs:label@en = has natural bust -| rdfs:label@pt = tem busto natural -| rdfs:domain = Person -| rdfs:range = xsd:string -}}OntologyProperty:HasOutsidePlace20211092537892020-10-23T09:50:39Z{{ObjectProperty -| rdfs:label@en = has outside place -| rdfs:label@fr = a un lieu extérieur -| rdfs:comment@fr = indique un autre lieu situé autour à l'extérieur. -| rdfs:comment@en = indicates another place situated around outside. -| rdfs:domain = Place -| rdfs:range = Place -| owl:inverseOf = hasInsidePlace -}}OntologyProperty:HasSurfaceForm2022441188302012-06-28T13:37:18Z'''{{Reserved for DBpedia}}''' - -{{DatatypeProperty -| rdfs:label@en = surface form, i.e the string after the pipe in internal links: <nowiki>[[resource|string]]</nowiki> -| rdfs:label@el = επιφάνεια από -| comments = -{{comment|en|Reserved for DBpedia. {{Reserved for DBpedia}}}} -| rdfs:range = xsd:string -}}OntologyProperty:HasVariant2022269361422014-07-08T13:32:00Z -{{ObjectProperty -| labels = - {{label|en|variant or variation}} - {{label|de|Variante oder Variation}} - {{label|nl|variant of variatie}} -| rdfs:comment@en = variant or variation, for example all variations of a color -| rdfs:subPropertyOf = dul:isSpecializedBy -}}OntologyProperty:Head202959361432014-07-08T13:32:16Z -{{ObjectProperty -| rdfs:label@en = head -| rdfs:domain = EducationalInstitution -| rdfs:range = Person -| rdfs:subPropertyOf = dul:coparticipatesWith -}}OntologyProperty:HeadAlloy202960361442014-07-08T13:32:24Z -{{ObjectProperty -| rdfs:label@en = head alloy -| rdfs:domain = AutomobileEngine -| rdfs:subPropertyOf = dul:hasConstituent -}}OntologyProperty:HeadChef2022524361452014-07-08T13:32:33Z -{{ObjectProperty -| labels = - {{label|en|head chef}} - {{label|de|Küchenchef}} - {{label|nl|chef-kok}} -| rdfs:domain = Restaurant -| rdfs:range = Person -| rdfs:subPropertyOf = dul:coparticipatesWith -}}OntologyProperty:HeadLabel202961348052014-05-14T11:24:53Z{{DatatypeProperty -| rdfs:label@en = head label -| rdfs:domain = School -| rdfs:range = rdf:langString -}}OntologyProperty:HeadOfFamily2029288337622014-04-04T13:55:00Z{{ObjectProperty -|labels = -{{label|en|family head}} -{{label|de|Familienoberhaupt}} -{{label|nl|hoofd van de familie}} -| rdfs:domain = Family -| rdfs:range = Person -}}OntologyProperty:Headquarter202962478192015-04-28T15:17:00Z{{ObjectProperty -| rdfs:label@en = headquarter -| rdfs:label@el = αρχηγείο -| rdfs:label@de = Firmensitz -| rdfs:label@de = Hauptsitz -| rdfs:label@fr = siège -| rdfs:label@ga = ceanncheathrú -| rdfs:label@pl = siedziba -| rdfs:range = PopulatedPlace -| rdfs:domain = Organisation -| rdfs:subPropertyOf = dul:hasLocation -| owl:equivalentProperty = wikidata:P159 -}}OntologyProperty:Headteacher202964361472014-07-08T13:32:50Z -{{ObjectProperty -| rdfs:label@en = head teacher -| rdfs:label@de = Schulleiter -| rdfs:domain = School -| rdfs:range = Person -| rdfs:subPropertyOf = dul:coparticipatesWith -}}OntologyProperty:Height202965536782020-07-30T21:31:37Z{{DatatypeProperty -| labels = -{{label|en|height}} -{{label|nl|hoogte}} -{{label|da|højde}} -{{label|de|Höhe}} -{{label|sl|višina}} -{{label|el|ύψος}} -{{label|pt|altura}} -{{label|fr|hauteur}} -{{label|ja|身長}} -| rdfs:range = Length -| rdf:type = owl:FunctionalProperty -| owl:equivalentProperty = schema:height, wikidata:P2048 -}}OntologyProperty:HeightAboveAverageTerrain2023085115922011-04-01T13:06:05Z{{DatatypeProperty -| rdfs:label@en = height above average terrain -| rdfs:domain = Broadcaster -| rdfs:range = Length -| rdfs:comment@en = Height above average terrain (HAAT) (or less popularly, EHAAT, Effective Height Above Average Terrain) is used extensively in FM radio and television, as it is actually much more important than effective radiated power (ERP) in determining the range of broadcasts (http://en.wikipedia.org/wiki/Height_above_average_terrain). -}}OntologyProperty:HeightAgainst2027695269712013-07-04T10:03:45Z{{DatatypeProperty -| labels = -{{label|en|height against}} -| rdfs:domain = Athlete -| rdfs:range = xsd:string -}}OntologyProperty:HeightAttack2027696269722013-07-04T10:04:06Z{{DatatypeProperty -| labels = -{{label|en|height attack}} -| rdfs:domain = Athlete -| rdfs:range = xsd:string -}}OntologyProperty:Heir202966361482014-07-08T13:32:59Z -{{ObjectProperty -| rdfs:label@en = heir -| rdfs:label@de = Erbe -| rdfs:comment = somebody who received a legacy -| rdfs:domain = Monarch -| rdfs:range = Person -| rdfs:subPropertyOf = dul:sameSettingAs -}}OntologyProperty:Heisman2027682269542013-07-04T09:27:15Z{{DatatypeProperty -| labels = -{{label|en|heisman}} -| rdfs:domain = Athlete -| rdfs:range = xsd:string -}}OntologyProperty:HeritageRegister2027481361492014-07-08T13:33:08Z -{{ObjectProperty -| labels = - {{label|en|heritage register}} - {{label|fr|inventaire du patrimoine}} -| comments = - {{comment|en|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.<ref>http://en.wikipedia.org/wiki/List_of_heritage_registers</ref>}} - {{comment|fr|inscrit à un inventaires dédiés à la conservation du patrimoine, naturel ou culturel, existants dans le monde.<ref>http://fr.wikipedia.org/wiki/Liste_des_inventaires_du_patrimoine</ref>}} -| rdfs:range = owl:Thing -| rdfs:domain = Place -| rdfs:subPropertyOf = dul:isMemberOf -}} -<references/>OntologyProperty:Hgncid202967191312012-07-31T11:18:32Z{{DatatypeProperty -| rdfs:label@en = HGNCid -| rdfs:label@ja = HGNCid -| rdfs:domain = Biomolecule -| rdfs:range = xsd:string -}}OntologyProperty:Highest20211910522992017-10-08T19:54:45Z{{ObjectProperty -| labels = - {{label|en|highest}} - {{label|de|höchster}} -| comments = - {{comment|en|The highest mountain of a mountain range.}} - {{comment|de|Der höchste Berg eines Gebirges.}} -| rdfs:domain = MountainRange -| rdfs:range = Mountain -}}OntologyProperty:HighestAltitude20211807519292017-02-20T12:02:27Z{{ObjectProperty -| labels = -{{label|en|highest altitude}} -{{label|ja|最高地点標高}} -| rdfs:domain = Place -| rdfs:range = Altitude -| rdfs:subPropertyOf = altitude -}}OntologyProperty:HighestBreak2023538126722011-05-07T13:41:25Z{{DatatypeProperty -| rdfs:label@en = highest break -| rdfs:label@de = Höchstes Break -| rdfs:domain = SnookerPlayer -| rdfs:range = xsd:integer -}}OntologyProperty:HighestBuildingInYear20296980572010-05-28T13:12:38Z{{DatatypeProperty -| rdfs:label@en = highest building in year -| rdfs:domain = Skyscraper -| rdfs:range = xsd:date -}}OntologyProperty:HighestMountain202971361502014-07-08T13:33:26Z -{{ObjectProperty -| rdfs:label@en = highest mountain -| rdfs:label@de = höchster Berg -| rdfs:range = Mountain -| rdfs:subPropertyOf = dul:isLocationOf -}}OntologyProperty:HighestPlace202972361512014-07-08T13:33:35Z -{{ObjectProperty -| rdfs:label@en = highest place -| rdfs:label@de = höchster Platz -| rdfs:range = PopulatedPlace -| rdfs:subPropertyOf = dul:isLocationOf -}}OntologyProperty:HighestPoint2026917475872015-04-03T09:37:27Z{{ObjectProperty -| labels = - {{label|en|highest point}} - {{label|el|υψηλότερο σημείο}} - {{label|de|höchste Erhebung}} -| rdfs:domain = Settlement -| rdfs:range = Place -| rdfs:subPropertyOf = dul:sameSettingAs -| owl:equivalentProperty = wikidata:P610 -}}OntologyProperty:HighestPointIsland2027066337972014-04-04T14:06:30Z{{DatatypeProperty -| labels = -{{label|en|highest point of the island}} -{{label|de|höchste Erhebung der Insel}} -| rdfs:domain = Island -| rdfs:range = xsd:string -}}OntologyProperty:HighestPosition202973361532014-07-08T13:33:51Z -{{ObjectProperty -| rdfs:label@en = highest position -| rdfs:label@de = Höchststand -| rdfs:range = geo:SpatialThing -| rdfs:subPropertyOf = dul:isLocationOf -}}OntologyProperty:HighestRank2023536126702011-05-07T13:35:27Z{{DatatypeProperty -| rdfs:label@en = highest rank -| rdfs:label@de = höchster Ranglistenplatz -| rdfs:domain = SnookerPlayer -| rdfs:range = xsd:integer -}}OntologyProperty:HighestRegion202974361542014-07-08T13:33:59Z -{{ObjectProperty -| labels = - {{label|en|highest region}} - {{label|nl|hoogste regio}} -| rdfs:domain = Island -| rdfs:range = PopulatedPlace -| rdfs:subPropertyOf = dul:isLocationOf -}}OntologyProperty:HighestState202975361552014-07-08T13:34:08Z -{{ObjectProperty -| rdfs:label@en = highest state -| rdfs:domain = Island -| rdfs:range = PopulatedPlace -| rdfs:subPropertyOf = dul:isLocationOf -}}OntologyProperty:Highschool202976361562014-07-08T13:34:16Z -{{ObjectProperty -| rdfs:label@en = highschool -| rdfs:label@de = Gymnasium -| rdfs:range = School -| rdfs:subPropertyOf = dul:coparticipatesWith -}}OntologyProperty:HighwaySystem2022110475882015-04-03T09:38:17Z{{ObjectProperty -| rdfs:label@en = highway system -| rdfs:comment@en = the highway system that a route is part of -| rdfs:domain = Road -| rdfs:subPropertyOf = dul:isPartOf -| owl:equivalentProperty = wikidata:P16 -}}OntologyProperty:HipSize2022485455012015-03-04T13:35:08Z{{DatatypeProperty - |rdfs:label@en=hip size - |rdfs:label@de = Hüftumfang - |rdfs:label@nl = heupomvang - |rdfs:label@ja = ヒップ -|label@bg = размер ханш - |rdfs:domain=Person - |rdfs:range=Length -}}OntologyProperty:HistoricalMap2027140337702014-04-04T13:55:30Z{{DatatypeProperty -| labels = -{{label|en|historical map}} -{{label|de|historische Karte}} -{{label|el|ιστορικός χάρτης}} -| rdfs:domain = Place -| rdfs:range = xsd:string -}}OntologyProperty:HistoricalName2027139348662014-05-15T05:21:05Z{{DatatypeProperty -| labels = -{{label|en|historical name}} -{{label|de|historischer Name}} -| rdfs:domain = Place -| rdfs:range = rdf:langString -}}OntologyProperty:HistoricalRegion2027314337722014-04-04T13:55:39Z{{DatatypeProperty -| labels = -{{label|en|historical region}} -{{label|de|historische Region}} -| rdfs:domain = PopulatedPlace -| rdfs:range = xsd:string -}}OntologyProperty:Hof2027664269632013-07-04T09:31:54Z{{DatatypeProperty -| labels = -{{label|en|hof}} -| rdfs:domain = Athlete -| rdfs:range = xsd:string -}}OntologyProperty:Homage2027582455022015-03-04T13:39:51Z{{DatatypeProperty -| labels = -{{label|en|homage}} -{{label|de|Huldigung}} -{{label|nl|eerbetoon}} -| rdfs:domain = Person -| rdfs:range = xsd:string -}}OntologyProperty:HomeArena2022754361582014-07-08T13:54:02Z -{{ObjectProperty -| rdfs:label@en = home arena -| rdfs:label@de = Heimarena -| rdfs:range = Arena -| rdfs:subPropertyOf = dul:sameSettingAs -}}OntologyProperty:HomeColourHexCode2026406235382013-01-23T23:55:48Z{{DatatypeProperty -| labels = -{{label|en|colour hex code of home jersey or its parts}} -{{label|de|Farben Hex Code des Heimtrikots oder Teile dieses}} -| rdfs:domain = owl:Thing -| rdfs:range = xsd:string -| comments = -{{comment|en|A colour represented by its hex code (e.g.: #FF0000 or #40E0D0).}} -| rdfs:subPropertyOf = colourHexCode -}}OntologyProperty:HomeStadium2022292361592014-07-08T13:54:21Z -{{ObjectProperty -| rdfs:label@en = home stadium -| rdfs:label@de = Heimstadion -| rdfs:range = Stadium -| rdfs:subPropertyOf = dul:sameSettingAs -}}OntologyProperty:Homeport2023108475892015-04-03T09:39:29Z{{ObjectProperty -| rdfs:label@en = homeport -| rdfs:label@pl = port macierzysty -| rdfs:domain = Ship -| rdfs:range = Place -| rdfs:subPropertyOf = dul:hasLocation -| owl:equivalentProperty = wikidata:P504 -}}OntologyProperty:Hometown202977361612014-07-08T13:54:37Z -{{ObjectProperty -| rdfs:label@en = home town -| rdfs:label@de = Heimatort -| rdfs:domain = Agent -| rdfs:range = Settlement -| rdfs:subPropertyOf = dul:hasLocation -}}OntologyProperty:Honours202978486942015-08-10T10:17:49Z{{ObjectProperty -| rdfs:label@en = honours -| rdfs:label@de = Ehrungen -| rdfs:label@el = διακρίσεις -| rdfs:label@nl = eerbewijzen -| rdfs:comment@en = Honours bestowed upon a Person, Organization, RaceHorse, etc -| rdfs:subPropertyOf = dul:sameSettingAs -}}OntologyProperty:HopmanCup2027742270242013-07-04T13:16:42Z{{DatatypeProperty -| labels = -{{label|en|hopman cup}} -| rdfs:domain = Athlete -| rdfs:range = xsd:string -}}OntologyProperty:HorseRidingDiscipline2027862526442017-11-03T16:03:47Z{{ObjectProperty -| labels = -{{label|en|horse riding discipline}} -| rdfs:domain = Athlete -| rdfs:range = Sport -}}OntologyProperty:House202979361632014-07-08T13:55:21Z -{{ObjectProperty -| labels = - {{label|en|house}} - {{label|el|σπίτι}} -| rdfs:domain = Legislature -| rdfs:range = Legislature -| rdfs:subPropertyOf = dul:sameSettingAs -}}OntologyProperty:HraState2027247259032013-06-12T14:38:32Z{{DatatypeProperty -| labels = -{{label|en|hra state}} -| rdfs:domain = PopulatedPlace -| rdfs:range = xsd:string -}}OntologyProperty:HsvCoordinateHue202238084112010-05-28T14:00:40Z{{DatatypeProperty -| rdfs:label@en = hue coordinate in the HSV colour space -| rdfs:domain = Colour -| rdfs:range = xsd:integer -}}OntologyProperty:HsvCoordinateSaturation202238284132010-05-28T14:00:55Z{{DatatypeProperty -| rdfs:label@en = saturation coordinate in the HSV colour space -| rdfs:domain = Colour -| rdfs:range = xsd:integer -}}OntologyProperty:HsvCoordinateValue202238184122010-05-28T14:00:48Z{{DatatypeProperty -| rdfs:label@en = value coordinate in the HSV colour space -| rdfs:domain = Colour -| rdfs:range = xsd:integer -}}OntologyProperty:HubAirport202980361642014-07-08T13:55:25Z -{{ObjectProperty -| rdfs:label@en = hub airport -| rdfs:domain = Airline -| rdfs:range = Airport -| rdfs:subPropertyOf = dul:hasLocation -}}OntologyProperty:HumanDevelopmentIndex2023263458552015-03-14T21:37:12Z{{DatatypeProperty -| rdfs:label@en = Human Development Index (HDI) -| rdfs:label@de = Index für menschliche Entwicklung (HDI) -| rdfs:label@pt = Índice de Desenvolvimento Humano (IDH) -| rdfs:comment@en = a composite statistic used to rank countries by level of "human development" -| rdfs:domain = PopulatedPlace -| rdfs:range = xsd:float -}}OntologyProperty:HumanDevelopmentIndexAsOf2023265121202011-04-13T13:20:45Z{{DatatypeProperty -| rdfs:label@en = human development index as of -| rdfs:label@pt = Índice de desenvolvimento humano em -| rdfs:domain = PopulatedPlace -| rdfs:range = xsd:date -}}OntologyProperty:HumanDevelopmentIndexRank2027125256582013-05-26T15:05:36Z{{DatatypeProperty -| labels = -{{label|en|human development index rank}} -| rdfs:domain = Place -| rdfs:range = xsd:string -}}OntologyProperty:HumanDevelopmentIndexRankingCategory2023329361652014-07-08T13:55:28Z -{{ObjectProperty -| rdfs:label@en = human development index (HDI) category -| rdfs:label@pt = categoria do indice de desenvolvimento humano (IDH) -| rdfs:domain = PopulatedPlace -| rdfs:subPropertyOf = dul:isClassifiedBy -}}OntologyProperty:Hybrid2026252361662014-07-08T13:55:32Z -{{ObjectProperty -| labels = - {{label|en|hybrid}} -| comments = - {{comment|en|Plants from which another plant (or cultivar) has been developed from}} -| rdfs:domain = Plant -| rdfs:range = Plant -| rdfs:subPropertyOf = dul:isSpecializedBy -}}OntologyProperty:IafdId2023298121742011-04-15T09:57:16Z{{DatatypeProperty -| rdfs:label@en = iafd id -| rdfs:label@el = iafd id -| rdfs:label@pt = código no iafd -| rdfs:domain = Film -| rdfs:range = xsd:string -}}OntologyProperty:IataAirlineCode2026471287252013-11-13T08:31:30Z{{DatatypeProperty -| labels = -{{label|en|IATA code}} -| comments = -{{comment|en|IATA designation for airline companies }} -| rdfs:domain = Airline -| rdfs:range = xsd:string -| rdf:type = -| rdfs:subPropertyOf = -| owl:equivalentProperty = wikidata:P229 -}}OntologyProperty:IataLocationIdentifier2022157287272013-11-13T08:36:20Z{{DatatypeProperty -| rdfs:label@en = IATA Location Identifier -| rdfs:label@el = ΙΑΤΑ -| rdfs:domain = Infrastructure -| rdfs:range = xsd:string -| rdfs:comment@en = An IATA airport code, also known as IATA location identifier, IATA station code or simply a location identifier, is a three-letter code designating many airports around the world, defined by the International Air Transport Association (IATA) (http://en.wikipedia.org/wiki/International_Air_Transport_Association_airport_code). -| owl:equivalentProperty = wikidata:P238 -}}OntologyProperty:IbdbId2023830133622011-06-06T11:47:20Z{{DatatypeProperty -| rdfs:label@en = IBDB ID -| rdfs:domain = Play -| rdfs:range = xsd:string -| rdfs:comment@en = The Internet Broadway Database ID (IBDB ID) from ibdb.com. -}}OntologyProperty:IcaoAirlineCode2026472287262013-11-13T08:33:47Z{{DatatypeProperty -| labels = -{{label|en|ICAO code}} -| comments = -{{comment|en|ICAO designation for airline companies }} -| rdfs:domain = Airline -| rdfs:range = xsd:string -| rdf:type = -| rdfs:subPropertyOf = -| owl:equivalentProperty = wikidata:P230 -}}OntologyProperty:IcaoLocationIdentifier2022158287282013-11-13T08:37:32Z{{DatatypeProperty -| rdfs:label@en = ICAO Location Identifier -| rdfs:label@el = ΙΚΑΟ -| rdfs:domain = Airport -| rdfs:range = xsd:string -| owl:equivalentProperty = wikidata:P239 -}}OntologyProperty:Icd120211200475222015-04-02T18:06:08Z{{DatatypeProperty -| labels = -{{label|en|ICD1}} -{{label|de|ICD1}} -{{label|nl|ICD1}} -| rdfs:domain = Disease -| rdfs:range = xsd:string -}}OntologyProperty:Icd10202981475902015-04-03T09:40:24Z{{DatatypeProperty -| labels = -{{label|en|ICD10}} -{{label|nl|ICD10}} -| rdfs:domain = Disease -| rdfs:range = xsd:string -| owl:equivalentProperty = wikidata:P494 -}}OntologyProperty:Icd9202982475912015-04-03T09:41:10Z{{DatatypeProperty -| labels = -{{label|en|ICD9}} -{{label|de|ICD9}} -{{label|nl|ICD9}} -| rdfs:domain = Disease -| rdfs:range = xsd:string -| owl:equivalentProperty = wikidata:P493 -}}OntologyProperty:Icdo202983237012013-02-11T09:20:29Z{{DatatypeProperty -| labels = -{{label|en|ICDO}} -{{label|nl|ICDO}} -| rdfs:domain = Disease -| rdfs:range = xsd:string -}}OntologyProperty:IconographicAttributes20210993433302015-02-06T14:51:14Z{{DatatypeProperty -| rdfs:label@en = iconographic attributes -| rdfs:domain = Saint -| rdfs:range = rdf:langString -| rdfs:comment@en = Standard iconographic elements used when depicting a Saint: pontifical, episcopal, insignia, martyrdom instruments -}}OntologyProperty:Id202984537132020-09-06T12:15:08Z{{DatatypeProperty -| rdfs:label@en = id -| rdfs:domain = WorldHeritageSite -| rdfs:range = xsd:string -| owl:equivalentProperty = bag:identificatiecode -}}OntologyProperty:IdAllocine20211070513172016-06-30T10:13:40Z{{DatatypeProperty -| labels = -{{label|en|Allocine ID}} -{{label|fr|ID Allocine }} -| rdfs:domain = Film -| rdfs:range = xsd:string -| rdfs:subPropertyOf = -| rdfs:comment@en = ID of a film on Allocine -| rdfs:comment@fr = ID d'un film sur Allocine -}}OntologyProperty:IdNumber2027769270602013-07-05T08:01:52Z{{DatatypeProperty -| labels = -{{label|en|id number}} -| rdfs:domain = Person -| rdfs:range = xsd:nonNegativeInteger -}}OntologyProperty:IdentificationSymbol20298580622010-05-28T13:13:15Z{{DatatypeProperty -| rdfs:label@en = identification symbol -| rdfs:domain = MilitaryUnit -| rdfs:range = xsd:string -}}OntologyProperty:Ideology2023259475922015-04-03T09:41:55Z{{ObjectProperty -| labels = - {{label|en|ideology}} - {{label|el|ιδεολογία}} - {{label|nl|ideologie}} - {{label|de|Ideologie}} - {{label|pt|ideologia}} -| rdfs:domain = Agent -| rdfs:range = Ideology -| rdfs:subPropertyOf = dul:conceptualizes -| owl:equivalentProperty = wikidata:P1142 -}}OntologyProperty:IftaAward202986361682014-07-08T13:55:53Z -{{ObjectProperty -| rdfs:label@en = IFTA Award -| rdfs:domain = Actor -| rdfs:range = Award -| rdfs:subPropertyOf = dul:coparticipatesWith -}}OntologyProperty:IihfHof2027794270952013-07-05T13:17:31Z{{DatatypeProperty -| labels = -{{label|en|lihf hof}} -| rdfs:domain = Person -| rdfs:range = xsd:string -}}OntologyProperty:Illiteracy2023807337932014-04-04T14:01:21Z{{DatatypeProperty -| rdfs:label@en = illiteracy -| rdfs:label@de = Analphabetismus -| rdfs:label@pt = analfabetismo -| rdfs:domain = PopulatedPlace -| rdfs:range = xsd:float -}}OntologyProperty:Illustrator202987476142015-04-03T10:06:59Z{{ObjectProperty -| labels = - {{label|en|illustrator}} - {{label|de|Illustrator}} - {{label|nl|illustrator}} - {{label|fr|illustrateur}} - {{label|nl|illustrator}} -| rdfs:domain = WrittenWork -| rdfs:range = Person -| owl:equivalentProperty = schema:illustrator, wikidata:P110 -| rdfs:comment@en = Illustrator (where used throughout and a major feature) -| rdfs:subPropertyOf = dul:coparticipatesWith -}}OntologyProperty:ImageSize2025194515312016-09-24T10:27:54Z{{DatatypeProperty -|labels = - {{label|en|image size (px)}} - {{label|nl|afbeeldingsgrootte (px)}} - {{label|de|Bildgröße (px)}} - {{label|el|μέγεθος εικόνας (px1)}} - {{label|ja|イメージサイズ (px2)}} - {{label|fr|taille de l'image (px)}} - {{label|es|tamaño de la imagen (px)}} -| rdfs:comment@en = the image size expressed in pixels -| rdfs:domain = owl:Thing -| rdfs:range = xsd:integer -}}OntologyProperty:ImdbId202988528632018-02-13T08:37:57Z{{DatatypeProperty -| labels = -{{label|en|IMDB id}} -{{label|nl|IMDB id}} -{{label|el|imdb id}} -{{label|ja|IMDb id}} -|comments= -{{comment|en|International Movie Database ID. Applies to Films, Actors, etc}} -| rdfs:range = xsd:string -| owl:equivalentProperty = wikidata:P345 -| rdfs:subPropertyOf = code -}}OntologyProperty:ImpactFactor2023748132042011-05-25T16:49:27Z{{DatatypeProperty -| rdfs:label@en = impact factor -| rdfs:label@de = Impact Factor -| rdfs:domain = AcademicJournal -| rdfs:range = xsd:double -| rdfs:comment@en = The impact factor, often abbreviated IF, is a measure reflecting the average number of citations to articles published in science and social science journals. -| rdfs:comment@de = 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öffentlichten Artikel zitieren. Je höher der Impact Factor, desto angesehener ist eine Fachzeitschrift. -}}OntologyProperty:ImpactFactorAsOf2023747132032011-05-25T16:49:13Z{{DatatypeProperty -| rdfs:label@en = impact factor as of -| rdfs:label@de = Impact Factor ist von -| rdfs:domain = AcademicJournal -| rdfs:range = xsd:gYear -| rdfs:comment@en = Census year of the imapct factor. -| rdfs:comment@de = Erhebungsjahr des Impact Factors. -}}OntologyProperty:ImportantStation20211893522562017-10-08T09:53:06Z{{ObjectProperty -| labels = - {{label|en|important station}} - {{label|fr|important nœud d'échanges}} - {{label|de|wichtiger Verkehrsknotenpunkt}} -| rdfs:domain = PublicTransitSystem -| rdfs:range = Station -| comments = -{{comment|en|Destinations, depots, junctions, major stops, hubs...}} -}}OntologyProperty:ImposedDanseCompetition2028074282372013-09-04T09:16:58Z{{DatatypeProperty -| labels = -{{label|en|imposed danse competition}} -| rdfs:domain = Person -| rdfs:range = xsd:string -}}OntologyProperty:ImposedDanseScore2028073282362013-09-04T09:15:47Z{{DatatypeProperty -| labels = -{{label|en|imposed danse score}} -| rdfs:domain = Person -| rdfs:range = xsd:string -}}OntologyProperty:InCemetery2029350342962014-04-08T09:38:17Z{{ObjectProperty -| labels = -{{label|en|in cemetery}} -{{label|nl|op kerkhof}} -| rdfs:domain = GraveMonument -| rdfs:range = Cemetery -}}OntologyProperty:Inchi2023005319282014-02-15T10:30:33Z{{DatatypeProperty -| rdfs:label@en = The IUPAC International Chemical Identifier -| rdfs:label@de = Internationale chemische Bezeichnung der IUPAC -| rdfs:label@nl = IUPAC internationale chemische identifier -| rdfs:domain = ChemicalCompound -| rdfs:range = xsd:string -}}OntologyProperty:Inclination20298980642010-05-28T13:13:30Z{{DatatypeProperty -| rdfs:label@en = inclination -| rdfs:domain = Spacecraft -| rdfs:range = xsd:float -}}OntologyProperty:Income2027292337802014-04-04T13:56:16Z{{DatatypeProperty -| labels = -{{label|en|income}} -{{label|de|Einkommen}} -| rdfs:domain = PopulatedPlace -| rdfs:range = xsd:string -}}OntologyProperty:Incumbent2022356361702014-07-08T13:55:58Z -{{ObjectProperty -| labels = - {{label|en|incumbent}} - {{label|de|Amtsinhaber}} - {{label|nl|plaatsbekleder}} -| rdfs:range = Person -| rdfs:subPropertyOf = dul:sameSettingAs -}}OntologyProperty:IndividualisedGnd2027367537702020-10-15T11:56:05Z{{DatatypeProperty -| rdfs:label@en = individualised GND number -| rdfs:label@de = Gemeinsame Normdatei -| rdfs:comment@en = 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. -| rdfs:range = xsd:string -| owl:equivalentProperty = wikidata:P227, gnd:gndIdentifier -| rdfs:subPropertyOf = code -}}OntologyProperty:IndividualisedPnd2024031181532012-05-05T19:48:53Z{{DatatypeProperty -| rdfs:label@en = individualised PND number -| rdfs:label@de = Personennamendatei -| rdfs:comment@en = 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. -| rdfs:domain = Person -| rdfs:range = xsd:nonNegativeInteger -}}OntologyProperty:Industry202990475932015-04-03T09:43:56Z{{ObjectProperty -| rdfs:label@en = industry -| rdfs:label@de = Industrie -| rdfs:label@fr = industrie -| rdfs:domain = Company -| rdfs:subPropertyOf = dul:isClassifiedBy -| owl:equivalentProperty = wikidata:P452 -}}OntologyProperty:InfantMortality2023806337832014-04-04T13:56:27Z{{DatatypeProperty -| rdfs:label@en = infant mortality -| rdfs:label@de = Säuglingssterblichkeit -| rdfs:label@pt = mortalidade infantil -| rdfs:domain = PopulatedPlace -| rdfs:range = xsd:float -}}OntologyProperty:Inflow202991524572017-10-15T20:46:33Z{{ObjectProperty -| rdfs:label@en = inflow -| rdfs:label@de = Zufluss -| rdfs:label@el = εισροή -| rdfs:domain = BodyOfWater -| rdfs:range = BodyOfWater -| rdfs:subPropertyOf = dul:hasCommonBoundary -| owl:equivalentProperty = wikidata:P200 -}}OntologyProperty:Influenced202992486272015-08-06T14:10:08Z{{ObjectProperty -| rdfs:label@en = influenced -| rdfs:label@de = beeinflusst -| rdfs:label@fr = a influencé -| rdfs:label@el = επηρέασε -| rdfs:subPropertyOf = dul:coparticipatesWith -| rdfs:comment@en = The subject influenced the object. inverseOf influencedBy. Subject and object can be Persons or Works (eg ProgrammingLanguage) -}}OntologyProperty:InfluencedBy202993486282015-08-06T14:10:41Z{{ObjectProperty -| labels = - {{label|en|influenced by}} - {{label|de|beeinflusst durch}} - {{label|fr|influencé par}} - {{label|el|επιρροές}} - {{label|nl|beïnvloed door}} -| rdfs:subPropertyOf = dul:sameSettingAs -| rdfs:comment@en = The subject was influenced by the object. inverseOf influenced. Subject and object can be Persons or Works (eg ProgrammingLanguage) -}}OntologyProperty:Information2027174537732020-10-19T16:27:29Z{{DatatypeProperty -| labels = -{{label|en|information}} -{{label|de|Informationen}} -| rdfs:domain = Place -| rdfs:range = xsd:string -| owl:equivalentProperty=gn:wikipediaArticle -}}OntologyProperty:InformationName2027175257242013-06-01T10:18:48Z{{DatatypeProperty -| labels = -{{label|en|information name}} -| rdfs:domain = Place -| rdfs:range = xsd:string -}}OntologyProperty:Ingredient2023932487532015-08-13T09:52:13Z{{ObjectProperty -| rdfs:label@en = ingredient -| rdfs:label@de = Zutat -| rdfs:domain = Food -| rdfs:range = owl:Thing -| rdfs:comment@en = Main ingredient used to prepare a specific Food or Beverage. For strings use ingredientName, for objects use ingredient. -| rdfs:subPropertyOf = dul:hasPart -}}OntologyProperty:IngredientName20211298487522015-08-13T09:52:02Z{{DatatypeProperty -| rdfs:label@en = ingredient name (literal) -| rdfs:domain = Food -| rdfs:range = xsd:string -| rdfs:comment@en = Main ingredient used to prepare a specific Food or Beverage. For strings use ingredientName, for objects use ingredient. -| rdfs:subPropertyOf = dul:hasPart -}}OntologyProperty:InitiallyUsedFor2027480337882014-04-04T13:56:55Z{{DatatypeProperty -| labels = -{{label|en|initally used for}} -{{label|de|anfänglich verwendet}} -{{label|fr|usage initial}} -{{label|es|uso inicial}} -| rdfs:domain = ArchitecturalStructure -| rdfs:range = xsd:string -| rdfs:comment@en = Initial use of the architectural structure. -}} - -See also [[OntologyProperty:CurrentlyUsedFor]]OntologyProperty:Inn2022928108472011-01-19T21:14:32Z{{DatatypeProperty -| rdfs:label@en = INN -| rdfs:label@fr = DCI -| rdfs:domain = ChemicalCompound -| rdfs:comment@en = International Nonproprietary Name given to a pharmaceutical substance -| rdfs:range = xsd:string -}}OntologyProperty:Innervates202994361762014-07-08T13:56:17Z -{{ObjectProperty -| rdfs:label@en = innervates -| rdfs:domain = Nerve -| rdfs:range = AnatomicalStructure -| rdfs:subPropertyOf = dul:hasCommonBoundary -}}OntologyProperty:Inscription20210402393452015-01-16T20:21:23Z{{DatatypeProperty -| labels= -{{label|en|inscription}} -| comments= -{{comment|en|Text of an inscription on the object}} -| rdfs:domain = owl:Thing -| rdfs:range = xsd:string -}}OntologyProperty:InseeCode2021689483712015-06-16T06:06:36Z{{DatatypeProperty -| labels = -{{label|en|INSEE code}} -{{label|nl|INSEE-code}} -| rdfs:subPropertyOf = codeSettlement -| rdfs:domain = Settlement -| rdfs:range = xsd:string -| rdfs:comment@en = numerical indexing code used by the French National Institute for Statistics and Economic Studies (INSEE) to identify various entities -| owl:equivalentProperty = wikidata:P374 -}}OntologyProperty:InstalledCapacity2029586527752018-01-23T15:02:05Z{{DatatypeProperty -| rdfs:label@en = installed capacity -| rdfs:domain = PowerStation -| rdfs:range = Power -| rdf:type = owl:FunctionalProperty -| owl:equivalentProperty = wikidata:P2109 -}}OntologyProperty:Institution2026135466112015-03-20T06:39:44Z{{ObjectProperty -| labels = - {{label|en|institution}} - {{label|de|Institution}} - {{label|nl|institutie}} -| rdfs:domain = -| rdfs:range = Organisation -| rdfs:subPropertyOf = dul:isMemberOf -}}OntologyProperty:Instrument202995475952015-04-03T09:47:06Z{{ObjectProperty -| labels = - {{label|en|instrument}} - {{label|de|Instrument}} - {{label|el|όργανο}} - {{label|nl|instrument}} -| rdfs:range = Instrument -| rdfs:domain = Artist -| rdfs:subPropertyOf = dul:coparticipatesWith -| owl:equivalentProperty = wikidata:P1303 -}}OntologyProperty:Intercommunality2021688361792014-07-08T13:56:26Z -{{ObjectProperty -| rdfs:label@en = intercommunality -| rdfs:range = PopulatedPlace -| rdfs:subPropertyOf = dul:isPartOf -}}OntologyProperty:Interest202996337912014-04-04T13:57:06Z{{DatatypeProperty -| rdfs:label@en = interest -| rdfs:label@de = Interesse -| rdfs:label@el = ενδιαφέρον -| rdfs:domain = SiteOfSpecialScientificInterest -| rdfs:range = xsd:string -}}OntologyProperty:InternationalAffiliation2023341361802014-07-08T13:56:30Z -{{ObjectProperty -| rdfs:label@en = international affiliation -| rdfs:label@pt = afiliacao internacional -| rdfs:domain = PoliticalParty -| rdfs:subPropertyOf = dul:isMemberOf -}}OntologyProperty:InternationalPhonePrefix2026925338672014-04-04T14:42:37Z{{DatatypeProperty -| labels = -{{label|en|international phone prefix}} -{{label|de|internationale Vorwahl}} -| rdfs:domain = PopulatedPlace -| rdfs:range = xsd:string -}}OntologyProperty:InternationalPhonePrefixLabel2026926253912013-05-25T10:52:23Z{{DatatypeProperty -| labels = -{{label|en|international phone prefix label}} -| rdfs:domain = PopulatedPlace -| rdfs:range = xsd:string -}}OntologyProperty:Internationally202997338022014-04-04T14:23:47Z{{DatatypeProperty -| rdfs:label@en = internationally -| rdfs:label@de = international -| rdfs:domain = Company -| rdfs:range = xsd:boolean -}}OntologyProperty:Introduced202998525542017-10-26T10:30:07Z{{DatatypeProperty -| rdfs:label@en = introduced -| rdfs:label@de = eingeführt -| rdfs:range = xsd:date -}}OntologyProperty:IntroductionDate202999338042014-04-04T14:23:55Z{{DatatypeProperty -| rdfs:label@en = introduction date -| rdfs:label@de = Einführungsdatum -| rdfs:domain = MeanOfTransportation -| rdfs:range = xsd:date -}}OntologyProperty:IobdbId2023833133652011-06-06T12:59:32Z{{DatatypeProperty -| rdfs:label@en = IOBDB ID -| rdfs:domain = Play -| rdfs:range = xsd:string -| rdfs:comment@en = Lortel Archives Internet Off-Broadway database "show id" from lortel.org. -}}OntologyProperty:IsCityState2026877492242015-10-15T07:21:04Z{{DatatypeProperty -| labels = -{{label|en|is a city state}} -{{label|de|ist ein Stadtstaat}} -| rdfs:domain = Settlement -| rdfs:range = xsd:string -}}OntologyProperty:IsHandicappedAccessible2023246120692011-04-08T10:28:12Z{{DatatypeProperty -| rdfs:label@en = is handicapped accessible -| rdfs:label@de = ist rollstuhlgerecht -| rdfs:domain = Station -| rdfs:range = xsd:boolean -| rdfs:comment@en = True if the station is handicapped accessible. -}}OntologyProperty:IsPartOf2021003536632020-07-30T21:16:54Z{{ObjectProperty -| rdfs:label@en = is part of -| rdfs:label@es = es parte de -| rdfs:label@de = ist ein Teil von -| rdfs:label@pl = jest częścią -| rdfs:label@fr = fait partie de -| rdfs:domain = owl:Thing -| rdfs:range = owl:Thing -| rdfs:subPropertyOf = dul:isPartOf -| owl:equivalentProperty = schema:isPartOf, wikidata:P361 -}}OntologyProperty:IsPartOfAnatomicalStructure2023364396152015-01-20T15:01:58Z{{ObjectProperty -| rdfs:label@en = is part of anatomical structure -| rdfs:label@es = es parte de una estructura anatómica -| rdfs:label@de = ist ein Teil von anatomischer Struktur -| rdfs:domain = Brain -| rdfs:range = AnatomicalStructure -| rdfs:subPropertyOf = isPartOf, dul:isPartOf -}}OntologyProperty:IsPartOfMilitaryConflict2023365361832014-07-08T13:56:41Z -{{ObjectProperty -| rdfs:label@en = is part of military conflict -| rdfs:label@de = ist Teil des militärischen Konflikts -| rdfs:domain = MilitaryConflict -| rdfs:range = MilitaryConflict -| rdfs:subPropertyOf = isPartOf, dul:isPartOf -}}OntologyProperty:IsPartOfName2023338486612015-08-06T16:38:12Z{{DatatypeProperty -| rdfs:label@en = is part of (literal) -| rdfs:label@de = ist Teil -| rdfs:range = xsd:string -| rdfs:comment@en = Name of another thing that this thing is part of. Use for infobox "part of" properties given as text; for objects use isPartOf -}}OntologyProperty:IsPartOfWineRegion2021263361842014-07-08T13:56:45Z -{{ObjectProperty -| rdfs:label@en = is part of wine region -| rdfs:label@de = ist ein Teil der Weinregion -| rdfs:domain = WineRegion -| rdfs:range = WineRegion -| rdfs:subPropertyOf = isPartOf, dul:isPartOf -}}OntologyProperty:IsPeerReviewed2023740131962011-05-25T16:45:03Z{{DatatypeProperty -| rdfs:label@en = is peer reviewed -| rdfs:domain = AcademicJournal -| rdfs:range = xsd:boolean -| rdfs:comment@en = In academia peer review is often used to determine an academic papers suitability for publication. -}}OntologyProperty:IsRouteStop20211080455712015-03-08T13:04:56Z{{ObjectProperty -| labels = - {{label|en|is route stop}} - {{label|fr|est un arrêt}} -| rdfs:domain = Place -| rdfs:range = RouteStop -| rdfs:comment@en = indicate a place is a stop on a road. -| rdfs:comment@fr = indique qu'un lieu est un arrêt sur une route. - -}}OntologyProperty:Isbn2021001462652015-03-18T15:15:07Z{{DatatypeProperty -| labels = -{{label|en|ISBN}} -{{label|nl|ISBN}} -| rdfs:domain = WrittenWork -| rdfs:range = xsd:string -| owl:equivalentProperty = schema:isbn, wikidata:P212, wikidata:P957 -| rdfs:comment@en = The International Standard Book Number (ISBN) is a unique numeric commercial book identifier based upon the 9-digit Standard Book Numbering (SBN) code. -}}OntologyProperty:Isil2022937475962015-04-03T09:48:06Z{{DatatypeProperty -| rdfs:label@en = International Standard Identifier for Libraries and Related Organizations (ISIL) -| rdfs:domain = Library -| rdfs:range = xsd:string -| owl:equivalentProperty = wikidata:P791 -| rdfs:comment@en = An ISIL should internationally identify a library. At least German libraries (DE-*) can be mapped to http://lobid.org/ -}}OntologyProperty:Island2021002503292016-02-05T08:23:02Z{{ObjectProperty -| rdfs:label@en = island -| rdfs:label@de = Insel -| rdfs:label@el = νησιά -| rdfs:domain = BodyOfWater -| rdfs:range = Island -| rdfs:subPropertyOf = dul:isLocationOf -}}OntologyProperty:IsniId2028420528772018-02-13T10:44:36Z{{DatatypeProperty -| labels = -{{label|en|ISNI Id}} -| comments = -{{comment|en|ISNI is a method for uniquely identifying the public identities of contributors to media content such as books, TV programmes, and newspaper articles.}} -| rdfs:range = xsd:string -| owl:equivalentProperty = wikidata:P213 -| rdfs:subPropertyOf = code -}}OntologyProperty:Iso31661Code2025679456342015-03-12T09:21:01Z{{DatatypeProperty -| rdfs:label@en = ISO 3166-1 code -| rdfs:comment@en = defines codes for the names of countries, dependent territories, and special areas of geographical interest<ref name="iso31661Code">http://en.wikipedia.org/wiki/ISO_3166-1</ref> -| rdfs:domain = Place -| rdfs:range = xsd:string -| owl:equivalentProperty = wikidata:P297, wikidata:P298, wikidata:P299 -}} -==References== -<references/>OntologyProperty:Iso6391Code2023701503462016-02-12T20:57:19Z{{DatatypeProperty -| labels = - {{label|en|ISO 639-1 code}} - {{label|nl|ISO 639-1 code}} - {{label|pl|kod ISO 639-1}} -| rdfs:domain = Language -| rdfs:range = xsd:string -| rdfs:subPropertyOf = LanguageCode <!-- dul:isClassifiedBy -- defined as object property, see https://github.com/dbpedia/ontology-tracker/issues/9 --> -| owl:equivalentProperty = wikidata:P218 -}}OntologyProperty:Iso6392Code2023700503472016-02-12T20:58:02Z{{DatatypeProperty -| labels = - {{label|en|ISO 639-2 code}} - {{label|nl|ISO 639-2 code}} - {{label|pl|kod ISO 639-2}} -| rdfs:domain = Language -| rdfs:range = xsd:string -| rdfs:subPropertyOf = LanguageCode <!-- dul:isClassifiedBy -- defined as object property, see https://github.com/dbpedia/ontology-tracker/issues/9 --> -| owl:equivalentProperty = wikidata:P219 -}}OntologyProperty:Iso6393Code2023693503482016-02-12T20:59:06Z{{DatatypeProperty -| labels = - {{label|en|ISO 639-3 code}} - {{label|nl|ISO 639-3 code}} - {{label|pl|kod ISO 639-3}} -| rdfs:domain = Language -| rdfs:range = xsd:string -| rdfs:subPropertyOf = LanguageCode <!-- dul:isClassifiedBy -- defined as object property, see https://github.com/dbpedia/ontology-tracker/issues/9 --> -| owl:equivalentProperty = wikidata:P220 -}}OntologyProperty:IsoCode2026868338112014-04-04T14:24:23Z{{DatatypeProperty -| labels = -{{label|en|iso code of a place}} -{{label|de|ISO-Code eines Ortes}} -| rdfs:domain = Place -| rdfs:range = xsd:string -}}OntologyProperty:IsoCodeRegion2023181503532016-02-12T21:08:31Z -{{DatatypeProperty -| labels = - {{label|en|ISO region code}} - {{label|de|ISO-Ländercode}} - {{label|nl|ISO regiocode}} -| rdfs:domain = Settlement -| rdfs:range = xsd:string -| rdfs:subPropertyOf = <!-- dul:isPartOf -- defined as object property, see https://github.com/dbpedia/ontology-tracker/issues/9 --> -}}OntologyProperty:IssDockings2021004103542010-11-10T14:09:54Z{{DatatypeProperty -| rdfs:label@en = iss dockings -| rdfs:domain = SpaceShuttle -| rdfs:range = xsd:nonNegativeInteger -}}OntologyProperty:Issn2021005478302015-04-28T16:12:47Z{{DatatypeProperty -| labels = -{{label|en|issn}} -{{label|nl|ISSN}} -{{label|el|issn}} -{{label|de|ISSN}} -{{label|ga|ISSN}} -{{label|pl|ISSN}} -| rdfs:comment@en = International Standard Serial Number (ISSN) -| rdfs:domain = PeriodicalLiterature -| rdfs:range = xsd:string -| owl:equivalentProperty = http://purl.org/ontology/bibo/issn, wikidata:P236 -}}OntologyProperty:Ist2027245259012013-06-12T14:37:59Z{{DatatypeProperty -| labels = -{{label|en|ist}} -| rdfs:domain = PopulatedPlace -| rdfs:range = xsd:string -}}OntologyProperty:Istat2027005483722015-06-16T06:10:49Z{{DatatypeProperty -| labels = -{{label|en|code istat}} -| rdfs:domain = PopulatedPlace -| rdfs:range = xsd:string -| rdfs:comment@en = Indexing code used for Italian municipalities -| owl:equivalentProperty = wikidata:P635 -}}OntologyProperty:IthfDate2027711269922013-07-04T12:24:40Z{{DatatypeProperty -| labels = -{{label|en|ithf date}} -| rdfs:domain = Athlete -| rdfs:range = xsd:string -}}OntologyProperty:IucnCategory2021006222032013-01-10T22:08:59Z{{DatatypeProperty -| labels = -{{label|en|iucn category}} -{{label|nl|IUCN categorie}} -| rdfs:domain = ProtectedArea -| rdfs:range = xsd:string -}}OntologyProperty:IupacName2021007348252014-05-15T05:05:57Z{{DatatypeProperty -| rdfs:label@en = IUPAC name -| rdfs:label@ja = IUPAC名 -| rdfs:domain = Drug -| rdfs:range = rdf:langString -}}OntologyProperty:Jockey2026175526482017-11-03T16:23:44Z{{ObjectProperty -| labels = - {{label|en|jockey}} - {{label|de|Jockey}} -| rdfs:domain = Horse -| rdfs:range = Jockey -| rdfs:subPropertyOf = dul:coparticipatesWith -}}OntologyProperty:JointCommunity2021008361912014-07-08T13:57:08Z -{{ObjectProperty -| rdfs:label@en = joint community -| rdfs:domain = Settlement -| rdfs:range = PopulatedPlace -| rdfs:subPropertyOf = dul:isPartOf -}}OntologyProperty:Jstor2023750132092011-05-25T16:52:32Z{{DatatypeProperty -| rdfs:label@en = JSTOR -| rdfs:domain = AcademicJournal -| rdfs:range = xsd:string -| rdfs:comment@en = JSTOR number (short for Journal Storage) is a United States-based online system number for archiving academic journals. -}}OntologyProperty:Judge2026607361922014-07-08T13:57:11Z -{{ObjectProperty -| labels = - {{label|en|judge}} - {{label|de|Richter}} - {{label|nl|rechter}} -| comments = - {{comment|en|leading judge }} -| rdfs:domain = LegalCase -| rdfs:range = Judge -| rdf:type = | rdfs:subPropertyOf = personFunction -| owl:equivalentProperty = -| rdfs:subPropertyOf = dul:isSettingFor -}}OntologyProperty:JuniorSeason2027666273342013-07-10T12:45:22Z{{ObjectProperty -| rdfs:label@en = junior season -| rdfs:domain = Agent -}}OntologyProperty:JuniorTeam2027667269352013-07-03T14:42:36Z{{ObjectProperty -| labels = -{{label|en|junior team}} -| rdfs:range = SportsTeam -| rdfs:domain = Athlete -}}OntologyProperty:JuniorYearsEndYear2027873273322013-07-10T12:43:13Z{{DatatypeProperty -| labels = -{{label|en|junior years end year}} -| rdfs:domain = Person -| rdfs:range = xsd:gYear -}}OntologyProperty:JuniorYearsStartYear2027872273312013-07-10T12:42:34Z{{DatatypeProperty -| labels = -{{label|en|junior years start year}} -| rdfs:domain = Person -| rdfs:range = xsd:gYear -}}OntologyProperty:JureLanguage2027034528582018-02-09T13:55:09Z{{ObjectProperty -| labels = -{{label|en|jure language}} -| rdfs:range = Language -| owl:equivalentProperty = -}}OntologyProperty:Jurisdiction2023729361932014-07-08T13:57:14Z -{{ObjectProperty -| rdfs:label@en = jurisdiction -| rdfs:label@de = Zuständigkeit -| rdfs:domain = owl:Thing -| rdfs:range = owl:Thing -| rdfs:comment@en = 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. -| rdfs:comment@de = Die Zuständigkeit oder Kompetenz legt im öffentlichen Recht fest, welche Behörde bzw. welches Gericht im Einzelfall rechtlich zu hoheitlichem Handeln ermächtigt und verpflichtet ist. -| rdfs:subPropertyOf = dul:isPartOf -}}OntologyProperty:Jutsu2027768270582013-07-05T08:00:48Z{{DatatypeProperty -| labels = -{{label|en|jutsu}} -| rdfs:domain = Person -| rdfs:range = xsd:string -}}OntologyProperty:Kegg20211926524052017-10-15T14:13:50Z{{DatatypeProperty -| rdfs:label@en = KEGG -| rdfs:comment@en = Bioinformatics resource for deciphering the genome. -| rdfs:domain = ChemicalSubstance -| rdfs:range = xsd:string -}}OntologyProperty:KeyPerson2022350361942014-07-08T13:57:17Z -{{ObjectProperty -| rdfs:label@en = key person -| rdfs:label@de = Schlüsselperson -| rdfs:range = Person -| rdfs:subPropertyOf = dul:sameSettingAs -}}OntologyProperty:KhlDraft2027785270842013-07-05T13:08:21Z{{DatatypeProperty -| rdfs:label@en = khl draft year -| rdfs:domain = IceHockeyPlayer -| rdfs:range = xsd:string -}}OntologyProperty:KhlDraftTeam2027783270822013-07-05T13:07:20Z{{ObjectProperty -| rdfs:label@en = khl draft team -| rdfs:domain = IceHockeyPlayer -| rdfs:range = HockeyTeam -}}OntologyProperty:KhlDraftYear2027784270832013-07-05T13:07:54Z{{DatatypeProperty -| rdfs:label@en = khl draft year -| rdfs:domain = IceHockeyPlayer -| rdfs:range = xsd:string -}}OntologyProperty:KilledBy2027837338162014-04-04T14:24:43Z{{DatatypeProperty -| labels = -{{label|en|killed by}} -{{label|de|getötet von}} -| rdfs:domain = Person -| rdfs:range = xsd:string -| owl:equivalentProperty = wikidata:P157 -}}OntologyProperty:KinOfLanguage2027117256502013-05-26T14:55:30Z{{DatatypeProperty -| labels = -{{label|en|kindOfLanguage}} -| rdfs:range = xsd:string -}}OntologyProperty:KindOfCoordinate2027157256982013-05-26T16:40:01Z{{DatatypeProperty -| labels = -{{label|en|kind of coordinate}} -| rdfs:domain = Place -| rdfs:range = xsd:string -}}OntologyProperty:KindOfCriminal2028024491512015-10-13T10:05:46Z{{DatatypeProperty -| labels = -{{label|en|kind of criminal}} -| rdfs:domain = Criminal -| rdfs:range = xsd:string -}}OntologyProperty:KindOfCriminalAction2028025501882016-01-04T21:19:12Z{{DatatypeProperty -| labels = -{{label|en|kind of criminal action}} -| rdfs:domain = Criminal -| rdfs:range = xsd:string -}}OntologyProperty:KindOfRock2027111338172014-04-04T14:24:47Z{{DatatypeProperty -| labels = -{{label|en|kind of rock}} -{{label|de|Art von Gestein}} -| rdfs:domain = Place -| rdfs:range = xsd:string -}}OntologyProperty:Kingdom2021009361952014-07-08T13:57:21Z -{{ObjectProperty -| labels = - {{label|en|kingdom}} - {{label|de|reich}} - {{label|it|regno}} - {{label|el|βασίλειο}} - {{label|fr|règne (biologie)}} - {{label|nl|rijk}} - {{label|ja|界_(分類学)}} -| comments = - {{comment|en|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.<ref>https://en.wikipedia.org/wiki/Kingdom_%28biology%29</ref>}} - {{comment|fr|Le règne (du latin « regnum ») est, dans les taxinomies classiques, le plus haut niveau de classification des êtres vivants, en raison de leurs caractères communs.<ref>https://fr.wikipedia.org/wiki/R%C3%A8gne_%28biologie%29</ref>}} -| rdfs:domain = Species -| owl:equivalentProperty = wikidata:P75 -| rdfs:subPropertyOf = dul:specializes -}} -== references == -<references/>OntologyProperty:KnownFor2021010512092016-06-08T13:49:40Z{{ObjectProperty -| labels = - {{label|en|known for}} - {{label|nl|bekend om}} - {{label|de|bekannt für}} - {{label|el|γνωστός_για}} - {{label|fr|connu pour}} - {{label|es|conocido por}} - {{label|pl|znany z powodu}} -| rdfs:domain = owl:Thing -| rdfs:subPropertyOf = dul:isDescribedBy -| rdfs:comment@en = Work, historic event, etc that the subject is known for. Applies to Person, Organization, ConcentrationCamp, etc -}}OntologyProperty:Ko2027587268152013-07-02T10:53:29Z{{DatatypeProperty -| labels = -{{label|en|ko}} -| rdfs:domain = Boxer -| rdfs:range = xsd:nonNegativeInteger -}}OntologyProperty:LahHof2027793270942013-07-05T13:17:11Z{{DatatypeProperty -| labels = -{{label|en|lah hof}} -| rdfs:domain = Person -| rdfs:range = xsd:string -}}OntologyProperty:Lake2027052361972014-07-08T13:57:27Z -{{ObjectProperty -| labels = - {{label|en|vastest lake}} - {{label|el|λίμνη}} -| rdfs:domain = Place -| rdfs:range = BodyOfWater -| rdfs:subPropertyOf = dul:nearTo -}}OntologyProperty:Land2027901274272013-07-12T10:18:05Z{{ObjectProperty | labels = {{label|en|land}} | rdfs:domain = Place | rdfs:range = Place }}OntologyProperty:LandArea2027038255372013-05-25T22:51:51Z{{DatatypeProperty -| labels = -{{label|en|area of a land}} -| rdfs:domain = Place -| rdfs:range = Area -| owl:equivalentProperty = area -}}OntologyProperty:LandPercentage2027049255502013-05-25T23:20:47Z{{DatatypeProperty -| labels = -{{label|en|land percentage of a place}} -| rdfs:domain = Place -| rdfs:range = xsd:float -}}OntologyProperty:LandRegistryCode2026854492162015-10-15T07:15:20Z{{DatatypeProperty -| labels = -{{label|en|land registry code}} -| rdfs:domain = Settlement -| rdfs:range = xsd:string -}}OntologyProperty:Landeshauptmann2026869492202015-10-15T07:19:53Z{{ObjectProperty -| labels = - {{label|en|landeshauptmann}} -| rdfs:domain = AdministrativeRegion -| rdfs:range = Person -| rdfs:subPropertyOf = dul:sameSettingAs -}}OntologyProperty:LandingDate2021012475982015-04-03T09:51:07Z{{DatatypeProperty -| rdfs:label@en = landing date -| rdfs:label@de = Landedatum -| rdfs:domain = SpaceMission -| rdfs:range = xsd:date -| owl:equivalentProperty = wikidata:P620 -}}OntologyProperty:LandingSite2021013338192014-04-04T14:24:54Z{{DatatypeProperty -| rdfs:label@en = landing site -| rdfs:label@de = Landeplatz -| rdfs:domain = SpaceMission -| rdfs:range = xsd:string -}}OntologyProperty:LandingVehicle2021014361992014-07-08T13:57:35Z -{{ObjectProperty -| rdfs:label@en = landing vehicle -| rdfs:domain = SpaceMission -| rdfs:range = SpaceMission -| rdfs:subPropertyOf = dul:hasParticipant -}}OntologyProperty:Landskap2026914253762013-05-24T22:25:35Z{{DatatypeProperty -| labels = -{{label|en|norwegian landskap}} -| rdfs:domain = NorwaySettlement -| rdfs:range = xsd:string -}}OntologyProperty:Landtag2026871492212015-10-15T07:20:23Z{{DatatypeProperty -| labels = -{{label|en|austrian land tag}} -| rdfs:domain = AdministrativeRegion -| rdfs:range = xsd:string -}}OntologyProperty:LandtagMandate2026872492222015-10-15T07:20:28Z{{DatatypeProperty -| labels = -{{label|en|austrian land tag mandate}} -| rdfs:domain = AdministrativeRegion -| rdfs:range = xsd:string -}}OntologyProperty:Language2021015536962020-09-04T15:21:30Z{{ObjectProperty -| labels = - {{label|en|language}} - {{label|gl|lingua}} - {{label|nl|taal}} - {{label|pt|língua}} - {{label|de|Sprache}} - {{label|fr|langue}} - {{label|el|γλώσσα}} - {{label|ga|teanga}} - {{label|pl|język}} -| rdfs:comment@en = Use dc:language for literal, language for object -| rdfs:domain = owl:Thing -| rdfs:range = Language -| rdfs:subPropertyOf = dul:coparticipatesWith -| owl:equivalentProperty = schema:inLanguage, ceo:taal -}}OntologyProperty:LanguageCode2023704503542016-02-12T21:09:02Z -{{DatatypeProperty -| rdfs:label@en = language code -| rdfs:label@de = Sprachcode -| rdfs:label@pl = kod językowy -| rdfs:domain = Language -| rdfs:range = xsd:string -| rdfs:subPropertyOf = <!-- dul:sameSettingAs -- defined as object property, see https://github.com/dbpedia/ontology-tracker/issues/9 --> -}}OntologyProperty:LanguageFamily2023703362022014-07-08T13:57:45Z -{{ObjectProperty -| labels = - {{label|en|family}} - {{label|de|Familie}} - {{label|nl|taalfamilie}} - {{label|pl|rodzina}} -| rdfs:domain = Language -| rdfs:subPropertyOf = dul:specializes -}}OntologyProperty:LanguageRegulator2024140362032014-07-08T13:57:47Z -{{ObjectProperty -| labels = - {{label|en|language regulator or academy}} - {{label|nl|taal instituut}} -| rdfs:range = Language -| rdfs:subPropertyOf = dul:sameSettingAs -}}OntologyProperty:LargestCity2021017362042014-07-08T13:57:50Z -{{ObjectProperty -| rdfs:label@en = largest city -| rdfs:label@de = größte Stadt -| rdfs:domain = PopulatedPlace -| rdfs:range = PopulatedPlace -| rdfs:subPropertyOf = dul:hasPart -}}OntologyProperty:LargestMetro2021018362062014-07-08T13:58:04Z -{{ObjectProperty -| rdfs:label@en = largest metro -| rdfs:domain = Settlement -| rdfs:range = PopulatedPlace -| rdfs:subPropertyOf = dul:isLocationOf -}}OntologyProperty:LargestSettlement2021019362072014-07-08T13:58:07Z -{{ObjectProperty -| labels = - {{label|en|largest settlement}} - {{label|de|größte Siedlung}} - {{label|nl|grootste plaats}} -| rdfs:domain = PopulatedPlace -| rdfs:range = PopulatedPlace -| rdfs:subPropertyOf = dul:hasPart -}}OntologyProperty:LargestWin202102180782010-05-28T13:15:25Z{{DatatypeProperty -| rdfs:label@en = largest win -| rdfs:domain = SoccerClub -| rdfs:range = xsd:string -}}OntologyProperty:LastAirDate2023051114162011-03-31T12:30:16Z{{DatatypeProperty -| rdfs:label@en = last air date -| rdfs:label@de = Sendeschluss -| rdfs:domain = Broadcaster -| rdfs:range = xsd:date -| rdfs:comment@en = The date on which the broadcaster made its last broadcast. -}}OntologyProperty:LastAppearance2023099362082014-07-08T13:58:09Z -{{ObjectProperty -| rdfs:label@en = last appearance -| rdfs:domain = FictionalCharacter -| rdfs:subPropertyOf = dul:isParticipantIn -}}OntologyProperty:LastElectionDate2023527126582011-05-06T10:45:46Z{{DatatypeProperty - |rdfs:label@en = last election date - |rdfs:comment@en = The last election date for the house. - |rdfs:domain = Legislature - |rdfs:range = xsd:date -}}OntologyProperty:LastFamilyMember2029291338252014-04-04T14:25:26Z{{ObjectProperty -|labels = -{{label|en|last family member}} -{{label|de|letztes Familienmitglied}} -{{label|nl|laatste drager familienaam}} -| rdfs:domain = Family -| rdfs:range = Person -}}OntologyProperty:LastFlight2021023362092014-07-08T13:58:13Z -{{ObjectProperty -| rdfs:label@en = last flight -| rdfs:label@de = letzter Flug -| rdfs:domain = SpaceShuttle -| rdfs:range = SpaceMission -| rdfs:subPropertyOf = dul:isParticipantIn -}}OntologyProperty:LastFlightEndDate202102480792010-05-28T13:15:33Z{{DatatypeProperty -| rdfs:label@en = last flight end date -| rdfs:domain = SpaceShuttle -| rdfs:range = xsd:date -}}OntologyProperty:LastFlightStartDate202102580802010-05-28T13:15:40Z{{DatatypeProperty -| rdfs:label@en = last flight start date -| rdfs:domain = SpaceShuttle -| rdfs:range = xsd:date -}}OntologyProperty:LastLaunch2021026338272014-04-04T14:25:36Z{{DatatypeProperty -| rdfs:label@en = last launch -| rdfs:label@de = letzter Start -| rdfs:domain = YearInSpaceflight -| rdfs:range = xsd:date -}}OntologyProperty:LastLaunchDate2021027338282014-04-04T14:25:43Z{{DatatypeProperty -| rdfs:label@en = last launch date -| rdfs:label@de = letzter Starttermin -| rdfs:domain = LaunchPad -| rdfs:range = xsd:date -}}OntologyProperty:LastLaunchRocket2021028362102014-07-08T13:58:16Z -{{ObjectProperty -| rdfs:label@en = last launch rocket -| rdfs:domain = LaunchPad -| rdfs:range = Rocket -| rdfs:subPropertyOf = dul:coparticipatesWith -}}OntologyProperty:LastPosition2021029231512013-01-18T11:06:35Z{{DatatypeProperty -| rdfs:label@en = last position -| rdfs:label@el = τελευταία θέση -| rdfs:domain = FormulaOneRacer -| rdfs:range = xsd:positiveInteger -}}OntologyProperty:LastProMatch2027707520042017-03-22T20:05:20Z{{DatatypeProperty -| labels = -{{label|en|last pro match}} -{{label|de|erstes Profispiel}} -| rdfs:domain = Athlete -| rdfs:range = xsd:string -}}OntologyProperty:LastPublicationDate2026182338302014-04-04T14:25:53Z{{DatatypeProperty -| rdfs:label@en = last publication date -| rdfs:label@de = letztes Veröffentlichungsdatum -| rdfs:domain = WrittenWork -| rdfs:range = xsd:date -| rdfs:comment@en = Date of the last publication. -}}OntologyProperty:LastRace2021030362112014-07-08T13:58:19Z -{{ObjectProperty -| rdfs:label@en = last race -| rdfs:label@de = letztes Rennen -| rdfs:label@el = τελευταίος αγώνας -| rdfs:domain = FormulaOneRacer -| rdfs:range = GrandPrix -| rdfs:subPropertyOf = dul:isParticipantIn -}}OntologyProperty:LastSeason2021031112332011-03-30T07:04:27Z{{DatatypeProperty -| rdfs:label@en = last season -| rdfs:label@el = Προηγούμενη Περίοδος -| rdfs:domain = FormulaOneRacer -| rdfs:range = xsd:date -}}OntologyProperty:LastWin2021032362122014-07-08T13:58:23Z -{{ObjectProperty -| rdfs:label@en = last win -| rdfs:label@de = letzter Sieg -| rdfs:label@el = τελευταία νίκη -| rdfs:domain = FormulaOneRacer -| rdfs:range = GrandPrix -| rdfs:subPropertyOf = dul:isParticipantIn -}}OntologyProperty:Laterality2027694269732013-07-04T10:04:34Z{{DatatypeProperty -| labels = -{{label|en|laterality}} -| rdfs:domain = Athlete -| rdfs:range = xsd:string -}}OntologyProperty:LatestElection20211486498312015-12-17T16:05:25Z{{DatatypeProperty -| labels = -{{label|en|date of latest election}} -| rdfs:domain = PopulatedPlace -| rdfs:range = xsd:date -}}OntologyProperty:LatestPreviewDate202103480852010-05-28T13:16:24Z{{DatatypeProperty -| rdfs:label@en = latest preview date -| rdfs:domain = Software -| rdfs:range = xsd:date -}}OntologyProperty:LatestPreviewVersion202103580862010-05-28T13:16:33Z{{DatatypeProperty -| rdfs:label@en = latest preview version -| rdfs:domain = Software -| rdfs:range = xsd:string -}}OntologyProperty:LatestReleaseDate2021036251352013-04-25T13:20:21Z{{DatatypeProperty -| rdfs:label@en = latest release date -| rdfs:label@fr = date de dernière version -| rdfs:domain = Software -| rdf:type = owl:FunctionalProperty -| rdfs:range = xsd:date -}}OntologyProperty:LatestReleaseVersion202103780882010-05-28T13:16:51Z{{DatatypeProperty -| rdfs:label@en = latest release version -| rdfs:domain = Software -| rdfs:range = xsd:string -}}OntologyProperty:LatinName20211524522872017-10-08T18:54:41Z{{DatatypeProperty -| rdfs:label@en = name in latin -| rdfs:label@de = lateinische Name -| rdfs:label@nl = latijnse naam -| rdfs:domain = owl:Thing -| rdfs:range = xsd:string -| rdfs:subPropertyOf = Name -}}OntologyProperty:Launch202103880892010-05-28T13:17:00Z{{DatatypeProperty -| rdfs:label@en = launch -| rdfs:domain = Spacecraft -| rdfs:range = xsd:date -}}OntologyProperty:LaunchDate2021039476012015-04-03T09:54:00Z{{DatatypeProperty -| rdfs:label@en = launch date -| rdfs:label@de = Starttermin -| rdfs:domain = SpaceMission -| rdfs:range = xsd:date -| owl:equivalentProperty = wikidata:P619 -}}OntologyProperty:LaunchPad2021041362132014-07-08T13:58:26Z -{{ObjectProperty -| rdfs:label@en = launch pad -| rdfs:label@de = Startrampe -| rdfs:domain = SpaceMission -| rdfs:range = LaunchPad -| rdfs:subPropertyOf = dul:hasParticipant -}}OntologyProperty:LaunchSite2021042476022015-04-03T09:55:16Z{{ObjectProperty -| rdfs:label@en = launch site -| rdfs:label@de = Startplatz -| rdfs:domain = SpaceMission -| rdfs:range = Building -| rdfs:subPropertyOf = dul:hasParticipant -| owl:equivalentProperty = wikidata:P448 -}}OntologyProperty:LaunchVehicle2021043476032015-04-03T09:56:25Z{{ObjectProperty -| rdfs:label@en = launch vehicle -| rdfs:domain = SpaceMission -| rdfs:subPropertyOf = dul:hasParticipant -| owl:equivalentProperty = wikidata:P375 -}}OntologyProperty:Launches2021040103502010-11-10T14:07:06Z{{DatatypeProperty -| rdfs:label@en = launches -| rdfs:domain = LaunchPad -| rdfs:range = xsd:nonNegativeInteger -}}OntologyProperty:LaurenceOlivierAward2021044362162014-07-08T13:58:37Z -{{ObjectProperty -| rdfs:label@en = Laurence Olivier Award -| rdfs:domain = Actor -| rdfs:range = Award -| rdfs:subPropertyOf = dul:coparticipatesWith -}}OntologyProperty:LawCountry2027150256912013-05-26T16:12:29Z{{DatatypeProperty -| labels = -{{label|en|law country}} -| rdfs:domain = Place -| rdfs:range = xsd:string -}}OntologyProperty:LayingDown2023107116522011-04-02T10:58:28Z{{DatatypeProperty -| rdfs:label@en=laying down -| rdfs:domain = Ship -| rdfs:range = xsd:date -}}OntologyProperty:Layout2021045362172014-07-08T13:58:40Z -{{ObjectProperty -| rdfs:label@en = layout -| rdfs:domain = Automobile -| rdfs:subPropertyOf = dul:hasQuality -}}OntologyProperty:Lcc2021720132072011-05-25T16:51:22Z{{DatatypeProperty -| rdfs:label@en = LCC -| rdfs:domain = WrittenWork -| rdfs:range = xsd:string -| rdfs:comment@en = The Library of Congress Classification (LCC) is a system of library classification developed by the Library of Congress. -}}OntologyProperty:Lccn2023749132082011-05-25T16:52:03Z{{DatatypeProperty -| rdfs:label@en = LCCN -| rdfs:domain = WrittenWork -| rdfs:range = xsd:string -| rdfs:comment@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. -}}OntologyProperty:LccnId2028419528782018-02-13T10:46:18Z{{DatatypeProperty -| labels = -{{label|en|LCCN Id}} -| comments = -{{comment|en|Library of Congress Control Number}} -| rdfs:range = xsd:string -| owl:equivalentProperty = wikidata:P244 -| rdfs:subPropertyOf = code -}}OntologyProperty:LchfDraft2027786270872013-07-05T13:09:45Z{{DatatypeProperty -| rdfs:label@en = lchf draft year -| rdfs:domain = IceHockeyPlayer -| rdfs:range = xsd:string -}}OntologyProperty:LchfDraftTeam2027788520062017-03-22T20:19:57Z{{ObjectProperty -| rdfs:label@en = lchf draft team -| rdfs:domain = IceHockeyPlayer -| rdfs:range = HockeyTeam -}}OntologyProperty:LchfDraftYear2027787270862013-07-05T13:09:27Z{{DatatypeProperty -| rdfs:label@en = lchf draft year -| rdfs:domain = IceHockeyPlayer -| rdfs:range = xsd:string -}}OntologyProperty:LeadTeam2027625268682013-07-03T07:59:57Z{{ObjectProperty -| labels = -{{label|en|lead team}} -| rdfs:range = SportsTeam -| rdfs:domain = Athlete, CareerStation -}}OntologyProperty:LeadYear2027628268712013-07-03T08:02:36Z{{DatatypeProperty -| labels = -{{label|en|lead year}} -| rdfs:range = xsd:string -| rdfs:domain = Athlete, CareerStation -}}OntologyProperty:Leader2021046362182014-07-08T13:58:43Z -{{ObjectProperty -| labels = - {{label|en|leader}} - {{label|de|Führer}} - {{label|nl|leider}} - {{label|el|ηγέτης}} - {{label|pt|lider}} -| rdfs:range = Person -| rdfs:subPropertyOf = dul:sameSettingAs -}}OntologyProperty:LeaderFunction2021047362192014-07-08T13:58:47Z -{{ObjectProperty -| rdfs:label@en = leaderFunction -| rdfs:domain = Organisation -| rdfs:range = PersonFunction -| rdfs:subPropertyOf = dul:coparticipatesWith -}}OntologyProperty:LeaderName2021048517712016-12-20T07:16:07Z -{{ObjectProperty -| labels = - {{label|en|leader name}} - {{label|nl|naam leider}} - {{label|fr|président}} - {{label|el|όνομα_αρχηγού}} - {{label|hi|शासक का नाम}} -| rdfs:domain = PopulatedPlace -| rdfs:range = Person -| rdfs:subPropertyOf = dul:coparticipatesWith -}}OntologyProperty:LeaderParty2021049362212014-07-08T13:58:53Z -{{ObjectProperty -| labels = - {{label|de|Regierungspartei}} - {{label|en|leader party}} - {{label|nl|regeringspartij}} - {{label|pt|partido do lider}} - {{label|el|κόμμα_αρχηγού}} -| rdfs:domain = PopulatedPlace -| rdfs:subPropertyOf = dul:coparticipatesWith -}}OntologyProperty:LeaderTitle2021050517702016-12-20T07:12:29Z{{DatatypeProperty -| rdfs:label@en = leader title -| rdfs:label@el = τίτλος_αρχηγού -| rdfs:label@hi = शासक पद -| rdfs:domain = PopulatedPlace -| rdfs:range = rdf:langString -}}OntologyProperty:Leadership2027554338382014-04-04T14:26:24Z{{DatatypeProperty -| labels = -{{label|en|leadership}} -{{label|de|Führung}} -| rdfs:domain = Person -| rdfs:range = xsd:string -}}OntologyProperty:League2021051476042015-04-03T09:57:00Z{{ObjectProperty -| labels = - {{label|en|league}} - {{label|de|Liga}} - {{label|el|πρωτάθλημα}} -| rdfs:range = SportsLeague -| rdfs:subPropertyOf = dul:sameSettingAs -| owl:equivalentProperty = wikidata:P118 -}}OntologyProperty:LeagueManager2027797270982013-07-05T13:18:56Z{{ObjectProperty -| labels = -{{label|en|league manager}} -| rdfs:domain = Person -| rdfs:range = SportsLeague -}}OntologyProperty:LeftChild2021054362232014-07-08T13:59:00Z -{{ObjectProperty -| rdfs:label@en = left child -| rdfs:domain = Island -| rdfs:range = Island -| rdfs:subPropertyOf = dul:nearTo -}}OntologyProperty:LeftTributary2021055362242014-07-08T13:59:03Z -{{ObjectProperty -| rdfs:label@en = left tributary -| rdfs:label@de = linker Nebenfluss -| rdfs:label@el = αριστεροί_παραπόταμοι -| rdfs:domain = River -| rdfs:range = River -| rdfs:subPropertyOf = dul:hasCommonBoundary -}}OntologyProperty:LegalArrondissement2026887253252013-05-23T16:35:35Z{{DatatypeProperty -| labels = -{{label|en|legal arrondissement}} -| rdfs:domain = BelgiumSettlement -| rdfs:range = xsd:string -}}OntologyProperty:LegalArticle2026608243982013-03-15T15:25:02Z{{DatatypeProperty -| labels = -{{label|en|legal article}} -{{label|nl|wetsartikel}} -| comments = -{{comment|en| article in code book or statute book referred to in this legal case }} -| rdfs:domain = LegalCase -| rdfs:range = xsd:string -| rdf:type = -| rdfs:subPropertyOf = -| owl:equivalentProperty = -}}OntologyProperty:LegalForm2023731537202020-09-06T13:04:48Z -{{ObjectProperty -| labels = - {{label|en|legal form}} - {{label|nl|rechtsvorm}} - {{label|de|Rechtsform}} -| rdfs:domain = Organisation -| rdfs:range = owl:Thing -| rdfs:comment@en = 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. -| rdfs:comment@de = Die Rechtsform definiert die juristischen Rahmenbedingungen einer Organisation bzw. Unternehmens. -| rdfs:subPropertyOf = dul:isClassifiedBy -}}OntologyProperty:LegislativePeriodName2023528126592011-05-06T11:32:54Z{{DatatypeProperty -| rdfs:label@en = legislative period name -| rdfs:label@de = Name in der Legislaturperiode -| rdfs:domain = Legislature -| rdfs:range = xsd:string -| rdfs:comment@en = The term of the on-going session (e.g.: "40th Canadian Parliament"). -}}OntologyProperty:Legislature20211953525112017-10-18T09:42:52Z{{ObjectProperty -| labels = - {{label|en|legislature}} - {{label|de|Gesetzgeber}} -| rdfs:domain = PopulatedPlace -| rdfs:range = Legislature -}}OntologyProperty:Length2021056527762018-01-23T15:02:39Z{{DatatypeProperty -| labels = -{{label|en|length}} -{{label|nl|lengte}} -{{label|de|Länge}} -{{label|el|μήκος}} -{{label|fr|longueur}} -| rdfs:range = Length -| rdf:type = owl:FunctionalProperty -| owl:equivalentProperty = wikidata:P2043 -}}OntologyProperty:LengthQuote2027088256122013-05-26T13:29:13Z{{DatatypeProperty -| labels = -{{label|en|length quote}} -| rdfs:domain = Place -| rdfs:range = xsd:string -}}OntologyProperty:LengthReference2023339122232011-04-15T13:28:54Z{{DatatypeProperty -| rdfs:label@en = length reference -| rdfs:domain = RouteOfTransportation -| rdfs:range = xsd:string -}}OntologyProperty:LethalOnChickens2028936307932014-01-22T13:52:56Z{{DatatypeProperty -| rdfs:label@en = lethal when given to chickens -| rdfs:label@nl = dodelijk voor kippen -| rdfs:domain = ChemicalSubstance -| rdfs:range = xsd:string -}}OntologyProperty:LethalOnMice2028937307942014-01-22T13:54:03Z{{DatatypeProperty -| rdfs:label@en = lethal when given to mice -| rdfs:label@nl = dodelijk voor muizen -| rdfs:domain = ChemicalSubstance -| rdfs:range = xsd:string -}}OntologyProperty:LethalOnRabbits2028935307922014-01-22T13:52:21Z{{DatatypeProperty -| rdfs:label@en = lethal when given to rabbits -| rdfs:label@nl = dodelijk voor konijnen -| rdfs:domain = ChemicalSubstance -| rdfs:range = xsd:string -}}OntologyProperty:LethalOnRats2028934307912014-01-22T13:51:46Z{{DatatypeProperty -| rdfs:label@en = lethal when given to rats -| rdfs:label@nl = dodelijk voor ratten -| rdfs:domain = ChemicalSubstance -| rdfs:range = xsd:string -}}OntologyProperty:LiberationDate20210250512432016-06-09T10:48:47Z{{DatatypeProperty -| labels = -{{label|en|date of liberation}} -{{label|nl|datum bevrijding}} -| rdfs:domain = ConcentrationCamp -| rdfs:range = xsd:string -}}OntologyProperty:Libretto20210207378702014-09-23T13:59:13Z{{DatatypeProperty -| labels = -{{label|en|libretto}} -{{label|nl|libretto}} -| rdfs:domain = Opera -| rdfs:range = xsd:string -| rdf:type = -| rdfs:subPropertyOf = -}}OntologyProperty:LicenceLetter2026864253942013-05-25T10:56:45Z{{DatatypeProperty -| labels = -{{label|en|licence letter of a german settlement}} -| rdfs:domain = GermanSettlement -| rdfs:range = xsd:string -}}OntologyProperty:LicenceNumber2026928253962013-05-25T10:58:12Z{{DatatypeProperty -| labels = -{{label|en|licence number}} -| rdfs:domain = PopulatedPlace -| rdfs:range = xsd:string -}}OntologyProperty:LicenceNumberLabel2026929253972013-05-25T10:58:46Z{{DatatypeProperty -| labels = -{{label|en|licence number label}} -| rdfs:domain = PopulatedPlace -| rdfs:range = xsd:string -}}OntologyProperty:License2021057536752020-07-30T21:29:00Z{{ObjectProperty -| labels = - {{label|en|license}} - {{label|de|Lizenz}} - {{label|nl|licentie}} - {{label|el|άδεια}} - {{label|fr|licence}} -| rdfs:domain = Work -| rdfs:subPropertyOf = dul:isDescribedBy -| owl:equivalentProperty = schema:license, wikidata:P275 -}}OntologyProperty:Licensee2023088338412014-04-04T14:26:38Z{{DatatypeProperty -| rdfs:label@en = licensee -| rdfs:label@de = Lizenzinhaber -| rdfs:domain = owl:Thing -| rdfs:range = xsd:string -| rdfs:comment@en = Identify which company or entity holds the licence (mostly string are used in Wikipedia, therefore range is xsd:sting). -}}OntologyProperty:Lieutenancy2027305259822013-06-14T10:03:18Z{{DatatypeProperty -| labels = -{{label|en|lieutenancy}} -| rdfs:domain = PopulatedPlace -| rdfs:range = xsd:string -}}OntologyProperty:LieutenancyArea2022137362292014-07-08T13:59:21Z -{{ObjectProperty -| rdfs:label@en = Lieutenancy area -| rdfs:domain = PopulatedPlace -| rdfs:range = PopulatedPlace -| rdfs:subPropertyOf = dul:isPartOf -}}OntologyProperty:Lieutenant2022340362302014-07-08T13:59:23Z -{{ObjectProperty -| rdfs:label@en = lieutenant -| rdfs:label@de = Leutnant -| rdfs:label@fr = lieutenant -| rdfs:range = Person -| rdfs:subPropertyOf = dul:coparticipatesWith -}}OntologyProperty:LifeExpectancy2023272338432014-04-04T14:26:47Z{{DatatypeProperty -| rdfs:label@en = life expectancy -| rdfs:label@de = Lebenserwartung -| rdfs:label@pt = expectativa de vida -| rdfs:domain = PopulatedPlace -| rdfs:range = xsd:string -}}OntologyProperty:Limit2027153256942013-05-26T16:17:06Z{{DatatypeProperty -| labels = -{{label|en|limit}} -| rdfs:domain = Place -| rdfs:range = xsd:string -}}OntologyProperty:LineLength2023594128052011-05-16T15:53:14Z{{DatatypeProperty -| rdfs:label@en = line length -| rdfs:label@de = Linienlänge -| rdfs:domain = RouteOfTransportation -| rdfs:range = Length -| rdfs:comment@en = Length of the line. Wikipedians usually do not differentiate between track length and line lenght. -}}OntologyProperty:LinguisticsTradition2027745273592013-07-10T13:57:34Z{{ObjectProperty -| labels = -{{label|en|linguistics tradition}} -| rdfs:domain = Person -}}OntologyProperty:LinkedSpace2027151256922013-05-26T16:12:52Z{{DatatypeProperty -| labels = -{{label|en|linked space}} -| rdfs:domain = Place -| rdfs:range = xsd:string -}}OntologyProperty:LinkedTo2027186362312014-07-08T13:59:38Z -{{ObjectProperty -| labels = - {{label|en|linked to}} - {{label|de|verknüpft}} -| rdfs:domain = SkiResort -| rdfs:range = Place -| rdfs:subPropertyOf = dul:hasLocation -}}OntologyProperty:ListItemOf2026033362322014-07-08T13:59:41Z -{{ObjectProperty -| labels = - {{label|en|list item}} - {{label|nl|lijst items}} - {{label|el|αντικείμενο λίστας}} -| rdfs:domain = owl:Thing -| rdfs:range = owl:Thing -| rdfs:subPropertyOf = dul:isMemberOf -}}OntologyProperty:LiteraryGenre2023775362332014-07-08T13:59:43Z -{{ObjectProperty -| labels = - {{label|en|literary genre}} - {{label|nl|literair genre}} - {{label|de|literarische Gattung}} -| rdfs:domain = WrittenWork -| rdfs:range = owl:Thing -| rdfs:subPropertyOf = genre, dul:isClassifiedBy -| rdfs:comment@en = 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. -}}OntologyProperty:LittlePoolRecord2027760270482013-07-04T14:46:51Z{{DatatypeProperty -| labels = -{{label|en|little pool record}} -| rdfs:domain = Person -| rdfs:range = xsd:string -}}OntologyProperty:LivingPlace2028022281762013-09-03T17:37:17Z{{ObjectProperty -| rdfs:label@en = livingPlace -| rdfs:domain = Person -| rdfs:range = Place -}}OntologyProperty:LoadLimit2023440124592011-04-27T14:32:20Z{{DatatypeProperty -| rdfs:label@en = load limit -| rdfs:label@de = Belastungsgrenze -| rdfs:domain = Bridge -| rdfs:range = Mass -| rdfs:comment@en = Load limit of the bridge. -}}OntologyProperty:LocalAuthority2023119362342014-07-08T13:59:46Z -{{ObjectProperty -| rdfs:label@en = local authority -| rdfs:subPropertyOf = dul:sameSettingAs -}}OntologyProperty:LocalPhonePrefix2027940338452014-04-04T14:26:54Z{{DatatypeProperty -| labels = -{{label|en|local phone prefix}} -{{label|de|lokale Vorwahl}} -| rdfs:domain = PopulatedPlace -| rdfs:range = xsd:nonNegativeInteger -}}OntologyProperty:Locality2026940492252015-10-15T07:21:24Z{{DatatypeProperty -| labels = -{{label|en|locality of a switzerland settlement}} -| rdfs:domain = Settlement -| rdfs:range = xsd:string -}}OntologyProperty:Localization2027055338662014-04-04T14:38:54Z{{DatatypeProperty -| labels = -{{label|en|localization of the island}} -| rdfs:domain = Island -| rdfs:range = xsd:string -}}OntologyProperty:LocalizationThumbnail2026855362352014-07-08T13:59:49Z -{{ObjectProperty -| labels = - {{label|en|thumbnail localization}} -| rdfs:domain = PopulatedPlace -| rdfs:range = owl:Thing -| rdfs:subPropertyOf = dul:isExpressedBy -}}OntologyProperty:LocalizationThumbnailCaption2026856252932013-05-23T15:24:25Z{{DatatypeProperty -| labels = -{{label|en|legend thumbnail localization}} -| rdfs:domain = PopulatedPlace -| rdfs:range = xsd:string -}}OntologyProperty:LocatedInArea2021058362362014-07-08T13:59:54Z -{{ObjectProperty -| labels = - {{label|en|located in area}} - {{label|nl|landstreek}} -| rdfs:domain = Place -| rdfs:range = Place -| owl:equivalentProperty = schema:containedIn , wikidata:P131 -| rdfs:subPropertyOf = dul:hasLocation -}}OntologyProperty:Location2021059536602020-07-30T21:13:17Z{{ObjectProperty -| labels = -{{label|de|Standort}} -{{label|en|location}} -{{label|nl|locatie}} -{{label|el|τοποθεσία}} -{{label|pt|localização}} -{{label|fr|emplacement}} -{{label|pl|lokalizacja}} -{{label|ja|所在地}} -| comments = -{{comment|en|The location of the thing.}} -| rdsf:domain = owl:Thing -| rdfs:range = Place -| rdfs:subPropertyOf = dul:hasLocation -| owl:equivalentProperty = schema:location -}}OntologyProperty:LocationCity2021060362382014-07-08T14:00:01Z -{{ObjectProperty -| labels = - {{label|en|location city}} - {{label|nl|locatie stad}} - {{label|fr|ville}} -| rdfs:domain = Organisation -| rdfs:range = City -| rdfs:subPropertyOf = location, dul:hasLocation -| comments = - {{comment|en|City the thing is located.}} -}}OntologyProperty:LocationCountry2021061362392014-07-08T14:00:05Z -{{ObjectProperty -| rdfs:label@en = location country -| rdfs:label@el = Χώρα -| rdfs:label@pt = país de localização -| rdfs:label@en = państwo -| rdfs:domain = owl:Thing -| rdfs:range = Country -| rdfs:subPropertyOf = location, dul:hasLocation -| rdfs:comment@en = Country the thing is located. -}}OntologyProperty:LocationIdentifier202216083732010-05-28T13:55:41Z{{DatatypeProperty -| rdfs:label@en = Location Identifier -| rdfs:domain = Airport -| rdfs:range = xsd:string -}}OntologyProperty:LocationName20210410537872020-10-21T21:50:06Z{{DatatypeProperty -| labels= -{{label|en|locationName}} -| comments= -{{comment|en|Location of the thing as string. Use "location" if the location is a resource}} -| rdfs:domain = owl:Thing -| rdfs:range = xsd:string -| owl:equivalentProperty = ceo:locatienaam, gnd:preferredNameForThePlaceOrGeographicName -}}OntologyProperty:Locomotive20211441495212015-11-14T14:50:26Z{{ObjectProperty -| rdfs:label@en = locomotive -| rdfs:label@nl = locomotief -| rdfs:domain = Train -| rdfs:range = Locomotive -}}OntologyProperty:LocusSupplementaryData202106280942010-05-28T13:17:43Z{{DatatypeProperty -| rdfs:label@en = locus supplementary data -| rdfs:domain = Protein -| rdfs:range = xsd:string -}}OntologyProperty:Logo2025647225722013-01-14T21:21:24Z{{ DatatypeProperty -| labels = -{{label|en|logo}} -{{label|el|λογότυπο}} -{{label|nl|logo}} -| rdfs:domain = owl:Thing -| rdfs:range = xsd:string -}}OntologyProperty:LongDistancePisteKilometre2027204261882013-06-18T11:05:22Z{{DatatypeProperty -| labels = -{{label|en|long distance piste kilometre}} -| rdfs:domain = Place -| rdfs:range = Length -}}OntologyProperty:LongDistancePisteNumber2027199257492013-06-01T13:23:43Z{{DatatypeProperty -| labels = -{{label|en|long distance piste number}} -| rdfs:domain = Place -| rdfs:range = xsd:nonNegativeInteger -}}OntologyProperty:LongName2024470347952014-05-13T12:46:44Z{{DatatypeProperty -| labels = -{{label|en|longName}} -{{label|nl|volledige naam}} -| rdfs:range = rdf:langString -}}OntologyProperty:Longtype202106380952010-05-28T13:17:50Z{{DatatypeProperty -| rdfs:label@en = longtype -| rdfs:domain = Album -| rdfs:range = xsd:string -| rdfs:comment@en = can be used to include more informations e.g. the name of the artist that a tribute album is in honor of -}}OntologyProperty:Lounge2021064362402014-07-08T14:00:08Z -{{ObjectProperty -| rdfs:label@en = lounge -| rdfs:domain = Airline -| rdfs:subPropertyOf = dul:sameSettingAs -}}OntologyProperty:LowerAge2021065103842010-11-10T14:32:54Z{{DatatypeProperty -| rdfs:label@en = lower age -| rdfs:domain = School -| rdfs:range = xsd:nonNegativeInteger -}}OntologyProperty:LowerEarthOrbitPayload202106680972010-05-28T13:18:05Z{{DatatypeProperty -| rdfs:label@en = lower earth orbit payload -| rdfs:domain = Rocket -| rdfs:range = Mass -| rdfs:comment@en = Payload mass in a typical Low Earth orbit -}}OntologyProperty:Lowest2021067235862013-01-27T19:18:39Z{{DatatypeProperty -| rdfs:label@en = lowest -| rdfs:label@el = χαμηλότερο -| rdfs:domain = Place -| rdfs:range = xsd:string -}}OntologyProperty:LowestAltitude20211808519302017-02-20T12:05:27Z{{ObjectProperty -| labels = -{{label|en|lowest altitude}} -{{label|ja|最低地点標高}} -| rdfs:domain = Place -| rdfs:range = Altitude -| rdfs:subPropertyOf = altitude -}}OntologyProperty:LowestMountain2021069511212016-05-25T12:26:02Z -{{ObjectProperty -| rdfs:label@en = lowest mountain -| rdfs:label@el = χαμηλώτερο βουνό -| rdfs:label@fr = montagne la plus basse -| rdfs:domain = Place -| rdfs:range = Mountain -| rdfs:subPropertyOf = dul:isLocationOf -}}OntologyProperty:LowestPlace2021070511222016-05-25T12:28:48Z -{{ObjectProperty -| rdfs:label@en = lowest place -| rdfs:label@fr = lieu le plus bas -| rdfs:domain = Place -| rdfs:range = PopulatedPlace -| rdfs:subPropertyOf = dul:isLocationOf -}}OntologyProperty:LowestPoint2027903274402013-07-12T10:48:23Z{{ObjectProperty -| labels = -{{label|en|lowest point}} -| rdfs:domain = Settlement -| rdfs:range = Place -}}OntologyProperty:LowestPosition2021071511232016-05-25T12:30:09Z -{{ObjectProperty -| rdfs:label@en = lowest position -| rdfs:label@fr = position la plus basse -| rdfs:domain = Place -| rdfs:range = geo:SpatialThing -| rdfs:subPropertyOf = dul:isLocationOf -}}OntologyProperty:LowestRegion2021072362442014-07-08T14:00:26Z -{{ObjectProperty -| rdfs:label@en = lowest region -| rdfs:domain = Island -| rdfs:range = PopulatedPlace -| rdfs:subPropertyOf = dul:isLocationOf -}}OntologyProperty:LowestState2021073362452014-07-08T14:00:29Z -{{ObjectProperty -| rdfs:label@en = lowest state -| rdfs:domain = Island -| rdfs:range = PopulatedPlace -| rdfs:subPropertyOf = dul:isPartOf -}}OntologyProperty:LunarEvaTime202107480992010-05-28T13:18:22Z{{DatatypeProperty -| rdfs:label@en = lunar EVA time -| rdfs:domain = SpaceMission -| rdfs:range = Time -}}OntologyProperty:LunarLandingSite202107581002010-05-28T13:18:32Z{{DatatypeProperty -| rdfs:label@en = lunar landing site -| rdfs:domain = SpaceMission -| rdfs:range = xsd:string -}}OntologyProperty:LunarModule2021076338472014-04-04T14:27:02Z{{DatatypeProperty -| rdfs:label@en = lunar module -| rdfs:label@de = Mondfähre -| rdfs:domain = SpaceMission -| rdfs:range = xsd:string -}}OntologyProperty:LunarOrbitTime2021077338482014-04-04T14:27:36Z{{DatatypeProperty -| rdfs:label@en = lunar orbit time -| rdfs:label@de = Mondumlaufzeit -| rdfs:domain = SpaceMission -| rdfs:range = Time -}}OntologyProperty:LunarRover2021078362462014-07-08T14:00:32Z -{{ObjectProperty -| rdfs:label@en = lunar rover -| rdfs:label@de = Mondfahrzeug -| rdfs:domain = SpaceMission -| rdfs:range = MeanOfTransportation -| rdfs:subPropertyOf = dul:hasParticipant -}}OntologyProperty:LunarSampleMass202107981032010-05-28T13:18:57Z{{DatatypeProperty -| rdfs:label@en = lunar sample mass -| rdfs:domain = SpaceMission -| rdfs:range = Mass -}}OntologyProperty:LunarSurfaceTime202108081042010-05-28T13:19:06Z{{DatatypeProperty -| rdfs:label@en = lunar surface time -| rdfs:domain = SpaceMission -| rdfs:range = Time -}}OntologyProperty:Lymph2021081362472014-07-08T14:00:34Z -{{ObjectProperty -| rdfs:label@en = lymph -| rdfs:domain = AnatomicalStructure -| rdfs:range = Lymph -| rdfs:subPropertyOf = dul:hasCommonBoundary -}}OntologyProperty:Lyrics2021082486252015-08-06T14:06:31Z{{ObjectProperty -| rdfs:label@en = lyrics -| rdfs:label@el = στίχοι -| rdfs:label@fr = parolier -| rdfs:label@ja = 歌詞 -| rdfs:domain = MusicalWork -| rdfs:range = Person -| rdfs:comment@en = Creator of the text of a MusicalWork, eg Musical, Opera or Song -| rdfs:subPropertyOf = dul:coparticipatesWith -}}OntologyProperty:Magazine2026183362492014-07-08T14:00:42Z -{{ObjectProperty -| labels = - {{label|en|magazine}} - {{label|de|Magazin}} - {{label|el|περιοδικό}} -| rdfs:domain = WrittenWork -| rdfs:range = Magazine -| rdfs:subPropertyOf = dul:sameSettingAs -}}OntologyProperty:MaidenFlight2021083338512014-04-04T14:27:50Z{{DatatypeProperty -| rdfs:label@en = maiden flight -| rdfs:label@de = Jungfernflug -| rdfs:domain = Rocket -| rdfs:range = xsd:date -| rdfs:comment@en = date of maiden flight -}}OntologyProperty:MaidenFlightRocket2021084362502014-07-08T14:00:46Z -{{ObjectProperty -| rdfs:label@en = maiden flight rocket -| rdfs:domain = YearInSpaceflight -| rdfs:range = Rocket -| rdfs:subPropertyOf = dul:hasParticipant -}}OntologyProperty:MaidenVoyage2023111116562011-04-02T11:08:47Z{{DatatypeProperty -| rdfs:label@en=maiden voyage -| rdfs:domain = Ship -| rdfs:range = xsd:date -}}OntologyProperty:MainBuilding2026667338522014-04-04T14:27:54Z{{DatatypeProperty -| rdfs:label@en = main building -| rdfs:label@de = Hauptgebäude -| rdfs:label@ja = 本殿 -| rdfs:domain = Shrine -| rdfs:range = xsd:string -}}OntologyProperty:MainCharacter2029584355032014-06-28T11:38:59Z{{ObjectProperty -| labels = -{{label|en|main character}} -{{label|fr|personnage principal}} -| rdfs:domain = Work -| rdfs:range = Person -}}OntologyProperty:MainDomain2027698273482013-07-10T13:26:17Z{{ObjectProperty -| labels = -{{label|en|main domain}} -| rdfs:domain = Person -}}OntologyProperty:MainFamilyBranch2029292338622014-04-04T14:32:05Z{{ObjectProperty -|labels = -{{label|en|main branch}} -{{label|nl|voornaamste tak}} -| rdfs:domain = NobleFamily -| rdfs:range = Family -}}OntologyProperty:MainInterest2022315362512014-07-08T14:00:50Z -{{ObjectProperty -| rdfs:label@en = main interest -| rdfs:domain = owl:Thing -| rdfs:subPropertyOf = dul:conceptualizes -}}OntologyProperty:MainIsland2027100338542014-04-04T14:28:02Z{{ObjectProperty -| labels = -{{label|en|main island}} -{{label|de|Hauptinsel}} -| rdfs:domain = Place -| rdfs:range = Place -}}OntologyProperty:MainIslands2027065338552014-04-04T14:28:06Z{{DatatypeProperty -| labels = -{{label|en|main islands}} -{{label|de|Hauptinseln}} -| rdfs:domain = Island -| rdfs:range = xsd:string -}}OntologyProperty:MainOrgan2021085362522014-07-08T14:00:54Z -{{ObjectProperty -| rdfs:label@en = main organ -| rdfs:domain = Organisation -| rdfs:subPropertyOf = dul:hasPart -}}OntologyProperty:Mainspan2021086204132012-12-20T10:38:46Z{{DatatypeProperty -|labels= - {{label|en|mainspan}} - {{label|fr|portée principale}} - {{label|el|κύρια καμάρα}} -| rdfs:domain = Bridge -| rdfs:range = Length -}}OntologyProperty:MaintainedBy2023257476062015-04-03T09:58:37Z{{ObjectProperty -| rdfs:label@en = maintained by -| rdfs:label@de = gewartet von -| rdfs:domain = ArchitecturalStructure -| rdfs:range = owl:Thing -| rdfs:subPropertyOf = dul:coparticipatesWith -| owl:equivalentProperty = wikidata:P126 -}}OntologyProperty:MajorIsland2021087362542014-07-08T14:01:00Z -{{ObjectProperty -| rdfs:label@en = major island -| rdfs:label@de = große Insel -| rdfs:label@pt = maior ilha -| rdfs:domain = Island -| rdfs:range = Island -| rdfs:subPropertyOf = dul:hasPart -}}OntologyProperty:MajorShrine2021088362562014-07-08T14:01:06Z -{{ObjectProperty -| labels = - {{label|en|major shrine}} - {{label|de|bedeutender Schrein}} - {{label|nl|schrijn}} -| rdfs:domain = Saint -| rdfs:subPropertyOf = dul:sameSettingAs -}}OntologyProperty:MajorityFloorLeader2022362338642014-04-04T14:33:44Z{{DatatypeProperty -| rdfs:label@en = majority floor leader -| rdfs:comment@en = number of office holder -| rdfs:range = xsd:integer -}}OntologyProperty:MajorityLeader2022360338632014-04-04T14:33:17Z{{DatatypeProperty -| rdfs:label@en = majority leader -| rdfs:comment@en = number of office holder -| rdfs:range = xsd:integer -}}OntologyProperty:MakeupArtist2025150362582014-07-08T14:01:23Z -{{ObjectProperty -| rdfs:domain = Film -| rdfs:range = Person -| rdfs:label@en = makeup artist -| rdfs:label@it = truccatore -| rdfs:comment@en = the person who is responsible for the actors makeup -| rdfs:subPropertyOf = dul:hasParticipant -}}OntologyProperty:Management2021089362592014-07-08T14:01:26Z -{{ObjectProperty -| rdfs:label@en = management -| rdfs:label@de = Management -| rdfs:label@fr = management -| rdfs:subPropertyOf = dul:sameSettingAs -}}OntologyProperty:ManagementCountry2021090362602014-07-08T14:01:28Z -{{ObjectProperty -| rdfs:label@en = management country -| rdfs:domain = Island -| rdfs:range = Country -| rdfs:subPropertyOf = dul:sameSettingAs -}}OntologyProperty:ManagementElevation202109181072010-05-28T13:19:28Z{{DatatypeProperty -| rdfs:label@en = management elevation -| rdfs:range = Length -}}OntologyProperty:ManagementMountain2021092362612014-07-08T14:01:32Z -{{ObjectProperty -| rdfs:label@en = management mountain -| rdfs:range = Mountain -| rdfs:subPropertyOf = dul:sameSettingAs -}}OntologyProperty:ManagementPlace2021093362622014-07-08T14:01:36Z -{{ObjectProperty -| rdfs:label@en = management place -| rdfs:range = PopulatedPlace -| rdfs:subPropertyOf = dul:sameSettingAs -}}OntologyProperty:ManagementPosition2021094362632014-07-08T14:01:40Z -{{ObjectProperty -| rdfs:label@en = management position -| rdfs:range = geo:SpatialThing -| rdfs:subPropertyOf = dul:hasSetting -}}OntologyProperty:ManagementRegion2021095362642014-07-08T14:01:43Z -{{ObjectProperty -| rdfs:label@en = management region -| rdfs:domain = Island -| rdfs:range = PopulatedPlace -| rdfs:subPropertyOf = dul:sameSettingAs -}}OntologyProperty:Manager2021096476072015-04-03T09:59:23Z{{ObjectProperty -| rdfs:label@en = manager -| rdfs:label@de = Manager -| rdfs:label@el = προπονητής -| rdfs:domain = SportsTeam -| rdfs:range = Person -| rdfs:subPropertyOf = dul:coparticipatesWith -| owl:equivalentProperty = wikidata:P286 -}}OntologyProperty:ManagerClub2022293514422016-08-16T07:35:27Z{{ObjectProperty -| rdfs:label@en = manager club -| rdfs:label@de = Clubmanager -| rdfs:label@ja = 監督チーム -| rdfs:domain = Athlete -| rdfs:range = SportsTeam -| rdfs:subPropertyOf = dul:coparticipatesWith -}}OntologyProperty:ManagerSeason2027876273372013-07-10T12:47:19Z{{ObjectProperty -| rdfs:label@en = manager season -| rdfs:domain = Agent -}}OntologyProperty:ManagerTitle202109881082010-05-28T13:19:36Z{{DatatypeProperty -| rdfs:label@en = manager title -| rdfs:domain = SoccerClub -| rdfs:range = xsd:string -}}OntologyProperty:ManagerYears2021099514442016-08-16T07:36:51Z{{DatatypeProperty -| rdfs:label@en = manager years -| rdfs:label@ja = 監督年 -| rdfs:domain = SoccerPlayer -| rdfs:range = xsd:date -}}OntologyProperty:ManagerYearsEndYear2027878273432013-07-10T13:12:29Z{{DatatypeProperty -| labels = -{{label|en|manager years end year}} -| rdfs:domain = owl:Thing -| rdfs:range = xsd:gYear -}}OntologyProperty:ManagerYearsStartYear2027877273422013-07-10T13:12:16Z{{DatatypeProperty -| labels = -{{label|en|manager years start year}} -| rdfs:domain = owl:Thing -| rdfs:range = xsd:gYear -}}OntologyProperty:ManagingEditor2021100362672014-07-08T14:01:54Z -{{ObjectProperty -| rdfs:label@en = managing editor -| rdfs:domain = Newspaper -| rdfs:range = Person -| rdfs:subPropertyOf = dul:coparticipatesWith -}}OntologyProperty:Mandate2027138338702014-04-04T14:56:45Z{{DatatypeProperty -| labels = -{{label|en|political mandate}} -{{label|de|politisches Mandat}} -| rdfs:range = xsd:string -}}OntologyProperty:Manufactory20211976525982017-10-31T10:17:53Z{{ObjectProperty -| rdfs:label@en = manufactory -| rdfs:label@de = Fabrik -| rdfs:range = Factory -}}OntologyProperty:Manufacturer2021101476082015-04-03T10:00:41Z{{ObjectProperty -| rdfs:label@en = manufacturer -| rdfs:label@de = Hersteller -| rdfs:label@el = κατασκευαστής -| rdfs:range = Organisation -| rdfs:subPropertyOf = dul:coparticipatesWith -| owl:equivalentProperty = wikidata:P176 -}}OntologyProperty:Map2023258537682020-10-14T22:28:38Z -{{ObjectProperty -| labels = - {{label|en|map}} - {{label|el|χάρτης}} - {{label|nl|kaart}} - {{label|de|Landkarte}} - {{label|fr|carte}} - {{label|pt|mapa}} -| rdfs:domain = Place -| rdfs:range = owl:Thing -| rdfs:comment@en = A map of the place. -| rdfs:comment@el = Χάρτης μιας περιοχής. -| rdfs:comment@de = Eine Landkarte des Ortes. -| owl:equivalentProperty = schema:maps, gn:locationMap -| rdfs:subPropertyOf = dul:hasLocation -}}OntologyProperty:MapCaption2027009254952013-05-25T19:25:13Z{{DatatypeProperty -| labels = -{{label|en|map caption}} -| rdfs:domain = Place -| rdfs:range = xsd:string -}}OntologyProperty:MapDescription2025258198982012-11-21T18:02:41Z{{DatatypeProperty -| labels = -{{label|en|map description}} -{{label|nl|kaart omschrijving}} -| rdfs:domain = Place -| rdfs:range = xsd:string -}}OntologyProperty:March2021104362702014-07-08T14:02:04Z -{{ObjectProperty -| rdfs:label@en = march -| rdfs:label@de = Marsch -| rdfs:label@pt = marcha -| rdfs:domain = MilitaryUnit -| rdfs:range = MusicalWork -| rdfs:subPropertyOf = dul:coparticipatesWith -}}OntologyProperty:MarketCapitalisation2021105338732014-04-04T14:56:57Z{{DatatypeProperty -| rdfs:label@en = market capitalisation -| rdfs:label@de = Marktkapitalisierung -| rdfs:domain = Company -| rdfs:range = Currency -| rdf:type = owl:FunctionalProperty -}}OntologyProperty:Mascot2021106338742014-04-04T14:57:01Z{{DatatypeProperty -| labels = - {{label|en|mascot}} -{{label|de|Maskottchen}} - {{label|pt|mascote}} - {{label|fr|mascotte}} -| comments = - {{comment|en|something, especially a person or animal, used to symbolize a sports team, company, organization or other group.<ref>http://en.wiktionary.org/wiki/mascot</ref>}} - {{comment|fr|Animal, poupée, objets divers servant de porte-bonheur ou d’emblème.<ref>http://fr.wiktionary.org/wiki/mascotte</ref>}} -| rdfs:range = xsd:string -}} - -== References == -<references/>OntologyProperty:Mass2021107338752014-04-04T14:57:05Z{{DatatypeProperty -| rdfs:label@en = mass -| rdfs:label@de = Masse -| rdfs:label@el = μάζα -| rdfs:range = Mass -}}OntologyProperty:Massif2027185362712014-07-08T14:02:07Z -{{ObjectProperty -| labels = - {{label|en|massif}} - {{label|de|Massiv}} -| rdfs:domain = SkiResort -| rdfs:range = Place -| rdfs:subPropertyOf = dul:hasLocation -}}OntologyProperty:MastersWins2027646273152013-07-10T11:26:49Z{{ObjectProperty -| labels = -{{label|en|masters wins}} -| rdfs:domain = Person -| rdfs:range = skos:Concept -}}OntologyProperty:MatchPoint2027826271392013-07-05T15:24:57Z{{DatatypeProperty -| labels = -{{label|en|match point}} -| rdfs:domain = Person -| rdfs:range = xsd:string -}}OntologyProperty:Material2021108536772020-07-30T21:30:37Z{{ObjectProperty -| rdfs:label@en = material -| rdfs:label@de = Material -| rdfs:label@fr = matériel -| owl:equivalentProperty = schema:material -}}OntologyProperty:Max2027917276222013-07-15T13:27:31Z{{DatatypeProperty -| labels = -{{label|en|max}} -| rdfs:range = xsd:nonNegativeInteger -}}OntologyProperty:MaxAbsoluteMagnitude2029169319192014-02-14T18:45:58Z{{DatatypeProperty - |rdfs:label@en=maximum absolute magnitude - |rdfs:label@de=maximale absolute Helligkeit - |rdfs:label@nl=maximale absolute magnitude - |rdfs:domain=CelestialBody - |rdfs:range=xsd:double -}}OntologyProperty:MaxApparentMagnitude2029170319202014-02-14T18:47:08Z{{DatatypeProperty -| labels = -{{label|en|maximum apparent magnitude}} -{{label|de|maximale scheinbare Helligkeit}} -{{label|nl|maximale schijnbare magnitude}} - |rdfs:domain=CelestialBody - |rdfs:range=xsd:double -}}OntologyProperty:MaxTime20211300487732015-08-13T10:24:17Z{{DatatypeProperty -| labels = - {{label|en|maximum preparation time}} -| comments = - {{comment|en|Maximum preparation time of a recipe / Food}} -| rdfs:domain = Food -| rdfs:range = Time -}}OntologyProperty:MaximumArea2027084338782014-04-04T14:57:18Z{{DatatypeProperty -| labels = -{{label|en|maximum area}} -{{label|de|maximale Fläche}} -| rdfs:domain = Place -| rdfs:range = xsd:string -}}OntologyProperty:MaximumAreaQuote2027085256092013-05-26T13:27:44Z{{DatatypeProperty -| labels = -{{label|en|maximum area quote}} -| rdfs:domain = Place -| rdfs:range = xsd:string -}}OntologyProperty:MaximumBoatBeam2021109115502011-04-01T11:12:15Z{{DatatypeProperty -| rdfs:label@en = maximum boat beam -| rdfs:label@el = μέγιστο_πλάτος_πλοίου -| rdfs:domain = Canal -| rdfs:range = Length -}}OntologyProperty:MaximumBoatLength2021110115492011-04-01T11:11:11Z{{DatatypeProperty -| rdfs:label@en = maximum boat length -| rdfs:label@el = μέγιστο_μήκος_πλοίου -| rdfs:domain = Canal -| rdfs:range = Length -}}OntologyProperty:MaximumDepth2021111493262015-10-23T13:00:29Z{{DatatypeProperty -| labels = -{{label|de|maximale Tiefe}} -{{label|el|μέγιστο_βάθος}} -{{label|en|maximum depth}} -{{label|fr|profondeur maximale}} -| comments = -{{comment|en|Source of the value can be declare by {{linkProperties|maximumDepthQuote|}}.}} -| rdfs:domain = Place -| rdfs:range = Length -| rdfs:subPropertyOf = depth -| owl:propertyDisjointWith = averageDepth -}}OntologyProperty:MaximumDepthQuote2027092493252015-10-23T12:51:24Z{{DatatypeProperty -| labels = -{{label|en|maximum depth quote}} -| comments = -{{comment|en|Source of the {{linkProperties|maximumDepth|}} value.}} -| rdfs:domain = Place -| rdfs:range = xsd:string -}}OntologyProperty:MaximumDischarge202111281182010-05-28T13:20:59Z{{DatatypeProperty -| rdfs:label@en = maximum discharge -| rdfs:range = FlowRate -}}OntologyProperty:MaximumElevation2021113112722011-03-30T09:40:00Z{{DatatypeProperty -| rdfs:label@en = maximum elevation -| rdfs:label@el = κορυφή -| rdfs:domain = Place -| rdfs:range = Length -| rdfs:comment@en = maximum elevation above the sea level -}}OntologyProperty:MaximumInclination202111481202010-05-28T13:21:16Z{{DatatypeProperty -| rdfs:label@en = maximum inclination -| rdfs:domain = LaunchPad -| rdfs:range = xsd:float -}}OntologyProperty:MaximumTemperature2021115338802014-04-04T14:57:26Z{{DatatypeProperty -| rdfs:label@en = maximum temperature -| rdfs:label@de = Maximaltemperatur -| rdfs:label@el = μέγιστη θερμοκρασία -| rdfs:domain = Planet -| rdfs:range = Temperature -}}OntologyProperty:Mayor2021116523082017-10-09T12:55:27Z -{{ObjectProperty -| labels = - {{label|en|mayor}} - {{label|de|Bürgermeister}} - {{label|el|δήμαρχος}} - {{label|nl|burgemeester}} - {{label|fr|maire}} -| rdfs:range = Mayor -| rdfs:subPropertyOf = dul:coparticipatesWith -| rdfs:subPropertyOf = Leader -}}OntologyProperty:MayorArticle2027156256972013-05-26T16:39:32Z{{DatatypeProperty -| labels = -{{label|en|mayor article}} -| rdfs:domain = Place -| rdfs:range = xsd:string -}}OntologyProperty:MayorCouncillor2026879274282013-07-12T10:19:17Z{{DatatypeProperty -| labels = -{{label|en|mayor councillor}} -| rdfs:range = xsd:string -}}OntologyProperty:MayorFunction2026941254122013-05-25T12:04:48Z{{DatatypeProperty -| labels = -{{label|en|mayor function of a switzerland settlement}} -| rdfs:domain = SwitzerlandSettlement -| rdfs:range = xsd:string -}}OntologyProperty:MayorMandate2026779250662013-04-21T14:35:49Z{{DatatypeProperty -| labels = -{{label|en|mayorMandate}} -| rdfs:domain = Mayor -| rdfs:range = xsd:string -}}OntologyProperty:MayorTitle2026903348472014-05-15T05:19:31Z{{DatatypeProperty -| labels = -{{label|en|mayor title of a hungarian settlement}} -| rdfs:domain = HungarySettlement -| rdfs:range = rdf:langString -}}OntologyProperty:MbaId2028428528792018-02-13T10:47:58Z{{DatatypeProperty -| labels = -{{label|en|MBA Id}} -| comments = -{{comment|en|MusicBrainz is an open music encyclopedia that collects music metadata and makes it available to the public.}} -| rdfs:range = xsd:string -| rdfs:subPropertyOf = code -}}OntologyProperty:MeanRadius2021118339522014-04-04T15:06:20Z{{DatatypeProperty -| rdfs:label@en = mean radius -| rdfs:label@de = durchschnittlicher Radius -| rdfs:label@el = μέση ακτίνα -| rdfs:domain = Planet -| rdfs:range = Length -}}OntologyProperty:MeanTemperature2021119338832014-04-04T14:57:39Z{{DatatypeProperty -| rdfs:label@en = mean temperature -| rdfs:label@de = Durchschnittstemperatur -| rdfs:label@el = μέση θερμοκρασία -| rdfs:domain = Planet -| rdfs:range = Temperature -}}OntologyProperty:Meaning2021117462532015-03-18T14:40:38Z{{DatatypeProperty -| rdfs:label@en = meaning -| rdfs:label@de = Bedeutung -| rdfs:range = xsd:string -}}OntologyProperty:Measurements2023290338852014-04-04T14:57:48Z{{DatatypeProperty -| rdfs:label@en = measurements -| rdfs:label@de = Messungen -| rdfs:label@pt = medidas -| rdfs:domain = Person -| rdfs:range = xsd:string -}}OntologyProperty:Medalist2025669362732014-07-08T14:02:14Z -{{ObjectProperty -| rdfs:label@en = medalist -| rdfs:label@de = Medaillengewinner -| rdfs:label@pt = medalhista -| rdfs:domain = SportsEvent -| rdfs:range = Person -| rdfs:subPropertyOf = dul:hasParticipant -}}OntologyProperty:Media2027701338872014-04-04T14:57:56Z{{ObjectProperty -| labels = -{{label|en|media}} -{{label|de|Medien}} -| rdfs:domain = Person -}}OntologyProperty:MediaItem20211724513662016-07-10T20:04:12Z{{ObjectProperty -| labels= - {{label|en|media item}} - {{label|de|Multimediaelement}} -| comments= - {{comment|en|A media file (such as audio, video or images) associated with the subject}} -| rdfs:domain = owl:Thing -| rdfs:range = File -}}OntologyProperty:MediaType2021120528272018-02-08T20:09:46Z{{ObjectProperty -| labels = - {{label|en|media type}} - {{label|de|Medientyp}} - {{label|nl|mediatype}} -| rdfs:domain = WrittenWork -| owl:equivalentProperty = -| rdfs:subPropertyOf = -| rdfs:comment@en = Print / On-line (then binding types etc. if relevant) -}}OntologyProperty:MedicalCause20211862521992017-10-07T14:20:14Z{{ObjectProperty -| labels = - {{label|en|medical cause}} - {{label|fr|médical cause}} - {{label|de|medizinische Ursache}} - {{label|el|αιτία Ιατρικός}} -| rdfs:domain = Disease -| rdfs:range = owl:Thing -}}OntologyProperty:MedicalDiagnosis20211864522012017-10-07T14:35:55Z{{ObjectProperty -| labels = - {{label|en|medical diagnosis}} - {{label|fr|diagnostic médical}} - {{label|de|medizinische Diagnose}} -| rdfs:domain = Disease -| rdfs:range = owl:Thing -}}OntologyProperty:MedicalSpecialty20211868522052017-10-07T14:57:35Z{{ObjectProperty -| labels = - {{label|de|medizinisches Fachgebiet}} - {{label|en|medical specialty}} - {{label|nl|medisch specialisme}} - {{label|el|ιατρική ειδικότητα}} - {{label|fr|spécialité médicale}} - {{label|ko|진료과}} - {{label|ja|診療科}} - {{label|it|specializzazione medica}} -| rdfs:domain = Disease -| rdfs:range = MedicalSpecialty -}}OntologyProperty:Medication20211866522032017-10-07T14:40:02Z{{ObjectProperty -| labels = - {{label|en|medication}} - {{label|fr|médication}} - {{label|de|Medikation}} -| rdfs:domain = Disease -| rdfs:range = owl:Thing -}}OntologyProperty:MedlinePlus2021121523952017-10-15T12:20:36Z{{DatatypeProperty -| labels = -{{label|en|MedlinePlus}} -{{label|nl|MedlinePlus}} -| rdfs:domain = owl:Thing -| rdfs:range = xsd:string -}}OntologyProperty:MeetingBuilding2021122362752014-07-08T14:02:20Z -{{ObjectProperty -| rdfs:label@en = meeting building -| rdfs:label@de = Tagungsgebäude -| rdfs:domain = Legislature -| rdfs:range = Building -| rdfs:subPropertyOf = dul:hasLocation -}}OntologyProperty:MeetingCity2021123362762014-07-08T14:02:23Z -{{ObjectProperty -| rdfs:label@en = meeting city -| rdfs:domain = Legislature -| rdfs:range = Settlement -| rdfs:subPropertyOf = dul:hasLocation -}}OntologyProperty:MeetingRoad2023381362772014-07-08T14:02:37Z -{{ObjectProperty -| rdfs:label@en = meeting road -| rdfs:label@de = zusammentreffende Straße -| rdfs:domain = RoadJunction -| rdfs:range = Road -| rdfs:comment@en = A road that crosses another road at the junction. -| rdfs:comment@de = Eine Straße die an der Kreuzung eine andere Straße kreuzt. -| rdfs:subPropertyOf = dul:hasCommonBoundary -}}OntologyProperty:MeltingPoint2021124191122012-07-31T07:47:44Z{{DatatypeProperty -| rdfs:label@en = melting point -| rdfs:label@de = Schmelzpunkt -| rdfs:label@fr = point de fusion -| rdfs:label@ja = 融点 -| rdfs:range = Temperature -}}OntologyProperty:Member2026823490962015-10-10T16:01:30Z{{DatatypeProperty -| labels = -{{label|en|member}} -{{label|de|Mitglied}} -{{label|nl|lid van}} -| rdfs:domain = Person -| rdfs:range = xsd:string -}}OntologyProperty:MemberOfParliament2021125362782014-07-08T14:02:40Z -{{ObjectProperty -| rdfs:label@en = Member of Parliament -| rdfs:label@de = Abgeordnete -| rdfs:range = Person -| rdfs:subPropertyOf = dul:hasMember -}}OntologyProperty:Membership2021126357042014-06-30T21:32:17Z{{DatatypeProperty -| labels = -{{label|en|membership}} -{{label|de|Mitgliedschaft}} -{{label|nl|lidmaatschap}} -| rdfs:domain = Organisation -| rdfs:range = rdf:langString -}}OntologyProperty:MembershipAsOf2026478237482013-02-15T12:00:03Z{{DatatypeProperty -| labels = -{{label|en|date membership established}} -{{label|nl|datum vaststellen ledental}} -| rdfs:domain = Organisation, Parish -| rdfs:range = xsd:date -}}OntologyProperty:Mentor2027336362792014-07-08T14:02:43Z -{{ObjectProperty -| labels = - {{label|en|mentor}} - {{label|de|Mentor}} - {{label|fr|maître}} - {{label|fr|mentor}} -| rdfs:domain = Artist -| rdfs:range = Artist -| comments = - {{comment|en|A wise and trusted counselor or teacher<ref>http://en.wiktionary.org/wiki/mentor</ref>}} - {{comment|fr|Celui qui sert de guide, de conseiller à quelqu’un. <ref>http://fr.wiktionary.org/wiki/mentor</ref>}} -| rdfs:subPropertyOf = dul:coparticipatesWith -}} -<references/>OntologyProperty:MergedIntoParty20211952525002017-10-17T22:49:21Z#REDIRECT [[OntologyProperty:MergedWith]]OntologyProperty:MergedSettlement2027900274252013-07-12T10:15:10Z{{ObjectProperty -| labels = -{{label|en|merged settlement}} -| rdfs:domain = Settlement -| rdfs:range = Settlement -}}OntologyProperty:MergedWith2023725525022017-10-17T22:50:47Z -{{ObjectProperty -| rdfs:label@en = merged with -| rdfs:label@de = zusammengeschlossen -| rdfs:domain = Organisation -| rdfs:range = Organisation -| rdfs:subPropertyOf = dul:coparticipatesWith -}}OntologyProperty:MergerDate2027107256342013-05-26T13:54:39Z{{DatatypeProperty -| labels = -{{label|en|merger date}} -| rdfs:domain = Place -| rdfs:range = xsd:date -}}OntologyProperty:MeshId2021127476092015-04-03T10:01:48Z{{DatatypeProperty -| labels = -{{label|en|MeSH ID}} -{{label|nl|MeSH ID}} -| rdfs:domain = Disease -| rdfs:range = xsd:string -| owl:equivalentProperty = wikidata:P486 -}}OntologyProperty:MeshName2021128348242014-05-15T05:05:55Z{{DatatypeProperty -| rdfs:label@en = MeSH name -| rdfs:domain = AnatomicalStructure -| rdfs:range = rdf:langString -}}OntologyProperty:MeshNumber2021129501522016-01-04T20:18:55Z{{DatatypeProperty -| rdfs:label@en = MeSH number -| rdfs:domain = AnatomicalStructure -| rdfs:range = xsd:string -| rdfs:subPropertyOf = code -}}OntologyProperty:MessierName2028922307532014-01-22T11:52:39Z{{DatatypeProperty -| rdfs:label@en = Messier name -| rdfs:comment@en = Name for Messier objects -| rdfs:subPropertyOf = name -| rdfs:domain = CelestialBody -| rdfs:range = xsd:string -}}OntologyProperty:MetropolitanBorough2022141362812014-07-08T14:02:49Z -{{ObjectProperty -| labels = - {{label|en|metropolitan borough}} - {{label|nl|stadswijk}} -| rdfs:domain = PopulatedPlace -| rdfs:range = PopulatedPlace -| rdfs:subPropertyOf = dul:isPartOf -}}OntologyProperty:Mgiid2025029191322012-07-31T11:18:56Z{{DatatypeProperty -| rdfs:label@en = mgiid -| rdfs:label@ja = mgiid -| rdfs:comment@en = Mouse Genomic Informatics ID -| rdfs:domain = Biomolecule -| rdfs:range = xsd:string -}}OntologyProperty:MilitaryBranch2021703491492015-10-13T10:04:00Z{{ObjectProperty -| rdfs:label@en = military branch -| rdfs:comment@en = The service branch (Army, Navy, etc.) a person is part of. -| rdfs:domain = MilitaryPerson -| rdfs:range = MilitaryUnit -| rdfs:subPropertyOf = dul:isMemberOf -}}OntologyProperty:MilitaryCommand2021700338942014-04-04T14:58:26Z{{DatatypeProperty -| rdfs:label@en = military command -| rdfs:label@de = Militärkommando -| rdfs:domain = MilitaryPerson -| rdfs:comment@en = For persons who are notable as commanding officers, the units they commanded. Dates should be given if multiple notable commands were held. -| rdfs:range = xsd:string -}}OntologyProperty:MilitaryFunction2027886491502015-10-13T10:04:44Z{{DatatypeProperty -| labels = -{{label|en|military function}} -{{label|de|militärische Funktion}} -| rdfs:domain = MilitaryPerson -| rdfs:range = xsd:string -}}OntologyProperty:MilitaryGovernment2027555338962014-04-04T14:58:35Z{{DatatypeProperty -| labels = -{{label|en|military government}} -{{label|de|Militärregierung}} -| rdfs:range = xsd:string -}}OntologyProperty:MilitaryRank2021130362832014-07-08T14:02:56Z -{{ObjectProperty -| rdfs:label@en = military rank -| rdfs:label@de = militärischer Rang -| rdfs:comment@en = The highest rank achieved by a person. -| rdfs:domain = MilitaryPerson -| rdfs:subPropertyOf = dul:isMemberOf -}}OntologyProperty:MilitaryService20211951524902017-10-16T17:16:02Z{{ObjectProperty -| labels = - {{label|en|military service}} - {{label|de|Militärdienst}} - {{label|de|service militaire}} -| rdfs:domain = Person -| rdfs:range = MilitaryService -}}OntologyProperty:MilitaryUnit2021699362842014-07-08T14:02:59Z -{{ObjectProperty -| rdfs:label@en = military unit -| rdfs:label@de = Militäreinheit -| rdfs:domain = MilitaryPerson -| rdfs:comment@en = For persons who are not notable as commanding officers, the unit (company, battalion, regiment, etc.) in which they served. -| rdfs:range = MilitaryUnit -| rdfs:subPropertyOf = dul:isMemberOf -}}OntologyProperty:MilitaryUnitSize202210883612010-05-28T13:53:52Z{{DatatypeProperty -| rdfs:label@en = military unit size -| rdfs:comment@en = the size of the military unit -| rdfs:range = xsd:string -}}OntologyProperty:MillSpan2026012223492013-01-11T20:35:27Z{{DatatypeProperty -| labels = -{{label|en|mill span}} -{{label|nl|vlucht}} -{{label|el|Εκπέτασμα}} -| rdfs:domain = Mill -| rdfs:range = Length -}}OntologyProperty:MillType2026011362852014-07-08T14:03:02Z -{{ObjectProperty -| labels = - {{label|el|τύπος μύλου}} - {{label|en|mill type}} - {{label|nl|molen-type}} -| rdfs:domain = Mill -| rdfs:subPropertyOf = dul:isClassifiedBy -}}OntologyProperty:MillsCodeBE2026316223652013-01-11T20:52:16Z{{DatatypeProperty -| labels = -{{label|en|mill code BE}} -{{label|nl|molen code BE}} -| comments = -{{comment|en|mills code from the Belgian database on mills}} -{{comment|nl|unieke code voor molens in database www.molenechos.org}} -| rdfs:domain = Mill -| rdfs:range = xsd:string -| rdfs:comment@en = -}}OntologyProperty:MillsCodeDutch2026052223642013-01-11T20:50:22Z{{DatatypeProperty -| labels = -{{label|en|mill code NL}} -{{label|nl|molen code NL}} -| rdfs:domain = Mill -| rdfs:range = xsd:string -| rdfs:comment@en = -}}OntologyProperty:MillsCodeNL2026050223602013-01-11T20:45:13Z{{DatatypeProperty -| labels = -{{label|en|mill code NL}} -{{label|nl|molen code NL}} -| rdfs:domain = Mill -| rdfs:range = xsd:string -| comments = -{{comment|en|mills code from the central Dutch database on mills}} -{{comment|nl|unieke code voor molens in www.molendatabase.nl}} -}}OntologyProperty:MillsCodeNLVerdwenen2026051223622013-01-11T20:48:23Z{{DatatypeProperty -| labels = -{{label|en|mill dissapeared code NL }} -{{label|nl|verdwenen molen code NL}} -| rdfs:domain = Mill -| rdfs:range = xsd:string -| rdfs:comment@en = -}}OntologyProperty:MillsCodeNLWindmotoren2026053223662013-01-11T20:52:55Z{{DatatypeProperty -| labels = -{{label|en|millsCodeNLWindmotoren}} -{{label|nl|millsCodeNLWindmotoren}} -| rdfs:domain = Mill -| rdfs:range = xsd:string -| rdfs:comment@en = -}}OntologyProperty:Min2027918276232013-07-15T13:27:38Z{{DatatypeProperty -| labels = -{{label|en|min}} -| rdfs:range = xsd:nonNegativeInteger -}}OntologyProperty:MinTime20211299487722015-08-13T10:24:01Z{{DatatypeProperty -| labels = - {{label|en|minimum preparation time}} -| comments = - {{comment|en|Minimum preparation time of a recipe / Food}} -| rdfs:domain = Food -| rdfs:range = Time -}}OntologyProperty:MinimumArea2027086338992014-04-04T14:58:47Z{{DatatypeProperty -| labels = -{{label|en|minimum area}} -{{label|de|Mindestfläche}} -| rdfs:domain = Place -| rdfs:range = xsd:string -}}OntologyProperty:MinimumAreaQuote2027087256112013-05-26T13:28:25Z{{DatatypeProperty -| labels = -{{label|en|minimum area quote}} -| rdfs:domain = Place -| rdfs:range = xsd:string -}}OntologyProperty:MinimumDischarge202113181312010-05-28T13:22:50Z{{DatatypeProperty -| rdfs:label@en = minimum discharge -| rdfs:range = FlowRate -}}OntologyProperty:MinimumElevation2021132112742011-03-30T09:41:32Z{{DatatypeProperty -| rdfs:label@en = minimum elevation -| rdfs:label@el = βάση -| rdfs:domain = Place -| rdfs:range = Length -| rdfs:comment@en = minimum elevation above the sea level -}}OntologyProperty:MinimumInclination202113381332010-05-28T13:23:05Z{{DatatypeProperty -| rdfs:label@en = minimum inclination -| rdfs:domain = LaunchPad -| rdfs:range = xsd:float -}}OntologyProperty:MinimumTemperature2021134339002014-04-04T14:58:52Z{{DatatypeProperty -| rdfs:label@en = minimum temperature -| rdfs:label@de = geringste Temperatur -| rdfs:label@el = ελάχιστη θερμοκρασία -| rdfs:domain = Planet -| rdfs:range = Temperature -}}OntologyProperty:Minister20211949524882017-10-16T16:44:23Z{{ObjectProperty -| labels = - {{label|en|minister}} - {{label|de|Minister}} - {{label|fr|ministre}} -| rdfs:range = Politician -}}OntologyProperty:Minority2026909339012014-04-04T14:58:56Z{{ObjectProperty -| labels = -{{label|en|minority}} -{{label|de|Minderheit}} -| rdfs:domain = Settlement -| rdfs:range = Group -}}OntologyProperty:MinorityFloorLeader202236384022010-05-28T13:59:28Z{{DatatypeProperty -| rdfs:label@en = minority floor leader -| rdfs:comment@en = number of office holder -| rdfs:range = xsd:integer -}}OntologyProperty:MinorityLeader202236184002010-05-28T13:59:12Z{{DatatypeProperty -| rdfs:label@en = minority leader -| rdfs:comment@en = number of office holder -| rdfs:range = xsd:integer -}}OntologyProperty:MirDockings2021135103852010-11-10T14:33:03Z{{DatatypeProperty -| rdfs:label@en = mir dockings -| rdfs:domain = SpaceShuttle -| rdfs:range = xsd:nonNegativeInteger -}}OntologyProperty:Mission2021136515852016-11-04T12:53:04Z -{{ObjectProperty -| rdfs:label@en = mission -| rdfs:label@de = Mission -| rdfs:label@el = αποστολή -| rdfs:domain = -| rdfs:range = SpaceMission -| rdfs:subPropertyOf = dul:isParticipantIn -}}OntologyProperty:MissionDuration2021137339032014-04-04T14:59:06Z{{DatatypeProperty -| rdfs:label@en = mission duration -| rdfs:label@de = Missionsdauer -| rdfs:domain = SpaceMission -| rdfs:range = Time -}}OntologyProperty:Missions2021138339042014-04-04T14:59:11Z{{DatatypeProperty -| rdfs:label@en = missions -| rdfs:label@de = Missionen -| rdfs:label@el = αποστολές -| rdfs:domain = SpaceShuttle -| rdfs:range = xsd:nonNegativeInteger -}}OntologyProperty:Model2021139339052014-04-04T14:59:15Z{{DatatypeProperty -| rdfs:label@en = model -| rdfs:label@de = Modell -| rdfs:label@fr = modèle -| rdfs:domain = Sales -| rdfs:range = xsd:string -}}OntologyProperty:ModelEndDate202114081392010-05-28T13:23:50Z{{DatatypeProperty -| rdfs:label@en = model end date -| rdfs:domain = MeanOfTransportation -| rdfs:range = xsd:date -}}OntologyProperty:ModelEndYear202114181402010-05-28T13:23:56Z{{DatatypeProperty -| rdfs:label@en = model end year -| rdfs:domain = MeanOfTransportation -| rdfs:range = xsd:gYear -}}OntologyProperty:ModelLineVehicle20211176485232015-08-05T14:54:18Z{{DatatypeProperty -| labels = -{{label|en|type series}} -{{label|de|Baureihe}} -| rdfs:domain = MeanOfTransportation -| rdfs:range = xsd:string -}}OntologyProperty:ModelStartDate202114281412010-05-28T13:24:05Z{{DatatypeProperty -| rdfs:label@en = model start date -| rdfs:domain = MeanOfTransportation -| rdfs:range = xsd:date -}}OntologyProperty:ModelStartYear202114381422010-05-28T13:24:12Z{{DatatypeProperty -| rdfs:label@en = model start year -| rdfs:domain = MeanOfTransportation -| rdfs:range = xsd:gYear -}}OntologyProperty:MolarMass20212041531842018-09-28T14:26:56Z{{DatatypeProperty -| labels = -{{label|en|molar mass}} -{{label|de|Molare Masse}} -{{label|nl|Molaire massa}} -| rdfs:domain = ChemicalSubstance -| rdfs:range = xsd:double -| rdfs:subPropertyOf = mass -}}OntologyProperty:MolecularWeight2029141339062014-04-04T14:59:21Z{{DatatypeProperty -| labels = -{{label|en|molecular weight}} -{{label|de|Molekulargewicht}} -{{label|nl|molgewicht}} -| rdfs:domain = ChemicalSubstance -| rdfs:range = xsd:nonNegativeInteger -}}OntologyProperty:Monarch2022327362872014-07-08T14:03:08Z -{{ObjectProperty -| labels = - {{label|en|monarch}} - {{label|de|Monarch}} - {{label|nl|monarch}} -| rdfs:range = Person -| rdfs:subPropertyOf = dul:sameSettingAs -}}OntologyProperty:Month2025344225742013-01-14T21:24:19Z{{ DatatypeProperty - - | rdfs:label@en = month - | rdfs:label@el = μήνας - | rdfs:label@de = Monat - | rdfs:domain = owl:Thing - | rdfs:range = xsd:string - -}}OntologyProperty:Mood2027766339082014-04-04T14:59:29Z{{DatatypeProperty -| labels = -{{label|en|mood}} -{{label|de|Stimmung}} -| rdfs:domain = Person -| rdfs:range = xsd:string -}}OntologyProperty:MostDownPoint2026916362882014-07-08T14:03:11Z -{{ObjectProperty -| labels = - {{label|en|most down point of a norwegian settlement}} -| rdfs:domain = NorwaySettlement -| rdfs:range = Place -| rdfs:subPropertyOf = dul:hasPart -}}OntologyProperty:MostSuccessfulPlayer20211839520412017-05-06T16:23:13Z -{{ObjectProperty -| labels = - {{label|en|most successful player}} - {{label|es|mejor jugador}} -| rdfs:domain = SportsEvent -| rdfs:range = Athlete -| comments = - {{comment|en|the best player in a certain sport competition. E.g, in a football competition, the player that scored more goals.}} - {{comment|es|el mejor jugador de una cierta competición deportiva. Por ejemplo, en una competición de fútbol, aquel jugador que ha marcado más goles. }} -}}OntologyProperty:MostWins2021144362892014-07-08T14:03:15Z -{{ObjectProperty -| rdfs:label@en = most wins -| rdfs:label@de = die meisten Siege -| rdfs:domain = Race -| rdfs:subPropertyOf = dul:hasParticipant -}}OntologyProperty:Mother2027546535852020-01-30T18:04:33Z{{ObjectProperty -| labels = - {{label|en|mother}} - {{label|de|Mutter}} -| rdfs:domain = Woman -| rdfs:range = Person -| rdfs:subPropertyOf = dul:sameSettingAs -| owl:equivalentProperty = wikidata:P25 -}}OntologyProperty:Motive20211897522782017-10-08T17:51:27Z{{DatatypeProperty -| rdfs:label@en = motive -| rdfs:label@de = Motiv -| rdfs:domain = Criminal -| rdfs:range = xsd:string -| rdfs:comment = The motive of the crime(s) this individual is known for. -}}OntologyProperty:Motto2021146339132014-04-04T15:00:15Z{{DatatypeProperty -| labels = -{{label|en|motto}} -{{label|de|Motto}} -{{label|nl|motto}} -{{label|el|σύνθημα}} -{{label|pt|lema}} -{{label|fr|devise}} -| rdfs:range = xsd:string -}}OntologyProperty:Mount2027851272492013-07-09T14:23:13Z{{DatatypeProperty -| rdfs:label@en = mount -| rdfs:domain = Person -| rdfs:range = xsd:string -}}OntologyProperty:MountainRange2022415362912014-07-08T14:03:22Z -{{ObjectProperty -| labels = - {{label|en|mountain range}} - {{label|de|Gebirge}} - {{label|nl|bergketen}} -| rdfs:domain = Mountain -| rdfs:range = MountainRange -| rdfs:subPropertyOf = dul:isPartOf -}}OntologyProperty:MouthCountry2021148362922014-07-08T14:03:25Z -{{ObjectProperty -| rdfs:label@en = mouth country -| rdfs:label@el = χώρες_λεκάνης -| rdfs:domain = River -| rdfs:range = Country -| rdfs:subPropertyOf = dul:hasLocation -}}OntologyProperty:MouthDistrict2021149362932014-07-08T14:03:28Z -{{ObjectProperty -| rdfs:label@en = mouth district -| rdfs:domain = River -| rdfs:range = PopulatedPlace -| rdfs:subPropertyOf = dul:hasLocation -}}OntologyProperty:MouthElevation2021150114622011-03-31T21:54:23Z{{DatatypeProperty -| rdfs:label@en = mouth elevation -| rdfs:label@el = ύψος_εκβολών -| rdfs:range = Length -}}OntologyProperty:MouthMountain2021151362942014-07-08T14:03:31Z -{{ObjectProperty -| rdfs:label@en = mouth mountain -| rdfs:domain = River -| rdfs:range = Mountain -| rdfs:subPropertyOf = dul:hasLocation -}}OntologyProperty:MouthPlace2021152362952014-07-08T14:03:48Z -{{ObjectProperty -| rdfs:label@en = mouth place -| rdfs:domain = River -| rdfs:range = PopulatedPlace -| rdfs:subPropertyOf = dul:hasLocation -}}OntologyProperty:MouthPosition2021153362962014-07-08T14:03:52Z -{{ObjectProperty -| rdfs:label@en = mouth position -| rdfs:label@it = foce (di un fiume) -| rdfs:label@es = lugar de desembocadura -| rdfs:domain = River -| rdfs:range = geo:SpatialThing -| rdfs:subPropertyOf = dul:hasLocation -}}OntologyProperty:MouthRegion2021154362972014-07-08T14:03:56Z -{{ObjectProperty -| rdfs:label@en = mouth region -| rdfs:domain = River -| rdfs:range = PopulatedPlace -| rdfs:subPropertyOf = dul:hasLocation -}}OntologyProperty:MouthState2021155362982014-07-08T14:03:59Z -{{ObjectProperty -| rdfs:label@en = mouth state -| rdfs:domain = River -| rdfs:range = PopulatedPlace -| rdfs:subPropertyOf = dul:hasLocation -}}OntologyProperty:Movement2021156476102015-04-03T10:03:18Z{{ObjectProperty -| labels = - {{label|en|movement}} - {{label|de|Bewegung}} - {{label|nl|beweging}} - {{label|fr|mouvement artistique}} -| rdfs:domain = Artist -| rdfs:comment@en = artistic movement or school with which artist is associated -| rdfs:subPropertyOf = dul:isMemberOf -| owl:equivalentProperty = wikidata:P135 -}}OntologyProperty:Movie2026825363002014-07-08T14:04:06Z -{{ObjectProperty -| labels = - {{label|en|movie}} - {{label|de|Film}} -| rdfs:domain = Person -| rdfs:range = Film -| rdfs:subPropertyOf = dul:isParticipantIn -}}OntologyProperty:Mukhtar2026960254342013-05-25T13:45:32Z{{DatatypeProperty -| labels = -{{label|en|mukthar of a lebanon settlement}} -| rdfs:domain = LebanonSettlement -| rdfs:range = xsd:string -}}OntologyProperty:Municipality2021157536982020-09-04T15:25:28Z -{{ObjectProperty -| labels = - {{label|en|municipality}} - {{label|de|Gemeinde}} - {{label|nl|plaats}} - {{label|fr|municipalité}} -| rdfs:range = PopulatedPlace -| rdfs:subPropertyOf = dul:isPartOf -| owl:equivalentProperty = ceo:heeftGemeente -}}OntologyProperty:MunicipalityAbsorbedBy2028145339512014-04-04T15:04:04Z{{ObjectProperty -| labels = -{{label|en|absorbed by}} -{{label|nl|opgegaan in}} -| rdfs:domain = FormerMunicipality -| rdfs:range = Municipality -}}OntologyProperty:MunicipalityCode2022439536992020-09-04T15:26:26Z{{DatatypeProperty -| labels = -{{label|en|municipality code}} -{{label|de|Gemeindecode}} -{{label|nl|gemeente-code}} -| rdfs:comment@en = The [http://en.wikipedia.org/wiki/Community_Identification_Number Official Municipality Key], formerly also known as the Official Municipality Characteristic Number or Municipality Code Number, is a number sequence for the identification of politically independent municipalities or unincorporated areas. It is used in Germany, Austria and Switzerland. -| rdfs:domain = Place -| rdfs:range = xsd:string -| owl:equivalentProperty = ceo:gemeenteCode -}}OntologyProperty:MunicipalityRenamedTo2028148339202014-04-04T15:00:55Z{{DatatypeProperty -| labels = -{{label|en|a municipality's new name}} -{{label|de|neuer Name einer Gemeinde}} -{{label|nl|nieuwe gemeentenaam}} -| rdfs:domain = Municipality -| rdfs:range = xsd:string -}}OntologyProperty:MunicipalityType2024203339212014-04-04T15:01:03Z{{DatatypeProperty -| labels = -{{label|en|type of municipality}} -{{label|de|Gemeindetyp}} -{{label|nl|type gemeente}} -| rdfs:domain = Municipality -| rdfs:range = xsd:string -}}OntologyProperty:Museum2025622363022014-07-08T14:04:12Z -{{ObjectProperty -| labels = - {{label|en|museum}} - {{label|el|μουσείο}} - {{label|de|museum}} - {{label|ja|博物館}} -| rdfs:domain = Artwork -| rdfs:range = Museum -| rdfs:subPropertyOf = dul:hasLocation -}}OntologyProperty:MuseumType2026271363032014-07-08T14:04:15Z -{{ObjectProperty -| labels = - {{label|en|museumType}} - {{label|nl|soort museum}} -| comments = - {{comment|en|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}} - {{comment|nl|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 }} -| rdfs:domain = Museum -| rdfs:range = owl:Thing -| rdf:type = | rdfs:subPropertyOf = Type -| owl:equivalentProperty = -| rdfs:subPropertyOf = dul:isClassifiedBy -}}OntologyProperty:MusicBand2029274325372014-03-10T19:56:00Z{{ObjectProperty -| rdfs:label@en = Music Band -| rdfs:domain = MusicalArtist -| rdfs:range = Band -}}OntologyProperty:MusicBrainzArtistId20212328536482020-07-12T09:50:34Z{{DatatypeProperty -| labels = -{{label|en|MusicBrainz artist id}} -{{label|nl|MusicBrainz artist id}} -{{label|el|MusicBrainz artist id}} -{{label|ja|MusicBrainz artist id}} -|comments= -{{comment|en|MusicBrainz artist. Applies to artists}} -| rdfs:range = xsd:string -| owl:equivalentProperty = wikidata:P434 -| rdfs:subPropertyOf = code -}}OntologyProperty:MusicBy2021161476112015-04-03T10:04:05Z{{ObjectProperty -| rdfs:label@en = music by -| rdfs:label@de = Musik von -| rdfs:domain = Musical -| rdfs:range = Person -| rdfs:subPropertyOf = dul:coparticipatesWith -| owl:equivalentProperty = wikidata:P86 -}}OntologyProperty:MusicComposer2021158363052014-07-08T14:04:22Z -{{ObjectProperty -| labels = - {{label|en|music composer}} - {{label|de|komponist}} - {{label|nl|componist}} - {{label|el|μουσική}} -| rdfs:domain = Work -| rdfs:range = MusicalArtist -| owl:equivalentProperty = schema:musicBy -| rdfs:subPropertyOf = dul:coparticipatesWith -}}OntologyProperty:MusicFormat2026433235052013-01-23T12:49:32Z{{DatatypeProperty -| rdfs:label@en = musicFormat -| rdfs:label@de = musikFormate -| rdfs:comment@en = The format of the album: EP, Single etc. -| rdfs:domain = Album -| rdfs:range = xsd:string -}}OntologyProperty:MusicFusionGenre2021162363062014-07-08T14:04:25Z -{{ObjectProperty -| rdfs:label@en = music fusion genre -| rdfs:domain = MusicGenre -| rdfs:range = MusicGenre -| rdfs:subPropertyOf = dul:overlaps -}}OntologyProperty:MusicSubgenre2021163363072014-07-08T14:04:28Z -{{ObjectProperty -| rdfs:label@en = music subgenre -| rdfs:label@de = Musik Subgenre -| rdfs:domain = MusicGenre -| rdfs:range = MusicGenre -| rdfs:subPropertyOf = dul:isSpecializedBy -}}OntologyProperty:MusicType2026258363082014-07-08T14:04:31Z -{{ObjectProperty -| labels = - {{label|en|musicType}} - {{label|nl|soort muziekwerk}} -| comments = - {{comment|en|Type is too general. We should be able to distinguish types of music from types of architecture}} - {{comment|nl|Type is te algemeen. We moeten soorten muziek van soorten gebouwen kunnen onderscheiden}} -| rdfs:domain = MusicalWork -| rdfs:range = owl:Thing -| rdf:type = | rdfs:subPropertyOf = Type -| owl:equivalentProperty = -| rdfs:subPropertyOf = dul:isClassifiedBy -}}OntologyProperty:MusicalArtist2021159476122015-04-03T10:04:50Z{{ObjectProperty -| rdfs:label@en = musical artist -| rdfs:domain = Single -| rdfs:range = MusicalArtist -| rdfs:subPropertyOf = dul:coparticipatesWith -| owl:equivalentProperty = wikidata:P175 -}}OntologyProperty:MusicalBand2021160363102014-07-08T14:04:39Z -{{ObjectProperty -| rdfs:label@en = musical band -| rdfs:domain = Single -| rdfs:range = Band -| rdfs:subPropertyOf = dul:coparticipatesWith -}}OntologyProperty:MusicalKey2026285391162015-01-09T18:33:18Z{{DatatypeProperty -| labels = -{{label|en|musical key}} -{{label|de|Tonart}} -{{label|el|μουσικό κλειδί}} -{{label|nl|toonsoort}} -| rdfs:domain = MusicalWork -| rdfs:range = xsd:string -| rdf:type = -| rdfs:subPropertyOf = -| owl:equivalentProperty = -}}OntologyProperty:Musicians2022635363112014-07-08T14:04:43Z -{{ObjectProperty -| rdfs:label@en = musicians -| rdfs:label@de = Musiker -| rdfs:label@el = μουσικοί -| rdfs:domain = Instrument -| rdfs:comment@en = | rdfs:range = MusicalArtist -| rdfs:subPropertyOf = dul:coparticipatesWith -}}OntologyProperty:MuteCharacterInPlay2023826133462011-06-06T10:22:32Z{{DatatypeProperty -| rdfs:label@en = mute character in play -| rdfs:domain = Play -| rdfs:range = xsd:string -| rdfs:subPropertyOf = characterInPlay -| rdfs:comment@en = Name of a mute character in play. -}}OntologyProperty:Mvp2027688269602013-07-04T09:29:48Z{{DatatypeProperty -| labels = -{{label|en|mvp}} -| rdfs:domain = Athlete -| rdfs:range = xsd:string -}}OntologyProperty:Mythology2028200339262014-04-04T15:01:31Z{{ObjectProperty -| labels = -{{label|en|mythology}} -{{label|de|Mythologie}} -{{label|it|mitologia}} -{{label|el|μυθολογία}} -| rdfs:domain = MythologicalFigure -| rdfs:range = owl:Thing -}}OntologyProperty:NaacpImageAward2021164363122014-07-08T14:04:47Z -{{ObjectProperty -| rdfs:label@en = NAACP Image Award -| rdfs:domain = Actor -| rdfs:range = Award -| rdfs:subPropertyOf = dul:coparticipatesWith -}}OntologyProperty:Name2026811536582020-07-30T21:11:09Z{{DatatypeProperty -| labels = -{{label|en|name}} -{{label|de|Name}} -| rdfs:range = rdf:langString -| owl:equivalentProperty = schema:name -}}OntologyProperty:NameAsOf2028912339282014-04-04T15:01:50Z{{DatatypeProperty -| labels = -{{label|en|so named since}} -{{label|de|so genannt seit}} -{{label|nl|zo genoemd sinds}} -| rdfs:domain = owl:Thing -| rdfs:range = xsd:gYear -}}OntologyProperty:NameDay2024133231532013-01-18T11:10:49Z{{DatatypeProperty -| rdfs:label@en = name day -| rdfs:label@el = ονομαστική εορτή -| rdfs:label@pl = imieniny -| rdfs:domain = GivenName -| rdfs:range = xsd:date -}}OntologyProperty:NameInCantoneseChinese20211716513302016-06-30T11:15:09Z{{DatatypeProperty -| labels = -{{label|en|name in Yue Chinese}} -{{label|nl|naam in het Kantonees Chinees}} -| rdfs:range = rdf:langString -| rdfs:subPropertyOf = name -}}OntologyProperty:NameInHangulKorean20211720513412016-06-30T11:37:05Z{{DatatypeProperty -| labels = -{{label|en|name in Hangul-written Korean}} -{{label|nl|naam in Hangul-geschreven Koreaans}} -| rdfs:range = rdf:langString -| rdfs:subPropertyOf = name -}}OntologyProperty:NameInHanjaKorean20211721513422016-06-30T11:38:08Z{{DatatypeProperty -| labels = -{{label|en|name in Hanja-written (traditional) Korean}} -{{label|nl|naam in Hanja-geschreven Koreaans}} -| rdfs:range = rdf:langString -| rdfs:subPropertyOf = name -}}OntologyProperty:NameInJapanese20211712513182016-06-30T10:14:23Z{{DatatypeProperty -| labels = -{{label|en|name in Japanese}} -{{label|de|Name auf japanisch}} -{{label|nl|naam in het Japans}} -| rdfs:range = rdf:langString -| rdfs:subPropertyOf = name -}}OntologyProperty:NameInMindongyuChinese20211718513342016-06-30T11:22:05Z{{DatatypeProperty -| labels = -{{label|en|name in Mindongyu Chinese}} -{{label|nl|naam in Mindongyu Chinees}} -| rdfs:range = rdf:langString -| rdfs:subPropertyOf = name -}}OntologyProperty:NameInMinnanyuChinese20211719513362016-06-30T11:27:30Z{{DatatypeProperty -| labels = -{{label|en|name in Minnanyu Chinese}} -{{label|nl|naam in Minnanyu Chinees}} -| rdfs:range = rdf:langString -| rdfs:subPropertyOf = name -}}OntologyProperty:NameInPinyinChinese20211714513262016-06-30T11:06:09Z{{DatatypeProperty -| labels = -{{label|en|name in Pinyin Chinese}} -{{label|nl|naam in het Pinyin Chinees}} -| rdfs:range = rdf:langString -| rdfs:subPropertyOf = name -}}OntologyProperty:NameInSimplifiedChinese20211715513272016-06-30T11:08:35Z{{DatatypeProperty -| labels = -{{label|en|name in Simplified Chinese}} -{{label|nl|naam in het Vereenvoudigd Chinees}} -| rdfs:range = rdf:langString -| rdfs:subPropertyOf = name -}}OntologyProperty:NameInTraditionalChinese20211713513252016-06-30T11:04:00Z{{DatatypeProperty -| labels = -{{label|en|name in Traditional Chinese}} -{{label|nl|naam in het Traditioneel Chinees}} -| rdfs:range = rdf:langString -| rdfs:subPropertyOf = name -}}OntologyProperty:NameInWadeGilesChinese20211717513322016-06-30T11:18:01Z{{DatatypeProperty -| labels = -{{label|en|name in the Wade-Giles transscription of Chinese}} -{{label|nl|naam in het Wade-Giles transscriptie van het Chinees}} -| rdfs:range = rdf:langString -| rdfs:subPropertyOf = name -}}OntologyProperty:NamedAfter2021165476132015-04-03T10:05:58Z{{ObjectProperty -| rdfs:label@en = named after -| rdfs:label@de = benannt nach -| rdfs:domain = owl:Thing -| rdfs:subPropertyOf = dul:sameSettingAs -| owl:equivalentProperty = wikidata:P138 -}}OntologyProperty:NamedByLanguage2027931277042013-07-16T09:25:15Z{{ObjectProperty -| labels = -{{label|en|named by language}} -| rdfs:domain = Place -| rdfs:range = Place -}}OntologyProperty:Names2026138462142015-03-18T11:03:53Z{{DatatypeProperty -| rdfs:label@en = names -| rdfs:label@de = Namen -| rdfs:domain = Openswarm -| rdfs:range = rdf:langString -}}OntologyProperty:Narrator2021166462542015-03-18T14:43:00Z{{ObjectProperty -| rdfs:label@en = narrator -| rdfs:label@de = Erzähler -| rdfs:domain = Work -| rdfs:range = Person -| rdfs:subPropertyOf = dul:coparticipatesWith -}}OntologyProperty:Nation2027300339322014-04-04T15:02:08Z{{DatatypeProperty -| labels = -{{label|en|nation}} -{{label|de|Nation}} -| rdfs:domain = PopulatedPlace -| rdfs:range = xsd:string -}}OntologyProperty:NationalAffiliation2023340528412018-02-08T20:31:05Z{{ObjectProperty -| labels = - {{label|en|national affiliation}} - {{label|pt|afiliacao nacional}} -| rdfs:domain = PoliticalParty -| rdfs:subPropertyOf = -}}OntologyProperty:NationalChampionship2028054339332014-04-04T15:02:12Z{{DatatypeProperty -| labels = -{{label|en|national championship}} -{{label|de|nationale Meisterschaft}} -| rdfs:domain = Athlete -| rdfs:range = xsd:string -}}OntologyProperty:NationalFilmAward2021167363162014-07-08T14:05:02Z -{{ObjectProperty -| rdfs:label@en = National Film Award -| rdfs:label@de = Nationaler Filmpreis -| rdfs:domain = Actor -| rdfs:range = Award -| rdfs:subPropertyOf = dul:coparticipatesWith -}}OntologyProperty:NationalOlympicCommittee2021169363172014-07-08T14:05:07Z -{{ObjectProperty -| rdfs:label@en = National Olympic Committee -| rdfs:label@de = Nationales Olympisches Komitee -| rdfs:label@nl = nationaal Olympisch commité -| rdfs:domain = OlympicResult -| rdfs:subPropertyOf = dul:hasParticipant -}}OntologyProperty:NationalRanking2021171525882017-10-31T08:54:03Z{{DatatypeProperty -| rdfs:label@en = national ranking -| rdfs:domain = EducationalInstitution -| rdfs:range = xsd:positiveInteger -}}OntologyProperty:NationalSelection2027875339362014-04-04T15:02:25Z{{ObjectProperty -| rdfs:label@en = national selection -| rdfs:label@de = nationale Auswahl -| rdfs:domain = Agent -}}OntologyProperty:NationalTeam2021172514402016-08-16T07:33:29Z -{{ObjectProperty -| labels = - {{label|en|national team}} - {{label|de|Nationalmannschaft}} - {{label|nl|nationaal team}} - {{label|ja|代表国}} -| rdfs:domain = Athlete -| rdfs:range = SportsTeam -| rdfs:subPropertyOf = dul:isMemberOf -}}OntologyProperty:NationalTeamMatchPoint2027828271412013-07-05T15:25:34Z{{DatatypeProperty -| labels = -{{label|en|national team match point}} -| rdfs:domain = Person -| rdfs:range = xsd:string -}}OntologyProperty:NationalTeamYear2027827271402013-07-05T15:25:11Z{{DatatypeProperty -| labels = -{{label|en|national team year}} -| rdfs:domain = Person -| rdfs:range = xsd:string -}}OntologyProperty:NationalTopographicSystemMapNumber202241790492010-06-01T15:06:17Z{{DatatypeProperty -| rdfs:label@en = National Topographic System map number -| rdfs:domain = Place -| rdfs:range = xsd:string -}}OntologyProperty:NationalTournament2027569520002017-03-22T16:48:30Z{{ObjectProperty -| labels = -{{label|en|National tournament}} -| rdfs:range = Tournament -| rdfs:domain = Person -}}OntologyProperty:NationalTournamentBronze2027581268072013-07-02T10:03:09Z{{DatatypeProperty -| labels = -{{label|en|national tournament bronze}} -| rdfs:domain = Person -| rdfs:range = xsd:nonNegativeInteger -}}OntologyProperty:NationalTournamentGold2027579268052013-07-02T10:02:11Z{{DatatypeProperty -| labels = -{{label|en|national tournament gold}} -| rdfs:domain = Person -| rdfs:range = xsd:nonNegativeInteger -}}OntologyProperty:NationalTournamentSilver2027580268062013-07-02T10:02:48Z{{DatatypeProperty -| labels = -{{label|en|national tournament silver}} -| rdfs:domain = Person -| rdfs:range = xsd:nonNegativeInteger -}}OntologyProperty:NationalYears2021173514412016-08-16T07:34:18Z{{DatatypeProperty -| rdfs:label@en = national years -| rdfs:label@ja = 代表年 -| rdfs:domain = SoccerPlayer -| rdfs:range = xsd:gYear -}}OntologyProperty:Nationality2021168363192014-07-08T14:05:15Z -{{ObjectProperty -| labels = - {{label|en|nationality}} - {{label|nl|nationaliteit}} - {{label|de|Nationalität}} - {{label|fr|nationalité}} - {{label|pt|nacionalidade}} - {{label|el|εθνικότητα}} - {{label|ja|国籍}} -| rdfs:domain = Person -| rdfs:range = Country -| owl:equivalentProperty = schema:nationality -| rdfs:subPropertyOf = dul:hasLocation -}}OntologyProperty:NcaaSeason2027680269522013-07-04T09:25:39Z{{DatatypeProperty -| labels = -{{label|en|ncaa season}} -| rdfs:domain = Athlete -| rdfs:range = xsd:string -}}OntologyProperty:NcaaTeam2027681520072017-03-22T20:23:52Z{{ObjectProperty -| labels = -{{label|en|ncaa team}} -| rdfs:domain = Athlete -| rdfs:range = SportsTeam -}}OntologyProperty:Ncbhof2027676269462013-07-04T08:02:04Z{{DatatypeProperty -| labels = -{{label|en|ncbhof}} -| rdfs:range = xsd:string -| rdfs:domain = Athlete -}}OntologyProperty:NciId20211877522142017-10-07T15:53:42Z{{DatatypeProperty -| labels = -{{label|en|NCI}} -{{label|nl|NCI}} -{{label|de|NCI}} -{{label|fr|NCI}} -| rdfs:domain = Disease -| rdfs:range = xsd:string -| owl:equivalentProperty = wikidata:P1395 -}}OntologyProperty:NdlId20211042528802018-02-13T10:49:24Z{{DatatypeProperty -| labels = -{{label|en|NDL id}} -| comments = -{{comment|en|National Diet Library of Japan identificator. http://id.ndl.go.jp/auth/ndlna/$1}} -| rdfs:domain = owl:Thing -| rdfs:range = xsd:string -| owl:equivalentProperty = wikidata:P349 -| rdfs:subPropertyOf = code -}}OntologyProperty:NearestCity2021175363202014-07-08T14:05:19Z -{{ObjectProperty -| labels = - {{label|en|nearest city}} - {{label|de|nächstgelegene Stadt}} - {{label|nl|dichtstbijzijnde stad}} - {{label|el|πόλη}} -| rdfs:domain = Place -| rdfs:range = PopulatedPlace -| rdfs:subPropertyOf = dul:nearTo -}}OntologyProperty:NeighboringMunicipality2021176363212014-07-08T14:05:24Z -{{ObjectProperty -| labels = - {{label|en|neighboring municipality}} - {{label|de|Nachbargemeinde}} - {{label|nl|aangrenzende gemeente}} - {{label|pt|municipío adjacente}} -| rdfs:domain = PopulatedPlace -| rdfs:range = PopulatedPlace -| rdfs:subPropertyOf = dul:nearTo -}}OntologyProperty:NeighbourConstellations2025341339402014-04-04T15:02:41Z{{ DatatypeProperty - - | rdfs:label@en = neighbour constellations -| rdfs:label@de = Nachbarsternbilder - | rdfs:domain = Constellation - | rdfs:range = xsd:string - -}}OntologyProperty:NeighbourRegion2027149339412014-04-04T15:02:46Z{{DatatypeProperty -| labels = -{{label|en|neighbour region}} -{{label|de|Nachbarregion}} -| rdfs:domain = Place -| rdfs:range = xsd:string -}}OntologyProperty:Neighbourhood2026902253522013-05-24T21:16:34Z{{DatatypeProperty -| labels = -{{label|en|neighbourhood of a hungarian settlement}} -| rdfs:domain = HungarySettlement -| rdfs:range = xsd:string -}}OntologyProperty:Nerve2021177363222014-07-08T14:05:40Z -{{ObjectProperty -| rdfs:label@en = nerve -| rdfs:label@de = Nerv -| rdfs:domain = AnatomicalStructure -| rdfs:range = Nerve -| rdfs:subPropertyOf = dul:isLocationOf -}}OntologyProperty:NetIncome2021178527822018-01-23T15:30:31Z{{DatatypeProperty -| rdfs:label@en = net income -| rdfs:label@de = Nettoergebnis -| rdfs:domain = Company -| rdfs:range = Currency -| rdf:type = owl:FunctionalProperty -| owl:equivalentProperty = wikidata:P2295 -}}OntologyProperty:Network2021179363232014-07-08T14:05:43Z -{{ObjectProperty -| rdfs:label@en = network -| rdfs:label@de = Sendergruppe -| rdfs:label@el = δίκτυο -| rdfs:domain = Broadcaster -| rdfs:range = Broadcaster -| rdfs:subPropertyOf = dul:isMemberOf -}}OntologyProperty:Networth202118081482010-05-28T13:25:00Z{{DatatypeProperty -| rdfs:label@en = networth -| rdfs:domain = Person -| rdfs:range = Currency -}}OntologyProperty:Newspaper2027702525702017-10-30T23:49:12Z{{ObjectProperty -| labels = -{{label|en|newspaper}} -{{label|de|Zeitung}} -| rdfs:range = PeriodicalLiterature -}}OntologyProperty:NextEntity2027182363242014-07-08T14:05:45Z -{{ObjectProperty -| labels = - {{label|en|next entity}} -| rdfs:domain = Place -| rdfs:range = Place -| rdfs:subPropertyOf = dul:sameSettingAs -}}OntologyProperty:NextEvent2026086363252014-07-08T14:05:48Z -{{ObjectProperty -| labels = - {{label|en|next event}} - {{label|de|nächste Veranstaltung}} - {{label|nl|volgende evenement}} - {{label|el|επόμενο γεγονός}} -| rdfs:domain = Event -| rdfs:range = Event -| rdfs:subPropertyOf = followedBy, dul:precedes -}}OntologyProperty:NextMission2021181363262014-07-08T14:05:52Z -{{ObjectProperty -| labels = - {{label|en|next mission}} - {{label|de|nächste Mission}} - {{label|fr|mission suivante}} - {{label|fr|mision siguiente}} -| rdfs:domain = SpaceMission -| rdfs:range = SpaceMission -| rdfs:subPropertyOf = followedBy, dul:precedes -}}OntologyProperty:NflCode2027690269642013-07-04T09:32:39Z{{DatatypeProperty -| labels = -{{label|en|nfl code}} -| rdfs:domain = Athlete -| rdfs:range = xsd:string -}}OntologyProperty:NflSeason2027684269562013-07-04T09:27:54Z{{DatatypeProperty -| labels = -{{label|en|nfl season}} -| rdfs:domain = Athlete -| rdfs:range = xsd:string -}}OntologyProperty:NflTeam2027685269572013-07-04T09:28:24Z{{ObjectProperty -| labels = -{{label|en|nfl team}} -| rdfs:domain = Athlete -| rdfs:range = SportsTeam -}}OntologyProperty:NgcName2028924307572014-01-22T11:53:51Z{{DatatypeProperty -| rdfs:label@en = NGC name -| rdfs:comment@en = Name for NGC objects -| rdfs:subPropertyOf = name -| rdfs:domain = CelestialBody -| rdfs:range = xsd:string -}}OntologyProperty:NisCode2025682517832016-12-22T14:39:09Z{{DatatypeProperty -| rdfs:label@en = NIS code -| rdfs:domain = PopulatedPlace -| rdfs:range = xsd:string -| rdfs:comment@en = Indexing code used by the Belgium National Statistical Institute to identify populated places. -| rdfs:subPropertyOf = -| owl:equivalentProperty = wikidata:P1567 -}}OntologyProperty:NlaId2028429528812018-02-13T10:51:13Z{{DatatypeProperty -| labels = -{{label|en|NLA Id}} -| comments = -{{comment|en|NLA Trove’s People and Organisation view allows the discovery of biographical and other contextual information about people and organisations. Search also available via VIAF.}} -| rdfs:range = xsd:string -| owl:equivalentProperty = wikidata:P409 -| rdfs:subPropertyOf = code -}}OntologyProperty:NndbId2023690130182011-05-19T01:45:22Z{{DatatypeProperty -| rdfs:label@en = NNDB id -| rdfs:domain = Person -| rdfs:range = xsd:string -}}OntologyProperty:NoContest2027590268182013-07-02T10:54:34Z{{DatatypeProperty -| labels = -{{label|en|no contest}} -| rdfs:domain = Boxer -| rdfs:range = xsd:nonNegativeInteger -}}OntologyProperty:NobelLaureates2021183363282014-07-08T14:05:59Z -{{ObjectProperty -| rdfs:label@en = nobel laureates -| rdfs:label@de = Nobelpreisträger -| rdfs:domain = School -| rdfs:range = Person -| rdfs:subPropertyOf = dul:coparticipatesWith -}}OntologyProperty:Nominee2022357363292014-07-08T14:06:02Z -{{ObjectProperty -| rdfs:label@en = nominee -| rdfs:label@de = Kandidat -| rdfs:range = Person -| rdfs:subPropertyOf = dul:sameSettingAs -}}OntologyProperty:NonFictionSubject2021484486892015-08-10T10:12:28Z{{ObjectProperty -| labels = - {{label|en|non-fiction subject}} - {{label|nl|non-fictie onderwerp}} -| rdfs:domain = WrittenWork -| rdfs:range = owl:Thing -| rdfs:comment@en = The subject of a non-fiction book (e.g.: History, Biography, Cookbook, Climate change, ...). -| rdfs:subPropertyOf = dul:isAbout -}}OntologyProperty:NonProfessionalCareer2027789270902013-07-05T13:12:31Z{{DatatypeProperty -| labels = -{{label|en|non professional career}} -| rdfs:domain = Person -| rdfs:range = xsd:string -}}OntologyProperty:Nord20211873522102017-10-07T15:45:29Z{{DatatypeProperty -| labels = -{{label|en|NORD}} -{{label|nl|NORD}} -{{label|de|NORD}} -{{label|fr|NORD}} -| rdfs:domain = Disease -| rdfs:range = xsd:string -}}OntologyProperty:NorthEastPlace20211089455922015-03-08T14:06:23Z{{ObjectProperty -| rdfs:label@en = north-east place -| rdfs:label@fr = lieu au nord-est -| rdfs:comment@fr = indique un autre lieu situé au nord-est. -| rdfs:comment@en = indicates another place situated north-east. -| rdfs:domain = Place -| rdfs:range = Place -| owl:inverseOf = southWestPlace -| rdfs:subPropertyOf = closeTo -}}OntologyProperty:NorthPlace20211082455912015-03-08T14:05:31Z{{ObjectProperty -| rdfs:label@en = north place -| rdfs:label@fr = lieu au nord -| rdfs:comment@fr = indique un autre lieu situé au nord. -| rdfs:comment@en = indicates another place situated north. -| rdfs:domain = Place -| rdfs:range = Place -| owl:inverseOf = southPlace -| rdfs:subPropertyOf = closeTo -}}OntologyProperty:NorthWestPlace20211087455932015-03-08T14:07:04Z{{ObjectProperty -| rdfs:label@en = north-west place -| rdfs:label@fr = lieu au nord-ouest -| rdfs:comment@fr = indique un autre lieu situé au nord-ouest. -| rdfs:comment@en = indicates another place situated north-west. -| rdfs:domain = Place -| rdfs:range = Place -| owl:inverseOf = southEastPlace -| rdfs:subPropertyOf = closeTo - -}}OntologyProperty:NotSolubleIn2028932307822014-01-22T13:43:01Z{{ObjectProperty -| rdfs:label@en = not soluble in -| rdfs:label@nl = niet oplosbaar in -| rdfs:domain = ChemicalSubstance -| rdfs:range = ChemicalSubstance -}}OntologyProperty:NotableCommander2021184363312014-07-08T14:06:08Z -{{ObjectProperty -| rdfs:label@en = notable commander -| rdfs:domain = MilitaryUnit -| rdfs:range = Person -| rdfs:subPropertyOf = dul:coparticipatesWith -}}OntologyProperty:NotableFeatures2024441150252011-09-08T07:26:50Z{{DatatypeProperty -| rdfs:label@en = notable features -| rdfs:label@tr = notlar -| rdfs:domain = Galaxy -| rdfs:range = xsd:string -}}OntologyProperty:NotableIdea2022314363322014-07-08T14:06:11Z -{{ObjectProperty -| rdfs:label@en = notableIdea -| rdfs:domain = Person -| rdfs:subPropertyOf = dul:coparticipatesWith -}}OntologyProperty:NotableStudent2021185363332014-07-08T14:06:15Z -{{ObjectProperty -| rdfs:label@en = notable student -| rdfs:label@el = σημαντικοί_φοιτητές -| rdfs:domain = Scientist -| rdfs:range = Person -| rdfs:subPropertyOf = dul:coparticipatesWith -}}OntologyProperty:NotableWine2021186363342014-07-08T14:06:18Z -{{ObjectProperty -| rdfs:label@en = notable wine -| rdfs:domain = Grape -| rdfs:subPropertyOf = dul:coparticipatesWith -}}OntologyProperty:NotableWork2021187512112016-06-08T13:51:26Z{{ObjectProperty -| labels = - {{label|en|notable work}} - {{label|fr|oeuvre majeure}} - {{label|ja|代表作}} - {{label|nl|bekende werken}} -| rdfs:domain = owl:Thing -| rdfs:range = Work -| rdfs:subPropertyOf = dul:coparticipatesWith -| comments = - {{comment|en|Notable work created by the subject (eg Writer, Artist, Engineer) or about the subject (eg ConcentrationCamp)}} -}}OntologyProperty:Note2021188339502014-04-04T15:03:23Z{{DatatypeProperty -| rdfs:label@en = note -| rdfs:label@de = Anmerkung -| rdfs:domain = AutomobileEngine -| rdfs:range = xsd:string -}}OntologyProperty:NoteOnPlaceOfBurial202118981502010-05-28T13:25:18Z{{DatatypeProperty -| rdfs:label@en = note on place of burial -| rdfs:domain = MilitaryPerson -| rdfs:range = xsd:string -}}OntologyProperty:NoteOnRestingPlace2021190340692014-04-04T15:54:48ZNote: This property is currently (April 2012) not used anywhere. Maybe we should delete it. - -{{DatatypeProperty -| rdfs:label@en = note on resting place -| rdfs:domain = Person -| rdfs:range = xsd:string -}}OntologyProperty:Notes2021191340682014-04-04T15:54:05Z{{DatatypeProperty -| labels = - {{label|en|notes}} -{{label|de|Anmerkungen}} - {{label|el|σημειώσεις}} - {{label|fr|notes}} -| comments = - {{comment|en|additional notes that better describe the entity.}} - {{comment|el|συμπληρωματικές σημειώσεις που περιγράφουν καλύτερα την οντότητα.}} -| rdfs:domain = owl:Thing -| rdfs:range = xsd:string -}}OntologyProperty:NotifyDate2021192339582014-04-04T15:27:33Z{{DatatypeProperty -| rdfs:label@en = notify date -| rdfs:label@de = Benachrichtigungsdatum -| rdfs:domain = SiteOfSpecialScientificInterest -| rdfs:range = xsd:date -}}OntologyProperty:Novel2026826363362014-07-08T14:06:25Z -{{ObjectProperty -| labels = - {{label|en|novel}} - {{label|de|Roman}} -| rdfs:domain = FictionalCharacter -| rdfs:range = Novel -| rdfs:subPropertyOf = dul:isParticipantIn -}}OntologyProperty:NrhpReferenceNumber2023223537982020-12-01T17:52:27Z{{DatatypeProperty -| rdfs:label@en = NRHP Reference Number -| rdfs:domain = HistoricPlace -| rdfs:range = xsd:string -| owl:equivalentProperty=wikidata:P649 -}}OntologyProperty:NrhpType2023218363372014-07-08T14:06:28Z -{{ObjectProperty -| rdfs:label@en = NRHP type -| rdfs:domain = HistoricPlace -| rdfs:range = owl:Thing -| rdfs:comment@en = Type of historic place as defined by the US National Park Service. For instance National Historic Landmark, National Monument or National Battlefield. -| rdfs:subPropertyOf = dul:isClassifiedBy -}}OntologyProperty:NssdcId202119381542010-05-28T13:25:52Z{{DatatypeProperty -| rdfs:label@en = NSSDC ID -| rdfs:domain = SpaceStation -| rdfs:range = xsd:string -}}OntologyProperty:Number2021194537592020-09-30T13:16:27Z{{DatatypeProperty -| labels = -{{label|en|number}} -{{label|de|Anzahl}} -{{label|nl|nummer}} -{{label|el|αριθμός}} -{{label|ja|番号}} -| rdfs:range = xsd:nonNegativeInteger -| rdfs:domain = owl:Thing -| owl:equivalentProperty=bag:huisnummer -}}OntologyProperty:NumberBuilt2021195529312018-03-01T11:12:21Z{{DatatypeProperty -| rdfs:label@en = number built -| rdfs:label@de = Anzahl gebaut -| rdfs:label@nl = aantal gebouwd -| rdfs:domain = Aircraft -| rdfs:range = xsd:nonNegativeInteger -}}OntologyProperty:NumberOfAcademicStaff2025300339622014-04-04T15:27:47Z{{ DatatypeProperty - - | rdfs:label@en = number of academic staff -| rdfs:label@de = Anzahl der wissenschaftlichen Mitarbeiter - | rdfs:label@el = αριθμός ακαδημαϊκού προσωπικού - | rdfs:domain = EducationalInstitution - | rdfs:range = xsd:nonNegativeInteger - -}}OntologyProperty:NumberOfAlbums2025193339632014-04-04T15:27:52Z{{DatatypeProperty -| rdfs:label@en = number of albums -| rdfs:label@de = Anzahl der Alben -| rdfs:comment@en = the total number of albums released by the musical artist -| rdfs:domain = MusicalArtist -| rdfs:range = xsd:nonNegativeInteger -}}OntologyProperty:NumberOfArrondissement2027954278952013-07-17T08:43:29Z{{DatatypeProperty -| labels = -{{label|en|number of arrondissement}} -| rdfs:domain = Department -| rdfs:range = xsd:nonNegativeInteger -}}OntologyProperty:NumberOfBombs2025625531752018-07-19T08:51:56Z{{ DatatypeProperty - - | rdfs:label@en = number of bombs -| rdfs:label@de = Anzahl der Bomben - | rdfs:label@el = αριθμός των βομβών - | rdfs:domain = MilitaryAircraft - | rdfs:range = xsd:nonNegativeInteger - -}}OntologyProperty:NumberOfBronzeMedalsWon2021196339652014-04-04T15:28:01Z{{DatatypeProperty -|labels = - {{label|en|number of bronze medals won}} -{{label|de|Anzahl der gewonnenen Bronzemedaillen}} - {{label|fr|nomber de médailles de bronze gagnées}} - {{label|es|cantidad de medallas de bronce ganadas}} - {{label|nl|aantal gewonnen bronzen medailles}} -| rdfs:domain = SportCompetitionResult -| rdfs:range = xsd:nonNegativeInteger -}}OntologyProperty:NumberOfCanton2027952278932013-07-17T08:42:52Z{{DatatypeProperty -| labels = -{{label|en|number of canton}} -| rdfs:domain = Department -| rdfs:range = xsd:nonNegativeInteger -}}OntologyProperty:NumberOfCantons2029302327182014-03-14T10:38:17Z{{DatatypeProperty -| labels = -{{label|en|Number Of Cantons}} -{{label|nl|Aantal kantons}} -| rdfs:domain = PopulatedPlace -| rdfs:range = xsd:nonNegativeInteger -}}OntologyProperty:NumberOfCapitalDeputies2023360122472011-04-15T14:07:48Z{{DatatypeProperty -| rdfs:label@en = Number Of Capital Deputies -| rdfs:label@pt = numero de deputados distritais -| rdfs:domain = PopulatedPlace -| rdfs:range = xsd:nonNegativeInteger -}}OntologyProperty:NumberOfCity2027012255002013-05-25T19:31:33Z{{DatatypeProperty -| labels = -{{label|en|number of contries inside en continent}} -| rdfs:domain = Continent -| rdfs:range = xsd:nonNegativeInteger -}}OntologyProperty:NumberOfClasses20212240534922018-11-30T20:19:29Z{{DatatypeProperty -| rdfs:label@en = numberOfClasses -| rdfs:comment@en = number of defined Classes -| rdfs:range = xsd:nonNegativeInteger -}}OntologyProperty:NumberOfClassesWithResource20212241534932018-11-30T20:20:03Z{{DatatypeProperty -| rdfs:label@en = numberOfClassesWithResource -| rdfs:comment@en = number of class in DBpedia with atleast single resource (class entity) -| rdfs:range = xsd:nonNegativeInteger - -}}OntologyProperty:NumberOfClassrooms2023137363382014-07-08T14:06:32Z -{{ObjectProperty -| rdfs:label@en = number of classrooms -| rdfs:label@el = αριθμός αιθουσών -| rdfs:domain = School -| rdfs:subPropertyOf = dul:hasRegion -}}OntologyProperty:NumberOfClubs2026059339662014-04-04T15:28:05Z{{DatatypeProperty -|labels= -{{label|en|number of clubs}} -{{label|de|Anzahl der Clubs}} -{{label|fr|nombre de clubs}} -{{label|es|numero de clubs}} -|comments= -| rdfs:domain = Activity -| rdfs:range = xsd:nonNegativeInteger -}}OntologyProperty:NumberOfCollectionItems2026403339672014-04-04T15:28:10Z{{DatatypeProperty -| labels = -{{label|en|number of items in collection}} -{{label|de|Anzahl der Elemente in der Sammlung}} -{{label|nl|aantal titels/items}} -| comments = -{{comment|en| Indication as to the size of the collection of this library }} -{{comment|nl| Aanduiding van omvang van de collectie van deze bibliotheek}} -| rdfs:domain = Library -| rdfs:range = xsd:integer -| rdf:type = -| rdfs:subPropertyOf = -| owl:equivalentProperty = -}}OntologyProperty:NumberOfCompetitors2021197339682014-04-04T15:28:14Z{{DatatypeProperty -| rdfs:label@en = number of competitors -| rdfs:label@de = Anzahl der Wettbewerber -| rdfs:domain = OlympicResult -| rdfs:range = xsd:nonNegativeInteger -}}OntologyProperty:NumberOfCounties2023306339692014-04-04T15:28:24Z{{DatatypeProperty -| rdfs:label@en = number of counties -| rdfs:label@de = Anzahl der Landkreise -| rdfs:label@pt = número de condados -| rdfs:domain = PopulatedPlace -| rdfs:range = xsd:nonNegativeInteger -}}OntologyProperty:NumberOfCountries2023321233112013-01-20T10:43:32Z{{DatatypeProperty -| rdfs:label@en = number of countries -| rdfs:label@el = αριθμός χωρών -| rdfs:label@pt = número de países -| rdfs:domain = AdministrativeRegion -| rdfs:range = xsd:positiveInteger -}}OntologyProperty:NumberOfCrew2025629233132013-01-20T10:51:15Z{{ DatatypeProperty - - | rdfs:label@en = number of crew - | rdfs:label@el = αριθμός πληρώματος - | rdfs:label@nl = aantal bemanningsleden - | rdfs:domain = MeanOfTransportation - | rdfs:range = xsd:nonNegativeInteger - -}}OntologyProperty:NumberOfDeaths20210249385372014-10-04T12:00:29Z{{DatatypeProperty -| labels = -{{label|en|number of deaths}} -{{label|de|Totenzahl}} -{{label|nl|Aantal doden}} -| rdfs:domain = ConcentrationCamp -| rdfs:range = xsd:string}}OntologyProperty:NumberOfDependency2027011278872013-07-17T08:33:37Z{{DatatypeProperty -| labels = -{{label|en|number of dependency}} -| rdfs:domain = Continent -| rdfs:range = xsd:nonNegativeInteger -}}OntologyProperty:NumberOfDisambiguates20212266534942018-11-30T20:21:24Z{{DatatypeProperty -| rdfs:label@en = numberOfDisambiguates -| rdfs:comment@en = number of disambiguation pages in DBpedia -| rdfs:range = xsd:nonNegativeInteger - -}}OntologyProperty:NumberOfDistrict2027953278942013-07-17T08:43:16Z{{DatatypeProperty -| labels = -{{label|en|number of district}} -| rdfs:domain = Department -| rdfs:range = xsd:nonNegativeInteger -}}OntologyProperty:NumberOfDistricts2026789339702014-04-04T15:28:28Z{{DatatypeProperty -| labels = -{{label|en|number of districts }} -{{label|de|Anzahl der Bezirke}} -{{label|id|jumlah kecamatan }} -| comments = -| rdfs:domain = Regency -| rdfs:range = xsd:nonNegativeInteger -}}OntologyProperty:NumberOfDoctoralStudents202812339712014-04-04T15:28:31Z{{DatatypeProperty -| rdfs:label@en = number of doctoral students -| rdfs:label@de = Anzahl der Doktoranden -| rdfs:domain = University -| rdfs:range = xsd:nonNegativeInteger -}}OntologyProperty:NumberOfDoors20211977526012017-10-31T10:44:54Z{{DatatypeProperty -| rdfs:label@en = number of doors -| rdfs:label@pt = Türenanzahl -| rdfs:domain = Automobile -| rdfs:range = xsd:positiveInteger -}}OntologyProperty:NumberOfEmployees2021198538052020-12-01T17:59:59Z{{DatatypeProperty -| labels = -{{label|en|number of employees}} -{{label|de|Anzahl der Mitarbeiter}} -{{label|el|αριθμός εργαζομένων}} -{{label|nl|aantal medewerkers}} -{{label|fr|nombre d'employés}} -{{label|es|número de empleados}} -| rdfs:domain = Organisation -| rdfs:range = xsd:nonNegativeInteger -| owl:equivalentProperty=wikidata:P1128 -}}OntologyProperty:NumberOfEntrances2021199339732014-04-04T15:28:39Z{{DatatypeProperty -| rdfs:label@en = number of entrances -| rdfs:label@de = Anzahl der Eingänge -| rdfs:label@el = αριθμός εισόδων -| rdfs:label@nl = aantal ingangen -| rdfs:domain = Cave -| rdfs:range = xsd:nonNegativeInteger -}}OntologyProperty:NumberOfEpisodes202846339742014-04-04T15:28:44Z{{DatatypeProperty -| rdfs:label@en = number of episodes -| rdfs:label@de = Anzahl der Episoden -| rdfs:label@el = αριθμός επειδοδίων -| rdfs:domain = TelevisionShow -| rdfs:range = xsd:nonNegativeInteger -| owl:equivalentProperty = schema:numberOfEpisodes -}}OntologyProperty:NumberOfFederalDeputies2023359339752014-04-04T15:28:49Z{{DatatypeProperty -| rdfs:label@en = Number Of Federal Deputies -| rdfs:label@de = Anzahl der Bundesabgeordneten -| rdfs:label@pt = numero de deputados federais -| rdfs:domain = PopulatedPlace -| rdfs:range = xsd:nonNegativeInteger -}}OntologyProperty:NumberOfFilms2021200339762014-04-04T15:28:53Z{{DatatypeProperty -| rdfs:label@en = number of films -| rdfs:label@de = Anzahl der Filme -| rdfs:label@el = αριθμός ταινιών -| rdfs:domain = AdultActor -| rdfs:range = xsd:nonNegativeInteger -}}OntologyProperty:NumberOfGoals2026507486772015-08-07T14:18:32Z{{DatatypeProperty -| labels = -{{label|en|number of goals scored}} -{{label|de|Anzahl der erzielten Tore}} -{{label|it|numero di goal segnati}} -| rdfs:domain = CareerStation -| rdfs:range = xsd:integer -}}OntologyProperty:NumberOfGoldMedalsWon2021201339782014-04-04T15:29:02Z{{DatatypeProperty -|labels = - {{label|en|number of gold medals won}} -{{label|de|Anzahl der Goldmedaillen}} - {{label|fr|nomber de médailles d'or gagnées}} - {{label|es|cantidad de medallas de oro ganadas}} - {{label|nl|aantal gewonnen gouden medailles}} -| rdfs:domain = SportCompetitionResult -| rdfs:range = xsd:nonNegativeInteger -}}OntologyProperty:NumberOfGraduateStudents202949339792014-04-04T15:29:05Z{{DatatypeProperty -| rdfs:label@en = number of graduate students -| rdfs:label@de = Zahl der Studenten -| rdfs:domain = EducationalInstitution -| rdfs:range = xsd:nonNegativeInteger -}}OntologyProperty:NumberOfGraves2029256339802014-04-04T15:29:18Z{{DatatypeProperty -| labels = -{{label|en|number of graves}} -{{label|de|Anzahl der Gräber}} -{{label|nl|aantal graven}} -| rdfs:domain = Cemetery -| rdfs:range = xsd:string -}}OntologyProperty:NumberOfHoles20210203378552014-09-23T12:31:17Z{{DatatypeProperty -| labels = -{{label|en|number of holes}} -| rdfs:domain = GolfCourse -| rdfs:range = xsd:integer -}}OntologyProperty:NumberOfHouses2026294339812014-04-04T15:29:22Z{{DatatypeProperty -| labels = -{{label|en|number of houses present)}} -{{label|de|Anzahl der vorhandenen Häuser}} -{{label|nl|aantal huizen aanwezig}} -| comments = -{{comment|en| Count of the houses in the Protected Area }} -{{comment|nl| Aantal huizen in afgegrensd gebied }} -| rdfs:domain = ProtectedArea -| rdfs:range = xsd:string -| rdf:type = -| rdfs:subPropertyOf = -| owl:equivalentProperty = -}}OntologyProperty:NumberOfIndegree20212248534312018-10-25T21:21:49Z -{{DatatypeProperty -| rdfs:label@en = number of all indegrees in dbpedia (same ourdegrees are counting repeatedly) -| rdfs:label@cs = počet indegree odkazů v dbpedii (stejné započítané opakovaně) -| rdfs:range = xsd:nonNegativeInteger - -}}OntologyProperty:NumberOfIntercommunality2027951278912013-07-17T08:42:33Z{{DatatypeProperty -| labels = -{{label|en|number of intercommunality}} -| rdfs:domain = Department -| rdfs:range = xsd:nonNegativeInteger -}}OntologyProperty:NumberOfIsland2027099339822014-04-04T15:29:26Z{{DatatypeProperty -| labels = -{{label|en|number of islands}} -{{label|de|Anzahl der Inseln}} -| rdfs:domain = Place -| rdfs:range = xsd:string -}}OntologyProperty:NumberOfIslands2021202339832014-04-04T15:29:30Z{{DatatypeProperty -| labels = -{{label|en|number of islands}} -{{label|de|Anzahl der Inseln}} -{{label|el|αριθμός νησιών}} -{{label|nl|aantal eilanden}} -| rdfs:domain = Island -| rdfs:range = xsd:nonNegativeInteger -}}OntologyProperty:NumberOfLanes2023430197632012-11-07T14:35:56Z{{DatatypeProperty -|labels= - {{label|en|number of lanes}} - {{label|de|Anzahl der Fahrstreifen}} - {{label|fr|nombre de voies}} -| rdfs:domain = RouteOfTransportation -| rdfs:range = xsd:nonNegativeInteger -}}OntologyProperty:NumberOfLaps2025333339842014-04-04T15:29:34Z{{ DatatypeProperty - - | rdfs:label@en = number of laps -| rdfs:label@de = Anzahl der Runden - | rdfs:domain = FormulaOneRacing - | rdfs:range = xsd:nonNegativeInteger - -}}OntologyProperty:NumberOfLaunches2025633339852014-04-04T15:29:38Z{{ DatatypeProperty - - | rdfs:label@en = number of launches -| rdfs:label@de = Anzahl von Starts - | rdfs:domain = MeanOfTransportation - | rdfs:range = xsd:nonNegativeInteger - -}}OntologyProperty:NumberOfLawyers2023732131742011-05-23T16:49:34Z{{DatatypeProperty -| rdfs:label@en = number of lawyers -| rdfs:label@de = Anzahl Rechtsanwälte -| rdfs:domain = LawFirm -| rdfs:range = xsd:nonNegativeInteger -| rdfs:comment@en = Number of lawyers or attorneys in the company. -}}OntologyProperty:NumberOfLifts20211806519232017-02-20T11:47:53Z{{DatatypeProperty -| rdfs:label@en = number of lifts -| rdfs:label@ja = 索道数 -| rdfs:domain = SkiArea -| rdfs:range = xsd:nonNegativeInteger -| rdfs:comment@en = Number of lifts. -}}OntologyProperty:NumberOfLines2023623128632011-05-17T15:42:44Z{{DatatypeProperty -| rdfs:label@en = number of lines -| rdfs:label@de = Anzahl der Linien -| rdfs:domain = PublicTransitSystem -| rdfs:range = xsd:nonNegativeInteger -| rdfs:comment@en = Number of lines in the transit system. -}}OntologyProperty:NumberOfLiveAlbums2025195339862014-04-04T15:29:42Z{{DatatypeProperty -| rdfs:label@en = number of live albums -| rdfs:label@de = Anzahl von Live-Alben -| rdfs:comment@en = the number of live albums released by the musical artist -| rdfs:domain = MusicalArtist -| rdfs:range = xsd:nonNegativeInteger -}}OntologyProperty:NumberOfLocations2026038339872014-04-04T15:29:46Z{{ DatatypeProperty -| labels = - {{label|en|number of locations}} -{{label|de|Anzahl der Standorte}} - {{label|fr|nombre de sites}} -| rdfs:domain = Organisation -| rdfs:range = xsd:nonNegativeInteger -}}OntologyProperty:NumberOfMatches2026506238332013-02-21T16:12:00Z{{DatatypeProperty -| labels = -{{label|en|number of matches or caps}} -| rdfs:domain = CareerStation -| rdfs:range = xsd:integer -}}OntologyProperty:NumberOfMembers2021203339882014-04-04T15:29:51Z{{DatatypeProperty -| labels = - {{label|en|number of members}} -{{label|de|Anzahl der Mitglieder}} - {{label|el|αριθμός μελών}} -{{label|pt|número de membros}} - {{label|fr|nombre de membres}} - {{label|es|numero de miembros}} -| rdfs:domain = Legislature -| rdfs:range = xsd:nonNegativeInteger -}}OntologyProperty:NumberOfMembersAsOf2023345122302011-04-15T13:47:59Z{{DatatypeProperty -| rdfs:label@en = number of members as of -| rdfs:label@pt = numero de membros em -| rdfs:domain = PoliticalParty -| rdfs:range = xsd:date -}}OntologyProperty:NumberOfMinistries2023331339892014-04-04T15:29:55Z{{DatatypeProperty -| rdfs:label@en = number of ministries -| rdfs:label@de = Zahl der Ministerien -| rdfs:label@pt = numero de ministerios -| rdfs:domain = Country -| rdfs:range = xsd:nonNegativeInteger -}}OntologyProperty:NumberOfMunicipalities2023357339902014-04-04T15:30:00Z{{DatatypeProperty -| labels = -{{label|en|Number Of Municipalities}} -{{label|de|Anzahl der Gemeinden}} -{{label|nl|Aantal gemeenten}} -{{label|pt|numero de municipios}} -| rdfs:domain = PopulatedPlace -| rdfs:range = xsd:nonNegativeInteger -}}OntologyProperty:NumberOfMusicalArtistEntities20212258534512018-10-28T12:23:04Z{{DatatypeProperty -| rdfs:label@en = number of MuscialArtist class (entities) in DBpedia -| rdfs:label@cs = počet entit třídy MuscialArtist v DBpedii -| rdfs:range = xsd:nonNegativeInteger -| rdfs:domain = Country -}}OntologyProperty:NumberOfMusicalArtistInstrument20212256534492018-10-28T11:46:02Z -{{DatatypeProperty -| rdfs:label@en = number of all MuscialArtist playing the instrument -| rdfs:label@cs = počet hudebních umělců hrající na konkrétní nástroj -| rdfs:range = xsd:nonNegativeInteger -| rdfs:domain = Instrument -}}OntologyProperty:NumberOfMusicalArtistStyle20212257534502018-10-28T11:58:36Z -{{DatatypeProperty -| rdfs:label@en = number of all MuscialArtist playing the style -| rdfs:label@cs = počet hudebních umělců hrající konkrétní styl -| rdfs:range = xsd:nonNegativeInteger -| rdfs:domain = MusicGenre -}}OntologyProperty:NumberOfNeighbourhood2026861252662013-05-23T13:39:19Z{{DatatypeProperty -| labels = -{{label|en|number of neighbourhood}} -| rdfs:domain = GermanSettlement -| rdfs:range = xsd:nonNegativeInteger -}}OntologyProperty:NumberOfNewlyIntroducedSports2026375227912013-01-15T10:38:35Z{{DatatypeProperty -| labels = - {{label|en|number of newly introduced sports}} - {{label|fr|numbre de sports nouvellement ajoutés}} - {{label|es|numero de deportes nuevamente añadidos}} -| rdfs:domain = Olympics -| rdfs:range = xsd:nonNegativeInteger -}}OntologyProperty:NumberOfOffices2023733233182013-01-20T11:00:57Z{{DatatypeProperty -| rdfs:label@en = number of offices -| rdfs:label@de = Anzahl Büros -| rdfs:label@el = αριθμός γραφείων -| rdfs:domain = LawFirm -| rdfs:range = xsd:nonNegativeInteger -| rdfs:comment@en = Number of the company's offices. -| rdfs:comment@el = Αριθμός γραφείων εταιρείας. -}}OntologyProperty:NumberOfOfficials2021204339912014-04-04T15:30:04Z{{DatatypeProperty -| rdfs:label@en = number of officials -| rdfs:label@de = Zahl der Beamten -| rdfs:domain = OlympicResult -| rdfs:range = xsd:nonNegativeInteger -}}OntologyProperty:NumberOfOrbits2021205339922014-04-04T15:30:07Z{{DatatypeProperty -| rdfs:label@en = number of orbits -| rdfs:label@de = Anzahl der Bahnen -| rdfs:domain = SpaceMission -| rdfs:range = xsd:nonNegativeInteger -}}OntologyProperty:NumberOfOutdegree20212247534952018-11-30T20:21:56Z -{{DatatypeProperty -| rdfs:label@en = numberOfOutdegree -| rdfs:comment@en = number of all outdegrees in DBpedia (same ourdegrees are counting repeatedly). This number is equal to number of all links (every link is OutDegree link) -| rdfs:range = xsd:nonNegativeInteger - -}}OntologyProperty:NumberOfPads2021206103992010-11-10T14:41:04Z{{DatatypeProperty -| rdfs:label@en = number of pads -| rdfs:domain = LaunchPad -| rdfs:range = xsd:nonNegativeInteger -}}OntologyProperty:NumberOfPages2021255520082017-03-22T20:30:12Z{{DatatypeProperty -| labels = -{{label|en|number of pages}} -{{label|fr|nombre de pages}} -{{label|nl|aantal pagina's}} -{{label|de|Anzahl der Seiten}} -| rdfs:domain = WrittenWork -| rdfs:comment@en = The books number of pages. -| rdfs:range = xsd:positiveInteger -| owl:equivalentProperty = schema:numberOfPages -}}OntologyProperty:NumberOfParkingSpaces2022744339932014-04-04T15:30:13Z{{DatatypeProperty -| rdfs:label@en = number of parking spaces -| rdfs:label@de = Anzahl der Parkplätze -| rdfs:domain = Hotel -| rdfs:range = xsd:nonNegativeInteger -}}OntologyProperty:NumberOfParticipatingAthletes2021207339942014-04-04T15:30:18Z{{DatatypeProperty -| labels = - {{label|en|number of participating athletes}} -{{label|de|Anzahl der teilnehmenden Athleten}} - {{label|fr|nombre d'athlètes participant}} -| rdfs:domain = Olympics -| rdfs:range = xsd:nonNegativeInteger -}}OntologyProperty:NumberOfParticipatingFemaleAthletes2026378339952014-04-04T15:30:22Z{{DatatypeProperty -| labels = - {{label|en|number of participating female athletes}} -{{label|de|Zahl der teilnehmenden Sportlerinnen}} - {{label|el|αριθμός συμμετεχόντων γυναικών αθλητριών}} - {{label|fr|nombre d'athlètes participant féminins}} -| rdfs:domain = Olympics -| rdfs:range = xsd:nonNegativeInteger -}}OntologyProperty:NumberOfParticipatingMaleAthletes2026377339962014-04-04T15:30:27Z{{DatatypeProperty -| labels = - {{label|en|number of participating male athletes}} -{{label|de|Anzahl der teilnehmenden männlichen Athleten}} - {{label|fr|nombre d'athlètes masculins participant}} -| rdfs:domain = Olympics -| rdfs:range = xsd:nonNegativeInteger -}}OntologyProperty:NumberOfParticipatingNations2021208339972014-04-04T15:30:32Z{{DatatypeProperty -| rdfs:label@en = number of participating nations -| rdfs:label@de = Anzahl der teilnehmenden Nationen -| rdfs:domain = Olympics -| rdfs:range = xsd:nonNegativeInteger -}}OntologyProperty:NumberOfPassengers20211850521482017-07-05T15:16:11Z{{ DatatypeProperty - - | rdfs:label@en = number of passengers - | rdfs:label@nl = aantal passagiers - | rdfs:domain = Ship - | rdfs:range = xsd:nonNegativeInteger - -}}OntologyProperty:NumberOfPeopleAttending2023307339982014-04-04T15:30:37Z{{DatatypeProperty -| labels = - {{label|en|number of people attending}} -{{label|de|Zahl der Teilnehmer}} - {{label|pt|número de participantes}} - {{label|fr|nombre de participants}} -| rdfs:domain = Event -| rdfs:range = xsd:nonNegativeInteger -}}OntologyProperty:NumberOfPeopleLicensed2025996200732012-11-30T16:47:33Z{{DatatypeProperty -|labels= -{{label|en|number of licensed}} -{{label|fr|nombre de licenciés}} -|comments= -{{comment|en|number of people that have a license to perform this activity}} -{{comment|en|nombre de personnes ayant une license pour pratiquer cette activité}} -| rdfs:domain = Activity -| rdfs:range = xsd:nonNegativeInteger -}}OntologyProperty:NumberOfPersonBornInPlace20212254534462018-10-28T11:07:17Z{{DatatypeProperty -| rdfs:label@en = number of entities of Person class born in the place -| rdfs:label@cs = počet entit třídy Osoba narozených na konkrétním místě -| rdfs:range = xsd:nonNegativeInteger -| rdfs:domain = Place -}}OntologyProperty:NumberOfPersonEntities20212251534432018-10-28T10:09:20Z{{DatatypeProperty -| rdfs:label@en = number of Person class (entities) in DBpedia -| rdfs:label@cs = počet entit třídy Osoba v DBpedii -| rdfs:range = xsd:nonNegativeInteger -| rdfs:domain = Country -}}OntologyProperty:NumberOfPersonFromUniversity20212253534452018-10-28T11:00:55Z{{DatatypeProperty -| rdfs:label@en = number of entities of Person class who graduated from the university -| rdfs:label@cs = počet entit třídy Osoba s vystudovanou konkrétní univerzitou -| rdfs:range = xsd:nonNegativeInteger -| rdfs:domain = University -}}OntologyProperty:NumberOfPersonInOccupation20212252534442018-10-28T10:50:07Z -{{DatatypeProperty -| rdfs:label@en = number of person in one occupation -| rdfs:label@cs = počet lidí v konkrétním zaměstnání -| rdfs:range = xsd:nonNegativeInteger -| rdfs:domain = PersonFunction -}}OntologyProperty:NumberOfPiersInWater2023438124562011-04-27T14:30:45Z{{DatatypeProperty -| rdfs:label@en = number of piers in water -| rdfs:label@de = Anzahl der Pfeiler in Wasser -| rdfs:domain = Bridge -| rdfs:range = xsd:nonNegativeInteger -| rdfs:comment@en = Number of piers standing in a river or other water in normal conditions. -}}OntologyProperty:NumberOfPixels20211545535532019-08-26T13:15:29Z{{DatatypeProperty -| labels = -{{label|en|number of pixels (millions)}} -{{label|fr|nombre de pixels (millions)}} -{{label|de|Anzahl der Pixel (Millionen)}} -| rdfs:subPropertyOf = number -| rdfs:range = xsd:nonNegativeInteger -}}OntologyProperty:NumberOfPlatformLevels2023232120552011-04-07T15:53:45Z{{DatatypeProperty -| rdfs:label@en = number of platform levels -| rdfs:domain = Station -| rdfs:range = xsd:integer -| rdfs:comment@en = Number of levels of platforms at the station. -}}OntologyProperty:NumberOfPlayers2026385339992014-04-04T15:30:43Z{{DatatypeProperty -| labels = - {{label|en|number of players}} -{{label|de|Anzahl der Spieler}} - {{label|el|αριθμός παιχτών}} - {{label|fr|nombre de joueurs}} - {{label|es|numero de jugadores}} -| comment = - {{comment|en|number of people playing at some activity like sports or games.}} -| rdfs:domain = Activity -| rdfs:range = xsd:nonNegativeInteger -}}OntologyProperty:NumberOfPostgraduateStudents2021309104172010-11-10T14:48:27Z{{DatatypeProperty -| rdfs:label@en = number of postgraduate students -| rdfs:domain = University -| rdfs:range = xsd:nonNegativeInteger -}}OntologyProperty:NumberOfPredicates20212236534982018-11-30T20:23:23Z -{{DatatypeProperty -| rdfs:label@en = numberOfPredicates -| rdfs:comment@en = number of predicates in DBpedia (including properties without rdf:type of rdf:Property) -| rdfs:range = xsd:nonNegativeInteger -}}OntologyProperty:NumberOfProfessionals2026386340002014-04-04T15:30:49Z{{DatatypeProperty -| labels = - {{label|en|number of professionals}} -{{label|de|Anzahl von Fachleuten}} - {{label|fr|nombre de professionnels}} - {{label|es|numero de profesionales}} -| comments = - {{comment|en|number of people who earns his living from a specified activity.<ref>http://en.wiktionary.org/wiki/professional</ref>}} -| rdfs:domain = Activity -| rdfs:range = xsd:nonNegativeInteger -}} - -== References == -<references/>OntologyProperty:NumberOfProperties20212243534962018-11-30T20:22:30Z -{{DatatypeProperty -| rdfs:label@en = numberOfProperties -| rdfs:comment@en = number of defined properties in DBpedia ontology -| rdfs:range = xsd:nonNegativeInteger - -}}OntologyProperty:NumberOfPropertiesUsed20212244534972018-11-30T20:22:51Z{{DatatypeProperty -| rdfs:label@en = numberOfPropertiesUsed -| rdfs:comment@en = number of all properties used as predicate in DBpedia -| rdfs:range = xsd:nonNegativeInteger - -}}OntologyProperty:NumberOfReactors2029145317222014-02-11T10:55:21Z{{DatatypeProperty -| labels = -{{label|en|number of reactors}} -{{label|de|Anzahl der Reaktoren}} -{{label|fr|nombre de réacteurs}} -{{label|nl|aantal reactoren}} -| rdfs:domain = NuclearPowerStation -| rdfs:range = xsd:nonNegativeInteger -}}OntologyProperty:NumberOfRedirectedResource20212267534862018-11-30T20:06:04Z -{{DatatypeProperty -| rdfs:label@en = numberOfRedirectedResource -| rdfs:comment@en = number of redirected resource to another one -| rdfs:comment@cs = počet redirectů - zdrojů přesměrovaných na jiný zdroj -| rdfs:range = xsd:nonNegativeInteger - -}}OntologyProperty:NumberOfResource20212235534892018-11-30T20:17:43Z -{{DatatypeProperty -| rdfs:label@en = numberOfResource -| rdfs:comment@en = number of all resource in DBpedia (including disambiguation pages and rediretcs) -| rdfs:range = xsd:nonNegativeInteger - -}}OntologyProperty:NumberOfResourceOfClass20212242534212018-10-25T18:34:32Z -{{DatatypeProperty -| rdfs:label@en = number of all resource / entities of a class -| rdfs:label@cs = celkový počet zdrojů / entit v dané tříde -| rdfs:range = xsd:nonNegativeInteger - -}}OntologyProperty:NumberOfResourceOfType20212239534132018-10-24T20:01:03Z{{DatatypeProperty -| rdfs:label@en = number of resource / entities for concrete type of subject -| rdfs:label@cs = počet zdrojů / entint pro konkrétní typ subjectu -| rdfs:range = xsd:nonNegativeInteger -}}OntologyProperty:NumberOfResourceWithType20212264534912018-11-30T20:18:54Z{{DatatypeProperty -| rdfs:label@en = nmberOfResourceWithType -| rdfs:comment@en = number of resource in DBpedia with Class type (= Class entity) -| rdfs:range = xsd:nonNegativeInteger - -}}OntologyProperty:NumberOfRestaurants2022512340012014-04-04T15:30:56Z{{DatatypeProperty -| rdfs:label@en = number of restaurants -| rdfs:label@de = Anzahl der Restaurants -| rdfs:label@el = αριθμός εστιατορίων -| rdfs:domain = Hotel -| rdfs:range = xsd:nonNegativeInteger -}}OntologyProperty:NumberOfRockets2025626531762018-07-19T08:54:45Z{{ DatatypeProperty - - | rdfs:label@en = number of rockets -| rdfs:label@de = Anzahl der Raketen - | rdfs:domain = MilitaryAircraft - | rdfs:range = xsd:nonNegativeInteger - -}}OntologyProperty:NumberOfRooms2022513526152017-10-31T13:48:05Z{{DatatypeProperty -| rdfs:label@en = number of rooms -| rdfs:label@de = Anzahl der Zimmer -| rdfs:label@el = αριθμός δωματίων -| rdfs:label@nl = aantal kamers -| rdfs:domain = Building -| rdfs:range = xsd:nonNegativeInteger -}}OntologyProperty:NumberOfRun2027805271112013-07-05T14:02:02Z{{DatatypeProperty -| labels = -{{label|en|number of run}} -| rdfs:range = xsd:nonNegativeInteger -| rdfs:domain = Person -}}OntologyProperty:NumberOfSeasons2021402340042014-04-04T15:31:12Z{{DatatypeProperty -| rdfs:label@en = number of seasons -| rdfs:label@de = Anzahl der Staffeln -| rdfs:domain = TelevisionShow -| rdfs:range = xsd:nonNegativeInteger -}}OntologyProperty:NumberOfSeats2029327340052014-04-04T15:31:18Z{{ DatatypeProperty - - | rdfs:label@en = number of seats -| rdfs:label@de = Anzahl der Sitze - | rdfs:label@nl = aantal plaatsen - | rdfs:domain = MeanOfTransportation - | rdfs:range = xsd:nonNegativeInteger - -}}OntologyProperty:NumberOfSeatsInParliament2028265340062014-04-04T15:31:24Z{{DatatypeProperty -| labels = -{{label|en|number of seats in parliament}} -{{label|de|Anzahl der Sitze im Parlament}} -{{label|nl|aantal zetels in parlement}} -| comments = -{{comment|en| number of seats in House of Commons-like parliaments }} -{{comment|nl| aantal zetels in Tweede-Kamer-achtig parlement }} -| rdfs:domain = PoliticalParty -| rdfs:range = xsd:nonNegativeInteger -}}OntologyProperty:NumberOfSettlement2027018340072014-04-04T15:31:29Z{{DatatypeProperty -| labels = -{{label|en|number of settlement}} -{{label|de|Zahl der Siedlungen}} -| rdfs:domain = Department -| rdfs:range = xsd:nonNegativeInteger -}}OntologyProperty:NumberOfSettlementsInCountry20212255534472018-10-28T11:30:23Z -{{DatatypeProperty -| rdfs:label@en = number of entities of Settlement class in country -| rdfs:label@cs = počet entit třídy Sídlo v dané zemi -| rdfs:range = xsd:nonNegativeInteger -| rdfs:domain = Country -}}OntologyProperty:NumberOfSilverMedalsWon2021209340082014-04-04T15:31:35Z{{DatatypeProperty -|labels = - {{label|en|number of silver medals won}} -{{label|de|Anzahl der Silbermedaillen}} - {{label|fr|nomber de médailles d'argent gagnées}} - {{label|es|cantidad de medallas de plata ganadas}} - {{label|nl|aantal gewonnen zilveren medailles}} -| rdfs:domain = SportCompetitionResult -| rdfs:range = xsd:nonNegativeInteger -}}OntologyProperty:NumberOfSoccerPlayerInCountryRepre20212260534532018-10-28T21:05:00Z -{{DatatypeProperty -| rdfs:label@en = number of SoccerPlayers in Country Repre -| rdfs:label@cs = celkový počet fotbalový hráčů v reprezentaci -| rdfs:range = xsd:nonNegativeInteger -| rdfs:domain = SoccerClub -}}OntologyProperty:NumberOfSoccerPlayersBornInPlace20212261534542018-10-28T21:13:22Z -{{DatatypeProperty -| rdfs:label@en = number of SoccerPlayers born in Place -| rdfs:label@cs = počet fotbalistů narozen na daném místě -| rdfs:range = xsd:nonNegativeInteger -| rdfs:domain = Place -}}OntologyProperty:NumberOfSoccerPlayersInTeam20212259534522018-10-28T20:34:05Z -{{DatatypeProperty -| rdfs:label@en = number of SoccerPlayers in entity of SoccerClub -| rdfs:label@cs = počet fotbalových hráčů ve fotbalovém týmu -| rdfs:range = xsd:nonNegativeInteger -| rdfs:domain = SoccerClub -}}OntologyProperty:NumberOfSpans2023439124582011-04-27T14:31:38Z{{DatatypeProperty -| rdfs:label@en = number of spans -| rdfs:label@de = Anzahl der Bögen -| rdfs:domain = Bridge -| rdfs:range = xsd:nonNegativeInteger -| rdfs:comment@en = Number of spans or arches. -}}OntologyProperty:NumberOfSpeakers2025290248052013-04-09T11:17:16Z{{ DatatypeProperty -| labels = -{{label|en|number of speakers}} -{{label|nl|aantal sprekers}} -{{label|de|Anzahl Sprecher}} -| rdfs:domain = Language -| rdfs:range = xsd:nonNegativeInteger -}}OntologyProperty:NumberOfSports2021210227892013-01-15T10:37:39Z{{DatatypeProperty -| labels = - {{label|en|number of sports}} - {{label|fr|numbre de sports}} - {{label|es|numero de deportes}} -| rdfs:range = xsd:nonNegativeInteger -}}OntologyProperty:NumberOfSportsEvents2026372520402017-05-06T16:05:44Z{{DatatypeProperty -| labels = - {{label|en|number of sports events}} -{{label|de|Anzahl der Sportveranstaltungen}} - {{label|el|αριθμός αθλητικών γεγονότων}} - {{label|fr|numbre d'épreuves sportives}} - {{label|es|numero de pruebas deportivas}} -| domain = SportsEvent -| rdfs:range = xsd:nonNegativeInteger -}}OntologyProperty:NumberOfStaff2021211340102014-04-04T15:31:47Z{{DatatypeProperty -| labels = -{{label|en|number of staff}} -{{label|de|Personalbestand}} -{{label|el|αριθμός προσωπικού}} -{{label|nl|aantal medewerkers}} -| rdfs:domain = Organisation -| rdfs:range = xsd:nonNegativeInteger -}}OntologyProperty:NumberOfStars2025340340112014-04-04T15:31:52Z{{ DatatypeProperty - - | rdfs:label@en = number of stars -| rdfs:label@de = Anzahl der Sterne - | rdfs:domain = Constellation - | rdfs:range = xsd:nonNegativeInteger - -}}OntologyProperty:NumberOfStateDeputies2023358122452011-04-15T14:01:12Z{{DatatypeProperty -| rdfs:label@en = Number Of State Deputies -| rdfs:label@pt = numero de deputados estaduais -| rdfs:domain = PopulatedPlace -| rdfs:range = xsd:nonNegativeInteger -}}OntologyProperty:NumberOfStations2023610128292011-05-17T12:10:28Z{{DatatypeProperty -| rdfs:label@en = number of stations -| rdfs:label@de = Anzahl der Stationen -| rdfs:domain = RouteOfTransportation -| rdfs:range = xsd:nonNegativeInteger -| rdfs:comment@en = Number of stations or stops. -}}OntologyProperty:NumberOfStores20211981526132017-10-31T13:40:38Z{{DatatypeProperty -| rdfs:label@en = number of sores -| rdfs:label@de = Anzahl an Geschäften -| rdfs:domain = ShoppingMall -| rdfs:range = xsd:nonNegativeInteger -}}OntologyProperty:NumberOfStudents2022149538042020-12-01T17:59:01Z{{DatatypeProperty -|labels= -{{label|en|number of students}} -{{label|de|Zahl der Studierenden}} -{{label|el|αριθμός φοιτητών}} -| rdfs:domain = EducationalInstitution -| rdfs:range = xsd:nonNegativeInteger -| owl:equivalentProperty=wikidata:P2196 -}}OntologyProperty:NumberOfStudioAlbums2025196340132014-04-04T15:32:03Z{{DatatypeProperty -| rdfs:label@en = number of studio albums -| rdfs:label@de = Zahl der Studio-Alben -| rdfs:comment@en = the number of studio albums released by the musical artist -| rdfs:domain = MusicalArtist -| rdfs:range = xsd:nonNegativeInteger -}}OntologyProperty:NumberOfSuites2022514104532010-11-10T15:04:04Z{{DatatypeProperty -| rdfs:label@en = number of suites -| rdfs:domain = Hotel -| rdfs:range = xsd:nonNegativeInteger -}}OntologyProperty:NumberOfTeams2027316340142014-04-04T15:32:07Z{{DatatypeProperty -| rdfs:label@en = number of teams -| rdfs:label@de = Anzahl der Teams -| rdfs:label@it = numero di squadre -| rdfs:domain = SportsLeague -| rdfs:range = xsd:nonNegativeInteger -}}OntologyProperty:NumberOfTracks2023234128072011-05-16T16:01:00Z{{DatatypeProperty -| rdfs:label@en = number of tracks -| rdfs:label@de = Anzahl der Gleise -| rdfs:domain = Infrastructure -| rdfs:range = xsd:nonNegativeInteger -| rdfs:comment@en = Number of tracks of a railway or railway station. -}}OntologyProperty:NumberOfTrails20211804519212017-02-20T11:21:21Z{{DatatypeProperty -| rdfs:label@en = number of trails -| rdfs:label@ja = コース数 -| rdfs:domain = SkiArea -| rdfs:range = xsd:nonNegativeInteger -| rdfs:comment@en = Number of trails in ski area. -}}OntologyProperty:NumberOfTriples20212237534882018-11-30T20:09:22Z{{DatatypeProperty -| rdfs:label@en = numberOfTriples -| rdfs:comment@en = number of triples in DBpedia -| rdfs:range = xsd:nonNegativeInteger -}}OntologyProperty:NumberOfTurns2025956197642012-11-07T14:42:07Z{{DatatypeProperty -|labels= - {{label|en|number of turns}} - {{label|fr|nombre de virages}} -<!--| rdfs:domain = RouteOfTransportation--> -| rdfs:domain = RaceTrack -| rdfs:range = xsd:nonNegativeInteger -}}OntologyProperty:NumberOfUndergraduateStudents2021541340162014-04-04T15:32:16Z{{DatatypeProperty -| rdfs:label@en = number of undergraduate students -| rdfs:label@de = Zahl der Studenten -| rdfs:domain = EducationalInstitution -| rdfs:range = xsd:nonNegativeInteger -}}OntologyProperty:NumberOfUniqeResources20212265534902018-11-30T20:18:14Z -{{DatatypeProperty -| rdfs:label@en = numberOfUniqeResources -| rdfs:comment@en = number of unique resource without redirecting -| rdfs:range = xsd:nonNegativeInteger - -}}OntologyProperty:NumberOfUseOfProperty20212246534272018-10-25T20:57:45Z -{{DatatypeProperty -| rdfs:label@en = number of use of a property -| rdfs:label@cs = počet použití property -| rdfs:range = xsd:nonNegativeInteger - -}}OntologyProperty:NumberOfVehicles2023622128612011-05-17T15:20:34Z{{DatatypeProperty -| rdfs:label@en = number of vehicles -| rdfs:label@de = Anzahl der Fahrzeuge -| rdfs:domain = PublicTransitSystem -| rdfs:range = xsd:nonNegativeInteger -| rdfs:comment@en = Number of vehicles used in the transit system. -}}OntologyProperty:NumberOfVillages2026790340172014-04-04T15:32:21Z{{DatatypeProperty -| labels = -{{label|en|number of villages }} -{{label|de|Anzahl der Dörfer}} -{{label|id|jumlah desa/kelurahan }} -| comments = -| rdfs:domain = District -| rdfs:range = xsd:nonNegativeInteger -}}OntologyProperty:NumberOfVineyards2021212340182014-04-04T15:32:26Z{{DatatypeProperty -| rdfs:label@en = number of vineyards -| rdfs:label@de = Anzahl von Weinbergen -| rdfs:domain = WineRegion -| rdfs:range = xsd:nonNegativeInteger -}}OntologyProperty:NumberOfVisitors2021213340192014-04-04T15:32:30Z{{DatatypeProperty -| labels = -{{label|en|number of visitors}} -{{label|de|Besucherzahl}} -{{label|el|αριθμός επισκεπτών}} -{{label|nl|bezoekersaantal}} -| rdfs:range = xsd:nonNegativeInteger -}}OntologyProperty:NumberOfVisitorsAsOf2023222120362011-04-07T14:24:23Z{{DatatypeProperty -| rdfs:label@en = number of visitors as of -| rdfs:domain = HistoricPlace -| rdfs:range = xsd:gYear -| rdfs:comment@en = The year in which number of visitors occurred. -}}OntologyProperty:NumberOfVolumes2025988207712012-12-23T14:58:25Z{{DatatypeProperty -| rdfs:label@en = number of volumes -| rdfs:domain = WrittenWork -| rdfs:range = xsd:nonNegativeInteger -| rdfs:comment@en = -}}OntologyProperty:NumberOfVolunteers2021214340202014-04-04T15:32:35Z{{DatatypeProperty -| rdfs:label@en = number of volunteers -| rdfs:label@de = Anzahl der Freiwilligen -| rdfs:label@el = αριθμός εθελοντών -| rdfs:domain = Organisation -| rdfs:range = xsd:nonNegativeInteger -}}OntologyProperty:NumberOfWineries2021215104082010-11-10T14:43:26Z{{DatatypeProperty -| rdfs:label@en = number of wineries -| rdfs:domain = WineRegion -| rdfs:range = xsd:nonNegativeInteger -}}OntologyProperty:NumberSold20211625509662016-04-26T14:44:19Z{{DatatypeProperty -| rdfs:label@en = number sold -| rdfs:domain = Sales -| rdfs:range = xsd:nonNegativeInteger -| rdfs:comment@en = Number of things (eg vehicles) sold -}}OntologyProperty:NutsCode2022436483772015-06-16T06:21:33Z{{DatatypeProperty -| labels = -{{label|en|NUTS code}} -{{label|nl|NUTS-code:}} -| rdfs:comment@en = 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. -| rdfs:domain = Place -| rdfs:range = xsd:string -| owl:equivalentProperty = wikidata:P605 -}}OntologyProperty:Observatory2027064340212014-04-04T15:32:39Z{{DatatypeProperty -| labels = - {{label|en|observatory}} -{{label|de|Observatorium}} - {{label|el|αστεροσκοπείο}} -| comments = - {{comment|el|επιστημονικά ιδρύματα που παρατηρούν και μελετάνε ουράνια σώματα και φαινόμενα.}} -| rdfs:domain = Island -| rdfs:range = xsd:string -}}OntologyProperty:Occupation2021216363392014-07-08T14:06:35Z -{{ObjectProperty -| labels = - {{label|en|occupation}} - {{label|de|Beschäftigung}} - {{label|fr|activité}} - {{label|ja|職業}} - {{label|nl|beroep}} -| rdfs:range = PersonFunction -| owl:equivalentProperty = wikidata:P106 -| rdfs:subPropertyOf = dul:hasRole -}}OntologyProperty:Oclc2021718132062011-05-25T16:50:57Z{{DatatypeProperty -| rdfs:label@en = OCLC -| rdfs:domain = WrittenWork -| rdfs:range = xsd:string -| rdfs:comment@en = Online Computer Library Center number -}}OntologyProperty:Odor20212044528002018-02-07T19:10:39Z{{DatatypeProperty -| labels = -{{label|en|Odor}} -{{label|de|Geruch}} -| rdfs:range = xsd:string -}}OntologyProperty:OfferedClasses2021217525822017-10-31T08:33:23Z{{DatatypeProperty -| rdfs:label@en = offered classes -| rdfs:domain = EducationalInstitution -| rdfs:range = xsd:string -}}OntologyProperty:Office2022324524822017-10-16T07:27:04Z{{DatatypeProperty -| rdfs:label@en = (political) office -| rdfs:label@el = υπηρεσία -| rdfs:label@de = (politisches) Amt -| rdfs:range = xsd:string -}}OntologyProperty:OfficerInCharge2021218363402014-07-08T14:06:39Z -{{ObjectProperty -| rdfs:label@en = officer in charge -| rdfs:domain = University -| rdfs:range = Person -| rdfs:subPropertyOf = dul:coparticipatesWith -}}OntologyProperty:OfficialLanguage2022763363412014-07-08T14:06:51Z -{{ObjectProperty -| rdfs:label@en = official language -| rdfs:label@de = Amtssprache -| rdfs:domain = PopulatedPlace -| rdfs:range = Language -| rdfs:subPropertyOf = dul:coparticipatesWith -}}OntologyProperty:OfficialName2026939537622020-10-08T22:52:16Z{{DatatypeProperty -| labels = -{{label|en|official name}} -{{label|de|offizieller Name}} -| rdfs:domain = Settlement -| rdfs:range = rdf:langString -| owl:equivalentProperty = gn:officialName -}}OntologyProperty:OfficialOpenedBy2021219363422014-07-08T14:06:53Z -{{ObjectProperty -| rdfs:label@en = official opened by -| rdfs:domain = Olympics -| rdfs:range = Person -| rdfs:subPropertyOf = dul:hasParticipant -}}OntologyProperty:OfficialSchoolColour202700131232011-05-23T10:45:01Z{{DatatypeProperty -| rdfs:label@en = official school colour -| rdfs:label@de = offizielle Schulfarbe -| rdfs:domain = EducationalInstitution -| rdfs:range = xsd:string -| rdfs:subPropertyOf = ColourName -| rdfs:comment@en = The official colour of the EducationalInstitution represented by the colour name (e.g.: red or green). -}}OntologyProperty:OfsCode2026942483742015-06-16T06:14:48Z{{DatatypeProperty -| labels = -{{label|en|ofs code of a settlement}} -| rdfs:domain = Settlement -| rdfs:range = xsd:string -| rdfs:subPropertyOf = isoCode -| rdfs:comment@en = Identifier used by the Swiss Federal Institute for Statistics -| owl:equivalentProperty = wikidata:P771 -}}OntologyProperty:OilSystem2021220363432014-07-08T14:06:56Z -{{ObjectProperty -| rdfs:label@en = oil system -| rdfs:label@de = Ölsystem -| rdfs:domain = AutomobileEngine -| rdfs:subPropertyOf = dul:hasComponent -}}OntologyProperty:OkatoCode2027280483752015-06-16T06:16:20Z{{DatatypeProperty -| labels = -{{label|en|okato code}} -| rdfs:domain = PopulatedPlace -| rdfs:range = xsd:string -| rdfs:comment@en = Code used to indentify populated places in Russia -| owl:equivalentProperty = wikidata:P721 -}}OntologyProperty:OldDistrict2026979363442014-07-08T14:07:00Z -{{ObjectProperty -| labels = - {{label|en|old district}} - {{label|de|Altstadt}} -| rdfs:range = PopulatedPlace -| rdfs:domain = PopulatedPlace -| rdfs:subPropertyOf = dul:isPartOf -}}OntologyProperty:OldName2027278347222014-05-06T16:15:21Z{{DatatypeProperty -| labels = -{{label|en|old name}} -{{label|el|παλιό όνομα}} -{{label|de|alter Name}} -| rdfs:domain = PopulatedPlace -| rdfs:range = xsd:string -}}OntologyProperty:OldProvince2026978363452014-07-08T14:07:04Z -{{ObjectProperty -| labels = - {{label|en|old province}} - {{label|de|alte Provinz}} -| rdfs:range = PopulatedPlace -| rdfs:domain = PopulatedPlace -| rdfs:subPropertyOf = dul:isPartOf -}}OntologyProperty:OldTeamCoached2027692269662013-07-04T09:33:41Z{{ObjectProperty -| labels = -{{label|en|old team coached}} -| rdfs:domain = Athlete -| rdfs:range = SportsTeam -}}OntologyProperty:Oldcode202122181782010-05-28T13:29:11Z{{DatatypeProperty -| rdfs:label@en = oldcode -| rdfs:domain = OlympicResult -| rdfs:range = xsd:string -}}OntologyProperty:OlivierAward2021222363462014-07-08T14:07:07Z -{{ObjectProperty -| rdfs:label@en = Olivier Award -| rdfs:domain = Comedian -| rdfs:range = Award -| rdfs:subPropertyOf = dul:coparticipatesWith -}}OntologyProperty:OlympicGames2027565340292014-04-04T15:33:14Z{{ObjectProperty -| labels = -{{label|en|olympic games}} -{{label|de|olympische Spiele}} -{{label|nl|Olympische Spelen}} -| rdfs:range = Tournament -| rdfs:domain = Person -}}OntologyProperty:OlympicGamesBronze2027572317352014-02-11T13:32:23Z{{DatatypeProperty -| labels = -{{label|en|olympic games bronze}} -{{label|nl|brons op de Olympische Spelen}} -| rdfs:domain = Person -| rdfs:range = xsd:nonNegativeInteger -}}OntologyProperty:OlympicGamesGold2027570317342014-02-11T13:31:32Z{{DatatypeProperty -| labels = -{{label|en|olympic games gold}} -{{label|nl|goud op de Olympische Spelen}} -| rdfs:domain = Person -| rdfs:range = xsd:nonNegativeInteger -}}OntologyProperty:OlympicGamesSilver2027571317332014-02-11T13:30:23Z{{DatatypeProperty -| labels = -{{label|en|olympic games silver}} -{{label|nl|zilver op de Olympische Spelen}} -| rdfs:domain = Person -| rdfs:range = xsd:nonNegativeInteger -}}OntologyProperty:OlympicGamesWins2027650317372014-02-11T13:34:12Z{{DatatypeProperty -| labels = -{{label|en|olympic games wins}} -{{label|nl|overwinningen op de Olympische Spelen}} -| rdfs:domain = Person -| rdfs:range = xsd:string -}}OntologyProperty:OlympicOathSwornBy2026374363472014-07-08T14:07:10Z -{{ObjectProperty -| labels = - {{label|de|Olympischer Eid}} - {{label|en|olympic oath sworn by}} - {{label|fr|lecteur du serment olympique}} -| rdfs:domain = Olympics -| rdfs:range = Person -| rdfs:subPropertyOf = dul:hasParticipant -}}OntologyProperty:OlympicOathSwornByAthlete2021223363482014-07-08T14:07:13Z -{{ObjectProperty -| rdfs:label@en = olympic oath sworn by athlete -| rdfs:domain = Olympics -| rdfs:range = Person -| rdfs:subPropertyOf = olympicOathSwornBy, dul:hasParticipant -}}OntologyProperty:OlympicOathSwornByJudge2021224363492014-07-08T14:07:17Z -{{ObjectProperty -| rdfs:label@en = olympic oath sworn by judge -| rdfs:domain = Olympics -| rdfs:range = Person -| rdfs:subPropertyOf = olympicOathSwornBy, dul:hasParticipant -}}OntologyProperty:Omim2021225237022013-02-11T09:21:03Z{{DatatypeProperty -| labels = -{{label|en|OMIM id}} -{{label|nl|OMIM id}} -{{label|ja|OMIM id}} -| rdfs:domain = Biomolecule -| rdfs:range = xsd:integer -}}OntologyProperty:OnChromosome2025052391242015-01-09T23:40:30Z{{DatatypeProperty -| rdfs:label@en = on chromosome -| rdfs:label@nl = chromosoom nummer -| rdfs:comment@en = the number corresponding to the chromosome on which the gene is located -| rdfs:domain = GeneLocation -| rdfs:range = xsd:integer -}}OntologyProperty:Ons2026848528592018-02-09T14:10:34Z{{DatatypeProperty -| labels = -{{label|en|ONS ID (Office national des statistiques) Algeria}} -| rdfs:domain = Settlement -| rdfs:range = xsd:nonNegativeInteger -}}OntologyProperty:OpenAccessContent2023745132012011-05-25T16:48:41Z{{DatatypeProperty -| rdfs:label@en = open access content -| rdfs:label@de = frei zugänglicher Inhalten -| rdfs:domain = PeriodicalLiterature -| rdfs:range = xsd:string -| rdfs:comment@en = Availability of open access content. -| rdfs:comment@de = Verfügbarkeit von frei zugänglichem Inhalten. -}}OntologyProperty:OpeningDate2021226462582015-03-18T14:56:38Z{{DatatypeProperty -| rdfs:label@en = opening date -| rdfs:label@el = ημερομηνία ανοίγματος -| rdfs:label@fr = date d'ouverture -| rdfs:label@de = Eröffnungsdatum -| rdfs:range = xsd:date -}}OntologyProperty:OpeningFilm2021227363502014-07-08T14:07:20Z -{{ObjectProperty -| rdfs:label@en = opening film -| rdfs:label@de = Eröffnungsfilm -| rdfs:domain = FilmFestival -| rdfs:range = Film -| rdfs:subPropertyOf = dul:hasParticipant -}}OntologyProperty:OpeningTheme2021228363512014-07-08T14:07:24Z -{{ObjectProperty -| rdfs:label@en = opening theme -| rdfs:domain = TelevisionShow -| rdfs:range = Work -| rdfs:subPropertyOf = dul:hasPart -}}OntologyProperty:OpeningYear2023382462602015-03-18T14:58:20Z{{DatatypeProperty -| rdfs:label@en = opening year -| rdfs:label@nl = openingsjaar -| rdfs:label@de = Eröffnungsjahr -| rdfs:range = xsd:gYear -}}OntologyProperty:OperatingIncome2021229527772018-01-23T15:03:10Z{{DatatypeProperty -| rdfs:label@en = operating income -| rdfs:label@de = Betriebsergebnis -| rdfs:domain = Company -| rdfs:range = Currency -| rdf:type = owl:FunctionalProperty -| owl:equivalentProperty = wikidata:P3362 -}}OntologyProperty:OperatingSystem2021230367732014-07-09T16:34:38Z{{ObjectProperty -| labels = - {{label|en|operating system}} - {{label|el|λειτουργικό σύστημα}} - {{label|de|Betriebssystem}} - {{label|nl|besturingssysteem}} -| rdfs:domain = Software -| rdfs:subPropertyOf = dul:hasParticipant -}}OntologyProperty:Operator2021231512012016-06-08T13:09:23Z -{{ObjectProperty -| labels = - {{label|en|operator}} - {{label|de|Betreiber}} - {{label|nl|exploitant}} -| rdfs:domain = owl:Thing -| rdfs:range = owl:Thing -| rdfs:subPropertyOf = dul:coparticipatesWith -| rdfs:comment@en = Organisation or City who is the operator of an ArchitecturalStructure, PublicTransitSystem, ConcentrationCamp, etc. Not to confuse with builder, owner or maintainer. -Domain is unrestricted since Organization is Agent but City is Place. Range is unrestricted since anything can be operated. -}}OntologyProperty:Opponent2021232363552014-07-08T14:07:37Z -{{ObjectProperty -| rdfs:label@en = opponent -| rdfs:label@ja = 敵対者 -| rdfs:label@de = Gegner -| rdfs:domain = Person -| rdfs:range = Person -| rdfs:subPropertyOf = dul:coparticipatesWith -}}OntologyProperty:Opponents2027467363562014-07-08T14:07:41Z -{{ObjectProperty -| rdfs:label@en = opponents -| rdfs:label@de = Gegner -| rdfs:comment@en = "opponent in a military conflict, an organisation, country, or group of countries. " -| rdfs:domain = MilitaryConflict -| rdfs:range = owl:Thing -| rdfs:subPropertyOf = dul:hasParticipant -}}OntologyProperty:OrbitalEccentricity2027964279752013-07-31T21:56:12Z{{DatatypeProperty -| rdfs:label@en = orbital eccentricity -| rdfs:domain = CelestialBody -| rdfs:range = xsd:float -}}OntologyProperty:OrbitalFlights2021233104092010-11-10T14:43:37Z{{DatatypeProperty -| rdfs:label@en = orbital flights -| rdfs:domain = YearInSpaceflight -| rdfs:range = xsd:nonNegativeInteger -}}OntologyProperty:OrbitalInclination2021234340352014-04-04T15:33:41Z{{DatatypeProperty -| rdfs:label@en = orbital inclination -| rdfs:label@de = Bahnneigung -| rdfs:domain = SpaceMission -| rdfs:range = xsd:float -}}OntologyProperty:OrbitalPeriod2021235340362014-04-04T15:33:47Z{{DatatypeProperty -| rdfs:label@en = orbital period -| rdfs:label@de = Umlaufzeit -| rdfs:label@el = Περίοδος περιφοράς -| rdfs:domain = Planet -| rdfs:range = Time -}}OntologyProperty:Orbits2021236340372014-04-04T15:33:52Z{{DatatypeProperty -| rdfs:label@en = orbits -| rdfs:label@de = Bahnen -| rdfs:range = xsd:integer -}}OntologyProperty:OrcidId2028421528822018-02-13T10:53:15Z{{DatatypeProperty -| labels = -{{label|en|ORCID Id}} -| comments = -{{comment|en|Authority data on researchers, academics, etc. The ID range has been defined as a subset of the forthcoming ISNI range.}} -| rdfs:range = xsd:string -| owl:equivalentProperty = wikidata:P496 -| rdfs:subPropertyOf = code -}}OntologyProperty:Order2021237486182015-08-06T12:36:58Z{{ObjectProperty -| labels = - {{label|en|order (taxonomy)}} - {{label|de|Ordnung}} - {{label|el|διαταγή}} - {{label|fr|ordre (taxonomie)}} - {{label|nl|orde}} - {{label|ja|目_(分類学)}} -| rdfs:domain = Species -| owl:equivalentProperty = wikidata:P70 -| rdfs:subPropertyOf = dul:isSpecializedBy -}}OntologyProperty:OrderDate2023110116552011-04-02T11:06:18Z{{DatatypeProperty -| rdfs:label@en=order date -| rdfs:domain = Ship -| rdfs:range = xsd:date -}}OntologyProperty:OrderInOffice202232383912010-05-28T13:57:55Z{{DatatypeProperty -| rdfs:label@en = order in office -| rdfs:range = xsd:string -}}OntologyProperty:Ordination202266695672010-09-20T08:24:07Z{{DatatypeProperty -| rdfs:label@en = Ordination -| rdfs:domain = Priest -| rdfs:range = xsd:date -}}OntologyProperty:Organ2029342329812014-03-26T11:49:20Z{{ObjectProperty -| labels = -{{label|en|organ}} -{{label|nl|orgel}} -| comments = -{{comment|en|Name and/or description of the organ}} -{{comment|nl|Naam en/of beschrijving van het orgel}} -| rdfs:domain = ReligiousBuilding -| rdfs:range = Organ -| rdf:type = -| rdfs:subPropertyOf = -| owl:equivalentProperty = -}}OntologyProperty:OrganSystem2022111363582014-07-08T14:07:48Z -{{ObjectProperty -| rdfs:label@en = organ system -| rdfs:comment@en = the organ system that a anatomical structure belongs to -| rdfs:domain = AnatomicalStructure -| rdfs:range = AnatomicalStructure -| rdfs:subPropertyOf = dul:isPartOf -}}OntologyProperty:Organisation2027126363592014-07-08T14:07:52Z -{{ObjectProperty -| labels = - {{label|en|organisation}} - {{label|de|Organisation}} -| rdfs:range = Organisation -| rdfs:subPropertyOf = dul:sameSettingAs -}}OntologyProperty:OrganisationMember2025040363602014-07-08T14:07:57Z -{{ObjectProperty -| rdfs:label@en = organisation member -| rdfs:label@de = Organisationsmitglied -| rdfs:comment@en = Identify the members of an organisation. -| rdfs:domain = Organisation -| rdfs:range = OrganisationMember -| rdfs:subPropertyOf = dul:hasMember -}}OntologyProperty:Orientation2027818340412014-04-04T15:34:10Z{{DatatypeProperty -| labels = -{{label|en|orientation}} -{{label|de|Orientierung}} -| rdfs:domain = Person -| rdfs:range = xsd:string -| owl:equivalentProperty = wikidata:P91 -}}OntologyProperty:Origin2021239363612014-07-08T14:08:01Z -{{ObjectProperty -| labels = - {{label|en|origin}} - {{label|el|προέλευση}} - {{label|nl|oorsprong}} - {{label|de|Herkunft}} - {{label|fr|origine}} - {{label|pt|origem}} -| rdfs:range = PopulatedPlace -| rdfs:subPropertyOf = dul:hasCommonBoundary -}}OntologyProperty:OriginalDanseCompetition2028076282392013-09-04T09:17:38Z{{DatatypeProperty -| labels = -{{label|en|original danse competititon}} -| rdfs:domain = Person -| rdfs:range = xsd:string -}}OntologyProperty:OriginalDanseScore2028075282382013-09-04T09:17:17Z{{DatatypeProperty -| labels = -{{label|en|original danse score}} -| rdfs:domain = Person -| rdfs:range = xsd:string -}}OntologyProperty:OriginalEndPoint2021240363622014-07-08T14:08:16Z -{{ObjectProperty -| rdfs:label@en = original end point -| rdfs:label@el = πρωταρχικό_σημείο_τέλους -| rdfs:domain = Canal -| rdfs:range = Place -| rdfs:subPropertyOf = dul:hasCommonBoundary -}}OntologyProperty:OriginalLanguage2023831363632014-07-08T14:08:20Z -{{ObjectProperty -| labels = - {{label|en|original language}} - {{label|nl|oorspronkelijke taal}} - {{label|de|Originalsprache}} - {{label|fr|langue originale}} - {{label|es|idioma original}} -| rdfs:domain = Work -| rdfs:range = Language -| rdfs:subPropertyOf = language, dul:isExpressedBy -| rdfs:comment@en = The original language of the work. -| owl:equivalentProperty = wikidata:P364 -}}OntologyProperty:OriginalMaximumBoatBeam202124181862010-05-28T13:30:14Z{{DatatypeProperty -| rdfs:label@en = original maximum boat beam -| rdfs:domain = Canal -| rdfs:range = Length -}}OntologyProperty:OriginalMaximumBoatLength202124281872010-05-28T13:30:23Z{{DatatypeProperty -| rdfs:label@en = original maximum boat length -| rdfs:domain = Canal -| rdfs:range = Length -}}OntologyProperty:OriginalName2025251537002020-09-04T15:27:50Z{{ DatatypeProperty -| labels = -{{label|en|original name}} -{{label|de|ursprünglicher Namen}} -{{label|nl|oorspronkelijke naam}} -| rdfs:comment@en = The original name of the entity, e.g. film, settlement, etc. -| rdfs:domain = owl:Thing -| rdfs:range = rdf:langString -| owl:equivalentProperty = ceo:oorspronkelijkeNaam -}}OntologyProperty:OriginalStartPoint2021243363642014-07-08T14:08:25Z -{{ObjectProperty -| rdfs:label@en = original start point -| rdfs:label@de = ursprünglicher Ausgangspunkt -| rdfs:label@el = πρωταρχική_αρχή -| rdfs:domain = Canal -| rdfs:range = Place -| rdfs:subPropertyOf = dul:hasCommonBoundary -}}OntologyProperty:OriginalTitle2026794348182014-05-15T05:05:12Z{{ DatatypeProperty -| labels = -{{label|en|original title}} -{{label|de|Originaltitel}} -{{label|nl|oorspronkelijke titel}} -| rdfs:comment@en = The original title of the work, most of the time in the original language as well -| rdfs:domain = Work -| rdfs:range = rdf:langString -}}OntologyProperty:OriginallyUsedFor2026007512292016-06-09T09:54:32Z{{DatatypeProperty -| labels = -{{label|en|originally used for}} -{{label|de|ursprünglich verwendet für}} -{{label|nl|oorspronkelijk gebruik}} -| rdfs:domain = owl:Thing -| rdfs:range = xsd:string -| rdfs:comment@en = Original use of ArchitecturalStructure or ConcentrationCamp, if it is currently being used as anything other than its original purpose. -}}OntologyProperty:Origo2029283325972014-03-11T09:26:31Z{{ObjectProperty -| rdfs:label@en = origo -| rdfs:domain = Muscle -| rdfs:range = AnatomicalStructure -}}OntologyProperty:Orogeny2021244363652014-07-08T14:08:27Z -{{ObjectProperty -| rdfs:label@en = orogeny -| rdfs:label@fr = orogenèse -| rdfs:subPropertyOf = dul:isClassifiedBy -}}OntologyProperty:Orpha20211876522132017-10-07T15:49:16Z{{DatatypeProperty -| labels = -{{label|en|ORPHA}} -{{label|nl|ORPHA}} -{{label|de|ORPHA}} -{{label|fr|ORPHA}} -| rdfs:domain = Disease -| rdfs:range = xsd:string -}}OntologyProperty:OrthologousGene2025048363662014-07-08T14:08:31Z -{{ObjectProperty -| rdfs:label@en = Orthologous Gene -| rdfs:label@ja = オーソロガス遺伝子 -| rdfs:domain = Gene -| rdfs:range = Gene -| rdfs:subPropertyOf = dul:sameSettingAs -}}OntologyProperty:Other202124581882010-05-28T13:30:32Z{{DatatypeProperty -| rdfs:label@en = other -| rdfs:domain = University -| rdfs:range = xsd:integer -}}OntologyProperty:OtherActivity2027699340462014-04-04T15:34:34Z{{DatatypeProperty -| labels = -{{label|en|other activity}} -{{label|de|andere Aktivität}} -| rdfs:domain = Person -| rdfs:range = xsd:string -}}OntologyProperty:OtherAppearances2021246363672014-07-08T14:08:34Z -{{ObjectProperty -| rdfs:label@en = other appearances -| rdfs:domain = OlympicResult -| rdfs:range = OlympicResult -| rdfs:subPropertyOf = dul:sameSettingAs -}}OntologyProperty:OtherChannel2023184119132011-04-05T10:38:02Z{{DatatypeProperty -| rdfs:label@en = other channel -| rdfs:domain = Broadcaster -| rdfs:range = xsd:string -}}OntologyProperty:OtherFamilyBranch2029293326592014-03-13T16:27:55Z{{ObjectProperty -|labels = -{{label|en|other branch}} -{{label|nl|zijtak}} -| rdfs:domain = NobleFamily -| rdfs:range = Family -}}OntologyProperty:OtherFuelType2029590355162014-06-28T22:03:15Z{{ObjectProperty -|rdfs:label@en = secondary/other fuel type -|rdfs:domain = PowerStation -}}OntologyProperty:OtherFunction2027558340472014-04-04T15:34:39Z{{ObjectProperty -| labels = -{{label|en|other function}} -{{label|de|andere Funktion}} -| rdfs:domain = Person -}}OntologyProperty:OtherInformation2026904340482014-04-04T15:34:44Z{{DatatypeProperty -| labels = -{{label|en|other information of a settlement}} -{{label|de|andere Informationen einer Siedlung}} -| rdfs:domain = Settlement -| rdfs:range = xsd:string -}}OntologyProperty:OtherLanguage2026895340492014-04-04T15:34:50Z{{DatatypeProperty -| labels = -{{label|en|other language of a settlement}} -{{label|de|anderen Sprache einer Siedlung}} -| rdfs:domain = Settlement -| rdfs:range = xsd:string -}}OntologyProperty:OtherMedia2027880340502014-04-04T15:34:55Z{{ObjectProperty -| labels = -{{label|en|other media}} -{{label|de|andere Medien}} -| rdfs:domain = Person -| rdfs:range = PeriodicalLiterature -}}OntologyProperty:OtherName2026894348452014-05-15T05:19:13Z{{DatatypeProperty -| labels = -{{label|en|other name}} -{{label|de|anderer Name}} -| rdfs:domain = PopulatedPlace -| rdfs:range = rdf:langString -}}OntologyProperty:OtherOccupation2027882273642013-07-10T14:08:48Z{{ObjectProperty -| labels = -{{label|en|other occupation}} -| rdfs:domain = Person -| rdfs:range = PersonFunction -}}OntologyProperty:OtherParty2021248363682014-07-08T14:08:37Z -{{ObjectProperty -| rdfs:label@en = other party -| rdfs:label@de = andere Partei -| rdfs:domain = OfficeHolder -| rdfs:range = PoliticalParty -| rdfs:subPropertyOf = dul:isMemberOf -}}OntologyProperty:OtherServingLines2023228222742013-01-11T00:22:36Z{{DatatypeProperty -| labels = -{{label|en|other serving lines}} -{{label|nl|andere verbindingen}} -{{label|de|andere Verbindungen}} -| rdfs:domain = Station -| rdfs:range = xsd:string -| rdfs:comment@en = Connecting services that serve the station such as bus, etc. -}}OntologyProperty:OtherSportsExperience2027976280242013-08-11T04:34:43Z{{ObjectProperty -| labels = -{{label|en|otherSportsExperience}} -{{label|ja|スポーツ歴}} -| rdfs:domain = Athlete -| rdfs:range = Athletics -}}OntologyProperty:OtherWins2023541126752011-05-07T14:10:02Z{{DatatypeProperty -| rdfs:label@en = other wins -| rdfs:label@de = Sonstige Siege -| rdfs:domain = SnookerPlayer -| rdfs:range = xsd:nonNegativeInteger -| rdfs:subPropertyOf = Wins -}}OntologyProperty:Outflow2021249503262016-02-05T08:21:54Z{{ObjectProperty -| rdfs:label@en = outflow -| rdfs:label@de = Abfluss -| rdfs:label@el = εκροή -| rdfs:domain = BodyOfWater -| rdfs:range = River -| rdfs:subPropertyOf = dul:hasCommonBoundary -}}OntologyProperty:Output2027191257412013-06-01T13:20:18Z{{DatatypeProperty -| labels = -{{label|en|output}} -| rdfs:domain = Place -| rdfs:range = xsd:float -}}OntologyProperty:Outskirts2027238258942013-06-12T14:03:14Z{{DatatypeProperty -| labels = -{{label|en|outskirts}} -| rdfs:domain = PopulatedPlace -| rdfs:range = xsd:string -}}OntologyProperty:OverallRecord2021250340542014-04-04T15:35:13Z{{DatatypeProperty -| rdfs:label@en = overall record -| rdfs:label@de = Gesamtbilanz -| rdfs:domain = CollegeCoach -| rdfs:range = xsd:string -}}OntologyProperty:Oversight202125181912010-05-28T13:30:58Z{{DatatypeProperty -| rdfs:label@en = oversight -| rdfs:domain = School -| rdfs:range = xsd:string -}}OntologyProperty:Owl:differentFrom20210468397472015-02-03T08:58:41Z{{ObjectProperty -| labels = - {{label|en|An owl:differentFrom statement indicates that two URI references refer to different individuals}} -}}OntologyProperty:Owl:sameAs2024030138302011-06-22T10:09:51Z{{ObjectProperty -| rdfs:label@en = same as -}}OntologyProperty:Owner2021252478202015-04-28T15:20:20Z{{Merge|OntologyProperty:owningOrganisation}} - - -{{ObjectProperty -| labels = - {{label|en|owner}} - {{label|nl|eigenaar}} - {{label|de|Eigentümer}} - {{label|el|ιδιοκτήτης}} - {{label|fr|propriétaire}} - {{label|es|dueño}} - {{label|ga|úinéir}} - {{label|pl|właściciel}} -| rdfs:comment@en = Used as if meaning: owned by, has as its owner -| rdfs:domain = -| rdfs:range = Agent -| rdfs:subPropertyOf = dul:sameSettingAs -| owl:equivalentProperty = wikidata:P127 -}}OntologyProperty:OwningCompany2021253363712014-07-08T14:08:47Z -{{ObjectProperty -| rdfs:label@en = owning company -| rdfs:label@de = Besitzerfirma -| rdfs:range = Company -| rdfs:subPropertyOf = dul:sameSettingAs -}}OntologyProperty:OwningOrganisation2021254478212015-04-28T15:24:00Z{{Merge|OntologyProperty:owner}} - - -{{ObjectProperty -| rdfs:label@en = owning organisation -| rdfs:label@el = οργανισμός -| rdfs:range = Organisation -| rdfs:subPropertyOf = owner -}}OntologyProperty:Owns20210202536662020-07-30T21:19:33Z{{ObjectProperty -| labels = - {{label|en|owns}} - {{label|nl|in bezit van}} -| rdfs:comment@en = Used as if meaning: has property rights over -| rdfs:domain= Agent -| rdfs:range = Thing -| rdfs:subPropertyOf = dul:sameSettingAs -| owl:equivalentProperty = schema:owns -}}OntologyProperty:Painter2025621363732014-07-08T14:08:54Z -{{ObjectProperty -| rdfs:label@en = painter -| rdfs:label@de = Maler -| rdfs:label@el = ζωγράφος -| rdfs:domain = Artwork -| rdfs:range = Person -| rdfs:subPropertyOf = dul:coparticipatesWith -}}OntologyProperty:Parent2021256535962020-02-04T05:26:28Z -{{ObjectProperty -| labels = - {{label|en|parent}} - {{label|de|Elternteil}} - {{label|nl|ouder}} - {{label|fr|parent}} - {{label|ja|親}} -| rdfs:domain = Person -| rdfs:range = Person -| owl:propertyDisjointWith = child -| rdfs:subPropertyOf = dul:sameSettingAs -}}OntologyProperty:ParentCompany2021257363752014-07-08T14:09:00Z -{{ObjectProperty -| rdfs:label@en = parent company -| rdfs:label@de = Muttergesellschaft -| rdfs:range = Company -| rdfs:subPropertyOf = dul:sameSettingAs -}}OntologyProperty:ParentMountainPeak2022416363762014-07-08T14:09:04Z -{{ObjectProperty -| rdfs:label@en = parent mountain peak -| rdfs:domain = Mountain -| rdfs:range = Mountain -| rdfs:subPropertyOf = dul:sameSettingAs -}}OntologyProperty:ParentOrganisation2021258363772014-07-08T14:09:07Z -{{ObjectProperty -| labels = - {{label|en|parent organisation}} - {{label|nl|moederorganisatie}} -| rdfs:domain = Organisation -| rdfs:range = Organisation -| owl:equivalentProperty = schema:branchOf -| rdfs:subPropertyOf = dul:sameSettingAs -}}OntologyProperty:Parentheses20211993526792017-11-18T10:01:17Z{{ObjectProperty -| labels = -{{label|en|parentheses}} -{{label|nl|haakjes}} -| rdfs:domain = Species - -}}OntologyProperty:Parish2022139363782014-07-08T14:09:10Z -{{ObjectProperty -| rdfs:label@en = parish -| rdfs:label@de = Gemeinde -| rdfs:domain = PopulatedPlace -| rdfs:range = PopulatedPlace -| rdfs:subPropertyOf = dul:isPartOf -}}OntologyProperty:ParkingInformation2023235120582011-04-07T15:59:55Z{{DatatypeProperty -| rdfs:label@en = parking information -| rdfs:label@de = Parkplatzinformationen -| rdfs:domain = Station -| rdfs:range = xsd:string -| rdfs:comment@en = Information on station's parking facilities. -}}OntologyProperty:ParkingLotsCars20211143461852015-03-18T08:57:41Z{{DatatypeProperty -| rdfs:label@en = number of parking lots for cars -| rdfs:label@nl = aantal parkeerplaatsen personenauto's -| rdfs:domain = RestArea -| rdfs:range = xsd:nonNegativeInteger -}}OntologyProperty:ParkingLotsTrucks20211144461862015-03-18T08:58:40Z{{DatatypeProperty -| rdfs:label@en = number of parking lots for trucks -| rdfs:label@nl = aantal parkeerplaatsen vrachtwagens -| rdfs:domain = RestArea -| rdfs:range = xsd:nonNegativeInteger -}}OntologyProperty:Parliament2027179524852017-10-16T08:01:24Z{{ObjectProperty -| labels = -{{label|en|parliament}} -{{label|de|Parlament}} -| rdfs:domain = owl:Thing -| rdfs:range = Parliament -}}OntologyProperty:ParliamentType2027180257292013-06-01T10:21:10Z{{DatatypeProperty -| labels = -{{label|en|parliament type}} -| rdfs:domain = Place -| rdfs:range = xsd:string -}}OntologyProperty:ParliamentaryGroup2027813340612014-04-04T15:35:50Z{{DatatypeProperty -| labels = -{{label|en|parliamentary group}} -{{label|de|Fraktion}} -| rdfs:domain = Person -| rdfs:range = xsd:string -}}OntologyProperty:Part2021259523072017-10-09T12:48:28Z -{{ObjectProperty -| rdfs:label@en = part -| rdfs:label@de = Teil -| rdfs:subPropertyOf = dul:hasPart -}}OntologyProperty:PartialFailedLaunches2021260104112010-11-10T14:45:25Z{{DatatypeProperty -| rdfs:label@en = partial failed launches -| rdfs:range = xsd:nonNegativeInteger -| rdfs:comment@en = total number of launches resulting in partial failure -}}OntologyProperty:Participant2025280236842013-02-11T08:08:06Z{{ DatatypeProperty -| labels = -{{label|en|participant}} -{{label|nl|deelnemer}} -{{label|de|Teilnehmer}} -| rdfs:domain = Event -| rdfs:range = xsd:string -}}OntologyProperty:ParticipatingIn20210243385262014-10-03T14:49:21Z{{ObjectProperty -| labels = - {{label|en|participates/participated in}} - {{label|de|nimmt Teil an}} - {{label|nl|neemt deel aan}} -| rdfs:domain = MemberResistanceMovement -| rdfs:range = SocietalEvent -| rdfs:subPropertyOf = dul:sameSettingAs -}}OntologyProperty:ParticularSign2027819271282013-07-05T14:44:17Z{{DatatypeProperty -| labels = -{{label|en|particular sign}} -| rdfs:domain = Person -| rdfs:range = xsd:string -}}OntologyProperty:PartitionCoefficient20212042527982018-02-07T19:02:56Z{{DatatypeProperty -| labels = -{{label|en|Partition coefficient}} -{{label|de|Verteilungskoeffizient}} -{{label|nl|Verdelingscoëfficiënt}} -| rdfs:domain = ChemicalSubstance -| rdfs:range = xsd:float -}}OntologyProperty:Partner2021261363802014-07-08T14:09:16Z -{{ObjectProperty -| labels = - {{label|en|partner}} - {{label|nl|partner}} - {{label|el|συνέταιρος}} - {{label|de|Partner}} -| rdfs:domain = Person -| rdfs:range = Person -| rdfs:subPropertyOf = dul:sameSettingAs -}}OntologyProperty:Party2021264363812014-07-08T14:09:31Z -{{ObjectProperty -| labels = - {{label|en|party}} - {{label|el|πάρτυ}} - {{label|nl|partij}} - {{label|de|Partei}} - {{label|ja|政党}} -| rdfs:domain = owl:Thing -| rdfs:range = PoliticalParty -| owl:equivalentProperty = wikidata:P102 -| rdfs:subPropertyOf = dul:isMemberOf -}}OntologyProperty:PartyNumber2023261121132011-04-13T10:11:35Z{{DatatypeProperty -| rdfs:label@en = party number -| rdfs:label@pt = número do partido -| rdfs:range = xsd:integer -}}OntologyProperty:PassengersPerDay2023574127722011-05-11T12:57:34Z{{DatatypeProperty -| rdfs:label@en = passengers per day -| rdfs:label@de = Passagiere pro Tag -| rdfs:domain = Infrastructure -| rdfs:range = xsd:nonNegativeInteger -| rdfs:comment@en = Number of passengers per day. -}}OntologyProperty:PassengersPerYear2023575222712013-01-11T00:20:12Z{{DatatypeProperty -| labels = -{{label|en|passengers per year}} -{{label|nl|passagiers per jaar}} -{{label|de|Passagiere pro Jahr}} -| rdfs:domain = Infrastructure -| rdfs:range = xsd:nonNegativeInteger -| rdfs:comment@en = Number of passengers per year. -}}OntologyProperty:PassengersUsedSystem2023251120772011-04-08T12:30:21Z{{DatatypeProperty -| rdfs:label@en = passengers used system -| rdfs:label@de = benutztes System der Passagiere -| rdfs:domain = Station -| rdfs:range = xsd:string -| rdfs:comment@en = System the passengers are using (from which the passenger statistics are). -}}OntologyProperty:PastMember2021265363822014-07-08T14:09:33Z -{{ObjectProperty -| rdfs:label@en = past member -| rdfs:range = Person -| rdfs:subPropertyOf = dul:hasMember -}}OntologyProperty:Pastor2022783363832014-07-08T14:09:35Z -{{ObjectProperty -| rdfs:label@en = pastor -| rdfs:domain = HistoricBuilding -| rdfs:range = Person -| rdfs:subPropertyOf = dul:sameSettingAs -}}OntologyProperty:Patent2023352363842014-07-08T14:09:38Z -{{ObjectProperty -| rdfs:label@en = patent -| rdfs:label@de = Patent -| rdfs:label@pt = patente -| rdfs:domain = Person -| rdfs:subPropertyOf = dul:sameSettingAs -}}OntologyProperty:Patron2021267363852014-07-08T14:09:42Z -{{ObjectProperty -| rdfs:label@en = patron -| rdfs:label@de = Patron -| rdfs:label@pt = patrono -| rdfs:domain = MilitaryUnit -| rdfs:range = Person -| rdfs:subPropertyOf = dul:sameSettingAs -}}OntologyProperty:PatronSaint2026852525902017-10-31T08:59:33Z -{{ObjectProperty -| labels = {{label|en|patron saint}} -| rdfs:range = Person -| rdfs:subPropertyOf = dul:sameSettingAs -}}OntologyProperty:PccSecretary2027229258772013-06-11T12:57:31Z{{DatatypeProperty -| labels = -{{label|en|pcc secretary}} -| rdfs:range = xsd:string -}}OntologyProperty:Pdb2021269515682016-11-01T15:07:13Z{{DatatypeProperty -| labels = - {{label|en|PDB ID}} - {{label|ja|PDB ID}} -| comments = - {{comment|en|gene entry for 3D structural data as per the PDB (Protein Data Bank) database}} -| rdfs:domain = Protein -| rdfs:range = xsd:string -| owl:equivalentProperty = wikidata:P638 -}}OntologyProperty:PeabodyAward2021270363872014-07-08T14:09:49Z -{{ObjectProperty -| rdfs:label@en = Peabody Award -| rdfs:domain = Comedian -| rdfs:range = Award -| rdfs:subPropertyOf = dul:coparticipatesWith -}}OntologyProperty:PenaltiesTeamA2026196251522013-05-05T22:18:26Z{{DatatypeProperty -| rdfs:label@en = Penalties Team A -| rdfs:domain = PenaltyShootOut -| rdfs:range = xsd:string -}}OntologyProperty:PenaltiesTeamB2026197251532013-05-05T22:18:41Z{{DatatypeProperty -| rdfs:label@en = Penalties Team B -| rdfs:domain = PenaltyShootOut -| rdfs:range = xsd:string -}}OntologyProperty:PenaltyScore2026122251502013-05-05T22:16:08Z{{DatatypeProperty -| rdfs:label@en = penalty score -| rdfs:domain = PenaltyShootOut -| rdfs:range = xsd:integer -}}OntologyProperty:PendamicDeaths20212301536142020-04-10T06:28:51Z{{DatatypeProperty -| labels = -{{label|en|Deaths}} -| rdfs:comment@en = Number of deaths caused by pandemic -| rdfs:domain = Outbreak -| rdfs:range = xsd:integer -}}OntologyProperty:PenisLength2027816271242013-07-05T14:42:18Z{{DatatypeProperty -| labels = -{{label|en|penis length}} -| rdfs:domain = Person -| rdfs:range = xsd:string -}}OntologyProperty:PeopleName2026897396752015-01-22T07:55:59Z{{DatatypeProperty -| labels = -{{label|en|peopleName}} -|comments= -{{comment|en|Name for the people inhabiting a place, eg Ankara->Ankariotes, Bulgaria->Bulgarians}} -| rdfs:domain = PopulatedPlace -| rdfs:range = rdf:langString -}}OntologyProperty:PerCapitaIncome2023268340702014-04-04T16:26:31Z{{DatatypeProperty -| rdfs:label@en = per capita income -| rdfs:label@de = Pro-Kopf-Einkommen -| rdfs:label@pt = renda per capita -| rdfs:domain = PopulatedPlace -| rdfs:range = Currency -}}OntologyProperty:PerCapitaIncomeAsOf2023269121242011-04-13T13:33:27Z{{DatatypeProperty -| rdfs:label@en = per capita income as of -| rdfs:label@pt = renda per capita em -| rdfs:domain = PopulatedPlace -| rdfs:range = xsd:date -}}OntologyProperty:PerCapitaIncomeRank2027124499172015-12-29T10:54:21Z{{DatatypeProperty -| labels = -{{label|en|per capital income rank}} -| rdfs:domain = PopulatedPlace -| rdfs:range = xsd:string -}}OntologyProperty:Percentage2029186319182014-02-14T18:44:37Z{{ObjectProperty -| rdfs:label@en = percentage -| rdfs:label@de = Prozent -| rdfs:label@nl = percentage -}}OntologyProperty:PercentageAlcohol2026718340712014-04-04T16:26:35Z{{DatatypeProperty -| rdfs:label@en = percentage of alcohol -| rdfs:label@de = Anteil von Alkohol -| rdfs:label@nl = alcoholpercentage -| rdfs:comment@en = percentage of alcohol present in a beverage -| rdfs:domain = Beverage -| rdfs:range = xsd:nonNegativeInteger -}}OntologyProperty:PercentageFat2026738487582015-08-13T10:08:38Z{{DatatypeProperty -| rdfs:label@en = percentage of fat -| rdfs:label@de = Fettgehalt -| rdfs:label@nl = vetgehalte -| rdfs:comment@en = how much fat (as a percentage) does this food contain. Mostly applies to Cheese -| rdfs:domain = Food -| rdfs:range = xsd:nonNegativeInteger -}}OntologyProperty:PercentageLiteracyMen20211428494442015-11-03T09:55:24Z{{DatatypeProperty -| labels = -{{label|en|percentage of a place's male population that is literate, degree of analphabetism}} -{{label|nl|percentage van de mannelijke bevolking dat geletterd is}} -| rdfs:domain = PopulatedPlace -| rdfs:range = xsd:float -| rdfs:subPropertyOf = percentageLiterate -}}OntologyProperty:PercentageLiteracyWomen20211429495042015-11-06T17:23:01Z{{DatatypeProperty -| labels = -{{label|en|percentage of a place's female population that is literate, degree of analphabetism}} -{{label|nl|percentage van de vrouwelijke bevolking dat geletterd is}} -| rdfs:domain = PopulatedPlace -| rdfs:range = xsd:float -| rdfs:subProperty = percentageLiterate -}}OntologyProperty:PercentageLiterate20211427494392015-11-03T09:46:13Z{{DatatypeProperty -| labels = -{{label|en|percentage of a place's population that is literate, degree of analphabetism}} -{{label|nl|percentage van de bevolking dat geletterd is}} -| rdfs:domain = PopulatedPlace -| rdfs:range = xsd:float -}}OntologyProperty:PercentageOfAreaWater2021271252062013-05-16T13:19:51Z{{DatatypeProperty -| rdfs:label@en = percentage of area water -| rdfs:label@el = ποσοστό_υδάτων -| rdfs:label@nl = percentage wateroppervlak -| rdfs:range = xsd:float -}}OntologyProperty:Performer2026824363882014-07-08T14:09:53Z -{{ObjectProperty -| labels = - {{label|en|performer}} - {{label|de|Künstler}} -| rdfs:domain = FictionalCharacter -| rdfs:range = Person -| rdfs:subPropertyOf = dul:coparticipatesWith -}}OntologyProperty:Periapsis2021273353362014-06-17T12:50:40Z{{DatatypeProperty -| labels = -{{label|en|periapsis}} -{{label|de|Periapsisdistanz}} -| rdfs:domain = CelestialBody -| rdfs:range = Length -}}OntologyProperty:Perifocus20211493499192015-12-29T11:03:50Z{{DatatypeProperty -| labels = -{{label|en|perifocus}} -{{label|nl|perifocus}} -| rdfs:domain = CelestialBody -| rdfs:range = xsd:string -}}OntologyProperty:Perimeter20211556504482016-03-07T20:51:31Z{{DatatypeProperty -| labels = -{{label|en|perimeter}} -{{label|nl|omtrek}} -| rdfs:domain = Place -| rdfs:range = Length -}}OntologyProperty:Period2025281537462020-09-30T11:41:23Z{{ ObjectProperty -| labels = -{{label|en|event period}} -{{label|de|Veranstaltungsdauer}} -{{label|nl|periode}} -{{label|fr|période}} -| owl:equivalentProperty = ceo:heeftPeriode -}}OntologyProperty:Perpetrator20212048528642018-02-13T10:17:27Z{{ ObjectProperty -| labels = -{{label|en|perpetrator}} -{{label|nl|dader}} -{{label|de|Täter}} -{{label|fr|auteur}} -| rdfs:domain = Attack -| rdfs:range = Agent -}}OntologyProperty:Person2021275363892014-07-08T14:09:57Z -{{ObjectProperty -| rdfs:label@en = person -| rdfs:label@de = Person -| rdfs:label@el = άτομο -| rdfs:domain = PersonFunction -| rdfs:range = Person -| rdfs:subPropertyOf = dul:isRoleOf -}}OntologyProperty:PersonFunction202922485182015-08-05T14:38:11Z{{ObjectProperty -| labels = - {{label|en|person function}} - {{label|de|Amt}} - {{label|nl|persoon functie}} -| rdfs:range = PersonFunction -| rdfs:domain = Person -| rdfs:subPropertyOf = dul:hasRole -}}OntologyProperty:PersonName2021276538012020-12-01T17:56:05Z{{DatatypeProperty -| rdfs:label@en = personName -| rdfs:domain = PersonFunction -| rdfs:range = xsd:string -| owl:equivalentProperty=wikidata:P1448 -}}OntologyProperty:PgaWins2027649273182013-07-10T11:27:55Z{{ObjectProperty -| labels = -{{label|en|pga wins}} -| rdfs:domain = Person -| rdfs:range = skos:Concept -}}OntologyProperty:PhilosophicalSchool2022311363912014-07-08T14:10:03Z -{{ObjectProperty -| rdfs:label@en = philosophicalSchool -| rdfs:domain = Person -| rdfs:subPropertyOf = dul:isMemberOf -}}OntologyProperty:PhonePrefix2026849451602015-02-11T08:52:45Z{{DatatypeProperty -| labels = -{{label|en|phone prefix}} -{{label|de|Telefonvorwahl}} -| rdfs:comment@en = Don't use this, use areaCode -| rdfs:domain = PopulatedPlace -| rdfs:range = xsd:nonNegativeInteger -}}OntologyProperty:PhonePrefixLabel2026927348502014-05-15T05:19:54Z{{DatatypeProperty -| labels = -{{label|en|phone prefix label of a settlement}} -| rdfs:domain = Settlement -| rdfs:range = rdf:langString -}}OntologyProperty:Photographer2021277537972020-10-29T00:55:08Z -{{ObjectProperty -| rdfs:label@en = photographer -| rdfs:label@de = Fotograf -| rdfs:domain = TelevisionEpisode -| rdfs:range = Person -| rdfs:subPropertyOf = dul:coparticipatesWith -| owl:equivalentProperty = gnd:photographer -}}OntologyProperty:Phylum2021278363932014-07-08T14:10:09Z -{{ObjectProperty -| labels = - {{label|en|phylum}} - {{label|es|filo}} - {{label|fr|Embranchement phylogénétique}} - {{label|ja|門_(分類学)}} -| comments = - {{comment|en|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.<ref>https://en.wiktionary.org/wiki/phylum</ref>}} - {{comment|fr|En systématique, l'embranchement (ou phylum) est le deuxième niveau de classification classique des espèces vivantes.<ref>https://fr.wikipedia.org/wiki/Embranchement_%28biologie%29</ref>}} -| rdfs:domain = Species -| rdfs:subPropertyOf = dul:isSpecializedBy -}} -== references == -<references/>OntologyProperty:Picture2023217525322017-10-23T09:02:36Z{{ObjectProperty -| labels = - {{label|en|picture}} - {{label|el|εικόνα}} - {{label|nl|afbeelding}} - {{label|pt|figura}} - {{label|de|bild}} - {{label|ru|рисунок}} - {{label|fr|image}} -| rdfs:domain = owl:Thing -| rdfs:range = owl:Thing -| rdfs:comment@en = A picture of a thing. -| rdfs:comment@fr = Une image de quelque chose. -| owl:equivalentProperty = schema:image -| rdfs:subPropertyOf = dul:concretelyExpresses -}}OntologyProperty:PictureDescription2025272340782014-04-04T16:27:09Z{{ ObjectProperty - - | rdfs:label@en = picture description -| rdfs:label@de = Bildbeschreibung - | rdfs:domain = owl:Thing - | rdfs:range = owl:Thing - -}}OntologyProperty:PictureFormat2023055363952014-07-08T14:10:16Z -{{ObjectProperty -| rdfs:label@en = picture format -| rdfs:label@de = Bildformat -| rdfs:domain = Broadcaster -| rdfs:range = owl:Thing -| rdfs:subPropertyOf = dul:hasQuality -}}OntologyProperty:PicturesCommonsCategory2029300433322015-02-06T15:01:18Z{{DatatypeProperty -| labels = -{{label|en|pictures Commons category}} -| rdfs:comment@en=Wikimedia CommonsCategory for pictures of this resource -| rdfs:range = xsd:string -}}OntologyProperty:Piercing2023287340792014-04-04T16:27:15Z{{DatatypeProperty -| rdfs:label@en = piercing -| rdfs:label@de = Piercing -| rdfs:label@pt = piercing -| rdfs:domain = Person -| rdfs:range = xsd:string -}}OntologyProperty:PisciculturalPopulation2027101256252013-05-26T13:38:14Z{{DatatypeProperty -| labels = -{{label|en|piscicultural population}} -| rdfs:domain = Place -| rdfs:range = xsd:string -}}OntologyProperty:PistonStroke202127982002010-05-28T13:32:15Z{{DatatypeProperty -| rdfs:label@en = piston stroke -| rdfs:domain = AutomobileEngine -| rdfs:range = Length -}}OntologyProperty:Place2021280537642020-10-08T23:09:12Z -{{ObjectProperty -| rdfs:label@en = Relates an entity to the populated place in which it is located. -| rdfs:domain = owl:Thing -| rdfs:range = PopulatedPlace -| rdfs:subPropertyOf = dul:hasLocation -| owl:equivalentProperty = event:place -}}OntologyProperty:PlaceOfBurial2021281474492015-04-01T16:11:10Z{{ObjectProperty -| labels = - {{label|en|place of burial}} - {{label|ca|lloc d'enterrament}} - {{label|de|Ort der Bestattung}} - {{label|el|τόπος θαψίματος}} - {{label|nl|begraafplaats}} - {{label|pl|miejsce pochówku}} -| rdfs:domain = Person -| rdfs:range = Place -| comments = - {{comment|en|The place where the person has been buried.}} - {{comment|el|Ο τόπος όπου το πρόσωπο έχει θαφτεί.}} - {{comment|nl|De plaats waar een persoon is begraven.}} -| rdfs:subPropertyOf = dul:hasLocation -| owl:equivalentProperty = wikidata:P119 -}}OntologyProperty:PlaceOfWorship2026479529212018-02-24T19:51:02Z -{{ObjectProperty -| labels = - {{label|en|place of worship}} - {{label|de|Kultstätte}} - {{label|nl|gebedsplaats}} -| comments = - {{comment|en|A religious administrative body needs to know which places of worship it }} - {{comment|nl|Een kerkelijke organisatie houdt bij welke gebedshuizen ze heeft}} -| rdfs:domain = ClericalAdministrativeRegion -| rdfs:range = ReligiousBuilding -| rdf:type = | rdfs:subPropertyOf = -| owl:equivalentProperty = -| rdfs:subPropertyOf = dul:sameSettingAs -}}OntologyProperty:Plant2021283363992014-07-08T14:10:31Z -{{ObjectProperty -| rdfs:label@en = plant -| rdfs:label@de = Pflanze -| rdfs:label@el = φυτό -| rdfs:label@ja = 植物 -| rdfs:domain = Place -| rdfs:range = Plant -| rdfs:subPropertyOf = dul:isLocationOf -}}OntologyProperty:PlayRole2026803364002014-07-08T14:10:35Z -{{ObjectProperty -| rdfs:label@en = play role -| rdfs:domain = owl:Thing -| rdfs:range = owl:Thing -| rdfs:subPropertyOf = uses, dul:hasRole -}}OntologyProperty:PlayerInTeam2024317485112015-08-05T14:19:45Z{{ObjectProperty -| labels = - {{label|en|player in team}} - {{label|de|Spieler im Team}} - {{label|el|παίχτης σε ομάδα}} -| rdfs:domain = SportsTeam -| rdfs:range = Person -| comments = - {{comment|en|A person playing for a sports team. inverseOf team}} - {{comment|el|Άτομο που παίζει για αθλητική ομάδα.}} -| rdfs:subPropertyOf = dul:hasMember -| owl:inverseOf = team -}}OntologyProperty:PlayerSeason2027874273352013-07-10T12:46:14Z{{ObjectProperty -| rdfs:label@en = player season -| rdfs:domain = Agent -}}OntologyProperty:PlayerStatus2027790340842014-04-04T16:27:50Z{{DatatypeProperty -| labels = -{{label|en|player status}} -{{label|de|Spielerstatus}} -| rdfs:domain = Person -| rdfs:range = xsd:string -}}OntologyProperty:PlayingTime2022301340852014-04-04T16:27:54Z{{DatatypeProperty -| labels = -{{label|en|playing time}} -{{label|de|Spielzeit}} -{{label|nl|speeltijd}} -| rdfs:range = Time -}}OntologyProperty:Plays2021285224552013-01-12T22:51:48Z{{DatatypeProperty -| labels = -{{label|en|plays}} -{{label|nl|slaghand}} -| rdfs:domain = TennisPlayer -| rdfs:range = xsd:string -}}OntologyProperty:Pluviometry2027230340862014-04-04T16:27:58Z{{DatatypeProperty -| labels = -{{label|en|pluviometry}} -{{label|de|Regenmessung}} -| rdfs:domain = PopulatedPlace -| rdfs:range = xsd:string -}}OntologyProperty:Podium2027808340872014-04-04T16:28:03Z{{DatatypeProperty -| labels = -{{label|en|podium}} -{{label|de|Podest}} -| rdfs:range = xsd:nonNegativeInteger -| rdfs:domain = Person -}}OntologyProperty:Podiums2021286340882014-04-04T16:28:07Z{{DatatypeProperty -| rdfs:label@en = podiums -| rdfs:label@de = Podestplätze -| rdfs:domain = FormulaOneRacer -| rdfs:range = xsd:nonNegativeInteger -}}OntologyProperty:Pole2027653340892014-04-04T16:28:12Z{{DatatypeProperty -| labels = -{{label|en|pole}} -{{label|de|Pol}} -| rdfs:range = xsd:string -}}OntologyProperty:PoleDriver2021287364022014-07-08T14:10:53Z -{{ObjectProperty -| rdfs:label@en = pole driver -| rdfs:domain = GrandPrix -| rdfs:range = Person -| rdfs:subPropertyOf = dul:hasParticipant -}}OntologyProperty:PoleDriverCountry2021288364032014-07-08T14:10:55Z -{{ObjectProperty -| rdfs:label@en = pole driver country -| rdfs:domain = GrandPrix -| rdfs:range = Country -| rdfs:subPropertyOf = dul:hasParticipant -}}OntologyProperty:PoleDriverTeam2021289364042014-07-08T14:10:59Z -{{ObjectProperty -| rdfs:label@en = pole driver team -| rdfs:domain = GrandPrix -| rdfs:range = SportsTeam -| rdfs:subPropertyOf = dul:hasParticipant -}}OntologyProperty:PolePosition2027806341152014-04-04T16:30:17Z{{DatatypeProperty -| labels = -{{label|en|pole position}} -| rdfs:range = xsd:nonNegativeInteger -| rdfs:domain = Person -}}OntologyProperty:Poles2021290340912014-04-04T16:28:20Z{{DatatypeProperty -| rdfs:label@en = poles -| rdfs:label@de = Pole -| rdfs:label@fr = pôle -| rdfs:domain = FormulaOneRacer -| rdfs:range = xsd:nonNegativeInteger -}}OntologyProperty:PoliceName2027298391832015-01-11T19:04:44Z{{DatatypeProperty -| labels = -{{label|en|police name}} -| comments = -{{comment|en|The police detachment serving a UK place, eg Wakefield -> "West Yorkshire Police"}} -| rdfs:domain = PopulatedPlace -| rdfs:range = xsd:string -}}OntologyProperty:PolishFilmAward2022468364052014-07-08T14:11:02Z -{{ObjectProperty -| rdfs:label@en = Polish Film Award -| rdfs:label@de = Polnischer Filmpreis -| rdfs:label@pl = Polska Nagroda Filmowa (Orzeł) -| rdfs:domain = Artist -| rdfs:range = Award -| rdfs:subPropertyOf = dul:coparticipatesWith -}}OntologyProperty:PoliticGovernmentDepartment2023349364062014-07-08T14:11:05Z -{{ObjectProperty -| rdfs:label@en = politic government department -| rdfs:label@pt = ministerio do politico -| rdfs:domain = PopulatedPlace -| rdfs:subPropertyOf = Department, dul:hasPart -}}OntologyProperty:PoliticalFunction2027887340932014-04-04T16:28:30Z{{DatatypeProperty -| labels = -{{label|en|political function}} -{{label|de|politische Funktion}} -| rdfs:domain = Person -| rdfs:range = xsd:string -}}OntologyProperty:PoliticalLeader2027896340942014-04-04T16:28:34Z{{ObjectProperty -| labels = -{{label|en|political leader}} -{{label|de|politischer Führer}} -| rdfs:domain = Place -| rdfs:range = PersonFunction -}}OntologyProperty:PoliticalMajority2027898340952014-04-04T16:28:50Z{{ObjectProperty -| labels = -{{label|en|political majority}} -{{label|de|politische Mehrheit}} -| rdfs:domain = Settlement -| rdfs:range = PoliticalParty -}}OntologyProperty:PoliticalPartyInLegislature2023530364072014-07-08T14:11:08Z -{{ObjectProperty -| rdfs:label@en = political party in legislature -| rdfs:label@de = politische Partei in der Legislative -| rdfs:domain = Legislature -| rdfs:range = PoliticalParty -| rdfs:comment@en = Political party in the legislature (eg.: European People's Party in the European Parliament). -| rdfs:subPropertyOf = dul:hasPart -}}OntologyProperty:PoliticalPartyOfLeader2023532364082014-07-08T14:11:11Z -{{ObjectProperty -| rdfs:label@en = political party of leader -| rdfs:label@de = politische Partei des Vorsitzenden -| rdfs:domain = Legislature -| rdfs:range = PoliticalParty -| rdfs:comment@en = The Political party of leader. -| rdfs:subPropertyOf = dul:hasPart -}}OntologyProperty:PoliticalSeats2027899274242013-07-12T10:14:39Z{{DatatypeProperty -| labels = -{{label|en|political seats}} -| rdfs:domain = Settlement -| rdfs:range = xsd:nonNegativeInteger -}}OntologyProperty:Politician20211911523122017-10-09T13:53:04Z{{ObjectProperty -| labels = - {{label|en|politician}} - {{label|de|Politiker}} -| comments = - {{comment|en|The politician exercising this function.}} - {{comment|de|Der Politiker welcher dieses Amt hält (hielt).}} -| rdfs:domain = PoliticalFunction -| rdfs:range = Politician -}}OntologyProperty:PopularVote2022507340972014-04-04T16:28:59Z{{DatatypeProperty -| rdfs:label@en = Number of votes given to candidate -| rdfs:label@de = Anzahl der Stimmen für Kandidaten -| rdfs:domain = Election -| rdfs:range = xsd:nonNegativeInteger -}}OntologyProperty:Population2027908537612020-10-08T22:50:55Z{{ObjectProperty | labels = {{label|en|population}} -| rdfs:domain = PopulatedPlace -| rdfs:range = Population -| owl:equivalentProperty = gn:population -}}OntologyProperty:PopulationAsOf2021291198932012-11-21T17:44:12Z{{DatatypeProperty -| labels = -{{label|en|population as of}} -{{label|nl|bevolking vanaf}} -{{label|fr|population en date de}} -{{label|el|χρονιά_απογραφής}} -| rdfs:domain = PopulatedPlace -| rdfs:range = xsd:date -}}OntologyProperty:PopulationDensity2021292517772016-12-20T13:03:13Z{{DatatypeProperty -| labels = -{{label|en|population density}} -{{label|nl|bevolkingsdichtheid}} -{{label|de|Bevölkerungsdichte}} -{{label|el|πυκνότητα_πληθυσμού}} -{{label|hi|घनत्व}} -| rdfs:domain = PopulatedPlace -| rdfs:range = PopulationDensity -}}OntologyProperty:PopulationMetro2021293104152010-11-10T14:48:10Z{{DatatypeProperty -| rdfs:label@en = population metro -| rdfs:domain = PopulatedPlace -| rdfs:range = xsd:nonNegativeInteger -}}OntologyProperty:PopulationMetroDensity2021294224002013-01-11T21:51:11Z{{DatatypeProperty -| labels = -{{label|en|population metro density}} -{{label|nl|bevolkingsdichtheid}} -| rdfs:domain = PopulatedPlace -| rdfs:range = PopulationDensity -}}OntologyProperty:PopulationPctChildren2028921307402014-01-22T11:22:17Z{{DatatypeProperty - |rdfs:label@en=population percentage under 12 years - |rdfs:domain = PopulatedPlace - |rdfs:range=xsd:nonNegativeInteger -}}OntologyProperty:PopulationPctMen2028919307382014-01-22T11:20:57Z{{DatatypeProperty - |rdfs:label@en=population percentage male - |rdfs:domain = PopulatedPlace - |rdfs:range=xsd:nonNegativeInteger -}}OntologyProperty:PopulationPctWomen2028920307392014-01-22T11:21:32Z{{DatatypeProperty - |rdfs:label@en=population percentage female - |rdfs:domain = PopulatedPlace - |rdfs:range=xsd:nonNegativeInteger -}}OntologyProperty:PopulationPlace2021295364102014-07-08T14:11:18Z -{{ObjectProperty -| rdfs:label@en = population place -| rdfs:domain = EthnicGroup -| rdfs:range = PopulatedPlace -| rdfs:comment@en = a place were members of an ethnic group are living -| rdfs:subPropertyOf = dul:hasLocation -}}OntologyProperty:PopulationQuote2027133256672013-05-26T15:26:24Z{{DatatypeProperty -| labels = -{{label|en|population quote}} -| rdfs:domain = Place -| rdfs:range = xsd:string -}}OntologyProperty:PopulationRural2024349146152011-07-28T12:52:10Z{{DatatypeProperty - |rdfs:label@en=population rural - |rdfs:domain = PopulatedPlace - |rdfs:range=xsd:nonNegativeInteger -}}OntologyProperty:PopulationRuralDensity2024350146162011-07-28T12:52:55Z{{DatatypeProperty - |rdfs:label@en=population density rural - |rdfs:domain = PopulatedPlace - |rdfs:range=PopulationDensity -}}OntologyProperty:PopulationTotal2021296495592015-11-22T15:02:14Z{{DatatypeProperty -| labels = -{{label|de|Einwohnerzahl}} -{{label|pt|população total}} -{{label|en|population total}} -{{label|nl|inwonersaantal}} -{{label|fr|population totale}} -{{label|el|συνολικός_πληθυσμός}} -| rdfs:range = xsd:nonNegativeInteger -| rdf:type = owl:FunctionalProperty -| owl:equivalentProperty = wikidata:P1082 - -}}OntologyProperty:PopulationTotalRanking2023363122502011-04-15T14:10:28Z{{DatatypeProperty -| rdfs:label@en = total population ranking -| rdfs:label@pt = posição no ranking do total da populacao -| rdfs:domain = PopulatedPlace -| rdfs:range = xsd:positiveInteger -}}OntologyProperty:PopulationTotalReference2023362122492011-04-15T14:09:25Z{{ObjectProperty -| rdfs:label@en = total population reference -| rdfs:label@pt = referencia do total da populacao -| rdfs:domain = Settlement -}}OntologyProperty:PopulationUrban2021297340982014-04-04T16:29:05Z{{DatatypeProperty -| rdfs:label@en = population urban -| rdfs:label@de = Stadtbevölkerung -| rdfs:domain = PopulatedPlace -| rdfs:range = xsd:nonNegativeInteger -}}OntologyProperty:PopulationUrbanDensity202129882102010-05-28T13:33:32Z{{DatatypeProperty -| rdfs:label@en = population urban density -| rdfs:domain = PopulatedPlace -| rdfs:range = PopulationDensity -}}OntologyProperty:PopulationYear2026782259612013-06-13T15:19:46Z{{DatatypeProperty -| labels = -{{label|en|population year}} -| rdfs:domain = PopulatedPlace -| rdfs:range = xsd:string -}}OntologyProperty:Portfolio2022353340992014-04-04T16:29:09Z{{DatatypeProperty -| rdfs:label@en = portfolio -| rdfs:label@de = Portfolio -| rdfs:range = xsd:string -}}OntologyProperty:Portrayer2023096364132014-07-08T14:11:28Z -{{ObjectProperty -| rdfs:label@en = portrayer -| rdfs:domain = FictionalCharacter -| rdfs:subPropertyOf = dul:coparticipatesWith -}}OntologyProperty:Position2021307538112020-12-01T18:07:02Z{{ObjectProperty -| labels = -{{label|en|position}} -{{label|de|Position}} -{{label|el|Θέση}} -{{label|nl|positie}} -{{label|ja|ポジション}} -| owl:equivalentProperty = schema:position, wikidata:P413 -}}OntologyProperty:PostalCode2021308537992020-12-01T17:53:25Z{{DatatypeProperty -| labels = -{{label|en|postal code}} -{{label|nl|postcode}} -{{label|de|Postleitzahl}} -{{label|pt|código postal}} -{{label|el|ταχυδρομικός κώδικας}} -{{label|fr|code postal}} -| rdfs:comment@en = 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. -| rdfs:range = xsd:string -| rdfs:subPropertyOf = code -| owl:equivalentProperty = ceo:postcode, bag:postcode, gn:postalCode, wikidata:P281 -}}OntologyProperty:Power2026818341012014-04-04T16:29:16Z{{DatatypeProperty -| labels = -{{label|en|power}} -{{label|de|Macht}} -| rdfs:domain = FictionalCharacter -| rdfs:range = xsd:string -}}OntologyProperty:PowerOutput2021310526022017-10-31T10:50:13Z{{DatatypeProperty -| rdfs:label@en = power output -| rdfs:label@de = Ausgangsleistung -| rdfs:domain = Engine -| rdfs:range = Power -| rdf:type = owl:FunctionalProperty -}}OntologyProperty:PowerType2022535364142014-07-08T14:11:31Z -{{ObjectProperty -| rdfs:label@en = power type -| rdfs:domain = MeanOfTransportation -| rdfs:subPropertyOf = dul:isClassifiedBy -}}OntologyProperty:Precursor2021311364152014-07-08T14:11:34Z -{{ObjectProperty -| rdfs:label@en = precursor -| rdfs:label@de = Vorläufer -| rdfs:domain = AnatomicalStructure -| rdfs:range = Embryology -| rdfs:subPropertyOf = dul:sameSettingAs -}}OntologyProperty:Predecessor2021312364162014-07-08T14:11:37Z -{{ObjectProperty -| labels = - {{label|en|predecessor}} - {{label|nl|voorganger}} - {{label|de|Vorgänger}} - {{label|ja|前任者}} -| rdfs:subPropertyOf = dul:sameSettingAs -}}OntologyProperty:PrefaceBy2029321341042014-04-04T16:29:30Z{{ObjectProperty -| labels = -{{label|en|author of preface}} -{{label|de|Autor des Vorworts}} -{{label|nl|schrijver voorwoord}} -| rdfs:domain = WrittenWork -| rdfs:range = Person -}}OntologyProperty:Prefect2026922364172014-07-08T14:11:40Z -{{ObjectProperty -| labels = - {{label|en|prefect}} - {{label|de|Präfekt}} -| rdfs:domain = Politician -| rdfs:range = Person -| rdfs:subPropertyOf = dul:sameSettingAs -}}OntologyProperty:PrefectMandate2026923253882013-05-25T10:49:26Z{{DatatypeProperty -| labels = -{{label|en|mandate of a prefect of a romanian settlement}} -| rdfs:domain = RomaniaSettlement -| rdfs:range = xsd:string -}}OntologyProperty:Prefecture2027016364182014-07-08T14:11:43Z -{{ObjectProperty -| labels = - {{label|en|prefecture}} - {{label|de|Präfektur}} -| rdfs:domain = Department -| rdfs:range = PopulatedPlace -| rdfs:subPropertyOf = dul:isPartOf -}}OntologyProperty:Prefix2027227341072014-04-04T16:29:43Z{{DatatypeProperty -| labels = -{{label|en|prefix}} -{{label|de|Präfix}} -| rdfs:range = xsd:string -}}OntologyProperty:PremiereDate2023822133422011-06-06T10:12:08Z{{DatatypeProperty -| rdfs:label@en = premiere date -| rdfs:domain = Play -| rdfs:range = xsd:date -| rdfs:subPropertyOf = releaseDate -| rdfs:comment@en = Date the play was first performed. -}}OntologyProperty:PremierePlace2023824364192014-07-08T14:11:46Z -{{ObjectProperty -| rdfs:label@en = premiere place -| rdfs:domain = Play -| rdfs:range = owl:Thing -| rdfs:comment@en = The theatre and/or city the play was first performed in. -| rdfs:subPropertyOf = dul:coparticipatesWith -}}OntologyProperty:PremiereYear2023823133432011-06-06T10:13:39Z{{DatatypeProperty -| rdfs:label@en = premiere year -| rdfs:domain = Play -| rdfs:range = xsd:gYear -| rdfs:subPropertyOf = releaseYear -| rdfs:comment@en = Year the play was first performed. -}}OntologyProperty:PresentMunicipality2029125341082014-04-04T16:29:47Z{{ObjectProperty -| labels = -{{label|en|present municipality}} -{{label|de|aktuelle Gemeinde}} -{{label|nl|ligt nu in gemeente}} -| rdfs:domain = FormerMunicipality -| rdfs:range = Municipality -}}OntologyProperty:PresentName2029124341092014-04-04T16:29:52Z{{DatatypeProperty -| labels = -{{label|en|a municipality's present name}} -{{label|de|heutiger Name einer Gemeinde}} -{{label|nl|huidige gemeentenaam}} -| rdfs:domain = FormerMunicipality -| rdfs:range = xsd:string -}}OntologyProperty:Presenter2021313364202014-07-08T14:11:49Z -{{ObjectProperty -| labels = - {{label|en|presenter}} - {{label|de|Moderator}} - {{label|el|παρουσιαστής}} -| rdfs:domain = TelevisionShow -| rdfs:range = Person -| rdfs:subPropertyOf = dul:hasParticipant -}}OntologyProperty:President2021314524832017-10-16T07:28:45Z{{ObjectProperty -| labels = - {{label|en|president}} - {{label|de|Präsident}} - {{label|fr|président}} - {{label|nl|president}} - {{label|el|πρόεδρος}} - {{label|pt|presidente}} -| rdfs:domain = owl:Thing -| rdfs:range = Person -| rdfs:subPropertyOf = dul:sameSettingAs -}}OntologyProperty:PresidentGeneralCouncil2027025364222014-07-08T14:11:56Z -{{ObjectProperty -| labels = - {{label|en|president general council}} -| rdfs:domain = TermOfOffice -| rdfs:range = Person -| rdfs:subPropertyOf = dul:sameSettingAs -}}OntologyProperty:PresidentGeneralCouncilMandate2027026255192013-05-25T20:22:11Z{{DatatypeProperty -| labels = -{{label|en|mandate of the president of the general council}} -| rdfs:domain = Place -| rdfs:range = xsd:string -}}OntologyProperty:PresidentRegionalCouncil2027022364232014-07-08T14:11:59Z -{{ObjectProperty -| labels = - {{label|en|president regional council}} -| rdfs:domain = TermOfOffice -| rdfs:range = Person -| rdfs:subPropertyOf = dul:sameSettingAs -}}OntologyProperty:PresidentRegionalCouncilMandate2027023255162013-05-25T20:20:28Z{{DatatypeProperty -| labels = -{{label|en|mandate of the president council of the regional council}} -| rdfs:domain = Place -| rdfs:range = xsd:string -}}OntologyProperty:PreviousDemographics2027916341902014-04-04T16:36:02Z{{ObjectProperty -| labels = -{{label|en|previous demographics}} -{{label|de|frühere Demografie}} -| rdfs:domain = PopulatedPlace -| rdfs:range = Demographics -}}OntologyProperty:PreviousEditor2021315364242014-07-08T14:12:01Z -{{ObjectProperty -| rdfs:label@en = previous editor -| rdfs:label@el = πρώην συντάκτης -| rdfs:domain = Magazine -| rdfs:range = Person -| rdfs:subPropertyOf = dul:sameSettingAs -}}OntologyProperty:PreviousEntity2027181364252014-07-08T14:12:04Z -{{ObjectProperty -| labels = - {{label|en|previous entity}} -| rdfs:domain = Place -| rdfs:range = Place -| rdfs:subPropertyOf = dul:sameSettingAs -}}OntologyProperty:PreviousEvent2021316364262014-07-08T14:12:08Z -{{ObjectProperty -| labels = - {{label|en|previous event}} - {{label|de|Vorveranstaltung}} - {{label|nl|vorige evenement}} - {{label|pt|evento anterior}} -| rdfs:domain = Event -| rdfs:range = Event -| rdfs:subPropertyOf = dul:follows -}}OntologyProperty:PreviousInfrastructure2021317364272014-07-08T14:12:11Z -{{ObjectProperty -| labels = - {{label|en|previous infrastructure}} - {{label|de|vorherige Infrastruktur}} - {{label|nl|vorige infrastructuur}} -| rdfs:domain = Infrastructure -| rdfs:range = Infrastructure -| rdfs:subPropertyOf = dul:sameSettingAs -}}OntologyProperty:PreviousMission2021318364282014-07-08T14:12:14Z -{{ObjectProperty -| rdfs:label@en = previous mission -| rdfs:label@de = frührere Mission -| rdfs:domain = SpaceMission -| rdfs:range = SpaceMission -| rdfs:subPropertyOf = dul:follows -}}OntologyProperty:PreviousName2028147341162014-04-04T16:30:17Z{{DatatypeProperty -| labels = -{{label|en|previous name}} -{{label|de|früheren Namen}} -{{label|nl|vorige naam}} -| rdfs:domain = PopulatedPlace -| rdfs:range = xsd:string -}}OntologyProperty:PreviousPopulation2027911275692013-07-15T10:51:17Z{{ObjectProperty -| labels = -{{label|en|previous population}} -| rdfs:domain = PopulatedPlace -| rdfs:range = Population -}}OntologyProperty:PreviousPopulationTotal2026972254482013-05-25T14:45:37Z{{DatatypeProperty -| labels = -{{label|en|previous population total}} -| rdfs:domain = PopulatedPlace -| rdfs:range = xsd:nonNegativeInteger -}}OntologyProperty:PreviousWork2021319364292014-07-08T14:12:18Z -{{ObjectProperty -| labels = - {{label|en|previous work}} - {{label|de|früheren Arbeiten}} - {{label|nl|vorig werk}} - {{label|el|προηγούμενη δημιουργία}} -| rdfs:domain = Work -| rdfs:range = Work -| rdfs:subPropertyOf = dul:sameSettingAs -}}OntologyProperty:Price2023537483852015-06-16T14:00:12Z{{DatatypeProperty -| rdfs:label@en = price -| rdfs:comment@en = The price of something, eg a journal. For "total money earned by an Athlete" use gross -| rdfs:label@de = Preis -| rdfs:domain = owl:Thing -| rdfs:range = Currency -}}OntologyProperty:PrimaryFuelType2029589355152014-06-28T22:02:39Z{{ObjectProperty -|rdfs:label@en = primary fuel type -|rdfs:domain = PowerStation -}}OntologyProperty:Primate2026163207342012-12-23T13:00:09Z{{DatatypeProperty -| rdfs:label@en = Primite -| rdfs:domain = ChristianDoctrine -| rdfs:range = xsd:string -}}OntologyProperty:PrimeMinister2022342474442015-04-01T14:59:42Z{{ObjectProperty -| labels = - {{label|en|prime minister}} - {{label|nl|minister-president}} - {{label|de|Premierminister}} -| rdfs:range = Person -| rdfs:subPropertyOf = dul:sameSettingAs -| owl:equivalentProperty = wikidata:P6 -}}OntologyProperty:Primogenitor2029290326562014-03-13T16:20:03Z{{ObjectProperty -|labels = -{{label|en|primogenitor, first forebear}} -{{label|nl|stamvader}} -| rdfs:domain = Family -| rdfs:range = Person -}}OntologyProperty:Principal2021320433222015-02-06T13:31:19Z{{ObjectProperty -| rdfs:label@en = principal -| rdfs:label@bg = директор (на училище) -| rdfs:domain = EducationalInstitution -| rdfs:range = Person -| rdfs:comment@en = Principal of an educational institution (school) -| rdfs:comment@bg = Директор на училище -| rdfs:subPropertyOf = dul:sameSettingAs -}}OntologyProperty:PrincipalArea2022134364322014-07-08T14:12:26Z -{{ObjectProperty -| rdfs:label@en = principal area -| rdfs:label@de = Hauptbereich -| rdfs:domain = PopulatedPlace -| rdfs:range = PopulatedPlace -| rdfs:subPropertyOf = dul:isLocationOf -}}OntologyProperty:PrincipalEngineer2021321364332014-07-08T14:12:29Z -{{ObjectProperty -| rdfs:label@en = principal engineer -| rdfs:label@el = πρώτος_μηχανικός -| rdfs:domain = Canal -| rdfs:range = Person -| rdfs:subPropertyOf = dul:coparticipatesWith -}}OntologyProperty:ProTeam2027624268672013-07-03T07:59:37Z{{ObjectProperty -| labels = -{{label|en|pro team}} -| rdfs:range = SportsTeam -| rdfs:domain = Athlete, CareerStation -}}OntologyProperty:ProbowlPick2027687269592013-07-04T09:29:31Z{{DatatypeProperty -| labels = -{{label|en|pro bowl pick}} -| rdfs:domain = Athlete -| rdfs:range = xsd:string -}}OntologyProperty:Procedure2026600341192014-04-04T16:30:30Z{{DatatypeProperty -| labels = -{{label|en|procedure}} -{{label|de|Verfahren}} -{{label|nl|procedure}} -| comments = -{{comment|en|The name designating a formal collection of steps to be taken to complete the case }} -{{comment|nl|De naam die verwijst naar de formele definitie van een verzameling stappen die in de juiste volgorde leiden tot de afronding van de zaak}} -| rdfs:domain = Case -| rdfs:range = xsd:string -| rdf:type = -| rdfs:subPropertyOf = -| owl:equivalentProperty = -}}OntologyProperty:ProducedBy2027866341202014-04-04T16:30:33Z{{ObjectProperty -| rdfs:label@en = produced by -| rdfs:label@de = hergestellt durch -| rdfs:domain = Film -| rdfs:range = Company -}}OntologyProperty:Producer2021322525292017-10-19T08:21:39Z -{{ObjectProperty -| labels = - {{label|en|producer}} - {{label|nl|producent}} - {{label|de|Produzent}} - {{label|el|παραγωγός}} - {{label|pl|producent}} - {{label|ru|продюсер}} -| rdfs:comment@en = The producer of the creative work. -| rdfs:domain = Work -| rdfs:range = Agent -| owl:equivalentProperty = schema:producer -| rdfs:subPropertyOf = dul:coparticipatesWith -}}OntologyProperty:Produces2026763364352014-07-08T14:12:37Z -{{ObjectProperty -| rdfs:label@en = produces -| rdfs:label@de = produziert -| rdfs:domain = owl:Thing -| rdfs:range = owl:Thing -| rdfs:subPropertyOf = dul:coparticipatesWith -}}OntologyProperty:Product2021323515452016-10-19T06:54:38Z -{{ObjectProperty -| labels = - {{label|en|product}} - {{label|nl|product}} - {{label|de|Produkt}} - {{label|el|προϊόν}} -| rdfs:domain = Organisation -| rdfs:subPropertyOf = dul:coparticipatesWith -}}OntologyProperty:ProductShape20211448495362015-11-15T10:38:02Z{{DatatypeProperty -| labels = - {{label|en|product shape}} -| rdfs:domain = Food -| rdfs:range = xsd:string -| rdfs:subPropertyOf = dul:hasQuality -}}OntologyProperty:Production2021324341222014-04-04T16:30:41Z{{DatatypeProperty -| rdfs:label@en = production -| rdfs:label@de = Produktion -| rdfs:domain = Company -| rdfs:range = xsd:nonNegativeInteger -}}OntologyProperty:ProductionCompany2025146364372014-07-08T14:12:45Z -{{ObjectProperty -| labels = - {{label|en|production company}} - {{label|de|Produktionsfirma}} - {{label|nl|productiebedrijf}} -| rdfs:domain = Work -| rdfs:range = Company -| rdfs:comment@en = the company that produced the work e.g. Film, MusicalWork, Software -| rdfs:subPropertyOf = dul:coparticipatesWith -}}OntologyProperty:ProductionEndDate202132582222010-05-28T13:35:11Z{{DatatypeProperty -| rdfs:label@en = production end date -| rdfs:range = xsd:date -}}OntologyProperty:ProductionEndYear2021326221822013-01-10T21:01:55Z{{DatatypeProperty -| labels = -{{label|en|production end year}} -{{label|nl|productie eindjaar}} -| rdfs:range = xsd:gYear -}}OntologyProperty:ProductionStartDate2021327341242014-04-04T16:30:49Z{{DatatypeProperty -| rdfs:label@en = production start date -| rdfs:label@de = Produktionsbeginn -| rdfs:range = xsd:date -}}OntologyProperty:ProductionStartYear2021328221812013-01-10T21:01:12Z{{DatatypeProperty -| labels = -{{label|en|production start year}} -{{label|nl|productie beginjaar}} -| rdfs:range = xsd:gYear -}}OntologyProperty:ProductionYears2021329341252014-04-04T16:30:53Z{{DatatypeProperty -| rdfs:label@en = production years -| rdfs:label@de = Produktionsjahre -| rdfs:domain = Aircraft -| rdfs:range = xsd:date -}}OntologyProperty:Profession2021330537962020-10-26T23:47:31Z -{{ObjectProperty -| labels = - {{label|en|profession}} - {{label|de|Beruf}} - {{label|el|επάγγελμα}} - {{label|nl|beroep}} -| rdfs:domain = Person -| rdfs:subPropertyOf = dul:hasRole -| owl:equivalentProperty = gnd:academicDegree -}}OntologyProperty:ProgramCost202133182272010-05-28T13:35:55Z{{DatatypeProperty -| rdfs:label@en = program cost -| rdfs:domain = Aircraft -| rdfs:range = Currency -}}OntologyProperty:ProgrammeFormat2023084364392014-07-08T14:12:51Z -{{ObjectProperty -| rdfs:label@en = programme format -| rdfs:domain = Broadcaster -| rdfs:range = owl:Thing -| rdfs:comment@en = The programming format describes the overall content broadcast on a radio or television station. -| rdfs:subPropertyOf = dul:isClassifiedBy -}}OntologyProperty:ProgrammingLanguage2021332521062017-06-19T10:56:37Z -{{ObjectProperty -| rdfs:label@en = programming language -| rdfs:label@da = programmeringssprog -| rdfs:label@de = Programmiersprache -| rdfs:label@fr = langage de programmation -| rdfs:domain = Software -| rdfs:subPropertyOf = dul:isExpressedBy -}}OntologyProperty:Project2027543341282014-04-04T16:31:06Z{{ObjectProperty -| labels = -{{label|en|project}} -{{label|de|Projekt}} -| rdfs:domain = Person -| rdfs:range = Project -}}OntologyProperty:ProjectBudgetFunding2023049114122011-03-31T12:11:42Z{{DatatypeProperty -| rdfs:label@en = project budget funding -| rdfs:domain = ResearchProject -| rdfs:range = Currency -| rdfs:comment@en = The part of the project budget that is funded by the Organistaions given in the "FundedBy" property. -}}OntologyProperty:ProjectBudgetTotal2023048341292014-04-04T16:31:10Z{{DatatypeProperty -| rdfs:label@en = project budget total -| rdfs:label@de = Gesamtprojektbudget -| rdfs:domain = ResearchProject -| rdfs:range = Currency -| rdfs:comment@en = The total budget of the research project. -}}OntologyProperty:ProjectCoordinator2023046364412014-07-08T14:12:59Z -{{ObjectProperty -| rdfs:label@en = project coordinator -| rdfs:label@de = Projektkoordinator -| rdfs:domain = ResearchProject -| rdfs:range = Organisation -| rdfs:comment@en = The coordinating organisation of the project. -| rdfs:subPropertyOf = dul:isSettingFor -}}OntologyProperty:ProjectEndDate2023037341312014-04-04T16:31:18Z{{DatatypeProperty -| rdfs:label@en = project end date -| rdfs:label@de = Projektende -| rdfs:domain = Project -| rdfs:range = xsd:date -| rdfs:comment@en = The end date of the project. -}}OntologyProperty:ProjectKeyword2023041113832011-03-31T10:41:47Z{{DatatypeProperty -| rdfs:label@en = project keyword -| rdfs:domain = Project -| rdfs:range = xsd:string -| rdfs:comment@en = A key word of the project. -}}OntologyProperty:ProjectObjective2023039113802011-03-31T10:34:32Z{{DatatypeProperty -| rdfs:label@en = project objective -| rdfs:label@de = Projektziel -| rdfs:domain = Project -| rdfs:range = xsd:string -| rdfs:comment@en = A defined objective of the project. -}}OntologyProperty:ProjectParticipant2023047364422014-07-08T14:13:03Z -{{ObjectProperty -| rdfs:label@en = project participant -| rdfs:label@de = Projektteilnehmer -| rdfs:domain = ResearchProject -| rdfs:range = Organisation -| rdfs:comment@en = A participating organisation of the project. -| rdfs:subPropertyOf = dul:isSettingFor -}}OntologyProperty:ProjectReferenceID2023044113912011-03-31T10:53:31Z{{DatatypeProperty -| rdfs:label@en = project reference ID -| rdfs:domain = ResearchProject -| rdfs:range = xsd:string -| rdfs:comment@en = The reference identification of the project. -}}OntologyProperty:ProjectStartDate2023038341332014-04-04T16:31:28Z{{DatatypeProperty -| rdfs:label@en = project start date -| rdfs:label@de = Projektstart -| rdfs:domain = Project -| rdfs:range = xsd:date -| rdfs:comment@en = The start date of the project. -}}OntologyProperty:ProjectType2023043341342014-04-04T16:31:33Z{{DatatypeProperty -| rdfs:label@en = project type -| rdfs:label@de = Projekttyp -| rdfs:domain = ResearchProject -| rdfs:range = xsd:string -| rdfs:comment@en = 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. -}}OntologyProperty:Prominence2021333342712014-04-04T16:52:11Z{{DatatypeProperty -| rdfs:label@en = prominence -| rdfs:range = Length -}}OntologyProperty:Promotion2021334364432014-07-08T14:13:07Z -{{ObjectProperty -| rdfs:label@en = promotion -| rdfs:label@de = Förderung -| rdfs:domain = WrestlingEvent -| rdfs:subPropertyOf = dul:coparticipatesWith -}}OntologyProperty:Pronunciation2027112341382014-04-04T16:31:48Z{{DatatypeProperty -| labels = -{{label|en|pronunciation}} -{{label|de|Aussprache}} -| rdfs:range = xsd:string -}}OntologyProperty:ProspectLeague2021335270812013-07-05T13:06:02Z{{ObjectProperty -| rdfs:label@en = prospect league -| rdfs:domain = IceHockeyPlayer -| rdfs:range = SportsLeague -}}OntologyProperty:ProspectTeam2021336364442014-07-08T14:13:10Z -{{ObjectProperty -| rdfs:label@en = prospect team -| rdfs:domain = IceHockeyPlayer -| rdfs:range = HockeyTeam -| rdfs:subPropertyOf = dul:isMemberOf -}}OntologyProperty:ProtectionStatus2026262325062014-03-10T13:11:24Z{{DatatypeProperty -| labels = -{{label|en|monument protection status}} -{{label|nl|monumentStatus}} -| comments = -{{comment|en|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. }} -{{comment|nl|Aanduiding van het soort beschermingsregime. Bijv. 'rijksmonument' in Nederland of 'Monument Historique' in Belgie of Frankrijk}} -| rdfs:domain = Place -| rdfs:range = xsd:string -| rdf:type = -| rdfs:subPropertyOf = Status -| owl:equivalentProperty = -}}OntologyProperty:Protein20211303487612015-08-13T10:14:15Z{{DatatypeProperty -| labels = -{{label|en|protein}} -| rdfs:domain = Food -| rdfs:range = Mass -| comments = -{{comment|en|Amount of proteins per servingSize of a Food}} -}}OntologyProperty:ProtestantPercentage2027312260612013-06-14T11:47:52Z{{DatatypeProperty -| labels = -{{label|en|protestant percentage}} -| rdfs:domain = PopulatedPlace -| rdfs:range = xsd:string -}}OntologyProperty:ProvCode2027922276652013-07-15T14:48:21Z{{DatatypeProperty -| labels = -{{label|en|prove code}} -|rdfs:domain=Settlement -|rdfs:range=xsd:string -}}OntologyProperty:Provides2026802364452014-07-08T14:13:13Z -{{ObjectProperty -| rdfs:label@en = provides -| rdfs:label@de = bietet -| rdfs:domain = owl:Thing -| rdfs:range = owl:Thing -| rdfs:subPropertyOf = dul:hasCommonBoundary -}}OntologyProperty:Province2021337537032020-09-04T15:30:46Z -{{ObjectProperty -| labels = - {{label|en|province}} - {{label|de|Provinz}} - {{label|el|επαρχία}} - {{label|nl|provincie}} -| rdfs:domain = Place -| rdfs:range = Province -| owl:equivalentProperty = wikidata:P131, ceo:heeftProvincie -| rdfs:subPropertyOf = dul:isPartOf -}}OntologyProperty:ProvinceIsoCode2026882537042020-09-04T15:32:36Z{{DatatypeProperty -| labels = -{{label|en|iso code of a province}} -| rdfs:subPropertyOf = isoCode -| rdfs:domain = PopulatedPlace -| rdfs:range = xsd:string -| owl:equivalentProperty = ceo:provincieCode -}}OntologyProperty:ProvinceLink2027078364472014-07-08T14:13:20Z -{{ObjectProperty -| labels = - {{label|en|province link}} -| rdfs:domain = Place -| rdfs:range = Province -| rdfs:subPropertyOf = dul:isPartOf -}}OntologyProperty:Provost2021338364482014-07-08T14:13:23Z -{{ObjectProperty -| rdfs:label@en = provost -| rdfs:domain = University -| rdfs:range = Person -| rdfs:subPropertyOf = dul:sameSettingAs -}}OntologyProperty:Pseudonym2021339348082014-05-14T11:25:13Z{{DatatypeProperty -| labels = -{{label|en|pseudonym}} -{{label|nl|pseudoniem}} -{{label|de|Pseudonym}} -| rdfs:domain = Person -| rdfs:range = rdf:langString -}}OntologyProperty:Pubchem2021340388572014-12-08T21:47:57Z{{DatatypeProperty -| rdfs:label@en = PubChem -| rdfs:label@fr = PubChem -| rdfs:label@ja = PubChem -| rdfs:domain = ChemicalSubstance -| rdfs:range = xsd:string -}}OntologyProperty:Publication2027956537812020-10-20T16:29:13Z{{DatatypeProperty -| labels = -{{label|en|publication}} -{{label|de|Veröffentlichung}} -| rdfs:domain = Person -| rdfs:range = xsd:string -| owl:equivalentProperty = schema:publication, gnd:publication -}}OntologyProperty:PublicationDate2021342537532020-09-30T12:16:16Z{{DatatypeProperty -| labels = -{{label|en|publication date}} -{{label|de|Veröffentlichungsdatum}} -{{label|nl|publicatiedatum}} -| rdfs:range = xsd:date -| owl:equivalentProperty = dblp2:yearOfPublication -}}OntologyProperty:PubliclyAccessible2021341341432014-04-04T16:32:11Z{{DatatypeProperty -| rdfs:label@en = publicly accessible -| rdfs:label@de = öffentlich zugänglich -| rdfs:comment@en = describes in what way this site is accessible for public -| rdfs:range = xsd:string -}}OntologyProperty:Publisher2021343537552020-09-30T12:17:15Z{{ObjectProperty -| labels = - {{label|en|publisher}} - {{label|nl|uitgever}} - {{label|de|Herausgeber}} - {{label|el|εκδότης}} -| rdfs:comment@en=Publisher of a work. For literal (string) use dc:publisher; for object (URL) use publisher -| rdfs:domain = Work -| rdfs:range = Agent -| owl:equivalentProperty = schema:publisher, dblp2:publishedBy -| rdfs:subPropertyOf = dul:coparticipatesWith -}}OntologyProperty:PurchasingPowerParity2027353261962013-06-18T11:57:31Z{{DatatypeProperty -| labels = -{{label|en|purchasing power parity}} -| rdfs:domain = PopulatedPlace -| rdfs:range = xsd:string -}}OntologyProperty:PurchasingPowerParityRank2027354261982013-06-18T12:02:19Z{{DatatypeProperty -| labels = -{{label|en|purchasing power parity rank}} -| rdfs:domain = PopulatedPlace -| rdfs:range = xsd:string -}}OntologyProperty:PurchasingPowerParityYear2027355261992013-06-18T12:03:09Z{{DatatypeProperty -| labels = -{{label|en|purchasing power parity year}} -| rdfs:domain = PopulatedPlace -| rdfs:range = xsd:string -}}OntologyProperty:Purpose2021344341442014-04-04T16:32:14Z{{DatatypeProperty -| labels = -{{label|en|purpose}} -{{label|de|Zweck}} -{{label|nl|doel}} -{{label|fr|objectif}} -| rdfs:range = xsd:string -}}OntologyProperty:QatarClassic2028052282072013-09-03T18:50:05Z{{DatatypeProperty -| labels = -{{label|en|qatar classic}} -| rdfs:domain = Athlete -| rdfs:range = xsd:string -}}OntologyProperty:QuebecerTitle2027616268532013-07-02T13:37:07Z{{DatatypeProperty -| labels = -{{label|en|quebecer title}} -| rdfs:domain = Film -| rdfs:range = xsd:string -}}OntologyProperty:Quotation2026416341452014-04-04T16:32:19Z{{DatatypeProperty -| labels = -{{label|en|quotation}} -{{label|de|Zitat}} -{{label|fr|citation}} -{{label|es|cita}} -| comments = -{{comment|en|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.<ref>http://en.wikipedia.org/wiki/Quotation</ref>}} -{{comment|fr|Une citation est la reproduction d'un court extrait d'un propos ou d'un écrit antérieur dans la rédaction d'un texte ou dans une forme d'expression orale.<ref>http://fr.wikipedia.org/wiki/Citation_%28litt%C3%A9rature%29</ref>}} -{{comment|es|En su acepción más amplia, una cita es un recurso retórico que consiste en reproducir un fragmento de una expresión humana respetando su formulación original.<ref>http://es.wikipedia.org/wiki/Cita</ref>}} -| rdfs:domain = owl:Thing -| rdfs:range = xsd:string -}} - -== References == -<references/>OntologyProperty:Quote2027207342702014-04-04T16:51:36Z{{DatatypeProperty -| labels = -{{label|en|quote}} -| rdfs:domain = Place -| rdfs:range = xsd:string -}}OntologyProperty:Ra2026144462192015-03-18T11:04:22Z{{DatatypeProperty -| rdfs:label@en = ra -| rdfs:domain = Openswarm -| rdfs:range = xsd:string -}}OntologyProperty:Race2026168364502014-07-08T14:13:29Z -{{ObjectProperty -| labels = - {{label|en|race}} - {{label|de|Rennen}} -| rdfs:range = Race -| rdfs:subPropertyOf = dul:isParticipantIn -}}OntologyProperty:RaceHorse2026170526472017-11-03T16:23:20Z{{ObjectProperty -| labels = - {{label|en|race horse}} - {{label|de|Rennpferd}} -| rdfs:range = Horse -| rdfs:subPropertyOf = dul:coparticipatesWith -}}OntologyProperty:RaceLength2025335341492014-04-04T16:32:36Z{{ DatatypeProperty - - | rdfs:label@en = race length -| rdfs:label@de = Rennlänge - | rdfs:domain = FormulaOneRacing - | rdfs:range = Length -<!-- | rdf:type = owl:FunctionalProperty --> - -}}OntologyProperty:RaceResult20211626509692016-04-26T15:01:38Z{{ObjectProperty -| rdfs:label@en = race result -| rdfs:domain = Race -| rdfs:range = SportCompetitionResult -| rdfs:comment@en = Result of one racer in a sport competition -}}OntologyProperty:RaceTrack2025952364522014-07-08T14:13:35Z -{{ObjectProperty -| labels = - {{label|en|race track}} - {{label|de|Rennstrecke}} - {{label|fr|circuit}} -| rdfs:domain = SportsEvent -| rdfs:range = RaceTrack -| rdfs:subPropertyOf = dul:hasPart -}}OntologyProperty:RaceWins2027809341512014-04-04T16:32:45Z{{DatatypeProperty -| labels = -{{label|en|race wins}} -{{label|de|Siege}} -| rdfs:range = xsd:nonNegativeInteger -| rdfs:domain = Person -}}OntologyProperty:Races2021345341522014-04-04T16:32:50Z{{DatatypeProperty -| labels = -{{label|en|races}} -{{label|de|Rennen}} -{{label|el|αγώνας}} - -| rdfs:domain = FormulaOneRacer -| rdfs:range = xsd:nonNegativeInteger -}}OntologyProperty:RacketCatching2027708500812016-01-04T12:44:17Z{{DatatypeProperty -| labels = -{{label|en|racket catching}} -| rdfs:domain = TennisPlayer -| rdfs:range = xsd:string -}}OntologyProperty:Radio2027703341532014-04-04T16:32:54Z{{ObjectProperty -| labels = - {{label|en|radio}} -{{label|de|Radio}} - {{label|el|ραδιόφωνο}} -| comments = - {{comment|el|To ραδιόφωνο είναι η συσκευή που λειτουργεί ως "ραδιοδέκτης - μετατροπέας" όπου λαμβάνοντας τις ραδιοφωνικές εκπομπές των ραδιοφωνικών σταθμών τις μετατρέπει σε ήχο.}} -| rdfs:domain = Person -| rdfs:range = RadioStation -}}OntologyProperty:RadioStation20211145490952015-10-10T15:58:36Z{{DatatypeProperty -| labels = -{{label|en|radio station}} -{{label|nl|radiozender}} -| rdfs:domain = RadioStation -| rdfs:range = xsd:string -}}OntologyProperty:Radius ly2026152207162012-12-23T12:32:30Z{{DatatypeProperty -| rdfs:label@en = Radius_ly -| rdfs:domain = Globularswarm -| rdfs:range = xsd:integer -}}OntologyProperty:RailGauge2023593128042011-05-16T15:48:39Z{{DatatypeProperty -| rdfs:label@en = rail gauge -| rdfs:label@de = Spurweite Eisenbahn -| rdfs:domain = RouteOfTransportation -| rdfs:range = Length -| rdfs:comment@en = Track gauge or rail gauge is the distance between the inner sides of the heads of the two load bearing rails that make up a single railway line (http://en.wikipedia.org/wiki/Track_gauge). -}}OntologyProperty:RailwayLineUsingTunnel2023431364532014-07-08T14:13:39Z -{{ObjectProperty -| rdfs:label@en = railway line using tunnel -| rdfs:label@de = Tunnel benutzende Eisenbahnlinie -| rdfs:domain = RailwayTunnel -| rdfs:range = owl:Thing -| rdfs:comment@en = Railway line that is using the tunnel. -| rdfs:subPropertyOf = dul:coparticipatesWith -}}OntologyProperty:RailwayPlatforms2022122341542014-04-04T16:32:58Z{{DatatypeProperty -| labels = -{{label|en|railway platforms}} -{{label|de|Bahnsteige}} -{{label|nl|perrons}} -{{label|el|αποβάθρα}} -| rdfs:domain= Station -| rdfs:range = xsd:string -| rdfs:comment@en = Information on the type of platform(s) at the station. -}}OntologyProperty:RailwayRollingStock2023613364542014-07-08T14:13:42Z -{{ObjectProperty -| rdfs:label@en = railway rolling stock -| rdfs:label@de = Operierende Schienenfahrzeuge -| rdfs:domain = RouteOfTransportation -| rdfs:range = owl:Thing -| rdfs:comment@en = Types of rolling stock used on the rail line (http://en.wikipedia.org/wiki/Template:Infobox_rail_line). Stock of engins and vehicles that run on the railway (International Union of Railways - www.uic.org/IMG/doc/listealph_en.doc). -| rdfs:subPropertyOf = dul:coparticipatesWith -}}OntologyProperty:Range2021346526002017-10-31T10:39:10Z{{DatatypeProperty -| labels = -{{label|en|range}} -{{label|nl|bereik}} -| rdfs:domain = MeanOfTransportation -| rdfs:comment@en = Maximum distance without refueling -| rdfs:range = xsd:positiveInteger -}}OntologyProperty:Rank2026421486192015-08-06T12:39:55Z{{DatatypeProperty -| labels = -{{label|en|rank}} -{{label|de|Platzierung}} -| rdfs:comment@en = Rank of something among other things of the same kind, eg Constellations by Area; MusicalAlbums by popularity, etc -| rdfs:range = xsd:string -}}OntologyProperty:RankAgreement2027043255422013-05-25T22:56:05Z{{DatatypeProperty -| labels = -{{label|en|rank of an agreement}} -| rdfs:domain = Place -| rdfs:range = xsd:nonNegativeInteger -}}OntologyProperty:RankArea2027037255352013-05-25T22:50:19Z{{DatatypeProperty -| labels = -{{label|en|rank of an area}} -| rdfs:domain = PopulatedPlace -| rdfs:range = xsd:nonNegativeInteger -}}OntologyProperty:RankInFinalMedalCount2021347104192010-11-10T14:48:50Z{{DatatypeProperty -| rdfs:label@en = rank in final medal count -| rdfs:domain = OlympicResult -| rdfs:range = xsd:positiveInteger -}}OntologyProperty:RankPopulation2027041255402013-05-25T22:54:16Z{{DatatypeProperty -| labels = -{{label|en|rank of a population}} -| rdfs:domain = PopulatedPlace -| rdfs:range = xsd:nonNegativeInteger -}}OntologyProperty:Ranking2021348525912017-10-31T09:06:03Z{{DatatypeProperty -| rdfs:label@en = ranking -| rdfs:label@de = Rangliste -| rdfs:domain = Organisation -| rdfs:range = xsd:positiveInteger -}}OntologyProperty:RankingWins2023540126742011-05-07T13:48:35Z{{DatatypeProperty -| rdfs:label@en = ranking wins -| rdfs:label@de = Siege in Ranglistenturnieren -| rdfs:domain = SnookerPlayer -| rdfs:range = xsd:nonNegativeInteger -| rdfs:subPropertyOf = Wins -}}OntologyProperty:RankingsDoubles2025657341562014-04-04T16:33:07Z{{ DatatypeProperty - - | rdfs:label@en = doubles rankings -| rdfs:label@de = Doppelrangliste - | rdfs:domain = TennisPlayer - | rdfs:range = xsd:nonNegativeInteger - -}}OntologyProperty:RankingsSingles2025656341572014-04-04T16:33:12Z{{ DatatypeProperty - - | rdfs:label@en = single rankings -| rdfs:label@de = Einzelrangliste - | rdfs:domain = TennisPlayer - | rdfs:range = xsd:nonNegativeInteger -}}OntologyProperty:Rating2022527341582014-04-04T16:33:15Z{{DatatypeProperty -| labels = -{{label|en|rating}} -{{label|de|Wertung}} -{{label|nl|cijfer}} -| rdfs:domain = owl:Thing -| rdfs:range = xsd:float -}}OntologyProperty:Ratio2021349342692014-04-04T16:50:05Z{{DatatypeProperty -| rdfs:label@en = ratio -| rdfs:domain = School -| rdfs:range = xsd:string -}}OntologyProperty:Rdfs:seeAlso20210471397602015-02-04T10:09:22Z{{ObjectProperty -| labels = - {{label|en|is used to indicate a resource that might provide additional information about the subject resource}} -}}OntologyProperty:Rdfs:subClassOf20211208478222015-04-28T15:24:39Z{{ObjectProperty -| labels = - {{label|en|subclass of}} -}}OntologyProperty:RebuildDate2022549223462013-01-11T20:28:04Z{{DatatypeProperty -| labels = -{{label|en|rebuild date}} -{{label|nl|herbouw datum}} - |rdfs:range=xsd:date -}}OntologyProperty:Rebuilder2022550364552014-07-08T14:13:44Z -{{ObjectProperty -| rdfs:label@en = rebuilder -| rdfs:domain = MeanOfTransportation -| rdfs:subPropertyOf = dul:coparticipatesWith -}}OntologyProperty:RebuildingDate2021350123392011-04-20T15:56:16Z{{DatatypeProperty -| rdfs:label@en = rebuilding date -| rdfs:domain = ArchitecturalStructure -| rdfs:range = xsd:date -}}OntologyProperty:RebuildingYear2023385199402012-11-22T12:29:27Z{{DatatypeProperty -| labels = -{{label|en|rebuilding year}} -{{label|nl|herbouw jaar}} -| rdfs:domain = ArchitecturalStructure -| rdfs:range = xsd:gYear -}}OntologyProperty:RecentWinner2021351364562014-07-08T14:13:48Z -{{ObjectProperty -| rdfs:label@en = recent winner -| rdfs:label@de = letzter Gewinner -| rdfs:domain = Race -| rdfs:range = Person -| rdfs:subPropertyOf = dul:hasParticipant -}}OntologyProperty:RecommissioningDate2023106116512011-04-02T10:56:48Z{{DatatypeProperty -| rdfs:label@en=recommissioning date -| rdfs:domain = Ship -| rdfs:range = xsd:date -}}OntologyProperty:RecordDate2021352537052020-09-04T15:33:42Z{{DatatypeProperty -| labels = -{{label|en|record date}} -{{label|de|Stichtag}} -{{label|nl|opname datum}} -{{label|el|ηχογράφηση}} -| rdfs:domain = MusicalWork -| rdfs:range = xsd:date -| owl:equivalentProperty = ceo:registratiedatum -}}OntologyProperty:RecordLabel2021011364572014-07-08T14:14:04Z -{{ObjectProperty -| labels = - {{label|en|record label}} - {{label|es|compañía discográfica}} - {{label|fr|label discographique}} - {{label|nl|platenlabel}} - {{label|el|δισκογραφική}} -| rdfs:range = RecordLabel -| owl:equivalentProperty = wikidata:P264 -| rdfs:subPropertyOf = dul:coparticipatesWith -}}OntologyProperty:RecordedIn2021353364582014-07-08T14:14:07Z -{{ObjectProperty -| labels = - {{label|en|recorded in}} - {{label|nl|opgenomen in}} - {{label|el|ηχογράφηση}} - {{label|fr|enregistré à}} -| rdfs:domain = MusicalWork -| rdfs:range = PopulatedPlace -| rdfs:subPropertyOf = dul:coparticipatesWith -}}OntologyProperty:RecoveryCases20212300536122020-04-10T06:25:30Z{{DatatypeProperty -| labels = -{{label|en|Recovery Cases}} -| rdfs:comment@en = Number of recovered cases in a pandemic -| rdfs:domain = Outbreak -| rdfs:range = xsd:integer -}}OntologyProperty:Rector2021354364592014-07-08T14:14:10Z -{{ObjectProperty -| rdfs:label@en = rector -| rdfs:label@de = Rektor -| rdfs:domain = EducationalInstitution -| rdfs:range = Person -| rdfs:subPropertyOf = dul:sameSettingAs -}}OntologyProperty:RedListIdNL20210385392092015-01-12T20:58:20Z{{DatatypeProperty -| labels = -{{label|en|red list ID NL}} -{{label|nl|rode lijst ID NL}} -| rdfs:domain = Species -| rdfs:range = xsd:integer -| comments = -{{comment|en|red list code for treatened species NL (different from IUCN)}} -{{comment|nl|rode lijst ID van bedreigde soorten in Nederland}} -}}OntologyProperty:RedLongDistancePisteNumber2027201257512013-06-01T13:24:47Z{{DatatypeProperty -| labels = -{{label|en|red long distance piste number}} -| rdfs:domain = Place -| rdfs:range = xsd:nonNegativeInteger -}}OntologyProperty:RedSkiPisteNumber2027194257442013-06-01T13:21:26Z{{DatatypeProperty -| labels = -{{label|en|red ski piste number}} -| rdfs:domain = Place -| rdfs:range = xsd:nonNegativeInteger -}}OntologyProperty:Redline2021355104292010-11-10T14:54:43Z{{DatatypeProperty -| rdfs:label@en = redline -| rdfs:domain = AutomobileEngine -| rdfs:range = Speed -| rdf:type = owl:FunctionalProperty -}}OntologyProperty:Refcul2026986254692013-05-25T16:06:35Z{{DatatypeProperty -| labels = -{{label|en|reference for cultural data}} -| rdfs:range = xsd:string -| rdfs:domain = Place -}}OntologyProperty:Reference2027081490972015-10-10T16:05:30Z{{DatatypeProperty -| labels = -{{label|en|reference}} -{{label|de|Referenz}} -| rdfs:comment@en = Structured reference providing info about the subject -| rdfs:domain = Reference -| rdfs:range = xsd:string -}}OntologyProperty:ReffBourgmestre2027897274222013-07-12T10:13:28Z{{ObjectProperty -| labels = -{{label|en|referent bourgmestre}} -| rdfs:domain = Settlement -| rdfs:range = Person -}}OntologyProperty:Refgen2026985341642014-04-04T16:33:42Z{{DatatypeProperty -| labels = -{{label|en|reference for general data}} -{{label|de|Referenz für allgemeine Daten}} -| rdfs:range = xsd:string -| rdfs:domain = Place -}}OntologyProperty:Refgeo2026987479052015-05-13T11:22:06Z{{DatatypeProperty -| labels = -{{label|en|reference for geographic data}} -{{label|de|Referenz für geographische Daten}} -{{label|nl|geometrie}} -| rdfs:range = xsd:string -| rdfs:domain = Place -}}OntologyProperty:Refpol2026988341662014-04-04T16:33:52Z{{DatatypeProperty -| labels = -{{label|en|reference for politic data}} -{{label|de|Referenz für politische Daten}} -| rdfs:range = xsd:string -| rdfs:domain = Place -}}OntologyProperty:Refseq202135682432010-05-28T13:37:59Z{{DatatypeProperty -| rdfs:label@en = RefSeq -| rdfs:domain = Protein -| rdfs:range = xsd:string -}}OntologyProperty:Refseqmrna2025031191332012-07-31T11:19:25Z{{DatatypeProperty -| rdfs:label@en = refseq mRNA -| rdfs:label@ja = refseq mRNA -| rdfs:domain = Biomolecule -| rdfs:range = xsd:string -}}OntologyProperty:Refseqprotein2025032191342012-07-31T11:19:52Z{{DatatypeProperty -| rdfs:label@en = refseq protein -| rdfs:label@ja = refseq protein -| rdfs:domain = Biomolecule -| rdfs:range = xsd:string -}}OntologyProperty:Regency2026791364602014-07-08T14:14:13Z -{{ObjectProperty -| labels = - {{label|en|regency }} - {{label|de|Regentschaft}} - {{label|id|kabupaten }} -| comments = - -| rdfs:domain = Place -| rdfs:range = PopulatedPlace -| rdfs:subPropertyOf = dul:sameSettingAs -}}OntologyProperty:RegentOf20211286487172015-08-10T11:25:44Z{{ObjectProperty -| labels = - {{label|en|regent of}} -| rdfs:comment@en = Subject has served as the regent of another monarch -| rdfs:domain = Monarch -| rdfs:range = Monarch -}}OntologyProperty:Regime2021357342682014-04-04T16:49:17Z{{DatatypeProperty -| rdfs:label@en = regime -| rdfs:domain = Spacecraft -| rdfs:range = xsd:string -}}OntologyProperty:Region2021358364612014-07-08T14:14:16Z -{{ObjectProperty -| labels = - {{label|en|region}} - {{label|de|Region}} - {{label|nl|regio}} - {{label|el|περιοχή}} - {{label|pl|region}} -| rdfs:comment@en = The regin where the thing is located or is connected to. -| rdfs:domain = owl:Thing -| rdfs:range = Place -| rdfs:subPropertyOf = dul:hasLocation -}}OntologyProperty:RegionLink2027109256392013-05-26T14:16:44Z{{DatatypeProperty -| labels = -{{label|en|region link}} -| rdfs:domain = Place -| rdfs:range = xsd:string -}}OntologyProperty:RegionServed2021361364622014-07-08T14:14:18Z -{{ObjectProperty -| labels = - {{label|en|region served}} - {{label|nl|werkgebied}} -| rdfs:domain = Organisation -| rdfs:range = Place -| rdfs:subPropertyOf = dul:coparticipatesWith -}}OntologyProperty:RegionType2021362221982013-01-10T21:16:42Z{{DatatypeProperty -| labels = -{{label|en|region type}} -{{label|nl|regio-type}} -| rdfs:domain = Place -| rdfs:range = xsd:string -}}OntologyProperty:RegionalCouncil2027021341712014-04-04T16:34:21Z{{ObjectProperty -| labels = -{{label|en|regional council}} -{{label|de|Gemeinderat}} -| rdfs:domain = Agent -| rdfs:range = TermOfOffice -}}OntologyProperty:RegionalLanguage2021360364632014-07-08T14:14:22Z -{{ObjectProperty -| rdfs:label@en = regional language -| rdfs:label@de = Regionalsprache -| rdfs:domain = PopulatedPlace -| rdfs:range = Language -| rdfs:subPropertyOf = dul:isLocationOf -}}OntologyProperty:RegionalPrefecture2027137341732014-04-04T16:34:31Z{{DatatypeProperty -| labels = -{{label|en|regional prefecture}} -{{label|de|regionale Präfektur}} -| rdfs:domain = Place -| rdfs:range = xsd:string -}}OntologyProperty:Registration2021363341742014-04-04T16:34:37Z{{DatatypeProperty -| rdfs:label@en = registration -| rdfs:label@de = Anmeldung -| rdfs:domain = Company -| rdfs:range = xsd:string -}}OntologyProperty:Registry2026535525612017-10-26T13:16:08Z{{DatatypeProperty -| labels = -{{label|en|registry}} -{{label|de|Register}} -{{label|fr|registre}} -| comments = -{{comment|en|A registry recording entires with associated codes. }} -{{comment|de|Ein Register welches Einträge mit Kennungen versieht. }} -| rdfs:range = xsd:string -| owl:equivalentProperty = -}}OntologyProperty:RegistryNumber2028410537562020-09-30T13:09:26Z{{ DatatypeProperty - | rdfs:comment@en = Identification of the registry a document is in - | rdfs:label@en = registry number - | rdfs:label@de = Registrierungsnummer - | rdfs:label@nl = registernummer - | rdfs:domain = Document - | rdfs:range = xsd:string -|owl:equivalentProperty=ceo:kennisregistratienummer -}}OntologyProperty:Reign2027638268842013-07-03T09:08:22Z{{DatatypeProperty -| labels = -{{label|en|reign}} -| rdfs:domain = Person -| rdfs:range = xsd:string -}}OntologyProperty:ReignName2028086282512013-09-04T10:23:47Z{{DatatypeProperty -| labels = -{{label|en|reign name}} -| rdfs:domain = Person -| rdfs:range = xsd:string -}}OntologyProperty:ReigningPope20211362492142015-10-14T20:19:16Z{{ObjectProperty -|labels = - {{label|en|reigning pope}} - {{label|nl|regerende paus}} -| rdfs:domain = Cleric <!-- Cardinal , Priest--> -| rdfs:range = Pope -}}OntologyProperty:Related2021364537062020-09-04T15:35:43Z{{ObjectProperty -| labels = - {{label|en|related}} - {{label|de|verbunden}} - {{label|nl|gerelateerd}} -| rdfs:subPropertyOf = dul:associatedWith -| owl:equivalentProperty = schema:isRelatedTo, ceo:heeftBetrekkingOp -}}OntologyProperty:RelatedFunctions2026454364652014-07-08T14:14:29Z -{{ObjectProperty -| labels = - {{label|en|related functions}} - {{label|nl|soortgelijke functies}} -| comments = - {{comment|en|This property is to accommodate the list field that contains a list of related personFunctions a person holds or has held }} - {{comment|nl|Deze property is voor de lijst van persoonfuncties die een persoon (bv. een politicus) bekleedt of heeft bekleed}} -| rdfs:domain = Person -| rdfs:range = List -| rdf:type = | rdfs:subPropertyOf = -| owl:equivalentProperty = -| rdfs:subPropertyOf = dul:unifies -}}OntologyProperty:RelatedMeanOfTransportation2021365364662014-07-08T14:14:32Z -{{ObjectProperty -| rdfs:label@en = related mean of transportation -| rdfs:domain = MeanOfTransportation -| rdfs:range = MeanOfTransportation -| rdfs:subPropertyOf = dul:sameSettingAs -}}OntologyProperty:RelatedPlaces2026327364672014-07-08T14:14:35Z -{{ObjectProperty -| labels = - {{label|en|related places}} - {{label|nl|soortgelijke plaatsen}} -| comments = - {{comment|en|This property is to accommodate the list field that contains a list of, e.g., monuments in the same town }} - {{comment|nl|Deze property is voor de lijst van monumenten die horen bij het monument van de infobox}} -| rdfs:domain = Place -| rdfs:range = List -| rdf:type = | rdfs:subPropertyOf = -| owl:equivalentProperty = -| rdfs:subPropertyOf = dul:unifies -}}OntologyProperty:Relation2021366364682014-07-08T14:14:39Z -{{ObjectProperty -| labels = - {{label|en|relation}} - {{label|de|Beziehung}} - {{label|el|σχέση}} - {{label|nl|relatie}} -| rdfs:domain = Person -| rdfs:range = Person -| rdfs:subPropertyOf = dul:sameSettingAs -}}OntologyProperty:Relative2021367490462015-10-08T15:38:14Z{{ObjectProperty -| rdfs:label@en = relative -| rdfs:label@el = συγγενής -| rdfs:label@de = Verwandter -| rdfs:label@gl = parente -| rdfs:label@ja = 親戚 -| rdfs:domain = Person -| rdfs:range = Person -| owl:equivalentProperty = schema:relatedTo -| rdfs:subPropertyOf = dul:sameSettingAs -}}OntologyProperty:RelativeAtomicMass20211018453172015-02-13T17:39:52Z{{DatatypeProperty -| labels = -{{label|en|atomic weight}} -{{label|ga|Mais adamhach choibhneasta}} -| comments = -{{comment|en|the ratio of the average mass of atoms of an element (from a single given sample or source) to 1⁄12 of the mass of an atom of carbon-12<ref>https://en.wikipedia.org/wiki/Relative_atomic_mass</ref>}} -{{comment|ga|Maiseanna adamh, a chuirtear síos i dtéarmaí aonaid maise adamhaí u.<ref>https://ga.wikipedia.org/wiki/Mais_adamhach_choibhneasta</ref>}} -| rdfs:domain = ChemicalElement -| rdfs:range = xsd:nonNegativeInteger -}} - -<references/>OntologyProperty:ReleaseDate2021368523742017-10-10T14:48:20Z{{DatatypeProperty -| labels = -{{label|en|release date}} -{{label|da|udgivet}} -{{label|nl|release datum}} -{{label|el|ημερομηνία κυκλοφορίας}} -{{label|pl|data wydania}} -| rdfs:comment@en = Release date of a Work or another product (eg Aircraft or other MeansOfTransportation -| rdfs:range = xsd:date -| owl:equivalentProperty = wikidata:P577 -}}OntologyProperty:ReleaseLocation20211038453932015-02-18T16:26:07Z{{ObjectProperty -| labels = -{{label|en|release location}} -| rdfs:domain = Work -| rdfs:range = Place -| rdfs:comment@en = Usually used with releaseDate, particularly for Films. Often there can be several pairs so our modeling is not precise here... -}}OntologyProperty:Relics20211237478432015-05-04T16:37:50Z{{DatatypeProperty -| rdfs:label@en = relics -| rdfs:label@bg = реликви -| rdfs:domain = ReligiousBuilding -| rdfs:range = xsd:string -| rdfs:comment@en = Physical remains or personal effects of a saint or venerated person, preserved in a religious building -}}OntologyProperty:Relief2027145256842013-05-26T16:09:08Z{{DatatypeProperty -| labels = -{{label|en|relief}} -| rdfs:domain = Place -| rdfs:range = xsd:string -}}OntologyProperty:Religion2021369364702014-07-08T14:14:45Z -{{ObjectProperty -| labels = - {{label|en|religion}} - {{label|de|Religion}} - {{label|el|θρησκεία}} - {{label|nl|religie}} - {{label|fr|religion}} - {{label|pt|religião}} - {{label|ja|宗教}} -| owl:equivalentProperty = wikidata:P140 -| rdfs:subPropertyOf = dul:conceptualizes -}}OntologyProperty:ReligiousHead2023116525922017-10-31T09:09:15Z -{{ObjectProperty -| rdfs:label@en = religious head -| rdfs:range = Person -| rdfs:subPropertyOf = dul:hasMember -}}OntologyProperty:ReligiousHeadLabel2023115364722014-07-08T14:14:53Z -{{ObjectProperty -| rdfs:label@en = religious head label -| rdfs:domain = School -| rdfs:subPropertyOf = dul:sameSettingAs -}}OntologyProperty:ReligiousOrder2026031364732014-07-08T14:14:56Z -{{ObjectProperty -| labels = - {{label|en|religious order}} - {{label|nl|religieuze orde}} -| rdfs:domain = Monastry -| rdfs:range = ClericalOrder -| rdfs:subPropertyOf = dul:sameSettingAs -}}OntologyProperty:Reopened2021370525932017-10-31T09:10:25Z{{DatatypeProperty -| rdfs:label@en = reopened -| rdfs:label@de = wieder eröffnet -| rdfs:range = xsd:date -}}OntologyProperty:ReopeningDate2023836341802014-04-04T16:35:12Z{{DatatypeProperty -| rdfs:label@en = reopening date -| rdfs:label@de = Wiedereröffnungdatum -| rdfs:domain = ArchitecturalStructure -| rdfs:range = xsd:date -| rdfs:comment@en = Date of reopening the architectural structure. -}}OntologyProperty:ReopeningYear2023837222672013-01-11T00:17:24Z{{DatatypeProperty -| labels = -{{label|en|reopening year}} -{{label|nl|heropening jaar}} -| rdfs:domain = ArchitecturalStructure -| rdfs:range = xsd:gYear -| rdfs:comment@en = Year of reopening the architectural structure. -}}OntologyProperty:ReportingMark2023705130652011-05-19T13:11:08Z{{DatatypeProperty -| rdfs:label@en = reporting mark -| rdfs:domain = PublicTransitSystem -| rdfs:range = xsd:string -| rdfs:comment@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. -}}OntologyProperty:Representative2027044341812014-04-04T16:35:16Z{{DatatypeProperty -| labels = -{{label|en|number of representatives}} -{{label|de|Zahl der Vertreter}} -| rdfs:domain = Place -| rdfs:range = xsd:nonNegativeInteger -}}OntologyProperty:Requirement2022128341822014-04-04T16:35:21Z{{DatatypeProperty -| rdfs:label@en = requirement -| rdfs:label@de = Anforderung -| rdfs:range = xsd:string -}}OntologyProperty:Reservations2022529341832014-04-04T16:35:25Z{{DatatypeProperty -| rdfs:label@en = reservations -| rdfs:label@de = Reservierungen -| rdfs:comment@en = Are reservations required for the establishment or event? -| rdfs:domain = Restaurant -| rdfs:range = xsd:boolean -}}OntologyProperty:Residence2021371364742014-07-08T14:15:00Z -{{ObjectProperty -| labels = - {{label|en|residence}} - {{label|de|Residenz}} - {{label|nl|verblijfplaats}} - {{label|el|κατοικία}} - {{label|ja|居住地}} - {{label|pl|miejsce zamieszkania}} -| rdfs:comment@en = Place of residence of a person. -| rdfs:domain = Person -| rdfs:range = Place -| owl:equivalentProperty = wikidata:P263 -| rdfs:subPropertyOf = dul:hasLocation -}}OntologyProperty:Resolution2022124364752014-07-08T14:15:14Z -{{ObjectProperty -| labels = - {{label|en|resolution}} - {{label|de|Auflösung}} - {{label|el|ανάλυση}} - {{label|fr|résolution}} -| rdfs:domain = Software -| rdfs:comment@en = Native Resolution -| rdfs:subPropertyOf = dul:hasQuality -}}OntologyProperty:RestingDate2027978528372018-02-08T20:23:04Z{{DatatypeProperty -| labels = - {{label|en|resting date}} - {{label|de|Bestattungsdatum}} - {{label|ja|埋葬年月日}} -| rdfs:domain = Person -| rdfs:range = xsd:date -| rdf:type = owl:FunctionalProperty -| owl:equivalentProperty = -}}OntologyProperty:RestingPlace2021373364762014-07-08T14:15:18Z -{{ObjectProperty -| rdfs:label@en = resting place -| rdfs:label@de = Ruhestätte -| rdfs:label@ja = 埋葬地 -| rdfs:domain = Person -| rdfs:range = Place -| rdfs:subPropertyOf = dul:hasLocation -}}OntologyProperty:RestingPlacePosition2021374364772014-07-08T14:15:20Z -{{ObjectProperty -| rdfs:label@en = resting place position -| rdfs:domain = Person -| rdfs:range = geo:SpatialThing -| rdfs:subPropertyOf = dul:hasLocation -}}OntologyProperty:RestoreDate2022551113312011-03-30T15:23:30Z{{DatatypeProperty -|rdfs:label@en=restore date -| rdfs:label@el = ημερομηνία ανακαίνισης -|rdfs:range=xsd:date -}}OntologyProperty:Restriction20211972525592017-10-26T10:44:38Z{{DatatypeProperty -| rdfs:label@en = restriction -| rdfs:label@de = Beschränkung -| rdfs:comment@en = The use of a thing is restricted in a way. -| rdfs:comment@de = Die Verwendung von etwas ist beschränkt. -| rdfs:domain = owl:Thing -| rdfs:range = xsd:string -}}OntologyProperty:Result2021375342732014-04-04T17:08:38Z{{DatatypeProperty -| labels = -{{label|en|result}} -{{label|de|Folge}} -{{label|el|αποτέλεσμα}} - -| rdfs:domain = MilitaryConflict -| rdfs:range = xsd:string -}}OntologyProperty:RetentionTime2027098256222013-05-26T13:36:52Z{{DatatypeProperty -| labels = -{{label|en|relation time}} -| rdfs:domain = Place -| rdfs:range = xsd:string -}}OntologyProperty:Retired2021376217492013-01-03T17:33:58Z{{DatatypeProperty -| rdfs:label@en = retired -| rdfs:label@el = συνταξιούχος -| rdfs:range = xsd:date -}}OntologyProperty:RetiredRocket2021378364782014-07-08T14:15:23Z -{{ObjectProperty -| rdfs:label@en = retired rocket -| rdfs:domain = YearInSpaceflight -| rdfs:range = Rocket -| rdfs:subPropertyOf = dul:isSettingFor -}}OntologyProperty:RetirementDate2025640224122013-01-11T22:28:02Z{{ DatatypeProperty -| labels = -{{label|en|retirement date}} -{{label|nl|pensioendatum}} -| rdfs:domain = Person -| rdfs:range = xsd:date -| rdf:type = owl:FunctionalProperty -}}OntologyProperty:Revenue2021379538072020-12-01T18:01:57Z{{DatatypeProperty -| labels = - {{label|en|revenue}} -{{label|de|Einnahmen}} - {{label|el|έσοδα}} - {{label|fr|chiffre d'affaire}} -| rdfs:domain = Organisation -| rdfs:range = Currency -| owl:equivalentProperty = wikidata:P2139 -}}OntologyProperty:RevenueYear20212331536542020-07-27T08:48:15Z{{DatatypeProperty -| labels = -{{label|en|year of reported revenue}} -| rdfs:domain = Organization -| rdfs:range = xsd:gYear -}}OntologyProperty:Review2021380341892014-04-04T16:36:00Z{{DatatypeProperty -| rdfs:label@en = review -| rdfs:label@de = Rezension -| rdfs:domain = Album -| rdfs:range = xsd:anyURI -}}OntologyProperty:RgbCoordinateBlue2022371104482010-11-10T15:01:49Z{{DatatypeProperty -| rdfs:label@en = bluecoordinate in the RGB space -| rdfs:domain = Colour -| rdfs:range = xsd:nonNegativeInteger -}}OntologyProperty:RgbCoordinateGreen2022372104492010-11-10T15:01:57Z{{DatatypeProperty -| rdfs:label@en = green coordinate in the RGB space -| rdfs:domain = Colour -| rdfs:range = xsd:nonNegativeInteger -}}OntologyProperty:RgbCoordinateRed2022370104472010-11-10T15:01:31Z{{DatatypeProperty -| rdfs:label@en = red coordinate in the RGB space -| rdfs:domain = Colour -| rdfs:range = xsd:nonNegativeInteger -}}OntologyProperty:RidId2028425528842018-02-13T10:56:11Z{{DatatypeProperty -| labels = -{{label|en|RID Id}} -| comments = -{{comment|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.}} -| rdfs:range = xsd:string -| rdfs:subPropertyOf = code -}}OntologyProperty:RightAscension2025343491532015-10-13T11:07:58Z{{ DatatypeProperty - - | rdfs:label@en = right ascension - | rdfs:domain = CelestialBody - | rdfs:range = xsd:nonNegativeInteger - -}}OntologyProperty:RightChild2021383364792014-07-08T14:15:26Z -{{ObjectProperty -| rdfs:label@en = right child -| rdfs:domain = Island -| rdfs:range = Island -| rdfs:subPropertyOf = dul:hasCommonBoundary -}}OntologyProperty:RightTributary2021384364802014-07-08T14:15:30Z -{{ObjectProperty -| rdfs:label@en = right tributary -| rdfs:label@de = rechter Nebenfluss -| rdfs:label@el = δεξιοί_παραπόταμοι -| rdfs:domain = River -| rdfs:range = River -| rdfs:subPropertyOf = dul:hasCommonBoundary -}}OntologyProperty:Rival20211975525952017-10-31T09:11:26Z#REDIRECT [[OntologyProperty:RivalSchool]]OntologyProperty:RivalSchool2021385525942017-10-31T09:11:26Z -{{ObjectProperty -| rdfs:label@en = rival -| rdfs:label@de = Rivale -| rdfs:domain = School -| rdfs:range = School -| rdfs:subPropertyOf = dul:coparticipatesWith -}}OntologyProperty:River2021386364822014-07-08T14:15:36Z -{{ObjectProperty -| labels = - {{label|en|river}} - {{label|de|Fluss}} - {{label|el|ποτάμι}} - {{label|fr|rivière}} -| rdfs:domain = Place -| rdfs:range = River -| rdfs:subPropertyOf = dul:nearTo -}}OntologyProperty:RiverBranch202620364832014-07-08T14:15:40Z -{{ObjectProperty -| labels = - {{label|en|branch}} - {{label|nl|riviertak}} - {{label|el|διακλαδώσεις}} -| rdfs:domain = River -| rdfs:range = River -| rdfs:subPropertyOf = dul:hasCommonBoundary -}}OntologyProperty:RiverBranchOf202622364842014-07-08T14:15:43Z -{{ObjectProperty -| rdfs:label@en = branch of -| rdfs:label@el = διακλάδωση_του -| rdfs:domain = River -| rdfs:range = River -| rdfs:subPropertyOf = dul:hasCommonBoundary -}}OntologyProperty:RiverMouth2021147364852014-07-08T14:15:47Z -{{ObjectProperty -| labels = - {{label|en|river mouth}} - {{label|de|Flussmündung}} - {{label|nl|riviermonding}} - {{label|el|εκβολές}} -| rdfs:domain = River -| rdfs:range = BodyOfWater -| rdfs:subPropertyOf = dul:hasCommonBoundary -}}OntologyProperty:RkdArtistsId20211041528852018-02-13T10:57:26Z{{DatatypeProperty -| labels = -{{label|en|RKDartists id}} -| comments = -{{comment|en|Rijksbureau voor Kunsthistorische Documentatie (RKD) artists database id. -http://rkd.nl/explore/artists/$1}} -| rdfs:domain = owl:Thing -| rdfs:range = xsd:string -| owl:equivalentProperty = wikidata:P650 -| rdfs:subPropertyOf = code -}}OntologyProperty:Road20211138461702015-03-18T08:26:22Z{{ObjectProperty -| labels = - {{label|en|road}} - {{label|nl|weg}} -| rdfs:domain = Infrastructure -| rdfs:range = Road -}}OntologyProperty:Rocket2021387364862014-07-08T14:15:51Z -{{ObjectProperty -| rdfs:label@en = rocket -| rdfs:label@de = Rakete -| rdfs:label@fr = fusée -| rdfs:label@el = ρουκέτα -| rdfs:domain = Spacecraft -| rdfs:range = Rocket -| rdfs:subPropertyOf = dul:coparticipatesWith -}}OntologyProperty:RocketFunction2021684364872014-07-08T14:15:54Z -{{ObjectProperty -| rdfs:label@en = rocket function -| rdfs:domain = Rocket -| rdfs:comment@en = purpose of the rocket -| rdfs:subPropertyOf = dul:isClassifiedBy -}}OntologyProperty:RocketStages2021462341982014-04-04T16:36:37Z{{DatatypeProperty -| rdfs:label@en = number of rocket stages -| rdfs:label@de = Anzahl von Raketenstufen -| rdfs:comment@en = number of stages, not including boosters -| rdfs:domain = Rocket -| rdfs:range = xsd:nonNegativeInteger -}}OntologyProperty:RolandGarrosDouble2027723500702016-01-04T12:32:27Z{{DatatypeProperty -| labels = -{{label|en|roland garros double}} -| rdfs:domain = TennisPlayer -| rdfs:range = xsd:string -}}OntologyProperty:RolandGarrosMixed2027727500712016-01-04T12:33:02Z{{DatatypeProperty -| labels = -{{label|en|roland garros mixed}} -| rdfs:domain = TennisPlayer -| rdfs:range = xsd:string -}}OntologyProperty:RolandGarrosSingle2027719500722016-01-04T12:33:38Z{{DatatypeProperty -| labels = -{{label|en|roland garros single}} -| rdfs:domain = TennisPlayer -| rdfs:range = xsd:string -}}OntologyProperty:Role2021388537072020-09-04T15:36:28Z{{DatatypeProperty -| rdfs:label@en = role -| rdfs:label@de = Rolle -| rdfs:label@el = ρόλος -| rdfs:label@fr = rôle -| rdfs:range = xsd:string -| owl:equivalentProperty = schema:role, ceo:rol -}}OntologyProperty:RoleInEvent20210105375852014-08-07T09:29:39Z{{ObjectProperty -| rdfs:label@en = A Person's role in an event -| rdfs:label@nl = Rol van een persoon in een gebeurtenis -| rdfs:label@fr = rôle d'une personne dans un événement -| rdfs:domain = Agent -| rdfs:range = Event -}}OntologyProperty:RoofHeight2026431234782013-01-22T13:34:31Z{{DatatypeProperty -| labels = -{{label|en|roof height}} -{{label|de|Höhe Dach}} -| rdfs:domain = Skyscraper -| rdfs:range = xsd:nonNegativeInteger -}}OntologyProperty:RotationPeriod2024361146812011-07-29T15:36:01Z{{DatatypeProperty - |rdfs:label@en=rotation period - |rdfs:domain=Planet - |rdfs:range=Time -}}OntologyProperty:Route2027110342002014-04-04T16:36:46Z{{DatatypeProperty -| labels = -{{label|en|route}} -{{label|de|Route}} -| rdfs:domain = Place -| rdfs:range = xsd:string -}}OntologyProperty:RouteActivity20211079455682015-03-08T12:55:34Z{{ObjectProperty -| rdfs:label@en = route activity -| rdfs:label@fr = activité de route -| rdfs:domain = RouteStop -| rdfs:comment@en = details of the activity for a road. -| rdfs:comment@fr = détail de l'activité sur une route. -}}OntologyProperty:RouteDirection2023337122202011-04-15T13:26:23Z{{DatatypeProperty -| rdfs:label@en = route direction -| rdfs:label@de = Himmelsrichtung des Verkehrsweges -| rdfs:domain = RouteOfTransportation -| rdfs:range = xsd:string -| rdfs:comment@en = The general direction of the route (eg. North-South). -| rdfs:comment@de = Himmelsrichtung des Verkehrsweges (z.B. North-South). -}}OntologyProperty:RouteEnd2023334522532017-10-08T09:42:42Z -{{ObjectProperty -| rdfs:label@en = route end -| rdfs:label@de = Wegende -| rdfs:domain = RouteOfTransportation -| rdfs:range = Station -| rdfs:comment@en = End of the route. This is where the route ends and, for U.S. roads, is either at the northern terminus or eastern terminus. -| rdfs:comment@de = Ende des Verkehrswegs. -| rdfs:subPropertyOf = dul:hasCommonBoundary -}}OntologyProperty:RouteEndDirection2023335122182011-04-15T13:17:42Zhttp://mappings.dbpedia.org/index.php/OntologyProperty:routeEndDirection -{{DatatypeProperty -| rdfs:label@en = road end direction -| rdfs:label@de = Himmelsrichtung des Wegendes -| rdfs:domain = RouteOfTransportation -| rdfs:range = xsd:string -| rdfs:comment@en = End of the route. The opposite of OntologyProperty:routeStartDirection. -| rdfs:comment@de = Himmelsrichtung des Endes des Verkehrsweges. Der Gegensatz zur OntologyProperty:routeStartDirection. -}}OntologyProperty:RouteEndLocation2023393364892014-07-08T14:16:00Z -{{ObjectProperty -| rdfs:label@en = route end location -| rdfs:label@de = Ort des Wegendes -| rdfs:domain = RouteOfTransportation -| rdfs:range = Place -| rdfs:comment@en = The end location of the route. -| rdfs:comment@de = End-Ort des Verkehrswegs. -| rdfs:subPropertyOf = dul:hasCommonBoundary -}}OntologyProperty:RouteJunction2023319522542017-10-08T09:43:08Z -{{ObjectProperty -| rdfs:label@en = route junction -| rdfs:label@de = Wegabzweigung -| rdfs:domain = RouteOfTransportation -| rdfs:range = Station -| rdfs:comment@en = A junction or cross to another route. -| rdfs:comment@de = Eine Abzweigung oder Kreuzung zu einem anderen Verkehrsweg. -| rdfs:subPropertyOf = dul:hasCommonBoundary -}}OntologyProperty:RouteLine20211078455642015-03-08T12:47:18Z{{ObjectProperty -| rdfs:label@en = line -| rdfs:label@fr = ligne -| rdfs:domain = RouteStop -| rdfs:comment@fr = ligne d'un arrêt sur une route. -| rdfs:comment@en = line of a stop on a route. -}}OntologyProperty:RouteNext20211077455672015-03-08T12:50:15Z{{ObjectProperty -| rdfs:label@en = route next stop -| rdfs:label@fr = arrêt suivant -| rdfs:domain = RouteStop -| rdfs:range = RouteStop -| rdfs:comment@en = next stop on a route. -| rdfs:comment@fr = arrêt suivant sur une route. -}}OntologyProperty:RouteNumber2024352342012014-04-04T16:36:51Z{{DatatypeProperty -| rdfs:label@en = route number -| rdfs:label@de = Routennummer -| rdfs:domain = RouteOfTransportation -| rdfs:range = xsd:string -| rdfs:comment@en = The number of the route. -}}OntologyProperty:RoutePrevious20211075455662015-03-08T12:49:38Z{{ObjectProperty -| rdfs:label@en = route previous stop -| rdfs:label@fr = arrêt précédent -| rdfs:domain = RouteStop -| rdfs:range = RouteStop -| rdfs:comment@en = previous stop on a route. -| rdfs:comment@fr = arrêt précédent sur une route. -}}OntologyProperty:RouteStart2023332522552017-10-08T09:43:46Z{{ObjectProperty -| rdfs:label@en = route start -| rdfs:label@fr = point de départ -| rdfs:label@de = Weganfang -| rdfs:domain = RouteOfTransportation -| rdfs:range = Station -| rdfs:comment@en = Start of the route. This is where the route begins and, for U.S. roads, is either at the southern terminus or western terminus. -| rdfs:comment@fr = point de départ d'une route. -| rdfs:comment@de = Anfang des Verkehrswegs. -| rdfs:subPropertyOf = dul:hasCommonBoundary -}}OntologyProperty:RouteStartDirection2023333122162011-04-15T13:16:18Z{{DatatypeProperty -| rdfs:label@en = road start direction -| rdfs:label@de = Himmelsrichtung des Wegstarts -| rdfs:domain = RouteOfTransportation -| rdfs:range = xsd:string -| rdfs:comment@en = 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. -| rdfs:comment@de = Himmelsrichtung des Anfangs des Verkehrsweges. -}}OntologyProperty:RouteStartLocation2023394364922014-07-08T14:16:10Z -{{ObjectProperty -| rdfs:label@en = route start location -| rdfs:label@de = Ort des Weganfangs -| rdfs:domain = RouteOfTransportation -| rdfs:range = Place -| rdfs:comment@en = The start location of the route. -| rdfs:comment@de = Der Startort des Verkehrswegs. -| rdfs:subPropertyOf = dul:hasCommonBoundary -}}OntologyProperty:RouteTypeAbbreviation2024353146612011-07-28T15:03:58Z{{DatatypeProperty -| rdfs:label@en = route type abbreviation -| rdfs:domain = RouteOfTransportation -| rdfs:range = xsd:string -| rdfs:comment@en = The route type abbreviation (eg.: I for Interstate, M for Motorway or NJ for New Jersey Route). -}}OntologyProperty:RoyalAnthem2021389364932014-07-08T14:16:14Z -{{ObjectProperty -| rdfs:label@en = royal anthem -| rdfs:subPropertyOf = dul:sameSettingAs -}}OntologyProperty:Ruling2026605342022014-04-04T16:36:56Z{{DatatypeProperty -| labels = -{{label|en|ruling}} -{{label|de|Entscheidung}} -{{label|nl|relevante regelgeving}} -| comments = -{{comment|en| Ruling referred to in this legal case }} -| rdfs:domain = LegalCase -| rdfs:range = xsd:string -| rdf:type = -| rdfs:subPropertyOf = -| owl:equivalentProperty = -}}OntologyProperty:RunningMate2022355376062014-08-25T09:23:49Z{{ObjectProperty -| rdfs:label@en = running mate -| rdfs:label@es = compañero de candidatura -| rdfs:range = Person -| rdfs:subPropertyOf = dul:sameSettingAs -}}OntologyProperty:Runtime2021390528302018-02-08T20:13:51Z{{Merge|duration}} - -{{DatatypeProperty -| labels = -{{label|en|runtime}} -{{label|de|Laufzeit}} -{{label|nl|duur}} -{{label|el|διάρκεια}} -{{label|fr|durée}} -| rdfs:domain = Work -| rdfs:range = Time -| owl:equivalentProperty = wikidata:P2047 -| rdfs:subPropertyOf = schema:duration -}}OntologyProperty:RunwayDesignation2024363146932011-08-01T13:00:53Z{{DatatypeProperty - |rdfs:label@en=designation of runway - |rdfs:domain=Airport - |rdfs:range=xsd:string -}}OntologyProperty:RunwayLength2024362146912011-08-01T12:56:04Z{{DatatypeProperty - |rdfs:label@en=length of runway - |rdfs:label@de=Start- und Landebahnlänge - |rdfs:domain=Airport - |rdfs:range=Length -}}OntologyProperty:RunwaySurface2024364146952011-08-01T13:04:05Z{{DatatypeProperty - |rdfs:label@en=surface of runway - |rdfs:domain=Airport - |rdfs:range=xsd:string -}}OntologyProperty:RunwayWidth2026676246062013-03-27T02:30:00Z{{DatatypeProperty - |rdfs:label@en=width of runway - |rdfs:label@ja=滑走路の全幅 - |rdfs:domain=Airport - |rdfs:range=Length -}}OntologyProperty:RuralMunicipality2021391364952014-07-08T14:16:21Z -{{ObjectProperty -| rdfs:label@en = rural municipality -| rdfs:label@de = Landgemeinde -| rdfs:domain = Road -| rdfs:range = PopulatedPlace -| rdfs:subPropertyOf = dul:hasLocation -}}OntologyProperty:Saint2021392364962014-07-08T14:16:23Z -{{ObjectProperty -| labels = - {{label|en|saint}} - {{label|de|Heiliger}} - {{label|el|άγιος}} - {{label|nl|heilige}} - {{label|pt|santo}} -| rdfs:domain = PopulatedPlace -| rdfs:range = Saint -| rdfs:subPropertyOf = dul:sameSettingAs -}}OntologyProperty:Salary2021393215092012-12-30T12:54:17Z{{DatatypeProperty -| rdfs:label@en = salary -| rdfs:label@el = μισθός -| rdfs:label@de = Gehalt -| rdfs:label@ja = 給料 -| rdfs:domain = Person -| rdfs:range = Currency -}}OntologyProperty:Sales2021394364972014-07-08T14:16:27Z -{{ObjectProperty -| rdfs:label@en = sales -| rdfs:label@de = Vertrieb -| rdfs:label@el = πώληση -| rdfs:label@fr = vente -| rdfs:range = Sales -| rdfs:comment@en = This property holds an intermediate node of the type Sales. -| rdfs:subPropertyOf = dul:hasSetting -}}OntologyProperty:SameName2026936348532014-05-15T05:20:08Z{{DatatypeProperty -| labels = -{{label|en|same name}} -{{label|de|gleicher Name}} -| rdfs:domain = Settlement -| rdfs:range = rdf:langString -}}OntologyProperty:SatScore2023138364982014-07-08T14:16:30Z -{{ObjectProperty -| rdfs:label@en = SAT score -| rdfs:comment@en = most recent average SAT scores -| rdfs:domain = School -| rdfs:subPropertyOf = dul:isClassifiedBy -}}OntologyProperty:Satcat20211895522672017-10-08T12:53:12Z{{DatatypeProperty -| rdfs:label@en = SATCAT -| rdfs:label@sr = SATCAT -| rdfs:label@de = SATCAT -| rdfs:label@fr = SATCAT -| rdfs:domain = SpaceMission -| rdfs:range = xsd:string -| comments = -{{comment|en|satellite catalogue number, omit leading zeroes (e.g. 25544)}} -}}OntologyProperty:Satellite2025644357342014-07-07T08:32:49Z{{ DatatypeProperty - - | rdfs:label@en = satellite -| rdfs:label@de = Satellit -| labels = - {{label|el|δορυφόρος}} - | rdfs:domain = Planet - | rdfs:range = xsd:string - -}}OntologyProperty:SatellitesDeployed2021395104222010-11-10T14:50:30Z{{DatatypeProperty -| rdfs:label@en = satellites deployed -| rdfs:domain = SpaceShuttle -| rdfs:range = xsd:nonNegativeInteger -}}OntologyProperty:Scale2027080342092014-04-04T16:37:30Z{{DatatypeProperty -| labels = -{{label|en|scale}} -{{label|de|Maßstab}} -| rdfs:domain = Place -| rdfs:range = xsd:string -}}OntologyProperty:Scene2027758342102014-04-04T16:37:34Z{{DatatypeProperty -| labels = -{{label|en|scene}} -{{label|de|Szene}} -| rdfs:domain = Person -| rdfs:range = xsd:string -}}OntologyProperty:School2021396364992014-07-08T14:16:33Z -{{ObjectProperty -| labels = - {{label|en|school}} - {{label|nl|school}} - {{label|de|schule}} - {{label|it|scuola}} - {{label|el|σχολείο}} - {{label|fr|école}} -| rdfs:domain = Person -| rdfs:range = EducationalInstitution -| comments = - {{comment|en|school a person goes or went to}} - {{comment|el|σχολείο στο οποίο πηγαίνει ή πήγε κάποιος}} -| rdfs:subPropertyOf = dul:coparticipatesWith -}}OntologyProperty:SchoolBoard2023123365002014-07-08T14:16:36Z -{{ObjectProperty -| rdfs:label@en = school board -| rdfs:domain = School -| rdfs:subPropertyOf = dul:sameSettingAs -}}OntologyProperty:SchoolCode2021397528962018-02-13T12:29:57Z{{DatatypeProperty -| rdfs:label@en = school code -| rdfs:domain = School -| rdfs:range = xsd:string -| rdfs:subPropertyOf = code -}}OntologyProperty:SchoolNumber202139882592010-05-28T13:40:18Z{{DatatypeProperty -| rdfs:label@en = school number -| rdfs:domain = School -| rdfs:range = xsd:string -}}OntologyProperty:SchoolPatron2023122529322018-03-01T11:15:33Z -{{ObjectProperty -| rdfs:label@en = school patron -| rdfs:domain = School -| rdfs:range = Agent -| rdfs:subPropertyOf = dul:sameSettingAs -}}OntologyProperty:ScientificName2029285342112014-04-04T16:37:50Z{{DatatypeProperty -| rdfs:label@en = scientific name -| rdfs:label@de = wissenschaftlicher Name -| rdfs:label@nl = wetenschappelijke naam -| rdfs:domain = Species -| rdfs:range = xsd:string -}}OntologyProperty:Score20210466518062017-01-06T13:37:31Z{{DatatypeProperty -| rdfs:label@en = score -| rdfs:comment@en = Score or points of something (eg a SportCompetitionResult) -| rdfs:range = xsd:double -}}OntologyProperty:ScreenActorsGuildAward2021400365022014-07-08T14:16:41Z -{{ObjectProperty -| rdfs:label@en = Screen Actors Guild Award -| rdfs:domain = Actor -| rdfs:range = Award -| rdfs:subPropertyOf = dul:coparticipatesWith -}}OntologyProperty:Sea2026982365032014-07-08T14:16:47Z -{{ObjectProperty -| labels = - {{label|en|sea}} - {{label|de|Meer}} -| rdfs:range = Sea -| rdfs:domain = Place -| rdfs:subPropertyOf = dul:nearTo -}}OntologyProperty:Season2021401365042014-07-08T14:16:50Z -{{ObjectProperty -| rdfs:label@en = season -| rdfs:label@de = Saison -| rdfs:label@el = σαιζόν -| rdfs:domain = Agent -| rdfs:subPropertyOf = dul:hasSetting -}}OntologyProperty:SeasonManager2027829271422013-07-05T15:25:42Z{{DatatypeProperty -| labels = -{{label|en|season manager}} -| rdfs:domain = Person -| rdfs:range = xsd:string -}}OntologyProperty:SeasonNumber2022105136592011-06-14T14:16:34Z{{DatatypeProperty -| rdfs:label@en = season number -| rdfs:domain = TelevisionEpisode -| rdfs:range = xsd:nonNegativeInteger -| rdfs:comment@en = The season number to which the TelevisionEpisode belongs. -}}OntologyProperty:SeatNumber2026870492232015-10-15T07:20:56Z{{DatatypeProperty -| labels = -{{label|en|number of seats in the land parlement}} -| rdfs:domain = AdministrativeRegion -| rdfs:range = xsd:nonNegativeInteger -}}OntologyProperty:SeatingCapacity2022528342142014-04-04T16:38:09Z{{DatatypeProperty -| labels = -{{label|en|seating capacity}} -{{label|de|Sitzplatzkapazität}} -{{label|nl|zitplaatsen}} -| rdfs:domain = Building -| rdfs:range = xsd:nonNegativeInteger -}}OntologyProperty:Second2027891273962013-07-10T15:23:31Z{{DatatypeProperty -| labels = -{{label|en|second}} -| rdfs:range = xsd:nonNegativeInteger -| rdfs:domain = Person -}}OntologyProperty:SecondCommander2021403365052014-07-08T14:16:53Z -{{ObjectProperty -| rdfs:label@en = second commander -| rdfs:label@de = zweiter Kommandant -| rdfs:domain = MilitaryUnit -| rdfs:range = Person -| rdfs:subPropertyOf = dul:sameSettingAs -}}OntologyProperty:SecondDriver2021404365062014-07-08T14:16:56Z -{{ObjectProperty -| rdfs:label@en = second driver -| rdfs:label@de = zweiter Fahrer -| rdfs:label@el = δεύτερος οδηγός -| rdfs:label@it = secondo pilota -| rdfs:domain = GrandPrix -| rdfs:range = Person -| rdfs:subPropertyOf = dul:hasParticipant -}}OntologyProperty:SecondDriverCountry2021405365072014-07-08T14:17:00Z -{{ObjectProperty -| rdfs:label@en = second driver country -| rdfs:domain = GrandPrix -| rdfs:range = Country -| rdfs:subPropertyOf = dul:hasParticipant -}}OntologyProperty:SecondLeader2023126365082014-07-08T14:17:03Z -{{ObjectProperty -| labels = - {{label|en|secondLeader}} - {{label|nl|vice-voorzitter}} -| rdfs:range = Person -| rdfs:subPropertyOf = dul:sameSettingAs -}}OntologyProperty:SecondPlace2028081342822014-04-04T17:21:38Z{{DatatypeProperty -| labels = -{{label|en|second place}} -{{label|de|zweiter Platz}} -| rdfs:domain = owl:Thing -| rdfs:range = xsd:string -}}OntologyProperty:SecondPopularVote2023128365092014-07-08T14:17:06Z -{{ObjectProperty -| rdfs:label@en = secondPopularVote -| rdfs:range = Person -| rdfs:subPropertyOf = dul:sameSettingAs -}}OntologyProperty:SecondTeam2021406365102014-07-08T14:17:10Z -{{ObjectProperty -| rdfs:label@en = second team -| rdfs:label@de = zweites Team -| rdfs:label@el = δεύτερη ομάδα -| rdfs:domain = GrandPrix -| rdfs:range = SportsTeam -| rdfs:subPropertyOf = dul:hasParticipant -}}OntologyProperty:SecretaryGeneral2023348365112014-07-08T14:17:13Z -{{ObjectProperty -| labels = - {{label|en|secretary}} - {{label|de|Sekretärin}} - {{label|nl|secretaris}} - {{label|pt|secretario}} -| rdfs:domain = Organisation -| rdfs:range = Person -| rdfs:subPropertyOf = dul:sameSettingAs -}}OntologyProperty:Security2026428349542014-05-24T07:26:48Z{{DatatypeProperty -| labels = -{{label|en|security}} -{{label|de|Sicherheit}} -{{label|el|ασφάλεια}} -| comments = -{{comment|en|Safety precautions that are used in the building.}} -{{comment|de|Sicherheitsmaßnahmen, die für das Gebäude getroffen wurden.}} -{{comment|el|Μέτρα ασφαλείας για την προστασία ενός κτιρίου.}} -| rdfs:domain = Building -| rdfs:range = xsd:string -}}OntologyProperty:Seiyu2027772270632013-07-05T08:03:43Z{{ObjectProperty -| labels = -{{label|en|seiyu}} -| rdfs:domain = Person -| rdfs:range = Person -}}OntologyProperty:Selection2021407365122014-07-08T14:17:27Z -{{ObjectProperty -| rdfs:label@en = selection -| rdfs:label@de = Auswahl -| rdfs:domain = Astronaut -| rdfs:comment@en = when (or in which project) the person was selected to train as an astronaut -| rdfs:subPropertyOf = dul:hasSetting -}}OntologyProperty:SelectionPoint2027673269432013-07-04T07:55:11Z{{DatatypeProperty -| labels = -{{label|en|selection point}} -| rdfs:range = xsd:nonNegativeInteger -| rdfs:domain = Athlete -}}OntologyProperty:SelectionYear2027672342212014-04-04T16:39:01Z{{DatatypeProperty -| labels = -{{label|en|selection year}} -{{label|de|Auswahljahr}} -| rdfs:range = xsd:string -| rdfs:domain = Athlete -}}OntologyProperty:SelibrId2028422528862018-02-13T10:59:29Z{{DatatypeProperty -| labels = -{{label|en|SELIBR Id}} -| comments = -{{comment|en|Authority data from the National Library of Sweden}} -| rdfs:range = xsd:string -| owl:equivalentProperty = wikidata:P906 -| rdfs:subPropertyOf = code -}}OntologyProperty:Senator2023361365132014-07-08T14:17:30Z -{{ObjectProperty -| rdfs:label@en = senator -| rdfs:label@de = Senator -| rdfs:label@pt = senador -| rdfs:range = Person -| rdfs:subPropertyOf = MemberOfParliament, dul:sameSettingAs -}}OntologyProperty:Senior2027256342802014-04-04T17:20:32Z{{DatatypeProperty -| labels = -{{label|en|senior}} -| rdfs:domain = PopulatedPlace -| rdfs:range = xsd:string -}}OntologyProperty:Seniority202235983982010-05-28T13:58:58Z{{DatatypeProperty -| rdfs:label@en = seniority -| rdfs:range = xsd:string -}}OntologyProperty:Seniunija2027252259122013-06-13T08:49:48Z{{DatatypeProperty -| labels = -{{label|en|seniunija}} -| rdfs:domain = PopulatedPlace -| rdfs:range = xsd:string -}}OntologyProperty:Sentence2028029342242014-04-04T16:39:26Z{{DatatypeProperty -| labels = -{{label|en|sentence}} -{{label|de|Satz}} -| rdfs:domain = Person -| rdfs:range = xsd:string -}}OntologyProperty:Series2021408520022017-03-22T18:52:31Z -{{ObjectProperty -| labels = - {{label|en|series}} - {{label|fr|série}} - {{label|de|Serie}} - {{label|nl|reeks}} - {{label|el|σειρά}} -| rdfs:subPropertyOf = dul:isParticipantIn -}}OntologyProperty:Service2021409525082017-10-17T23:06:34Z -{{ObjectProperty -| rdfs:label@en = service -| rdfs:label@de = Dienst -| rdfs:domain = Organisation -| rdfs:subPropertyOf = dul:sameSettingAs -}}OntologyProperty:ServiceEndDate202141082632010-05-28T13:40:47Z{{DatatypeProperty -| rdfs:label@en = service end date -| rdfs:domain = MilitaryPerson -| rdfs:range = xsd:date -}}OntologyProperty:ServiceEndYear202141182642010-05-28T13:40:54Z{{DatatypeProperty -| rdfs:label@en = service end year -| rdfs:domain = MilitaryPerson -| rdfs:range = xsd:gYear -}}OntologyProperty:ServiceModule202141282652010-05-28T13:41:02Z{{DatatypeProperty -| rdfs:label@en = service module -| rdfs:domain = SpaceMission -| rdfs:range = xsd:string -}}OntologyProperty:ServiceNumber202170283542010-05-28T13:52:54Z{{DatatypeProperty -| rdfs:label@en = service number -| rdfs:domain = MilitaryPerson -| rdfs:comment@en = The service number held by the individual during military service. -| rdfs:range = xsd:string -}}OntologyProperty:ServiceStartDate202141382662010-05-28T13:41:08Z{{DatatypeProperty -| rdfs:label@en = service start date -| rdfs:domain = MilitaryPerson -| rdfs:range = xsd:date -}}OntologyProperty:ServiceStartYear202141482672010-05-28T13:41:18Z{{DatatypeProperty -| rdfs:label@en = service start year -| rdfs:domain = MilitaryPerson -| rdfs:range = xsd:gYear -}}OntologyProperty:ServingRailwayLine2023227365162014-07-08T14:17:38Z -{{ObjectProperty -| labels = - {{label|en|serving railway line}} - {{label|nl|spoorlijnen}} - {{label|de|angebundene Eisenbahnlinie}} -| rdfs:domain = Station -| rdfs:range = owl:Thing -| rdfs:comment@en = Railway services that serve the station. -| rdfs:subPropertyOf = dul:sameSettingAs -}}OntologyProperty:ServingSize20211297487712015-08-13T10:23:03Z{{DatatypeProperty -| labels = -{{label|en|serving size}} -| rdfs:domain = Food -| rdfs:range = Mass -| comments = -{{comment|en|Default serving size (eg "100 g" for the standard 100 g serving size). approximateCalories apply to this serving size}} -}}OntologyProperty:ServingTemperature2023931136692011-06-16T14:53:01Z{{DatatypeProperty -| rdfs:label@en = serving temperature -| rdfs:domain = Food -| rdfs:range = xsd:string -| rdfs:comment@en = Serving temperature for the food (e.g.: hot, cold, warm or room temperature). -}}OntologyProperty:SessionNumber2023303121792011-04-15T10:24:15Z{{DatatypeProperty -| rdfs:label@en = session number -| rdfs:label@pt = número da sessão -| rdfs:range = Event -| rdfs:range = xsd:integer -}}OntologyProperty:SetDesigner2025148365172014-07-08T14:17:41Z -{{ObjectProperty -| rdfs:domain = Film -| rdfs:range = Person -| rdfs:label@en = set designer -| rdfs:label@de = Bühnenbildner -| rdfs:label@it = scenografo -| rdfs:comment@en = the person who is responsible for the film set design -| rdfs:subPropertyOf = dul:coparticipatesWith -}}OntologyProperty:SettingOfPlay2023832133642011-06-06T12:55:04Z{{DatatypeProperty -| rdfs:label@en = setting of play -| rdfs:domain = Play -| rdfs:range = xsd:string -| rdfs:comment@en = The places and time where the play takes place. -}}OntologyProperty:Settlement2026981365182014-07-08T14:17:44Z -{{ObjectProperty -| labels = - {{label|en|settlement}} - {{label|de|Siedlung}} - {{label|it|luogo abitato (insediamento)}} -| rdfs:range = PopulatedPlace -| rdfs:domain = Place -| owl:equivalentProperty = wikidata:P131 -| rdfs:subPropertyOf = dul:hasLocation -}}OntologyProperty:SettlementAttached2026846492182015-10-15T07:16:19Z{{ObjectProperty -| labels = -{{label|en|settlement attached}} -| rdfs:domain = Settlement -| rdfs:range = Place -}}OntologyProperty:SetupTime202230083852010-05-28T13:57:09Z{{DatatypeProperty -| rdfs:label@en = setup time -| rdfs:range = Time -}}OntologyProperty:SevereCases20212299536112020-04-10T06:23:53Z{{DatatypeProperty -| labels = -{{label|en|Severe Cases}} -| rdfs:comment@en = Number of severe cases in a pandemic -| rdfs:domain = Outbreak -| rdfs:range = xsd:integer -}}OntologyProperty:Sex2025275455432015-03-08T10:48:10Z{{ DatatypeProperty - - | rdfs:label@en = sex - | rdfs:label@el = φύλο - | rdfs:label@de = Geschlecht - | rdfs:label@fr = sexe - | rdfs:domain = Person - | rdfs:range = xsd:string - | owl:equivalentProperty = wikidata:P21 - -}}OntologyProperty:SexualOrientation2023296365192014-07-08T14:17:47Z -{{ObjectProperty -| rdfs:label@en = sexual orientation -| rdfs:label@de = sexuelle Orientierung -| rdfs:label@pt = orientação sexual -| rdfs:domain = Person -| rdfs:subPropertyOf = dul:hasQuality -}}OntologyProperty:Shape2027076365202014-07-08T14:17:51Z -{{ObjectProperty -| labels = - {{label|en|intercommunality shape}} -| rdfs:domain = Intercommunality -| rdfs:range = Community -| rdfs:subPropertyOf = dul:hasQuality -}}OntologyProperty:ShareDate2021416116022011-04-01T13:37:31Z{{DatatypeProperty -| rdfs:label@en = share date -| rdfs:domain = Broadcaster -| rdfs:range = xsd:gYearMonth -}}OntologyProperty:ShareOfAudience2021415113262011-03-30T14:36:46Z{{DatatypeProperty -| rdfs:label@en = share of audience -| rdfs:label@de = Anteil der Zuschauer/Zuhörer -| rdfs:domain = Broadcaster -| rdfs:range = xsd:float -}}OntologyProperty:ShareSource2021417116012011-04-01T13:31:07Z{{DatatypeProperty -| rdfs:label@en = share source -| rdfs:domain = Broadcaster -| rdfs:range = xsd:string -}}OntologyProperty:SharingOutPopulation2027233258892013-06-12T13:32:29Z{{DatatypeProperty -| labels = -{{label|en|sharing out population}} -| rdfs:domain = PopulatedPlace -| rdfs:range = xsd:nonNegativeInteger -}}OntologyProperty:SharingOutPopulationYear2027234258902013-06-12T13:33:14Z{{DatatypeProperty -| labels = -{{label|en|sharing out year}} -| rdfs:domain = PopulatedPlace -| rdfs:range = xsd:string -}}OntologyProperty:Sheading2022140365212014-07-08T14:17:55Z -{{ObjectProperty -| rdfs:label@en = sheading -| rdfs:domain = PopulatedPlace -| rdfs:range = PopulatedPlace -| rdfs:subPropertyOf = dul:isPartOf -}}OntologyProperty:ShipBeam2022265166012012-01-15T22:32:27Z{{DatatypeProperty -| rdfs:label@en = ship beam -| rdfs:comment@en = The beam of a ship is its width at the widest point. -| rdfs:domain = Ship -| rdfs:range = Length -}}OntologyProperty:ShipCrew2024547365222014-07-08T14:17:59Z -{{ObjectProperty -| rdfs:label@en = crew -| rdfs:label@de = Crew -| rdfs:range = Person -| rdfs:domain = Ship -| rdfs:subPropertyOf = dul:coparticipatesWith -}}OntologyProperty:ShipDisplacement2022275342752014-04-04T17:15:56Z{{DatatypeProperty -| rdfs:label@en = displacement -| rdfs:label@de = Deplacement -| rdfs:domain = Ship -| rdfs:range = Mass -| rdfs:comment@en = A ship's displacement is its mass at any given time. -}}OntologyProperty:ShipDraft2022273342332014-04-04T16:40:17Z{{DatatypeProperty -| rdfs:label@en = ship draft -| rdfs:label@de = Schiffsentwurf -| rdfs:domain = Ship -| rdfs:range = Length -| rdfs:comment@en = 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. -}}OntologyProperty:ShipLaunch2023109116542011-04-02T11:04:40Z{{DatatypeProperty -| rdfs:label@en=ship launched -| rdfs:domain = Ship -| rdfs:range = xsd:date -}}OntologyProperty:ShoeNumber2023291342762014-04-04T17:17:35Z{{DatatypeProperty -| labels = -{{label|en|shoe number}} -{{label|nl|schoenmaat}} -{{label|pt|número do sapato}} -| rdfs:domain = Person -| rdfs:range = xsd:positiveInteger -}}OntologyProperty:ShoeSize2027751397742015-02-05T12:22:59Z{{DatatypeProperty -| labels = -{{label|en|shoe size}} -{{label|de|Schuhgröße}} -{{label|nl|schoenmaat}} -{{label|pt|número do sapato}} -| rdfs:domain = Person -| rdfs:range = xsd:string -}}OntologyProperty:Shoot2027780342772014-04-04T17:18:01Z{{DatatypeProperty -| labels = -{{label|en|shoot}} -| rdfs:domain = Person -| rdfs:range = xsd:string -}}OntologyProperty:Shoots202141882712010-05-28T13:41:48Z{{DatatypeProperty -| rdfs:label@en = shoots -| rdfs:domain = IceHockeyPlayer -| rdfs:range = xsd:string -}}OntologyProperty:ShoreLength2021419503252016-02-05T08:21:40Z{{DatatypeProperty -| rdfs:label@en = shore length -| rdfs:label@de = Uferlänge -| rdfs:label@el = μήκος_όχθης -| rdfs:domain = BodyOfWater -| rdfs:range = Length -}}OntologyProperty:ShortProgCompetition2028068282312013-09-04T09:12:13Z{{DatatypeProperty -| labels = -{{label|en|short prog competition}} -| rdfs:domain = Person -| rdfs:range = xsd:string -}}OntologyProperty:ShortProgScore2028067282302013-09-04T09:11:35Z{{DatatypeProperty -| labels = -{{label|en|short prog score}} -| rdfs:domain = Person -| rdfs:range = xsd:string -}}OntologyProperty:Show2021422365232014-07-08T14:18:02Z -{{ObjectProperty -| rdfs:label@en = show -| rdfs:label@de = Sendung -| rdfs:label@fr = spectacle -| rdfs:range = TelevisionShow -| rdfs:subPropertyOf = dul:isParticipantIn -}}OntologyProperty:ShowJudge2022103365242014-07-08T14:18:05Z -{{ObjectProperty -| rdfs:label@en = showJudge -| rdfs:domain = TelevisionShow -| rdfs:range = Person -| rdfs:subPropertyOf = dul:hasParticipant -}}OntologyProperty:Shuttle2021423365252014-07-08T14:18:08Z -{{ObjectProperty -| rdfs:label@en = shuttle -| rdfs:domain = SpaceMission -| rdfs:range = SpaceShuttle -| rdfs:subPropertyOf = dul:hasParticipant -}}OntologyProperty:Sibling2026692365262014-07-08T14:18:11Z -{{ObjectProperty -| labels = - {{label|en|sibling}} - {{label|nl|broer of zus}} - {{label|fr|frère ou soeur}} - {{label|de|Geschwister}} - {{label|ja|兄弟}} -| rdfs:domain = Person -| rdfs:range = Person -| rdfs:subPropertyOf = dul:sameSettingAs -}}OntologyProperty:SignName2026905348462014-05-15T05:19:26Z{{DatatypeProperty -| labels = -{{label|en|sign name of a hungarian settlement}} -| rdfs:domain = HungarySettlement -| rdfs:range = rdf:langString -}}OntologyProperty:Signature2027560342392014-04-04T16:40:42Z{{DatatypeProperty -| labels = -{{label|en|signature}} -{{label|de|Unterschrift}} -| rdfs:domain = Person -| rdfs:range = xsd:string -| owl:equivalentProperty = wikidata:P109 -}}OntologyProperty:SignificantBuilding2021424365272014-07-08T14:18:14Z -{{ObjectProperty -| rdfs:label@en = significant building -| rdfs:label@de = bedeutendes Gebäude -| rdfs:domain = Architect -| rdfs:range = Building -| rdfs:subPropertyOf = dul:coparticipatesWith -}}OntologyProperty:SignificantDesign2021425365282014-07-08T14:18:17Z -{{ObjectProperty -| rdfs:label@en = significant design -| rdfs:label@de = bedeutendes Design -| rdfs:domain = Architect -| rdfs:subPropertyOf = dul:coparticipatesWith -}}OntologyProperty:SignificantProject2021426365292014-07-08T14:18:20Z -{{ObjectProperty -| rdfs:label@en = significant project -| rdfs:label@de = bedeutendes Projekt -| rdfs:label@pl = istotne osiągnięcie -| rdfs:comment@en = A siginificant artifact constructed by the person. -| rdfs:domain = Person -| rdfs:subPropertyOf = dul:coparticipatesWith -}}OntologyProperty:SilCode2023702365302014-07-08T14:18:23Z -{{ObjectProperty -| labels = - {{label|en|SIL code}} - {{label|nl|SIL-code}} - {{label|pl|kod SIL}} -| rdfs:domain = Language -| rdfs:subPropertyOf = LanguageCode, dul:isClassifiedBy -}}OntologyProperty:SilverMedalDouble2027734500752016-01-04T12:37:08Z{{DatatypeProperty -| labels = -{{label|en|silver medal double}} -{{label|de|Silbermedaille Doppel}} -| rdfs:domain = TennisPlayer -| rdfs:range = xsd:string -}}OntologyProperty:SilverMedalMixed2027737500762016-01-04T12:37:51Z{{DatatypeProperty -| labels = -{{label|en|silver medal mixed}} -{{label|de|Silbermedaille gemischt}} -| rdfs:domain = TennisPlayer -| rdfs:range = xsd:string -}}OntologyProperty:SilverMedalSingle2027731500772016-01-04T12:38:32Z{{DatatypeProperty -| labels = -{{label|en|silver medal single}} -{{label|de|Silbermedaille Einzel}} -| rdfs:domain = TennisPlayer -| rdfs:range = xsd:string -}}OntologyProperty:SilverMedalist2025667365312014-07-08T14:18:25Z -{{ObjectProperty -| rdfs:label@en = siler medalist -| rdfs:label@de = Silbermedaillengewinner -| rdfs:label@pt = medalha de prata -| rdfs:label@nl = zilveren medaille drager -| rdfs:domain = SportsEvent -| rdfs:range = Person -| rdfs:subPropertyOf = Medalist, dul:hasParticipant -}}OntologyProperty:SimcCode2023403529282018-02-28T08:38:07Z -{{ObjectProperty -| rdfs:label@en = SIMC code -| rdfs:domain = PopulatedPlace -| rdfs:comment@en = indexing code used by the Polish National Official Register of the Territorial Division of the Country (TERYT) to identify various entities -| rdfs:subPropertyOf = code -| owl:equivalentProperty = dul:isClassifiedBy -| rdfs:comment@en = Should be a datatype property -}}OntologyProperty:Similar2021427365332014-07-08T14:18:34Z -{{ObjectProperty -| rdfs:label@en = similar -| rdfs:label@de = ähnlich -| rdfs:label@el = παρόμοιος -| rdfs:label@pl = podobny -| rdfs:subPropertyOf = dul:sameSettingAs -}}OntologyProperty:Sire2026171365342014-07-08T14:18:37Z -{{ObjectProperty -| labels = - {{label|en|sire}} -| rdfs:domain = Animal -| rdfs:range = Animal -| rdfs:subPropertyOf = dul:sameSettingAs -}}OntologyProperty:Siren2027073255932013-05-26T12:15:44Z{{DatatypeProperty -| labels = -{{label|en|siren number}} -| rdfs:range = xsd:nonNegativeInteger -}}OntologyProperty:Sister20212289535832020-01-30T10:19:55Z{{ObjectProperty -| labels = - {{label|en|sister}} - {{label|nl|zus}} - {{label|de|Schwester}} - {{label|el|αδελφή}} - {{label|ja|シスター}} - {{label|ar|أخت}} -| rdfs:domain = Woman -| rdfs:range = Person -| owl:propertyDisjointWith = parent -}}OntologyProperty:SisterCollege2021428365352014-07-08T14:18:40Z -{{ObjectProperty -| rdfs:label@en = sister college -| rdfs:domain = College -| rdfs:range = College -| rdfs:subPropertyOf = dul:sameSettingAs -}}OntologyProperty:SisterNewspaper2021429365362014-07-08T14:18:43Z -{{ObjectProperty -| rdfs:label@en = sister newspaper -| rdfs:domain = Newspaper -| rdfs:range = Newspaper -| rdfs:subPropertyOf = dul:sameSettingAs -}}OntologyProperty:SisterStation2021430365372014-07-08T14:18:47Z -{{ObjectProperty -| rdfs:label@en = sister station -| rdfs:domain = Broadcaster -| rdfs:range = Broadcaster -| rdfs:subPropertyOf = dul:sameSettingAs -}}OntologyProperty:SixthFormStudents2021431342482014-04-04T16:41:18Z{{DatatypeProperty -| rdfs:label@en = sixth form students -| rdfs:label@de = Schüler der Oberstufe -| rdfs:domain = School -| rdfs:range = xsd:string -}}OntologyProperty:SizeBlazon2027563267772013-07-01T14:46:40Z{{DatatypeProperty -| labels = -{{label|en|size blazon}} -| rdfs:range = xsd:string -}}OntologyProperty:SizeLogo2027070255882013-05-26T12:01:16Z{{DatatypeProperty -| labels = -{{label|en|size logo}} -| rdfs:range = xsd:nonNegativeInteger -}}OntologyProperty:SizeMap2026993342492014-04-04T16:41:23Z{{DatatypeProperty -| labels = -{{label|en|size map}} -{{label|de|Größe der Karte}} -| rdfs:range = xsd:string -}}OntologyProperty:SizeThumbnail2026901268972013-07-03T10:17:41Z{{DatatypeProperty -| labels = -{{label|en|size thumbnail}} -| rdfs:range = xsd:string -}}OntologyProperty:Size v2026139462152015-03-18T11:03:58Z{{DatatypeProperty -| rdfs:label@en = size_v -| rdfs:label@el = μέγεθος -| rdfs:domain = Openswarm -| rdfs:range = xsd:integer -}}OntologyProperty:SkiLift2027189342502014-04-04T16:41:27Z{{DatatypeProperty -| labels = -{{label|en|ski lift}} -{{label|de|Skilift}} -| rdfs:domain = Place -| rdfs:range = xsd:nonNegativeInteger -}}OntologyProperty:SkiPisteKilometre2027197342512014-04-04T16:41:30Z{{DatatypeProperty -| labels = -{{label|en|ski piste kilometre}} -{{label|de|Skipiste km}} -| rdfs:domain = Place -| rdfs:range = Length -}}OntologyProperty:SkiPisteNumber2027192342522014-04-04T16:41:34Z{{DatatypeProperty -| labels = -{{label|en|ski piste number}} -{{label|de|Skipistennummer}} -| rdfs:domain = Place -| rdfs:range = xsd:nonNegativeInteger -}}OntologyProperty:SkiTow2027190257402013-06-01T13:19:41Z{{DatatypeProperty -| labels = -{{label|en|ski tow}} -| rdfs:domain = Place -| rdfs:range = xsd:nonNegativeInteger -}}OntologyProperty:Skills2026557365382014-07-08T14:18:51Z -{{ObjectProperty -| labels = - {{label|en|skills}} - {{label|de|Fähigkeiten}} - {{label|fr|compétences}} - {{label|nl|bekwaamheden}} -| rdfs:subPropertyOf = dul:isDescribedBy -}}OntologyProperty:SkinColor20210478503412016-02-12T20:51:28Z{{DatatypeProperty -| rdfs:label@en = skin color -| rdfs:domain = Person -| rdfs:range = xsd:string -<!-- | rdfs:subPropertyOf = dul:hasQuality commented, dul:hasQuality defined as object property, see https://github.com/dbpedia/ontology-tracker/issues/9 --> -}}OntologyProperty:Skos:broader2021625247582013-04-05T08:00:06Z{{ObjectProperty -|rdfs:label@en = broader -|rdfs:label@de = weiter -|rdfs:label@it = più ampio -}}OntologyProperty:Skos:notation20211069491212015-10-10T20:51:09Z{{DatatypeProperty -|rdfs:label@en = notation -|rdfs:label@fr = notation -|rdfs:domain = Work -|rdfs:range = xsd:string -}}OntologyProperty:Skos:prefLabel2021627348122014-05-14T11:25:32Z{{DatatypeProperty -|rdfs:label@en = prefLabel -|rdfs:label@de = bevorzugtes Label -|rdfs:label@it = Label preferito -|rdfs:range = rdf:langString -}}OntologyProperty:Skos:related2022906342542014-04-04T16:41:42Z{{ObjectProperty -| labels = -{{label|en|related}} -{{label|de|verbunden}} -{{label|nl|gerelateerd}} -}}OntologyProperty:Skos:subject2021628503322016-02-12T14:07:12ZWrong property!!!, use dct:subject -<!-- -{{ObjectProperty -|rdfs:label@en = subject -|rdfs:label@de = subjekt -|rdfs:label@it = soggetto -|rdfs:comment@en = DEPRECATED -}}-->OntologyProperty:Slogan2021434433332015-02-06T15:06:44Z{{DatatypeProperty -| labels = -{{label|en|slogan}} -{{label|nl|slogan}} -{{label|de|Slogan}} -{{label|bg|Девиз}} - -| rdfs:range = rdf:langString -}}OntologyProperty:Smiles2028170287502013-11-20T11:16:18Z{{DatatypeProperty -| rdfs:label@en = SMILES -| rdfs:domain = ChemicalCompound -| rdfs:range = xsd:string -| rdfs:comment@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. -}}OntologyProperty:SnowParkNumber2027198257482013-06-01T13:23:16Z{{DatatypeProperty -| labels = -{{label|en|snow park number}} -| rdfs:domain = Place -| rdfs:range = xsd:nonNegativeInteger -}}OntologyProperty:SoccerLeaguePromoted2024573365402014-07-08T14:18:57Z -{{ObjectProperty -| rdfs:label@en = promoted -| rdfs:label@tr = yükselenler -| rdfs:domain = SoccerLeagueSeason -| rdfs:range = SportsTeam -| rdfs:subPropertyOf = dul:isSettingFor -}}OntologyProperty:SoccerLeagueRelegated2024574365412014-07-08T14:19:00Z -{{ObjectProperty -| rdfs:label@en = relegated teams -| rdfs:label@de = Absteiger -| rdfs:label@tr = düşenler -| rdfs:domain = SoccerLeagueSeason -| rdfs:range = SportsTeam -| rdfs:subPropertyOf = dul:isSettingFor -}}OntologyProperty:SoccerLeagueSeason2024575365422014-07-08T14:19:04Z -{{ObjectProperty -| rdfs:label@en = season -| rdfs:label@de = Saison -| rdfs:label@tr = sezon -| rdfs:domain = SoccerLeagueSeason -| rdfs:range = SoccerLeagueSeason -| rdfs:subPropertyOf = dul:sameSettingAs -}}OntologyProperty:SoccerLeagueWinner2024572365432014-07-08T14:19:07Z -{{ObjectProperty -| rdfs:label@en = league champion -| rdfs:label@de = Liga-Meister -| rdfs:label@tr = şampiyon -| rdfs:domain = SoccerLeagueSeason -| rdfs:range = SportsTeam -| rdfs:subPropertyOf = dul:isSettingFor -}}OntologyProperty:SoccerTournamentClosingSeason2024579365442014-07-08T14:19:11Z -{{ObjectProperty -| rdfs:label@en = closing season -| rdfs:label@tr = kapanış sezonu -| rdfs:domain = SoccerTournament -| rdfs:range = SoccerTournament -| rdfs:subPropertyOf = dul:sameSettingAs -}}OntologyProperty:SoccerTournamentLastChampion2024581365452014-07-08T14:19:15Z -{{ObjectProperty -| rdfs:label@en = last champion -| rdfs:label@de = letzter Sieger -| rdfs:label@tr = son şampiyon -| rdfs:domain = SoccerTournament -| rdfs:range = SoccerClub -| rdfs:subPropertyOf = dul:isSettingFor -}}OntologyProperty:SoccerTournamentMostSteady2024583365462014-07-08T14:19:19Z -{{ObjectProperty -| rdfs:label@en = most steady -| rdfs:label@tr = en istikrarlı -| rdfs:domain = SoccerTournament -| rdfs:range = SoccerClub -| rdfs:subPropertyOf = dul:isSettingFor -}}OntologyProperty:SoccerTournamentMostSuccesfull2024582365472014-07-08T14:19:22Z -{{ObjectProperty -| rdfs:label@en = most successfull -| rdfs:label@de = am erfolgreichsten -| rdfs:label@tr = en başarılı -| rdfs:domain = SoccerTournament -| rdfs:range = SoccerClub -| rdfs:subPropertyOf = dul:isSettingFor -}}OntologyProperty:SoccerTournamentOpeningSeason2024578365482014-07-08T14:19:36Z -{{ObjectProperty -| rdfs:label@en = opening season -| rdfs:label@tr = açılış sezonu -| rdfs:domain = SoccerTournament -| rdfs:range = SoccerTournament -| rdfs:subPropertyOf = dul:sameSettingAs -}}OntologyProperty:SoccerTournamentThisSeason2024580365492014-07-08T14:19:39Z -{{ObjectProperty -| rdfs:label@en = this season -| rdfs:label@tr = bu sezon -| rdfs:domain = SoccerTournament -| rdfs:range = SoccerTournament -| rdfs:subPropertyOf = dul:sameSettingAs -}}OntologyProperty:SoccerTournamentTopScorer2024584365502014-07-08T14:19:41Z -{{ObjectProperty -| rdfs:label@en = top scorer -| rdfs:label@de = Torschützenkönig -| rdfs:label@tr = en golcü -| rdfs:domain = SoccerTournament -| rdfs:range = SoccerPlayer -| rdfs:subPropertyOf = dul:hasParticipant -}}OntologyProperty:SolicitorGeneral2026602365512014-07-08T14:19:44Z -{{ObjectProperty -| labels = - {{label|en|solicitor general}} - {{label|de|Generalstaatsanwalt}} - {{label|nl|advocaat-generaal}} -| comments = - {{comment|en|high-ranking solicitor }} - {{comment|nl|de advocaat-generaal}} -| rdfs:domain = LegalCase -| rdfs:range = Person -| rdf:type = | rdfs:subPropertyOf = personFunction -| owl:equivalentProperty = -| rdfs:subPropertyOf = dul:isSettingFor -}}OntologyProperty:Solubility2028927342642014-04-04T16:42:33Z{{DatatypeProperty -| rdfs:label@en = solubility -| rdfs:label@de = Löslichkeit -| rdfs:label@nl = oplosbaarheid -| rdfs:domain = ChemicalSubstance -| rdfs:range = xsd:integer -}}OntologyProperty:Solvent20212045528012018-02-07T19:13:49Z{{ObjectProperty -| rdfs:label@en = solvent -| rdfs:label@de = Lösungsmittel -| rdfs:domain = ChemicalSubstance -| rdfs:range = ChemicalSubstance -}}OntologyProperty:SolventWithBadSolubility2028930342652014-04-04T16:42:37Z{{ObjectProperty -| rdfs:label@en = solvent with bad solubility -| rdfs:label@de = Lösungsmittel mit schlechter Löslichkeit -| rdfs:label@nl = slecht oplosbaar in -| rdfs:domain = ChemicalSubstance -| rdfs:range = ChemicalSubstance -}}OntologyProperty:SolventWithGoodSolubility2028928342662014-04-04T16:42:41Z{{ObjectProperty -| rdfs:label@en = solvent with good solubility -| rdfs:label@de = Lösungsmittel mit guter Löslichkeit -| rdfs:label@nl = goed oplosbaar in -| rdfs:domain = ChemicalSubstance -| rdfs:range = ChemicalSubstance -}}OntologyProperty:SolventWithMediocreSolubility2028931342672014-04-04T16:42:45Z{{ObjectProperty -| rdfs:label@en = solvent with mediocre solubility -| rdfs:label@de = Lösungsmittel mit mittelmäßiger Löslichkeit -| rdfs:label@nl = matig oplosbaar in -| rdfs:domain = ChemicalSubstance -| rdfs:range = ChemicalSubstance -}}OntologyProperty:Son20212290535862020-01-30T18:19:07Z{{ObjectProperty -| labels = - {{label|en|son}} - {{label|nl|zoon}} - {{label|de|Sohn}} - {{label|el|υιός}} - {{label|ja|息子}} - {{label|ar|ابن}} -| rdfs:domain = Man -| rdfs:range = Person -| owl:propertyDisjointWith = parent -}}OntologyProperty:SoundRecording20211030453562015-02-16T09:14:28Z{{ObjectProperty -| labels = - {{label|en|sound recording}} -| rdfs:range = Sound -| rdfs:comment@en = Sound recording somehow related to the subject -}}OntologyProperty:Source2021704537082020-09-04T15:38:08Z -{{ObjectProperty -| rdfs:label@en = source -| rdfs:label@de = Quelle -| rdfs:label@el = πηγή -| rdfs:subPropertyOf = dul:hasCommonBoundary -| owl:equivalentProperty = ceo:bronidentificatie -}}OntologyProperty:SourceConfluence2021437365532014-07-08T14:19:51Z -{{ObjectProperty -| rdfs:label@en = source confluence -| rdfs:label@es = lugar de nacimiento -| rdfs:label@el = πηγές -| rdfs:domain = River -| rdfs:subPropertyOf = dul:hasCommonBoundary -}}OntologyProperty:SourceConfluenceCountry2021438365542014-07-08T14:19:54Z -{{ObjectProperty -| rdfs:label@en = source confluence country -| rdfs:domain = River -| rdfs:range = Country -| rdfs:subPropertyOf = dul:hasLocation -}}OntologyProperty:SourceConfluenceElevation202143982762010-05-28T13:42:27Z{{DatatypeProperty -| rdfs:label@en = source confluence elevation -| rdfs:range = Length -}}OntologyProperty:SourceConfluenceMountain2021440365552014-07-08T14:19:57Z -{{ObjectProperty -| rdfs:label@en = source confluence mountain -| rdfs:domain = River -| rdfs:range = Mountain -| rdfs:subPropertyOf = dul:nearTo -}}OntologyProperty:SourceConfluencePlace2021441365562014-07-08T14:20:00Z -{{ObjectProperty -| rdfs:label@en = source confluence place -| rdfs:domain = River -| rdfs:range = Place -| rdfs:subPropertyOf = dul:hasLocation -}}OntologyProperty:SourceConfluencePosition2021442365572014-07-08T14:20:03Z -{{ObjectProperty -| rdfs:label@en = source confluence position -| rdfs:domain = River -| rdfs:range = geo:SpatialThing -| rdfs:subPropertyOf = dul:hasLocation -}}OntologyProperty:SourceConfluenceRegion2021443365582014-07-08T14:20:06Z -{{ObjectProperty -| rdfs:label@en = source confluence region -| rdfs:domain = River -| rdfs:range = Place -| rdfs:subPropertyOf = dul:hasLocation -}}OntologyProperty:SourceConfluenceState2021444365592014-07-08T14:20:09Z -{{ObjectProperty -| rdfs:label@en = source confluence state -| rdfs:domain = River -| rdfs:range = PopulatedPlace -| rdfs:subPropertyOf = dul:hasLocation -}}OntologyProperty:SourceCountry2021445529302018-02-28T09:04:07Z -{{ObjectProperty -| rdfs:label@en = source country -| rdfs:domain = Stream -| rdfs:range = Country -| owl:equivalentProperty = dul:hasLocation -}}OntologyProperty:SourceDistrict2021446365612014-07-08T14:20:15Z -{{ObjectProperty -| rdfs:label@en = source district -| rdfs:range = PopulatedPlace -| rdfs:subPropertyOf = dul:hasLocation -}}OntologyProperty:SourceElevation202144782772010-05-28T13:42:36Z{{DatatypeProperty -| rdfs:label@en = source elevation -| rdfs:range = Length -}}OntologyProperty:SourceMountain2021448365622014-07-08T14:20:18Z -{{ObjectProperty -| rdfs:label@en = source mountain -| rdfs:range = Mountain -| rdfs:subPropertyOf = dul:hasLocation -}}OntologyProperty:SourcePlace2021449365632014-07-08T14:20:21Z -{{ObjectProperty -| rdfs:label@en = source place -| rdfs:range = PopulatedPlace -| rdfs:subPropertyOf = dul:hasLocation -}}OntologyProperty:SourcePosition2021450365642014-07-08T14:20:25Z -{{ObjectProperty -| rdfs:label@en = source position -| rdfs:range = geo:SpatialThing -| rdfs:subPropertyOf = dul:hasLocation -}}OntologyProperty:SourceRegion2021451365652014-07-08T14:20:28Z -{{ObjectProperty -| rdfs:label@en = source region -| rdfs:range = PopulatedPlace -| rdfs:subPropertyOf = dul:hasLocation -}}OntologyProperty:SourceState2021452365662014-07-08T14:20:32Z -{{ObjectProperty -| rdfs:label@en = source state -| rdfs:range = PopulatedPlace -| rdfs:subPropertyOf = dul:hasLocation -}}OntologyProperty:SourceText20210419394232015-01-19T17:02:05Z{{DatatypeProperty -| labels= -{{label|en|sourceText}} -| comments= -{{comment|en|Source of something (eg an image) as text. Use dct:source if the source is described using a resource}} -| rdfs:domain = owl:Thing -| rdfs:range = rdf:langString -}}OntologyProperty:SouthEastPlace20211088455962015-03-08T14:10:40Z{{ObjectProperty -| rdfs:label@en = south-east place -| rdfs:label@fr = lieu au sud-est -| rdfs:comment@fr = indique un autre lieu situé au sud-est. -| rdfs:comment@en = indicates another place situated south-east. -| rdfs:domain = Place -| rdfs:range = Place -| owl:inverseOf = northWestPlace -| rdfs:subPropertyOf = closeTo - -}}OntologyProperty:SouthPlace20211083455942015-03-08T14:08:55Z{{ObjectProperty -| rdfs:label@en = south place -| rdfs:label@fr = lieu au sud -| rdfs:comment@fr = indique un autre lieu situé au sud. -| rdfs:comment@en = indicates another place situated south. -| rdfs:domain = Place -| rdfs:range = Place -| owl:inverseOf = northPlace -| rdfs:subPropertyOf = closeTo -}}OntologyProperty:SouthWestPlace20211090455952015-03-08T14:09:48Z{{ObjectProperty -| rdfs:label@en = south-west place -| rdfs:label@fr = lieu au sud-ouest -| rdfs:comment@fr = indique un autre lieu situé au sud-ouest. -| rdfs:comment@en = indicates another place situated south-west. -| rdfs:domain = Place -| rdfs:range = Place -| owl:inverseOf = northEastPlace -| rdfs:subPropertyOf = closeTo - -}}OntologyProperty:SovereignCountry2027054365672014-07-08T14:20:35Z -{{ObjectProperty -| labels = - {{label|en|sovereign country}} - {{label|de|souveräner Staat}} -| rdfs:domain = Place -| rdfs:range = PopulatedPlace -| rdfs:subPropertyOf = dul:isPartOf -}}OntologyProperty:Space2026427234692013-01-22T13:09:07Z{{DatatypeProperty -| labels = -{{label|en|space}} -{{label|de|Raum}} -| rdfs:domain = Building -| rdfs:range = xsd:nonNegativeInteger -}}OntologyProperty:Spacecraft2021453365682014-07-08T14:20:38Z -{{ObjectProperty -| rdfs:label@en = spacecraft -| rdfs:label@de = Raumfahrzeug -| rdfs:label@el = διαστημόπλοιο -| rdfs:label@fr = véhicule spatial -| rdfs:domain = SpaceMission -| rdfs:range = Spacecraft -| rdfs:subPropertyOf = dul:hasParticipant -}}OntologyProperty:Spacestation20210461397242015-01-27T16:48:28Z{{ObjectProperty -| labels = - {{label|en|spacestation}} - {{label|de|raumstation}} -| comments = - {{comment|en|space station that has been visited during a space mission}} - {{comment|de|Raumstation, die während einer Raummission besucht wurde}} -| rdfs:domain = SpaceMission -| rdfs:range = SpaceStation -}}OntologyProperty:SpacewalkBegin2021454343082014-04-08T13:36:12Z{{DatatypeProperty -| rdfs:label@en = spacewalk begin -| rdfs:label@de = Beginn Weltraumspaziergang -| rdfs:domain = SpaceMission -| rdfs:range = xsd:date -}}OntologyProperty:SpacewalkEnd2021455343092014-04-08T13:36:15Z{{DatatypeProperty -| rdfs:label@en = spacewalk end -| rdfs:label@de = Ende Weltraumspaziergang -| rdfs:domain = SpaceMission -| rdfs:range = xsd:date -}}OntologyProperty:Speaker2022358344602014-04-08T14:49:29Z{{DatatypeProperty -| rdfs:label@en = speaker -| rdfs:comment@en = number of office holder -| rdfs:range = xsd:integer -}}OntologyProperty:SpecialEffects2025147365692014-07-08T14:20:41Z -{{ObjectProperty -| rdfs:domain = Film -| rdfs:range = Person -| rdfs:label@en = special effects -| rdfs:label@de = Spezialeffekte -| rdfs:comment@en = the person who is responsible for the film special effects -| rdfs:subPropertyOf = dul:coparticipatesWith -}}OntologyProperty:SpecialTrial2027889273942013-07-10T15:23:18Z{{DatatypeProperty -| labels = -{{label|en|special trial}} -| rdfs:range = xsd:nonNegativeInteger -| rdfs:domain = Person -}}OntologyProperty:Specialist2021456522962017-10-08T19:37:56Z{{ObjectProperty -| rdfs:label@en = specialist -| rdfs:label@de = Spezialist -| rdfs:domain = owl:Thing -| rdfs:range = PersonFunction -}}OntologyProperty:Speciality2027700343132014-04-08T13:36:34Z{{DatatypeProperty -| labels = -{{label|en|speciality}} -{{label|de|Spezialität}} -| rdfs:domain = Person -| rdfs:range = xsd:string -}}OntologyProperty:Specialization20211904522902017-10-08T19:15:30Z{{ObjectProperty -| labels = - {{label|en|specialization}} - {{label|de|Spezialisierung}} -| comments = - {{comment|en|Points out the subject or thing someone or something is specialized in (for).}} - {{comment|de|Verweist of den Gegenstand (auch fig.) auf welchen jemand oder etwas spezialisiert ist.}} -| rdfs:domain = owl:Thing -| rdfs:range = owl:Thing -}}OntologyProperty:Species2021457520162017-04-07T09:29:00Z{{ObjectProperty -| labels = - {{label|en|species}} - {{label|de|Spezies}} - {{label|nl|soort}} - {{label|ja|種_(分類学) }} - {{label|fr|espèce}} -| rdfs:domain = Species -| rdfs:range = Species -| rdfs:subPropertyOf = dul:specializes -}}OntologyProperty:SpeedLimit2023427124272011-04-26T13:14:35Z{{DatatypeProperty -| rdfs:label@en = speed limit -| rdfs:label@de = Tempolimit -| rdfs:domain= RouteOfTransportation -| rdfs:range = Speed -}}OntologyProperty:Spike2024438344592014-04-08T14:48:09Z{{DatatypeProperty -| rdfs:label@en = spike -| rdfs:label@de = schmettern -| rdfs:label@el = καρφί -| rdfs:label@tr = smaç -| rdfs:domain = VolleyballPlayer -| rdfs:range = xsd:string -}}OntologyProperty:SplitFromParty2023724365712014-07-08T14:20:48Z -{{ObjectProperty -| rdfs:label@en = split from party -| rdfs:label@de = Abspaltung von Partei -| rdfs:domain = PoliticalParty -| rdfs:range = PoliticalParty -| rdfs:subPropertyOf = dul:sameSettingAs -}}OntologyProperty:SpokenIn2021470365722014-07-08T14:20:52Z -{{ObjectProperty -| labels = - {{label|en|spoken in}} - {{label|de|gesprochen in}} - {{label|nl|gesproken in}} -| rdfs:domain = Language -| rdfs:range = PopulatedPlace -| rdfs:subPropertyOf = dul:hasLocation -}}OntologyProperty:Spokesperson2023347365732014-07-08T14:20:56Z -{{ObjectProperty -| rdfs:label@en = spokesperson -| rdfs:label@de = Sprecher -| rdfs:label@pt = porta-voz -| rdfs:domain = PoliticalParty -| rdfs:range = Person -| rdfs:subPropertyOf = dul:sameSettingAs -}}OntologyProperty:Sport2021458365742014-07-08T14:21:00Z -{{ObjectProperty -| labels = - {{label|en|sport}} - {{label|de|Sport}} - {{label|el|άθλημα}} - {{label|fr|sport}} -| rdfs:range = Sport -| rdfs:subPropertyOf = dul:isParticipantIn -}}OntologyProperty:SportCountry2023534365752014-07-08T14:21:05Z -{{ObjectProperty -| rdfs:label@en = sport country -| rdfs:label@de = Sportnation -| rdfs:comment@en = The country, for which the athlete is participating in championships -| rdfs:comment@de = Das Land, für das der Sportler an Wettkämpfen teilnimmt -| rdfs:domain = Athlete -| rdfs:range = Country -| rdfs:subPropertyOf = dul:coparticipatesWith -}}OntologyProperty:SportDiscipline2025136365762014-07-08T14:21:21Z -{{ObjectProperty -| rdfs:domain = Person -| rdfs:range = Sport -| labels = - {{label|en|sport discipline}} - {{label|de|Sportdisziplin}} - {{label|fr|discipline sportive}} - {{label|nl|tak van sport}} -| comments = - {{comment|en|the sport discipline the athlete practices, e.g. Diving, or that a board member of a sporting club is focussing at}} -| rdfs:subPropertyOf = dul:isParticipantIn -}}OntologyProperty:SportGoverningBody2022306365772014-07-08T14:21:24Z -{{ObjectProperty -| rdfs:label@en = sport governing body -| rdfs:subPropertyOf = dul:sameSettingAs -}}OntologyProperty:SportSpecialty2025137365782014-07-08T14:21:26Z -{{ObjectProperty -| labels = - {{label|en|sport specialty}} - {{label|nl|sport specialiteit}} -| rdfs:domain = Athlete -| rdfs:range = Sport -| rdfs:comment@en = the sport specialty the athlete practices, e.g. 'Ring' for a men's artistic gymnastics athlete -| rdfs:subPropertyOf = dul:isParticipantIn -}}OntologyProperty:SportsFunction2027888273882013-07-10T15:02:06Z{{DatatypeProperty -| labels = -{{label|en|sports function}} -| rdfs:domain = Person -| rdfs:range = xsd:string -}}OntologyProperty:Spouse2021459535972020-02-17T07:43:22Z{{ObjectProperty -| labels = - {{label|en|spouse}} - {{label|de|Ehepartner}} - {{label|nl|echtgenoot}} - {{label|ja|配偶者}} - {{label|el|σύζυγος}} -| rdfs:domain = Person -| rdfs:range = Person -| owl:equivalentProperty = schema:spouse, wikidata:P26 -| owl:propertyDisjointWith = child -| rdfs:comment@en = the person they are married to -| comments = - {{comment|el|Το άτομο με το οποίο κάποιος είναι παντρεμένος}} -| rdfs:subPropertyOf = dul:sameSettingAs -}}OntologyProperty:SpouseName2027704343212014-04-08T13:37:25Z{{DatatypeProperty -| labels = -{{label|en|spouse name}} -{{label|de|Name des Ehepartners}} -{{label|el|όνομα συζύγου}} -| rdfs:domain = Person -| rdfs:range = xsd:string -}}OntologyProperty:SpurOf2022762365802014-07-08T14:21:33Z -{{ObjectProperty -| rdfs:label@en = spur of -| rdfs:domain = Road -| rdfs:range = Road -| rdfs:subPropertyOf = dul:hasCommonBoundary -}}OntologyProperty:SpurType2021460365812014-07-08T14:21:36Z -{{ObjectProperty -| rdfs:label@en = spur type -| rdfs:domain = Road -| rdfs:subPropertyOf = dul:isClassifiedBy -}}OntologyProperty:SquadNumber2025023165912012-01-14T19:16:55Z{{DatatypeProperty -| rdfs:label@en = squad number -| rdfs:domain = SportsTeamMember -| rdfs:range = xsd:nonNegativeInteger -| rdfs:comment@en = The number that an athlete wears in a team sport. -}}OntologyProperty:Stadium2026091365822014-07-08T14:21:39Z -{{ObjectProperty -| labels = - {{label|en|Stadium}} - {{label|de|Stadion}} - {{label|el|στάδιο}} -| rdfs:range = Stadium -| rdfs:subPropertyOf = dul:sameSettingAs -}}OntologyProperty:Staff2021461525892017-10-31T08:56:00Z{{DatatypeProperty -| rdfs:label@en = staff -| rdfs:label@de = Personal -| rdfs:label@el = προσωπικό -| rdfs:domain = Organisation -| rdfs:range = xsd:nonNegativeInteger -}}OntologyProperty:StarRating2022510100132010-10-25T09:40:59Z{{DatatypeProperty -| rdfs:label@en = star rating -| rdfs:domain = Hotel -| rdfs:range = xsd:float -}}OntologyProperty:Starring2021463536862020-09-02T18:35:05Z -{{ObjectProperty -| labels = - {{label|en|starring}} - {{label|da|skuespillere}} - {{label|nl|met in de hoofdrol}} - {{label|el|ηθοποιοί}} - {{label|fr|acteur}} -| rdfs:domain = Work -| rdfs:range = Actor -| owl:equivalentProperty = schema:actor,schema:actors, wikidata:P161 -| rdfs:subPropertyOf = dul:sameSettingAs -}}OntologyProperty:Start2027890524552017-10-15T19:27:09Z{{DatatypeProperty -| labels = -{{label|en|start}} -{{label|de|Start}} -| rdfs:range = xsd:date -| rdfs:domain = TimePeriod -}}OntologyProperty:StartCareer2027552267642013-07-01T14:39:14Z{{DatatypeProperty -| labels = -{{label|en|start career}} -| rdfs:domain = Person -| rdfs:range = xsd:string -}}OntologyProperty:StartDate2021464537092020-09-04T15:39:35Z{{DatatypeProperty -| labels = - {{label|en|start date}} -{{label|de|Startdatum}} - {{label|nl|startdatum}} - {{label|fr|date de début}} - {{label|es|fecha de inicio}} -| rdfs:domain = Event -| rdfs:range = xsd:date -| owl:equivalentProperty = schema:startDate, wikidata:P580, ceo:startdatum -| rdfs:comment@en = The start date of the event. -}}OntologyProperty:StartDateTime20210293387982014-12-02T10:49:29Z{{DatatypeProperty -| labels = - {{label|en|start date and time}} - {{label|nl|datum en tijd van begin}} -| rdfs:domain = Event -| rdfs:range = xsd:dateTime -| rdfs:comment@en = The start date and time of the event. -}}OntologyProperty:StartOccupation2027791273752013-07-10T14:37:30Z{{DatatypeProperty -| labels = -{{label|en|start occupation}} -| rdfs:range = xsd:string -}}OntologyProperty:StartPoint2021465523802017-10-14T19:34:51Z -{{ObjectProperty -| rdfs:label@en = start point -| rdfs:label@de = Startpunkt -| rdfs:label@el = σημείο_αρχής -| rdfs:domain = Place -| rdfs:range = Place -| rdfs:subPropertyOf = dul:hasCommonBoundary -}}OntologyProperty:StartReign2027549271702013-07-09T09:21:56Z{{ObjectProperty -| labels = -{{label|en|start reign}} -| rdfs:domain = Person -| rdfs:range = skos:Concept -}}OntologyProperty:StartWct2027834271502013-07-05T15:57:17Z{{DatatypeProperty -| labels = -{{label|en|start xct}} -| rdfs:domain = Person -| rdfs:range = xsd:string -}}OntologyProperty:StartWqs2027833271492013-07-05T15:57:06Z{{DatatypeProperty -| labels = -{{label|en|start wqs}} -| rdfs:domain = Person -| rdfs:range = xsd:string -}}OntologyProperty:StartYear2027172343282014-04-08T13:37:51Z{{DatatypeProperty -| labels = -{{label|en|start year}} -{{label|de|Startjahr}} -| rdfs:range = xsd:gYear -}}OntologyProperty:StartYearOfInsertion202146682842010-05-28T13:43:38Z{{DatatypeProperty -| rdfs:label@en = start year of insertion -| rdfs:domain = AutomobileEngine -| rdfs:range = xsd:gYear -}}OntologyProperty:StartYearOfSales202146782852010-05-28T13:43:47Z{{DatatypeProperty -| rdfs:label@en = start year of sales -| rdfs:domain = Sales -| rdfs:range = xsd:gYear -}}OntologyProperty:StatName2027655269122013-07-03T12:17:17Z{{DatatypeProperty -| labels = -{{label|en|stat name}} -| rdfs:domain = owl:Thing -| rdfs:range = xsd:string -}}OntologyProperty:StatValue2027656269152013-07-03T12:20:30Z{{DatatypeProperty -| labels = -{{label|en|stat value}} -| rdfs:domain = owl:Thing -| rdfs:range = xsd:double -}}OntologyProperty:State2021468365852014-07-08T14:21:49Z -{{ObjectProperty -| labels = - {{label|en|state}} - {{label|de|Staat}} - {{label|nl|staat}} - {{label|el|νομός}} - {{label|pl|stan}} -| rdfs:domain = owl:Thing -| rdfs:range = PopulatedPlace -| rdfs:subPropertyOf = dul:hasLocation -}}OntologyProperty:StateDelegate2022364365862014-07-08T14:21:52Z -{{ObjectProperty -| rdfs:label@en = state delegate -| rdfs:range = Person -| rdfs:subPropertyOf = dul:sameSettingAs -}}OntologyProperty:StateOfOrigin2021469365872014-07-08T14:21:55Z -{{ObjectProperty -| rdfs:label@en = state of origin -| rdfs:domain = Person -| rdfs:range = Country -| rdfs:subPropertyOf = dul:hasLocation -}}OntologyProperty:StateOfOriginPoint2027895274082013-07-10T15:51:50Z{{DatatypeProperty -| labels = -{{label|en|state of origin point}} -| rdfs:range = xsd:nonNegativeInteger -| rdfs:domain = Athlete -}}OntologyProperty:StateOfOriginTeam2027894274072013-07-10T15:50:48Z{{ObjectProperty -| labels = -{{label|en|state of origin team}} -| rdfs:domain = Athlete -| rdfs:range = SportsTeam -}}OntologyProperty:StateOfOriginYear2027893274062013-07-10T15:49:57Z{{DatatypeProperty -| labels = -{{label|en|state of origin year}} -| rdfs:range = xsd:string -| rdfs:domain = Athlete -}}OntologyProperty:StationEvaDuration202147282862010-05-28T13:43:55Z{{DatatypeProperty -| rdfs:label@en = station EVA duration -| rdfs:domain = SpaceMission -| rdfs:range = Time -}}OntologyProperty:StationStructure2023229222662013-01-11T00:16:45Z{{DatatypeProperty -| labels = -{{label|en|station structure}} -{{label|nl|station structuur}} -| rdfs:domain = Station -| rdfs:range = xsd:string -| rdfs:comment@en = Type of station structure (underground, at-grade, or elevated). -}}OntologyProperty:StationVisitDuration202147382872010-05-28T13:44:01Z{{DatatypeProperty -| rdfs:label@en = station visit duration -| rdfs:domain = SpaceMission -| rdfs:range = Time -}}OntologyProperty:Statistic2027870343302014-04-08T13:38:00Z{{ObjectProperty -| labels = -{{label|en|statistic}} -{{label|de|statistisch}} -| rdfs:domain = Statistic -}}OntologyProperty:StatisticLabel202147489072010-05-28T16:30:01Z{{ObjectProperty -| rdfs:label@en = statistic label -| rdfs:domain = BaseballPlayer -}}OntologyProperty:StatisticValue2021475343312014-04-08T13:38:04Z{{DatatypeProperty -| rdfs:label@en = statistic value -| rdfs:label@de = Statistikwert -| rdfs:domain = BaseballPlayer -| rdfs:range = xsd:float -}}OntologyProperty:StatisticYear202147682892010-05-28T13:44:16Z{{DatatypeProperty -| rdfs:label@en = statistic year -| rdfs:domain = BaseballPlayer -| rdfs:range = xsd:date -}}OntologyProperty:Status2021477537822020-10-21T08:20:35Z{{DatatypeProperty -| labels = -{{label|en|status}} -{{label|de|Status}} -{{label|nl|status}} -{{label|fr|statut}} -{{label|es|estatus}} -| rdfs:range = xsd:string -}}OntologyProperty:StatusManager2027800271022013-07-05T13:20:53Z{{DatatypeProperty -| labels = -{{label|en|status manager}} -| rdfs:domain = Person -| rdfs:range = xsd:string -}}OntologyProperty:StatusYear2027299486122015-08-06T12:17:59Z{{DatatypeProperty -| labels = -{{label|en|status year}} -| rdfs:domain = Place -| rdfs:range = xsd:string -}}OntologyProperty:StellarClassification20211154465382015-03-19T08:45:39Z{{ObjectProperty -| labels = -{{label|en|stellar classification}} -{{label|nl|spectraalklasse}} -| rdfs:domain = CelestialBody -| rdfs:range = skos:OrderedCollection -}}OntologyProperty:StockExchange2029373347442014-05-09T09:24:43Z{{DatatypeProperty -| labels = -{{label|en|Registered at Stock Exchange}} -{{label|nl|beurs waaraan genoteerd}} -| rdfs:domain = Company -| rdfs:range = xsd:string -}}OntologyProperty:StoryEditor2021478365882014-07-08T14:21:58Z -{{ObjectProperty -| rdfs:label@en = story editor -| rdfs:domain = TelevisionShow -| rdfs:range = Person -| rdfs:subPropertyOf = dul:sameSettingAs -}}OntologyProperty:Strength2021479343332014-04-08T13:38:13Z{{DatatypeProperty -| rdfs:label@en = strength -| rdfs:label@de = Stärke -| rdfs:label@el = δύναμη -| rdfs:domain = MilitaryConflict -| rdfs:range = xsd:string -}}OntologyProperty:StructuralSystem2021480365892014-07-08T14:22:02Z -{{ObjectProperty -| labels = - {{label|en|structural system}} - {{label|de|Tragsystem}} - {{label|nl|bouwmethode}} - {{label|el|κατασκευαστικό σύστημα}} -| rdfs:domain = Building -| rdfs:subPropertyOf = dul:hasConstituent -}}OntologyProperty:Student2027541520012017-03-22T16:51:09Z -{{ObjectProperty -| labels = - {{label|en|student}} -| rdfs:domain = Person -| rdfs:range = Person -| rdfs:subPropertyOf = dul:coparticipatesWith -}}OntologyProperty:Style2024780273652013-07-10T14:10:08Z{{ObjectProperty -| rdfs:label@en = style -| rdfs:label@de = stil -| rdfs:label@it = stile -| rdfs:label@es = estilo -| rdfs:domain = Artist -}}OntologyProperty:StylisticOrigin2021483365912014-07-08T14:22:08Z -{{ObjectProperty -| rdfs:label@en = stylistic origin -| rdfs:label@de = stilistische Herkunft -| rdfs:label@pt = origens estilísticas -| rdfs:domain = MusicGenre -| rdfs:range = MusicGenre -| rdfs:subPropertyOf = dul:sameSettingAs -}}OntologyProperty:SubClassis2029312327562014-03-17T13:49:28Z{{ObjectProperty -| labels = -{{label|en|sub-classis}} -{{label|nl|onderklasse}} -| rdfs:domain = Species -| rdfs:range = owl:Thing -| rdfs:subPropertyOf = classis -|comments = -{{comment|en|a subdivision within a Species classis}} -}}OntologyProperty:SubFamily2029328343362014-04-08T13:38:25Z{{ObjectProperty -| labels = -{{label|en|sub-family}} -{{label|de|Unterfamilie}} -{{label|nl|onderfamilie}} -| rdfs:domain = Species -| rdfs:range = Taxon -}}OntologyProperty:SubGenus20210211378872014-09-24T11:18:42Z{{ObjectProperty -| labels = - {{label|en|subgenus}} - {{label|de|Untergattung}} - {{label|nl|ondergeslacht}} -| comments = - {{comment|en|A rank in the classification of organisms, below genus ; a taxon at that rank}} -| rdfs:domain = Species -| rdfs:subPropertyOf = dul:specializes -}}OntologyProperty:SubMunicipalityType2026573343372014-04-08T13:38:38Z{{DatatypeProperty -| labels = -{{label|en|type of municipality}} -{{label|de|Art der Gemeinde}} -{{label|nl|type gemeente}} -| rdfs:domain = SubMunicipality -| rdfs:range = xsd:string -}}OntologyProperty:SubOrder20210212378972014-09-24T11:52:53Z{{ObjectProperty -| labels = -{{label|en|sub-order}} -{{label|nl|onderorde}} -| rdfs:domain = Species -}}OntologyProperty:SubPrefecture2027131256642013-05-26T15:24:48Z{{DatatypeProperty -| labels = -{{label|en|subprefecture}} -| rdfs:domain = Place -| rdfs:range = xsd:string -}}OntologyProperty:SubTribus2029310327532014-03-17T10:24:57Z{{ObjectProperty -| labels = -{{label|en|subtribus}} -{{label|nl|onderstam}} -| comments = -| rdfs:domain = Species -| rdfs:range = Species -| rdfs:subPropertyOf = Tribus -}}OntologyProperty:Subdivision2027058522922017-10-08T19:18:00Z{{ObjectProperty -| labels = -{{label|en|subdivision}} -| rdfs:domain = owl:Thing -| rdfs:range = owl:Thing -}}OntologyProperty:SubdivisionLink2027056256382013-05-26T14:16:18Z{{DatatypeProperty -| labels = -{{label|en|subdivision link}} -| rdfs:domain = Place -| rdfs:range = xsd:string -}}OntologyProperty:SubdivisionName2027057365922014-07-08T14:22:11Z -{{ObjectProperty -| labels = - {{label|en|subdivision name of the island}} -| rdfs:domain = Island -| rdfs:range = Place -| rdfs:subPropertyOf = dul:hasPart -}}OntologyProperty:Subdivisions2021687522912017-10-08T19:16:55Z{{DatatypeProperty -| rdfs:label@en = subdivisions -| rdfs:domain = owl:Thing -| rdfs:range = xsd:nonNegativeInteger -}}OntologyProperty:SubjectOfPlay2023829133612011-06-06T11:37:02Z{{DatatypeProperty -| rdfs:label@en = subject of play -| rdfs:domain = Play -| rdfs:range = xsd:string -| rdfs:comment@en = The overall subject matter dealt with by the play. -}}OntologyProperty:SubjectTerm2029127316122014-02-10T13:59:07Z{{ DatatypeProperty -| labels = -{{label|en|subject term}} -{{label|nl|onderwerpsaanduiding}} -| rdfs:comment@en = The subject as a term, possibly a term from a formal classification -| rdfs:domain = Work -| rdfs:range = xsd:string -}}OntologyProperty:SublimationPoint202250392352010-07-21T11:01:32Z{{DatatypeProperty -| rdfs:label@en = sublimation point -| rdfs:range = Temperature -}}OntologyProperty:SuborbitalFlights2021485104262010-11-10T14:51:17Z{{DatatypeProperty -| rdfs:label@en = suborbital flights -| rdfs:domain = YearInSpaceflight -| rdfs:range = xsd:nonNegativeInteger -}}OntologyProperty:Subprefecture2027017365932014-07-08T14:22:16Z -{{ObjectProperty -| labels = - {{label|en|subprefecture}} -| rdfs:domain = Department -| rdfs:range = PopulatedPlace -| rdfs:subPropertyOf = dul:hasPart -}}OntologyProperty:Subregion2021486365942014-07-08T14:22:20Z -{{ObjectProperty -| rdfs:label@en = subregion -| rdfs:domain = Place -| rdfs:range = Place -| rdfs:subPropertyOf = dul:hasPart -}}OntologyProperty:SubsequentInfrastructure2021487365952014-07-08T14:22:37Z -{{ObjectProperty -| labels = - {{label|en|subsequent infrastructure}} - {{label|de|spätere Infrastruktur}} - {{label|nl|volgende infrastructuur}} -| rdfs:domain = Infrastructure -| rdfs:range = Infrastructure -| rdfs:subPropertyOf = dul:sameSettingAs -}}OntologyProperty:SubsequentWork2021488365962014-07-08T14:22:40Z -{{ObjectProperty -| labels = - {{label|en|subsequent work}} - {{label|de|nachfolgende Arbeiten}} - {{label|nl|vervolg werk}} - {{label|el|επόμενη δημιουργία}} -| rdfs:domain = Work -| rdfs:range = Work -| rdfs:subPropertyOf = dul:sameSettingAs -}}OntologyProperty:Subsidiary2021489365972014-07-08T14:22:43Z -{{ObjectProperty -| labels = - {{label|en|subsidiary}} - {{label|pt|treinador}} - {{label|fr|filiale}} -| rdfs:domain = Company -| rdfs:range = Company -| rdfs:subPropertyOf = dul:sameSettingAs -}}OntologyProperty:Subsystem2027144343402014-04-08T13:38:48Z{{DatatypeProperty -| labels = -{{label|en|subsystem}} -{{label|de|Teilsystem}} -| rdfs:domain = Place -| rdfs:range = xsd:string -}}OntologyProperty:SubsystemLink2027143256822013-05-26T16:08:22Z{{DatatypeProperty -| labels = -{{label|en|subsystem link}} -| rdfs:domain = Place -| rdfs:range = xsd:string -}}OntologyProperty:Subtitle2022299221762013-01-10T20:57:19Z{{DatatypeProperty -| labels = -{{label|en|subtitle}} -{{label|de|Untertitel}} -{{label|el|υπότιτλος}} -{{label|nl|onderschrift}} -{{label|pt|legenda}} -| rdfs:range = xsd:string -}}OntologyProperty:SuccessfulLaunches2021490343412014-04-08T13:38:51Z{{DatatypeProperty -| rdfs:label@en = successful launches -| rdfs:label@de = erfolgreiche Starts -| rdfs:range = xsd:nonNegativeInteger -}}OntologyProperty:Successor2021491365982014-07-08T14:22:46Z -{{ObjectProperty -| labels = - {{label|en|successor}} - {{label|nl|opvolger}} - {{label|de|Nachfolger}} - {{label|ja|後任者}} -| rdfs:subPropertyOf = dul:sameSettingAs -}}OntologyProperty:SudocId20211043528872018-02-13T11:00:45Z{{DatatypeProperty -| labels = -{{label|en|SUDOC id}} -| comments = -{{comment|en|Système universitaire de documentation id (French collaborative library catalog). -http://www.idref.fr/$1}} -| rdfs:domain = owl:Thing -| rdfs:range = xsd:string -| owl:equivalentProperty = wikidata:P269 -| rdfs:subPropertyOf = code -}}OntologyProperty:SummerAppearances2021492365992014-07-08T14:22:49Z -{{ObjectProperty -| rdfs:label@en = summer appearances -| rdfs:domain = OlympicResult -| rdfs:range = OlympicResult -| rdfs:subPropertyOf = dul:sameSettingAs -}}OntologyProperty:SummerTemperature202149382942010-05-28T13:44:53Z{{DatatypeProperty -| rdfs:label@en = summer temperature -| rdfs:domain = Settlement -| rdfs:range = Temperature -}}OntologyProperty:SuperFamily2029329328982014-03-23T20:22:12Z{{ObjectProperty -| labels = -{{label|en|super-family}} -{{label|nl|superfamilie}} -| rdfs:domain = Species -| rdfs:range = Taxon -}}OntologyProperty:SuperOrder20210213378982014-09-24T11:53:55Z{{ObjectProperty -| labels = -{{label|en|super-order}} -{{label|nl|bovenorde}} -| rdfs:domain = Species -}}OntologyProperty:SuperTribus2029311327542014-03-17T10:25:37Z{{ObjectProperty -| labels = -{{label|en|supertribus}} -{{label|nl|bovenstam}} -| comments = -| rdfs:domain = Species -| rdfs:range = Species -| rdfs:subPropertyOf = Tribus -}}OntologyProperty:SuperbowlWin2027686269582013-07-04T09:29:06Z{{DatatypeProperty -| labels = -{{label|en|superbowl win}} -| rdfs:domain = Athlete -| rdfs:range = xsd:string -}}OntologyProperty:Superintendent2021494366002014-07-08T14:22:52Z -{{ObjectProperty -| labels = - {{label|en|superintendent}} - {{label|de|Leiter}} - {{label|nl|opzichter}} -| rdfs:domain = Organisation -| rdfs:range = Person -| rdfs:subPropertyOf = dul:sameSettingAs -}}OntologyProperty:SupplementalDraftRound2021495174762012-04-27T22:09:22Z{{DatatypeProperty -| rdfs:label@en = supplemental draft round -| rdfs:domain = Athlete -| rdfs:range = xsd:string -}}OntologyProperty:SupplementalDraftYear202149682962010-05-28T13:45:10Z{{DatatypeProperty -| rdfs:label@en = supplemental draft year -| rdfs:domain = GridironFootballPlayer -| rdfs:range = xsd:gYear -}}OntologyProperty:Supplies2021497366012014-07-08T14:22:56Z -{{ObjectProperty -| rdfs:label@en = supplies -| rdfs:label@el = παροχές -| rdfs:domain = Artery -| rdfs:range = AnatomicalStructure -| rdfs:subPropertyOf = dul:coparticipatesWith -}}OntologyProperty:Supply2027097344512014-04-08T14:38:21Z{{ObjectProperty -| labels = -{{label|en|supply}} -| rdfs:domain = Place -| rdfs:range = Place -}}OntologyProperty:SuppreddedDate2021498433312015-02-06T14:56:37Z{{DatatypeProperty -| labels = -{{label|en|suppredded date}} -{{label|nl|oppressie datum}} -{{label|bg|дата на забраната}} -| rdfs:domain = Saint -| rdfs:range = xsd:date -|rdfs:comment@en=Date when the Church forbade the veneration of this saint. -(I hope that's what it means, I don't know why the original author didn't document it) -}}OntologyProperty:SurfaceArea2021499537882020-10-23T09:44:25Z{{DatatypeProperty -| rdfs:label@en = surface area -| rdfs:label@de = Oberfläche -| rdfs:label@el = έκταση -| rdfs:domain = Planet -| rdfs:range = Area -}}OntologyProperty:SurfaceFormOccurrenceOffset202244591382010-06-23T15:03:54Z{{DatatypeProperty -| rdfs:label@en = position in which a surface occurs in a text -| rdfs:range = xsd:string -}}OntologyProperty:SurfaceGravity2024360236632013-02-07T07:17:00Z{{DatatypeProperty - |rdfs:label@en=surface gravity - |rdfs:domain=Planet - |rdfs:range=Mass -}}OntologyProperty:SurfaceType20211781518372017-01-13T22:57:56Z{{DatatypeProperty -| labels = - {{label|en|type of surface}} - {{label|fr|type de surface}} - {{label|es|tipo de surperficie}} - {{label|cs|typ povrchu}} -| rdfs:range = xsd:string -}}OntologyProperty:SuspectedCases20212298536092020-04-10T06:20:32Z{{DatatypeProperty -| labels = -{{label|en|Suspected Cases}} -| rdfs:comment@en = Number of suspected cases in a pandemic -| rdfs:domain = Outbreak -| rdfs:range = xsd:integer -}}OntologyProperty:SwimmingStyle2029268343462014-04-08T13:39:13Z{{DatatypeProperty -| rdfs:label@en = Swimming style -| rdfs:label@de = Schwimmstil -| rdfs:label@nl = Zwemslag -| rdfs:domain = Swimmer -| rdfs:range = xsd:string -}}OntologyProperty:Symbol2021500393642015-01-16T20:51:21Z{{DatatypeProperty -| rdfs:label@en = Symbol -| rdfs:label@nl = symbool -| rdfs:label@de = Symbol -| rdfs:comment@en = HUGO Gene Symbol -| rdfs:domain = Biomolecule -| rdfs:range = xsd:string -}}OntologyProperty:Symptom20211880522172017-10-07T22:21:07Z{{ObjectProperty -| labels = -{{label|de |Symptome}} -{{label|en|symptoms}} -{{label|el|σύμπτωμα}} -{{label|fr |symptômes}} -| rdfs:domain = Disease -| rdfs:range = owl:Thing -}}OntologyProperty:Synonym2021247538002020-12-01T17:54:33Z{{DatatypeProperty -| rdfs:label@en = synonym -| rdfs:label@de = Synonym -| rdfs:label@el = συνώνυμο -| rdfs:label@ja = シノニム -| rdfs:range = xsd:string -| owl:equivalentProperty=wikidata:P5973 -}}OntologyProperty:SystemOfLaw2026604366022014-07-08T14:22:59Z -{{ObjectProperty -| labels = - {{label|en|system of law}} - {{label|de|Rechtssystem}} - {{label|nl|rechtssysteem}} -| comments = - {{comment|en|A referral to the relevant system of law }} -| rdfs:domain = LegalCase -| rdfs:range = SystemOfLaw -| rdf:type = | rdfs:subPropertyOf = -| owl:equivalentProperty = -| rdfs:subPropertyOf = dul:isSettingFor -}}OntologyProperty:SystemRequirements2026411343502014-04-08T13:39:39Z{{DatatypeProperty -| labels = -{{label|en|minimum system requirements}} -{{label|de|Mindestsystemanforderungen}} -| rdfs:domain = owl:Thing -| rdfs:range = xsd:string -}}OntologyProperty:Tag2027074255942013-05-26T12:17:07Z{{DatatypeProperty -| labels = -{{label|en|tag}} -| rdfs:range = xsd:date -}}OntologyProperty:Taoiseach2022333474452015-04-01T15:00:29Z{{ObjectProperty -| rdfs:label@en = taoiseach -| rdfs:label@ga = taoiseach -| rdfs:range = Person -| rdfs:comment@en = head of government of Ireland -| owl:equivalentProperty = wikidata:P6 -}}OntologyProperty:TargetAirport2021502366032014-07-08T14:23:03Z -{{ObjectProperty -| rdfs:label@en = target airport -| rdfs:domain = Airline -| rdfs:range = Airport -| rdfs:subPropertyOf = dul:hasLocation -}}OntologyProperty:TargetSpaceStation2021471366042014-07-08T14:23:06Z -{{ObjectProperty -| rdfs:label@en = target space station station -| rdfs:domain = Spacecraft -| rdfs:range = SpaceStation -| rdfs:subPropertyOf = dul:hasLocation -}}OntologyProperty:Taste2028914343512014-04-08T13:39:47Z{{DatatypeProperty -| labels = -{{label|en|taste or flavour}} -{{label|de|Geschmack oder Aroma}} -{{label|nl|smaak}} -| rdfs:domain = Food -| rdfs:range = xsd:string -}}OntologyProperty:Tattoo2023288242862013-03-08T00:29:00Z{{DatatypeProperty -| rdfs:label@en = tattoo -| rdfs:label@el = τατουάζ -| rdfs:label@de = Tätowierung -| rdfs:label@pt = tatuagem -| rdfs:domain = Person -| rdfs:range = xsd:string -}}OntologyProperty:Taxon2029309327432014-03-15T11:01:45Z{{ObjectProperty -| labels = -{{label|en|has taxon}} -{{label|nl|taxon}} -| rdfs:domain = Species -| rdfs:range = Taxon -}}OntologyProperty:TeachingStaff2023131366052014-07-08T14:23:09Z -{{ObjectProperty -| rdfs:label@en = teaching staff -| rdfs:domain = School -| rdfs:subPropertyOf = dul:hasMember -}}OntologyProperty:Team2021503514472016-08-16T07:40:03Z -{{ObjectProperty -| labels = - {{label|en|team}} - {{label|de|Team}} - {{label|nl|team}} - {{label|el|ομάδα}} - {{label|fr|équipe}} - {{label|ja|チーム}} -| rdfs:range = SportsTeam -| owl:equivalentProperty = wikidata:P54 -| rdfs:subPropertyOf = dul:isSettingFor -}}OntologyProperty:TeamCoached2027691343532014-04-08T13:40:05Z{{ObjectProperty -| labels = -{{label|en|team coached}} -{{label|de|Team gecoacht}} -| rdfs:domain = Athlete -| rdfs:range = SportsTeam -}}OntologyProperty:TeamManager2027799343542014-04-08T13:40:20Z{{ObjectProperty -| labels = -{{label|en|team manager}} -{{label|de|Team-Manager}} -| rdfs:domain = Person -| rdfs:range = SportsTeam -}}OntologyProperty:TeamName2021504348102014-05-14T11:25:22Z{{DatatypeProperty -| rdfs:label@en = team name -| rdfs:label@de = Teamname -| rdfs:label@el = όνομα ομάδας -| rdfs:domain = School -| rdfs:range = rdf:langString -}}OntologyProperty:TeamPoint2027671269412013-07-04T07:47:06Z{{DatatypeProperty -| labels = -{{label|en|team point}} -| rdfs:range = xsd:nonNegativeInteger -| rdfs:domain = Athlete -}}OntologyProperty:TeamSize2022304343562014-04-08T13:40:26Z{{DatatypeProperty -| rdfs:label@en = team size -| rdfs:label@de = Teamgröße -| rdfs:range = xsd:nonNegativeInteger -}}OntologyProperty:TeamTitle2028048282032013-09-03T18:48:43Z{{DatatypeProperty -| labels = -{{label|en|team title}} -| rdfs:domain = Athlete -| rdfs:range = xsd:string -}}OntologyProperty:Technique2024782474432015-04-01T14:55:39Z{{DatatypeProperty -| rdfs:label@en = technique -| rdfs:label@de = technisch -| rdfs:label@el = τεχνική -| rdfs:label@es = técnica -| rdfs:domain = Painting -| rdfs:range = xsd:string -}}OntologyProperty:TelevisionSeries2026097366072014-07-08T14:23:16Z -{{ObjectProperty -| labels = - {{label|en|television series}} - {{label|de|Fernsehserie}} - {{label|el|τηλεοπτικές σειρές}} -| rdfs:range = TelevisionShow -| rdfs:subPropertyOf = dul:hasMember -}}OntologyProperty:TempPlace2029174318582014-02-13T20:17:54Z{{DatatypeProperty -| rdfs:label@en = Temporary Placement in the Music Charts -| rdfs:label@de = vorläufige Chartplatzierung -| rdfs:domain = ChartsPlacements -| rdfs:range = xsd:string -}}OntologyProperty:Temperature2021507343592014-04-08T13:40:37Z{{DatatypeProperty -| rdfs:label@en = temperature -| rdfs:label@de = Temperatur -| rdfs:label@el = θερμοκρασία -| rdfs:label@fr = température -| rdfs:range = Temperature -}}OntologyProperty:TemplateName20211967525462017-10-25T11:37:03Z{{DatatypeProperty -| labels = - {{label|en|template name}} - {{label|de|Templatename}} -| comments = - {{comment|en|DO NOT USE THIS PROPERTY! For internal use only.}} -| rdfs:domain = WikimediaTemplate -| rdfs:range = xsd:string -}}OntologyProperty:Temple2027795343602014-04-08T13:40:41Z{{DatatypeProperty -| labels = -{{label|en|temple}} -{{label|de|Tempel}} -| rdfs:domain = Person -| rdfs:range = xsd:string -}}OntologyProperty:TempleYear2027796270972013-07-05T13:18:11Z{{DatatypeProperty -| labels = -{{label|en|temple year}} -| rdfs:domain = Person -| rdfs:range = xsd:string -}}OntologyProperty:Tenant2021508492012015-10-14T13:03:12Z{{ObjectProperty -| labels = - {{label|en|tenant}} - {{label|de|Mieter}} - {{label|nl|huurder}} - {{label|el|ενοικιαστής}} - {{label|fr|locataire}} -| rdfs:domain = ArchitecturalStructure -| rdfs:range = Organisation -| rdfs:subPropertyOf = dul:sameSettingAs -}}OntologyProperty:TennisSurfaceType2026391236622013-02-05T18:49:38Z{{DatatypeProperty -| labels = - {{label|en|type of tennis surface}} - {{label|fr|type de surface (tennis)}} - {{label|es|tipo de surperficie(tennis}} - {{label|nl|type speelgrond}} -| comments = - {{comment|en|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.<ref>http://en.wikipedia.org/wiki/Tennis#Surface</ref>}} -| rdfs:range = xsd:string -}} - -== References == - -<references/>OntologyProperty:TermOfOffice2027271343622014-04-08T13:40:50Z{{DatatypeProperty -| labels = -{{label|en|term of office}} -{{label|de|Amtszeit}} -| rdfs:domain = PopulatedPlace -| rdfs:range = xsd:string -}}OntologyProperty:TermPeriod2025937366092014-07-08T14:23:24Z -{{ObjectProperty -| labels = - {{label|en|term period}} - {{label|el|χρονική περίοδος}} -| rdfs:range = TimePeriod -| rdfs:subPropertyOf = dul:hasSetting -}}OntologyProperty:Territory2021509366102014-07-08T14:23:28Z -{{ObjectProperty -| rdfs:label@en = territory -| rdfs:label@de = Gebiet -| rdfs:label@es = territorio -| rdfs:domain = MilitaryConflict, AdministrativeRegion -| rdfs:range = PopulatedPlace -| rdfs:subPropertyOf = dul:hasParticipant -}}OntologyProperty:TerytCode2024204483762015-06-16T06:18:10Z{{ObjectProperty -| rdfs:label@en = TERYT code -| rdfs:label@pl = kod TERYT -| rdfs:domain = PopulatedPlace -| rdfs:comment@en = indexing code used by the Polish National Official Register of the Territorial Division of the Country (TERYT) to identify various entities -| rdfs:subPropertyOf = dul:isClassifiedBy -| owl:equivalentProperty = wikidata:P1653 -}}OntologyProperty:Tessitura2027755270422013-07-04T14:38:22Z{{DatatypeProperty -| labels = -{{label|en|tessitura}} -| rdfs:domain = Person -| rdfs:range = xsd:string -}}OntologyProperty:Testaverage202151083022010-05-28T13:45:57Z{{DatatypeProperty -| rdfs:label@en = testaverage -| rdfs:domain = School -| rdfs:range = xsd:float -}}OntologyProperty:Theology2026166343642014-04-08T13:40:57Z{{DatatypeProperty -| rdfs:label@en = Theology -| rdfs:label@de = Theologie -| rdfs:label@el = Θεολογία -| rdfs:domain = ChristianDoctrine -| rdfs:range = xsd:string -}}OntologyProperty:Third2027892273972013-07-10T15:23:39Z{{DatatypeProperty -| labels = -{{label|en|third}} -| rdfs:range = xsd:nonNegativeInteger -| rdfs:domain = Person -}}OntologyProperty:ThirdCommander2021511366122014-07-08T14:23:33Z -{{ObjectProperty -| rdfs:label@en = third commander -| rdfs:domain = MilitaryUnit -| rdfs:range = Person -| rdfs:subPropertyOf = dul:sameSettingAs -}}OntologyProperty:ThirdDriver2021512366132014-07-08T14:23:36Z -{{ObjectProperty -| rdfs:label@en = third driver -| rdfs:label@de = dritter Fahrer -| rdfs:domain = GrandPrix -| rdfs:range = Person -| rdfs:subPropertyOf = dul:hasParticipant -}}OntologyProperty:ThirdDriverCountry2021513366142014-07-08T14:23:40Z -{{ObjectProperty -| rdfs:label@en = third driver country -| rdfs:domain = GrandPrix -| rdfs:range = Country -| rdfs:subPropertyOf = dul:hasParticipant -}}OntologyProperty:ThirdPlace2028080343662014-04-08T13:41:06Z{{DatatypeProperty -| labels = -{{label|en|third place}} -{{label|de|dritter Platz}} -| rdfs:domain = owl:Thing -| rdfs:range = xsd:string -}}OntologyProperty:ThirdTeam2021514366152014-07-08T14:23:43Z -{{ObjectProperty -| labels = - {{label|en|third team}} - {{label|de|dritte Mannschaft}} - {{label|el|τρίτη ομάδα}} -| rdfs:domain = GrandPrix -| rdfs:range = SportsTeam -| rdfs:subPropertyOf = dul:hasParticipant -}}OntologyProperty:ThrowingSide2021515132352011-05-30T15:28:39Z{{DatatypeProperty -| rdfs:label@en = throwing side -| rdfs:domain = BaseballPlayer -| rdfs:range = xsd:string -| rdfs:comment = The side the player throws, Left, Right, or Unknown. -}}OntologyProperty:Thumbnail2024377388762014-12-14T14:05:42Z{{Reserved for DBpedia}} - - -{{ObjectProperty -| labels = - {{label|en|thumbnail}} -| comments = - {{comment|en|Reserved for DBpedia. {{Reserved for DBpedia}}}} -| rdfs:range = Image -| rdfs:subPropertyOf = dul:isExpressedBy -}}OntologyProperty:ThumbnailCaption2026774270282013-07-04T13:49:15Z{{DatatypeProperty -| labels = -{{label|en|thumbnail caption}} -| rdfs:domain = owl:Thing -| rdfs:range = xsd:string -}}OntologyProperty:Tie2027589344642014-04-08T14:58:11Z{{DatatypeProperty -| labels = -{{label|en|tie}} -{{label|de|Unentschieden}} -| rdfs:domain = Boxer -| rdfs:range = xsd:nonNegativeInteger -}}OntologyProperty:Time2028085515102016-09-18T10:51:49Z{{DatatypeProperty -| labels = - {{label|en|time}} - {{label|nl|tijd}} - {{label|de|Zeit}} - {{label|el|χρόνος}} -| comments = - {{comment|el|Χρόνος χαρακτηρίζεται η ακριβής μέτρηση μιας διαδικασίας από το παρελθόν στο μέλλον.}} -| rdfs:domain = owl:Thing -| rdfs:range = xsd:string -}}OntologyProperty:TimeInSpace2021517515842016-11-04T12:51:51Z{{DatatypeProperty -| rdfs:label@en = total time person has spent in space -| rdfs:label@de = Gesamtzeit welche die Person im Weltraum verbracht hat -| rdfs:range = Time -}}OntologyProperty:TimeZone2021686366172014-07-08T14:23:50Z -{{ObjectProperty -| labels = - {{label|ca|zona horària}} - {{label|en|time zone}} - {{label|de|Zeitzone}} - {{label|nl|tijdzone}} - {{label|pt|fuso horario}} - {{label|el|ζώνη_ώρας1}} - {{label|es|huso horario}} - {{label|pl|strefa czasowa}} - {{label|fr|fuseau horaire}} -| rdfs:domain = Place -| rdfs:subPropertyOf = dul:sameSettingAs -}}OntologyProperty:TimeshiftChannel2023212120092011-04-06T14:53:13Z{{DatatypeProperty -| rdfs:label@en = timeshift channel -| rdfs:domain = TelevisionStation -| rdfs:range = xsd:string -| rdfs:comment@en = A timeshift channel is a television channel carrying a time-delayed rebroadcast of its "parent" channel's output. (http://en.wikipedia.org/wiki/Timeshift_channel) -}}OntologyProperty:Title2021520536802020-07-30T21:34:36Z{{DatatypeProperty -| labels = -{{label|en|title}} -{{label|nl|titel}} -{{label|it|denominazione}} -{{label|de|Titel}} -{{label|el|Τίτλος}} -{{label|es|título}} -{{label|ja|タイトル}} -| rdfs:range = rdf:langString -| owl:equivalentProperty = schema:title -}}OntologyProperty:TitleDate2023351222092013-01-10T22:16:34Z{{DatatypeProperty -| labels = -{{label|en|title date}} -{{label|nl|titel datum}} -{{label|pt|data do titulo}} -|rdfs:domain = Person -|rdfs:range = xsd:date -}}OntologyProperty:TitleDouble2027715500872016-01-04T12:49:26Z{{DatatypeProperty -| labels = -{{label|en|title double}} -{{label|de|Doppeltitel}} -| rdfs:domain = TennisPlayer -| rdfs:range = xsd:string -}}OntologyProperty:TitleLanguage2027615268522013-07-02T13:36:00Z{{DatatypeProperty -| labels = -{{label|en|title language}} -| rdfs:domain = Film -| rdfs:range = xsd:string -}}OntologyProperty:TitleSingle2027712500882016-01-04T12:49:56Z{{DatatypeProperty -| labels = -{{label|en|title single}} -{{label|de|Einzeltitel}} -| rdfs:domain = TennisPlayer -| rdfs:range = xsd:string -}}OntologyProperty:Toll2023428124372011-04-26T15:05:30Z{{DatatypeProperty -| rdfs:label@en = toll -| rdfs:label@de = Maut -| rdfs:domain= RouteOfTransportation -| rdfs:range = Currency -}}OntologyProperty:TonyAward2021521366182014-07-08T14:23:53Z -{{ObjectProperty -| rdfs:label@en = Tony Award -| rdfs:domain = Artist -| rdfs:range = Award -| rdfs:subPropertyOf = dul:coparticipatesWith -}}OntologyProperty:TopFloorHeight2026432521712017-08-09T09:52:31Z{{DatatypeProperty -| labels = -{{label|en|top floor height}} -{{label|de|Höhe der höchsten Etage}} -| rdfs:domain = Skyscraper -| rdfs:range = xsd:nonNegativeInteger -}}OntologyProperty:TopLevelDomain2023323525522017-10-26T10:27:05ZTopLevelDomain -{{ObjectProperty -| rdfs:label@en = country top level (tld) -| rdfs:label@pt = domínio de topo (tld) -| rdfs:label@fr = domaine de premier niveau (tld) -| rdfs:domain = Country -| rdfs:range = TopLevelDomain -}}OntologyProperty:TopSpeed2021522185502012-05-19T16:21:26Z{{DatatypeProperty -| rdfs:label@en = top speed -| rdfs:label@de = Höchstgeschwindigkeit -| rdfs:range = Speed -| rdf:type = owl:FunctionalProperty -}}OntologyProperty:Topic2027277343742014-04-08T13:41:40Z{{DatatypeProperty -| labels = -{{label|en|topic}} -{{label|de|Thema}} -| rdfs:domain = PopulatedPlace -| rdfs:range = xsd:string -}}OntologyProperty:TorchBearer2021523366192014-07-08T14:23:56Z -{{ObjectProperty -| labels = - {{label|de|Fackelträger}} - {{label|en|torch bearer}} -| rdfs:domain = Olympics -| rdfs:range = Person -| rdfs:subPropertyOf = dul:hasParticipant -}}OntologyProperty:TorqueOutput202152483072010-05-28T13:46:39Z{{DatatypeProperty -| rdfs:label@en = torque output -| rdfs:domain = AutomobileEngine -| rdfs:range = Torque -| rdf:type = owl:FunctionalProperty -}}OntologyProperty:TotalCargo202152583082010-05-28T13:46:47Z{{DatatypeProperty -| rdfs:label@en = total cargo -| rdfs:domain = Spacecraft -| rdfs:range = Mass -}}OntologyProperty:TotalDiscs2025142170222012-03-23T14:39:14Z{{DatatypeProperty -| rdfs:label@en = total discs -| rdfs:comment@en = the total number of discs contained in the album -| rdfs:domain = Album -| rdfs:range = xsd:integer -}}OntologyProperty:TotalIliCases20212303536172020-04-10T06:37:58Z{{DatatypeProperty -| labels = -{{label|en|Total Pandemic Cases}} -| rdfs:comment@en = Total number of cases in a pandemic -| rdfs:domain = Outbreak -| rdfs:range = xsd:integer -}}OntologyProperty:TotalLaunches2021526104302010-11-10T14:55:16Z{{DatatypeProperty -| rdfs:label@en = total launches -| rdfs:range = xsd:nonNegativeInteger -}}OntologyProperty:TotalMass2021527343752014-04-08T13:41:44Z{{DatatypeProperty -| rdfs:label@en = total mass -| rdfs:label@de = Gesamtmasse -| rdfs:domain = Spacecraft -| rdfs:range = Mass -}}OntologyProperty:TotalPopulation2021528343762014-04-08T13:41:49Z{{DatatypeProperty -| rdfs:label@en = total population -| rdfs:label@de = Gesamtbevölkerung -| rdfs:domain = EthnicGroup -| rdfs:range = xsd:nonNegativeInteger -}}OntologyProperty:TotalTracks2025141537672020-10-14T17:54:05Z{{DatatypeProperty -| rdfs:label@en = total tracks -| rdfs:comment@en = the total number of tracks contained in the album -| rdfs:domain = Album -| rdfs:range = xsd:integer -| owl:equivalentProperty = mo:track_count -}}OntologyProperty:TotalTravellers2021529104322010-11-10T14:55:44Z{{DatatypeProperty -| rdfs:label@en = total travellers -| rdfs:domain = YearInSpaceflight -| rdfs:range = xsd:nonNegativeInteger -}}OntologyProperty:TouristicSite2026931366202014-07-08T14:23:59Z -{{ObjectProperty -| labels = - {{label|en|touristic site}} -| rdfs:domain = PopulatedPlace -| rdfs:range = Place -| rdfs:subPropertyOf = dul:hasPart -}}OntologyProperty:TournamentOfChampions2028053343772014-04-08T13:41:53Z{{DatatypeProperty -| labels = -{{label|en|tournament of champions}} -{{label|de|Turnier der Meister}} -| rdfs:domain = Athlete -| rdfs:range = xsd:string -}}OntologyProperty:TournamentRecord2021530343782014-04-08T13:41:57Z{{DatatypeProperty -| rdfs:label@en = tournament record -| rdfs:label@de = Turnierrekord -| rdfs:domain = CollegeCoach -| rdfs:range = xsd:string -}}OntologyProperty:TowerHeight2029341343792014-04-08T13:42:09Z{{DatatypeProperty -| labels = -{{label|en|tower height}} -{{label|de|Turmhöhe}} -{{label|nl|hoogte van de toren}} -| rdfs:domain = Building -| rdfs:range = xsd:positiveInteger -}}OntologyProperty:TrackLength2023595128062011-05-16T15:54:44Z{{DatatypeProperty -| rdfs:label@en = track length -| rdfs:label@de = Streckenlänge -| rdfs:domain = RouteOfTransportation -| rdfs:range = Length -| rdfs:comment@en = Length of the track. Wikipedians usually do not differentiate between track length and line lenght. -}}OntologyProperty:TrackNumber2021531537652020-10-14T17:48:52Z{{DatatypeProperty -| rdfs:label@en = track number -| rdfs:label@de = Titelnummer -| rdfs:label@el = νούμερο τραγουδιού -| rdfs:domain = Song -| rdfs:range = xsd:positiveInteger -| owl:equivalentProperty = mo:track_number -}}OntologyProperty:TrackWidth20211445495272015-11-14T15:18:15Z{{DatatypeProperty -| rdfs:label@en = track width -| rdfs:label@nl = spoorbreedte -| rdfs:domain = RouteOfTransportation -| rdfs:range = Length -| rdfs:comment@en = Width of the track, e.g., the track width differing in Russia from (Western and Middle) European track width -}}OntologyProperty:TradeMark2024783366212014-07-08T14:24:02Z -{{ObjectProperty -| rdfs:label@en = TradeMark -| rdfs:label@es = Marca -| rdfs:subPropertyOf = dul:sameSettingAs -}}OntologyProperty:TradingName20211901522832017-10-08T18:18:03Z{{DatatypeProperty -| rdfs:label@en = trading name -| rdfs:label@de = Handelsname -| rdfs:domain = Company -| rdfs:range = xsd:string -| rdfs:comment = Trade name, doing business as, d/b/a or fictitious business name under which a company presents itself to the public. This parameter is used only when the company has a legally registered trade name that is different from the company's full, legal name. -}}OntologyProperty:Trainer2021532366222014-07-08T14:24:06Z -{{ObjectProperty -| labels = - {{label|en|trainer}} - {{label|de|Trainer}} - {{label|el|εκπαιδευτής}} - {{label|fr|entraîneur}} - {{label|nl|trainer}} -| rdfs:domain = Athlete -| rdfs:range = Person -| rdfs:subPropertyOf = dul:coparticipatesWith -}}OntologyProperty:TrainerClub2025642366232014-07-08T14:24:18Z -{{ObjectProperty -| rdfs:label@en = trainer club -| rdfs:domain = SoccerPlayer -| rdfs:range = SportsTeam -| rdfs:subPropertyOf = dul:coparticipatesWith -}}OntologyProperty:TrainerYears2025643224602013-01-12T22:56:01Z{{ DatatypeProperty -| labels = -{{label|en|trainer years}} -{{label|nl|trainersjaren}} -| rdfs:domain = SoccerPlayer -| rdfs:range = xsd:gYear - -}}OntologyProperty:Training2021533366242014-07-08T14:24:20Z -{{ObjectProperty -| rdfs:label@en = training -| rdfs:label@de = Ausbildung -| rdfs:label@el = προπόνηση -| rdfs:domain = Artist -| rdfs:range = EducationalInstitution -| rdfs:subPropertyOf = dul:coparticipatesWith -}}OntologyProperty:TranslatedMotto2027432264712013-06-25T10:48:04Z{{DatatypeProperty -| labels = -{{label|en|translated motto}} -| rdfs:range = xsd:string -}}OntologyProperty:Translator2021534536722020-07-30T21:26:18Z -{{ObjectProperty -| labels = - {{label|en|translator}} - {{label|de|Übersetzer}} - {{label|nl|vertaler}} - {{label|el|μεταφραστής}} - {{label|fr|traducteur}} -| rdfs:domain = Work -| rdfs:range = Person -| rdfs:comment@en = Translator(s), if original not in English -| rdfs:subPropertyOf = dul:coparticipatesWith -| owl:equivalentProperty = schema:translator -}}OntologyProperty:Transmission2021535344652014-04-08T15:05:21Z{{DatatypeProperty -| rdfs:label@en = transmission -| rdfs:label@de = Getriebe -| rdfs:label@el = μετάδοση -| rdfs:domain = Automobile -| rdfs:range = xsd:string -}}OntologyProperty:Treatment20211865522022017-10-07T14:39:06Z{{ObjectProperty -| labels = - {{label|en|treatment}} - {{label|fr|traitement}} - {{label|de|Behandlung}} -| rdfs:domain = Disease -| rdfs:range = owl:Thing -}}OntologyProperty:Tree2027135343852014-04-08T13:42:34Z{{ObjectProperty -| labels = -{{label|en|tree}} -{{label|de|Baum}} -{{label|el|δέντρο}} -| rdfs:domain = Place -| rdfs:range = Species -}}OntologyProperty:Tribus2029286343862014-04-08T13:42:38Z{{ObjectProperty -| labels = -{{label|en|tribus}} -{{label|de|Stämme}} -{{label|nl|stam}} -| comments = -| rdfs:domain = Species -| rdfs:range = Species -}}OntologyProperty:Trustee2021536366262014-07-08T14:24:27Z -{{ObjectProperty -| rdfs:label@en = trustee -| rdfs:label@de = Treuhänder -| rdfs:domain = Organisation -| rdfs:range = Person -| rdfs:subPropertyOf = dul:sameSettingAs -}}OntologyProperty:Tuition2021537344662014-04-08T15:06:26Z{{DatatypeProperty -| rdfs:label@en = tuition -| rdfs:label@de = Schulgeld -| rdfs:domain = School -| rdfs:range = Currency -}}OntologyProperty:TvComId2022104529332018-03-01T12:35:57Z{{DatatypeProperty -| rdfs:label@en = tv.com id -| rdfs:domain = TelevisionShow -| rdfs:range = xsd:integer -| rdfs:subPropertyOf = code -}}OntologyProperty:TvShow2026828366272014-07-08T14:24:30Z -{{ObjectProperty -| labels = - {{label|en|tvShow}} - {{label|de|Fernsehsendung}} -| rdfs:domain = Person -| rdfs:range = TelevisionShow -| rdfs:subPropertyOf = dul:isParticipantIn -}}OntologyProperty:TwinCountry2021539366292014-07-08T14:24:36Z -{{ObjectProperty -| rdfs:label@en = twin country -| rdfs:label@de = Partnerland -| rdfs:domain = Country -| rdfs:range = Country -| rdfs:subPropertyOf = dul:sameSettingAs -}}OntologyProperty:TwinTown2021538476362015-04-03T14:53:33Z -{{ObjectProperty -| labels = - {{label|en|twin city}} - {{label|de|Partnerstadt}} - {{label|nl|tweeling stad}} -| rdfs:domain = Settlement -| rdfs:range = Settlement -| rdfs:subPropertyOf = dul:sameSettingAs -}}OntologyProperty:Type2021540517742016-12-20T07:28:44Z{{ObjectProperty -| labels = - {{label|en|type}} - {{label|de|Typ}} - {{label|el|τύπος}} - {{label|es|tipo}} - {{label|fr|type}} - {{label|nl|type}} - {{label|hi|प्रकार}} -| owl:equivalentProperty = <!-- not wikidata:P31, see Discussion page --> -| rdfs:subPropertyOf = dul:isClassifiedBy -}}OntologyProperty:TypeCoordinate2027208391172015-01-09T19:00:17Z{{DatatypeProperty -| labels = -{{label|en|type coordinate}} -| comments = -{{comment|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èle:Infobox_Subdivision_administrative for examples, and https://fr.wikipedia.org/wiki/Modèle:GeoTemplate/Utilisation#La_mention_Type:... for a complete list}} -| rdfs:domain = Place -| rdfs:range = xsd:string -}}OntologyProperty:TypeOfElectrification2023591366312014-07-08T14:24:42Z -{{ObjectProperty -| rdfs:label@en = type of electrification -| rdfs:label@de = Art der Elektrifizierung -| rdfs:domain = RouteOfTransportation -| rdfs:range = owl:Thing -| rdfs:comment@en = Electrification system (e.g. Third rail, Overhead catenary). -| rdfs:subPropertyOf = dul:isClassifiedBy -}}OntologyProperty:TypeOfGrain2028915343932014-04-08T13:43:18Z{{DatatypeProperty -| labels = -{{label|en|type of grain (wheat etc.)}} -{{label|de|Getreideart (Weizen usw.)}} -{{label|nl|graansoort}} -| rdfs:domain = Food -| rdfs:range = xsd:string -}}OntologyProperty:TypeOfStorage2028918343942014-04-08T13:43:22Z{{DatatypeProperty -| labels = -{{label|en|type of storage}} -{{label|de|Art der Lagerung}} -{{label|nl|lagering}} -| rdfs:domain = Food -| rdfs:range = xsd:string -}}OntologyProperty:TypeOfYeast2028916344672014-04-08T15:07:11Z{{DatatypeProperty -| labels = -{{label|en|type of yeast}} -{{label|de|Hefearte}} -{{label|nl|gistsoort}} -| rdfs:domain = Food -| rdfs:range = xsd:string -}}OntologyProperty:URN2023121528972018-02-13T12:34:18Z -{{ObjectProperty -| rdfs:label@en = unique reference number (URN) -| rdfs:comment@en = DfE unique reference number of a school in England or Wales -| rdfs:domain = School -| rdfs:subPropertyOf = code -}}OntologyProperty:UciCode2027358262042013-06-18T13:08:18Z{{DatatypeProperty -| labels = -{{label|en|UCI code}} -{{label|it|codice UCI}} -| comments = -{{comment|en|Official UCI code for cycling teams}} -| rdfs:domain = CyclingTeam -| rdfs:range = xsd:string -}}OntologyProperty:UlanId2028427528882018-02-13T11:02:02Z{{DatatypeProperty -| labels = -{{label|en|ULAN id}} -| comments = -{{comment|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). -http://vocab.getty.edu/ulan/$1}} -| rdfs:range = xsd:string -| owl:equivalentProperty = wikidata:P245 -| rdfs:subPropertyOf = code -}}OntologyProperty:UmbrellaTitle2025987348212014-05-15T05:05:32Z{{DatatypeProperty -| labels = -{{label|en|umbrella title}} -{{label|nl|overkoepelende titel}} -| rdfs:domain = MultiVolumePublication -| rdfs:range = rdf:langString -| rdfs:comment@en = -}}OntologyProperty:UnNumber20212040527942018-02-07T09:45:54Z{{DatatypeProperty -| rdfs:label@en = UN number -| rdfs:label@de = UN Nummer -| rdfs:label@fr = numéro ONU -| rdfs:comment@en = four-digit numbers that identify hazardous substances, and articles in the framework of international transport -| rdfs:domain = ChemicalSubstance -| rdfs:range = xsd:string -}}OntologyProperty:Uncle20212293535932020-01-30T18:46:01Z{{ObjectProperty -| labels = - {{label|en|uncle}} - {{label|nl|oom}} - {{label|de|Onkel}} - {{label|el|θείος}} - {{label|ja|おじさん}} - {{label|ar|اخو الام}} -| rdfs:domain = Man -| rdfs:range = Person -| owl:propertyDisjointWith = Aunt -}}OntologyProperty:UndraftedYear202154383182010-05-28T13:48:06Z{{DatatypeProperty -| rdfs:label@en = undrafted year -| rdfs:domain = GridironFootballPlayer -| rdfs:range = xsd:gYear -}}OntologyProperty:Unesco2026983366332014-07-08T14:24:49Z -{{ObjectProperty -| labels = - {{label|en|unesco}} -| rdfs:range = PopulatedPlace -| rdfs:domain = Place -| rdfs:subPropertyOf = dul:hasPart -}}OntologyProperty:Unicode2025349343962014-04-08T13:43:30Z{{ DatatypeProperty -| labels = - {{label|en|unicode}} -{{label|de|Unicode}} - {{label|el|unicode}} -| comments = - {{comment|el|το διεθνές πρότυπο Unicode στοχεύει στην κωδικοποίηση όλων των συστημάτων γραφής που χρησιμοποιούνται στον πλανήτη.}} -| rdfs:domain = Letter -| rdfs:range = xsd:string -}}OntologyProperty:Uniprot2021544191292012-07-31T11:14:37Z{{DatatypeProperty -| rdfs:label@en = UniProt -| rdfs:label@ja = UniProt -| rdfs:domain = Biomolecule -| rdfs:range = xsd:string -}}OntologyProperty:UnitCost2021545343972014-04-08T13:43:43Z{{DatatypeProperty -| rdfs:label@en = unit cost -| rdfs:label@de = Stückkosten -| rdfs:domain = Aircraft -| rdfs:range = Currency -}}OntologyProperty:UnitaryAuthority2022142366342014-07-08T14:24:54Z -{{ObjectProperty -| rdfs:label@en = unitary authority -| rdfs:label@sr = унитарна власт -| rdfs:domain = PopulatedPlace -| rdfs:range = PopulatedPlace -| rdfs:subPropertyOf = dul:sameSettingAs -}}OntologyProperty:UnitedStatesNationalBridgeId2021546306252014-01-22T08:18:56Z{{DatatypeProperty -| rdfs:label@en = United States National Bridge ID -| rdfs:label@sr = ID националног моста у Сједињеним Америчким Државама -| rdfs:domain = Bridge -| rdfs:range = xsd:string -}}OntologyProperty:University2021547525692017-10-30T23:24:56Z -{{ObjectProperty -| labels = - {{label|en|university}} - {{label|de|Universität}} - {{label|el|πανεπιστήμιο}} - {{label|sr|универзитет}} - {{label|ja|大学}} -| comments = - {{comment|en|university a person goes or went to.}} - {{comment|el|To πανεπιστήμιο είναι εκπαιδευτικό ίδρυμα ανώτατης εκπαίδευσης και επιστημονικής έρευνας που παρέχει πτυχίο πιστοποίησης ακαδημαϊκής εκπαίδευσης.}} -| rdfs:range = EducationalInstitution -| rdfs:subPropertyOf = dul:coparticipatesWith -}}OntologyProperty:UnknownOutcomes2021548306182014-01-22T08:11:42Z{{DatatypeProperty -| rdfs:label@en = unknown outcomes -| rdfs:label@sr = непознати исходи -| rdfs:domain = Rocket -| rdfs:range = xsd:nonNegativeInteger -| rdfs:comment@en = number of launches with unknown outcomes (or in progress) -| rdfs:comment@sr = број лансирања са непознатим исходом или број лансирања који су у току -}}OntologyProperty:UnloCode2022438483702015-06-16T06:01:53Z{{DatatypeProperty -| rdfs:label@en = UN/LOCODE -| rdfs:label@sr = UN/LOCODE -| rdfs:comment@en = 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. -| rdfs:comment@sr = UN/LOCODE је код Уједињених нација за трговинске и транспортне локације. Као што су луке, железнички и путни терминали, аеродроми, поште и гранични прелази. -| rdfs:domain = Place -| rdfs:range = xsd:string -| owl:equivalentProperty = wikidata:P1937 -}}OntologyProperty:Updated2025138306052014-01-22T07:55:23Z{{DatatypeProperty -| rdfs:label@en = updated -| rdfs:label@sr = ажуриран -| rdfs:comment@en = The last update date of a resource -| rdfs:comment@sr = датум последње измене -| rdfs:domain = owl:Thing -| rdfs:range = xsd:date -}}OntologyProperty:UpperAge2021549305972014-01-22T07:47:48Z{{DatatypeProperty -| rdfs:label@en = upper age -| rdfs:label@sr= горња старосна граница -| rdfs:domain = School -| rdfs:range = xsd:nonNegativeInteger -}}OntologyProperty:UrbanArea2026851492192015-10-15T07:16:22Z{{DatatypeProperty -| labels = -{{label|en|urban area}} -{{label|de|Stadtgebiet}} -{{label|sr|урбано подручје}} -| rdfs:domain = Settlement -| rdfs:range = xsd:string -}}OntologyProperty:UsOpenDouble2027725500732016-01-04T12:34:55Z{{DatatypeProperty -| labels = -{{label|en|us open double}} -{{label|sr|US Open дубл}} -| rdfs:domain = TennisPlayer -| rdfs:range = xsd:string -}}OntologyProperty:UsOpenMixed2027729500742016-01-04T12:35:50Z{{DatatypeProperty -| labels = -{{label|en|us open mixed}} -{{label|sr|US Open микс дубл}} -| rdfs:domain = TennisPlayer -| rdfs:range = xsd:string -}}OntologyProperty:UsOpenSingle2027721500892016-01-04T12:50:44Z{{DatatypeProperty -| labels = -{{label|en|us open single}} -{{label|sr|US Open појединачно}} -| rdfs:domain = TennisPlayer -| rdfs:range = xsd:string -}}OntologyProperty:UsSales2021551509672016-04-26T14:45:15Z{{DatatypeProperty -| rdfs:label@en = US sales -| rdfs:label@de = US-Verkäufe -| rdfs:label@sr = продаја у САД -| rdfs:domain = Sales -| rdfs:range = xsd:nonNegativeInteger -| rdfs:comment@en = Number of things (eg vehicles) sold in the US -}}OntologyProperty:UsedInWar2021570366362014-07-08T14:25:01Z -{{ObjectProperty -| rdfs:label@en = used in war -| rdfs:label@de = im Krieg eingesetzt -| rdfs:label@sr = коришћено у рату -| rdfs:domain = Weapon -| rdfs:range = MilitaryConflict -| rdfs:comment@en = wars that were typical for the usage of a weapon -| rdfs:subPropertyOf = dul:isParticipantIn -}}OntologyProperty:Uses2026801366372014-07-08T14:25:05Z -{{ObjectProperty -| rdfs:label@en = uses -| rdfs:label@sr = користи -| rdfs:domain = owl:Thing -| rdfs:range = owl:Thing -| rdfs:subPropertyOf = dul:isParticipantIn -}}OntologyProperty:UsingCountry2021550366382014-07-08T14:25:10Z -{{ObjectProperty -| rdfs:label@en = using country -| rdfs:domain = Currency -| rdfs:range = Country -| rdfs:subPropertyOf = dul:sameSettingAs -}}OntologyProperty:Usk2026413344022014-04-08T13:44:02Z{{DatatypeProperty -| labels = -{{label|en|approved rating of the Entertainment Software Self-Regulation Body in Germany}} -{{label|de|zugelassene Bewertung der Unterhaltungssoftware Selbstkontrolle in Deutschland}} -{{label|sr|одобрени рејтинг од стране регулаторног тела за забавни софтвер у Немачкој }} -| rdfs:domain = owl:Thing -| rdfs:range = xsd:integer -}}OntologyProperty:UsopenWins2027647306062014-01-22T07:56:21Z{{ObjectProperty -| labels = -{{label|en|usopen wins}} -{{label|sr|победе на US Open-у}} -| rdfs:domain = Person -| rdfs:range = skos:Concept -}}OntologyProperty:Usurper2027636305752014-01-22T07:15:48Z{{ObjectProperty -| labels = -{{label|en|usurper}} -{{label|sr|узурпатор}} -| rdfs:domain = Person -| rdfs:range = Person -}}OntologyProperty:UtcOffset2024200305742014-01-22T07:10:27Z{{DatatypeProperty -| rdfs:label@en = UTC offset -| rdfs:label@sr = UTC офсет -| rdfs:domain = Place -| rdfs:range = xsd:string -| rdfs:comment = The UTC offset is the time offset from Coordinated Universal Time (UTC). It is mostly given as hour or hour and minute. -| rdfs:comment = UTC офсет је временски офсет који се мери од Универзалне временске координате. Најчешће се приказује у сатима и минутима. -}}OntologyProperty:V hb2026156207212012-12-23T12:34:42Z{{DatatypeProperty -| rdfs:label@en = V_hb -| rdfs:domain = Globularswarm -| rdfs:range = xsd:integer -}}OntologyProperty:Value2027907510912016-05-14T15:28:09Z{{DatatypeProperty -| labels = -{{label|en|value}} -{{label|de|Wert}} -{{label|fr|valeur}} -{{label|sr|вредност}} -| rdfs:range = xsd:nonNegativeInteger -}}OntologyProperty:Valvetrain2021552510642016-05-11T08:50:34Z -{{DatatypeProperty -| rdfs:label@en = valvetrain -| rdfs:label@de = Ventilsteuerung -| rdfs:label@fr = distribution (moteur) -| rdfs:domain = AutomobileEngine -| rdfs:range = valvetrain -| rdfs:subPropertyOf = <!-- dul:hasComponent -- defined as object property, see https://github.com/dbpedia/ontology-tracker/issues/9 --> -}}OntologyProperty:VaporPressure20211849528032018-02-07T19:33:00Z{{DatatypeProperty -| labels = -{{label|en|vapor pressure}} -{{label|nl|dampdruk}} -| rdfs:domain = ChemicalSubstance -| rdfs:range = hectopascal -}}OntologyProperty:VariantOf2021554366402014-07-08T14:25:18Z -{{ObjectProperty -| labels = - {{label|en|variant or variation}} - {{label|de|Variante oder Variation}} - {{label|sr|варијанта}} - {{label|nl|variant}} -| rdfs:comment@en = variant or variation of something, for example the variant of a car -| rdfs:subPropertyOf = dul:sameSettingAs -}} -варијантаOntologyProperty:Varietals2021555366412014-07-08T14:25:30Z -{{ObjectProperty -| rdfs:label@en = varietals -| rdfs:label@de = Rebsorten -| rdfs:domain = WineRegion -| rdfs:subPropertyOf = dul:isLocationOf -}}OntologyProperty:Vehicle2021556366422014-07-08T14:25:33Z -{{ObjectProperty -| rdfs:label@en = vehicle -| rdfs:label@sr = возило -| rdfs:label@el = όχημα -| rdfs:label@de = Vehikel -| rdfs:range = Automobile -| rdfs:comment@en = vehicle that uses a specific automobile platform -| rdfs:comment@el = όχημα που χρησιμοποιεί μια συγκεκριμένη πλατφόρμα αυτοκινήτων -| rdfs:subPropertyOf = dul:sameSettingAs -}}OntologyProperty:VehicleCode2022437305562014-01-21T15:10:56Z{{DatatypeProperty -| labels = -{{label|de|KFZ-Kennzeichen}} -{{label|en|vehicle code}} -{{label|sr|код возила}} -{{label|nl|voertuig code}} -| rdfs:comment@en = Region related vehicle code on the vehicle plates. -| rdfs:domain = Place -| rdfs:range = xsd:string -}}OntologyProperty:VehiclesInFleet20211894522572017-10-08T10:03:30Z{{ObjectProperty -| labels = - {{label|en|vehicle types in fleet}} - {{label|de|Fahrzeugtypen der Flotte}} -| rdfs:domain = PublicTransitSystem -| rdfs:range = MeanOfTransportation -| comments = -{{comment|en|Points out means of transport contained in the companies vehicle fleet.}} -}}OntologyProperty:VehiclesPerDay2023429306152014-01-22T08:09:54Z{{DatatypeProperty -| rdfs:label@en = vehicles per day -| rdfs:label@sr = број возила по дану -| rdfs:label@de = Fahrzeuge pro Tag -| rdfs:domain= RouteOfTransportation -| rdfs:range = xsd:nonNegativeInteger -}}OntologyProperty:Vein2021557366432014-07-08T14:25:35Z -{{ObjectProperty -| rdfs:label@en = vein -| rdfs:label@de = Vene -| rdfs:label@sr = вена -| rdfs:domain = AnatomicalStructure -| rdfs:range = Vein -| rdfs:subPropertyOf = dul:hasCommonBoundary -}}OntologyProperty:VeneratedIn2021558366442014-07-08T14:25:39Z -{{ObjectProperty -| labels = - {{label|en|venerated in}} - {{label|sr|поштован у}} - {{label|nl|vereerd in}} -| rdfs:domain = Saint -| rdfs:range = Organisation -| rdfs:subPropertyOf = dul:sameSettingAs -}}OntologyProperty:Version2029133316822014-02-10T17:26:28Z{{ObjectProperty -| rdfs:label@en = version -| rdfs:label@de = Version -| rdfs:label@nl = versie -| rdfs:domain = MeanOfTransportation -}}OntologyProperty:ViafId2028417528892018-02-13T11:02:59Z{{DatatypeProperty -| labels = -{{label|en|VIAF Id}} -{{label|sr|VIAF Id}} -{{label|nl|VIAF code}} -| comments = -{{comment|en|Virtual International Authority File ID (operated by Online Computer Library Center, OCLC). Property range set to Agent because of corporate authors }} -| rdfs:range = xsd:string -| owl:equivalentProperty = wikidata:P214 -| rdfs:subPropertyOf = code -}}OntologyProperty:ViceChancellor2021559366452014-07-08T14:25:42Z -{{ObjectProperty -| rdfs:label@en = vice chancellor -| rdfs:label@sr = потканцелар -| rdfs:label@de = Vizekanzler -| rdfs:range = Person -| rdfs:subPropertyOf = dul:sameSettingAs -}}OntologyProperty:ViceLeader2023355366462014-07-08T14:25:45Z -{{ObjectProperty -| rdfs:label@en = vice leader -| rdfs:label@pt = vicelider -| rdfs:domain = PopulatedPlace -| rdfs:range = Person -| rdfs:subPropertyOf = dul:sameSettingAs -}}OntologyProperty:ViceLeaderParty2023356366472014-07-08T14:25:49Z -{{ObjectProperty -| rdfs:label@en = vice leader party -| rdfs:label@de = stellvertretender Parteivorsitzende -| rdfs:label@pt = partido do vicelider -| rdfs:domain = PopulatedPlace -| rdfs:range = PoliticalParty -| rdfs:subPropertyOf = dul:sameSettingAs -}}OntologyProperty:VicePresident2022344366482014-07-08T14:25:52Z -{{ObjectProperty -| rdfs:label@en = vice president -| rdfs:label@sr = потпредседник -| rdfs:label@de = Vizepräsident -| rdfs:range = Person -| rdfs:subPropertyOf = dul:sameSettingAs -}}OntologyProperty:VicePrimeMinister2022345366492014-07-08T14:25:56Z -{{ObjectProperty -| labels = - {{label|en|vice prime minister}} - {{label|de|Vizeministerpräsident}} - {{label|sr|заменик премијера}} - {{label|nl|vice premier}} -| rdfs:range = Person -| rdfs:subPropertyOf = dul:sameSettingAs -}}OntologyProperty:VicePrincipal2021561366502014-07-08T14:26:00Z -{{ObjectProperty -| rdfs:label@en = vice principal -| rdfs:label@sr = заменик директора -| rdfs:domain = School -| rdfs:range = Person -| rdfs:subPropertyOf = dul:sameSettingAs -}}OntologyProperty:VicePrincipalLabel2023117366512014-07-08T14:26:04Z -{{ObjectProperty -| rdfs:label@en = vice principal label -| rdfs:domain = School -| rdfs:subPropertyOf = dul:sameSettingAs -}}OntologyProperty:Victim2028030512392016-06-09T10:16:20Z{{ObjectProperty -| labels = -{{label|en|victim (resource)}} -{{label|de|das Opfer (resource)}} -{{label|sr|жртва (resource)}} -| rdfs:domain = owl:Thing -| rdfs:range = owl:Thing -| rdfs:comment@en = Specific (eg notable) person, or specific class of people (eg Romani) that are victim of a ConcentrationCamp, Criminal, SerialKiller, or some other atrocity -}}OntologyProperty:Victims20211700512372016-06-09T10:03:39Z{{DatatypeProperty -| labels = -{{label|en|victims (string)}} -{{label|de|die Opfer (string)}} -{{label|sr|жртви (string)}} -| rdfs:domain = owl:Thing -| rdfs:range = xsd:string -| rdfs:comment@en = Type, description, or name(s) of victims of a ConcentrationCamp, Criminal, SerialKiller, or some other atrocity -}}OntologyProperty:Victory2027586344112014-04-08T13:44:39Z{{DatatypeProperty -| labels = -{{label|en|victory}} -{{label|de|Sieg}} -{{label|sr|победа}} -| rdfs:domain = Person -| rdfs:range = xsd:nonNegativeInteger -}}OntologyProperty:VictoryAsMgr2027661269202013-07-03T12:23:46Z{{DatatypeProperty -| labels = -{{label|en|victory as manager}} -| rdfs:domain = Person -| rdfs:range = xsd:nonNegativeInteger -}}OntologyProperty:VictoryPercentageAsMgr2027663305352014-01-21T14:53:15Z{{DatatypeProperty -| labels = -{{label|en|victory percentage as manager}} -{{label|sr|проценат победа на месту менаџера}} -| rdfs:domain = Person -| rdfs:range = xsd:double -}}OntologyProperty:VirtualChannel2023182306282014-01-22T08:21:33Z{{DatatypeProperty -| rdfs:label@en = virtual channel -| rdfs:label@sr = виртуелни канал -| rdfs:label@el = εικονικό κανάλι -| rdfs:domain = Broadcaster -| rdfs:range = xsd:string -}}OntologyProperty:VisitorStatisticsAsOf2023239306322014-01-22T08:26:51Z{{DatatypeProperty -| rdfs:label@en = visitor statistics as of -| rdfs:label@sr = статистика посетилаца од -| rdfs:domain = ArchitecturalStructure -| rdfs:range = xsd:gYear -| rdfs:comment@en = Year visitor information was gathered. -}}OntologyProperty:VisitorsPerDay2023451305292014-01-21T14:47:28Z{{DatatypeProperty -| rdfs:label@en = visitors per day -| rdfs:label@sr= број посетилаца по дану -| rdfs:label@de = Besucher pro Tag -| rdfs:domain = ArchitecturalStructure -| rdfs:range = xsd:nonNegativeInteger -}}OntologyProperty:VisitorsPerYear2021565305282014-01-21T14:46:14Z{{DatatypeProperty -| labels = -{{label|en|visitors per year}} -{{label|sr|годишњи број посетилаца}} -{{label|nl|bezoekers per jaar}} -{{label|de|Besucher pro Jahr}} -| rdfs:domain = ArchitecturalStructure -| rdfs:range = xsd:nonNegativeInteger -}}OntologyProperty:VisitorsPercentageChange2023250305252014-01-21T14:45:07Z{{DatatypeProperty -| rdfs:label@en = visitor percentage change -| rdfs:label@sr= промена процента посетилаца -| rdfs:label@de = prozentuale Veränderung der Besucherzahl -| rdfs:domain = ArchitecturalStructure -| rdfs:range = xsd:double -| rdfs:comment@en = Percentage increase or decrease. -}}OntologyProperty:VisitorsTotal2021566344122014-04-08T13:44:47Z{{DatatypeProperty -| rdfs:label@en = visitors total -| rdfs:label@de = Gesamtbesucher -| rdfs:label@sr= укупан број посетилаца -| rdfs:label@el = επιβατική κίνηση -| rdfs:domain = ArchitecturalStructure -| rdfs:range = xsd:nonNegativeInteger -}}OntologyProperty:Voice2021567486212015-08-06T12:43:09Z{{ObjectProperty -| rdfs:label@en = voice -| rdfs:label@de = Stimme -| rdfs:label@sr = глас -| rdfs:comment@en = Voice artist used in a TelevisionShow, Movie, or to sound the voice of a FictionalCharacter -| rdfs:range = Person -| rdfs:subPropertyOf = dul:sameSettingAs -}}OntologyProperty:VoiceType2021568366532014-07-08T14:26:09Z -{{ObjectProperty -| labels = - {{label|en|voice type}} - {{label|de|Stimmlage}} - {{label|sr|тип гласа}} - {{label|nl|stemtype}} -| rdfs:domain = Artist -| rdfs:comment@en = voice type of a singer or an actor -| rdfs:subPropertyOf = dul:isClassifiedBy -}}OntologyProperty:VolcanicActivity2027061344152014-04-08T13:45:03Z{{DatatypeProperty -| labels = -{{label|en|volcanic activity}} -{{label|de|vulkanische Aktivität}} -{{label|sr|вулканска активност}} -| rdfs:domain = Island -| rdfs:range = xsd:string -}}OntologyProperty:VolcanicType2027060344162014-04-08T13:45:07Z{{DatatypeProperty -| labels = -{{label|en|volcanic type}} -{{label|de|Vulkantyp}} -{{label|sr|тип вулкана}} -| rdfs:domain = Island -| rdfs:range = xsd:string -}}OntologyProperty:VolcanoId2027063306362014-01-22T08:29:56Z{{DatatypeProperty -| labels = -{{label|en|volcano id}} -{{label|sr|id вулкана}} -| rdfs:domain = Island -| rdfs:range = xsd:string -}}OntologyProperty:VoltageOfElectrification2023592306372014-01-22T08:30:37Z{{DatatypeProperty -| rdfs:label@en = voltage of electrification -| rdfs:label@de = Voltzahl der Elektrifizierung -| rdfs:domain = RouteOfTransportation -| rdfs:range = Voltage -| rdfs:comment@en = Voltage of the electrification system. -}}OntologyProperty:Volume2021569344172014-04-08T13:45:11Z{{DatatypeProperty -| labels = -{{label|en|volume}} -{{label|de|Volumen}} -{{label|sr|запремина}} -{{label|nl|volume}} -{{label|el|όγκος}} -{{label|fr|volume}} -| rdfs:range = Volume -}}OntologyProperty:VolumeQuote2027095256192013-05-26T13:35:04Z{{DatatypeProperty -| labels = -{{label|en|volume quote}} -| rdfs:domain = Place -| rdfs:range = xsd:string -}}OntologyProperty:Volumes2025989366542014-07-08T14:26:13Z -{{ObjectProperty -| labels = - {{label|en|volumes}} - {{label|sr|томови}} - {{label|nl|delen}} -| rdfs:domain = MultiVolumePublication -| rdfs:range = WrittenWork -| rdfs:comment@en = -| rdfs:subPropertyOf = dul:hasMember -}}OntologyProperty:VonKlitzingConstant2029120458452015-03-14T20:09:45Z{{DatatypeProperty -| labels = -{{label|en|von Klitzing electromagnetic constant (RK)}} -{{label|de|von Klitzing elektromagnetisch Konstant (RK)}} -| rdfs:domain = CelestialBody -| rdfs:range = xsd:double -}}OntologyProperty:VotesAgainst2029130344182014-04-08T13:45:16Z{{DatatypeProperty -| rdfs:label@en = Votes against the resolution -| rdfs:label@de = Stimmen gegen die Resolution -| rdfs:label@nl = Aantal stemmen tegen -| rdfs:domain = StatedResolution -| rdfs:range = xsd:nonNegativeInteger -}}OntologyProperty:VotesFor2029131344192014-04-08T13:45:20Z{{DatatypeProperty -| rdfs:label@en = Number of votes in favour of the resolution -| rdfs:label@de = Anzahl der Stimmen für die Resolution -| rdfs:label@nl = Aantal stemmen voor -| rdfs:domain = StatedResolution -| rdfs:range = xsd:nonNegativeInteger -}}OntologyProperty:Wagon20211442495222015-11-14T14:52:00Z{{ObjectProperty -| rdfs:label@en = train carriage -| rdfs:label@nl = wagon -| rdfs:domain = Train -| rdfs:range = TrainCarriage -}}OntologyProperty:WaistSize2022411433142015-02-06T12:17:27Z{{DatatypeProperty - |rdfs:label@en=waist size - |rdfs:label@sr=димензије струка - |rdfs:label@de=Taillenumfang - |rdfs:label@ja=ウエスト - |rdfs:label@bg=размер талия - |rdfs:domain=Person - |rdfs:range=Length -}}OntologyProperty:War2025659344202014-04-08T13:45:24Z{{ DatatypeProperty -| labels = - {{label|en|wars}} -{{label|de|Kriege}} - {{label|sr|ратови}} - {{label|el|πολέμους}} - - | rdfs:domain = MilitaryPerson - | rdfs:range = xsd:string - -}}OntologyProperty:Ward2026963306392014-01-22T08:35:07Z{{DatatypeProperty -| labels = -{{label|en|ward of a liechtenstein settlement}} -| rdfs:domain = LiechtensteinSettlement -| rdfs:range = xsd:string -}} -штићеник од Лихтенштајна насељаOntologyProperty:Water2027146344212014-04-08T13:45:28Z{{DatatypeProperty -| labels = -{{label|en|water}} -{{label|de|Wasser}} -{{label|sr|вода}} -| rdfs:domain = Place -| rdfs:range = xsd:string -}}OntologyProperty:WaterArea2027039305052014-01-21T14:10:57Z{{DatatypeProperty -| labels = -{{label|en|area of water}} -{{label|sr|површина воде}} -| rdfs:domain = Place -| rdfs:range = Area -| owl:equivalentProperty = area -}}OntologyProperty:WaterPercentage2027040344222014-04-08T13:45:32Z{{DatatypeProperty -| labels = -{{label|en|water percentage of a place}} -{{label|de|Wasseranteil von einem Ort}} -{{label|sr|проценат воде неког места}} -| rdfs:domain = Place -| rdfs:range = xsd:float -}}OntologyProperty:Watercourse2027279344232014-04-08T13:45:36Z{{DatatypeProperty -| labels = -{{label|en|watercourse}} -{{label|de|Wasserlauf}} -{{label|sr|водоток}} -| rdfs:domain = PopulatedPlace -| rdfs:range = xsd:string -}}OntologyProperty:Watershed2021571344242014-04-08T13:45:45Z{{DatatypeProperty -| labels = -{{label|en|watershed}} -{{label|de|Wasserscheide}} -{{label|nl|waterscheiding}} -{{label|es|cuenca hidrográfica}} -{{label|el|λεκάνη_απορροής}} -| rdfs:domain = Stream -| rdfs:range = Area -}}OntologyProperty:WaterwayThroughTunnel2023432366552014-07-08T14:26:16Z -{{ObjectProperty -| rdfs:label@en = waterway through tunnel -| rdfs:label@sr = пловни пут кроз тунел -| rdfs:label@de = Wasserweg durch Tunnel -| rdfs:domain = WaterwayTunnel -| rdfs:range = owl:Thing -| rdfs:comment@en = Waterway that goes through the tunnel. -| rdfs:subPropertyOf = dul:hasCommonBoundary -}}OntologyProperty:Wavelength2022192344252014-04-08T13:45:54Z{{DatatypeProperty -| rdfs:label@en = wavelength -| rdfs:label@de = Wellenlänge -| rdfs:label@sr= таласна дужина -| rdfs:label@fr = longueur d'onde -| rdfs:range = Length -| rdfs:domain = Colour -}}OntologyProperty:Weapon2026817528672018-02-13T10:28:11Z{{ObjectProperty -| labels = -{{label|en|weapon}} -{{label|de|Waffe}} -{{label|sr|оружје}} -{{label|nl|wapen}} -{{label|fr|arme}} -| rdfs:domain = MilitaryConflict , Attack -| rdfs:range = Weapon -}}OntologyProperty:Webcast2023089366562014-07-08T14:26:19Z -{{ObjectProperty -| labels = - {{label|en|webcast}} - {{label|de|webcast}} - {{label|nl|webcast}} -| rdfs:domain = owl:Thing -| rdfs:range = owl:Thing -| rdfs:comment@en = The URL to the webcast of the Thing. -| rdfs:subPropertyOf = dul:isClassifiedBy -}}OntologyProperty:WebsiteLabel2026932348522014-05-15T05:20:03Z{{DatatypeProperty -| labels = -{{label|en|label of a website}} -| rdfs:range = rdf:langString -}}OntologyProperty:WeddingParentsDate2023350304892014-01-21T13:56:06Z{{DatatypeProperty -|rdfs:label@en = Parents Wedding Date -|rdfs:label@sr = датум венчања родитеља -|rdfs:label@de = Hochzeitstag der Eltern -|rdfs:label@pt = data do casamento dos pais -|rdfs:domain = Person -|rdfs:range = xsd:date -}}OntologyProperty:Weight2021572527782018-01-23T15:03:37Z{{DatatypeProperty -| labels = -{{label|en|weight}} -{{label|sr|тежина}} -{{label|fr|poids}} -{{label|nl|gewicht}} -{{label|da|vægt}} -{{label|de|Gewicht}} -{{label|pt|peso}} -{{label|el|βάρος}} -{{label|ja|体重}} -| rdfs:range = Mass -| rdf:type = owl:FunctionalProperty -| owl:equivalentProperty = wikidata:P2067 -}}OntologyProperty:WestPlace20211085455982015-03-08T14:11:57Z{{ObjectProperty -| rdfs:label@en = west place -| rdfs:label@fr = lieu à l'ouest -| rdfs:comment@fr = indique un autre lieu situé à l'ouest. -| rdfs:comment@en = indicates another place situated west. -| rdfs:domain = Place -| rdfs:range = Place -| owl:inverseOf = eastPlace -| rdfs:subPropertyOf = closeTo -}}OntologyProperty:WhaDraft2021574304822014-01-21T13:49:11Z{{DatatypeProperty -| rdfs:label@en = wha draft -| rdfs:label@sr = WHA драфт -| rdfs:domain = IceHockeyPlayer -| rdfs:range = xsd:string -}}OntologyProperty:WhaDraftTeam2021575366572014-07-08T14:26:22Z -{{ObjectProperty -| rdfs:label@en = wha draft team -| rdfs:label@sr = WHA тим који је драфтовао играча -| rdfs:domain = IceHockeyPlayer -| rdfs:range = HockeyTeam -| rdfs:subPropertyOf = dul:isMemberOf -}}OntologyProperty:WhaDraftYear2021576304802014-01-21T13:48:29Z{{DatatypeProperty -| rdfs:label@en = wha draft year -| rdfs:label@sr = WHA година драфта -| rdfs:domain = IceHockeyPlayer -| rdfs:range = xsd:date -}}OntologyProperty:Wheelbase2021577527792018-01-23T15:04:03Z{{DatatypeProperty -| rdfs:label@en = wheelbase -| rdfs:label@de = Radstand -| rdfs:label@sr= међуосовинско растојање -| rdfs:domain = Automobile -| rdfs:range = Length -| rdf:type = owl:FunctionalProperty -| owl:equivalentProperty = wikidata:P3039 -}}OntologyProperty:WholeArea2027942344302014-04-08T13:46:34Z{{ObjectProperty -| labels = -{{label|en|whole area}} -{{label|de|gesamter Bereich}} -| rdfs:domain = Place -| rdfs:range = Area -}}OntologyProperty:Width2021578536762020-07-30T21:29:56Z{{DatatypeProperty -| labels = -{{label|en|width}} -{{label|es|ancho}} -{{label|sr|ширина}} -{{label|nl|breedte}} -{{label|de|Breite}} -{{label|el|πλάτος}} -| rdfs:range = Length -| rdf:type = owl:FunctionalProperty -| owl:equivalentProperty = schema:width, wikidata:P2049 -}}OntologyProperty:WidthQuote2027089256132013-05-26T13:32:39Z{{DatatypeProperty -| labels = -{{label|en|width quote}} -| rdfs:domain = Place -| rdfs:range = xsd:string -}}OntologyProperty:WikiPageCharacterSize2029354347992014-05-14T08:48:36Z'''{{Reserved for DBpedia}}''' - -{{DatatypeProperty -| rdfs:label@en = Character size of wiki page -| rdfs:domain = owl:Thing -| rdfs:range = xsd:nonNegativeInteger -| comments = -{{comment|en|Needs to be removed, left at the moment to not break DBpedia Live}} -}}OntologyProperty:WikiPageDisambiguates2022426186922012-05-28T19:35:13Z'''{{Reserved for DBpedia}}''' - -{{ObjectProperty -| rdfs:label@en = Wikipage disambiguates -| rdfs:domain = owl:Thing -| rdfs:range = owl:Thing -| comments = -{{comment|en|Reserved for DBpedia. {{Reserved for DBpedia}}}} -}}OntologyProperty:WikiPageEditLink2028156287212013-11-06T15:33:22Z'''{{Reserved for DBpedia}}''' - -{{ObjectProperty -| rdfs:label@en = Link to the Wikipage edit URL -| rdfs:domain = owl:Thing -| rdfs:range = owl:Thing -| comments = -{{comment|en|Reserved for DBpedia. {{Reserved for DBpedia}}}} -}}OntologyProperty:WikiPageExternalLink2022430186932012-05-28T19:35:34Z'''{{Reserved for DBpedia}}''' - -{{ObjectProperty -| rdfs:label@en = Link from a Wikipage to an external page -| rdfs:domain = owl:Thing -| rdfs:range = owl:Thing -| comments = -{{comment|en|Reserved for DBpedia. {{Reserved for DBpedia}}}} -}}OntologyProperty:WikiPageExtracted2028154287182013-11-06T15:29:56Z'''{{Reserved for DBpedia}}''' - -{{DatatypeProperty -| rdfs:label@en = extraction datetime -| rdfs:range = xsd:dateTime -| comments = -{{comment|en|Date a page was extracted '''{{Reserved for DBpedia}}'''}} -}}OntologyProperty:WikiPageHistoryLink2028158287232013-11-06T18:20:28Z'''{{Reserved for DBpedia}}''' - -{{ObjectProperty -| rdfs:label@en = Link to the Wikipage history URL -| rdfs:domain = owl:Thing -| rdfs:range = owl:Thing -| comments = -{{comment|en|Reserved for DBpedia. {{Reserved for DBpedia}}}} -}}OntologyProperty:WikiPageID2022429186942012-05-28T19:35:43Z'''{{Reserved for DBpedia}}''' - -{{DatatypeProperty -| rdfs:label@en = Wikipage page ID -| rdfs:range = xsd:integer -| comments = -{{comment|en|Reserved for DBpedia. {{Reserved for DBpedia}}}} -}}OntologyProperty:WikiPageInDegree2029352345812014-04-16T19:24:05Z'''{{Reserved for DBpedia}}''' - -{{DatatypeProperty -| rdfs:label@en = Wiki page in degree -| rdfs:domain = owl:Thing -| rdfs:range = xsd:nonNegativeInteger -| comments = -{{comment|en|Reserved for DBpedia. {{Reserved for DBpedia}}}} -}}OntologyProperty:WikiPageInterLanguageLink2025779186982012-05-28T19:40:06Z'''{{Reserved for DBpedia}}''' - -{{ObjectProperty -| rdfs:label@en = Link from a Wikipage to a Wikipage in a different language about the same or a related subject. -| rdfs:domain = owl:Thing -| rdfs:range = owl:Thing -| comments = -{{comment|en|Reserved for DBpedia. {{Reserved for DBpedia}}}} -}}OntologyProperty:WikiPageLength2029376347982014-05-14T08:47:50Z'''{{Reserved for DBpedia}}''' - -{{DatatypeProperty -| rdfs:label@en = page length (characters) of wiki page -| rdfs:domain = owl:Thing -| rdfs:range = xsd:nonNegativeInteger -| comments = -{{comment|en|Reserved for DBpedia. {{Reserved for DBpedia}}}} -}}OntologyProperty:WikiPageModified2028157287222013-11-06T15:38:56Z'''{{Reserved for DBpedia}}''' - -{{DatatypeProperty -| rdfs:label@en = Wikipage modification datetime -| rdfs:range = xsd:dateTime -| comments = -{{comment|en|Reserved for DBpedia '''{{Reserved for DBpedia}}'''}} -}}OntologyProperty:WikiPageOutDegree2029353345822014-04-16T19:24:39Z'''{{Reserved for DBpedia}}''' - -{{DatatypeProperty -| rdfs:label@en = Wiki page out degree -| rdfs:domain = owl:Thing -| rdfs:range = xsd:nonNegativeInteger -| comments = -{{comment|en|Reserved for DBpedia. {{Reserved for DBpedia}}}} -}}OntologyProperty:WikiPageRedirects2022425186952012-05-28T19:36:13Z'''{{Reserved for DBpedia}}''' - -{{ObjectProperty -| rdfs:label@en = Wikipage redirect -| rdfs:domain = owl:Thing -| rdfs:range = owl:Thing -| comments = -{{comment|en|Reserved for DBpedia. {{Reserved for DBpedia}}}} -}}OntologyProperty:WikiPageRevisionID2022427186962012-05-28T19:36:22Z'''{{Reserved for DBpedia}}''' - -{{DatatypeProperty -| rdfs:label@en = Wikipage revision ID -| rdfs:range = xsd:integer -| comments = -{{comment|en|Reserved for DBpedia. {{Reserved for DBpedia}}}} -}}OntologyProperty:WikiPageRevisionLink2028155287202013-11-06T15:32:54Z'''{{Reserved for DBpedia}}''' - -{{ObjectProperty -| rdfs:label@en = Link to the Wikipage revision URL -| rdfs:domain = owl:Thing -| rdfs:range = owl:Thing -| comments = -{{comment|en|Reserved for DBpedia. {{Reserved for DBpedia}}}} -}}OntologyProperty:WikiPageUsesTemplate20211966525452017-10-25T11:35:10Z{{ObjectProperty -| labels = - {{label|en|wiki page uses template}} - {{label|de|Wikiseite verwendet Template}} -| comments = - {{comment|en|DO NOT USE THIS PROPERTY! For internal use only.}} -| rdfs:range = WikimediaTemplate -}}OntologyProperty:WikiPageWikiLink2022431366582014-07-08T14:26:25Z'''{{Reserved for DBpedia}}''' - - -{{ObjectProperty -| rdfs:label@en = Link from a Wikipage to another Wikipage -| rdfs:domain = owl:Thing -| rdfs:range = owl:Thing -| comments = - {{comment|en|Reserved for DBpedia. {{Reserved for DBpedia}}}} -| rdfs:subPropertyOf = dul:associatedWith -}}OntologyProperty:WikiPageWikiLinkText20210113377362014-09-08T13:44:53Z'''{{Reserved for DBpedia}}''' - - -{{ObjectProperty -| rdfs:label@en = Text used to link from a Wikipage to another Wikipage -| rdfs:domain = owl:Thing -| rdfs:range = owl:Thing -| comments = - {{comment|en|Reserved for DBpedia. {{Reserved for DBpedia}}}} -| rdfs:subPropertyOf = -}}OntologyProperty:WikidataSplitIri20211440495202015-11-13T15:01:35Z{{ObjectProperty -| labels = - {{label|en|Wikidata IRI slit }} -| comments = - {{comment|en|is used to denote splitting of a Wikidata IRI to one or more IRIs }} -}}OntologyProperty:Wilaya2026844366592014-07-08T14:26:28Z -{{ObjectProperty -| labels = - {{label|en|wilaya}} - {{label|sr|вилајет}} -| rdfs:domain = Settlement -| rdfs:range = Place -| rdfs:subPropertyOf = dul:hasLocation -}}OntologyProperty:WimbledonDouble2027724500782016-01-04T12:40:41Z{{DatatypeProperty -| labels = -{{label|en|wimbledon double}} -{{label|sr|вимблдон дубл}} -| rdfs:domain = TennisPlayer -| rdfs:range = xsd:string -}}OntologyProperty:WimbledonMixed2027728500792016-01-04T12:42:47Z{{DatatypeProperty -| labels = -{{label|en|wimbledon mixed}} -{{label|sr|вимблдон микс дубл}} -| rdfs:domain = TennisPlayer -| rdfs:range = xsd:string -}}OntologyProperty:WimbledonSingle2027720500802016-01-04T12:43:15Z{{DatatypeProperty -| labels = -{{label|en|wimbledon single}} -{{label|sr|вимблдон појединачно}} -| rdfs:domain = TennisPlayer -| rdfs:range = xsd:string -}}OntologyProperty:WineProduced2021579366602014-07-08T14:26:31Z -{{ObjectProperty -| rdfs:label@en = wine produced -| rdfs:label@sr = производи вино -| rdfs:domain = WineRegion -| rdfs:subPropertyOf = dul:isLocationOf -}}OntologyProperty:WineRegion2021580366612014-07-08T14:26:34Z -{{ObjectProperty -| rdfs:label@en = wine region -| rdfs:label@de = Weinregion -| rdfs:label@sr = регион вина -| rdfs:domain = Grape -| rdfs:range = WineRegion -| rdfs:subPropertyOf = dul:hasLocation -}}OntologyProperty:WineYear2021581344332014-04-08T13:46:56Z{{DatatypeProperty -| rdfs:label@en = wine year -| rdfs:label@de = Weinjahr -| rdfs:label@sr = година флаширања вина -| rdfs:domain = WineRegion -| rdfs:range = xsd:date -}}OntologyProperty:WingArea2025630344342014-04-08T13:47:00Z{{ DatatypeProperty - - | rdfs:label@en = wing area -| rdfs:label@de = Flügelfläche - | rdfs:label@sr = површина крила - | rdfs:domain = Aircraft - | rdfs:range = Area - -}}OntologyProperty:Wingspan2025627344352014-04-08T13:47:04Z{{ DatatypeProperty - - | rdfs:label@en = wingspan -| rdfs:label@de = Spannweite - | rdfs:label@sr = распон крила - | rdfs:domain = Aircraft - | rdfs:range = Length - -}}OntologyProperty:Wins2021582524602017-10-15T21:26:46Z{{DatatypeProperty -| labels = -{{label|en|wins}} -{{label|de|Siege}} -{{label|sr|победе}} -{{label|el|νίκες}} -{{label|nl|zeges}} -| rdfs:domain = owl:Thing -| rdfs:range = xsd:nonNegativeInteger -}}OntologyProperty:WinsAtAlpg2022554366622014-07-08T14:26:37Z -{{ObjectProperty -| rdfs:label@en = wins at ALPG -| rdfs:label@sr = победе на ALPG -| rdfs:domain = GolfPlayer -| rdfs:subPropertyOf = dul:isParticipantIn -}}OntologyProperty:WinsAtAsia2022555366632014-07-08T14:26:41Z -{{ObjectProperty -| rdfs:label@en = wins at ASIA -| rdfs:domain = GolfPlayer -| rdfs:subPropertyOf = dul:isParticipantIn -}}OntologyProperty:WinsAtAus2022557366642014-07-08T14:26:44Z -{{ObjectProperty -| rdfs:label@en = wins at AUS -| rdfs:domain = GolfPlayer -| rdfs:subPropertyOf = dul:isParticipantIn -}}OntologyProperty:WinsAtChallenges2022559366652014-07-08T14:26:47Z -{{ObjectProperty -| rdfs:label@en = wins at challenges -| rdfs:domain = GolfPlayer -| rdfs:subPropertyOf = dul:isParticipantIn -}}OntologyProperty:WinsAtChampionships2022560366662014-07-08T14:26:50Z -{{ObjectProperty -| rdfs:label@en = wins at championships -| rdfs:domain = GolfPlayer -| rdfs:subPropertyOf = dul:isParticipantIn -}}OntologyProperty:WinsAtJLPGA2022563366672014-07-08T14:26:54Z -{{ObjectProperty -| rdfs:label@en = wins at JLPGA -| rdfs:label@sr = победе на JLPGA -| rdfs:domain = GolfPlayer -| rdfs:subPropertyOf = dul:isParticipantIn -}}OntologyProperty:WinsAtJapan2022562366682014-07-08T14:26:57Z -{{ObjectProperty -| rdfs:label@en = wins at japan -| rdfs:domain = GolfPlayer -| rdfs:subPropertyOf = dul:isParticipantIn -}}OntologyProperty:WinsAtKLPGA2022564366692014-07-08T14:27:15Z -{{ObjectProperty -| rdfs:label@en = wins at KLPGA -| rdfs:label@sr = победе на KLPGA -| rdfs:domain = GolfPlayer -| rdfs:subPropertyOf = dul:isParticipantIn -}}OntologyProperty:WinsAtLAGT2022565366702014-07-08T14:27:18Z -{{ObjectProperty -| rdfs:label@en = wins at LAGT -| rdfs:label@sr = победе на LAGT -| rdfs:domain = GolfPlayer -| rdfs:subPropertyOf = dul:isParticipantIn -}}OntologyProperty:WinsAtLET2022566366712014-07-08T14:27:22Z -{{ObjectProperty -| rdfs:label@en = wins at LET -| rdfs:label@sr = победе на LET -| rdfs:domain = GolfPlayer -| rdfs:subPropertyOf = dul:isParticipantIn -}}OntologyProperty:WinsAtLPGA2022567366722014-07-08T14:27:26Z -{{ObjectProperty -| rdfs:label@en = wins at LPGA -| rdfs:label@sr = победе на LPGA -| rdfs:domain = GolfPlayer -| rdfs:subPropertyOf = dul:isParticipantIn -}}OntologyProperty:WinsAtMajors2022568366732014-07-08T14:27:29Z -{{ObjectProperty -| rdfs:label@en = wins at majors -| rdfs:domain = GolfPlayer -| rdfs:subPropertyOf = dul:isParticipantIn -}}OntologyProperty:WinsAtNWIDE2022569366742014-07-08T14:27:33Z -{{ObjectProperty -| rdfs:label@en = wins at NWIDE -| rdfs:label@sr = победе на NWIDE -| rdfs:domain = GolfPlayer -| rdfs:subPropertyOf = dul:isParticipantIn -}}OntologyProperty:WinsAtOtherTournaments2022570366752014-07-08T14:27:36Z -{{ObjectProperty -| rdfs:label@en = wins at other tournaments -| rdfs:label@sr = победе на осталим турнирима -| rdfs:domain = GolfPlayer -| rdfs:subPropertyOf = dul:isParticipantIn -}}OntologyProperty:WinsAtPGA2022571366762014-07-08T14:27:40Z -{{ObjectProperty -| rdfs:label@en = wins at pga -| rdfs:label@sr = победе на PGA -| rdfs:domain = GolfPlayer -| rdfs:subPropertyOf = dul:isParticipantIn -}}OntologyProperty:WinsAtProTournaments2022572366772014-07-08T14:27:42Z -{{ObjectProperty -| rdfs:label@en = wins at pro tournaments -| rdfs:label@sr = победе на професионалним турнирима -| rdfs:domain = GolfPlayer -| rdfs:subPropertyOf = dul:isParticipantIn -}}OntologyProperty:WinsAtSenEuro2022573366782014-07-08T14:27:46Z -{{ObjectProperty -| rdfs:label@en = wins at Senior Euro -| rdfs:domain = GolfPlayer -| rdfs:subPropertyOf = dul:isParticipantIn -}}OntologyProperty:WinsAtSun2022574366792014-07-08T14:27:49Z -{{ObjectProperty -| rdfs:label@en = wins at sun -| rdfs:label@sr = победе на SUN -| rdfs:domain = GolfPlayer -| rdfs:subPropertyOf = dul:isParticipantIn -}}OntologyProperty:WinsInEurope2022561366802014-07-08T14:27:52Z -{{ObjectProperty -| rdfs:label@en = wins in Europe -| rdfs:label@sr = победе у Европи -| rdfs:label@de = Siege in Europa -| rdfs:domain = GolfPlayer -| rdfs:subPropertyOf = dul:isParticipantIn -}}OntologyProperty:WinterAppearances2021583366812014-07-08T14:27:55Z -{{ObjectProperty -| rdfs:label@en = winter appearances -| rdfs:label@sr = зимски наступи -| rdfs:domain = OlympicResult -| rdfs:range = OlympicResult -| rdfs:subPropertyOf = dul:sameSettingAs -}}OntologyProperty:WinterTemperature2021584344372014-04-08T13:47:14Z{{DatatypeProperty -| rdfs:label@en = winter temperature -| rdfs:label@de = Wintertemperatur -| rdfs:label@sr = зимска температура -| rdfs:domain = Settlement -| rdfs:range = Temperature -}}OntologyProperty:WoRMS20210349391102015-01-09T17:55:28Z{{ObjectProperty -| labels = -{{label|en|WoRMS}} -{{label|nl|WoRMS}} -| comments = -{{comment|en|World Register of Marine Species}} -| rdfs:domain = Species -}}OntologyProperty:WordBefore2027113303862014-01-21T10:56:51Z{{DatatypeProperty -| labels = -{{label|en|word before the country}} -{{label|sr|реч пре државе}} -| rdfs:domain = Country -| rdfs:range = xsd:string -}}OntologyProperty:Work2026812344382014-04-08T13:47:19Z{{DatatypeProperty -| labels = -{{label|en|work}} -{{label|de|Arbeit}} -| rdfs:domain = FictionalCharacter -| rdfs:range = xsd:string -}}OntologyProperty:WorkArea2026430303762014-01-21T10:49:21Z{{DatatypeProperty -| labels = -{{label|en|work area}} -{{label|sr|радни простор}} -{{label|de|Arbeitsplätze}} -| rdfs:domain = Building -| rdfs:range = Area -}}OntologyProperty:World2027765344392014-04-08T13:47:23Z{{ObjectProperty -| labels = -{{label|en|world}} -{{label|de|Welt}} -{{label|sr|свет}} -| rdfs:domain = Person -| rdfs:range = skos:Concept -}}OntologyProperty:WorldChampionTitleYear2023542303742014-01-21T10:44:32Z{{DatatypeProperty -| labels = - {{label|en|year of world champion title}} - {{label|sr|година освајања светског шампионата}} - {{label|nl|jaar van wereldkampioen titel}} - {{label|fr|année d'obtention du titre de champion du monde}} -| comments = - {{comment|en|can be one or several years}} - {{comment|sr|може бити једна или више година}} - {{comment|fr|il peut s'agir d'une ou de plusieurs années}} -| rdfs:domain = Athlete -| rdfs:range = xsd:string -}}OntologyProperty:WorldOpen2028050303702014-01-21T10:40:39Z{{DatatypeProperty -| labels = -{{label|en|world open}} -{{label|sr|светско отворено првенство}} -| rdfs:domain = Athlete -| rdfs:range = xsd:string -}}OntologyProperty:WorldTeamCup2027741303672014-01-21T10:37:27Z{{DatatypeProperty -| labels = -{{label|en|world team cup}} -{{label|sr|светско клупско првенство}} -| rdfs:domain = Athlete -| rdfs:range = xsd:string -}}OntologyProperty:WorldTournament2027567344402014-04-08T13:47:27Z{{ObjectProperty -| labels = -{{label|en|world tournament}} -{{label|de|Weltturnier}} -{{label|sr|светски турнир}} -| rdfs:range = Tournament -| rdfs:domain = Person -}}OntologyProperty:WorldTournamentBronze2027575303602014-01-21T10:31:26Z{{DatatypeProperty -| labels = -{{label|en|world tournament bronze}} -{{label|sr|број бронзаних медаља са светских турнира}} -| rdfs:domain = Person -| rdfs:range = xsd:nonNegativeInteger -}}OntologyProperty:WorldTournamentGold2027573307022014-01-22T10:41:42Z{{DatatypeProperty -| labels = -{{label|en|world tournament gold}} -{{label|sr|број златних медаља са светских турнира}} -| rdfs:domain = Person -| rdfs:range = xsd:nonNegativeInteger -}}OntologyProperty:WorldTournamentSilver2027574303552014-01-21T10:27:30Z{{DatatypeProperty -| labels = -{{label|en|world tournament silver}} -{{label|sr|број сребрних медаља са светских турнира}} -| rdfs:domain = Person -| rdfs:range = xsd:nonNegativeInteger -}}OntologyProperty:WorstDefeat2021585344502014-04-08T14:33:01Z{{DatatypeProperty -| rdfs:label@en = worst defeat -| rdfs:label@de = höchste Niederlage -| rdfs:label@sr = најтежи пораз -| rdfs:domain = SoccerClub -| rdfs:range = xsd:string -}}OntologyProperty:WptFinalTable2028041307042014-01-22T10:42:25Z{{DatatypeProperty -| labels = -{{label|en|wpt final table}} -{{label|sr|WPT финале}} -| rdfs:domain = PokerPlayer -| rdfs:range = xsd:nonNegativeInteger -}}OntologyProperty:WptItm2028042303482014-01-21T10:22:39Z{{DatatypeProperty -| labels = -{{label|en|wpt itm}} -{{label|sr|WPT ITM}} -| rdfs:domain = PokerPlayer -| rdfs:range = xsd:nonNegativeInteger -}}OntologyProperty:WptTitle2028040303462014-01-21T10:19:40Z{{DatatypeProperty -| labels = -{{label|en|wpt title}} -{{label|sr|WPT титула}} -| rdfs:domain = PokerPlayer -| rdfs:range = xsd:string -}}OntologyProperty:Writer2021586366822014-07-08T14:27:59Z -{{ObjectProperty -| labels = - {{label|en|writer}} - {{label|sr|писац}} - {{label|de|schriftsteller}} - {{label|it|scrittore}} - {{label|nl|schrijver}} - {{label|el|σεναριογράφος}} -| rdfs:domain = Work -| rdfs:range = Person -| rdfs:subPropertyOf = dul:coparticipatesWith -}}OntologyProperty:WsopItm2028036303422014-01-21T10:17:02Z{{DatatypeProperty -| labels = -{{label|en|wsop itm}} -{{label|sr|WSOP ITM}} -| rdfs:domain = PokerPlayer -| rdfs:range = xsd:nonNegativeInteger -}}OntologyProperty:WsopWinYear2028039307062014-01-22T10:43:36Z{{DatatypeProperty -| labels = -{{label|en|wsop win year}} -{{label|sr|година освајања WSOP-а}} -| rdfs:domain = PokerPlayer -| rdfs:range = xsd:gYear -}}OntologyProperty:WsopWristband2028035303402014-01-21T10:02:59Z{{DatatypeProperty -| labels = -{{label|en|wsop wristband}} -{{label|sr|WSOP наруквица}} -| rdfs:domain = PokerPlayer -| rdfs:range = xsd:nonNegativeInteger -| rdfs:comment@sr = Наруквица коју осваја шампион WSOP-a. -}}OntologyProperty:Year2021587538062020-12-01T18:00:52Z{{DatatypeProperty -| labels = -{{label|en|year}} -{{label|sr|година}} -{{label|de|Jahr}} -{{label|it|anno}} -{{label|es|año}} -{{label|nl|jaar}} -{{label|el|έτος}} -{{label|fr|année}} -| rdfs:range = xsd:gYear -| owl:equivalentProperty=wikidata:P2257 -}}OntologyProperty:YearElevationIntoNobility2029289344422014-04-08T13:47:34Z{{DatatypeProperty -| labels = -{{label|en|year of elevation into the nobility}} -{{label|de|Jahr der Erhebung in den Adelsstand}} -{{label|nl|jaar van verheffing in de adelstand}} -| rdfs:domain = NobleFamily -| rdfs:range = xsd:string -}}OntologyProperty:YearOfConstruction2023221537182020-09-06T12:42:45Z{{DatatypeProperty -| labels = -{{label|en|year of construction}} -{{label|sr|година изградње}} -{{label|nl|bouwjaar}} -{{label|de|Baujahr}} -{{label|el|έτος κατασκευής}} -| rdfs:domain = Place -| rdfs:range = xsd:gYear -| rdfs:comment@en = The year in which construction of the Place was finished. -| rdfs:comment@sr = Година када је изградња нечега завршена. -| rdfs:comment@el = Το έτος στο οποίο ολοκληρώθηκε η κατασκευή ενός μέρους. -| owl:equivalentProperty = bag:oorspronkelijkBouwjaar -}}OntologyProperty:YearOfElectrification2023245303252014-01-21T09:51:21Z{{DatatypeProperty -| rdfs:label@en = year of electrification -| rdfs:label@sr = година електрификације -| rdfs:label@de = Jahr der Elektrifizierung -| rdfs:domain = Station -| rdfs:range = xsd:gYear -| rdfs:comment@en = Year station was electrified, if not previously at date of opening. -| rdfs:comment@sr = Година када је станица електрифицирана, уколико није била при отварању. -}}OntologyProperty:Years2021588514382016-08-16T07:30:44Z{{DatatypeProperty -| labels = -{{label|en|years}} -{{label|el|χρόνια}} -{{label|de|Jahre}} -{{label|sr|сезона}} -{{label|nl|seizoen}} -{{label|ja|年}} -| rdfs:domain = SoccerPlayer -| rdfs:range = xsd:gYear -}}OntologyProperty:YouthClub2021589514392016-08-16T07:31:49Z -{{ObjectProperty -| labels = - {{label|en|youth club}} - {{label|de|Jugendclub}} - {{label|sr|омладински клуб}} - {{label|nl|jeugdclub}} - {{label|ja|ユースクラブ}} -| rdfs:domain = Athlete -| rdfs:range = SportsTeam -| rdfs:subPropertyOf = dul:isMemberOf -}}OntologyProperty:YouthWing2023346366842014-07-08T14:28:05Z -{{ObjectProperty -| rdfs:label@en = youth wing -| rdfs:label@sr = омладинско крило -| rdfs:label@pt = ala jovem -| rdfs:domain = PoliticalParty -| rdfs:subPropertyOf = dul:hasPart -}}OntologyProperty:YouthYears2021590514432016-08-16T07:36:12Z{{DatatypeProperty -| rdfs:label@en = youth years -| rdfs:label@de = Jugendjahre -| rdfs:label@sr = омладинске године -| rdfs:label@ja = ユース年 -| rdfs:domain = SoccerPlayer -| rdfs:range = xsd:gYear -}}OntologyProperty:Zdb2025093303112014-01-21T09:26:54Z{{DatatypeProperty - |rdfs:label@en=zdb - |rdfs:label@sr=zdb - |rdfs:comment@en=Identifier for serial titles. More precise than issn - |rdfs:comment@sr=zdb је серијски број који се користи за индетификацију. Прецизнији је од issn. - |rdfs:domain=PeriodicalLiterature - |rdfs:range= xsd:string -}}OntologyProperty:ZipCode2027289527812018-01-23T15:05:06Z{{DatatypeProperty -| labels = -{{label|sr|Поштански код}} -{{label|en|zip code}} -{{label|el|ταχυδρομικός κώδικας}} -{{label|de| Postleitzahl}} -{{label|gl|código postal}} -{{label|nl|postcode}} -| rdfs:domain = PopulatedPlace -| rdfs:range = xsd:string -| rdfs:subPropertyOf = postalCode -| rdf:type =owl:FunctionalProperty -| owl:equivalentProperty = wikidata:P281 -}}OntologyProperty:ZodiacSign20210476488522015-09-08T18:06:20Z{{ObjectProperty -| rdfs:label@en = zodiac sign -| rdfs:label@gl = signo zodiacal -| rdfs:label@bg = зодия -| rdfs:comment@en = Zodiac Sign. Applies to persons, planets, etc -| rdfs:comment@bg = Зодиакален знак. Приложимо за хора, планети и пр -}} \ No newline at end of file From cb076dde98a563b4cdfab93d852398e07bb168df Mon Sep 17 00:00:00 2001 From: celian_ringwald Date: Sun, 27 Nov 2022 02:39:33 +0100 Subject: [PATCH 28/54] ADD FIRST HISTORY PROTOTYPE --- .../main/resources/datasetdefinitions.json | 9 + .../config/provenance/DBpediaDatasets.scala | 7 +- history/extraction.properties | 2 +- .../frwiki-20220101-download-complete | 0 .../frwiki-20220101-extraction-complete | 0 .../20220101/frwiki-20220101-historic.ttl.bz2 | Bin 83 -> 0 bytes .../frwiki-20220101-template-redirects.obj | Bin 61 -> 0 bytes .../sources/WikipediaDumpParserHistory.java | 138 ++--- .../dbpedia/extraction/config/Config2.scala | 422 +++++++++++++ .../destinations/WriterDestination2.scala | 56 ++ .../dump/extract/ConfigLoader2.scala | 132 ++-- .../extraction/dump/extract/Extraction2.scala | 4 +- .../dump/extract/ExtractionJob2.scala | 101 ++++ .../dump/extract/SerializableUtils2.scala | 106 ++++ .../dump/extract/SparkExtractionJob2.scala | 248 ++++++++ .../mappings/CompositeExtractor2.scala | 16 + .../mappings/CompositeParseExtractor2.scala | 83 +++ ...mpositeWikiPageWithRevisionExtractor.scala | 9 + .../mappings/ExtractionMonitor2.scala | 204 +++++++ .../mappings/HistoryPageExtractor.scala | 94 ++- .../mappings/RedirectExtractor2.scala | 40 ++ .../extraction/mappings/Redirects2.scala | 229 +++++++ .../dbpedia/extraction/sources/Source2.scala | 3 +- .../extraction/sources/XMLSource2.scala | 26 +- .../util/DumpExtractionContext2.scala | 33 + .../extraction/util/ExtractionRecorder2.scala | 570 ++++++++++++++++++ .../util/SparkExtractionContext2.scala | 14 + .../extraction/wikiparser/RevisionNode.scala | 17 +- .../wikiparser/WikiPageWithRevisions.scala | 70 ++- .../extraction.config.properties | 2 +- .../dump/extract/ExtractionTest.scala | 41 +- 31 files changed, 2426 insertions(+), 250 deletions(-) delete mode 100644 history/sample-xml-dump/frwiki/20220101/frwiki-20220101-download-complete delete mode 100644 history/sample-xml-dump/frwiki/20220101/frwiki-20220101-extraction-complete delete mode 100644 history/sample-xml-dump/frwiki/20220101/frwiki-20220101-historic.ttl.bz2 delete mode 100644 history/sample-xml-dump/frwiki/20220101/frwiki-20220101-template-redirects.obj create mode 100755 history/src/main/scala/org/dbpedia/extraction/config/Config2.scala create mode 100644 history/src/main/scala/org/dbpedia/extraction/destinations/WriterDestination2.scala create mode 100644 history/src/main/scala/org/dbpedia/extraction/dump/extract/ExtractionJob2.scala create mode 100644 history/src/main/scala/org/dbpedia/extraction/dump/extract/SerializableUtils2.scala create mode 100644 history/src/main/scala/org/dbpedia/extraction/dump/extract/SparkExtractionJob2.scala create mode 100644 history/src/main/scala/org/dbpedia/extraction/mappings/CompositeExtractor2.scala create mode 100644 history/src/main/scala/org/dbpedia/extraction/mappings/CompositeParseExtractor2.scala create mode 100644 history/src/main/scala/org/dbpedia/extraction/mappings/CompositeWikiPageWithRevisionExtractor.scala create mode 100644 history/src/main/scala/org/dbpedia/extraction/mappings/ExtractionMonitor2.scala create mode 100644 history/src/main/scala/org/dbpedia/extraction/mappings/RedirectExtractor2.scala create mode 100644 history/src/main/scala/org/dbpedia/extraction/mappings/Redirects2.scala create mode 100644 history/src/main/scala/org/dbpedia/extraction/util/DumpExtractionContext2.scala create mode 100644 history/src/main/scala/org/dbpedia/extraction/util/ExtractionRecorder2.scala create mode 100644 history/src/main/scala/org/dbpedia/extraction/util/SparkExtractionContext2.scala diff --git a/core/src/main/resources/datasetdefinitions.json b/core/src/main/resources/datasetdefinitions.json index 521f573410..a1d0d83ce0 100644 --- a/core/src/main/resources/datasetdefinitions.json +++ b/core/src/main/resources/datasetdefinitions.json @@ -626,5 +626,14 @@ "traits":"LinkedData, Published", "defaultgraph": "dataset" } + }, + "history": { + "history_dataset": { + "name": "History Links", + "traits":"LinkedData, Published", + "desc": "All data related to history", + "defaultgraph": "dataset" + } + } } diff --git a/core/src/main/scala/org/dbpedia/extraction/config/provenance/DBpediaDatasets.scala b/core/src/main/scala/org/dbpedia/extraction/config/provenance/DBpediaDatasets.scala index a040316c5b..91bc5ef0a5 100644 --- a/core/src/main/scala/org/dbpedia/extraction/config/provenance/DBpediaDatasets.scala +++ b/core/src/main/scala/org/dbpedia/extraction/config/provenance/DBpediaDatasets.scala @@ -278,8 +278,13 @@ object DBpediaDatasets extends java.io.Serializable val CitatedFacts: Dataset = datasets("cited_facts") //TODO add description @Dimitris //val CitationTypes = datasets.get("citation_types").get + /** + * History + * + */ + val HistoryData: Dataset = datasets("history_dataset") - /** + /** * misc */ val MainDataset: Dataset = datasets("main_dataset") diff --git a/history/extraction.properties b/history/extraction.properties index 341c8d2478..7500ad4db4 100644 --- a/history/extraction.properties +++ b/history/extraction.properties @@ -19,7 +19,7 @@ languages=fr # extractor class names starting with "." are prefixed by "org.dbpedia.extraction.mappings" extractors=.HistoryPageExtractor - +extractors.fr=.HistoryPageExtractor # If we need to Exclude Non-Free Images in this Extraction, set this to true copyrightCheck=false diff --git a/history/sample-xml-dump/frwiki/20220101/frwiki-20220101-download-complete b/history/sample-xml-dump/frwiki/20220101/frwiki-20220101-download-complete deleted file mode 100644 index e69de29bb2..0000000000 diff --git a/history/sample-xml-dump/frwiki/20220101/frwiki-20220101-extraction-complete b/history/sample-xml-dump/frwiki/20220101/frwiki-20220101-extraction-complete deleted file mode 100644 index e69de29bb2..0000000000 diff --git a/history/sample-xml-dump/frwiki/20220101/frwiki-20220101-historic.ttl.bz2 b/history/sample-xml-dump/frwiki/20220101/frwiki-20220101-historic.ttl.bz2 deleted file mode 100644 index 206a88a7f7b74efc23ca5d21d18c1259fcef7029..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 83 zcmZ>Y%CIzaj8qGbRC1US&%nTZyMaN#gQ+}#ML>`34ub+iNC1NgH!pBGS1(@VY7sC2WC#E*svQ*o diff --git a/history/sample-xml-dump/frwiki/20220101/frwiki-20220101-template-redirects.obj b/history/sample-xml-dump/frwiki/20220101/frwiki-20220101-template-redirects.obj deleted file mode 100644 index ededaa0a918d66f027ace07a26618b45c420aa63..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 61 zcmZ4UmVvdnh(V(`IWZ?uFF8LaCpEbwGe1u+GdH)iBrz!`RnIrEK*cq;prjJSFg{{? Oss7CJrA!PA6$JpuAQwOY diff --git a/history/src/main/java/org/dbpedia/extraction/sources/WikipediaDumpParserHistory.java b/history/src/main/java/org/dbpedia/extraction/sources/WikipediaDumpParserHistory.java index ed6336d289..dd1d9a6d7e 100644 --- a/history/src/main/java/org/dbpedia/extraction/sources/WikipediaDumpParserHistory.java +++ b/history/src/main/java/org/dbpedia/extraction/sources/WikipediaDumpParserHistory.java @@ -147,10 +147,13 @@ private void readDump() if (isStartElement(SITEINFO_ELEM)) skipElement(SITEINFO_ELEM, true); } // now after - System.out.println("XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX"); + System.out.println("BEFORE READ PAGES"); readPages(); + System.out.println("AFTER READ PAGES"); requireEndElement(ROOT_ELEM); + + System.out.println("EN READ PAGES"); } private Language readSiteInfo() @@ -191,19 +194,19 @@ private void readPages() System.out.println("readPages"); while (isStartElement(PAGE_ELEM)) { - System.out.println("XXXXXXXXXXXX FIRST PAGE"); + System.out.println("XXXXXXXXXXXX NEW PAGE"); readPage(); // now at System.out.println("XXXXXXXXXXXX NEXT PAGE"); nextTag(); } + + System.out.println("readPagesend"); } private void readPage() throws XMLStreamException, InterruptedException { - - System.out.println("XX BEGIN readPage"); //record any error or warning ArrayList> records = new ArrayList<>(); @@ -226,12 +229,11 @@ private void readPage() //Read page id String pageId = readString(ID_ELEM, false); - - System.out.println("PAGE >"+pageId); // now at //create title now with pageId + Integer last_size=0; WikiTitle title = null; try { @@ -274,6 +276,10 @@ private void readPage() //Read page WikiPageWithRevisions page = null; WikiTitle redirect = null; + + System.out.println("> PAGE TITLE : "+title); + System.out.println("> PAGE ID : "+pageId); + //Read page //Long lastRev_id=0; ArrayList RevisionList = new ArrayList<>(); while (nextTag() == START_ELEMENT) @@ -297,108 +303,87 @@ else if (isStartElement(REVISION_ELEM)) RevisionNode current_revision= null; - - while( isStartElement(REVISION_ELEM) ){ - - System.out.println(">> new revision element"); - current_revision= readRevision(title, redirect, pageId); - RevisionList.add(current_revision); - - requireEndElement(REVISION_ELEM); - - nextTag(); - } - - System.out.println(">> create page"); - page = new WikiPageWithRevisions(title, redirect, pageId, "", "", "", "", "", "",RevisionList); - - //nextTag(); - - System.out.println(">> nextTag PAGE"); - // now at + current_revision= readRevision(title, redirect, pageId,last_size); + RevisionList.add(current_revision); + last_size=current_revision.text_size(); + //page = readRevision(title, redirect, pageId); + // now at } else { // skip all other elements, don't care about the name, don't skip end tag skipElement(null, false); } - - System.out.println("XX END PAGE"); } - System.out.println("XX SAVE PAGE"); + page = new WikiPageWithRevisions(title, redirect, pageId, "", "", "", "", "", "",RevisionList); + System.out.println(page); if (page != null) { - - System.out.println("XX HEY2"); for(Tuple3 record : records){ page.addExtractionRecord(record._1(), record._2(), record._3()); } try { - - System.out.println("XX HEY TRY"); _processor.apply(page); - System.out.println("XX HEY TRY END"); } catch (Exception e) { - - System.out.println("XX HEY CATCH"); // emulate Scala exception handling. Ugly... if (e instanceof ControlThrowable) throw Exceptions.unchecked(e); if (e instanceof InterruptedException) throw (InterruptedException)e; else page.addExtractionRecord("Could not process page: " + page.title().encoded(), e, RecordSeverity.Warning()); + System.out.println("ERRROR"); } } requireEndElement(PAGE_ELEM); - - System.out.println("XX end readPage"); } + private void skipTitle() throws XMLStreamException { while(! isEndElement(PAGE_ELEM)) _reader.next(); } - private RevisionNode readRevision(WikiTitle title, WikiTitle redirect, String pageId) + private RevisionNode readRevision(WikiTitle title, WikiTitle redirect, String pageId, Integer last_size) throws XMLStreamException { - String revision_id = null; - String parent_id= null; - String timestamp= null; - String contributorID= null; - String contributorName= null; + String revision_id = ""; + String parent_id= ""; + String timestamp= ""; + String contributorID= ""; + String contributorName= ""; String contributorDeleted="false"; - String contributorIP= null; - String comment= null; + String contributorIP= ""; + String comment= ""; String text_size= ""; String format= null; String minor_edit= "false"; - - System.out.println(">> Begin readRevision "); + Integer text_delta= 0; while (nextTag() == START_ELEMENT) { + // System.out.println("LOOP BEGIND"); if (isStartElement(TEXT_ELEM)) { - //String deleted = _reader.getAttributeValue(null, "bytes"); + String deleted = _reader.getAttributeValue(null, "bytes"); text_size = _reader.getAttributeValue(null, "bytes"); - System.out.println(text_size); - //text = readString(TEXT_ELEM, false); + text_delta = Integer.parseInt(text_size) - last_size; + //System.out.println(text_size); + skipElement(null, false); // now at + } - else - if (isStartElement(TIMESTAMP_ELEM)) + else if (isStartElement(TIMESTAMP_ELEM)) { timestamp = readString(TIMESTAMP_ELEM, false); - System.out.println(">timestamp : "+timestamp); + //System.out.println(">timestamp : "+timestamp); // now at } else if (isStartElement(REVISION_ID)) { revision_id = readString(REVISION_ID, false); - System.out.println(">revision_id : "+revision_id); + //System.out.println(">revision_id : "+revision_id); // now at } @@ -406,23 +391,24 @@ else if (isStartElement(REVISION_PARENT_ID)) { parent_id = readString(REVISION_PARENT_ID, false); - System.out.println(">parent_id : "+parent_id); + //System.out.println(">parent_id : "+parent_id); // now at } else if (isStartElement(REVISION_COMMENT)) { comment = readString(REVISION_COMMENT, false); - System.out.println(">comment : "+comment); + //System.out.println(">comment : "+comment); // now at - }else if (isStartElement(REVISION_MINOR_UPDATE) && isEndElement(REVISION_MINOR_UPDATE)) + }else if ( isStartElement(REVISION_MINOR_UPDATE)) { minor_edit = "true"; - System.out.println(">minor_edit : "+minor_edit); + //System.out.println(">minor_edit : "+minor_edit); + + skipElement(null, false); - //nextTag(); // now at } @@ -441,32 +427,35 @@ else if (isStartElement(CONTRIBUTOR_ELEM)) // now should have ip / (author & id), when ip is present we don't have author / id // TODO Create a getElementName function to make this cleaner if (isStartElement(CONTRIBUTOR_IP)) { + // System.out.println(">contributor CASE 0"); contributorIP = readString(CONTRIBUTOR_IP, false); - //System.out.println(">contributorIP : "+contributorIP); + // System.out.println(">contributorIP : "+contributorIP); } else { // usually we have contributor name first but we have to check if (isStartElement(CONTRIBUTOR_NAME)) { + // System.out.println(">contributor CASE 1"); contributorName = readString(CONTRIBUTOR_NAME, false); - //System.out.println(">contributorName : "+contributorName); nextTag(); + // System.out.println(">contributorName : "+contributorName); if (isStartElement(CONTRIBUTOR_ID)) contributorID = readString(CONTRIBUTOR_ID, false); - //System.out.println(">contributorID : "+contributorID); + // System.out.println(">contributorID : "+contributorID); } else { // when contributor ID is first if (isStartElement(CONTRIBUTOR_ID)) { + // System.out.println(">contributor CASE 2"); contributorID = readString(CONTRIBUTOR_ID, false); - //System.out.println(">contributorID : "+contributorID); + // System.out.println(">contributorID : "+contributorID); nextTag(); if (isStartElement(CONTRIBUTOR_NAME)) contributorName = readString(CONTRIBUTOR_NAME, false); - //System.out.println(">contributorName : "+contributorName); + // System.out.println(">contributorName : "+contributorName); } } } @@ -476,21 +465,28 @@ else if (isStartElement(CONTRIBUTOR_ELEM)) } else if (isStartElement(FORMAT_ELEM)) { format = readString(FORMAT_ELEM, false); -// System.out.println(">format : "+format); + // System.out.println(">format : "+format); // now at } - else - { - // skip all other elements, don't care about the name, don't skip end tag + else { + + /// skip all other elements, don't care about the name, don't skip end tag skipElement(null, false); } + //System.out.println("LOOP END"); } - + //System.out.println("AFTER LOOP "); requireEndElement(REVISION_ELEM); - System.out.println(">> End readRevision "); + // System.out.println(">> End readRevision "); // now at - return new RevisionNode(revision_id,parent_id,timestamp,contributorID,contributorName,contributorIP,contributorDeleted,comment,format,text_size,minor_edit); + + String pageUri=title.pageIri() + "?" + "oldid=" + revision_id + "&" + "ns=" + title.namespace().code(); + String parent_Uri=title.pageIri() + "?" + "oldid=" + parent_id + "&" + "ns=" + title.namespace().code(); + System.out.println("========================="); + System.out.println(pageUri); + System.out.println("========================="); + return new RevisionNode(revision_id,pageUri,parent_Uri,timestamp,contributorID,contributorName,contributorIP,contributorDeleted,comment,format,text_size,minor_edit,text_delta); } /* Methods for low-level work. Ideally, only these methods would access _reader while the diff --git a/history/src/main/scala/org/dbpedia/extraction/config/Config2.scala b/history/src/main/scala/org/dbpedia/extraction/config/Config2.scala new file mode 100755 index 0000000000..c1adda38e6 --- /dev/null +++ b/history/src/main/scala/org/dbpedia/extraction/config/Config2.scala @@ -0,0 +1,422 @@ +package org.dbpedia.extraction.config + +import org.dbpedia.extraction.config.Config.{AbstractParameters, MediaWikiConnection, NifParameters, SlackCredentials} +import org.dbpedia.extraction.config.ConfigUtils._ +import org.dbpedia.extraction.config.provenance.Dataset +import org.dbpedia.extraction.destinations.formatters.Formatter +import org.dbpedia.extraction.destinations.formatters.UriPolicy._ +import org.dbpedia.extraction.mappings.{ExtractionMonitor2, Extractor} +import org.dbpedia.extraction.util.RichFile.wrapFile +import org.dbpedia.extraction.util._ +import org.dbpedia.extraction.wikiparser.Namespace + +import java.io.{File, FileOutputStream, OutputStreamWriter, Writer} +import java.net.URL +import java.text.SimpleDateFormat +import java.util.logging.{Level, Logger} +import java.util.{Calendar, Properties} +import scala.collection.Map +import scala.collection.mutable.ListBuffer +import scala.io.Codec +import scala.util.{Failure, Success, Try} + +/** + * Documentation of config values + * + * TODO universal.properties is loaded and then overwritten by the job specific config, however, + * we are working on removing universal properties by setting (and documenting) sensible default values + * here, that CAN be overwritten in job sepcific config + * + * Guideline: + * 1. Use Java/Scaladoc always + * 2. Parameters (lazy val) MUST be documented in the following manner: + * 1. provide info about how the parameter works + * 2. describe all checks done, i.e. fail on null or >300 + * 3. state the default value + * 3. Parameters MUST follow this pattern: + * 1. if the config param is called "base-dir" then the param MUST be "baseDir" + * 2. i.e. replace - by CamelCase, since "-" can not be used in scala + * + * + * TODO @Fabian please: + * * go through universal properties and other configs and move all comments here + * * after removing place a comment in the property file refering to http://temporary.dbpedia.org/scaladocs/#org.dbpedia.extraction.config.Config + * * local extraction-framework/core/target/site/scaladocs after mvn install in core + * * set default values according to universal.properties + * * try to FOLLOW THE GUIDELINES above, add TODO if unclear + * * if possible, move all def functions to ConfigUtils + * * check the classes using the params for validation checks and move them here + * */ +class Config2(val configPath: String) extends + Properties(Config2.universalProperties) with java.io.Serializable +{ + + /** + * Merge and overrides all universal property values + * TODO can configPath ever be null? + */ + if(configPath != null) + this.putAll(ConfigUtils.loadConfig(configPath)) + + @transient private val logger = Logger.getLogger(getClass.getName) + + + + + /** + * get all universal properties, check if there is an override in the provided config file + */ + + lazy val source: Seq[String] = getStrings(this, "source", ",", required = true) + + lazy val wikiName: String = getString(this, "wiki-name", required = true).trim + + lazy val copyrightCheck: Boolean = Try(this.getProperty("copyrightCheck", "false").toBoolean).getOrElse(false) + + /** + * base-dir gives either an absolute path or a relative path to where all data is stored, normally wikidumps are downloaded here and extracted data is saved next to it, created folder structure is {{lang}}wiki/$date + * + * DEV NOTE: + * 1. this must stay lazy as it might not be used or creatable in the SPARK extraction + * 2. Download.scala in core does the creation + * + * DEFAULT ./wikidumps + * + * TODO rename dumpDir to baseDir + */ + lazy val dumpDir: File = { + var x:File = getValue[File](this, "base-dir", required = true){ x => new File(x)} + if (x==null.asInstanceOf[File]){ + x = new File ("./wikidumps") + } + x + } + + /** + * Number of parallel processes allowed. Depends on the number of cores, type of disk, and IO speed + * + */ + lazy val parallelProcesses: Int = this.getProperty("parallel-processes", "1").trim.toInt + + lazy val sparkMaster: String = Option(getString(this, "spark-master")).getOrElse("local[*]") + + lazy val sparkLocalDir: String = Option(getString(this, "spark-local-dir")).getOrElse("") + + /** + * Normally extraction jobs are run sequentially (one language after the other), but for some jobs it makes sense to run these in parallel. + * This only should be used if a single extraction job does not take up the available computing power. + */ + val runJobsInParallel: Boolean = this.getProperty("run-jobs-in-parallel", "false").trim.toBoolean + + /** + * The version string of the DBpedia version being extracted + */ + lazy val dbPediaVersion: String = parseVersionString(getString(this, "dbpedia-version").trim) match{ + case Success(s) => s + case Failure(e) => { + val version = new SimpleDateFormat("yyyy-MM").format(Calendar.getInstance().getTime) + logger.info(s"dbpedia-version option in universal.properties was not defined using $version") + version + } + // throw new IllegalArgumentException("dbpedia-version option in universal.properties was not defined or in a wrong format", e) + } + + + + lazy val wikidataMappingsFile: File = { + val name = this.getProperty("wikidata-property-mappings-file", "wikidata-property-mappings.json").trim + new File(dumpDir, name) + } + + /** + * The directory where all log files will be stored + */ + lazy val logDir: Option[File] = Option(getString(this, "log-dir")) match { + case Some(x) => Some(new File(x)) + case None => None + } + + def getDefaultExtractionRecorder[T](lang: Language, interval: Int = 100000, preamble: String = null, writer: Writer = null, datasets : ListBuffer[Dataset] = ListBuffer[Dataset](), monitor : ExtractionMonitor2 = null): ExtractionRecorder2[T] ={ + val w = if(writer != null) writer + else openLogFile(lang.wikiCode) match{ + case Some(s) => new OutputStreamWriter(s) + case None => null + } + new ExtractionRecorder2[T](w, interval, preamble, slackCredentials.getOrElse(null), datasets, lang, monitor) + } + + private def openLogFile(langWikiCode: String): Option[FileOutputStream] ={ + logDir match{ + case Some(p) if p.exists() => + var logname = configPath.replace("\\", "/") + logname = logname.substring(logname.lastIndexOf("/") + 1) + logname = logname + "_" + langWikiCode + ".log" + val logFile = new File(p, logname) + logFile.createNewFile() + Option(new FileOutputStream(logFile)) + case _ => None + } + } + + /** + * If set, extraction summaries are forwarded via the API of Slack, displaying messages on a dedicated channel. + * The URL of the slack webhook to be used + * the username under which all messages are posted (has to be registered for this webhook?) + * Threshold of extracted pages over which a summary of the current extraction is posted + * Threshold of exceptions over which an exception report is posted + */ + lazy val slackCredentials = Try{ + SlackCredentials( + webhook = new URL(getString(this, "slack-webhook").trim), + username = this.getProperty("slack-username").trim, + summaryThreshold = this.getProperty("slack-summary-threshold").trim.toInt, + exceptionThreshold = this.getProperty("slack-exception-threshold").trim.toInt + )} + + /** + * Local ontology file, downloaded for speed and reproducibility + * Note: This is lazy to defer initialization until actually called (eg. this class is not used + * directly in the distributed extraction framework - DistConfig.ExtractionConfig extends Config + * and overrides this val to null because it is not needed) + */ + lazy val ontologyFile: File = getValue(this, "ontology")(new File(_)) + + /** + * Local mappings files, downloaded for speed and reproducibility + * Note: This is lazy to defer initialization until actually called (eg. this class is not used + * directly in the distributed extraction framework - DistConfig.ExtractionConfig extends Config + * and overrides this val to null because it is not needed) + */ + lazy val mappingsDir: File = getValue(this, "mappings")(new File(_)) + + lazy val policies: Map[String, Array[Policy]] = parsePolicies(this, "uri-policy") + + lazy val formats: Map[String, Formatter] = parseFormats(this, "format", policies).toMap + + lazy val disambiguations: String = this.getProperty("disambiguations", "page_props.sql.gz") + + /** + * all non universal properties... + */ + /** + * An array of input dataset names (e.g. 'instance-types' or 'mappingbased-literals') (separated by a ',') + */ + lazy val inputDatasets: Seq[String] = getStrings(this, "input", ",").distinct //unique collection of names!!! + /** + * A dataset name for the output file generated (e.g. 'instance-types' or 'mappingbased-literals') + */ + lazy val outputDataset: Option[String] = Option(getString(this, "output")) + /** + * the suffix of the files representing the input dataset (usually a combination of RDF serialization extension and compression used - e.g. .ttl.bz2 when using the TURTLE triples compressed with bzip2) + */ + lazy val inputSuffix: Option[String] = Option(getString(this, "suffix")) + /** + * same as for inputSuffix (for the output dataset) + */ + lazy val outputSuffix: Option[String] = Option(getString(this, "output-suffix")) + /** + * instead of a defined output dataset name, one can specify a name extension turncated at the end of the input dataset name (e.g. '-transitive' -> instance-types-transitive) + */ + lazy val datasetnameExtension: Option[String] = Option(getString(this, "name-extension")) + + /** + * An array of languages specified by the exact enumeration of language wiki codes (e.g. en,de,fr...) + * or article count ranges ('10000-20000' or '10000-' -> all wiki languages having that much articles...) + * or '@mappings', '@chapters' when only mapping/chapter languages are of concern + * or '@downloaded' if all downloaded languages are to be processed (containing the download.complete file) + * or '@abstracts' to only process languages which provide human readable abstracts (thus not 'wikidata' and the like...) + */ + lazy val languages: Array[Language] = parseLanguages(dumpDir, getStrings(this, "languages", ","), wikiName) + + /** + * before processing a given language, check if the download.complete file is present + */ + lazy val requireComplete: Boolean = this.getProperty("require-download-complete", "false").trim.toBoolean + + + + /** + * TODO experimental, ignore for now + */ + lazy val retryFailedPages: Boolean = this.getProperty("retry-failed-pages", "false").trim.toBoolean + + /** + * the extractor classes to be used when extracting the XML dumps + */ + lazy val extractorClasses: Map[Language, Seq[Class[_ <: Extractor[_]]]] = ExtractorUtils.loadExtractorsMapFromConfig(languages, this) + + /** + * namespaces loaded defined by the languages in use (see languages) + */ + lazy val namespaces: Set[Namespace] = loadNamespaces() + + private def loadNamespaces(): Set[Namespace] = { + val names = getStrings(this, "namespaces", ",") + if (names.isEmpty) Set(Namespace.Main, Namespace.File, Namespace.Category, Namespace.Template, Namespace.WikidataProperty, Namespace.WikidataLexeme) + // Special case for namespace "Main" - its Wikipedia name is the empty string "" + else names.map(name => if (name.toLowerCase(Language.English.locale) == "main") Namespace.Main else Namespace(Language.English, name)).toSet + } + + lazy val mediawikiConnection: MediaWikiConnection = Try { + + MediaWikiConnection( + apiType = this.getProperty("mwc-type", "").trim, + apiUrl = this.getProperty("mwc-type").trim match { + case "rest" => this.getProperty("mwc-apiRestUrl", "").trim + case "mwc" => this.getProperty("mwc-apiMWCUrl", "").trim + case "local" => this.getProperty("mwc-apiLocalUrl", "").trim + }, + maxRetries = this.getProperty("mwc-maxRetries", "4").trim.toInt, + connectMs = this.getProperty("mwc-connectMs", "2000").trim.toInt, + readMs = this.getProperty("mwc-readMs", "5000").trim.toInt, + sleepFactor = this.getProperty("mwc-sleepFactor", "1000").trim.toInt, + maxlag = this.getProperty("mwc-maxlag", "5").trim.toInt, + useragent = this.getProperty("mwc-useragent", "anonymous").trim, + gzip = this.getProperty("mwc-gzip","false").trim.toBoolean, + retryafter = this.getProperty("mwc-retryafter", "false").trim.toBoolean, + accept = this.getProperty("mwc-accept", "text/html").trim, + charset = this.getProperty("mwc-charset", "utf-8").trim, + profile = this.getProperty("mwc-profile", "https://www.mediawiki.org/wiki/Specs/HTML/2.1.0").trim + ) + } match{ + case Success(s) => s + case Failure(f) => throw new IllegalArgumentException("Some parameters necessary for the 'MediaWikiConnection' class were not provided or could not be parsed to the expected type.", f) + } + + + lazy val abstractParameters: AbstractParameters = Try { + AbstractParameters( + abstractQuery = this.getProperty("abstract-query", "").trim, + shortAbstractsProperty = this.getProperty("short-abstracts-property", "rdfs:comment").trim, + longAbstractsProperty = this.getProperty("long-abstracts-property", "abstract").trim, + shortAbstractMinLength = this.getProperty("short-abstract-min-length", "200").trim.toInt, + abstractTags = this.getProperty("abstract-tags", "query,pages,page,extract").trim, + removeBrokenBracketsProperty = this.getProperty("remove-broken-brackets-plain-abstracts", "false").trim.toBoolean + ) + } match{ + case Success(s) => s + case Failure(f) => throw new IllegalArgumentException("Not all necessary parameters for the 'AbstractParameters' class were provided or could not be parsed to the expected type.", f) + } + + + lazy val nifParameters: NifParameters = Try { + NifParameters( + nifQuery = this.getProperty("nif-query", "").trim, + nifTags = this.getProperty("nif-tags", "parse,text").trim, + isTestRun = this.getProperty("nif-isTestRun", "false").trim.toBoolean, + writeAnchor = this.getProperty("nif-write-anchor", "false").trim.toBoolean, + writeLinkAnchor = this.getProperty("nif-write-link-anchor", "true").trim.toBoolean, + abstractsOnly = this.getProperty("nif-extract-abstract-only", "true").trim.toBoolean, + cssSelectorMap = this.getClass.getClassLoader.getResource("nifextractionconfig.json"), //static config file in core/src/main/resources + removeBrokenBracketsProperty = this.getProperty("remove-broken-brackets-html-abstracts", "false").trim.toBoolean + ) + } match{ + case Success(s) => s + case Failure(f) => throw new IllegalArgumentException("Not all necessary parameters for the 'NifParameters' class were provided or could not be parsed to the expected type.", f) + } + + /* HELPER FUNCTIONS */ + + + def getArbitraryStringProperty(key: String): Option[String] = { + Option(getString(this, key)) + } + + def throwMissingPropertyException(property: String, required: Boolean): Unit ={ + if(required) + throw new IllegalArgumentException("The following required property is missing from the provided .properties file (or has an invalid format): '" + property + "'") + else + logger.log(Level.WARNING, "The following property is missing from the provided .properties file (or has an invalid format): '" + property + "'. It will not factor in.") + } + + + /** + * determines if 1. the download has to be completed and if so 2. looks for the download-complete file + * @param lang - the language for which to check + * @return + */ + def isDownloadComplete(lang:Language): Boolean ={ + if(requireComplete){ + val finder = new Finder[File](dumpDir, lang, wikiName) + val date = finder.dates(source.head).last + finder.file(date, Config.Complete) match { + case None => false + case Some(x) => x.exists() + } + } + else + true + } + + +} + +object Config2{ + + /** name of marker file in wiki date directory */ + val Complete = "download-complete" + + case class NifParameters( + nifQuery: String, + nifTags: String, + isTestRun: Boolean, + writeAnchor: Boolean, + writeLinkAnchor: Boolean, + abstractsOnly: Boolean, + cssSelectorMap: URL, + removeBrokenBracketsProperty: Boolean + ) + + /** + * test + * @constructor test + * @param apiUrl test + * @param maxRetries + * @param connectMs + * @param readMs + * @param sleepFactor + */ + case class MediaWikiConnection( + apiType: String, + apiUrl: String, + maxRetries: Int, + connectMs: Int, + readMs: Int, + sleepFactor: Int, + maxlag: Int, + useragent: String, + gzip: Boolean, + retryafter: Boolean, + accept : String, + charset: String, + profile: String + ) + + case class AbstractParameters( + abstractQuery: String, + shortAbstractsProperty: String, + longAbstractsProperty: String, + shortAbstractMinLength: Int, + abstractTags: String, + removeBrokenBracketsProperty: Boolean + ) + + case class SlackCredentials( + webhook: URL, + username: String, + summaryThreshold: Int, + exceptionThreshold: Int + ) + + private val universalProperties: Properties = loadConfig(this.getClass.getClassLoader.getResource("universal.properties")).asInstanceOf[Properties] + + val universalConfig: Config = new Config(null) + + + /** + * The content of the wikipedias.csv in the base-dir (needs to be static) + */ + private val wikisinfoFile = new File(getString(universalProperties , "base-dir", required = true), WikiInfo.FileName) + private lazy val wikiinfo = if(wikisinfoFile.exists()) WikiInfo.fromFile(wikisinfoFile, Codec.UTF8) else Seq() + def wikiInfos: Seq[WikiInfo] = wikiinfo +} diff --git a/history/src/main/scala/org/dbpedia/extraction/destinations/WriterDestination2.scala b/history/src/main/scala/org/dbpedia/extraction/destinations/WriterDestination2.scala new file mode 100644 index 0000000000..8c5f3ae2ed --- /dev/null +++ b/history/src/main/scala/org/dbpedia/extraction/destinations/WriterDestination2.scala @@ -0,0 +1,56 @@ +package org.dbpedia.extraction.destinations + +import org.dbpedia.extraction.config.provenance.Dataset +import org.dbpedia.extraction.destinations.formatters.Formatter +import org.dbpedia.extraction.mappings.BadQuadException +import org.dbpedia.extraction.transform.Quad +import org.dbpedia.extraction.util.{ExtractionRecorder, ExtractionRecorder2} +import org.dbpedia.extraction.wikiparser.{WikiPage, WikiPageWithRevisions} + +import java.io.Writer + + +/** + * Writes quads to a writer. + */ +class WriterDestination2(factory: () => Writer, formatter : Formatter, extractionRecorder: ExtractionRecorder2[WikiPageWithRevisions] = null, dataset : Dataset = null) +extends Destination +{ + private var writer: Writer = null + + override def open() = { + if(writer == null) //to prevent errors when called twice + { + writer = factory() + writer.write(formatter.header) + } + } + + /** + * Note: using synchronization here is not strictly necessary (writers should be thread-safe), + * but without it, different sequences of quads will be interleaved, which is harder to read + * and makes certain parsing optimizations impossible. + */ + override def write(graph : Traversable[Quad]) = synchronized { + for(quad <- graph) { + val formatted = formatter.render(quad) + if(extractionRecorder != null) { + if(formatted.trim.startsWith("#")){ + if(formatted.contains("BAD URI:")) + //TODO create trait 'Recordable' + extractionRecorder.failedRecord(quad.toString(), null, new BadQuadException(formatted)) + } + else if(dataset != null) + extractionRecorder.increaseAndGetSuccessfulTriples(dataset) + } + writer.write(formatted) + } + } + + override def close() = { + if(writer != null) { + writer.write(formatter.footer) + writer.close() + } + } +} diff --git a/history/src/main/scala/org/dbpedia/extraction/dump/extract/ConfigLoader2.scala b/history/src/main/scala/org/dbpedia/extraction/dump/extract/ConfigLoader2.scala index 824b8b34b7..bf3ed027c3 100644 --- a/history/src/main/scala/org/dbpedia/extraction/dump/extract/ConfigLoader2.scala +++ b/history/src/main/scala/org/dbpedia/extraction/dump/extract/ConfigLoader2.scala @@ -1,7 +1,7 @@ package org.dbpedia.extraction.dump.extract import org.dbpedia.extraction.config.provenance.{DBpediaDatasets, Dataset} -import org.dbpedia.extraction.config.{Config, ConfigUtils} +import org.dbpedia.extraction.config.{Config2, ConfigUtils} import org.dbpedia.extraction.destinations._ import org.dbpedia.extraction.mappings._ import org.dbpedia.extraction.ontology.Ontology @@ -28,35 +28,35 @@ import scala.reflect._ * * TODO: get rid of all config file parsers, use Spring */ -class ConfigLoader2(config: Config) +class ConfigLoader2(config: Config2) { //private val logger = Logger.getLogger(classOf[ConfigLoader2].getName) - private val extractionJobs = new ConcurrentHashMap[Language, ExtractionJob]().asScala + private val extractionJobs = new ConcurrentHashMap[Language, ExtractionJob2]().asScala - private val sparkExtractionJobs = new ConcurrentHashMap[Language, SparkExtractionJob]().asScala + private val sparkExtractionJobs = new ConcurrentHashMap[Language, SparkExtractionJob2]().asScala - private val extractionRecorder = new mutable.HashMap[ClassTag[_], mutable.HashMap[Language, ExtractionRecorder[_]]]() + private val extractionRecorder = new mutable.HashMap[ClassTag[_], mutable.HashMap[Language, ExtractionRecorder2[_]]]() //these lists are used when the ImageExtractor is amongst the selected Extractors private val nonFreeImages = new ConcurrentHashMap[Language, Seq[String]]().asScala private val freeImages = new ConcurrentHashMap[Language, Seq[String]]().asScala - private val extractionMonitor = new ExtractionMonitor() + private val extractionMonitor = new ExtractionMonitor2() - def getExtractionRecorder[T: ClassTag](lang: Language, dataset : Dataset = null): org.dbpedia.extraction.util.ExtractionRecorder[T] = { + def getExtractionRecorder[T: ClassTag](lang: Language, dataset : Dataset = null): org.dbpedia.extraction.util.ExtractionRecorder2[T] = { extractionRecorder.get(classTag[T]) match{ case Some(s) => s.get(lang) match { case None => val datasetsParam = if (dataset == null) ListBuffer[Dataset]() else ListBuffer(dataset) s(lang) = config.getDefaultExtractionRecorder[T](lang, 2000, null, null, datasetsParam, extractionMonitor) - s(lang).asInstanceOf[ExtractionRecorder[T]] + s(lang).asInstanceOf[ExtractionRecorder2[T]] case Some(er) => if(dataset != null) if(!er.datasets.contains(dataset)) er.datasets += dataset - er.asInstanceOf[ExtractionRecorder[T]] + er.asInstanceOf[ExtractionRecorder2[T]] } case None => - extractionRecorder(classTag[T]) = new mutable.HashMap[Language, ExtractionRecorder[_]]() + extractionRecorder(classTag[T]) = new mutable.HashMap[Language, ExtractionRecorder2[_]]() getExtractionRecorder[T](lang, dataset) } } @@ -71,53 +71,31 @@ class ConfigLoader2(config: Config) val date = latestDate(finder) //Extraction Context - val context = new DumpExtractionContext + val context = new DumpExtractionContext2 { def ontology: Ontology = _ontology - def commonsSource: Source = _commonsSource + def commonsSource: Source2 = _commonsSource def language: Language = input._1 - def recorder[T: ClassTag]: ExtractionRecorder[T] = getExtractionRecorder[T](input._1) + def recorder[T: ClassTag]: ExtractionRecorder2[T] = getExtractionRecorder[T](input._1) - private lazy val _mappingPageSource = - { - val namespace = Namespace.mappings(language) - if (config.mappingsDir != null && config.mappingsDir.isDirectory) - { - val file = new File(config.mappingsDir, namespace.name(Language.Mappings).replace(' ','_')+".xml") - XMLSource.fromFile(file, Language.Mappings) - } - else - { - val namespaces = Set(namespace) - val url = new URL(Language.Mappings.apiUri) - WikiSource.fromNamespaces(namespaces,url,Language.Mappings) - } - } - - def mappingPageSource : Traversable[WikiPage] = _mappingPageSource - private lazy val _mappings: Mappings = - { - MappingsLoader.load(this) - } - def mappings : Mappings = _mappings - def articlesSource: Source = getArticlesSource(language, finder) + def articlesSource: Source2 = getArticlesSource(language, finder) private val _redirects = { finder.file(date, "template-redirects.obj") match{ - case Some(cache) => Redirects.load(articlesSource, cache, language) - case None => new Redirects(Map()) + case Some(cache) => Redirects2.load(articlesSource, cache, language) + case None => new Redirects2(Map()) } } - def redirects : Redirects = _redirects + def redirects : Redirects2 = _redirects private val _disambiguations = { @@ -136,7 +114,7 @@ class ConfigLoader2(config: Config) else new Disambiguations(Set[Long]()) - def configFile: Config = config + def configFile: Config2 = config def freeImages : Seq[String] = ConfigLoader2.this.freeImages.get(language) match{ case Some(s) => s @@ -150,7 +128,9 @@ class ConfigLoader2(config: Config) } //Extractors - val extractor = CompositeParseExtractor.load(input._2, context) + val extractor = CompositeParseExtractor2.load(input._2, context) + + System.out.println(">> EXTRACTOR : " + extractor); val datasets = extractor.datasets val formatDestinations = new ArrayBuffer[Destination]() @@ -159,7 +139,7 @@ class ConfigLoader2(config: Config) val datasetDestinations = new mutable.HashMap[Dataset, Destination]() for (dataset <- datasets) { finder.file(date, dataset.encoded.replace('_', '-')+'.'+suffix) match{ - case Some(file)=> datasetDestinations(dataset) = new DeduplicatingDestination(new WriterDestination(writer(file), format, getExtractionRecorder(context.language, dataset), dataset)) + case Some(file)=> datasetDestinations(dataset) = new DeduplicatingDestination(new WriterDestination2(writer(file), format, getExtractionRecorder(context.language, dataset), dataset)) case None => } } @@ -176,7 +156,7 @@ class ConfigLoader2(config: Config) ExtractorUtils.commonsNamespacesContainingMetadata else config.namespaces - val extractionJob = new ExtractionJob( + val extractionJob = new ExtractionJob2( extractor, context.articlesSource, extractionJobNS, @@ -192,31 +172,31 @@ class ConfigLoader2(config: Config) /** * Creates ab extraction job for a specific language. */ - def buildSparkExtractionJob(lang: Language, extractors : Seq[Class[_ <: Extractor[_]]]) : Option[SparkExtractionJob] = { + def buildSparkExtractionJob(lang: Language, extractors : Seq[Class[_ <: Extractor[_]]]) : Option[SparkExtractionJob2] = { val finder = new Finder[File](config.dumpDir, lang, config.wikiName) val date = latestDate(finder) - def articlesSource: Source = getArticlesSource(lang, finder) + def articlesSource: Source2 = getArticlesSource(lang, finder) //Extraction Context - val context = new SparkExtractionContext - { + val context = new SparkExtractionContext2 { + def ontology: Ontology = _ontology def language: Language = lang private val _redirects = { finder.file(date, "template-redirects.obj") match{ - case Some(cache) => Redirects.load(articlesSource, cache, language) - case None => new Redirects(Map()) + case Some(cache) => Redirects2.load(articlesSource, cache, language) + case None => new Redirects2(Map()) } } - def redirects : Redirects = _redirects + def redirects : Redirects2 = _redirects - def recorder[T: ClassTag]: ExtractionRecorder[T] = getExtractionRecorder[T](lang) + def recorder[T: ClassTag]: ExtractionRecorder2[T] = getExtractionRecorder[T](lang) private lazy val _mappingPageSource = { @@ -225,7 +205,7 @@ class ConfigLoader2(config: Config) if (config.mappingsDir != null && config.mappingsDir.isDirectory) { val file = new File(config.mappingsDir, namespace.name(Language.Mappings).replace(' ','_')+".xml") - XMLSource.fromFile(file, Language.Mappings) + XMLSource2.fromFile(file, Language.Mappings) } else { @@ -235,13 +215,7 @@ class ConfigLoader2(config: Config) } } - def mappingPageSource : Traversable[WikiPage] = _mappingPageSource - private lazy val _mappings: Mappings = - { - MappingsLoader.load(this) - } - def mappings : Mappings = _mappings private val _disambiguations = { @@ -271,7 +245,7 @@ class ConfigLoader2(config: Config) val datasetDestinations = new mutable.HashMap[Dataset, Destination]() for (dataset <- datasets) { finder.file(date, dataset.encoded.replace('_', '-')+'.'+suffix) match{ - case Some(file)=> datasetDestinations(dataset) = new DeduplicatingDestination(new WriterDestination(writer(file), format, getExtractionRecorder(lang, dataset), dataset)) + case Some(file)=> datasetDestinations(dataset) = new DeduplicatingDestination(new WriterDestination2(writer(file), format, getExtractionRecorder(lang, dataset), dataset)) case None => } } @@ -288,7 +262,7 @@ class ConfigLoader2(config: Config) ExtractorUtils.commonsNamespacesContainingMetadata else config.namespaces - val sparkExtractionJob = new SparkExtractionJob( + val sparkExtractionJob = new SparkExtractionJob2( extractors, context, extractionJobNS, @@ -301,39 +275,15 @@ class ConfigLoader2(config: Config) sparkExtractionJobs.put(lang, sparkExtractionJob) } - /** - * Creates ab extraction job for a specific language. - */ - val imageCategoryWorker: Workers[Language] = SimpleWorkers(config.parallelProcesses, config.parallelProcesses) { lang: Language => - val finder = new Finder[File](config.dumpDir, lang, config.wikiName) - val imageCategories = ConfigUtils.loadImages(getArticlesSource(lang, finder), lang.wikiCode, getExtractionRecorder(lang, DBpediaDatasets.Images)) - this.freeImages.put(lang, imageCategories._1) - this.nonFreeImages.put(lang, imageCategories._2) - } + /** * Loads the configuration and creates extraction jobs for all configured languages. * * @return Non-strict Traversable over all configured extraction jobs i.e. an extractions job will not be created until it is explicitly requested. */ - def getExtractionJobs: Traversable[ExtractionJob] = + def getExtractionJobs: Traversable[ExtractionJob2] = { - if(config.copyrightCheck) { - // Image Extractor pre-processing: Extract Free & Non-Free Images prior to the main Extraction - var zw = config.extractorClasses.filter(x => x._2.map(y => y.getSimpleName).contains("ImageExtractorNew")) - if (zw.isEmpty) { - zw = config.extractorClasses.filter(x => x._2.map(y => y.getSimpleName).contains("ImageExtractor")) - } - val imageExtractorLanguages = zw match { - case filtered if filtered.nonEmpty => filtered.keySet.toList ++ List(Language.Commons) //else: add Commons (see ImageExtractorScala for why) - case _ => List[Language]() //no ImageExtractors selected - } - Workers.work[Language](imageCategoryWorker, imageExtractorLanguages) - } else { - val zw = config.extractorClasses.filter(x => x._2.map(y => y.getSimpleName).contains("ImageExtractor")) - zw.keys.foreach(lang => this.nonFreeImages.put(lang, Seq[String]())) - this.nonFreeImages.put(Language.Commons, Seq[String]()) - } // Create a non-strict view of the extraction jobs @@ -342,11 +292,12 @@ class ConfigLoader2(config: Config) extractionJobs.values } - def getSparkExtractionJobs: Traversable[SparkExtractionJob] = { + def getSparkExtractionJobs: Traversable[SparkExtractionJob2] = { + + config.extractorClasses.toList.foreach(input => buildSparkExtractionJob(input._1, input._2)) sparkExtractionJobs.values } - private def writer(file: File): () => Writer = { () => IOUtils.writer(file) } @@ -392,14 +343,13 @@ class ConfigLoader2(config: Config) { val finder = new Finder[File](config.dumpDir, Language("commons"), config.wikiName) val date = latestDate(finder) - XMLSource.fromReaders(config.source.flatMap(x => readers(x, finder, date)), Language.Commons, _.namespace == Namespace.File) + XMLSource2.fromReaders(config.source.flatMap(x => readers(x, finder, date)), Language.Commons, _.namespace == Namespace.File) } private def getArticlesSource(language: Language, finder: Finder[File]) = { val articlesReaders = config.source.flatMap(x => readers(x, finder, latestDate(finder))) - System.out.println("getArticlesSource "); XMLSource2.fromReaders(articlesReaders, language, title => title.namespace == Namespace.Main || title.namespace == Namespace.File || title.namespace == Namespace.Category || title.namespace == Namespace.Template || @@ -409,7 +359,7 @@ class ConfigLoader2(config: Config) private def latestDate(finder: Finder[_]): String = { val isSourceRegex = config.source.startsWith("@") val source = if (isSourceRegex) config.source.head.substring(1) else config.source.head - val fileName = if (config.requireComplete) Config.Complete else source + val fileName = if (config.requireComplete) Config2.Complete else source finder.dates(fileName, isSuffixRegex = isSourceRegex).last } } diff --git a/history/src/main/scala/org/dbpedia/extraction/dump/extract/Extraction2.scala b/history/src/main/scala/org/dbpedia/extraction/dump/extract/Extraction2.scala index 627448bfb2..7cb1a502e1 100644 --- a/history/src/main/scala/org/dbpedia/extraction/dump/extract/Extraction2.scala +++ b/history/src/main/scala/org/dbpedia/extraction/dump/extract/Extraction2.scala @@ -1,6 +1,6 @@ package org.dbpedia.extraction.dump.extract -import org.dbpedia.extraction.config.Config +import org.dbpedia.extraction.config.Config2 import org.dbpedia.extraction.util.ProxyAuthenticator import java.net.Authenticator @@ -23,7 +23,7 @@ object Extraction2 { // Authenticator.setDefault(new ProxyAuthenticator()) //Load extraction jobs from configuration - val config = new Config(args.head) + val config = new Config2(args.head) val configLoader = new ConfigLoader2(config) val parallelProcesses = if(config.runJobsInParallel) config.parallelProcesses else 1 diff --git a/history/src/main/scala/org/dbpedia/extraction/dump/extract/ExtractionJob2.scala b/history/src/main/scala/org/dbpedia/extraction/dump/extract/ExtractionJob2.scala new file mode 100644 index 0000000000..3b14ec747d --- /dev/null +++ b/history/src/main/scala/org/dbpedia/extraction/dump/extract/ExtractionJob2.scala @@ -0,0 +1,101 @@ +package org.dbpedia.extraction.dump.extract + +import org.dbpedia.extraction.config.provenance.Dataset +import org.dbpedia.extraction.destinations.Destination +import org.dbpedia.extraction.mappings.WikiPageWithRevisionsExtractor +import org.dbpedia.extraction.sources.{Source, Source2} +import org.dbpedia.extraction.util._ +import org.dbpedia.extraction.wikiparser.{Namespace, WikiPage, WikiPageWithRevisions} + +/** + * Executes a extraction. + * + * @param extractor The Extractor + * @param source The extraction source + * @param namespaces Only extract pages in these namespaces + * @param destination The extraction destination. Will be closed after the extraction has been finished. + * @param language the language of this extraction. + */ +class ExtractionJob2( + extractor: WikiPageWithRevisionsExtractor, + source: Source2, + val namespaces: Set[Namespace], + val destination: Destination, + val language: Language, + val retryFailedPages: Boolean, + val extractionRecorder: ExtractionRecorder2[WikiPageWithRevisions]) +{ + /* val myAnnotatedClass: ClassSymbol = runtimeMirror(Thread.currentThread().getContextClassLoader).classSymbol(ExtractorAnnotation.getClass) + val annotation: Option[Annotation] = myAnnotatedClass.annotations.find(_.tree.tpe =:= typeOf[ExtractorAnnotation]) + val result = annotation.flatMap { a => + a.tree.children.tail.collect({ case Literal(Constant(name: String)) => name }).headOption + } + + result.foreach( x => println(x.toString))*/ + + def datasets: Set[Dataset] = extractor.datasets + + private val workers = SimpleWorkers { page: WikiPageWithRevisions => + try { + if (namespaces.contains(page.title.namespace)) { + println("SimpleWorkers") + println(extractor.toString) + val graph = extractor.extract(page, page.uri) + println(graph.toString()) + destination.write(graph) + } + //if the internal extraction process of this extractor yielded extraction records (e.g. non critical errors etc.), those will be forwarded to the ExtractionRecorder, else a new record is produced + val records = page.getExtractionRecords() match{ + case seq :Seq[RecordEntry2[WikiPageWithRevisions]] if seq.nonEmpty => seq + case _ => Seq(new RecordEntry2[WikiPageWithRevisions](page, page.uri, RecordSeverity.Info, page.title.language)) + } + //forward all records to the recorder + extractionRecorder.record(records:_*) + } catch { + case ex: Exception => + ex.printStackTrace() + page.addExtractionRecord(null, ex) + extractionRecorder.record(page.getExtractionRecords():_*) + if(extractionRecorder.monitor != null) + extractionRecorder.monitor.reportError(extractionRecorder, ex) + } + } + + def run(): Unit = + { + extractionRecorder.initialize(language, "Main Extraction", extractor.datasets.toSeq) + extractor.initializeExtractor() + destination.open() + workers.start() + + try { + for (page <- source) + workers.process(page) + + extractionRecorder.printLabeledLine("finished extraction after {page} pages with {mspp} per page", RecordSeverity.Info, language) + + if(retryFailedPages){ + val fails = extractionRecorder.listFailedPages(language).keys.map(_._2) + extractionRecorder.printLabeledLine("retrying " + fails.size + " failed pages", RecordSeverity.Warning, language) + extractionRecorder.resetFailedPages(language) + for(page <- fails) { + page.toggleRetry() + page match{ + case p: WikiPageWithRevisions => workers.process(p) + case _ => + } + } + extractionRecorder.printLabeledLine("all failed pages were re-executed.", RecordSeverity.Info, language) + } + } + catch { + case ex : Throwable => + if(extractionRecorder.monitor != null) extractionRecorder.monitor.reportCrash(extractionRecorder, ex) + } finally { + workers.stop() + destination.close() + extractor.finalizeExtractor() + extractionRecorder.finalize() + } + } +} \ No newline at end of file diff --git a/history/src/main/scala/org/dbpedia/extraction/dump/extract/SerializableUtils2.scala b/history/src/main/scala/org/dbpedia/extraction/dump/extract/SerializableUtils2.scala new file mode 100644 index 0000000000..b58cb07b44 --- /dev/null +++ b/history/src/main/scala/org/dbpedia/extraction/dump/extract/SerializableUtils2.scala @@ -0,0 +1,106 @@ +package org.dbpedia.extraction.dump.extract + +import org.dbpedia.extraction.mappings.Extractor +import org.dbpedia.extraction.transform.Quad +import org.dbpedia.extraction.util.Language +import org.dbpedia.extraction.wikiparser.{Namespace, WikiPage, WikiPageWithRevisions, WikiTitle} + +import scala.util.Try +import scala.xml.XML.loadString + +object SerializableUtils2 extends Serializable { + //@transient lazy val logger = LogManager.getRootLogger + + /** + * Extracts Quads from a WikiPage + * @param namespaces Set of wanted namespaces + * @param extractor WikiPage Extractor + * @param page WikiPage + * @return Quad collection + */ + def extractQuadsFromPage(namespaces: Set[Namespace], extractor: Extractor[WikiPageWithRevisions], page: WikiPageWithRevisions): Seq[Quad] = { + var quads = Seq[Quad]() + try { + if (namespaces.exists(_.equals(page.title.namespace))) { + //Extract Quads + quads = extractor.extract(page, page.uri) + } + } + catch { + case ex: Exception => + page.addExtractionRecord(null, ex) + page.getExtractionRecords() + } + quads + } + + /** + * Parses a xml string to a wikipage. + * based on org.dbpedia.extraction.sources.XMLSource + * @param xmlString xml wiki page + * @return Option[WikiPage] + */ + def parseXMLToWikiPage(xmlString: String, language: Language): Option[WikiPageWithRevisions] = { + /* + * Handle special cases occurring in the extraction + */ + var validXML = xmlString + val length = xmlString.length + if(xmlString.startsWith(" throw new IllegalArgumentException("Cannot parse content of element [ns] as int", e) + } + } + //Skip bad titles + if (title != null) { + val _redirect = (page \ "redirect" \ "@title").text match { + case "" => null + case t => WikiTitle.parse(t, language) + } + val _contributorID = (revision \ "contributor" \ "id").text match { + case null => "0" + case id => id + } + Some(new WikiPageWithRevisions( + title = title, + redirect = _redirect, + id = (page \ "id").text, + revision = (revision \ "id").text, + timestamp = (revision \ "timestamp").text, + contributorID = _contributorID, + contributorName = + if (_contributorID == "0") (revision \ "contributor" \ "ip").text + else (revision \ "contributor" \ "username").text, + source = (revision \ "text").text, + format = (revision \ "format").text)) + } + else None + } catch { + case ex: Throwable => + //logger.warn("error parsing xml:" + ex.getMessage) + None + } + } +} diff --git a/history/src/main/scala/org/dbpedia/extraction/dump/extract/SparkExtractionJob2.scala b/history/src/main/scala/org/dbpedia/extraction/dump/extract/SparkExtractionJob2.scala new file mode 100644 index 0000000000..cd3e2255f8 --- /dev/null +++ b/history/src/main/scala/org/dbpedia/extraction/dump/extract/SparkExtractionJob2.scala @@ -0,0 +1,248 @@ +package org.dbpedia.extraction.dump.extract + +import java.io.File +import java.net.URL + +import org.apache.hadoop.io.compress.BZip2Codec +import org.apache.hadoop.io.{LongWritable, NullWritable, Text} +import org.apache.hadoop.mapred.lib.MultipleTextOutputFormat +import org.apache.hadoop.mapreduce.lib.input.TextInputFormat +import org.apache.spark.rdd.RDD +import org.apache.spark.sql.SparkSession +import org.dbpedia.extraction.config.Config2 +import org.dbpedia.extraction.destinations._ +import org.dbpedia.extraction.mappings._ +import org.dbpedia.extraction.ontology.Ontology +import org.dbpedia.extraction.sources.{WikiSource, XMLSource} +import org.dbpedia.extraction.transform.Quad +import org.dbpedia.extraction.util.RichFile.wrapFile +import org.dbpedia.extraction.util.{RecordEntry, RecordSeverity, _} +import org.dbpedia.extraction.wikiparser.{Namespace, WikiPageWithRevisions, WikiTitle} + +import scala.sys.process._ +import scala.util.Try + +/** + * Current time-comparison: + * Test Specs: 10000 pages, dewiki, 8 cores + * Live: ~1:22 min + * --------- + * spark-sql with spark-xml: ~1:08 min + * custom Hadoop In-/Output: ~0:43 min + * + * @param extractors The Extractors + * @param context The Extraction Context + * @param namespaces Only extract pages in these namespaces + * @param lang the language of this extraction. + */ +class SparkExtractionJob2(extractors: Seq[Class[_ <: Extractor[_]]], + context: SparkExtractionContext2, + namespaces: Set[Namespace], + destination: Destination, + lang: Language, + retryFailedPages: Boolean, + extractionRecorder: ExtractionRecorder2[WikiPageWithRevisions]) { + + def run(spark: SparkSession, config: Config2): Unit = { + val sparkContext = spark.sparkContext + + println("SPARKKKK") + try { + //broadcasts + val broadcastNamespaces = sparkContext.broadcast(namespaces) + val broadcastOntology = sparkContext.broadcast(context.ontology) + val broadcastLanguage = sparkContext.broadcast(context.language) + val broadcastRedirects = sparkContext.broadcast(context.redirects) + val broadcastDisambiguations = sparkContext.broadcast(context.disambiguations) + val broadcastFormats = sparkContext.broadcast(config.formats) + val broadcastExtractors = sparkContext.broadcast(extractors) + + + //finding the source files + val fileFinder = new Finder[File](config.dumpDir, context.language, config.wikiName) + val latestDate = getLatestDate(fileFinder, config) + val dumpSources = config.source.flatMap(x => getInputFiles(x, fileFinder, latestDate)) + + //number of worker-cores + val numberOfCores = sparkContext.defaultParallelism + + //initialize extraction-recorder + val extractor = CompositeParseExtractor.load(extractors, context) + extractionRecorder.initialize(lang, sparkContext.appName, extractor.datasets.toSeq) + extractor.initializeExtractor() + + //extraction + dumpSources.foreach(file => { + extractionRecorder.printLabeledLine(s"Starting Extraction on ${file.getName}.", RecordSeverity.Info) + /* ------- READING ------- + * Read XML-Dump from baseDir, delimit the text by the tag + * and create an RDD from it + */ + val inputConfiguration = new org.apache.hadoop.conf.Configuration + inputConfiguration.set("textinputformat.record.delimiter", "") + val wikiPageXmlRDD : RDD[String] = + sparkContext.newAPIHadoopFile(file.getAbsolutePath, classOf[TextInputFormat], classOf[LongWritable], classOf[Text], inputConfiguration) + .map("" + _._2.toString.trim).repartition(numberOfCores) + + /* ------- PARSING ------- + * Parse the String to WikiPage Objects + */ + val wikiPageParsedRDD : RDD[WikiPageWithRevisions] = wikiPageXmlRDD.flatMap(SerializableUtils2.parseXMLToWikiPage(_, broadcastLanguage.value)) + + /* ------- EXTRACTION ------- + * Build extractor-context from broadcast values once per partition. + * Extract quads. + * Flatten the Quad Collections. + */ + val extractedDataRDD : RDD[Quad] = wikiPageParsedRDD.mapPartitions(pages => { + // TODO: ImageExtractor + def worker_context = + new SparkExtractionContext2 { + def ontology: Ontology = broadcastOntology.value + def language: Language = broadcastLanguage.value + def redirects: Redirects2 = broadcastRedirects.value + def disambiguations: Disambiguations = broadcastDisambiguations.value + } + val localExtractor = CompositeParseExtractor2.load(broadcastExtractors.value, worker_context) + pages.map(page => + SerializableUtils2.extractQuadsFromPage(broadcastNamespaces.value, localExtractor, page) + ) + }).flatMap(identity) + + /* ------- WRITING ------- + * Prepare the lines that will be written. + * ⇒ generate the key that determines the destination file, and let the formatter render the quad as string. + * Lastly let each worker write its own file and use a bash script to concat these files together afterwards. + */ + extractedDataRDD.mapPartitionsWithIndex( + (partition, quads) => quads.flatMap(quad => + broadcastFormats.value.flatMap(formats => + Try{(Key(quad.dataset, formats._1, partition), formats._2.render(quad).trim)}.toOption + ) + ) + ).saveAsHadoopFile(s"${file.getParent}/_temporary/", classOf[Key], classOf[String], classOf[CustomPartitionedOutputFormat], classOf[BZip2Codec]) + concatOutputFiles(new File(s"${file.getParent}/_temporary/"), s"${lang.wikiCode}${config.wikiName}-$latestDate-", broadcastFormats.value.keys) + extractionRecorder.printLabeledLine(s"Finished Extraction on ${file.getName}.", RecordSeverity.Info) + }) + + if (retryFailedPages) { + //output dir + val dir = dumpSources.last.getParent + //pages to retry + val failedPages = extractionRecorder.listFailedPages(lang).keys.map(_._2).toSeq + extractionRecorder.printLabeledLine("retrying " + failedPages.length + " failed pages", RecordSeverity.Warning, lang) + extractionRecorder.resetFailedPages(lang) + + //already in the memory → use makeRDD + val failedPagesRDD = sparkContext.makeRDD(failedPages) + + /* ------- EXTRACTION ------- + * Build extractor-context from broadcast values once per partition. + * Extract quads. + * Flatten the Quad Collections. + */ + val failResults = failedPagesRDD.mapPartitions(pages => { + + def worker_context = + // MappingsExtractor is not used + new SparkExtractionContext2 { + def ontology: Ontology = broadcastOntology.value + def language: Language = broadcastLanguage.value + def redirects: Redirects2 = broadcastRedirects.value + def disambiguations: Disambiguations = broadcastDisambiguations.value + } + val localExtractor = CompositeParseExtractor2.load(broadcastExtractors.value, worker_context) + pages.map(page => + SerializableUtils2.extractQuadsFromPage(broadcastNamespaces.value, localExtractor, page) + ) + }).flatMap(identity) + + /* ------- WRITING ------- + * Prepare the lines that will be written. + * => generate the key that determines the destination file, and let the formatter render the quad as string. + * Lastly let each worker write its own file and use a bash script to concat these files together afterwards. + */ + failResults.mapPartitionsWithIndex( + (partition, quads) => quads.flatMap(quad => + broadcastFormats.value.toSeq.flatMap(formats => + Try{(Key(quad.dataset, formats._1, partition), formats._2.render(quad).trim)}.toOption + ) + ) + ).saveAsHadoopFile(s"$dir/_temporary/", classOf[Key], classOf[String], classOf[CustomPartitionedOutputFormat], classOf[BZip2Codec]) + concatOutputFiles(new File(s"$dir/_temporary/"), s"${lang.wikiCode}${config.wikiName}-$latestDate-", broadcastFormats.value.keys) + } + + //FIXME Extraction Monitor not working + + // finalize extraction-recorder + extractionRecorder.printLabeledLine("finished complete extraction after {page} pages with {mspp} per page", RecordSeverity.Info, lang) + extractor.finalizeExtractor() + extractionRecorder.finalize() + } + catch { + case ex: Throwable => +// if (extractionRecorder.monitor != null) extractionRecorder.monitor.reportCrash(extractionRecorder, ex) + ex.printStackTrace() + extractionRecorder.finalize() + } + } + + def createRecords(page: WikiPageWithRevisions): Seq[RecordEntry2[WikiPageWithRevisions]] = { + page.getExtractionRecords() match { + case seq: Seq[RecordEntry2[WikiPageWithRevisions]] if seq.nonEmpty => seq + case _ => Seq(new RecordEntry2[WikiPageWithRevisions](page, page.uri, RecordSeverity.Info, page.title.language)) + } + } + + private def getLatestDate(finder: Finder[_], config: Config2): String = { + val isSourceRegex = config.source.startsWith("@") + val source = if (isSourceRegex) config.source.head.substring(1) else config.source.head + val fileName = if (config.requireComplete) Config2.Complete else source + finder.dates(fileName, isSuffixRegex = isSourceRegex).last + } + + private def getInputFiles(source: String, finder: Finder[File], date: String): List[File] = { + val files = if (source.startsWith("@")) { // the articles source is a regex - we want to match multiple files + finder.matchFiles(date, source.substring(1)) + } else List(finder.file(date, source)).collect{case Some(x) => x} + files + } + + private def concatOutputFiles(dir : File, prefix: String, formats: Iterable[String]): Unit = { + dir.listFiles().foreach(datasetDir => { + if(datasetDir.isDirectory) { + val ds = datasetDir.getName.replace("_","-") + formats.foreach(format => + Seq("bash", "../scripts/src/main/bash/concatFiles.sh", + datasetDir.getAbsolutePath, s"${dir.getParent}/$prefix$ds.$format", format).!) + } + }) + deleteFilesRecursively(dir) + } + + private def deleteFilesRecursively(file: File): Unit = { + if (file.isDirectory) + file.listFiles.foreach(deleteFilesRecursively) + if (file.exists && !file.delete) + throw new Exception(s"Unable to delete ${file.getAbsolutePath}") + } +} + +/** + * Custom output format for the saveAsHadoopFile method. + * Each partition writes its own files, datasets get their own folder + */ +class CustomPartitionedOutputFormat extends MultipleTextOutputFormat[Any, Any] { + override def generateActualKey(key: Any, value: Any): Any = + NullWritable.get() + + override def generateFileNameForKeyValue(key: Any, value: Any, name: String): String = { + val k = key.asInstanceOf[Key] + val format = k.format.split(".bz2")(0) + s"${k.dataset}/${k.partition}.$format" + } +} + +case class Key(dataset: String, format: String, partition: Int) + + diff --git a/history/src/main/scala/org/dbpedia/extraction/mappings/CompositeExtractor2.scala b/history/src/main/scala/org/dbpedia/extraction/mappings/CompositeExtractor2.scala new file mode 100644 index 0000000000..6a48a0ef46 --- /dev/null +++ b/history/src/main/scala/org/dbpedia/extraction/mappings/CompositeExtractor2.scala @@ -0,0 +1,16 @@ +package org.dbpedia.extraction.mappings + +import org.dbpedia.extraction.config.provenance.Dataset +import org.dbpedia.extraction.transform.Quad + +/** + * TODO: generic type may not be optimal. + */ +class CompositeExtractor2[N](mappings: Extractor[N]*) extends Extractor[N] +{ + override val datasets: Set[Dataset] = mappings.flatMap(_.datasets).toSet + + override def extract(input: N, subjectUri: String): Seq[Quad] = { + mappings.flatMap(_.extract(input, subjectUri)) + } +} diff --git a/history/src/main/scala/org/dbpedia/extraction/mappings/CompositeParseExtractor2.scala b/history/src/main/scala/org/dbpedia/extraction/mappings/CompositeParseExtractor2.scala new file mode 100644 index 0000000000..f668271e6e --- /dev/null +++ b/history/src/main/scala/org/dbpedia/extraction/mappings/CompositeParseExtractor2.scala @@ -0,0 +1,83 @@ +package org.dbpedia.extraction.mappings + +import org.dbpedia.extraction.config.provenance.Dataset +import org.dbpedia.extraction.transform.Quad +import org.dbpedia.extraction.wikiparser.{WikiPage, WikiPageWithRevisions} + +import scala.collection.mutable.ArrayBuffer + +/** + * TODO: generic type may not be optimal. + */ +class CompositeParseExtractor2(extractors: Extractor[_]*) +extends WikiPageWithRevisionsExtractor +{ + + override val datasets: Set[Dataset] = extractors.flatMap(_.datasets).toSet + + //define different types of Extractors + private val wikiPageExtractors = new ArrayBuffer[Extractor[WikiPageWithRevisions]]() + //private val pageNodeExtractors = new ArrayBuffer[PageNodeExtractor]() + //private val jsonNodeExtractors = new ArrayBuffer[JsonNodeExtractor]() + private val finalExtractors = new ArrayBuffer[Extractor[WikiPageWithRevisions]]() + + + //if extractor is not either PageNodeExtractor or JsonNodeExtractor so it accepts WikiPage as input + extractors foreach { extractor => + extractor match { + + // case _: PageNodeExtractor => pageNodeExtractors += extractor.asInstanceOf[PageNodeExtractor] //select all extractors which take PageNode to wrap them in WikiParseExtractor + // case _: JsonNodeExtractor => jsonNodeExtractors += extractor.asInstanceOf[JsonNodeExtractor] + case _: WikiPageWithRevisionsExtractor => wikiPageExtractors += extractor.asInstanceOf[WikiPageWithRevisionsExtractor] //select all extractors which take Wikipage to wrap them in a CompositeExtractor + case _ => + } + println(extractor.toString) + } + + println(wikiPageExtractors.toString()) + if (wikiPageExtractors.nonEmpty) + finalExtractors += new CompositeWikiPageWithRevisionExtractor(new CompositeExtractor2[WikiPageWithRevisions](wikiPageExtractors :_*)) + + //create and load WikiParseExtractor here + // if (pageNodeExtractors.nonEmpty) + // finalExtractors += new WikiParseExtractor(new CompositePageNodeExtractor2(pageNodeExtractors :_*)) + + //create and load JsonParseExtractor here + //if (jsonNodeExtractors.nonEmpty) + //finalExtractors += new JsonParseExtractor(new CompositeJsonNodeExtractor(jsonNodeExtractors :_*)) + + private val immutableExtractors = finalExtractors.toList + + override def extract(input: WikiPageWithRevisions, subjectUri: String): Seq[Quad] = { + + if (finalExtractors.isEmpty) + Seq.empty + else + new CompositeExtractor2[WikiPageWithRevisions](immutableExtractors :_*).extract(input, subjectUri) + } +} + +/** + * Creates new extractors. + */ +object CompositeParseExtractor2 +{ + /** + * Creates a new CompositeExtractor loaded with same type of Extractors[T] + * + * TODO: using reflection here loses compile-time type safety. + * + * @param classes List of extractor classes to be instantiated + * @param context Any type of object that implements the required parameter methods for the extractors + */ + def load(classes: Seq[Class[_ <: Extractor[_]]], context: AnyRef): WikiPageWithRevisionsExtractor = + { + println("IN CompositeParseExtractor2") + val extractors = classes.map(_.getConstructor(classOf[AnyRef]).newInstance(context)) + new CompositeParseExtractor2(extractors: _*) + } +} + + + + diff --git a/history/src/main/scala/org/dbpedia/extraction/mappings/CompositeWikiPageWithRevisionExtractor.scala b/history/src/main/scala/org/dbpedia/extraction/mappings/CompositeWikiPageWithRevisionExtractor.scala new file mode 100644 index 0000000000..440cd8fd38 --- /dev/null +++ b/history/src/main/scala/org/dbpedia/extraction/mappings/CompositeWikiPageWithRevisionExtractor.scala @@ -0,0 +1,9 @@ +package org.dbpedia.extraction.mappings + +import org.dbpedia.extraction.wikiparser.{WikiPage, WikiPageWithRevisions} + +class CompositeWikiPageWithRevisionExtractor(extractors: Extractor[WikiPageWithRevisions]*) +extends CompositeExtractor[WikiPageWithRevisions](extractors: _*) +with WikiPageWithRevisionsExtractor + + diff --git a/history/src/main/scala/org/dbpedia/extraction/mappings/ExtractionMonitor2.scala b/history/src/main/scala/org/dbpedia/extraction/mappings/ExtractionMonitor2.scala new file mode 100644 index 0000000000..7b545f2f55 --- /dev/null +++ b/history/src/main/scala/org/dbpedia/extraction/mappings/ExtractionMonitor2.scala @@ -0,0 +1,204 @@ +package org.dbpedia.extraction.mappings + +import org.apache.jena.rdf.model._ +import org.dbpedia.extraction.config.provenance.Dataset +import org.dbpedia.extraction.config.{Config, ConfigUtils} +import org.dbpedia.extraction.util._ + +import java.util.concurrent.atomic.AtomicLong +import scala.collection.mutable +import scala.collection.mutable.ListBuffer +import scala.util.Try + +class ExtractionMonitor2 { + private val stats : mutable.HashMap[ExtractionRecorder2[_], mutable.HashMap[String, Int]] = mutable.HashMap() + private val errors : mutable.HashMap[ExtractionRecorder2[_], ListBuffer[Throwable]] = mutable.HashMap() + + private var compareVersions = false + private var old_version_URL : String = _ + private val tripleProperty = "http://rdfs.org/ns/void#triples" + private var expectedChanges = Array(-1.0, 8.0) + private val ignorableExceptionsFile: JsonConfig = new JsonConfig(this.getClass.getClassLoader.getResource("ignorableExceptions.json")) + private val ignorableExceptions : mutable.HashMap[ExtractionRecorder2[_], List[String]] = mutable.HashMap() + private var summarizeExceptions : Boolean = false + + this.loadConf() + + /** + * Loads Config Values + * @param configPath path to config + */ + def loadConf(configPath : String = null): Unit ={ + val config = if(configPath == null) Config.universalConfig + else ConfigUtils.loadConfig(configPath) + compareVersions = Try[Boolean]{ config.getProperty("compare-dataset-ids").toBoolean }.getOrElse(false) + if (compareVersions){ + require(config.getProperty("previous-base-dir") != null, "Old build directory needs to be defined under 'previousBaseDir' for the dataID comparison!") + old_version_URL = config.getProperty("previous-base-dir") + val changes = config.getProperty("expected-changes") + if(changes != null) { + if(changes.split(",").length == 2) { + expectedChanges = Array(changes.split(",")(0).toFloat, changes.split(",")(1).toFloat) + } + } + summarizeExceptions = Try[Boolean]{ config.getProperty("summarize-exceptions").toBoolean }.getOrElse(false) + } + } + + /** + * Initializes the Extraction Monitor for a specific ExtractionRecorder2 + * @param er ExtractionRecorder2 + */ + def init(er : ExtractionRecorder2[_]): Unit ={ + val new_map = mutable.HashMap[String, Int]() + + new_map.put("ERROR", 0) + new_map.put("CRASHED", 0) + new_map.put("SUCCESSFUL", 0) + + stats.put(er, new_map) + errors.put(er, ListBuffer()) + + // Load ignorable Exceptions + var exceptions = ListBuffer[String]() + er.datasets.foreach(dataset => ignorableExceptionsFile.get(dataset.canonicalUri).foreach(jsonNode => { + val it = jsonNode.elements() + while(it.hasNext){ + exceptions += it.next().asText() + } + })) + ignorableExceptions.put(er, exceptions.toList) + } + + def init(er_list: List[ExtractionRecorder2[_]]): Unit ={ + er_list.foreach(init) + } + + /** + * Marks the ExtractionRecorder2 as crashed + * @param er ExtractionRecorder2 + * @param ex Exception + */ + def reportCrash(er : ExtractionRecorder2[_], ex : Throwable): Unit ={ + stats(er).put("CRASHED", 1) + errors(er) += ex + } + + /** + * Adds an Exception to the statistics for the Recorder + * @param er ExtractionRecorder2 + * @param ex Exception + */ + def reportError(er : ExtractionRecorder2[_], ex : Throwable): Unit = { + var ignorable = false + if(ignorableExceptions(er).contains(ex.getClass.getName.split("\\.").last)) ignorable = true + if(!ignorable) { + errors(er) += ex + stats(er).put("ERROR", stats(er).getOrElse("ERROR", 0) + 1) + } + } + + /** + * Summary of data for the ExtractionRecorder2 + * @param er ExtractionRecorder2 + * @param datasets List of Datasets that will be compared by DatasetID + * @return Summary-Report + */ + def summarize(er : ExtractionRecorder2[_], datasets : ListBuffer[Dataset] = ListBuffer()): mutable.HashMap[String, Object] ={ + // Get the monitor stats for this ER + val crashed = if(stats(er).getOrElse("CRASHED", 0) == 1) "yes" else "no" + val error = stats(er).getOrElse("ERROR", 0) + var dataIDResults = "" + + // DatasetID Comparison + if(compareVersions) { + // Find the DatasetID Files + val language = er.language + val oldDate = old_version_URL.split("/")(3) + val url = old_version_URL + language.wikiCode + "/"+ oldDate + "_dataid_" + language.wikiCode + ".ttl" + + // Compare & Get the results + compareTripleCount(url, er, datasets) match { + case Some(comparison) => + dataIDResults = "DATAIDRESULTS: \n" + comparison + case None => dataIDResults = "! COULD NOT COMPARE DATAID !" + } + + } + val exceptions = mutable.HashMap[String, Int]() + errors(er).foreach(ex => { + exceptions.put(ex.getClass.getName, exceptions.getOrElse(ex.getClass.getName, 0) + 1) + }) + val summary = mutable.HashMap[String, Object]() + summary.put("EXCEPTIONCOUNT", error.asInstanceOf[Object]) + + val s : AtomicLong = new AtomicLong(0) + val map = er.getSuccessfulPageCount() + map.keySet.foreach(key => s.set(s.get() + map(key).get())) + summary.put("SUCCESSFUL", s) + summary.put("CRASHED", crashed.asInstanceOf[Object]) + summary.put("DATAID", dataIDResults.asInstanceOf[Object]) + summary.put("EXCEPTIONS", + if(summarizeExceptions) exceptions.asInstanceOf[Object] + else mutable.HashMap[String, Int]()) + summary + } + + /** + * Reads two RDF files and compares the triple-count-values. + */ + def compareTripleCount(dataIDUrl : String, extractionRecorder2: ExtractionRecorder2[_], datasets : ListBuffer[Dataset]): Option[String] ={ + try { + var resultString = "" + // Load Graph + val model = ModelFactory.createDefaultModel() + + model.read(dataIDUrl) + val oldValues = getPropertyValues(model, model.getProperty(tripleProperty)) + + // Compare Values + oldValues.keySet.foreach(fileName => { + if (datasets.nonEmpty) { + datasets.foreach(dataset => + if (dataset.canonicalUri == fileName) { + val oldValue: Long = oldValues(fileName).asLiteral().getLong + val newValue: Long = extractionRecorder2.successfulTriples(dataset) + val change: Float = + if (newValue > oldValue) (newValue.toFloat / oldValue.toFloat) * 10000000 / 100000 + else (-1 * (1 - (newValue.toFloat / oldValue.toFloat))) * 10000000 / 100000 + if (change < expectedChanges(0) || change > expectedChanges(1)) resultString += "! " + resultString += dataset.canonicalUri + ": " + change + "%" + }) + } + // Datasets for ER not given => Compare all datasets + else { + resultString += fileName + ": " + oldValues(fileName).asLiteral().getLong + } + }) + if (resultString != "") + Some(resultString) + else + None + } catch { + case ex : Throwable => + ex.printStackTrace() + None + } + } + + /** + * Queries over the graph and returns the property values + * @param model graph + * @param property property + * @return HashMap: Subject -> Value + */ + private def getPropertyValues(model: Model, property : Property) : mutable.HashMap[String, RDFNode] = { + var map = mutable.HashMap[String, RDFNode]() + val it = model.listResourcesWithProperty(property) + while(it.hasNext) { + val res = it.next() + map += res.getURI.split("\\?")(0).split("\\&")(0) -> res.getProperty(property).getObject + } + map + } +} \ No newline at end of file diff --git a/history/src/main/scala/org/dbpedia/extraction/mappings/HistoryPageExtractor.scala b/history/src/main/scala/org/dbpedia/extraction/mappings/HistoryPageExtractor.scala index 67c65e2d18..349dc8217a 100644 --- a/history/src/main/scala/org/dbpedia/extraction/mappings/HistoryPageExtractor.scala +++ b/history/src/main/scala/org/dbpedia/extraction/mappings/HistoryPageExtractor.scala @@ -3,7 +3,7 @@ package org.dbpedia.extraction.mappings import java.net.URL import org.dbpedia.extraction.config.provenance.{DBpediaDatasets, Dataset} import org.dbpedia.extraction.ontology.{Ontology, OntologyProperty} -import org.dbpedia.extraction.transform.Quad +import org.dbpedia.extraction.transform.{Quad, QuadBuilder} import org.dbpedia.extraction.util.Language import org.dbpedia.extraction.wikiparser._ @@ -24,36 +24,86 @@ class HistoryPageExtractor( private val subjectOntProperty = context.ontology.properties("dc:subject") private val typeOntProperty = context.ontology.properties("rdf:type") private val featureOntClass = context.ontology.classes("prov:Revision") - //val sameAsProperty: OntologyProperty = context.ontology.properties("prov:sameAs") + private val wikiPageRevisionIdProperty = context.ontology.properties("wikiPageRevisionID") + private val foafNick = context.ontology.properties("foaf:nick") - override val datasets = Set(DBpediaDatasets.History) //# ToADD + val wikiPageLengthProperty = context.ontology.properties("wikiPageLength") + val nonNegativeInteger = context.ontology.datatypes("xsd:nonNegativeInteger") -// WikiPage ? PageNode? + // PROPERTIES TO ADD INTO THE ONTOLOGY + private val Entityclass = "http://www.w3.org/ns/prov#Entity" + private val derivedFromProperty = "http://www.w3.org/ns/prov#wasDerivedFrom" + private val quadpropderivedFromProperty = QuadBuilder.stringPredicate(context.language, DBpediaDatasets.HistoryData, derivedFromProperty, null) _ + private val propQualifRevision = "http://www.w3.org/ns/prov#qualifiedRevision" + private val quadpropQualifRevision = QuadBuilder.stringPredicate(context.language, DBpediaDatasets.HistoryData, propQualifRevision, null) _ + private val propCreated = "http://purl.org/dc/terms/created" + private val quadpropCreated = QuadBuilder.stringPredicate(context.language, DBpediaDatasets.HistoryData, propCreated, context.ontology.datatypes("xsd:dateTime")) _ + private val propwasRevisionOf = "http://www.w3.org/ns/prov#wasRevisionOf" + private val quadpropwasRevisionOf = QuadBuilder.stringPredicate(context.language, DBpediaDatasets.HistoryData, propwasRevisionOf, null) _ + private val propCreator = "http://purl.org/dc/terms/creator" + private val quadpropCreator = QuadBuilder.stringPredicate(context.language, DBpediaDatasets.HistoryData, propCreator, null) _ + private val propsciorid= "http://rdfs.org/sioc/ns#id" + private val quadpropsciorid = QuadBuilder.stringPredicate(context.language, DBpediaDatasets.HistoryData, propsciorid, context.ontology.datatypes("xsd:string")) _ + private val propsciorip = "http://rdfs.org/sioc/ns#ip_address" + private val quadpropsciorip = QuadBuilder.stringPredicate(context.language, DBpediaDatasets.HistoryData, propsciorip, context.ontology.datatypes("xsd:string")) _ + private val propsciornote = "http://rdfs.org/sioc/ns#note" + private val quadpropsciocnote = QuadBuilder.stringPredicate(context.language, DBpediaDatasets.HistoryData, propsciornote, context.ontology.datatypes("xsd:string")) _ - override def extract(node:WikiPageWithRevisions , subjectUri: String): Seq[Quad] = { + override val datasets = Set(DBpediaDatasets.HistoryData) //# ToADD + + + override def extract(page: WikiPageWithRevisions , subjectUri: String): Seq[Quad] = { + + println("xxxxxxxxxxxxxx HISTORY EXTRACTOR xxxxxxxxxxxxxxxxx") - println("xxxxxxxxxxxxxx HISTORY EXTRACTOR xxxxxxxxxxxxxxxxx") val quads = new ArrayBuffer[Quad]() + var rev_index=0; + quads += new Quad(context.language, DBpediaDatasets.HistoryData, page.title.pageIri, typeOntProperty, Entityclass, page.sourceIri) + // TODO : ADD STATS TO REVISION NODE CLASS FOR + // uniqueContributorNb + // dbfr:revPerYear + // dbfr:revPerMonth + // averageSizePerYear + // averageSizePerMonth + + page.revisions.foreach(revision => { + quads += new Quad(context.language, DBpediaDatasets.HistoryData, page.title.pageIri, typeOntProperty, Entityclass, page.sourceIri) + quads += quadpropQualifRevision(page.title.pageIri, revision.pageUri, page.sourceIri) // NOT 100% SUR OF IT + quads += new Quad(context.language, DBpediaDatasets.HistoryData, revision.pageUri, wikiPageRevisionIdProperty,revision.id.toString, page.sourceIri, context.ontology.datatypes("xsd:integer")) + quads += quadpropCreated(revision.pageUri, revision.timestamp, page.sourceIri) + quads += quadpropwasRevisionOf(revision.pageUri, revision.parent_Uri, page.sourceIri) + + //// CREATOR + var bn_propCreator=subjectUri+"__creator__"+rev_index + quads += quadpropCreator(revision.pageUri, bn_propCreator, page.sourceIri) + if(revision.contributorID != ""){ + quads += quadpropsciorid(bn_propCreator,revision.contributorID , page.sourceIri) + } + if (revision.contributorIP != "") { + quads += quadpropsciorip(bn_propCreator, revision.contributorIP, page.sourceIri) + } + if (revision.contributorName != "") { + quads += new Quad(context.language, DBpediaDatasets.HistoryData, bn_propCreator, foafNick, revision.contributorName, page.sourceIri) + } + if (revision.comment != "") { + quads += quadpropsciocnote(revision.pageUri,revision.comment, page.sourceIri) + } + + quads += new Quad(context.language, DBpediaDatasets.HistoryData, revision.pageUri, wikiPageLengthProperty, revision.text_size.toString, page.sourceIri, nonNegativeInteger) + + // TODO : CREATE OR FIND PROP FOR : + // revision.contributorDeleted + // revision.minor_edit + // revision.text_delta + + rev_index+=1 + }) + - //node.pageNode.children.foreach(n => { - println(">>>>>>>>>>>>>>>>") - println(node.toString) - println("NB REVISIONS :"+node.revisions) - //if(n.isInstanceOf[TextNode]){ println( "FOUND TEXT")} - println(">>>>>>>>>>>>>>>>") - //}) - quads += new Quad(context.language, DBpediaDatasets.History, node.title.pageIri, typeOntProperty, featureOntClass.uri, node.sourceIri) - quads += new Quad(context.language, DBpediaDatasets.History, node.title.pageIri, subjectOntProperty, subjectUri, node.sourceIri) quads } - /*def collectRevisions(node: Node): List[RevisionNode] = { - node match { - case revisionNode: RevisionNode if node.destination.namespace == Namespace.Category => List(linkNode) - case _ => node.children.flatMap(collectRevisions) - } - } -*/ + } diff --git a/history/src/main/scala/org/dbpedia/extraction/mappings/RedirectExtractor2.scala b/history/src/main/scala/org/dbpedia/extraction/mappings/RedirectExtractor2.scala new file mode 100644 index 0000000000..e9a771f0b6 --- /dev/null +++ b/history/src/main/scala/org/dbpedia/extraction/mappings/RedirectExtractor2.scala @@ -0,0 +1,40 @@ +package org.dbpedia.extraction.mappings + +import org.dbpedia.extraction.config.provenance.DBpediaDatasets +import org.dbpedia.extraction.ontology.Ontology +import org.dbpedia.extraction.transform.{Quad, QuadBuilder} +import org.dbpedia.extraction.util.{ExtractorUtils, Language} +import org.dbpedia.extraction.wikiparser._ + +import scala.language.reflectiveCalls + +/** + * Extracts redirect links between Articles in Wikipedia. + */ +class RedirectExtractor2( + context : { + def ontology : Ontology + def language : Language + } +) + extends WikiPageWithRevisionsExtractor +{ + private val language = context.language + + private val wikiPageRedirectsProperty = context.ontology.properties("wikiPageRedirects") + + override val datasets = Set(DBpediaDatasets.Redirects) + + private val namespaces = if (language == Language.Commons) ExtractorUtils.commonsNamespacesContainingMetadata + else Set(Namespace.Main, Namespace.Template, Namespace.Category) + + private val quad = QuadBuilder(language, DBpediaDatasets.Redirects, wikiPageRedirectsProperty, null) _ + + override def extract(page : WikiPageWithRevisions, subjectUri : String): Seq[Quad] = { + if (page.isRedirect && page.title.namespace == page.redirect.namespace) { + return Seq(quad(subjectUri, language.resourceUri.append(page.redirect.decodedWithNamespace), page.sourceIri)) + } + + Seq.empty + } +} diff --git a/history/src/main/scala/org/dbpedia/extraction/mappings/Redirects2.scala b/history/src/main/scala/org/dbpedia/extraction/mappings/Redirects2.scala new file mode 100644 index 0000000000..8e26d11906 --- /dev/null +++ b/history/src/main/scala/org/dbpedia/extraction/mappings/Redirects2.scala @@ -0,0 +1,229 @@ +package org.dbpedia.extraction.mappings + +import org.dbpedia.extraction.sources.{Source, Source2} +import org.dbpedia.extraction.util.Language +import org.dbpedia.extraction.wikiparser._ +import org.dbpedia.extraction.wikiparser.impl.wikipedia.Redirect + +import java.io._ +import java.util.logging.{Level, Logger} +import scala.collection.mutable.{HashMap, HashSet} + +/** + * Holds the redirects between wiki pages + * At the moment, only redirects between Templates are considered + * + * @param map Redirect map. Contains decoded template titles. + */ +// FIXME: this class is a hack. Resolving redirects is a central part of DBpedia and should be done +// right and more explicitly. This class is trying to do too much under the hood. +// FIXME: this class does basically the same thing as RedirectExtractor, just differently. +//TODO make map private? +//TODO language dependent +class Redirects2(val map : Map[String, String]) extends java.io.Serializable +{ + /** + * Resolves a redirect. + * + * @param title The title of the page + * @return If this page is a redirect, the destination of the redirect. + * If this page is not a redirect, the page itself. + */ + def resolve(title : WikiTitle) : WikiTitle = + { + // if there is no redirect for given title, just return same object + if (! map.contains(title.decoded)) return title + + //Remember already visited pages to avoid cycles + val visited = new HashSet[String]() + + //Follows redirects + var currentTitle = title.decoded + while(!visited.contains(currentTitle)) + { + visited.add(currentTitle) + map.get(currentTitle) match + { + case Some(destinationTitle) => currentTitle = destinationTitle + case None => return new WikiTitle(currentTitle, Namespace.Template, title.language) + } + } + + //Detected a cycle + title + } + + /** + * TODO: comment. What does this method do? + */ + def resolveMap[T](mappings : Map[String, T]) : Map[String, T] = + { + val resolvedMappings = new HashMap[String, T]() + + for((source, destination) <- map if !mappings.contains(source)) + { + //Remember already visited pages to avoid cycles + val visited = new HashSet[String]() + visited.add(source) + + //Compute transitive hull + var lastDestination = source + var currentDestination = destination + while(currentDestination != null && !visited.contains(currentDestination)) + { + visited.add(currentDestination) + lastDestination = currentDestination + currentDestination = map.get(currentDestination).getOrElse(null) + } + + //Add to redirect map + for(destinationT <- mappings.get(lastDestination)) + { + resolvedMappings(source) = destinationT + } + } + + for ((source, destination) <- map if !mappings.contains(destination)) { + if (mappings.contains(source)) { + resolvedMappings(destination) = mappings(source) + } + } + + mappings ++ resolvedMappings + } +} + +/** + * Loads redirects from a cache file or source of Wiki pages. + * At the moment, only redirects between Templates are considered + */ +object Redirects2 +{ + private val logger = Logger.getLogger(classOf[Redirects].getName) + + /** + * Tries to load the redirects from a cache file. + * If not successful, loads the redirects from a source. + * Updates the cache after loading the redirects from the source. + */ + def load(source : Source2, cache : File, lang : Language) : Redirects2 = + { + //Try to load redirects from the cache + try + { + return loadFromCache(cache) + } + catch + { + case ex : Exception => logger.log(Level.INFO, "Will extract redirects from source for "+lang.wikiCode+" wiki, could not load cache file '"+cache+"': "+ex) + } + + //Load redirects from source + val redirects = loadFromSource(source, lang) + + val dir = cache.getParentFile + if (! dir.exists && ! dir.mkdirs) throw new IOException("cache dir ["+dir+"] does not exist and cannot be created") + val outputStream = new ObjectOutputStream(new FileOutputStream(cache)) + try + { + outputStream.writeObject(redirects.map) + } + finally + { + outputStream.close() + } + logger.info(redirects.map.size + " redirects written to cache file "+cache) + + redirects + } + + /** + * Loads the redirects from a cache file. + */ + private def loadFromCache(cache : File) : Redirects2 = + { + logger.info("Loading redirects from cache file "+cache) + val inputStream = new ObjectInputStream(new FileInputStream(cache)) + try + { + val redirects = new Redirects2(inputStream.readObject().asInstanceOf[Map[String, String]]) + + logger.info(redirects.map.size + " redirects loaded from cache file "+cache) + redirects + } + finally + { + inputStream.close() + } + } + + /** + * Loads the redirects from a source. + */ + def loadFromSource(source: Source2, lang: Language): Redirects2 = { + logger.info("Loading redirects from source (" + lang.wikiCode + ")") + + val redirectFinder = new RedirectFinder(lang) + + // TODO: usually, flatMap can be applied to Option, but not here. That's why + // RedirectFinder.apply returns a List, not an Option. Some implicit missing? + val redirects = new Redirects2(source.flatMap(redirectFinder).toMap) + + logger.info("Redirects loaded from source (" + lang.wikiCode + ")") + redirects + } + + private class RedirectFinder(lang : Language) extends (WikiPageWithRevisions => List[(String, String)]) + { + val regex = buildRegex + + private def buildRegex = { + val redirects = Redirect(lang).mkString("|") + // (?ius) enables CASE_INSENSITIVE UNICODE_CASE DOTALL + // case insensitive and unicode are important - that's what mediawiki does. + // Note: Although we do not specify a Locale, UNICODE_CASE does mostly the right thing. + // DOTALL means that '.' also matches line terminators. + // Reminder: (?:...) are non-capturing groups, '*?' is a reluctant qualifier. + // (?:#[^\n]*?)? is an optional (the last '?') non-capturing group meaning: there may + // be a '#' after which everything but line breaks is allowed ('[]{}|<>' are not allowed + // before the '#'). The match is reluctant ('*?'), which means that we recognize ']]' + // as early as possible. + // (?:\|[^\n]*?)? is another optional non-capturing group that reluctantly consumes + // a '|' character and everything but line breaks after it. + ("""(?ius)\s*(?:"""+redirects+""")\s*:?\s*\[\[([^\[\]{}|<>\n]+(?:#[^\n]*?)?)(?:\|[^\n]*?)?\]\].*""").r + } + + override def apply(page : WikiPageWithRevisions) : List[(String, String)]= + { + var destinationTitle : WikiTitle = + page.source match { + case regex(destination) => { + try { + + WikiTitle.parse(destination, page.title.language) + } + catch { + case ex : WikiParserException => { + Logger.getLogger(Redirects.getClass.getName).log(Level.WARNING, "Couldn't parse redirect destination", ex) + null + } + } + } + case _ => null + } + + if (destinationTitle != page.redirect) { + Logger.getLogger(Redirects.getClass.getName).log(Level.WARNING, "wrong redirect. page: ["+page.title+"].\nfound by dbpedia: ["+destinationTitle+"].\nfound by wikipedia: ["+page.redirect+"]") + } + + if(destinationTitle != null && page.title.namespace == Namespace.Template && destinationTitle.namespace == Namespace.Template) + { + List((page.title.decoded, destinationTitle.decoded)) + } + else + { + Nil + } + } + } +} \ No newline at end of file diff --git a/history/src/main/scala/org/dbpedia/extraction/sources/Source2.scala b/history/src/main/scala/org/dbpedia/extraction/sources/Source2.scala index f86e04bf87..1c7c24c01d 100644 --- a/history/src/main/scala/org/dbpedia/extraction/sources/Source2.scala +++ b/history/src/main/scala/org/dbpedia/extraction/sources/Source2.scala @@ -16,7 +16,8 @@ import scala.collection.immutable.Traversable * waste. Even calling head() causes a big overhead, for example a file or a network connection * is opened. Is there a more appropriate Scala type? */ -trait Source2 extends Source + +trait Source2 extends Traversable[WikiPageWithRevisions] with java.io.Serializable { /** * True, if this source is guaranteed to have a finite size. diff --git a/history/src/main/scala/org/dbpedia/extraction/sources/XMLSource2.scala b/history/src/main/scala/org/dbpedia/extraction/sources/XMLSource2.scala index 17034520cc..cc163dd7ae 100644 --- a/history/src/main/scala/org/dbpedia/extraction/sources/XMLSource2.scala +++ b/history/src/main/scala/org/dbpedia/extraction/sources/XMLSource2.scala @@ -29,11 +29,11 @@ object XMLSource2 * @param filter Function to filter pages by their title. Pages for which this function returns false, won't be yielded by the source. * @param language if given, parser expects file to be in this language and doesn't read language from siteinfo element */ - def fromFile(file: File, language: Language, filter: WikiTitle => Boolean = _ => true): Source = { + def fromFile(file: File, language: Language, filter: WikiTitle => Boolean = _ => true): Source2 = { fromReader(() => new InputStreamReader(new FileInputStream(file), "UTF-8"), language, filter) } - def fromMultipleFiles(files: List[File], language: Language, filter: WikiTitle => Boolean = _ => true): Source = { + def fromMultipleFiles(files: List[File], language: Language, filter: WikiTitle => Boolean = _ => true): Source2 = { fromReaders(files.map { f => () => new InputStreamReader(new FileInputStream(f), "UTF-8") }, language, filter) } @@ -44,18 +44,18 @@ object XMLSource2 * @param filter Function to filter pages by their title. Pages for which this function returns false, won't be yielded by the source. * @param language if given, parser expects file to be in this language and doesn't read language from siteinfo element */ - def fromReader(source: () => Reader, language: Language, filter: WikiTitle => Boolean = _ => true) : Source = { + def fromReader(source: () => Reader, language: Language, filter: WikiTitle => Boolean = _ => true) : Source2 = { System.out.print("fromReader - XMLReaderSource2 "); new XMLReaderSource2(source, language, filter) } - def fromReaders(sources: Seq[() => Reader], language: Language, filter: WikiTitle => Boolean = _ => true) : Source = { + def fromReaders(sources: Seq[() => Reader], language: Language, filter: WikiTitle => Boolean = _ => true): Source2 = { - System.out.print("fromReaders - MultipleXMLReaderSource2 "); - if (sources.size == 1) fromReader(sources.head, language, filter) // no need to create an ExecutorService - else new MultipleXMLReaderSource2(sources, language, filter) - } + System.out.print("fromReaders - MultipleXMLReaderSource2 "); + if (sources.size == 1) fromReader(sources.head, language, filter) // no need to create an ExecutorService + else new MultipleXMLReaderSource2(sources, language, filter) + } /** * Creates an XML Source from a parsed XML tree. @@ -76,11 +76,11 @@ object XMLSource2 /** * XML source which reads from a file */ -private class MultipleXMLReaderSource2(sources: Seq[() => Reader], language: Language, filter: WikiTitle => Boolean) extends Source +private class MultipleXMLReaderSource2(sources: Seq[() => Reader], language: Language, filter: WikiTitle => Boolean) extends Source2 { var executorService : ExecutorService = _ - override def foreach[U](proc : WikiPage => U) : Unit = { + override def foreach[U](proc : WikiPageWithRevisions => U) : Unit = { System.out.print("MultipleXMLReaderSource2 "); if (executorService == null) executorService = Executors.newFixedThreadPool(Runtime.getRuntime.availableProcessors()) @@ -113,13 +113,15 @@ private class MultipleXMLReaderSource2(sources: Seq[() => Reader], language: Lan /** * XML source which reads from a file */ -private class XMLReaderSource2(source: () => Reader, language: Language, filter: WikiTitle => Boolean) extends Source +private class XMLReaderSource2(source: () => Reader, language: Language, filter: WikiTitle => Boolean) extends Source2 { - override def foreach[U](proc : WikiPage => U) : Unit = { + override def foreach[U](proc : WikiPageWithRevisions => U) : Unit = { System.out.print("XMLReaderSource2 - readPages") val reader = source() try new WikipediaDumpParserHistory(reader, language, filter.asInstanceOf[WikiTitle => java.lang.Boolean], proc).run() finally reader.close() + System.out.print("END XMLReaderSource2 - readPages") + } override def hasDefiniteSize = true diff --git a/history/src/main/scala/org/dbpedia/extraction/util/DumpExtractionContext2.scala b/history/src/main/scala/org/dbpedia/extraction/util/DumpExtractionContext2.scala new file mode 100644 index 0000000000..e0bdc51359 --- /dev/null +++ b/history/src/main/scala/org/dbpedia/extraction/util/DumpExtractionContext2.scala @@ -0,0 +1,33 @@ +package org.dbpedia.extraction.util + +import org.dbpedia.extraction.mappings.{Disambiguations, Mappings, Redirects, Redirects2} +import org.dbpedia.extraction.ontology.Ontology +import org.dbpedia.extraction.sources.Source2 +import org.dbpedia.extraction.util.Language +import org.dbpedia.extraction.wikiparser.WikiPageWithRevisions + +/** + * TODO: remove this class. Different extractors need different resources. We should use some kind + * of dependency injection (not necessarily a framework, Scala should be flexible enough). That + * would also make configuration much easier and more flexible. No more loading of classes by name. + * + * Problems with the current approach: + * - unflexible + * - we lose static type safety because of + * - reflection when the extractor objects are created + * - structural types in extractor constructors + */ +trait DumpExtractionContext2 +{ + def ontology : Ontology + + + def language : Language + + + def articlesSource : Source2 + + def redirects : Redirects2 + + def disambiguations : Disambiguations +} diff --git a/history/src/main/scala/org/dbpedia/extraction/util/ExtractionRecorder2.scala b/history/src/main/scala/org/dbpedia/extraction/util/ExtractionRecorder2.scala new file mode 100644 index 0000000000..32e8770723 --- /dev/null +++ b/history/src/main/scala/org/dbpedia/extraction/util/ExtractionRecorder2.scala @@ -0,0 +1,570 @@ +package org.dbpedia.extraction.util + +import java.io.{ByteArrayOutputStream, Writer} +import java.net.SocketTimeoutException +import java.nio.charset.Charset +import java.text.DecimalFormat +import java.util.concurrent.atomic.AtomicLong +import org.apache.jena.atlas.json.{JSON, JsonArray, JsonObject} +import org.dbpedia.extraction.config.provenance.Dataset +import org.dbpedia.extraction.mappings.ExtractionMonitor2 +import org.dbpedia.extraction.transform.Quad +import org.dbpedia.extraction.config.Config.SlackCredentials +import org.dbpedia.extraction.wikiparser.{PageNode, WikiPageWithRevisions, WikiTitle} + +import scala.collection.mutable +import scala.collection.mutable.ListBuffer +import scalaj.http.Http + +/** + * Created by Chile on 11/3/2016. + */ +class ExtractionRecorder2[T]( + val logWriter: Writer = null, + val reportInterval: Int = 100000, + val preamble: String = null, + val slackCredantials: SlackCredentials = null, + val datasets: ListBuffer[Dataset] = ListBuffer[Dataset](), + val language: Language = Language.English, + val monitor: ExtractionMonitor2 = null + ) { + + def this(er: ExtractionRecorder2[T]) = this(er.logWriter, er.reportInterval, er.preamble, er.slackCredantials) + + private var failedPageMap = Map[Language, scala.collection.mutable.Map[(String, T), Throwable]]() + private var successfulPagesMap = Map[Language, scala.collection.mutable.Map[Long, WikiTitle]]() + + private val startTime = new AtomicLong() + private var successfulPageCount = Map[Language,AtomicLong]() + private var successfulTripleCount = Map[Dataset, AtomicLong]() + + private var defaultLang: Language = Language.English + + private val decForm = new DecimalFormat("#.##") + + private var slackIncreaseExceptionThreshold = 1 + + private var task: String = "transformation" + private var initialized = false + + private var writerOpen = if(logWriter == null) false else true + + + /** + * A map for failed pages, which could be used for a better way to record extraction fails than just a simple console output. + * + * @return the failed pages (id, title) for every Language + */ + def listFailedPages: Map[Language, mutable.Map[(String, T), Throwable]] = failedPageMap + + /** + * successful page count + * + * @param lang - for this language + * @return + */ + def successfulPages(lang: Language): Long = successfulPageCount.get(lang) match{ + case Some(m) => m.get() + case None => 0 + } + + def successfulTriples(dataset : Dataset): Long = successfulTripleCount.get(dataset) match { + case Some(m) => m.get() + case None => 0 + } + + /** + * get successful page count after increasing it by one + * + * @param lang - for this language + * @return + */ + def increaseAndGetSuccessfulPages(lang: Language): Long ={ + successfulPageCount.get(lang) match { + case Some(ai) => ai.incrementAndGet() + case None => + successfulPageCount += (lang -> new AtomicLong(1)) + 1 + } + } + + def increaseAndGetSuccessfulTriples(dataset: Dataset) : Long = { + successfulTripleCount.get(dataset) match { + case Some(ai) => ai.incrementAndGet() + case None => + successfulTripleCount += (dataset -> new AtomicLong(1)) + 1 + } + } + + /** + * number of failed pages + * + * @param lang - for this language + * @return + */ + def failedPages(lang: Language): Long = failedPageMap.get(lang) match{ + case Some(m) => m.size + case None => 0 + } + + /** + * the current accumulated page number + * + * @param lang - for this language + * @return + */ + def runningPageNumber(lang:Language): Long = successfulPages(lang) + failedPages(lang) + + /** + * prints a message of a RecordEntry2 if available and + * assesses a RecordEntry2 for the existence of a Throwable and forwards + * the record to the suitable method for a failed or successful extraction + * + * @param records - the RecordEntries for a WikiPage + */ + def record(records: RecordEntry2[T]*): Unit = { + for(record <- records) { + //val count = increaseAndGetSuccessfulPages(record.language) + record.page match{ + case page: WikiPageWithRevisions => + if (record.errorMsg != null) + printLabeledLine(record.errorMsg, record.severity, page.title.language, Seq(PrinterDestination.err, PrinterDestination.file)) + Option(record.error) match { + case Some(ex) => failedRecord(record.identifier, record.page, ex, record.language) + case None => recordExtractedPage(page.id, page.title, record.logSuccessfulPage) + } + case quad: Quad => + Option(record.error) match { + case Some(ex) => failedRecord(record.identifier, record.page, ex, record.language) + case None => recordQuad(quad, record.severity, record.language) + } + case _ => + val msg = Option(record.errorMsg) match{ + case Some(m) => printLabeledLine(m, record.severity, record.language) + case None => + if(record.error != null) failedRecord(null, record.page, record.error, record.language) + else recordGenericPage(record.language, record.page.toString) + } + } + } + } + + /** + * adds a new fail record for a wikipage which failed to extract; Optional: write fail to log file (if this has been set before) + * + * @param id - page id + * @param node - PageNode of page + * @param exception - the Throwable responsible for the fail + */ + def failedRecord(id: String, node: T, exception: Throwable, language:Language = null): Unit = synchronized{ + val lang = if(language != null) language else defaultLang + val tag = node match{ + case p: PageNode => "page" + case q: Quad => "quad" + case _ => "instance" + } + failedPageMap.get(lang) match{ + case Some(map) => map += ((id,node) -> exception) + case None => failedPageMap += lang -> mutable.Map[(String, T), Throwable]((id, node) -> exception) + } + val line = "{task} failed for " + tag + " " + id + ": " + exception.getMessage + printLabeledLine(line, RecordSeverity.Exception, lang, Seq(PrinterDestination.err, PrinterDestination.file)) + for (ste <- exception.getStackTrace) + printLabeledLine("\t" + ste.toString, RecordSeverity.Exception, lang, Seq(PrinterDestination.file), noLabel = true) + + if(slackCredantials != null && failedPages(lang) % (slackCredantials.exceptionThreshold * slackIncreaseExceptionThreshold) == 0) + forwardExceptionWarning(lang) + + // if(monitor != null) monitor.reportError(this, exception) + + } + + /** + * adds a record of a successfully extracted page + * + * @param id - page id + * @param title - page title + * @param logSuccessfulPage - indicates whether the event of a successful extraction shall be included in the log file (default = false) + */ + def recordExtractedPage(id: Long, title: WikiTitle, logSuccessfulPage:Boolean = false): Unit = synchronized { + if(logSuccessfulPage) { + successfulPagesMap.get(title.language) match { + case Some(map) => map += (id -> title) + case None => successfulPagesMap += title.language -> mutable.Map[Long, WikiTitle](id -> title) + } + printLabeledLine("page " + id + ": " + title.encoded + " extracted", RecordSeverity.Info, title.language, Seq(PrinterDestination.file)) + } + val pages = increaseAndGetSuccessfulPages(title.language) + if(pages % reportInterval == 0) + printLabeledLine("extracted {page} pages; {mspp} per page; {fail} failed pages", RecordSeverity.Info, title.language) + if(slackCredantials != null && pages % slackCredantials.summaryThreshold == 0) + forwardSummary(title.language) + } + + def recordGenericPage(lang: Language, line: String = null): Unit ={ + val pages = increaseAndGetSuccessfulPages(lang) + val l = if(line == null) "processed {page} instances; {mspp} per instance; {fail} failed instances" else line + if(pages % reportInterval == 0) + printLabeledLine(l, RecordSeverity.Info, lang) + if(slackCredantials != null && pages % slackCredantials.summaryThreshold == 0) + forwardSummary(lang) + } + + /** + * record (successful) quad + * + * @param quad + * @param lang + */ + def recordQuad(quad: Quad, severity: RecordSeverity.Value, lang:Language): Unit = synchronized { + if(increaseAndGetSuccessfulPages(lang) % reportInterval == 0) + printLabeledLine("processed {page} quads; {mspp} per quad; {fail} failed quads", severity, lang) + } + + /** + * print a line to std out, err or the log file + * + * @param line - the line in question + * @param language - langauge of current page + * @param print - enum values for printer destinations (err, out, file - null mean all of them) + * @param noLabel - the initial label (lang: time passed) is omitted + */ + def printLabeledLine(line:String, severity: RecordSeverity.Value, language: Language = null, print: Seq[PrinterDestination.Value] = null, noLabel: Boolean = false): Unit ={ + val lang = if(language != null) language else defaultLang + val printOptions = if(print == null) { + if(severity == RecordSeverity.Exception ) + Seq(PrinterDestination.err, PrinterDestination.out, PrinterDestination.file) + else if(severity == RecordSeverity.Info) + Seq(PrinterDestination.out, PrinterDestination.file) + else + Seq(PrinterDestination.file) + } else print + + val status = getStatusValues(lang) + val replacedLine = (if (noLabel) "" else severity.toString + "; " + lang.wikiCode + "; {task} at {time} for {data}; ") + line + val pattern = "\\{\\s*\\w+\\s*\\}".r + var lastend = 0 + var resultString = "" + for(matchh <- pattern.findAllMatchIn(replacedLine)){ + resultString += replacedLine.substring(lastend, matchh.start) + resultString += (Option(matchh.matched) match{ + case Some(m) => + m match{ + case i if i == "{time}" => status("time") + case i if i == "{mspp}" => status("mspp") + case i if i == "{page}" => status("pages") + case i if i == "{erate}" => status("erate") + case i if i == "{fail}" => status("failed") + case i if i == "{data}" => status("dataset") + case i if i == "{task}" => status("task") + case _ => "" + } + case None => "" + }) + lastend = matchh.end + } + resultString += replacedLine.substring(lastend) + + for(pr <-printOptions) + pr match{ + case PrinterDestination.err => System.err.println(resultString) + case PrinterDestination.out => System.out.println(resultString) + case PrinterDestination.file if writerOpen => logWriter.append(resultString + "\n") + case _ => + } + } + + def getStatusValues(lang: Language): Map[String, String] = { + val pages = successfulPages(lang) + val time = System.currentTimeMillis - startTime.get + val failed = failedPages(lang) + val datasetss = if(datasets.nonEmpty && datasets.size <= 3) + datasets.foldLeft[String]("")((x,y) => x + ", " + y.encoded).substring(2) + else + String.valueOf(datasets.size) + " datasets" + + Map("pages" -> pages.toString, + "failed" -> failed.toString, + "mspp" -> (decForm.format(time.toDouble / pages) + " ms"), + "erate" -> (if(failed == 0) "0" else ((pages+failed) / failed).toString), + "dataset" -> datasetss, + "time" -> StringUtils.prettyMillis(time), + "task" -> task + ) + } + + def initialize(lang: Language, task: String = "transformation", datasets: Seq[Dataset] = Seq()): Boolean ={ + if(initialized) + return false + this.failedPageMap = Map[Language, scala.collection.mutable.Map[(String, T), Throwable]]() + this.successfulPagesMap = Map[Language, scala.collection.mutable.Map[Long, WikiTitle]]() + this.successfulPageCount = Map[Language,AtomicLong]() + this.successfulTripleCount = Map[Dataset, AtomicLong]() + + this.startTime.set(System.currentTimeMillis) + this.defaultLang = lang + this.task = task + this.datasets ++= datasets + + // if(monitor != null) + // monitor.init(this) + + if(preamble != null) + printLabeledLine(preamble, RecordSeverity.Info, lang) + + val line = "Extraction started for language: " + lang.name + " (" + lang.wikiCode + ")" + (if (datasets.nonEmpty) " on " + datasets.size + " datasets." else "") + printLabeledLine(line, RecordSeverity.Info, lang) + forwardExtractionOverview(lang, line) + initialized = true + true + } + + override def finalize(): Unit ={ + if(writerOpen){ + logWriter.close() + writerOpen = false + } + + // if(monitor != null) { + // printMonitorSummary(monitor.summarize(this, datasets)) + //} + + val line = "Extraction finished for language: " + defaultLang.name + " (" + defaultLang.wikiCode + ") " + + (if(datasets.nonEmpty) ", extracted " + successfulPages(defaultLang) + " pages for " + datasets.size + " datasets after " + StringUtils.prettyMillis(System.currentTimeMillis - startTime.get) + " minutes." else "") + printLabeledLine(line, RecordSeverity.Info, defaultLang) + forwardSimpleLine(line) + + super.finalize() + } + + def resetFailedPages(lang: Language) = failedPageMap.get(lang) match{ + case Some(m) => + m.clear() + successfulPageCount(lang).set(0) + case None => + } + + object PrinterDestination extends Enumeration { + val out, err, file = Value + } + + /** + * the following methods will post messages to a Slack webhook if the Slack-Cedentials are available in the config file + */ + var lastExceptionMsg = new java.util.Date().getTime + + /** + * forward an exception summary to slack + * (will increase the slack-exception-threshold by factor 2 if two of these messages are fired within 2 minutes) + * @param lang + */ + def forwardExceptionWarning(lang: Language) : Unit = + { + if(slackCredantials == null) + return + //if error warnings are less than 2 min apart increase threshold + if((new java.util.Date().getTime - lastExceptionMsg) / 1000 < 120) + slackIncreaseExceptionThreshold = slackIncreaseExceptionThreshold*2 + lastExceptionMsg = new java.util.Date().getTime + + val attachments = new JsonArray() + val attachment = getAttachment("Multiple pages failed to be extracted.", if(slackIncreaseExceptionThreshold < 5) "warning" else "danger") + val fields = new JsonArray() + attachment.put("fields", fields) + attachments.add(attachment) + addKeyValue(fields, "Number of exceptions", failedPages(lang).toString) + + val data = defaultMessage("Exception status report for language " + lang.name, null, attachments) + + sendCurl(slackCredantials.webhook.toString, data) + } + + def forwardSummary(lang: Language) : Unit = + { + if(slackCredantials == null) + return + val status = getStatusValues(lang) + val attachments = new JsonArray() + val attachment = getAttachment("Status Report of " + status("task"), "#36a64f") + val fields = new JsonArray() + addKeyValue(fields, "extracted pages:", status("pages")) + if(status("dataset").nonEmpty) + addKeyValue(fields, "extracted datasets:", status("dataset")) + addKeyValue(fields, "time elapsed: ", status("time")) + addKeyValue(fields, "per page: ", status("mspp")) + addKeyValue(fields, "failed pages: ", status("failed")) + attachment.put("fields", fields) + attachments.add(attachment) + + sendCurl(slackCredantials.webhook.toString, defaultMessage("Summary report for extraction of language " + lang.name + " (" + lang.wikiCode + ")", null, attachments)) + } + + def forwardExtractionOverview(lang: Language, msg: String) : Unit ={ + if(slackCredantials == null || datasets.isEmpty) + return + val attachments = new JsonArray() + val attachment = getAttachment("The datasets extracted are:", "#439FE0") + val fields = new JsonArray() + + for(dataset <- datasets.sortBy(x => x.encoded)){ + val field = new JsonObject() + field.put("title", dataset.name) + field.put("value", dataset.versionUri) + field.put("short", false) + fields.add(field) + } + + attachment.put("fields", fields) + attachments.add(attachment) + + sendCurl(slackCredantials.webhook.toString, defaultMessage(msg, null, attachments)) + } + + def forwardSimpleLine(line: String) : Unit = + { + if(slackCredantials == null) + return + + sendCurl(slackCredantials.webhook.toString, defaultMessage(line, null)) + } + + def getAttachment(attachMsg: String, color: String): JsonObject = + { + val attachment = new JsonObject() + attachment.put("title", attachMsg) + val fields = new JsonArray() + attachment.put("fields", fields) + attachment.put("color", color) + attachment + } + + def addKeyValue(array: JsonArray, key: String, value: String): Unit = + { + val left = new JsonObject() + left.put("value", key) + left.put("short", true) + val right = new JsonObject() + right.put("value", value) + right.put("short", true) + array.add(left) + array.add(right) + } + + def defaultMessage(mainText: String, subText: String, attachments: JsonArray = null): JsonObject = + { + val data = new JsonObject() + data.put("text", mainText) + if(subText != null) + data.put("pretext", subText) + data.put("username", slackCredantials.username) + data.put("icon_emoji", ":card_index:") + + if(attachments != null) + data.put("attachments", attachments) + data + } + + def sendCurl(url: String, data: JsonObject): Boolean = + { + try { + val baos = new ByteArrayOutputStream() + JSON.write(baos, data) + val resp = Http(url).postData(new String(baos.toByteArray, Charset.defaultCharset())).asString + if (resp.code != 200) { + System.err.println(resp.body) + } + true + } + catch{ + case e : SocketTimeoutException => false + } + } + + def printMonitorSummary(summaryMap : mutable.HashMap[String, Object]) : Unit = { + val error = summaryMap.getOrElse("EXCEPTIONCOUNT","0") + val success = summaryMap.getOrElse("SUCCESSFUL", new AtomicLong(0)) + val crashed = summaryMap.getOrElse("CRASHED", "no") + val dataIDResults = summaryMap.getOrElse("DATAID", "") + var exceptionString = "" + val exceptionMap = summaryMap.getOrElse("EXCEPTIONS", mutable.HashMap[String, Int]()) + .asInstanceOf[mutable.HashMap[String,Int]] + exceptionMap.keySet.foreach(key => exceptionString += key + ": " + exceptionMap(key)) + + var errString = "" + var outString = "" + + // Summary String Building: + // Complete Statistic on Severity-Level Info + // Critical Error Statistic on Severity-Level Exception + + outString += (String.format("%-20s", "EXCEPTIONCOUNT:")+ s"$error")+ "\n" + + if(error.toString.toInt > 0) { + errString += (String.format("%-20s", "EXCEPTIONCOUNT:")+ s"$error")+ "\n" + } + + outString += String.format("%-20s", "SUCCESSFUL:") + success.asInstanceOf[AtomicLong].get() + "\n" + if(success.asInstanceOf[AtomicLong].get() == 0) + errString += String.format("%-20s", "SUCCESSFUL:") + success.asInstanceOf[AtomicLong].get()+ "\n" + + outString += String.format("%-20s", "CRASHED:") + s"$crashed"+ "\n" + if(crashed == "yes") + errString += String.format("%-20s", "CRASHED:") + s"$crashed"+ "\n" + + if(exceptionString != "") { + exceptionString = "EXCEPTIONS:\n" + exceptionString+ "\n" + errString += exceptionString + } + + var errDataid = "" + dataIDResults.toString.lines.foreach(line => { + outString += line + "\n" + if(line.startsWith("!")) errDataid += line + "\n" + }) + + if(errDataid != "") errString += "DATAID:\n" + errDataid + + outString = "\n----- ----- ----- EXTRACTION MONITOR STATISTICS ----- ----- -----\n" + outString + + "\n----- ----- ----- ----- ----- ----- ----- ----- ----- ----- -----" + printLabeledLine( outString, RecordSeverity.Info, defaultLang) + + if(errString != "") { + errString = "\n----- ----- ----- EXTRACTION MONITOR STATISTICS ----- ----- -----\n" + errString + + "\n----- ----- ----- ----- ----- ----- ----- ----- ----- ----- -----" + printLabeledLine( errString, RecordSeverity.Exception, defaultLang) + } + + } + + def getSuccessfulPageCount(): Map[Language,AtomicLong] = { + successfulPageCount + } + +} + +/** + * This class provides the necessary attributes to record either a successful or failed extraction + * + * @param page + * @param language + * @param errorMsg + * @param error + * @param logSuccessfulPage + */ +class RecordEntry2[T]( + val page: T, + val identifier: String, + val severity: RecordSeverity.Value, + val language: Language, + val errorMsg: String= null, + val error:Throwable = null, + val logSuccessfulPage:Boolean = false + ) + +class WikiPageWithRevisionsEntry(page : WikiPageWithRevisions) extends RecordEntry2[WikiPageWithRevisions]( + page = page, + identifier = page.uri, + severity = RecordSeverity.Info, + language = page.title.language +) diff --git a/history/src/main/scala/org/dbpedia/extraction/util/SparkExtractionContext2.scala b/history/src/main/scala/org/dbpedia/extraction/util/SparkExtractionContext2.scala new file mode 100644 index 0000000000..8efd3e27ef --- /dev/null +++ b/history/src/main/scala/org/dbpedia/extraction/util/SparkExtractionContext2.scala @@ -0,0 +1,14 @@ +package org.dbpedia.extraction.util + +import org.dbpedia.extraction.mappings.{Disambiguations, Redirects, Redirects2} +import org.dbpedia.extraction.ontology.Ontology + +trait SparkExtractionContext2 { + def ontology : Ontology + + def language : Language + + def redirects : Redirects2 + + def disambiguations : Disambiguations +} diff --git a/history/src/main/scala/org/dbpedia/extraction/wikiparser/RevisionNode.scala b/history/src/main/scala/org/dbpedia/extraction/wikiparser/RevisionNode.scala index 5102674dc6..2d36aabb18 100644 --- a/history/src/main/scala/org/dbpedia/extraction/wikiparser/RevisionNode.scala +++ b/history/src/main/scala/org/dbpedia/extraction/wikiparser/RevisionNode.scala @@ -21,25 +21,26 @@ import scala.xml.Elem */ class RevisionNode( val id: Long, - val parentId: Long, - val timestamp: Long, - val contributorID: Long, + val pageUri: String, + val parent_Uri: String, + val timestamp: String, + val contributorID: String, val contributorName: String, val contributorIP: String, val contributorDeleted: Boolean, val comment: String, val format: String, - val text_size: Long, - val minor_edit: Boolean + val text_size: Int, + val minor_edit: Boolean, + val text_delta: Int ) extends java.io.Serializable { + def this(id: String, pageUri:String, parent_Uri: String, timestamp: String, contributorID: String, contributorName: String, contributorIP: String, contributorDeleted: String, comment: String, format: String, text_size: String, minor_edit:String, text_delta: Int) = { - def this(id: String, parentId: String, timestamp: String, contributorID: String, contributorName: String, contributorIP: String, contributorDeleted: String, comment: String, format: String, text_size: String, minor_edit:String) = { - - this(RevisionNode.parseLong(id), RevisionNode.parseLong(parentId),parseTimestamp(timestamp), RevisionNode.parseLong(contributorID), contributorName, contributorIP, RevisionNode.parseBoolean(contributorDeleted), comment, format,RevisionNode.parseInt(text_size),RevisionNode.parseBoolean(minor_edit)) + this(RevisionNode.parseLong(id), pageUri, parent_Uri,timestamp, contributorID, contributorName, contributorIP, RevisionNode.parseBoolean(contributorDeleted), comment, format,RevisionNode.parseInt(text_size),RevisionNode.parseBoolean(minor_edit),text_delta) } } diff --git a/history/src/main/scala/org/dbpedia/extraction/wikiparser/WikiPageWithRevisions.scala b/history/src/main/scala/org/dbpedia/extraction/wikiparser/WikiPageWithRevisions.scala index 7702b8c02d..19b36193bc 100644 --- a/history/src/main/scala/org/dbpedia/extraction/wikiparser/WikiPageWithRevisions.scala +++ b/history/src/main/scala/org/dbpedia/extraction/wikiparser/WikiPageWithRevisions.scala @@ -1,7 +1,9 @@ package org.dbpedia.extraction.wikiparser -import org.dbpedia.extraction.util.{RecordEntry, RecordSeverity} +import org.dbpedia.extraction.util.{RecordEntry2, RecordSeverity} import org.dbpedia.extraction.util.StringUtils._ +import org.dbpedia.extraction.wikiparser.impl.simple.SimpleWikiParser + import java.util import scala.collection.mutable import scala.collection.mutable.ListBuffer @@ -10,7 +12,7 @@ import scala.collection.JavaConverters._ * Represents a wiki page * * TODO: use redirect id to check redirect extractor. Or get rid of redirect extractor. - * + * * @param title The title of this page * @param id The page ID * @param revision The revision of this page @@ -21,19 +23,37 @@ import scala.collection.JavaConverters._ * @param format e.g. "text/x-wiki" */ class WikiPageWithRevisions( - title: WikiTitle, - redirect: WikiTitle, - id: Long, - revision: Long, - timestamp: Long, - contributorID: Long, - contributorName: String, - source: String, - format: String, + val title: WikiTitle, + val redirect: WikiTitle, + val id: Long, + val revision: Long, + val timestamp: Long, + val contributorID: Long, + val contributorName: String, + val source: String, + val format: String, val revisions: List[RevisionNode] - ) extends WikiPage (title,redirect, id, revision,timestamp,contributorID, contributorName, source, format) + ) extends java.io.Serializable { - private val extractionRecords = ListBuffer[RecordEntry[WikiPageWithRevisions]]() + private val extractionRecords = ListBuffer[RecordEntry2[WikiPageWithRevisions]]() + + + lazy val pageNode: Option[PageNode] = SimpleWikiParser(WikiPageWithRevisions.convertToWikiPage(this)) + + def uri: String = this.title.language.resourceUri.append(this.title.decodedWithNamespace) + + def isRedirect: Boolean = SimpleWikiParser.getRedirectPattern(title.language).findFirstMatchIn(this.source) match { + case Some(x) => true + case None => false + } + + private var isRetryy = false + + def toggleRetry(): Unit = { + this.isRetryy = !this.isRetryy + } + + def isRetry: Boolean = this.isRetryy def this(title: WikiTitle, source: String) = this(title, null, -1, -1, -1, 0, "", source, "", List[RevisionNode]()) @@ -41,14 +61,33 @@ class WikiPageWithRevisions( def this(title: WikiTitle, redirect: WikiTitle, id: String, revision: String, timestamp: String, contributorID: String, contributorName: String, source: String, format: String,revisions: List[RevisionNode]) = this(title, redirect, WikiPage.parseLong(id), WikiPage.parseLong(revision), parseTimestamp(timestamp), WikiPage.parseLong(contributorID), contributorName, source, format,revisions) + def this(title: WikiTitle, redirect: WikiTitle, id: String, revision: String, timestamp: String, contributorID: String, contributorName: String, source: String, format: String) = + this(title, redirect, WikiPage.parseLong(id), WikiPage.parseLong(revision), parseTimestamp(timestamp), WikiPage.parseLong(contributorID), contributorName, source, format, List[RevisionNode]()) def this(title: WikiTitle, redirect: WikiTitle, id: String, revision: String, timestamp: String, contributorID: String, contributorName: String, source: String, format: String, revisions: util.ArrayList[RevisionNode]) = this(title, redirect, WikiPage.parseLong(id), WikiPage.parseLong(revision), parseTimestamp(timestamp), WikiPage.parseLong(contributorID), contributorName, source, format, WikiPageWithRevisions.convertJavaListRevision(revisions)) + def addExtractionRecord(RecordEntry2: RecordEntry2[WikiPageWithRevisions]): Unit = { + println("addExtractionRecord") + val severity = if (RecordEntry2.severity != null) + RecordEntry2.severity + else if ((RecordEntry2.errorMsg == null || RecordEntry2.errorMsg.trim.length == 0) && RecordEntry2.error == null) + RecordSeverity.Info + else if (RecordEntry2.error != null) + RecordSeverity.Exception + else + RecordSeverity.Warning + extractionRecords.append(new RecordEntry2(RecordEntry2.page, RecordEntry2.page.uri, severity, RecordEntry2.page.title.language, RecordEntry2.errorMsg, RecordEntry2.error)) + } + def addExtractionRecord(errorMsg: String = null, error: Throwable = null, severity: RecordSeverity.Value = null): Unit = { + addExtractionRecord(new RecordEntry2[WikiPageWithRevisions](this, this.uri, severity, this.title.language, errorMsg, error)) + } + def getExtractionRecords(): mutable.Seq[RecordEntry2[WikiPageWithRevisions]] = this.extractionRecords.seq override def toString: String = "WikiPageWithRevision(" + title + "," + id + ", with " + revisions.size+ "revisions )" + lazy val sourceIri = title.pageIri + "?" + (if (revision >= 0) "oldid=" + revision + "&" else "") + "ns=" + title.namespace.code } @@ -57,8 +96,11 @@ object WikiPageWithRevisions { def convertJavaListRevision(myJavaList: util.ArrayList[RevisionNode]): List[RevisionNode] = { myJavaList.asScala.toList - //.map(x => new RevisionNode(x)) + //.map(x => new RevisionNode(x)) } + def convertToWikiPage(wpr: WikiPageWithRevisions): WikiPage = { + new WikiPage(wpr.title,wpr.redirect,wpr.id,wpr.revision,wpr.timestamp,wpr.source) + } } diff --git a/history/src/test/resources/extraction-configs/extraction.config.properties b/history/src/test/resources/extraction-configs/extraction.config.properties index 341c8d2478..13deedca97 100644 --- a/history/src/test/resources/extraction-configs/extraction.config.properties +++ b/history/src/test/resources/extraction-configs/extraction.config.properties @@ -1,6 +1,6 @@ # download and extraction target dir #base-dir= moved to $extraction-framework/core/src/main/resources/universal.properties -base-dir=/home/cringwal/Desktop/GSOC/extraction-framework/history/sample-xml-dump +base-dir=/home/cringwal/Desktop/DBpediaHistory/extraction-framework/history/sample-xml-dump # Source file. If source file name ends with .gz or .bz2, it is unzipped on the fly. # Must exist in the directory xxwiki/yyyymmdd and have the prefix xxwiki-yyyymmdd- diff --git a/history/src/test/scala/org/dbpedia/extraction/dump/extract/ExtractionTest.scala b/history/src/test/scala/org/dbpedia/extraction/dump/extract/ExtractionTest.scala index 0df05affa9..ea563b2dce 100644 --- a/history/src/test/scala/org/dbpedia/extraction/dump/extract/ExtractionTest.scala +++ b/history/src/test/scala/org/dbpedia/extraction/dump/extract/ExtractionTest.scala @@ -3,7 +3,7 @@ package org.dbpedia.extraction.dump import java.io.File import java.util.concurrent.ConcurrentLinkedQueue import org.apache.commons.io.FileUtils -import org.dbpedia.extraction.config.Config +import org.dbpedia.extraction.config.Config2 import org.dbpedia.extraction.dump.extract.ConfigLoader2 import org.scalatest.{BeforeAndAfterAll, DoNotDiscover, FunSuite, Tag} @@ -15,39 +15,28 @@ object HistoTestTag extends Tag("HistoricTest") class ExtractionTest extends FunSuite { test("test Historic extraction", HistoTestTag) { - val jobsRunning = new ConcurrentLinkedQueue[Future[Unit]]() - + val jobsRunning = new ConcurrentLinkedQueue[Future[Unit]]()// val classLoader: ClassLoader = getClass.getClassLoader - - val histoConfig = new Config(classLoader.getResource("extraction-configs/extraction.config.properties").getFile) - println("BEFORE") + val histoConfig = new Config2(classLoader.getResource("extraction-configs/extraction.config.properties").getFile) + println(classLoader.getResource("extraction-configs/extraction.config.properties").getFile.toString) + println("BEFORE EXTRACT") extract(histoConfig, jobsRunning) - println("AFTER") + println("AFTER EXTRACT") } - def extract(config: Config, jobsRunning: ConcurrentLinkedQueue[Future[Unit]]): Unit = { + def extract(config: Config2, jobsRunning: ConcurrentLinkedQueue[Future[Unit]]): Unit = { val configLoader = new ConfigLoader2(config) - val parallelProcesses = if (config.runJobsInParallel) config.parallelProcesses else 1 + val jobs = configLoader.getExtractionJobs + println(">>>>>>>>> EXTRACT - NBJOBS > " + jobs.size) + println("LAUNCH JOBS") + for (job <- jobs) { + job.run() + } + while (jobsRunning.size() > 0) { - //Execute the extraction jobs one by one - for (job <- configLoader.getExtractionJobs) { - while (jobsRunning.size() >= parallelProcesses) { Thread.sleep(1000) } - val future = Future { - job.run() - } - jobsRunning.add(future) - future.onComplete { - case Failure(f) => throw f - case Success(_) => jobsRunning.remove(future) - } - } - - while (jobsRunning.size() > 0) { - Thread.sleep(1000) - } - jobsRunning.clear() + jobsRunning.clear() } } \ No newline at end of file From 9f870bb962a1283c62b496cd9bfb292726163e09 Mon Sep 17 00:00:00 2001 From: celian_ringwald Date: Tue, 6 Dec 2022 15:13:12 +0100 Subject: [PATCH 29/54] ADD final version of History prototype --- .../main/resources/datasetdefinitions.json | 7 ++ .../config/provenance/DBpediaDatasets.scala | 1 + history/ReadMe.md | 51 ++++++++++ history/extraction.properties | 8 +- .../sources/WikipediaDumpParserHistory.java | 37 +------ .../mappings/HistoryPageExtractor.scala | 99 ++++++++----------- .../mappings/HistoryStatsExtractor.scala | 84 ++++++++++++++++ .../extraction/mappings/RevisionNode.scala | 14 +-- .../util/DumpExtractionContext2.scala | 1 - .../extraction/wikiparser/RevisionNode.scala | 47 ++++----- .../wikiparser/WikiPageWithRevisions.scala | 32 +++++- 11 files changed, 257 insertions(+), 124 deletions(-) create mode 100644 history/ReadMe.md create mode 100644 history/src/main/scala/org/dbpedia/extraction/mappings/HistoryStatsExtractor.scala diff --git a/core/src/main/resources/datasetdefinitions.json b/core/src/main/resources/datasetdefinitions.json index a1d0d83ce0..e93917a858 100644 --- a/core/src/main/resources/datasetdefinitions.json +++ b/core/src/main/resources/datasetdefinitions.json @@ -633,7 +633,14 @@ "traits":"LinkedData, Published", "desc": "All data related to history", "defaultgraph": "dataset" + }, + "history_stats": { + "name": "History Stats", + "traits":"LinkedData, Published", + "desc": "Statistics related to edition statistics", + "defaultgraph": "dataset" } + } } diff --git a/core/src/main/scala/org/dbpedia/extraction/config/provenance/DBpediaDatasets.scala b/core/src/main/scala/org/dbpedia/extraction/config/provenance/DBpediaDatasets.scala index 91bc5ef0a5..0d9d32e263 100644 --- a/core/src/main/scala/org/dbpedia/extraction/config/provenance/DBpediaDatasets.scala +++ b/core/src/main/scala/org/dbpedia/extraction/config/provenance/DBpediaDatasets.scala @@ -283,6 +283,7 @@ object DBpediaDatasets extends java.io.Serializable * */ val HistoryData: Dataset = datasets("history_dataset") + val HistoryStats: Dataset = datasets("history_stats") /** * misc diff --git a/history/ReadMe.md b/history/ReadMe.md new file mode 100644 index 0000000000..78b9907e73 --- /dev/null +++ b/history/ReadMe.md @@ -0,0 +1,51 @@ +# DBPEDIA HISTORY + +DBpedia History allows to extract into a RDF format the history of Wikipedia chapter + + +## Previous work + +This DBpedia App is a scala/java version of the first work conducted by the French Chapter : https://github.com/dbpedia/Historic/ + +Fabien Gandon, Raphael Boyer, Olivier Corby, Alexandre Monnin. Wikipedia editing history in DBpedia : extracting and publishing the encyclopedia editing activity as linked data. IEEE/WIC/ACM International Joint Conference on Web Intelligence (WI' 16), Oct 2016, Omaha, United States. +https://hal.inria.fr/hal-01359575 + +Fabien Gandon, Raphael Boyer, Olivier Corby, Alexandre Monnin. Materializing the editing history of Wikipedia as linked data in DBpedia. ISWC 2016 - 15th International Semantic Web Conference, Oct 2016, Kobe, Japan. . +https://hal.inria.fr/hal-01359583 + +## A first working prototype + +This prototype is not optimized, during its development of it we were faced with the WikiPage type checking constraints that are checked in almost every module of the DBpedia pipeline. +We hardly copy/paste and renamed all the classes and objects we needed for running the extractors. +This conception could be easily improved by making WikiPage and WikiPageWithRevision objects inherit from the same abstract object. +But as a first step, we wanted to touch the less possible DBpedia core module. + +Some other improvements that could be conducted: +* Scala version +* Being able to use a historic namespace taking into account the DBpedia chapter language +* Being able to follow if a revision impacts an infobox content + +## Main Class + +* [WikipediaDumpParserHistory.java](src/main/java/org/dbpedia/extraction/sources/WikipediaDumpParserHistory.java) : for parsing of the history dumps +* [RevisionNode.scala](src/main/scala/org/dbpedia/extraction/wikiparser/RevisionNode.scala) : define revision node object +* [WikiPageWithRevision](src/main/scala/org/dbpedia/extraction/wikiparser/WikiPageWithRevisions.scala) : define wikipage with revision list object + +## Extractors + +* [HistoryPageExtractor.scala](src/main/scala/org/dbpedia/extraction/mappings/HistoryPageExtractor.scala): Extract all the revision of every wikipedia pages +* [HistoryStatsExtractor.scala](src/main/scala/org/dbpedia/extraction/mappings/HistoryStatsExtractor.scala) : Extract statistics about the revision activity for every page of Wikipedia + +## How to run it ? + +### Download + +* configure the [download.properties](download.properties) file +* and run ```../run download download.properties``` + +### Extraction + +* configure the [extraction.properties](extraction.properties) file +* and run ```../run run extraction.properties``` + +* Test it with : mvn test (need to have a containing file frwiki-[YYYYMMDD]-download-complete empty flag file into the base-dir defined into the extraction-properties file ) \ No newline at end of file diff --git a/history/extraction.properties b/history/extraction.properties index 7500ad4db4..cf44bf5d8d 100644 --- a/history/extraction.properties +++ b/history/extraction.properties @@ -1,6 +1,6 @@ # download and extraction target dir #base-dir= moved to $extraction-framework/core/src/main/resources/universal.properties -base-dir=/home/cringwal/Desktop/GSOC/extraction-framework/history/sample-xml-dump +base-dir=/user/cringwal/home/Desktop/DBpediaHistory/extraction-framework/history/sample-xml-dump # Source file. If source file name ends with .gz or .bz2, it is unzipped on the fly. # Must exist in the directory xxwiki/yyyymmdd and have the prefix xxwiki-yyyymmdd- @@ -11,15 +11,15 @@ base-dir=/home/cringwal/Desktop/GSOC/extraction-framework/history/sample-xml-dum source=pages-articles.xml # use only directories that contain a 'download-complete' file? Default is false. -require-download-complete=true +require-download-complete=false # List of languages or article count ranges, e.g. 'en,de,fr' or '10000-20000' or '10000-', or '@mappings' languages=fr # extractor class names starting with "." are prefixed by "org.dbpedia.extraction.mappings" -extractors=.HistoryPageExtractor -extractors.fr=.HistoryPageExtractor +extractors=.HistoryPageExtractor,.HistoryStatsExtractor +extractors.fr=.HistoryPageExtractor,.HistoryStatsExtractor # If we need to Exclude Non-Free Images in this Extraction, set this to true copyrightCheck=false diff --git a/history/src/main/java/org/dbpedia/extraction/sources/WikipediaDumpParserHistory.java b/history/src/main/java/org/dbpedia/extraction/sources/WikipediaDumpParserHistory.java index dd1d9a6d7e..bb6e018409 100644 --- a/history/src/main/java/org/dbpedia/extraction/sources/WikipediaDumpParserHistory.java +++ b/history/src/main/java/org/dbpedia/extraction/sources/WikipediaDumpParserHistory.java @@ -1,6 +1,5 @@ package org.dbpedia.extraction.sources; -import org.apache.jena.base.Sys; import org.dbpedia.extraction.util.Language; import org.dbpedia.extraction.util.RecordSeverity; import org.dbpedia.extraction.wikiparser.*; @@ -274,7 +273,7 @@ private void readPage() } //Read page - WikiPageWithRevisions page = null; + WikiPageWithRevisions page; WikiTitle redirect = null; System.out.println("> PAGE TITLE : "+title); @@ -301,7 +300,7 @@ private void readPage() else if (isStartElement(REVISION_ELEM)) { - RevisionNode current_revision= null; + RevisionNode current_revision; current_revision= readRevision(title, redirect, pageId,last_size); RevisionList.add(current_revision); @@ -317,7 +316,7 @@ else if (isStartElement(REVISION_ELEM)) } page = new WikiPageWithRevisions(title, redirect, pageId, "", "", "", "", "", "",RevisionList); - System.out.println(page); + if (page != null) { for(Tuple3 record : records){ @@ -368,7 +367,6 @@ private RevisionNode readRevision(WikiTitle title, WikiTitle redirect, String pa String deleted = _reader.getAttributeValue(null, "bytes"); text_size = _reader.getAttributeValue(null, "bytes"); text_delta = Integer.parseInt(text_size) - last_size; - //System.out.println(text_size); skipElement(null, false); // now at @@ -376,40 +374,29 @@ private RevisionNode readRevision(WikiTitle title, WikiTitle redirect, String pa else if (isStartElement(TIMESTAMP_ELEM)) { timestamp = readString(TIMESTAMP_ELEM, false); - //System.out.println(">timestamp : "+timestamp); // now at } else if (isStartElement(REVISION_ID)) { revision_id = readString(REVISION_ID, false); - //System.out.println(">revision_id : "+revision_id); - // now at } else if (isStartElement(REVISION_PARENT_ID)) { parent_id = readString(REVISION_PARENT_ID, false); - //System.out.println(">parent_id : "+parent_id); - // now at } else if (isStartElement(REVISION_COMMENT)) { comment = readString(REVISION_COMMENT, false); - //System.out.println(">comment : "+comment); - // now at }else if ( isStartElement(REVISION_MINOR_UPDATE)) { minor_edit = "true"; - //System.out.println(">minor_edit : "+minor_edit); - skipElement(null, false); - - // now at } else if (isStartElement(CONTRIBUTOR_ELEM)) @@ -419,7 +406,6 @@ else if (isStartElement(CONTRIBUTOR_ELEM)) String deleted = _reader.getAttributeValue(null, "deleted"); if (deleted != null && deleted.equals("deleted")) { contributorDeleted = "true"; - //System.out.println(">contributorDeleted : "+contributorDeleted); nextTag(); } else { // now at , move to next tag @@ -427,35 +413,27 @@ else if (isStartElement(CONTRIBUTOR_ELEM)) // now should have ip / (author & id), when ip is present we don't have author / id // TODO Create a getElementName function to make this cleaner if (isStartElement(CONTRIBUTOR_IP)) { - // System.out.println(">contributor CASE 0"); contributorIP = readString(CONTRIBUTOR_IP, false); - // System.out.println(">contributorIP : "+contributorIP); } else { // usually we have contributor name first but we have to check if (isStartElement(CONTRIBUTOR_NAME)) { - // System.out.println(">contributor CASE 1"); contributorName = readString(CONTRIBUTOR_NAME, false); nextTag(); - // System.out.println(">contributorName : "+contributorName); if (isStartElement(CONTRIBUTOR_ID)) contributorID = readString(CONTRIBUTOR_ID, false); - // System.out.println(">contributorID : "+contributorID); } else { // when contributor ID is first if (isStartElement(CONTRIBUTOR_ID)) { - // System.out.println(">contributor CASE 2"); contributorID = readString(CONTRIBUTOR_ID, false); - // System.out.println(">contributorID : "+contributorID); nextTag(); if (isStartElement(CONTRIBUTOR_NAME)) contributorName = readString(CONTRIBUTOR_NAME, false); - // System.out.println(">contributorName : "+contributorName); } } } @@ -465,7 +443,6 @@ else if (isStartElement(CONTRIBUTOR_ELEM)) } else if (isStartElement(FORMAT_ELEM)) { format = readString(FORMAT_ELEM, false); - // System.out.println(">format : "+format); // now at } else { @@ -473,20 +450,14 @@ else if (isStartElement(FORMAT_ELEM)) { /// skip all other elements, don't care about the name, don't skip end tag skipElement(null, false); } - //System.out.println("LOOP END"); } - //System.out.println("AFTER LOOP "); requireEndElement(REVISION_ELEM); - // System.out.println(">> End readRevision "); // now at String pageUri=title.pageIri() + "?" + "oldid=" + revision_id + "&" + "ns=" + title.namespace().code(); String parent_Uri=title.pageIri() + "?" + "oldid=" + parent_id + "&" + "ns=" + title.namespace().code(); - System.out.println("========================="); - System.out.println(pageUri); - System.out.println("========================="); - return new RevisionNode(revision_id,pageUri,parent_Uri,timestamp,contributorID,contributorName,contributorIP,contributorDeleted,comment,format,text_size,minor_edit,text_delta); + return new RevisionNode(revision_id,pageUri,parent_Uri,timestamp,contributorID,contributorName,contributorIP,contributorDeleted,comment,text_size,minor_edit,text_delta); } /* Methods for low-level work. Ideally, only these methods would access _reader while the diff --git a/history/src/main/scala/org/dbpedia/extraction/mappings/HistoryPageExtractor.scala b/history/src/main/scala/org/dbpedia/extraction/mappings/HistoryPageExtractor.scala index 349dc8217a..9ba69032b6 100644 --- a/history/src/main/scala/org/dbpedia/extraction/mappings/HistoryPageExtractor.scala +++ b/history/src/main/scala/org/dbpedia/extraction/mappings/HistoryPageExtractor.scala @@ -1,8 +1,7 @@ package org.dbpedia.extraction.mappings -import java.net.URL -import org.dbpedia.extraction.config.provenance.{DBpediaDatasets, Dataset} -import org.dbpedia.extraction.ontology.{Ontology, OntologyProperty} +import org.dbpedia.extraction.config.provenance.DBpediaDatasets +import org.dbpedia.extraction.ontology.Ontology import org.dbpedia.extraction.transform.{Quad, QuadBuilder} import org.dbpedia.extraction.util.Language import org.dbpedia.extraction.wikiparser._ @@ -13,90 +12,78 @@ import scala.language.reflectiveCalls class HistoryPageExtractor( - context : { - def ontology: Ontology - def language: Language - } -) + context : { + def ontology: Ontology + def language: Language + } + ) extends WikiPageWithRevisionsExtractor { - - //PageNodeExtractor? WikiPageExtractor ? - private val subjectOntProperty = context.ontology.properties("dc:subject") + // PROP FROM ONTOLOGY private val typeOntProperty = context.ontology.properties("rdf:type") - private val featureOntClass = context.ontology.classes("prov:Revision") private val wikiPageRevisionIdProperty = context.ontology.properties("wikiPageRevisionID") private val foafNick = context.ontology.properties("foaf:nick") - - val wikiPageLengthProperty = context.ontology.properties("wikiPageLength") - val nonNegativeInteger = context.ontology.datatypes("xsd:nonNegativeInteger") - - // PROPERTIES TO ADD INTO THE ONTOLOGY - private val Entityclass = "http://www.w3.org/ns/prov#Entity" - private val derivedFromProperty = "http://www.w3.org/ns/prov#wasDerivedFrom" - private val quadpropderivedFromProperty = QuadBuilder.stringPredicate(context.language, DBpediaDatasets.HistoryData, derivedFromProperty, null) _ + private val minorRevProperty = context.ontology.properties("isMinorRevision") + private val wikiPageLengthDeltaProperty = context.ontology.properties("wikiPageLengthDelta") + private val wikiPageLengthProperty = context.ontology.properties("wikiPageLength") + private val nonNegativeInteger = context.ontology.datatypes("xsd:nonNegativeInteger") + + // PROPERTIES NOT IN THE ONTOLOGY + private val entityClass = "http://www.w3.org/ns/prov#Entity" + private val revisionClass = "http://www.w3.org/ns/prov#Revision" private val propQualifRevision = "http://www.w3.org/ns/prov#qualifiedRevision" - private val quadpropQualifRevision = QuadBuilder.stringPredicate(context.language, DBpediaDatasets.HistoryData, propQualifRevision, null) _ + private val quadPropQualifRevision = QuadBuilder.stringPredicate(context.language, DBpediaDatasets.HistoryData, propQualifRevision, null) _ private val propCreated = "http://purl.org/dc/terms/created" - private val quadpropCreated = QuadBuilder.stringPredicate(context.language, DBpediaDatasets.HistoryData, propCreated, context.ontology.datatypes("xsd:dateTime")) _ - private val propwasRevisionOf = "http://www.w3.org/ns/prov#wasRevisionOf" - private val quadpropwasRevisionOf = QuadBuilder.stringPredicate(context.language, DBpediaDatasets.HistoryData, propwasRevisionOf, null) _ + private val quadPropCreated = QuadBuilder.stringPredicate(context.language, DBpediaDatasets.HistoryData, propCreated, context.ontology.datatypes("xsd:dateTime")) _ + private val propWasRevisionOf = "http://www.w3.org/ns/prov#wasRevisionOf" + private val quadPropWasRevisionOf = QuadBuilder.stringPredicate(context.language, DBpediaDatasets.HistoryData, propWasRevisionOf, null) _ private val propCreator = "http://purl.org/dc/terms/creator" - private val quadpropCreator = QuadBuilder.stringPredicate(context.language, DBpediaDatasets.HistoryData, propCreator, null) _ - private val propsciorid= "http://rdfs.org/sioc/ns#id" - private val quadpropsciorid = QuadBuilder.stringPredicate(context.language, DBpediaDatasets.HistoryData, propsciorid, context.ontology.datatypes("xsd:string")) _ - private val propsciorip = "http://rdfs.org/sioc/ns#ip_address" - private val quadpropsciorip = QuadBuilder.stringPredicate(context.language, DBpediaDatasets.HistoryData, propsciorip, context.ontology.datatypes("xsd:string")) _ - private val propsciornote = "http://rdfs.org/sioc/ns#note" - private val quadpropsciocnote = QuadBuilder.stringPredicate(context.language, DBpediaDatasets.HistoryData, propsciornote, context.ontology.datatypes("xsd:string")) _ + private val quadPropCreator = QuadBuilder.stringPredicate(context.language, DBpediaDatasets.HistoryData, propCreator, null) _ + private val propSiocId= "http://rdfs.org/sioc/ns#id" + private val quadPropSiocId = QuadBuilder.stringPredicate(context.language, DBpediaDatasets.HistoryData, propSiocId, context.ontology.datatypes("xsd:string")) _ + private val propPropSiocIp = "http://rdfs.org/sioc/ns#ip_address" + private val quadPropPropSiocIp = QuadBuilder.stringPredicate(context.language, DBpediaDatasets.HistoryData, propPropSiocIp, context.ontology.datatypes("xsd:string")) _ + private val propSiocNote = "http://rdfs.org/sioc/ns#note" + private val quadPropSiocNote = QuadBuilder.stringPredicate(context.language, DBpediaDatasets.HistoryData, propSiocNote, context.ontology.datatypes("xsd:string")) _ - - override val datasets = Set(DBpediaDatasets.HistoryData) //# ToADD + override val datasets = Set(DBpediaDatasets.HistoryData) override def extract(page: WikiPageWithRevisions , subjectUri: String): Seq[Quad] = { - println("xxxxxxxxxxxxxx HISTORY EXTRACTOR xxxxxxxxxxxxxxxxx") val quads = new ArrayBuffer[Quad]() var rev_index=0; - quads += new Quad(context.language, DBpediaDatasets.HistoryData, page.title.pageIri, typeOntProperty, Entityclass, page.sourceIri) - // TODO : ADD STATS TO REVISION NODE CLASS FOR - // uniqueContributorNb - // dbfr:revPerYear - // dbfr:revPerMonth - // averageSizePerYear - // averageSizePerMonth - + quads += new Quad(context.language, DBpediaDatasets.HistoryData, page.title.pageIri, typeOntProperty, entityClass, page.sourceIri) + //// CONTENT OF HISTORY page.revisions.foreach(revision => { - quads += new Quad(context.language, DBpediaDatasets.HistoryData, page.title.pageIri, typeOntProperty, Entityclass, page.sourceIri) - quads += quadpropQualifRevision(page.title.pageIri, revision.pageUri, page.sourceIri) // NOT 100% SUR OF IT + quads += new Quad(context.language, DBpediaDatasets.HistoryData,revision.pageUri, typeOntProperty, revisionClass, page.sourceIri) + quads += quadPropQualifRevision(page.title.pageIri, revision.pageUri, page.sourceIri) // NOT 100% SUR OF IT quads += new Quad(context.language, DBpediaDatasets.HistoryData, revision.pageUri, wikiPageRevisionIdProperty,revision.id.toString, page.sourceIri, context.ontology.datatypes("xsd:integer")) - quads += quadpropCreated(revision.pageUri, revision.timestamp, page.sourceIri) - quads += quadpropwasRevisionOf(revision.pageUri, revision.parent_Uri, page.sourceIri) + quads += quadPropCreated(revision.pageUri, revision.timestamp, page.sourceIri) + quads += quadPropWasRevisionOf(revision.pageUri, revision.parent_Uri, page.sourceIri) - //// CREATOR - var bn_propCreator=subjectUri+"__creator__"+rev_index - quads += quadpropCreator(revision.pageUri, bn_propCreator, page.sourceIri) + //// CREATOR ID based on getUserIdAll function that give unique ID based on what data is available about the user + val bn_propCreator=subjectUri+"__creator__"+revision.getUserIDAlt + quads += quadPropCreator(revision.pageUri, bn_propCreator, page.sourceIri) if(revision.contributorID != ""){ - quads += quadpropsciorid(bn_propCreator,revision.contributorID , page.sourceIri) + quads += quadPropSiocId(bn_propCreator,revision.contributorID , page.sourceIri) } if (revision.contributorIP != "") { - quads += quadpropsciorip(bn_propCreator, revision.contributorIP, page.sourceIri) + quads += quadPropPropSiocIp(bn_propCreator, revision.contributorIP, page.sourceIri) } if (revision.contributorName != "") { quads += new Quad(context.language, DBpediaDatasets.HistoryData, bn_propCreator, foafNick, revision.contributorName, page.sourceIri) } if (revision.comment != "") { - quads += quadpropsciocnote(revision.pageUri,revision.comment, page.sourceIri) + quads += quadPropSiocNote(revision.pageUri,revision.comment, page.sourceIri) } quads += new Quad(context.language, DBpediaDatasets.HistoryData, revision.pageUri, wikiPageLengthProperty, revision.text_size.toString, page.sourceIri, nonNegativeInteger) + quads += new Quad(context.language, DBpediaDatasets.HistoryData, revision.pageUri, wikiPageLengthDeltaProperty, revision.text_delta.toString, page.sourceIri, context.ontology.datatypes("xsd:integer")) + quads += new Quad(context.language, DBpediaDatasets.HistoryData, revision.pageUri, minorRevProperty, revision.minor_edit.toString, page.sourceIri, context.ontology.datatypes("xsd:boolean")) // TODO : CREATE OR FIND PROP FOR : - // revision.contributorDeleted - // revision.minor_edit - // revision.text_delta - + // revision.contributorDeleted ov:DeletedEntry ? rev_index+=1 }) diff --git a/history/src/main/scala/org/dbpedia/extraction/mappings/HistoryStatsExtractor.scala b/history/src/main/scala/org/dbpedia/extraction/mappings/HistoryStatsExtractor.scala new file mode 100644 index 0000000000..b378976ff3 --- /dev/null +++ b/history/src/main/scala/org/dbpedia/extraction/mappings/HistoryStatsExtractor.scala @@ -0,0 +1,84 @@ +package org.dbpedia.extraction.mappings + +import org.dbpedia.extraction.config.provenance.DBpediaDatasets +import org.dbpedia.extraction.ontology.Ontology +import org.dbpedia.extraction.transform.{Quad, QuadBuilder} +import org.dbpedia.extraction.util.Language +import org.dbpedia.extraction.wikiparser._ + +import scala.collection.mutable.ArrayBuffer +import scala.language.reflectiveCalls + + + +class HistoryStatsExtractor( + context : { + def ontology: Ontology + def language: Language + } + ) + extends WikiPageWithRevisionsExtractor { + // PROP FROM ONTOLOGY + private val nbUniqueContribProperty = context.ontology.properties("nbUniqueContrib") + private val avgRevSizePerMonthProperty = context.ontology.properties("avgRevSizePerMonth") + private val avgRevSizePerYearProperty = context.ontology.properties("avgRevSizePerYear") + private val nbRevPerYearProperty = context.ontology.properties("nbRevPerYear") + private val NbRevPerMonthProperty = context.ontology.properties("nbRevPerMonth") + + // PROPERTIES NOT IN THE ONTOLOGY + private val propDate = "http://purl.org/dc/elements/1.1/date" + private val quadPropDate = QuadBuilder.stringPredicate(context.language, DBpediaDatasets.HistoryStats, propDate, context.ontology.datatypes("xsd:date")) _ + private val propValue = "http://www.w3.org/1999/02/22-rdf-syntax-ns#value" + private val quadPropValue = QuadBuilder.stringPredicate(context.language, DBpediaDatasets.HistoryStats, propValue, context.ontology.datatypes("xsd:integer")) _ + + + + override val datasets = Set(DBpediaDatasets.HistoryStats) //# ToADD + + + override def extract(page: WikiPageWithRevisions , subjectUri: String): Seq[Quad] = { + + + val quads = new ArrayBuffer[Quad]() + quads += new Quad(context.language, DBpediaDatasets.HistoryStats, page.title.pageIri, nbUniqueContribProperty, page.getUniqueContributors.toString, page.sourceIri, context.ontology.datatypes("xsd:integer")) + + page.getRevPerYear foreach { + case (key, value) => + val bn_nbRevPerYear = subjectUri + "__nbRevPerYear__"+key + quads += new Quad(context.language, DBpediaDatasets.HistoryStats, page.title.pageIri, nbRevPerYearProperty, bn_nbRevPerYear, page.sourceIri, context.ontology.datatypes("xsd:integer")) + quads += quadPropDate(bn_nbRevPerYear, key, page.sourceIri) + quads += quadPropValue(bn_nbRevPerYear, value.toString, page.sourceIri) + + } + page.getRevPerYearMonth foreach { + case (key, value) => + val bn_nbRevPerMonth = subjectUri + "__nbRevPerMonth__"+key + quads += new Quad(context.language, DBpediaDatasets.HistoryStats, page.title.pageIri, NbRevPerMonthProperty, bn_nbRevPerMonth, page.sourceIri, context.ontology.datatypes("xsd:integer")) + quads += quadPropDate(bn_nbRevPerMonth, key, page.sourceIri) + quads += quadPropValue(bn_nbRevPerMonth, value.toString, page.sourceIri) + + } + page.getRevPerYearAvgSize foreach { + case (key, value) => + val bn_revPerYearAvgSize = subjectUri + "__revPerYearAvgSize__"+key + quads += new Quad(context.language, DBpediaDatasets.HistoryStats, page.title.pageIri, avgRevSizePerYearProperty, bn_revPerYearAvgSize, page.sourceIri, context.ontology.datatypes("xsd:integer")) + quads += quadPropDate(bn_revPerYearAvgSize, key, page.sourceIri) + quads += quadPropValue(bn_revPerYearAvgSize, value.toString, page.sourceIri) + } + page.getRevPerYearMonthAvgSize foreach { + case (key, value) => + + val bn_revPerMonthAvgSize = subjectUri + "__revPerMonthAvgSize__"+key + quads += new Quad(context.language, DBpediaDatasets.HistoryStats, page.title.pageIri, avgRevSizePerMonthProperty, bn_revPerMonthAvgSize, page.sourceIri, context.ontology.datatypes("xsd:integer")) + quads += quadPropDate(bn_revPerMonthAvgSize, key, page.sourceIri) + quads += quadPropValue(bn_revPerMonthAvgSize, value.toString, page.sourceIri) + + } + + + + quads + } + + +} diff --git a/history/src/main/scala/org/dbpedia/extraction/mappings/RevisionNode.scala b/history/src/main/scala/org/dbpedia/extraction/mappings/RevisionNode.scala index 7dea09556c..f7a058a62d 100644 --- a/history/src/main/scala/org/dbpedia/extraction/mappings/RevisionNode.scala +++ b/history/src/main/scala/org/dbpedia/extraction/mappings/RevisionNode.scala @@ -1,17 +1,18 @@ package org.dbpedia.extraction.mappings -import org.dbpedia.extraction.util.Language import org.dbpedia.extraction.wikiparser.Node /** * Represents a page. * - * @param title The title of this page * @param id The page ID - * @param revision The revision of this page + * @param parentId Id the the parent revision * @param timestamp The timestamp of the revision, in milliseconds since 1970-01-01 00:00:00 UTC - * @param contributorID The ID of the latest contributor - * @param contributorName The name of the latest contributor - * @param children The contents of this page + * @param contributorID The ID of the contributor + * @param contributorName The name of the contributor + * @param contributorIP IP of the contributor + * @param comment The revision comment added by the contributor + * @param text_size Size of the revision content + * @param minor_edit Flag if revision is minor */ class RevisionNode( val id: Long, @@ -35,4 +36,5 @@ class RevisionNode( && otherRevisionNode.contributorID == contributorID && otherRevisionNode.contributorName == contributorName ) case _ => false } + } \ No newline at end of file diff --git a/history/src/main/scala/org/dbpedia/extraction/util/DumpExtractionContext2.scala b/history/src/main/scala/org/dbpedia/extraction/util/DumpExtractionContext2.scala index e0bdc51359..f0d3277951 100644 --- a/history/src/main/scala/org/dbpedia/extraction/util/DumpExtractionContext2.scala +++ b/history/src/main/scala/org/dbpedia/extraction/util/DumpExtractionContext2.scala @@ -3,7 +3,6 @@ package org.dbpedia.extraction.util import org.dbpedia.extraction.mappings.{Disambiguations, Mappings, Redirects, Redirects2} import org.dbpedia.extraction.ontology.Ontology import org.dbpedia.extraction.sources.Source2 -import org.dbpedia.extraction.util.Language import org.dbpedia.extraction.wikiparser.WikiPageWithRevisions /** diff --git a/history/src/main/scala/org/dbpedia/extraction/wikiparser/RevisionNode.scala b/history/src/main/scala/org/dbpedia/extraction/wikiparser/RevisionNode.scala index 2d36aabb18..db9fc7d7de 100644 --- a/history/src/main/scala/org/dbpedia/extraction/wikiparser/RevisionNode.scala +++ b/history/src/main/scala/org/dbpedia/extraction/wikiparser/RevisionNode.scala @@ -1,23 +1,21 @@ package org.dbpedia.extraction.wikiparser -import org.dbpedia.extraction.util.{RecordEntry, RecordSeverity} -import org.dbpedia.extraction.util.StringUtils._ -import org.dbpedia.extraction.wikiparser.RevisionNode.parseInt -import org.dbpedia.extraction.wikiparser.impl.simple.SimpleWikiParser - -import scala.collection.mutable -import scala.collection.mutable.ListBuffer -import scala.xml.Elem +import java.time.ZonedDateTime /** * Represents a revision. * * @param id The page ID - * @param revision The revision of this page + * @param pageUri Uri of the Page + * @param parent_Uri Uri of the parent Page * @param timestamp The timestamp of the revision, in milliseconds since 1970-01-01 00:00:00 UTC * @param contributorID The ID of the latest contributor + * @param contributorIP IP of the contributor * @param contributorName The name of the latest contributor - * @param children The contents of this page + * @param comment The revision comment added by the contributor + * @param text_size Size of the revision content + * @param minor_edit Flag if revision is minor + * @param text_delta Difference of the text size since the last revision */ class RevisionNode( val id: Long, @@ -29,7 +27,6 @@ class RevisionNode( val contributorIP: String, val contributorDeleted: Boolean, val comment: String, - val format: String, val text_size: Int, val minor_edit: Boolean, val text_delta: Int @@ -38,11 +35,26 @@ class RevisionNode( { - def this(id: String, pageUri:String, parent_Uri: String, timestamp: String, contributorID: String, contributorName: String, contributorIP: String, contributorDeleted: String, comment: String, format: String, text_size: String, minor_edit:String, text_delta: Int) = { + def this(id: String, pageUri:String, parent_Uri: String, timestamp: String, contributorID: String, contributorName: String, contributorIP: String, contributorDeleted: String, comment: String, text_size: String, minor_edit:String, text_delta: Int) = { + + this(RevisionNode.parseLong(id), pageUri, parent_Uri,timestamp, contributorID, contributorName, contributorIP, RevisionNode.parseBoolean(contributorDeleted), comment, RevisionNode.parseInt(text_size),RevisionNode.parseBoolean(minor_edit),text_delta) + } + + def getUserIDAlt: String = { + if(this.contributorID != "") this.contributorID + else if(this.contributorIP != "") this.contributorIP + else this.contributorName + } - this(RevisionNode.parseLong(id), pageUri, parent_Uri,timestamp, contributorID, contributorName, contributorIP, RevisionNode.parseBoolean(contributorDeleted), comment, format,RevisionNode.parseInt(text_size),RevisionNode.parseBoolean(minor_edit),text_delta) + def getYear: String = { + ZonedDateTime.parse(this.timestamp).getYear.toString } + def getYearMonth: String = { + val year = ZonedDateTime.parse(this.timestamp).getYear.toString + val month = ZonedDateTime.parse(this.timestamp).getMonthValue.toString + month+"/"+year + } } object RevisionNode { def parseBoolean(str: String): Boolean = { @@ -55,19 +67,10 @@ object RevisionNode { else str.toInt } - def formatInt(id: Int): String = { - if (id < 0) "" - else id.toString - } def parseLong(str: String): Long = { if (str == null || str.isEmpty) -1 else str.toLong } - def formatLong(id: Long): String = { - if (id < 0) "" - else id.toString - } - } \ No newline at end of file diff --git a/history/src/main/scala/org/dbpedia/extraction/wikiparser/WikiPageWithRevisions.scala b/history/src/main/scala/org/dbpedia/extraction/wikiparser/WikiPageWithRevisions.scala index 19b36193bc..e4bf9da8c7 100644 --- a/history/src/main/scala/org/dbpedia/extraction/wikiparser/WikiPageWithRevisions.scala +++ b/history/src/main/scala/org/dbpedia/extraction/wikiparser/WikiPageWithRevisions.scala @@ -85,9 +85,35 @@ class WikiPageWithRevisions( addExtractionRecord(new RecordEntry2[WikiPageWithRevisions](this, this.uri, severity, this.title.language, errorMsg, error)) } - def getExtractionRecords(): mutable.Seq[RecordEntry2[WikiPageWithRevisions]] = this.extractionRecords.seq + def getExtractionRecords: mutable.Seq[RecordEntry2[WikiPageWithRevisions]] = this.extractionRecords.seq override def toString: String = "WikiPageWithRevision(" + title + "," + id + ", with " + revisions.size+ "revisions )" - lazy val sourceIri = title.pageIri + "?" + (if (revision >= 0) "oldid=" + revision + "&" else "") + "ns=" + title.namespace.code + lazy val sourceIri:String = title.pageIri + "?" + (if (revision >= 0) "oldid=" + revision + "&" else "") + "ns=" + title.namespace.code + + def getUniqueContributors: Int = { + this.revisions.groupBy(_.getUserIDAlt).size + } + + def getRevPerYear: Map[String,Int] = { + this.revisions.groupBy(_.getYear).mapValues(_.size) + } + + def getRevPerYearAvgSize: Map[String, Int] = { + this.revisions.groupBy(_.getYear).map{ + case (candidate, group) => + candidate -> group.map{ _.text_size}.sum / group.size + + } + } + def getRevPerYearMonth: Map[String, Int] = { + this.revisions.groupBy(_.getYearMonth).mapValues(_.size) + } + + def getRevPerYearMonthAvgSize: Map[String, Int] = { + this.revisions.groupBy(_.getYearMonth).map { + case (candidate, group) => + candidate -> group.map { _.text_size }.sum / group.size + } + } } @@ -103,4 +129,6 @@ object WikiPageWithRevisions { new WikiPage(wpr.title,wpr.redirect,wpr.id,wpr.revision,wpr.timestamp,wpr.source) } + + } From 837e402a28c476bf173548cacbeaac155c573cec Mon Sep 17 00:00:00 2001 From: celian_ringwald Date: Tue, 6 Dec 2022 15:27:39 +0100 Subject: [PATCH 30/54] clean --- history/.bsp/sbt.json | 1 - history/log_test.txt | 9199 ---- history/project/build.properties | 1 - .../frwiki-20220101-extraction-complete | 0 .../frwiki-20220101-history-dataset.ttl.bz2 | Bin 0 -> 6785 bytes .../frwiki-20220101-history-stats.ttl.bz2 | Bin 0 -> 1963 bytes .../frwiki-20220101-template-redirects.obj | Bin 0 -> 61 bytes ontology.owl | 11603 +++++ ontology.xml | 38377 ++++++++++++++++ 9 files changed, 49980 insertions(+), 9201 deletions(-) delete mode 100644 history/.bsp/sbt.json delete mode 100644 history/log_test.txt delete mode 100644 history/project/build.properties create mode 100644 history/sample-xml-dump/frwiki/20220101/frwiki-20220101-extraction-complete create mode 100644 history/sample-xml-dump/frwiki/20220101/frwiki-20220101-history-dataset.ttl.bz2 create mode 100644 history/sample-xml-dump/frwiki/20220101/frwiki-20220101-history-stats.ttl.bz2 create mode 100644 history/sample-xml-dump/frwiki/20220101/frwiki-20220101-template-redirects.obj create mode 100644 ontology.owl create mode 100644 ontology.xml diff --git a/history/.bsp/sbt.json b/history/.bsp/sbt.json deleted file mode 100644 index 811ea1f803..0000000000 --- a/history/.bsp/sbt.json +++ /dev/null @@ -1 +0,0 @@ -{"name":"sbt","version":"1.6.2","bspVersion":"2.0.0-M5","languages":["scala"],"argv":["/usr/lib/jvm/java-11-openjdk-11.0.15.0.10-1.fc35.x86_64/bin/java","-Xms100m","-Xmx100m","-classpath","/root/.local/share/JetBrains/IdeaIC2022.2/Scala/launcher/sbt-launch.jar","-Dsbt.script=/usr/bin/sbt","xsbt.boot.Boot","-bsp"]} \ No newline at end of file diff --git a/history/log_test.txt b/history/log_test.txt deleted file mode 100644 index 22a25e0756..0000000000 --- a/history/log_test.txt +++ /dev/null @@ -1,9199 +0,0 @@ -[INFO] Scanning for projects... -[INFO] Inspecting build with total of 1 modules... -[INFO] Installing Nexus Staging features: -[INFO] ... total of 1 executions of maven-deploy-plugin replaced with nexus-staging-maven-plugin -[INFO] -[INFO] ------------------------< org.dbpedia:history >------------------------- -[INFO] Building History Dump 4.2-SNAPSHOT -[INFO] --------------------------------[ jar ]--------------------------------- -[INFO] -[INFO] --- maven-enforcer-plugin:3.0.0-M3:enforce (enforce-versions) @ history --- -[INFO] -[INFO] --- scala-maven-plugin:3.2.0:add-source (attach-docs-sources) @ history --- -[INFO] Add Source directory: /home/cringwal/Desktop/GSOC/extraction-framework/history/src/main/scala -[INFO] Add Test Source directory: /home/cringwal/Desktop/GSOC/extraction-framework/history/src/test/scala -[INFO] -[INFO] --- scala-maven-plugin:3.2.0:compile (doc) @ history --- -[INFO] Nothing to compile - all classes are up to date -[INFO] -[INFO] --- maven-resources-plugin:2.6:resources (default-resources) @ history --- -[INFO] Using 'UTF-8' encoding to copy filtered resources. -[INFO] skip non existing resourceDirectory /home/cringwal/Desktop/GSOC/extraction-framework/history/src/main/resources -[INFO] -[INFO] --- scala-maven-plugin:3.2.0:compile (process-resources) @ history --- -[INFO] Nothing to compile - all classes are up to date -[INFO] -[INFO] --- maven-compiler-plugin:3.1:compile (default-compile) @ history --- -[INFO] Nothing to compile - all classes are up to date -[INFO] -[INFO] --- scala-maven-plugin:3.2.0:compile (compile) @ history --- -[INFO] Nothing to compile - all classes are up to date -[INFO] -[INFO] --- maven-resources-plugin:2.6:testResources (default-testResources) @ history --- -[INFO] Using 'UTF-8' encoding to copy filtered resources. -[INFO] Copying 1 resource -[INFO] -[INFO] --- maven-compiler-plugin:3.1:testCompile (default-testCompile) @ history --- -[INFO] Nothing to compile - all classes are up to date -[INFO] -[INFO] --- scala-maven-plugin:3.2.0:testCompile (test-compile) @ history --- -[INFO] Nothing to compile - all classes are up to date -[INFO] -[INFO] --- maven-surefire-plugin:2.7:test (default-test) @ history --- -[INFO] Tests are skipped. -[INFO] -[INFO] --- scalatest-maven-plugin:1.0:test (test) @ history --- -Discovery starting. -Discovery completed in 55 milliseconds. -Run starting. Expected test count is: 1 -ExtractionTest: -BEFORE -Nov 14, 2022 9:05:18 AM org.dbpedia.extraction.util.Language$$anonfun$4 apply -WARNING: Language not found: be-tarask. To extract this language, please edit the addonLanguage.json in core. -Nov 14, 2022 9:05:18 AM org.dbpedia.extraction.util.Language$$anonfun$4 apply -WARNING: Language not found: be-x-old. To extract this language, please edit the addonLanguage.json in core. -Nov 14, 2022 9:05:18 AM org.dbpedia.extraction.util.Language$$anonfun$4 apply -WARNING: Language not found: cbk-zam. To extract this language, please edit the addonLanguage.json in core. -Nov 14, 2022 9:05:18 AM org.dbpedia.extraction.util.Language$$anonfun$4 apply -WARNING: Language not found: fiu-vro. To extract this language, please edit the addonLanguage.json in core. -Nov 14, 2022 9:05:18 AM org.dbpedia.extraction.util.Language$$anonfun$4 apply -WARNING: Language not found: map-bms. To extract this language, please edit the addonLanguage.json in core. -Nov 14, 2022 9:05:18 AM org.dbpedia.extraction.util.Language$$anonfun$4 apply -WARNING: Language not found: nds-nl. To extract this language, please edit the addonLanguage.json in core. -Nov 14, 2022 9:05:18 AM org.dbpedia.extraction.util.Language$$anonfun$4 apply -WARNING: Language not found: roa-rup. To extract this language, please edit the addonLanguage.json in core. -Nov 14, 2022 9:05:18 AM org.dbpedia.extraction.util.Language$$anonfun$4 apply -WARNING: Language not found: roa-tara. To extract this language, please edit the addonLanguage.json in core. -Nov 14, 2022 9:05:18 AM org.dbpedia.extraction.util.Language$$anonfun$4 apply -WARNING: Language not found: zh-classical. To extract this language, please edit the addonLanguage.json in core. -Nov 14, 2022 9:05:18 AM org.dbpedia.extraction.dump.extract.ConfigLoader2 files -getArticlesSource -INFO: Source is pages-articles.xml - 1 file(s) matched -Nov 14, 2022 9:05:18 AM org.dbpedia.extraction.mappings.Redirects$ loadFromCache -INFO: Loading redirects from cache file /home/cringwal/Desktop/GSOC/extraction-framework/history/sample-xml-dump/frwiki/20220101/frwiki-20220101-template-redirects.obj -Nov 14, 2022 9:05:18 AM org.dbpedia.extraction.mappings.Redirects$ loadFromCache -INFO: 0 redirects loaded from cache file /home/cringwal/Desktop/GSOC/extraction-framework/history/sample-xml-dump/frwiki/20220101/frwiki-20220101-template-redirects.obj -Nov 14, 2022 9:05:18 AM org.dbpedia.extraction.mappings.Disambiguations$ loadFromCache -INFO: Loading disambiguations from cache file /home/cringwal/Desktop/GSOC/extraction-framework/history/sample-xml-dump/frwiki/20220101/frwiki-20220101-disambiguations-ids.obj -Nov 14, 2022 9:05:18 AM org.dbpedia.extraction.mappings.Disambiguations$ load -INFO: Will extract disambiguations from source for fr wiki, could not load cache file '/home/cringwal/Desktop/GSOC/extraction-framework/history/sample-xml-dump/frwiki/20220101/frwiki-20220101-disambiguations-ids.obj': java.io.FileNotFoundException: /home/cringwal/Desktop/GSOC/extraction-framework/history/sample-xml-dump/frwiki/20220101/frwiki-20220101-disambiguations-ids.obj (No such file or directory) -Nov 14, 2022 9:05:18 AM org.dbpedia.extraction.mappings.Disambiguations$ loadFromFile -INFO: Loading disambiguations from source (fr) -Nov 14, 2022 9:05:18 AM org.dbpedia.extraction.dump.extract.ConfigLoader2$$anonfun$2$$anon$1 liftedTree1$1 -INFO: Could not load disambiguations - error: /home/cringwal/Desktop/GSOC/extraction-framework/history/sample-xml-dump/frwiki/20220101/frwiki-20220101-page_props.sql.gz (No such file or directory) -Nov 14, 2022 9:05:18 AM org.dbpedia.extraction.ontology.io.OntologyReader read -INFO: Loading ontology pages -Nov 14, 2022 9:05:19 AM org.dbpedia.extraction.ontology.io.OntologyReader read -INFO: Loading ontology -Nov 14, 2022 9:05:19 AM org.dbpedia.extraction.ontology.io.OntologyReader$$anonfun$readPropertyTemplatesByLanguage$2$$anonfun$apply$11 apply -WARNING: title=ایک تدفین کی جگہ;ns=200/OntologyClass/OntologyClass;language:wiki=mappings,locale=en - Ignoring invalid node ' - -} - -' in value of property 'labels'. -Nov 14, 2022 9:05:19 AM org.dbpedia.extraction.ontology.io.OntologyReader$$anonfun$readPropertyTemplatesByLanguage$2$$anonfun$apply$11 apply -WARNING: title=تکرار کرنا;ns=200/OntologyClass/OntologyClass;language:wiki=mappings,locale=en - Ignoring invalid node ' - -{ -' in value of property 'labels'. -Nov 14, 2022 9:05:20 AM org.dbpedia.extraction.ontology.io.OntologyReader$$anonfun$readPropertyTemplatesByLanguage$2$$anonfun$apply$11 apply -WARNING: title=کھیل ہاکی ٹیموں کی انجمن;ns=200/OntologyClass/OntologyClass;language:wiki=mappings,locale=en - Ignoring invalid node '} -' in value of property 'labels'. -Nov 14, 2022 9:05:20 AM org.dbpedia.extraction.ontology.io.OntologyReader$$anonfun$readPropertyTemplatesByLanguage$2$$anonfun$apply$11 apply -WARNING: title=ActiveCases;ns=202/OntologyProperty/OntologyProperty;language:wiki=mappings,locale=en - Ignoring invalid node '{{Comment|ur|ایک قرارداد میٹنگ یا کنونشن کے ذریعہ اختیار کردہ ایک رسمی بیان کی وضاحت کرتی ہے}}' in value of property 'labels'. -Nov 14, 2022 9:05:20 AM org.dbpedia.extraction.ontology.io.OntologyReader$$anonfun$readPropertyTemplatesByLanguage$2$$anonfun$apply$11 apply -WARNING: title=Army;ns=202/OntologyProperty/OntologyProperty;language:wiki=mappings,locale=en - Ignoring invalid node '{{Label|ur|فوج قوم کی زمینی قوت ہے۔}}' in value of property 'comments'. -Nov 14, 2022 9:05:20 AM org.dbpedia.extraction.ontology.io.OntologyReader$$anonfun$readPropertyTemplatesByLanguage$2$$anonfun$apply$11 apply -WARNING: title=DavisCup;ns=202/OntologyProperty/OntologyProperty;language:wiki=mappings,locale=en - Ignoring invalid node '{{{label|ur}}}' in value of property 'labels'. -Nov 14, 2022 9:05:20 AM org.dbpedia.extraction.ontology.io.OntologyReader$$anonfun$readPropertyTemplatesByLanguage$2$$anonfun$apply$11 apply -WARNING: title=DavisCup;ns=202/OntologyProperty/OntologyProperty;language:wiki=mappings,locale=en - Ignoring invalid node ' کپ سالانہ بین الاقوامی ٹیم ٹینس مقابلہ کے لئے نوازا' in value of property 'labels'. -Nov 14, 2022 9:05:20 AM org.dbpedia.extraction.ontology.io.OntologyReader org$dbpedia$extraction$ontology$io$OntologyReader$$loadOntologyProperty -WARNING: title=DavisCup;ns=202/OntologyProperty/OntologyProperty;language:wiki=mappings,locale=en - Cannot load datatype property davisCup because it does not define its range -Nov 14, 2022 9:05:20 AM org.dbpedia.extraction.ontology.io.OntologyReader$$anonfun$readPropertyTemplatesByLanguage$2$$anonfun$apply$11 apply -WARNING: title=فعال کیسز;ns=202/OntologyProperty/OntologyProperty;language:wiki=mappings,locale=en - Ignoring invalid node '{{Comment|ur|ایک قرارداد میٹنگ یا کنونشن کے ذریعہ اختیار کردہ ایک رسمی بیان کی وضاحت کرتی ہے}}' in value of property 'labels'. -Nov 14, 2022 9:05:20 AM org.dbpedia.extraction.ontology.io.OntologyReader$$anonfun$readPropertyTemplatesByLanguage$2$$anonfun$apply$11 apply -WARNING: title=فوج;ns=202/OntologyProperty/OntologyProperty;language:wiki=mappings,locale=en - Ignoring invalid node '{{Label|ur|فوج قوم کی زمینی قوت ہے۔}}' in value of property 'comments'. -Nov 14, 2022 9:05:20 AM org.dbpedia.extraction.ontology.io.OntologyReader$$anonfun$readPropertyTemplatesByLanguage$2$$anonfun$apply$11 apply -WARNING: title=ڈیجیٹل لائبریری کوڈ;ns=202/OntologyProperty/OntologyProperty;language:wiki=mappings,locale=en - Ignoring invalid node '{{{label|ur}}}' in value of property 'labels'. -Nov 14, 2022 9:05:20 AM org.dbpedia.extraction.ontology.io.OntologyReader$$anonfun$readPropertyTemplatesByLanguage$2$$anonfun$apply$11 apply -WARNING: title=ڈیجیٹل لائبریری کوڈ;ns=202/OntologyProperty/OntologyProperty;language:wiki=mappings,locale=en - Ignoring invalid node ' ڈیجیٹل لائبریری کوڈ NL' in value of property 'labels'. -Nov 14, 2022 9:05:20 AM org.dbpedia.extraction.ontology.io.OntologyReader org$dbpedia$extraction$ontology$io$OntologyReader$$loadOntologyProperty -WARNING: title=ڈیجیٹل لائبریری کوڈ;ns=202/OntologyProperty/OntologyProperty;language:wiki=mappings,locale=en - Cannot load datatype property ڈیجیٹل_لائبریری_کوڈ because it does not define its range -Nov 14, 2022 9:05:20 AM org.dbpedia.extraction.ontology.io.OntologyReader$$anonfun$readPropertyTemplatesByLanguage$2$$anonfun$apply$11 apply -WARNING: title=کپ سالانہ بین الاقوامی ٹیم ٹینس مقابلہ کے لئے نوازا;ns=202/OntologyProperty/OntologyProperty;language:wiki=mappings,locale=en - Ignoring invalid node '{{{label|ur}}}' in value of property 'labels'. -Nov 14, 2022 9:05:20 AM org.dbpedia.extraction.ontology.io.OntologyReader$$anonfun$readPropertyTemplatesByLanguage$2$$anonfun$apply$11 apply -WARNING: title=کپ سالانہ بین الاقوامی ٹیم ٹینس مقابلہ کے لئے نوازا;ns=202/OntologyProperty/OntologyProperty;language:wiki=mappings,locale=en - Ignoring invalid node ' کپ سالانہ بین الاقوامی ٹیم ٹینس مقابلہ کے لئے نوازا' in value of property 'labels'. -Nov 14, 2022 9:05:20 AM org.dbpedia.extraction.ontology.io.OntologyReader org$dbpedia$extraction$ontology$io$OntologyReader$$loadOntologyProperty -WARNING: title=کپ سالانہ بین الاقوامی ٹیم ٹینس مقابلہ کے لئے نوازا;ns=202/OntologyProperty/OntologyProperty;language:wiki=mappings,locale=en - Cannot load datatype property کپ_سالانہ_بین_الاقوامی_ٹیم_ٹینس_مقابلہ_کے_لئے_نوازا because it does not define its range -Nov 14, 2022 9:05:20 AM org.dbpedia.extraction.ontology.io.OntologyReader$PropertyBuilder$$anonfun$build$9 apply -WARNING: Cannot use equivalent property 'dbo:activity' -Nov 14, 2022 9:05:20 AM org.dbpedia.extraction.ontology.io.OntologyReader$PropertyBuilder build -WARNING: domain 'dbo:Disease' of property 'dbo:virus' not found -Nov 14, 2022 9:05:20 AM org.dbpedia.extraction.ontology.io.OntologyReader read -INFO: Ontology loaded -Nov 14, 2022 9:05:20 AM org.dbpedia.extraction.dump.extract.ConfigLoader2 files -INFO: Source is pages-articles.xml - 1 file(s) matched -fromReaders - MultipleXMLReaderSource2 fromReader - XMLReaderSource2 getArticlesSource -fromReaders - MultipleXMLReaderSource2 fromReader - XMLReaderSource2 Info; fr; Main Extraction at 00:00.000s for historic, historic; Extraction started for language: French (fr) on 1 datasets. -XMLReaderSource2 - readPagesXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX -readPages -XXXXXXXXXXXX FIRST PAGE -XX BEGIN readPage -PAGE >3553440 ->> new revision element ->> Begin readRevision ->revision_id : 36815850 ->timestamp : 2009-01-06T16:56:57Z ->comment : Nouvelle page : ''Hôtes de passage'' appartient est une partie de ''La Corde et les souris'' consignée dans ''Le Miroir des limbes''.Malraux y mène des entretiens avec entre autre Senghor et un p... -214 -2022-11-14 09:05:20,658 -- DEBUG -- Jena -- Jena initialization -2022-11-14 09:05:20,719 -- DEBUG -- org.apache.jena.util.FileManager -- Add location: LocatorFile -2022-11-14 09:05:20,719 -- DEBUG -- org.apache.jena.util.FileManager -- Add location: ClassLoaderLocator -2022-11-14 09:05:20,720 -- DEBUG -- org.apache.jena.util.LocationMapper -- Failed to find configuration: file:location-mapping.rdf;file:location-mapping.n3;file:location-mapping.ttl;file:etc/location-mapping.rdf;file:etc/location-mapping.n3;file:etc/location-mapping.ttl -2022-11-14 09:05:20,720 -- DEBUG -- org.apache.jena.util.FileManager -- Add location: LocatorFile -2022-11-14 09:05:20,720 -- DEBUG -- org.apache.jena.util.FileManager -- Add location: LocatorURL -2022-11-14 09:05:20,721 -- DEBUG -- org.apache.jena.util.FileManager -- Add location: ClassLoaderLocator -2022-11-14 09:05:20,723 -- DEBUG -- org.apache.jena.riot.system.stream.JenaIOEnvironment -- Failed to find configuration: location-mapping.ttl;location-mapping.rdf;location-mapping.n3;etc/location-mapping.rdf;etc/location-mapping.n3;etc/location-mapping.ttl -2022-11-14 09:05:20,860 -- DEBUG -- org.apache.jena.riot.system.stream.StreamManager -- Not mapped: http://downloads.dbpedia.org/2016-10/core-i18n/fr/2016-10_dataid_fr.ttl -2022-11-14 09:05:20,884 -- DEBUG -- org.apache.jena.riot.web.HttpOp -- [1] GET http://downloads.dbpedia.org/2016-10/core-i18n/fr/2016-10_dataid_fr.ttl -2022-11-14 09:05:20,887 -- DEBUG -- org.apache.http.client.protocol.RequestAddCookies -- CookieSpec selected: best-match -2022-11-14 09:05:20,890 -- DEBUG -- org.apache.http.client.protocol.RequestAuthCache -- Auth cache not set in the context -2022-11-14 09:05:20,891 -- DEBUG -- org.apache.http.impl.conn.PoolingHttpClientConnectionManager -- Connection request: [route: {}->http://downloads.dbpedia.org:80][total kept alive: 0; route allocated: 0 of 5; total allocated: 0 of 10] -2022-11-14 09:05:20,895 -- DEBUG -- org.apache.http.impl.conn.PoolingHttpClientConnectionManager -- Connection leased: [id: 0][route: {}->http://downloads.dbpedia.org:80][total kept alive: 0; route allocated: 1 of 5; total allocated: 1 of 10] -2022-11-14 09:05:20,896 -- DEBUG -- org.apache.http.impl.execchain.MainClientExec -- Opening connection {}->http://downloads.dbpedia.org:80 -2022-11-14 09:05:20,897 -- DEBUG -- org.apache.http.impl.conn.HttpClientConnectionOperator -- Connecting to downloads.dbpedia.org/139.18.16.66:80 -2022-11-14 09:05:20,937 -- DEBUG -- org.apache.http.impl.conn.HttpClientConnectionOperator -- Connection established 192.168.1.105:49022<->139.18.16.66:80 -2022-11-14 09:05:20,937 -- DEBUG -- org.apache.http.impl.execchain.MainClientExec -- Executing request GET /2016-10/core-i18n/fr/2016-10_dataid_fr.ttl HTTP/1.1 -2022-11-14 09:05:20,937 -- DEBUG -- org.apache.http.impl.execchain.MainClientExec -- Target auth state: UNCHALLENGED -2022-11-14 09:05:20,938 -- DEBUG -- org.apache.http.impl.execchain.MainClientExec -- Proxy auth state: UNCHALLENGED -2022-11-14 09:05:20,938 -- DEBUG -- org.apache.http.headers -- http-outgoing-0 >> GET /2016-10/core-i18n/fr/2016-10_dataid_fr.ttl HTTP/1.1 -2022-11-14 09:05:20,938 -- DEBUG -- org.apache.http.headers -- http-outgoing-0 >> Accept: text/turtle,application/n-triples;q=0.9,application/rdf+xml;q=0.7,application/trig,application/n-quads;q=0.9,text/x-nquads;q=0.8,application/x-trig;q=0.7,application/ld+json;q=0.6,*/*;q=0.5 -2022-11-14 09:05:20,938 -- DEBUG -- org.apache.http.headers -- http-outgoing-0 >> User-Agent: Apache-Jena-ARQ/3.7.0 -2022-11-14 09:05:20,938 -- DEBUG -- org.apache.http.headers -- http-outgoing-0 >> Host: downloads.dbpedia.org -2022-11-14 09:05:20,938 -- DEBUG -- org.apache.http.headers -- http-outgoing-0 >> Connection: Keep-Alive -2022-11-14 09:05:20,938 -- DEBUG -- org.apache.http.headers -- http-outgoing-0 >> Accept-Encoding: gzip,deflate -2022-11-14 09:05:20,938 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 >> "GET /2016-10/core-i18n/fr/2016-10_dataid_fr.ttl HTTP/1.1[\r][\n]" -2022-11-14 09:05:20,938 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 >> "Accept: text/turtle,application/n-triples;q=0.9,application/rdf+xml;q=0.7,application/trig,application/n-quads;q=0.9,text/x-nquads;q=0.8,application/x-trig;q=0.7,application/ld+json;q=0.6,*/*;q=0.5[\r][\n]" -2022-11-14 09:05:20,938 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 >> "User-Agent: Apache-Jena-ARQ/3.7.0[\r][\n]" -2022-11-14 09:05:20,938 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 >> "Host: downloads.dbpedia.org[\r][\n]" -2022-11-14 09:05:20,938 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 >> "Connection: Keep-Alive[\r][\n]" -2022-11-14 09:05:20,938 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 >> "Accept-Encoding: gzip,deflate[\r][\n]" -2022-11-14 09:05:20,938 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 >> "[\r][\n]" -2022-11-14 09:05:21,070 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "HTTP/1.1 200 OK[\r][\n]" -2022-11-14 09:05:21,070 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "Server: nginx/1.4.6 (Ubuntu)[\r][\n]" -2022-11-14 09:05:21,070 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "Date: Mon, 14 Nov 2022 08:04:39 GMT[\r][\n]" -2022-11-14 09:05:21,070 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "Content-Type: text/turtle[\r][\n]" -2022-11-14 09:05:21,070 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "Content-Length: 749417[\r][\n]" -2022-11-14 09:05:21,070 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "Last-Modified: Thu, 06 Jul 2017 14:29:23 GMT[\r][\n]" -2022-11-14 09:05:21,070 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "Connection: keep-alive[\r][\n]" -2022-11-14 09:05:21,070 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "ETag: "595e4943-b6f69"[\r][\n]" -2022-11-14 09:05:21,070 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "Access-Control-Allow-Origin: *[\r][\n]" -2022-11-14 09:05:21,070 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "Access-Control-Allow-Credentials: true[\r][\n]" -2022-11-14 09:05:21,070 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "Access-Control-Allow-Methods: GET, POST, OPTIONS[\r][\n]" -2022-11-14 09:05:21,070 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "Access-Control-Allow-Headers: DNT,X-CustomHeader,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type[\r][\n]" -2022-11-14 09:05:21,070 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "Accept-Ranges: bytes[\r][\n]" -2022-11-14 09:05:21,070 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\r][\n]" -2022-11-14 09:05:21,070 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "# This DataID document is part of the dataset metadata released alongside each DBpedia language edition.[\n]" -2022-11-14 09:05:21,070 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "# This is the rocord for the French edition of DBpedia version 2016-10.[\n]" -2022-11-14 09:05:21,070 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "# Please refer to http://dbpedia.org for general information on DBpedia and http://wiki.dbpedia.org/Downloads2016-10 for more information about this release.[\n]" -2022-11-14 09:05:21,070 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:21,070 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "@prefix void: .[\n]" -2022-11-14 09:05:21,070 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "@prefix spdx: .[\n]" -2022-11-14 09:05:21,070 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "@prefix owl: .[\n]" -2022-11-14 09:05:21,070 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "@prefix dmp: .[\n]" -2022-11-14 09:05:21,070 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "@prefix datacite: .[\n]" -2022-11-14 09:05:21,070 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "@prefix xsd: .[\n]" -2022-11-14 09:05:21,070 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "@prefix rdfs: .[\n]" -2022-11-14 09:05:21,070 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "@prefix sd: .[\n]" -2022-11-14 09:05:21,070 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "@prefix dataid-mt: .[\n]" -2022-11-14 09:05:21,070 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "@prefix dataid: .[\n]" -2022-11-14 09:05:21,070 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "@prefix rdf: .[\n]" -2022-11-14 09:05:21,070 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "@prefix dcat: .[\n]" -2022-11-14 09:05:21,070 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "@prefix dataid-ld: .[\n]" -2022-11-14 09:05:21,070 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "@prefix prov: .[\n]" -2022-11-14 09:05:21,070 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "@prefix foaf: .[\n]" -2022-11-14 09:05:21,071 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "@prefix dc: .[\n]" -2022-11-14 09:05:21,071 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:21,071 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:21,071 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:DataId ;[\n]" -2022-11-14 09:05:21,071 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent , , ;[\n]" -2022-11-14 09:05:21,071 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:inCatalog ;[\n]" -2022-11-14 09:05:21,071 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" -2022-11-14 09:05:21,071 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:previousVersion ;[\n]" -2022-11-14 09:05:21,071 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:underAuthorization , , ;[\n]" -2022-11-14 09:05:21,071 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo , ;[\n]" -2022-11-14 09:05:21,071 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" -2022-11-14 09:05:21,071 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" -2022-11-14 09:05:21,071 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" -2022-11-14 09:05:21,071 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" -2022-11-14 09:05:21,071 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "DataID metadata for the French DBpedia"@en ;[\n]" -2022-11-14 09:05:21,071 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " foaf:primaryTopic .[\n]" -2022-11-14 09:05:21,071 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:21,071 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "########### Agents & Authorizations ###########[\n]" -2022-11-14 09:05:21,071 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:21,071 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:21,071 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:Authorization ;[\n]" -2022-11-14 09:05:21,071 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:authorityAgentRole dataid:Contact ;[\n]" -2022-11-14 09:05:21,071 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:authorizedAgent ;[\n]" -2022-11-14 09:05:21,071 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:authorizedFor ;[\n]" -2022-11-14 09:05:21,071 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:isInheritable true .[\n]" -2022-11-14 09:05:21,071 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:21,071 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:21,071 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:Authorization ;[\n]" -2022-11-14 09:05:21,071 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:authorityAgentRole dataid:Creator ;[\n]" -2022-11-14 09:05:21,071 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:authorizedAgent ;[\n]" -2022-11-14 09:05:21,071 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:authorizedFor ;[\n]" -2022-11-14 09:05:21,089 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:isInheritable true .[\n]" -2022-11-14 09:05:21,089 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:21,089 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:21,089 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:Authorization ;[\n]" -2022-11-14 09:05:21,089 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:authorityAgentRole dataid:Publisher ;[\n]" -2022-11-14 09:05:21,089 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:authorizedAgent ;[\n]" -2022-11-14 09:05:21,089 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:authorizedFor ;[\n]" -2022-11-14 09:05:21,089 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:isInheritable true .[\n]" -2022-11-14 09:05:21,089 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:21,089 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:21,089 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:Identifier ;[\n]" -2022-11-14 09:05:21,089 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:literal "L-2180-2016" ;[\n]" -2022-11-14 09:05:21,089 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2016-08-01"^^xsd:date ;[\n]" -2022-11-14 09:05:21,089 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:references ;[\n]" -2022-11-14 09:05:21,089 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " datacite:usesIdentifierScheme datacite:researcherid .[\n]" -2022-11-14 09:05:21,089 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:21,089 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:21,089 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:Authorization ;[\n]" -2022-11-14 09:05:21,089 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:authorityAgentRole dataid:Maintainer ;[\n]" -2022-11-14 09:05:21,089 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:authorizedAgent ;[\n]" -2022-11-14 09:05:21,089 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:authorizedFor ;[\n]" -2022-11-14 09:05:21,089 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:isInheritable true .[\n]" -2022-11-14 09:05:21,089 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:21,089 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:21,089 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:Agent ;[\n]" -2022-11-14 09:05:21,089 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:hasAuthorization ;[\n]" -2022-11-14 09:05:21,089 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " foaf:homepage ;[\n]" -2022-11-14 09:05:21,089 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " foaf:mbox "kontokostas@informatik.uni-leipzig.de" ;[\n]" -2022-11-14 09:05:21,089 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " foaf:name "Dimitris Kontokostas" .[\n]" -2022-11-14 09:05:21,089 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:21,089 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:21,089 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:Authorization ;[\n]" -2022-11-14 09:05:21,089 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:authorityAgentRole dataid:Maintainer ;[\n]" -2022-11-14 09:05:21,089 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:authorizedAgent ;[\n]" -2022-11-14 09:05:21,089 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:authorizedFor ;[\n]" -2022-11-14 09:05:21,090 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:isInheritable true .[\n]" -2022-11-14 09:05:21,090 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:21,090 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:21,090 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:Agent ;[\n]" -2022-11-14 09:05:21,090 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:hasAuthorization ;[\n]" -2022-11-14 09:05:21,090 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " foaf:homepage ;[\n]" -2022-11-14 09:05:21,090 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " foaf:mbox "dbpedia@infai.org" ;[\n]" -2022-11-14 09:05:21,090 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " foaf:name "DBpedia Association" .[\n]" -2022-11-14 09:05:21,090 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:21,090 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:21,090 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:Agent ;[\n]" -2022-11-14 09:05:21,090 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:hasAuthorization , ;[\n]" -2022-11-14 09:05:21,090 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " foaf:mbox "info@wikimedia.org" ;[\n]" -2022-11-14 09:05:21,090 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " foaf:name "Wikimedia Foundation, Inc." .[\n]" -2022-11-14 09:05:21,090 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:21,090 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:21,090 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:Agent ;[\n]" -2022-11-14 09:05:21,090 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:hasAuthorization ;[\n]" -2022-11-14 09:05:21,090 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:identifier ;[\n]" -2022-11-14 09:05:21,090 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " foaf:mbox "freudenberg@informatik.uni-leipzig.de" ;[\n]" -2022-11-14 09:05:21,090 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " foaf:name "Markus Freudenberg" .[\n]" -2022-11-14 09:05:21,090 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:21,090 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:21,090 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:Agent ;[\n]" -2022-11-14 09:05:21,090 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:hasAuthorization ;[\n]" -2022-11-14 09:05:21,090 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " foaf:mbox "technical.support@openlinksw.com" ;[\n]" -2022-11-14 09:05:21,090 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " foaf:name "OpenLink Technical Support Team" .[\n]" -2022-11-14 09:05:21,090 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:21,090 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:21,090 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:Authorization ;[\n]" -2022-11-14 09:05:21,090 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:authorityAgentRole dataid:Publisher ;[\n]" -2022-11-14 09:05:21,090 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:authorizedAgent ;[\n]" -2022-11-14 09:05:21,090 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:authorizedFor ;[\n]" -2022-11-14 09:05:21,090 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:isInheritable true .[\n]" -2022-11-14 09:05:21,090 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:21,090 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "########### Main Dataset ###########[\n]" -2022-11-14 09:05:21,090 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:21,090 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:21,090 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:Dataset , dataid:Superset ;[\n]" -2022-11-14 09:05:21,090 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "Main Dataset"@en ;[\n]" -2022-11-14 09:05:21,090 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" -2022-11-14 09:05:21,090 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:growth ;[\n]" -2022-11-14 09:05:21,090 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" -2022-11-14 09:05:21,090 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:openness ;[\n]" -2022-11-14 09:05:21,090 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:previousVersion ;[\n]" -2022-11-14 09:05:21,090 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:reuseAndIntegration ;[\n]" -2022-11-14 09:05:21,090 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:similarData ;[\n]" -2022-11-14 09:05:21,090 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:usefulness ;[\n]" -2022-11-14 09:05:21,090 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo , ;[\n]" -2022-11-14 09:05:21,090 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "DBpedia is a crowd-sourced community effort to extract structured information from Wikipedia and make this information available on the Web. DBpedia allows you to ask sophisticated queries against Wikipedia, and to link the different data sets on the Web to Wikipedia data. We hope that this work will make it easier for the huge amount of information in Wikipedia to be used in some new interesting ways. Furthermore, it might inspire new mechanisms for navigating, linking, and improving the encyclopedia itself."@en ;[\n]" -2022-11-14 09:05:21,090 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" -2022-11-14 09:05:21,090 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" -2022-11-14 09:05:21,090 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:language ;[\n]" -2022-11-14 09:05:21,090 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" -2022-11-14 09:05:21,090 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" -2022-11-14 09:05:21,090 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" -2022-11-14 09:05:21,090 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:rights ;[\n]" -2022-11-14 09:05:21,090 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "DBpedia root dataset for French, version 2016-10"@en ;[\n]" -2022-11-14 09:05:21,090 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " void:subset , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , <" -2022-11-14 09:05:21,099 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "http://dbpedia.org/dataset/mappingbased_literals?lang=fr&dbpv=2016-10> , , , , , , , , , , , , , , , , , , , , , , , , , ;[\n]" -2022-11-14 09:05:21,100 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " void:vocabulary , ;[\n]" -2022-11-14 09:05:21,100 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:keyword "DBpedia"@en , "Main Dataset"@en ;[\n]" -2022-11-14 09:05:21,100 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:landingPage ;[\n]" -2022-11-14 09:05:21,100 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " foaf:isPrimaryTopicOf ;[\n]" -2022-11-14 09:05:21,100 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " foaf:page .[\n]" -2022-11-14 09:05:21,100 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:21,100 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "########### Datasets & Distributions ###########[\n]" -2022-11-14 09:05:21,100 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:21,100 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:21,100 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid-ld:LinkedDataDataset , dataid:Dataset ;[\n]" -2022-11-14 09:05:21,100 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "Images English Uris"@en ;[\n]" -2022-11-14 09:05:21,100 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" -2022-11-14 09:05:21,100 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" -2022-11-14 09:05:21,101 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:previousVersion ;[\n]" -2022-11-14 09:05:21,101 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedDatasetRelation[\n]" -2022-11-14 09:05:21,101 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " ;[\n]" -2022-11-14 09:05:21,101 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:relatedDataset ;[\n]" -2022-11-14 09:05:21,101 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo , ;[\n]" -2022-11-14 09:05:21,101 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "Main image and corresponding thumbnail from Wikipedia article. Normalized dataset matching English DBpedia resources."@en ;[\n]" -2022-11-14 09:05:21,101 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" -2022-11-14 09:05:21,101 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:isPartOf ;[\n]" -2022-11-14 09:05:21,101 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" -2022-11-14 09:05:21,101 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:language ;[\n]" -2022-11-14 09:05:21,101 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" -2022-11-14 09:05:21,101 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" -2022-11-14 09:05:21,101 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" -2022-11-14 09:05:21,101 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "Images English Uris"@en ;[\n]" -2022-11-14 09:05:21,101 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " void:rootResource ;[\n]" -2022-11-14 09:05:21,103 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " void:triples 4999519 ;[\n]" -2022-11-14 09:05:21,103 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:distribution , ;[\n]" -2022-11-14 09:05:21,103 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:keyword "Images English Uris"@en , "DBpedia"@en ;[\n]" -2022-11-14 09:05:21,103 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:landingPage ;[\n]" -2022-11-14 09:05:21,103 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " sd:defaultGraph ;[\n]" -2022-11-14 09:05:21,103 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " foaf:page .[\n]" -2022-11-14 09:05:21,103 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:21,103 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:21,103 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:SingleFile ;[\n]" -2022-11-14 09:05:21,103 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "Specific Mappingbased Properties Wikidata Uris"@en , "core-i18n/fr/specific_mappingbased_properties_wkd_uris_fr.tql.bz2" ;[\n]" -2022-11-14 09:05:21,103 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" -2022-11-14 09:05:21,103 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:checksum ;[\n]" -2022-11-14 09:05:21,103 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:isDistributionOf ;[\n]" -2022-11-14 09:05:21,103 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" -2022-11-14 09:05:21,105 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:preview ;[\n]" -2022-11-14 09:05:21,105 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:uncompressedByteSize 19663619 ;[\n]" -2022-11-14 09:05:21,105 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo ;[\n]" -2022-11-14 09:05:21,105 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "Infobox data from the mapping-based extraction, using units of measurement more convenient for the resource type, e.g. square kilometres instead of square metres for the area of a city. Normalized dataset matching Wikidata resources (sorted)."@en ;[\n]" -2022-11-14 09:05:21,105 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" -2022-11-14 09:05:21,105 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" -2022-11-14 09:05:21,105 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" -2022-11-14 09:05:21,105 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" -2022-11-14 09:05:21,105 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" -2022-11-14 09:05:21,105 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "Specific Mappingbased Properties Wikidata Uris"@en ;[\n]" -2022-11-14 09:05:21,105 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:byteSize 1185846 ;[\n]" -2022-11-14 09:05:21,105 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:downloadURL ;[\n]" -2022-11-14 09:05:21,107 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:mediaType dataid-mt:MediaType_n-quads_x-bzip2 .[\n]" -2022-11-14 09:05:21,107 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:21,107 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:21,107 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:SingleFile ;[\n]" -2022-11-14 09:05:21,107 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "Out Degree"@en , "core-i18n/fr/out_degree_fr.ttl.bz2" ;[\n]" -2022-11-14 09:05:21,107 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" -2022-11-14 09:05:21,107 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:checksum ;[\n]" -2022-11-14 09:05:21,107 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:isDistributionOf ;[\n]" -2022-11-14 09:05:21,107 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" -2022-11-14 09:05:21,107 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:preview ;[\n]" -2022-11-14 09:05:21,107 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:uncompressedByteSize 530339159 ;[\n]" -2022-11-14 09:05:21,107 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo ;[\n]" -2022-11-14 09:05:21,107 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "Number of links emerging from a Wikipedia article and pointing to another Wikipedia article."@en ;[\n]" -2022-11-14 09:05:21,107 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" -2022-11-14 09:05:21,107 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" -2022-11-14 09:05:21,107 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " " -2022-11-14 09:05:21,109 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" -2022-11-14 09:05:21,109 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" -2022-11-14 09:05:21,109 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" -2022-11-14 09:05:21,109 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "Out Degree"@en ;[\n]" -2022-11-14 09:05:21,109 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:byteSize 29397862 ;[\n]" -2022-11-14 09:05:21,109 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:downloadURL ;[\n]" -2022-11-14 09:05:21,109 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:mediaType dataid-mt:MediaType_turtle_x-bzip2 .[\n]" -2022-11-14 09:05:21,109 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:21,109 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:21,109 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:Dataset , dataid-ld:LinkedDataDataset ;[\n]" -2022-11-14 09:05:21,109 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "Geonames Links"@en ;[\n]" -2022-11-14 09:05:21,109 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" -2022-11-14 09:05:21,109 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" -2022-11-14 09:05:21,109 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:previousVersion ;[\n]" -2022-11-14 09:05:21,109 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedDatasetRelation[\n]" -2022-11-14 09:05:21,109 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " ;[\n]" -2022-11-14 09:05:21,109 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:relatedDataset ;[\n]" -2022-11-14 09:05:21,109 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo , ;[\n]" -2022-11-14 09:05:21,109 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:descriptio" -2022-11-14 09:05:21,110 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "n "This file contains the back-links (owl:sameAs) to the Geonames dataset."@en ;[\n]" -2022-11-14 09:05:21,110 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" -2022-11-14 09:05:21,110 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:isPartOf ;[\n]" -2022-11-14 09:05:21,110 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" -2022-11-14 09:05:21,110 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:language ;[\n]" -2022-11-14 09:05:21,110 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" -2022-11-14 09:05:21,110 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" -2022-11-14 09:05:21,110 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" -2022-11-14 09:05:21,110 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "Geonames Links"@en ;[\n]" -2022-11-14 09:05:21,110 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " void:rootResource ;[\n]" -2022-11-14 09:05:21,110 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " void:triples 310 ;[\n]" -2022-11-14 09:05:21,110 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:distribution ;[\n]" -2022-11-14 09:05:21,110 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:keyword "Geonames Links"@en , "DBpedia"@en ;[\n]" -2022-11-14 09:05:21,110 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:landingPage ;[\n]" -2022-11-14 09:05:21,110 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " sd:defaultGraph ;[\n]" -2022-11-14 09:05:21,110 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " foaf:page .[\n]" -2022-11-14 09:05:21,110 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:21,110 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:21,110 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a " -2022-11-14 09:05:21,111 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:SingleFile ;[\n]" -2022-11-14 09:05:21,112 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "core-i18n/fr/topical_concepts_en_uris_fr.ttl.bz2" , "Topical Concepts English Uris"@en ;[\n]" -2022-11-14 09:05:21,112 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" -2022-11-14 09:05:21,112 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:checksum ;[\n]" -2022-11-14 09:05:21,112 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:isDistributionOf ;[\n]" -2022-11-14 09:05:21,112 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" -2022-11-14 09:05:21,112 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:preview ;[\n]" -2022-11-14 09:05:21,112 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:uncompressedByteSize 9808706 ;[\n]" -2022-11-14 09:05:21,112 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo ;[\n]" -2022-11-14 09:05:21,112 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "Resources that describe a category Normalized dataset matching English DBpedia resources."@en ;[\n]" -2022-11-14 09:05:21,112 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" -2022-11-14 09:05:21,112 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" -2022-11-14 09:05:21,112 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" -2022-11-14 09:05:21,112 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified " -2022-11-14 09:05:21,114 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " "2017-07-06"^^xsd:date ;[\n]" -2022-11-14 09:05:21,114 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" -2022-11-14 09:05:21,114 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "Topical Concepts English Uris"@en ;[\n]" -2022-11-14 09:05:21,114 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:byteSize 484532 ;[\n]" -2022-11-14 09:05:21,114 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:downloadURL ;[\n]" -2022-11-14 09:05:21,114 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:mediaType dataid-mt:MediaType_turtle_x-bzip2 .[\n]" -2022-11-14 09:05:21,114 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:21,114 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:21,114 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:SingleFile ;[\n]" -2022-11-14 09:05:21,114 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "core-i18n/fr/short_abstracts_wkd_uris_fr.ttl.bz2" , "Short Abstracts Wikidata Uris"@en ;[\n]" -2022-11-14 09:05:21,114 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" -2022-11-14 09:05:21,114 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:checksum ;[\n]" -2022-11-14 09:05:21,114 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:isDistributionOf ;[\n]" -2022-11-14 09:05:21,114 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" -2022-11-14 09:05:21,114 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:preview ;[\n]" -2022-11-14 09:05:21,115 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:uncompressedByteSize 670683532 ;[\n]" -2022-11-14 09:05:21,115 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo ;[\n]" -2022-11-14 09:05:21,115 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "Short Abstracts (about 600 characters long) of Wikipedia articles. Normalized dataset matching Wikidata resources (sorted)."@en ;[\n]" -2022-11-14 09:05:21,115 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" -2022-11-14 09:05:21,115 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" -2022-11-14 09:05:21,115 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" -2022-11-14 09:05:21,115 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" -2022-11-14 09:05:21,115 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" -2022-11-14 09:05:21,115 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "Short Abstracts Wikidata Uris"@en ;[\n]" -2022-11-14 09:05:21,115 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:byteSize 141197090 ;[\n]" -2022-11-14 09:05:21,115 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:downloadURL ;[\n]" -2022-11-14 09:05:21,115 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:mediaType dataid-mt:MediaType_turtle_x-bzip2 .[\n]" -2022-11-14 09:05:21,115 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:21,115 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:21,115 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:SingleFile ;[\n]" -2022-11-14 09:05:21,115 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "core-i18n/fr/nif_context_fr.ttl.bz2" , "NIF Context"@en ;[\n]" -2022-11-14 09:05:21,115 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" -2022-11-14 09:05:21,117 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:checksum ;[\n]" -2022-11-14 09:05:21,117 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:isDistributionOf ;[\n]" -2022-11-14 09:05:21,117 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" -2022-11-14 09:05:21,117 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:preview ;[\n]" -2022-11-14 09:05:21,117 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:uncompressedByteSize 6950782689 ;[\n]" -2022-11-14 09:05:21,117 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo ;[\n]" -2022-11-14 09:05:21,117 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "Contains the full text of a Wikipedia page in the NLP Interchange Format (NIF). All other NIF resources will reference the context of its Wikipedia page.It contains the whole text of a WikiPage (minus tables and references and minor artifacts)"@en ;[\n]" -2022-11-14 09:05:21,117 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" -2022-11-14 09:05:21,117 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" -2022-11-14 09:05:21,117 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" -2022-11-14 09:05:21,117 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" -2022-11-14 09:05:21,117 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" -2022-11-14 09:05:21,117 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title " -2022-11-14 09:05:21,119 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " "NIF Context"@en ;[\n]" -2022-11-14 09:05:21,119 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:byteSize 1472498158 ;[\n]" -2022-11-14 09:05:21,119 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:downloadURL ;[\n]" -2022-11-14 09:05:21,119 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:mediaType dataid-mt:MediaType_turtle_x-bzip2 .[\n]" -2022-11-14 09:05:21,119 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:21,119 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:21,119 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:SingleFile ;[\n]" -2022-11-14 09:05:21,119 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "Topical Concepts English Uris"@en , "core-i18n/fr/topical_concepts_en_uris_fr.tql.bz2" ;[\n]" -2022-11-14 09:05:21,119 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" -2022-11-14 09:05:21,119 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:checksum ;[\n]" -2022-11-14 09:05:21,119 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:isDistributionOf ;[\n]" -2022-11-14 09:05:21,119 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" -2022-11-14 09:05:21,119 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:preview ;[\n]" -2022-11-14 09:05:21,119 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:uncompressedByteSize 16528891 ;[\n]" -2022-11-14 09:05:21,119 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo ;[\n]" -2022-11-14 09:05:21,119 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description " -2022-11-14 09:05:21,120 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " "Resources that describe a category Normalized dataset matching English DBpedia resources."@en ;[\n]" -2022-11-14 09:05:21,120 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" -2022-11-14 09:05:21,120 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" -2022-11-14 09:05:21,120 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" -2022-11-14 09:05:21,120 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" -2022-11-14 09:05:21,120 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" -2022-11-14 09:05:21,120 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "Topical Concepts English Uris"@en ;[\n]" -2022-11-14 09:05:21,120 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:byteSize 1065681 ;[\n]" -2022-11-14 09:05:21,120 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:downloadURL ;[\n]" -2022-11-14 09:05:21,120 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:mediaType dataid-mt:MediaType_n-quads_x-bzip2 .[\n]" -2022-11-14 09:05:21,120 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:21,120 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:21,120 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:SingleFile ;[\n]" -2022-11-14 09:05:21,120 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "Short Abstracts Wikidata Uris"@en , "core-i18n/fr/short_abstracts_wkd_uris_fr.tql.bz2" ;[\n]" -2022-11-14 09:05:21,120 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" -2022-11-14 09:05:21,120 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:checksum ;[\n]" -2022-11-14 09:05:21,122 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:isDistributionOf ;[\n]" -2022-11-14 09:05:21,122 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" -2022-11-14 09:05:21,122 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:preview ;[\n]" -2022-11-14 09:05:21,122 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:uncompressedByteSize 783993297 ;[\n]" -2022-11-14 09:05:21,122 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo ;[\n]" -2022-11-14 09:05:21,122 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "Short Abstracts (about 600 characters long) of Wikipedia articles. Normalized dataset matching Wikidata resources (sorted)."@en ;[\n]" -2022-11-14 09:05:21,122 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" -2022-11-14 09:05:21,122 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" -2022-11-14 09:05:21,122 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" -2022-11-14 09:05:21,122 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" -2022-11-14 09:05:21,122 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" -2022-11-14 09:05:21,122 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "Short Abstracts Wikidata Uris"@en ;[\n]" -2022-11-14 09:05:21,122 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:byteSize 162564987 ;[\n]" -2022-11-14 09:05:21,122 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:downloadURL ;[\n]" -2022-11-14 09:05:21,124 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:mediaType dataid-mt:MediaType_n-quads_x-bzip2 .[\n]" -2022-11-14 09:05:21,124 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:21,124 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:21,124 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid-ld:LinkedDataDataset , dataid:Dataset ;[\n]" -2022-11-14 09:05:21,124 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "SKOS Categories English Uris"@en ;[\n]" -2022-11-14 09:05:21,124 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" -2022-11-14 09:05:21,124 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" -2022-11-14 09:05:21,124 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:previousVersion ;[\n]" -2022-11-14 09:05:21,124 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedDatasetRelation[\n]" -2022-11-14 09:05:21,124 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " ;[\n]" -2022-11-14 09:05:21,124 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:relatedDataset ;[\n]" -2022-11-14 09:05:21,124 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo , ;[\n]" -2022-11-14 09:05:21,124 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "Information which concept is a category and how categories are related using the SKOS Vocabulary. Normalized dataset matching English DBpedia resources."@en ;[\n]" -2022-11-14 09:05:21,124 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" -2022-11-14 09:05:21,124 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:isPartOf ;[\n]" -2022-11-14 09:05:21,125 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" -2022-11-14 09:05:21,125 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:language ;[\n]" -2022-11-14 09:05:21,125 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" -2022-11-14 09:05:21,125 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" -2022-11-14 09:05:21,125 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" -2022-11-14 09:05:21,125 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "SKOS Categories English Uris"@en ;[\n]" -2022-11-14 09:05:21,125 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " void:rootResource ;[\n]" -2022-11-14 09:05:21,125 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " void:triples 617089 ;[\n]" -2022-11-14 09:05:21,125 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:distribution , ;[\n]" -2022-11-14 09:05:21,125 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:keyword "DBpedia"@en , "SKOS Categories English Uris"@en ;[\n]" -2022-11-14 09:05:21,125 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:landingPage ;[\n]" -2022-11-14 09:05:21,125 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " sd:defaultGraph ;[\n]" -2022-11-14 09:05:21,125 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " foaf:page .[\n]" -2022-11-14 09:05:21,125 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:21,125 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:21,125 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:SingleFile ;[\n]" -2022-11-14 09:05:21,125 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "Equations in MathML"@en , "core-i18n/fr/equations_fr.ttl.bz2" ;[\n]" -2022-11-14 09:05:21,125 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgen" -2022-11-14 09:05:21,127 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "t ;[\n]" -2022-11-14 09:05:21,127 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:checksum ;[\n]" -2022-11-14 09:05:21,127 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:isDistributionOf ;[\n]" -2022-11-14 09:05:21,127 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" -2022-11-14 09:05:21,127 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:preview ;[\n]" -2022-11-14 09:05:21,127 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:uncompressedByteSize 410092930 ;[\n]" -2022-11-14 09:05:21,127 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo ;[\n]" -2022-11-14 09:05:21,127 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "This are all equations collected during the NIF extraction, transformed into MathML XML syntax."@en ;[\n]" -2022-11-14 09:05:21,127 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" -2022-11-14 09:05:21,127 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" -2022-11-14 09:05:21,127 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" -2022-11-14 09:05:21,127 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" -2022-11-14 09:05:21,127 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" -2022-11-14 09:05:21,127 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "Equations in MathML"@en ;[\n]" -2022-11-14 09:05:21,127 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:byteSize 9548541 ;[\n]" -2022-11-14 09:05:21,127 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:downloadURL " -2022-11-14 09:05:21,128 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " ;[\n]" -2022-11-14 09:05:21,128 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:mediaType dataid-mt:MediaType_turtle_x-bzip2 .[\n]" -2022-11-14 09:05:21,128 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:21,128 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:21,128 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid-ld:LinkedDataDataset , dataid:Dataset ;[\n]" -2022-11-14 09:05:21,128 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "Geo Coordinates Wikidata Uris"@en ;[\n]" -2022-11-14 09:05:21,128 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" -2022-11-14 09:05:21,128 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" -2022-11-14 09:05:21,128 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:previousVersion ;[\n]" -2022-11-14 09:05:21,128 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedDatasetRelation[\n]" -2022-11-14 09:05:21,128 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " ;[\n]" -2022-11-14 09:05:21,128 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:relatedDataset ;[\n]" -2022-11-14 09:05:21,128 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo , ;[\n]" -2022-11-14 09:05:21,128 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "Geographic coordinates extracted from Wikipedia. Normalized dataset matching Wikidata resources (sorted)."@en ;[\n]" -2022-11-14 09:05:21,128 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" -2022-11-14 09:05:21,128 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:isPartOf ;[\n]" -2022-11-14 09:05:21,130 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" -2022-11-14 09:05:21,130 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:language ;[\n]" -2022-11-14 09:05:21,130 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" -2022-11-14 09:05:21,130 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" -2022-11-14 09:05:21,130 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" -2022-11-14 09:05:21,130 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "Geo Coordinates Wikidata Uris"@en ;[\n]" -2022-11-14 09:05:21,130 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " void:rootResource ;[\n]" -2022-11-14 09:05:21,130 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " void:triples 150904 ;[\n]" -2022-11-14 09:05:21,130 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:distribution , ;[\n]" -2022-11-14 09:05:21,130 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:keyword "DBpedia"@en , "Geo Coordinates Wikidata Uris"@en ;[\n]" -2022-11-14 09:05:21,130 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:landingPage ;[\n]" -2022-11-14 09:05:21,130 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " sd:defaultGraph ;[\n]" -2022-11-14 09:05:21,130 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " foaf:page .[\n]" -2022-11-14 09:05:21,130 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:21,130 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:21,130 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid-ld:LinkedDataDataset , dataid:Dataset ;[\n]" -2022-11-14 09:05:21,130 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "Labels Wikidata Uris"@en ;[\n]" -2022-11-14 09:05:21,130 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" -2022-11-14 09:05:21,130 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" -2022-11-14 09:05:21,130 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:previousVersion ;[\n]" -2022-11-14 09:05:21,130 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedDatasetRelation[\n]" -2022-11-14 09:05:21,130 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " ;[\n]" -2022-11-14 09:05:21,130 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:relatedDataset ;[\n]" -2022-11-14 09:05:21,130 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo , ;[\n]" -2022-11-14 09:05:21,130 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "Titles of all Wikipedia Articles in the corresponding language. In Wikidata, it contains all the languages available in the mappings wiki, labels_nmw contains the rest Normalized dataset matching Wikidata resources (sorted)."@en ;[\n]" -2022-11-14 09:05:21,130 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" -2022-11-14 09:05:21,130 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:isPartOf ;[\n]" -2022-11-14 09:05:21,130 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" -2022-11-14 09:05:21,130 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:language ;[\n]" -2022-11-14 09:05:21,130 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" -2022-11-14 09:05:21,130 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" -2022-11-14 09:05:21,130 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" -2022-11-14 09:05:21,132 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "Labels Wikidata Uris"@en ;[\n]" -2022-11-14 09:05:21,132 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " void:rootResource ;[\n]" -2022-11-14 09:05:21,132 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " void:triples 1801814 ;[\n]" -2022-11-14 09:05:21,132 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:distribution , ;[\n]" -2022-11-14 09:05:21,132 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:keyword "Labels Wikidata Uris"@en , "DBpedia"@en ;[\n]" -2022-11-14 09:05:21,132 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:landingPage ;[\n]" -2022-11-14 09:05:21,132 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " sd:defaultGraph ;[\n]" -2022-11-14 09:05:21,132 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " foaf:page .[\n]" -2022-11-14 09:05:21,132 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:21,132 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:21,132 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid-ld:LinkedDataDataset , dataid:Dataset ;[\n]" -2022-11-14 09:05:21,132 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "Geo Coordinates"@en ;[\n]" -2022-11-14 09:05:21,132 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" -2022-11-14 09:05:21,132 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" -2022-11-14 09:05:21,132 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:previousVersion ;[\n]" -2022-11-14 09:05:21,132 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedDatasetRelation[\n]" -2022-11-14 09:05:21,132 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " " -2022-11-14 09:05:21,134 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " ;[\n]" -2022-11-14 09:05:21,134 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:relatedDataset ;[\n]" -2022-11-14 09:05:21,134 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo , ;[\n]" -2022-11-14 09:05:21,134 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "Geographic coordinates extracted from Wikipedia."@en ;[\n]" -2022-11-14 09:05:21,134 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" -2022-11-14 09:05:21,134 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:isPartOf ;[\n]" -2022-11-14 09:05:21,134 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" -2022-11-14 09:05:21,134 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:language ;[\n]" -2022-11-14 09:05:21,134 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" -2022-11-14 09:05:21,134 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" -2022-11-14 09:05:21,134 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" -2022-11-14 09:05:21,134 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "Geo Coordinates"@en ;[\n]" -2022-11-14 09:05:21,134 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " void:rootResource ;[\n]" -2022-11-14 09:05:21,134 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " void:triples 151204 ;[\n]" -2022-11-14 09:05:21,134 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:distribution , ;[\n]" -2022-11-14 09:05:21,134 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:keyword "DBpedia"@en , "Geo Coordinates"@en ;[\n]" -2022-11-14 09:05:21,134 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:landingPage " -2022-11-14 09:05:21,135 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " ;[\n]" -2022-11-14 09:05:21,135 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " sd:defaultGraph ;[\n]" -2022-11-14 09:05:21,135 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " foaf:page .[\n]" -2022-11-14 09:05:21,135 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:21,135 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:21,135 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:SingleFile ;[\n]" -2022-11-14 09:05:21,135 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "core-i18n/fr/article_categories_wkd_uris_fr.ttl.bz2" , "Article Categories Wikidata Uris"@en ;[\n]" -2022-11-14 09:05:21,135 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" -2022-11-14 09:05:21,135 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:checksum ;[\n]" -2022-11-14 09:05:21,135 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:isDistributionOf ;[\n]" -2022-11-14 09:05:21,135 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" -2022-11-14 09:05:21,135 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:preview ;[\n]" -2022-11-14 09:05:21,135 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:uncompressedByteSize 733116114 ;[\n]" -2022-11-14 09:05:21,135 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo ;[\n]" -2022-11-14 09:05:21,135 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "Links from concepts to categories using the SKOS vocabulary. Normalized dataset matching Wikidata resources (sorted)."@en ;[\n]" -2022-11-14 09:05:21,135 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" -2022-11-14 09:05:21,135 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" -2022-11-14 09:05:21,135 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" -2022-11-14 09:05:21,135 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" -2022-11-14 09:05:21,135 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" -2022-11-14 09:05:21,135 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "Article Categories Wikidata Uris"@en ;[\n]" -2022-11-14 09:05:21,135 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:byteSize 27763566 ;[\n]" -2022-11-14 09:05:21,135 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:downloadURL ;[\n]" -2022-11-14 09:05:21,135 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:mediaType dataid-mt:MediaType_turtle_x-bzip2 .[\n]" -2022-11-14 09:05:21,135 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:21,135 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:21,135 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:Dataset , dataid-ld:LinkedDataDataset ;[\n]" -2022-11-14 09:05:21,135 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "Wikipedia Links"@en ;[\n]" -2022-11-14 09:05:21,135 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" -2022-11-14 09:05:21,135 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" -2022-11-14 09:05:21,135 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:previousVersion ;[\n]" -2022-11-14 09:05:21,135 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedDatasetRelation[\n]" -2022-11-14 09:05:21,135 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " ;[\n]" -2022-11-14 09:05:21,138 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:relatedDataset ;[\n]" -2022-11-14 09:05:21,138 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo , ;[\n]" -2022-11-14 09:05:21,138 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "Dataset linking DBpedia resource to corresponding article in Wikipedia."@en ;[\n]" -2022-11-14 09:05:21,138 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" -2022-11-14 09:05:21,138 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:isPartOf ;[\n]" -2022-11-14 09:05:21,138 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" -2022-11-14 09:05:21,138 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:language ;[\n]" -2022-11-14 09:05:21,138 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" -2022-11-14 09:05:21,138 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" -2022-11-14 09:05:21,138 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" -2022-11-14 09:05:21,138 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "Wikipedia Links"@en ;[\n]" -2022-11-14 09:05:21,138 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " void:rootResource ;[\n]" -2022-11-14 09:05:21,138 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " void:triples 12964980 ;[\n]" -2022-11-14 09:05:21,138 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:distribution , ;[\n]" -2022-11-14 09:05:21,138 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " " -2022-11-14 09:05:21,139 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:keyword "Wikipedia Links"@en , "DBpedia"@en ;[\n]" -2022-11-14 09:05:21,139 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:landingPage ;[\n]" -2022-11-14 09:05:21,139 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " sd:defaultGraph ;[\n]" -2022-11-14 09:05:21,139 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " foaf:page .[\n]" -2022-11-14 09:05:21,139 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:21,139 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:21,139 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:SingleFile ;[\n]" -2022-11-14 09:05:21,139 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "Instance Types English Uris"@en , "core-i18n/fr/instance_types_en_uris_fr.ttl.bz2" ;[\n]" -2022-11-14 09:05:21,139 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" -2022-11-14 09:05:21,139 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:checksum ;[\n]" -2022-11-14 09:05:21,139 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:isDistributionOf ;[\n]" -2022-11-14 09:05:21,139 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" -2022-11-14 09:05:21,139 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:preview ;[\n]" -2022-11-14 09:05:21,139 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:uncompressedByteSize 85574299 ;[\n]" -2022-11-14 09:05:21,139 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo ;[\n]" -2022-11-14 09:05:21,139 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "Contains triples" -2022-11-14 09:05:21,140 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " of the form $object rdf:type $class from the mapping-based extraction. Normalized dataset matching English DBpedia resources."@en ;[\n]" -2022-11-14 09:05:21,140 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" -2022-11-14 09:05:21,140 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" -2022-11-14 09:05:21,140 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" -2022-11-14 09:05:21,140 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" -2022-11-14 09:05:21,140 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" -2022-11-14 09:05:21,140 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "Instance Types English Uris"@en ;[\n]" -2022-11-14 09:05:21,140 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:byteSize 5297474 ;[\n]" -2022-11-14 09:05:21,140 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:downloadURL ;[\n]" -2022-11-14 09:05:21,140 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:mediaType dataid-mt:MediaType_turtle_x-bzip2 .[\n]" -2022-11-14 09:05:21,140 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:21,140 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:21,140 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:SingleFile ;[\n]" -2022-11-14 09:05:21,140 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "core-i18n/fr/article_categories_wkd_uris_fr.tql.bz2" , "Article Categories Wikidata Uris"@en ;[\n]" -2022-11-14 09:05:21,140 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" -2022-11-14 09:05:21,140 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:checksum ;[\n]" -2022-11-14 09:05:21,142 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:isDistributionOf ;[\n]" -2022-11-14 09:05:21,142 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" -2022-11-14 09:05:21,142 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:preview ;[\n]" -2022-11-14 09:05:21,142 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:uncompressedByteSize 1412970564 ;[\n]" -2022-11-14 09:05:21,142 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo ;[\n]" -2022-11-14 09:05:21,142 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "Links from concepts to categories using the SKOS vocabulary. Normalized dataset matching Wikidata resources (sorted)."@en ;[\n]" -2022-11-14 09:05:21,142 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" -2022-11-14 09:05:21,142 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" -2022-11-14 09:05:21,142 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" -2022-11-14 09:05:21,142 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" -2022-11-14 09:05:21,142 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" -2022-11-14 09:05:21,142 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "Article Categories Wikidata Uris"@en ;[\n]" -2022-11-14 09:05:21,142 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:byteSize 81671657 ;[\n]" -2022-11-14 09:05:21,142 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:downloadURL ;[\n]" -2022-11-14 09:05:21,143 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:mediaType dataid-mt:MediaType_n-quads_x-bzip2 .[\n]" -2022-11-14 09:05:21,143 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:21,143 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:21,143 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:SingleFile ;[\n]" -2022-11-14 09:05:21,143 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "Interlanguage Links"@en , "core-i18n/fr/interlanguage_links_fr.tql.bz2" ;[\n]" -2022-11-14 09:05:21,143 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" -2022-11-14 09:05:21,143 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:checksum ;[\n]" -2022-11-14 09:05:21,143 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:isDistributionOf ;[\n]" -2022-11-14 09:05:21,143 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" -2022-11-14 09:05:21,143 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:preview ;[\n]" -2022-11-14 09:05:21,143 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:uncompressedByteSize 4725742045 ;[\n]" -2022-11-14 09:05:21,143 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo ;[\n]" -2022-11-14 09:05:21,143 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "Dataset linking a DBpedia resource to the same resource in other languages and in Wikidata."@en ;[\n]" -2022-11-14 09:05:21,143 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" -2022-11-14 09:05:21,144 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" -2022-11-14 09:05:21,144 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" -2022-11-14 09:05:21,144 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" -2022-11-14 09:05:21,144 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" -2022-11-14 09:05:21,144 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "Interlanguage Links"@en ;[\n]" -2022-11-14 09:05:21,144 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:byteSize 225389349 ;[\n]" -2022-11-14 09:05:21,144 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:downloadURL ;[\n]" -2022-11-14 09:05:21,144 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:mediaType dataid-mt:MediaType_n-quads_x-bzip2 .[\n]" -2022-11-14 09:05:21,144 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:21,144 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:21,144 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:SingleFile ;[\n]" -2022-11-14 09:05:21,144 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "Person data"@en , "core-i18n/fr/persondata_fr.ttl.bz2" ;[\n]" -2022-11-14 09:05:21,144 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" -2022-11-14 09:05:21,144 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:checksum ;[\n]" -2022-11-14 09:05:21,144 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:isDistributionOf ;[\n]" -2022-11-14 09:05:21,144 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" -2022-11-14 09:05:21,144 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:pre" -2022-11-14 09:05:21,144 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "view ;[\n]" -2022-11-14 09:05:21,144 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:uncompressedByteSize 442243790 ;[\n]" -2022-11-14 09:05:21,145 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo ;[\n]" -2022-11-14 09:05:21,145 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "Information about persons (date and place of birth etc., extracted from the English and German Wikipedia, represented using the FOAF vocabulary."@en ;[\n]" -2022-11-14 09:05:21,145 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" -2022-11-14 09:05:21,145 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" -2022-11-14 09:05:21,145 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" -2022-11-14 09:05:21,145 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" -2022-11-14 09:05:21,145 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" -2022-11-14 09:05:21,145 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "Person data"@en ;[\n]" -2022-11-14 09:05:21,145 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:byteSize 23804002 ;[\n]" -2022-11-14 09:05:21,145 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:downloadURL ;[\n]" -2022-11-14 09:05:21,145 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:mediaType dataid-mt:MediaType_turtle_x-bzip2 .[\n]" -2022-11-14 09:05:21,145 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:21,145 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:21,145 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:SingleFile ;[\n]" -2022-11-14 09:05:21,145 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "core-i18n/fr/instance_types_en" -2022-11-14 09:05:21,147 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "_uris_fr.tql.bz2" , "Instance Types English Uris"@en ;[\n]" -2022-11-14 09:05:21,147 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" -2022-11-14 09:05:21,147 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:checksum ;[\n]" -2022-11-14 09:05:21,147 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:isDistributionOf ;[\n]" -2022-11-14 09:05:21,147 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" -2022-11-14 09:05:21,147 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:preview ;[\n]" -2022-11-14 09:05:21,147 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:uncompressedByteSize 161096746 ;[\n]" -2022-11-14 09:05:21,147 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo ;[\n]" -2022-11-14 09:05:21,147 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "Contains triples of the form $object rdf:type $class from the mapping-based extraction. Normalized dataset matching English DBpedia resources."@en ;[\n]" -2022-11-14 09:05:21,147 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" -2022-11-14 09:05:21,147 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" -2022-11-14 09:05:21,147 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" -2022-11-14 09:05:21,147 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" -2022-11-14 09:05:21,147 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publishe" -2022-11-14 09:05:21,148 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "r ;[\n]" -2022-11-14 09:05:21,148 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "Instance Types English Uris"@en ;[\n]" -2022-11-14 09:05:21,148 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:byteSize 12371112 ;[\n]" -2022-11-14 09:05:21,148 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:downloadURL ;[\n]" -2022-11-14 09:05:21,148 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:mediaType dataid-mt:MediaType_n-quads_x-bzip2 .[\n]" -2022-11-14 09:05:21,148 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:21,148 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:21,148 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:SingleFile ;[\n]" -2022-11-14 09:05:21,148 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "core-i18n/fr/french_population_fr.ttl.bz2" , "French Population"@en ;[\n]" -2022-11-14 09:05:21,148 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" -2022-11-14 09:05:21,148 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:checksum ;[\n]" -2022-11-14 09:05:21,148 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:isDistributionOf ;[\n]" -2022-11-14 09:05:21,148 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" -2022-11-14 09:05:21,148 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:preview ;[\n]" -2022-11-14 09:05:21,148 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:uncompressedByteSize 6793789 ;[\n]" -2022-11-14 09:05:21,148 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo ;[\n]" -2022-11-14 09:05:21,149 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "French dataset about population."@en ;[\n]" -2022-11-14 09:05:21,149 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" -2022-11-14 09:05:21,149 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" -2022-11-14 09:05:21,149 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" -2022-11-14 09:05:21,149 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" -2022-11-14 09:05:21,149 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" -2022-11-14 09:05:21,149 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "French Population"@en ;[\n]" -2022-11-14 09:05:21,149 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:byteSize 287115 ;[\n]" -2022-11-14 09:05:21,149 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:downloadURL ;[\n]" -2022-11-14 09:05:21,149 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:mediaType dataid-mt:MediaType_turtle_x-bzip2 .[\n]" -2022-11-14 09:05:21,149 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:21,149 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:21,149 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:SingleFile ;[\n]" -2022-11-14 09:05:21,149 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "core-i18n/fr/disambiguations_wkd_uris_fr.tql.bz2" , "Disambiguations Wikidata Uris"@en ;[\n]" -2022-11-14 09:05:21,149 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" -2022-11-14 09:05:21,149 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:checksum ;[\n]" -2022-11-14 09:05:21,149 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " d" -2022-11-14 09:05:21,150 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "ataid:isDistributionOf ;[\n]" -2022-11-14 09:05:21,150 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" -2022-11-14 09:05:21,150 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:preview ;[\n]" -2022-11-14 09:05:21,150 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:uncompressedByteSize 108084390 ;[\n]" -2022-11-14 09:05:21,150 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo ;[\n]" -2022-11-14 09:05:21,150 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "Links extracted from Wikipedia disambiguation pages. Since Wikipedia has no syntax to distinguish disambiguation links from ordinary links, DBpedia has to use heuristics. Normalized dataset matching Wikidata resources (sorted)."@en ;[\n]" -2022-11-14 09:05:21,150 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" -2022-11-14 09:05:21,150 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" -2022-11-14 09:05:21,150 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" -2022-11-14 09:05:21,150 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" -2022-11-14 09:05:21,150 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" -2022-11-14 09:05:21,150 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "Disambiguations Wikidata Uris"@en ;[\n]" -2022-11-14 09:05:21,150 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:byteSize 5328644 ;[\n]" -2022-11-14 09:05:21,150 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:downloadURL ;[\n]" -2022-11-14 09:05:21,150 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:mediaType dataid-mt:MediaType_n-quads_x-bzip2 .[\n]" -2022-11-14 09:05:21,150 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:21,150 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:21,150 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:SingleFile ;[\n]" -2022-11-14 09:05:21,150 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "Page Ids"@en , "core-i18n/fr/page_ids_fr.ttl.bz2" ;[\n]" -2022-11-14 09:05:21,150 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" -2022-11-14 09:05:21,150 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:checksum ;[\n]" -2022-11-14 09:05:21,150 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:isDistributionOf ;[\n]" -2022-11-14 09:05:21,150 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" -2022-11-14 09:05:21,150 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:preview ;[\n]" -2022-11-14 09:05:21,150 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:uncompressedByteSize 589635178 ;[\n]" -2022-11-14 09:05:21,150 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo ;[\n]" -2022-11-14 09:05:21,150 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "Dataset linking a DBpedia resource to the page ID of the Wikipedia article the data was extracted from."@en ;[\n]" -2022-11-14 09:05:21,150 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" -2022-11-14 09:05:21,150 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" -2022-11-14 09:05:21,150 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" -2022-11-14 09:05:21,150 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" -2022-11-14 09:05:21,150 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" -2022-11-14 09:05:21,150 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "Page Ids"@en ;[\n]" -2022-11-14 09:05:21,150 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:byteSize 40298553 ;[\n]" -2022-11-14 09:05:21,150 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:downloadURL ;[\n]" -2022-11-14 09:05:21,150 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:mediaType dataid-mt:MediaType_turtle_x-bzip2 .[\n]" -2022-11-14 09:05:21,150 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:21,150 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:21,150 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:SingleFile ;[\n]" -2022-11-14 09:05:21,150 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "Geo Coordinates Wikidata Uris"@en , "core-i18n/fr/geo_coordinates_wkd_uris_fr.ttl.bz2" ;[\n]" -2022-11-14 09:05:21,150 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" -2022-11-14 09:05:21,150 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:checksum ;[\n]" -2022-11-14 09:05:21,150 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:isDistributionOf ;[\n]" -2022-11-14 09:05:21,150 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" -2022-11-14 09:05:21,152 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:preview ;[\n]" -2022-11-14 09:05:21,152 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:uncompressedByteSize 21632650 ;[\n]" -2022-11-14 09:05:21,152 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo ;[\n]" -2022-11-14 09:05:21,152 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "Geographic coordinates extracted from Wikipedia. Normalized dataset matching Wikidata resources (sorted)."@en ;[\n]" -2022-11-14 09:05:21,152 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" -2022-11-14 09:05:21,152 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" -2022-11-14 09:05:21,152 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" -2022-11-14 09:05:21,152 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" -2022-11-14 09:05:21,152 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" -2022-11-14 09:05:21,152 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "Geo Coordinates Wikidata Uris"@en ;[\n]" -2022-11-14 09:05:21,152 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:byteSize 901491 ;[\n]" -2022-11-14 09:05:21,152 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:downloadURL ;[\n]" -2022-11-14 09:05:21,152 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:mediaType dataid-mt:MediaType_turtle_x-bzip2 .[\n]" -2022-11-14 09:05:21,152 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:21,152 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:21,152 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:SingleFile ;[\n]" -2022-11-14 09:05:21,152 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "Page Ids"@en , "core-i18n/fr/page_ids_fr.tql.bz2" ;[\n]" -2022-11-14 09:05:21,152 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" -2022-11-14 09:05:21,152 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:checksum ;[\n]" -2022-11-14 09:05:21,152 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:isDistributionOf ;[\n]" -2022-11-14 09:05:21,152 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" -2022-11-14 09:05:21,152 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:preview ;[\n]" -2022-11-14 09:05:21,152 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:uncompressedByteSize 860159634 ;[\n]" -2022-11-14 09:05:21,152 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo ;[\n]" -2022-11-14 09:05:21,152 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "Dataset linking a DBpedia resource to the page ID of the Wikipedia article the data was extracted from."@en ;[\n]" -2022-11-14 09:05:21,152 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" -2022-11-14 09:05:21,152 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" -2022-11-14 09:05:21,152 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" -2022-11-14 09:05:21,152 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" -2022-11-14 09:05:21,152 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" -2022-11-14 09:05:21,152 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "Page Ids"@en ;[\n]" -2022-11-14 09:05:21,152 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:byteSize " -2022-11-14 09:05:21,153 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " 71099390 ;[\n]" -2022-11-14 09:05:21,153 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:downloadURL ;[\n]" -2022-11-14 09:05:21,153 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:mediaType dataid-mt:MediaType_n-quads_x-bzip2 .[\n]" -2022-11-14 09:05:21,153 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:21,153 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:21,153 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:SingleFile ;[\n]" -2022-11-14 09:05:21,153 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "core-i18n/fr/mappingbased_objects_disjoint_domain_fr.ttl.bz2" , "Mappingbased Objects Disjoint Domain"@en ;[\n]" -2022-11-14 09:05:21,153 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" -2022-11-14 09:05:21,153 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:checksum ;[\n]" -2022-11-14 09:05:21,153 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:isDistributionOf ;[\n]" -2022-11-14 09:05:21,153 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" -2022-11-14 09:05:21,153 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:preview ;[\n]" -2022-11-14 09:05:21,153 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:uncompressedByteSize 2701650 ;[\n]" -2022-11-14 09:05:21,153 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo ;[\n]" -2022-11-14 09:05:21,154 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "Errors detected in the mapping based properties (disjoint domain)."@en ;[\n]" -2022-11-14 09:05:21,154 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" -2022-11-14 09:05:21,154 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" -2022-11-14 09:05:21,154 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" -2022-11-14 09:05:21,154 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" -2022-11-14 09:05:21,154 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" -2022-11-14 09:05:21,154 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "Mappingbased Objects Disjoint Domain"@en ;[\n]" -2022-11-14 09:05:21,154 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:byteSize 198335 ;[\n]" -2022-11-14 09:05:21,154 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:downloadURL ;[\n]" -2022-11-14 09:05:21,154 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:mediaType dataid-mt:MediaType_turtle_x-bzip2 .[\n]" -2022-11-14 09:05:21,154 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:21,154 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:21,154 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:SingleFile ;[\n]" -2022-11-14 09:05:21,154 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "core-i18n/fr/page_links_wkd_uris_fr.tql.bz2" , "Page Links Wikidata Uris"@en ;[\n]" -2022-11-14 09:05:21,154 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" -2022-11-14 09:05:21,154 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:checksum ;[\n]" -2022-11-14 09:05:21,154 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:isDistributionOf ;[\n]" -2022-11-14 09:05:21,154 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" -2022-11-14 09:05:21,154 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:preview ;[\n]" -2022-11-14 09:05:21,154 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:uncompressedByteSize 13105172538 ;[\n]" -2022-11-14 09:05:21,154 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo ;[\n]" -2022-11-14 09:05:21,154 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "Dataset containing internal links between DBpedia instances. The dataset was created from the internal links between Wikipedia articles. The dataset might be useful for structural analysis, data mining or for ranking DBpedia instances using Page Rank or similar algorithms. Normalized dataset matching Wikidata resources (sorted)."@en ;[\n]" -2022-11-14 09:05:21,154 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" -2022-11-14 09:05:21,154 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" -2022-11-14 09:05:21,154 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" -2022-11-14 09:05:21,154 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" -2022-11-14 09:05:21,154 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" -2022-11-14 09:05:21,154 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "Page Links Wikidata Uris"@en ;[\n]" -2022-11-14 09:05:21,154 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:byteSize 457972841 ;[\n]" -2022-11-14 09:05:21,154 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:downloadURL ;[\n]" -2022-11-14 09:05:21,154 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:mediaType dataid-mt:MediaType_n-quads_x-bzip2 .[\n]" -2022-11-14 09:05:21,154 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:21,154 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:21,154 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:SingleFile ;[\n]" -2022-11-14 09:05:21,154 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "core-i18n/fr/mappingbased_objects_disjoint_domain_fr.tql.bz2" , "Mappingbased Objects Disjoint Domain"@en ;[\n]" -2022-11-14 09:05:21,154 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" -2022-11-14 09:05:21,154 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:checksum ;[\n]" -2022-11-14 09:05:21,154 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:isDistributionOf ;[\n]" -2022-11-14 09:05:21,154 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" -2022-11-14 09:05:21,154 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:preview ;[\n]" -2022-11-14 09:05:21,154 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " " -2022-11-14 09:05:21,156 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:uncompressedByteSize 6162904 ;[\n]" -2022-11-14 09:05:21,156 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo ;[\n]" -2022-11-14 09:05:21,156 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "Errors detected in the mapping based properties (disjoint domain)."@en ;[\n]" -2022-11-14 09:05:21,156 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" -2022-11-14 09:05:21,156 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" -2022-11-14 09:05:21,156 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" -2022-11-14 09:05:21,156 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" -2022-11-14 09:05:21,156 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" -2022-11-14 09:05:21,156 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "Mappingbased Objects Disjoint Domain"@en ;[\n]" -2022-11-14 09:05:21,156 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:byteSize 399521 ;[\n]" -2022-11-14 09:05:21,156 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:downloadURL ;[\n]" -2022-11-14 09:05:21,156 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:mediaType dataid-mt:MediaType_n-quads_x-bzip2 .[\n]" -2022-11-14 09:05:21,156 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:21,156 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:21,156 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid-ld:LinkedDataDataset , dataid:Dataset ;[\n]" -2022-11-14 09:05:21,156 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "Article Templates"@en ;[\n]" -2022-11-14 09:05:21,156 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" -2022-11-14 09:05:21,156 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" -2022-11-14 09:05:21,156 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " " -2022-11-14 09:05:21,157 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:previousVersion ;[\n]" -2022-11-14 09:05:21,157 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedDatasetRelation[\n]" -2022-11-14 09:05:21,157 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " ;[\n]" -2022-11-14 09:05:21,157 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:relatedDataset ;[\n]" -2022-11-14 09:05:21,157 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo , ;[\n]" -2022-11-14 09:05:21,157 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "Templates used in an article (top-level)."@en ;[\n]" -2022-11-14 09:05:21,157 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" -2022-11-14 09:05:21,157 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:isPartOf ;[\n]" -2022-11-14 09:05:21,157 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" -2022-11-14 09:05:21,157 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:language ;[\n]" -2022-11-14 09:05:21,157 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" -2022-11-14 09:05:21,157 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" -2022-11-14 09:05:21,157 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" -2022-11-14 09:05:21,157 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "Article Templates"@en ;[\n]" -2022-11-14 09:05:21,157 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " void:rootResource ;[\n]" -2022-11-14 09:05:21,157 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " void:triples 15059057 ;[\n]" -2022-11-14 09:05:21,157 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:distribution , ;[\n]" -2022-11-14 09:05:21,157 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:keyword "Article Templates"@en , "DBpedia"@en ;[\n]" -2022-11-14 09:05:21,157 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:landingPage ;[\n]" -2022-11-14 09:05:21,157 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " sd:defaultGraph ;[\n]" -2022-11-14 09:05:21,157 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " foaf:page .[\n]" -2022-11-14 09:05:21,157 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:21,157 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:21,157 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:SingleFile ;[\n]" -2022-11-14 09:05:21,157 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "core-i18n/fr/page_links_en_uris_fr.tql.bz2" , "Page Links English Uris"@en ;[\n]" -2022-11-14 09:05:21,157 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" -2022-11-14 09:05:21,157 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:checksum ;[\n]" -2022-11-14 09:05:21,157 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:isDistributionOf ;[\n]" -2022-11-14 09:05:21,157 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" -2022-11-14 09:05:21,157 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:preview ;[\n]" -2022-11-14 09:05:21,157 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:uncompressedByt" -2022-11-14 09:05:21,157 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "eSize 8258334252 ;[\n]" -2022-11-14 09:05:21,157 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo ;[\n]" -2022-11-14 09:05:21,157 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "Dataset containing internal links between DBpedia instances. The dataset was created from the internal links between Wikipedia articles. The dataset might be useful for structural analysis, data mining or for ranking DBpedia instances using Page Rank or similar algorithms. Normalized dataset matching English DBpedia resources."@en ;[\n]" -2022-11-14 09:05:21,157 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" -2022-11-14 09:05:21,157 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" -2022-11-14 09:05:21,157 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" -2022-11-14 09:05:21,157 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" -2022-11-14 09:05:21,157 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" -2022-11-14 09:05:21,157 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "Page Links English Uris"@en ;[\n]" -2022-11-14 09:05:21,157 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:byteSize 390384247 ;[\n]" -2022-11-14 09:05:21,157 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:downloadURL ;[\n]" -2022-11-14 09:05:21,157 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:mediaType dataid-mt:MediaType_n-quads_x-bzip2 .[\n]" -2022-11-14 09:05:21,157 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:21,157 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:21,157 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:SingleFile ;[\n]" -2022-11-14 09:05:21,157 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label " -2022-11-14 09:05:21,159 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " "core-i18n/fr/commons_page_links_fr.ttl.bz2" , "Commons Page Links"@en ;[\n]" -2022-11-14 09:05:21,159 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" -2022-11-14 09:05:21,159 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:checksum ;[\n]" -2022-11-14 09:05:21,159 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:isDistributionOf ;[\n]" -2022-11-14 09:05:21,159 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" -2022-11-14 09:05:21,159 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:preview ;[\n]" -2022-11-14 09:05:21,159 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:uncompressedByteSize 6057 ;[\n]" -2022-11-14 09:05:21,159 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo ;[\n]" -2022-11-14 09:05:21,159 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "Dataset containing links between a language-locale DBpedia instance and DBpedia Commons."@en ;[\n]" -2022-11-14 09:05:21,159 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" -2022-11-14 09:05:21,159 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" -2022-11-14 09:05:21,159 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" -2022-11-14 09:05:21,159 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" -2022-11-14 09:05:21,159 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" -2022-11-14 09:05:21,159 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "Commons Page Links"@en ;[\n]" -2022-11-14 09:05:21,159 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:byteSize 1243 ;[\n]" -2022-11-14 09:05:21,159 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:downloadURL ;[\n]" -2022-11-14 09:05:21,159 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:mediaType dataid-mt:MediaType_turtle_x-bzip2 .[\n]" -2022-11-14 09:05:21,159 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:21,159 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:21,159 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:SingleFile ;[\n]" -2022-11-14 09:05:21,159 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "core-i18n/fr/pnd_fr.tql.bz2" , "pnd"@en ;[\n]" -2022-11-14 09:05:21,159 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" -2022-11-14 09:05:21,159 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:checksum ;[\n]" -2022-11-14 09:05:21,159 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:isDistributionOf ;[\n]" -2022-11-14 09:05:21,159 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" -2022-11-14 09:05:21,159 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:preview ;[\n]" -2022-11-14 09:05:21,159 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:uncompressedByteSize 88363 ;[\n]" -2022-11-14 09:05:21,159 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo ;[\n]" -2022-11-14 09:05:21,159 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "DBpedia dataset pnd, subset of "@en ;[\n]" -2022-11-14 09:05:21,159 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" -2022-11-14 09:05:21,160 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" -2022-11-14 09:05:21,160 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" -2022-11-14 09:05:21,160 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" -2022-11-14 09:05:21,160 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" -2022-11-14 09:05:21,160 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "pnd"@en ;[\n]" -2022-11-14 09:05:21,160 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:byteSize 8741 ;[\n]" -2022-11-14 09:05:21,160 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:downloadURL ;[\n]" -2022-11-14 09:05:21,160 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:mediaType dataid-mt:MediaType_n-quads_x-bzip2 .[\n]" -2022-11-14 09:05:21,160 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:21,160 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:21,160 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:SingleFile ;[\n]" -2022-11-14 09:05:21,160 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "Labels"@en , "core-i18n/fr/labels_fr.ttl.bz2" ;[\n]" -2022-11-14 09:05:21,160 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" -2022-11-14 09:05:21,160 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:checksum ;[\n]" -2022-11-14 09:05:21,160 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:isDistributionOf ;[\n]" -2022-11-14 09:05:21,160 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" -2022-11-14 09:05:21,160 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:preview ;[\n]" -2022-11-14 09:05:21,160 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " da" -2022-11-14 09:05:21,161 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "taid:uncompressedByteSize 412290012 ;[\n]" -2022-11-14 09:05:21,161 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo ;[\n]" -2022-11-14 09:05:21,161 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "Titles of all Wikipedia Articles in the corresponding language. In Wikidata, it contains all the languages available in the mappings wiki, labels_nmw contains the rest "@en ;[\n]" -2022-11-14 09:05:21,161 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" -2022-11-14 09:05:21,161 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" -2022-11-14 09:05:21,161 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" -2022-11-14 09:05:21,161 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" -2022-11-14 09:05:21,161 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" -2022-11-14 09:05:21,161 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "Labels"@en ;[\n]" -2022-11-14 09:05:21,161 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:byteSize 46758143 ;[\n]" -2022-11-14 09:05:21,161 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:downloadURL ;[\n]" -2022-11-14 09:05:21,161 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:mediaType dataid-mt:MediaType_turtle_x-bzip2 .[\n]" -2022-11-14 09:05:21,161 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:21,161 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:21,161 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid-ld:LinkedDataDataset , dataid:Dataset ;[\n]" -2022-11-14 09:05:21,161 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "Topical Concepts English Uris"@en ;[\n]" -2022-11-14 09:05:21,161 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" -2022-11-14 09:05:21,161 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" -2022-11-14 09:05:21,161 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedDatasetRelation[\n]" -2022-11-14 09:05:21,161 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " ;[\n]" -2022-11-14 09:05:21,161 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:relatedDataset ;[\n]" -2022-11-14 09:05:21,161 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo , ;[\n]" -2022-11-14 09:05:21,161 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "Resources that describe a category Normalized dataset matching English DBpedia resources."@en ;[\n]" -2022-11-14 09:05:21,161 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" -2022-11-14 09:05:21,161 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:isPartOf ;[\n]" -2022-11-14 09:05:21,161 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" -2022-11-14 09:05:21,161 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:language ;[\n]" -2022-11-14 09:05:21,161 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" -2022-11-14 09:05:21,161 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" -2022-11-14 09:05:21,161 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" -2022-11-14 09:05:21,161 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "Topical Concepts English Uris"@en ;[\n]" -2022-11-14 09:05:21,161 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " void:rootResource ;[\n]" -2022-11-14 09:05:21,161 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " void:triples 66866 ;[\n]" -2022-11-14 09:05:21,161 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:distribution , ;[\n]" -2022-11-14 09:05:21,162 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:keyword "DBpedia"@en , "Topical Concepts English Uris"@en ;[\n]" -2022-11-14 09:05:21,162 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:landingPage ;[\n]" -2022-11-14 09:05:21,162 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " sd:defaultGraph ;[\n]" -2022-11-14 09:05:21,162 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " foaf:page .[\n]" -2022-11-14 09:05:21,162 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:21,162 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:21,162 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:SingleFile ;[\n]" -2022-11-14 09:05:21,162 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "Person data English Uris"@en , "core-i18n/fr/persondata_en_uris_fr.tql.bz2" ;[\n]" -2022-11-14 09:05:21,162 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" -2022-11-14 09:05:21,162 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:checksum ;[\n]" -2022-11-14 09:05:21,162 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:isDistributionOf ;[\n]" -2022-11-14 09:05:21,162 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" -2022-11-14 09:05:21,162 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:preview ;[\n]" -2022-11-14 09:05:21,162 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:uncompressedByteSize 428486896 ;[\n]" -2022-11-14 09:05:21,162 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo ;[\n]" -2022-11-14 09:05:21,162 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "Information about persons (date and place of birth etc., extracted from the English and Ge" -2022-11-14 09:05:21,163 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "rman Wikipedia, represented using the FOAF vocabulary. Normalized dataset matching English DBpedia resources."@en ;[\n]" -2022-11-14 09:05:21,163 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" -2022-11-14 09:05:21,163 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" -2022-11-14 09:05:21,163 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" -2022-11-14 09:05:21,163 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" -2022-11-14 09:05:21,163 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" -2022-11-14 09:05:21,163 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "Person data English Uris"@en ;[\n]" -2022-11-14 09:05:21,163 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:byteSize 24759356 ;[\n]" -2022-11-14 09:05:21,163 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:downloadURL ;[\n]" -2022-11-14 09:05:21,163 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:mediaType dataid-mt:MediaType_n-quads_x-bzip2 .[\n]" -2022-11-14 09:05:21,163 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:21,163 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:21,163 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:SingleFile ;[\n]" -2022-11-14 09:05:21,163 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "core-i18n/fr/freebase_links_fr.ttl.bz2" , "Freebase Links"@en ;[\n]" -2022-11-14 09:05:21,163 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" -2022-11-14 09:05:21,163 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:checksum ;[\n]" -2022-11-14 09:05:21,163 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:isDistributionOf ;[\n]" -2022-11-14 09:05:21,163 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" -2022-11-14 09:05:21,163 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:preview ;[\n]" -2022-11-14 09:05:21,163 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:uncompressedByteSize 253036348 ;[\n]" -2022-11-14 09:05:21,163 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo ;[\n]" -2022-11-14 09:05:21,163 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "This file contains the back-links (owl:sameAs) to the Freebase dataset."@en ;[\n]" -2022-11-14 09:05:21,163 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" -2022-11-14 09:05:21,163 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" -2022-11-14 09:05:21,163 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" -2022-11-14 09:05:21,163 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" -2022-11-14 09:05:21,163 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" -2022-11-14 09:05:21,163 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "Freebase Links"@en ;[\n]" -2022-11-14 09:05:21,163 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:byteSize 21671471 ;" -2022-11-14 09:05:21,164 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:21,164 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:downloadURL ;[\n]" -2022-11-14 09:05:21,164 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:mediaType dataid-mt:MediaType_turtle_x-bzip2 .[\n]" -2022-11-14 09:05:21,164 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:21,164 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:21,164 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:SingleFile ;[\n]" -2022-11-14 09:05:21,164 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "core-i18n/fr/instance_types_fr.ttl.bz2" , "Instance Types"@en ;[\n]" -2022-11-14 09:05:21,164 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" -2022-11-14 09:05:21,164 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:checksum ;[\n]" -2022-11-14 09:05:21,164 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:isDistributionOf ;[\n]" -2022-11-14 09:05:21,164 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" -2022-11-14 09:05:21,164 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:preview ;[\n]" -2022-11-14 09:05:21,164 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:uncompressedByteSize 265270299 ;[\n]" -2022-11-14 09:05:21,164 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo ;[\n]" -2022-11-14 09:05:21,164 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "Contains triples of the form $object rdf:type $class from the mapping-based extraction."@en ;[\n]" -2022-11-14 09:05:21,164 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" -2022-11-14 09:05:21,164 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" -2022-11-14 09:05:21,164 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" -2022-11-14 09:05:21,164 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" -2022-11-14 09:05:21,164 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" -2022-11-14 09:05:21,164 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "Instance Types"@en ;[\n]" -2022-11-14 09:05:21,164 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:byteSize 12470589 ;[\n]" -2022-11-14 09:05:21,164 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:downloadURL ;[\n]" -2022-11-14 09:05:21,164 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:mediaType dataid-mt:MediaType_turtle_x-bzip2 .[\n]" -2022-11-14 09:05:21,164 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:21,164 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:21,164 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:SingleFile ;[\n]" -2022-11-14 09:05:21,164 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "core-i18n/fr/instance_types_fr.tql.bz2" , "Instance Types"@en ;[\n]" -2022-11-14 09:05:21,164 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" -2022-11-14 09:05:21,164 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:checksum ;[\n]" -2022-11-14 09:05:21,164 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:isDistributionOf ;[\n]" -2022-11-14 09:05:21,164 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" -2022-11-14 09:05:21,164 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " " -2022-11-14 09:05:21,165 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:preview ;[\n]" -2022-11-14 09:05:21,165 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:uncompressedByteSize 473611810 ;[\n]" -2022-11-14 09:05:21,165 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo ;[\n]" -2022-11-14 09:05:21,165 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "Contains triples of the form $object rdf:type $class from the mapping-based extraction."@en ;[\n]" -2022-11-14 09:05:21,165 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" -2022-11-14 09:05:21,165 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" -2022-11-14 09:05:21,165 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" -2022-11-14 09:05:21,165 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" -2022-11-14 09:05:21,165 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" -2022-11-14 09:05:21,165 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "Instance Types"@en ;[\n]" -2022-11-14 09:05:21,165 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:byteSize 25205105 ;[\n]" -2022-11-14 09:05:21,165 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:downloadURL ;[\n]" -2022-11-14 09:05:21,165 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:mediaType dataid-mt:MediaType_n-quads_x-bzip2 .[\n]" -2022-11-14 09:05:21,165 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:21,165 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:21,165 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:Dataset , dataid-ld:LinkedDataDataset ;[\n]" -2022-11-14 09:05:21,165 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "External Links English Uris"@en ;[\n]" -2022-11-14 09:05:21,165 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" -2022-11-14 09:05:21,165 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" -2022-11-14 09:05:21,165 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:previousVersion ;[\n]" -2022-11-14 09:05:21,165 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedDatasetRelation[\n]" -2022-11-14 09:05:21,165 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " ;[\n]" -2022-11-14 09:05:21,165 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:relatedDataset ;[\n]" -2022-11-14 09:05:21,165 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo , ;[\n]" -2022-11-14 09:05:21,165 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "Links to external web pages about a concept. Normalized dataset matching English DBpedia resources."@en ;[\n]" -2022-11-14 09:05:21,165 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" -2022-11-14 09:05:21,165 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:isPartOf ;[\n]" -2022-11-14 09:05:21,165 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" -2022-11-14 09:05:21,165 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:language ;[\n]" -2022-11-14 09:05:21,165 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" -2022-11-14 09:05:21,165 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" -2022-11-14 09:05:21,165 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" -2022-11-14 09:05:21,165 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "External Links English Uris"@en ;" -2022-11-14 09:05:21,165 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:21,165 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " void:rootResource ;[\n]" -2022-11-14 09:05:21,165 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " void:triples 1219872 ;[\n]" -2022-11-14 09:05:21,165 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:distribution , ;[\n]" -2022-11-14 09:05:21,165 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:keyword "External Links English Uris"@en , "DBpedia"@en ;[\n]" -2022-11-14 09:05:21,165 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:landingPage ;[\n]" -2022-11-14 09:05:21,165 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " sd:defaultGraph ;[\n]" -2022-11-14 09:05:21,165 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " foaf:page .[\n]" -2022-11-14 09:05:21,165 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:21,165 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:21,165 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:Dataset , dataid-ld:LinkedDataDataset ;[\n]" -2022-11-14 09:05:21,165 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "Topical Concepts Wikidata Uris"@en ;[\n]" -2022-11-14 09:05:21,165 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" -2022-11-14 09:05:21,165 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" -2022-11-14 09:05:21,165 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedDatasetRelation[\n]" -2022-11-14 09:05:21,165 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " ;[\n]" -2022-11-14 09:05:21,165 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:relatedDataset ;[\n]" -2022-11-14 09:05:21,165 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsT" -2022-11-14 09:05:21,167 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "o , ;[\n]" -2022-11-14 09:05:21,167 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "Resources that describe a category Normalized dataset matching Wikidata resources (sorted)."@en ;[\n]" -2022-11-14 09:05:21,167 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" -2022-11-14 09:05:21,167 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:isPartOf ;[\n]" -2022-11-14 09:05:21,167 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" -2022-11-14 09:05:21,167 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:language ;[\n]" -2022-11-14 09:05:21,167 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" -2022-11-14 09:05:21,167 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" -2022-11-14 09:05:21,167 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" -2022-11-14 09:05:21,167 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "Topical Concepts Wikidata Uris"@en ;[\n]" -2022-11-14 09:05:21,167 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " void:rootResource ;[\n]" -2022-11-14 09:05:21,167 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " void:triples 93773 ;[\n]" -2022-11-14 09:05:21,167 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:distribution , ;[\n]" -2022-11-14 09:05:21,167 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:keyword "DBpedia"@en , "Topical Concepts Wikidata Uris"@en ;[\n]" -2022-11-14 09:05:21,167 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:landingPage ;[\n]" -2022-11-14 09:05:21,167 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " sd:defaultGraph ;[\n]" -2022-11-14 09:05:21,167 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " foaf:page .[\n]" -2022-11-14 09:05:21,167 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:21,167 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:21,167 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:SingleFile ;[\n]" -2022-11-14 09:05:21,167 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "core-i18n/fr/skos_categories_fr.ttl.bz2" , "SKOS Categories"@en ;[\n]" -2022-11-14 09:05:21,167 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" -2022-11-14 09:05:21,167 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:checksum ;[\n]" -2022-11-14 09:05:21,167 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:isDistributionOf ;[\n]" -2022-11-14 09:05:21,167 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" -2022-11-14 09:05:21,167 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:preview ;[\n]" -2022-11-14 09:05:21,167 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:uncompressedByteSize 245688973 ;[\n]" -2022-11-14 09:05:21,167 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo ;[\n]" -2022-11-14 09:05:21,167 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "Information which concept is a category and how categories are related using the SKOS Vocabulary."@en ;[\n]" -2022-11-14 09:05:21,167 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" -2022-11-14 09:05:21,167 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" -2022-11-14 09:05:21,167 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" -2022-11-14 09:05:21,167 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" -2022-11-14 09:05:21,167 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" -2022-11-14 09:05:21,167 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "SKOS Categories"@en ;[\n]" -2022-11-14 09:05:21,167 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:byteSize 10275884 ;[\n]" -2022-11-14 09:05:21,167 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:downloadURL ;[\n]" -2022-11-14 09:05:21,167 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:mediaType dataid-mt:MediaType_turtle_x-bzip2 .[\n]" -2022-11-14 09:05:21,167 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:21,167 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:21,167 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:Dataset , dataid-ld:LinkedDataDataset ;[\n]" -2022-11-14 09:05:21,167 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "Rransitive Redirects"@en ;[\n]" -2022-11-14 09:05:21,167 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" -2022-11-14 09:05:21,167 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" -2022-11-14 09:05:21,167 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:previousVersion ;[\n]" -2022-11-14 09:05:21,167 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedDatasetRelation[\n]" -2022-11-14 09:05:21,167 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " ;[\n]" -2022-11-14 09:05:21,167 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:relatedDataset ;[\n]" -2022-11-14 09:05:21,172 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo , ;[\n]" -2022-11-14 09:05:21,172 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "Dataset containing transitively resolved redirects between articles in Wikipedia."@en ;[\n]" -2022-11-14 09:05:21,172 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" -2022-11-14 09:05:21,172 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:isPartOf ;[\n]" -2022-11-14 09:05:21,174 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" -2022-11-14 09:05:21,174 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:language ;[\n]" -2022-11-14 09:05:21,174 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license" -2022-11-14 09:05:21,197 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " ;[\n]" -2022-11-14 09:05:21,197 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" -2022-11-14 09:05:21,197 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" -2022-11-14 09:05:21,197 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "Rransitive Redirects"@en ;[\n]" -2022-11-14 09:05:21,197 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " void:rootResource ;[\n]" -2022-11-14 09:05:21,199 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " void:triples 1440224 ;[\n]" -2022-11-14 09:05:21,199 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:distribution ;[\n]" -2022-11-14 09:05:21,199 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:keyword "DBpedia"@en , "Rransitive Redirects"@en ;[\n]" -2022-11-14 09:05:21,199 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:landingPage ;[\n]" -2022-11-14 09:05:21,199 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " sd:defaultGraph ;[\n]" -2022-11-14 09:05:21,199 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " foaf:page .[\n]" -2022-11-14 09:05:21,201 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:21,201 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:21,201 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid-ld:LinkedDataDataset , dataid:Dataset ;[\n]" -2022-11-14 09:05:21,201 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "Redirects"@en ;[\n]" -2022-11-14 09:05:21,201 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " " -2022-11-14 09:05:21,204 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" -2022-11-14 09:05:21,204 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" -2022-11-14 09:05:21,204 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:previousVersion ;[\n]" -2022-11-14 09:05:21,204 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedDatasetRelation[\n]" -2022-11-14 09:05:21,204 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " ;[\n]" -2022-11-14 09:05:21,204 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:relatedDataset ;[\n]" -2022-11-14 09:05:21,204 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo , ;[\n]" -2022-11-14 09:05:21,204 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "Dataset containing redirects between articles in Wikipedia."@en ;[\n]" -2022-11-14 09:05:21,204 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" -2022-11-14 09:05:21,204 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:isPartOf ;[\n]" -2022-11-14 09:05:21,204 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" -2022-11-14 09:05:21,204 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:language ;[\n]" -2022-11-14 09:05:21,204 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" -2022-11-14 09:05:21,204 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " " -2022-11-14 09:05:21,205 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "dc:modified "2017-07-06"^^xsd:date ;[\n]" -2022-11-14 09:05:21,205 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" -2022-11-14 09:05:21,205 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "Redirects"@en ;[\n]" -2022-11-14 09:05:21,205 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " void:rootResource ;[\n]" -2022-11-14 09:05:21,205 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " void:triples 1444933 ;[\n]" -2022-11-14 09:05:21,205 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:distribution , ;[\n]" -2022-11-14 09:05:21,205 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:keyword "DBpedia"@en , "Redirects"@en ;[\n]" -2022-11-14 09:05:21,205 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:landingPage ;[\n]" -2022-11-14 09:05:21,205 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " sd:defaultGraph ;[\n]" -2022-11-14 09:05:21,205 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " foaf:page .[\n]" -2022-11-14 09:05:21,205 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:21,205 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:21,205 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:Dataset , dataid-ld:LinkedDataDataset ;[\n]" -2022-11-14 09:05:21,205 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "Article Categories Wikidata Uris"@en ;[\n]" -2022-11-14 09:05:21,205 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" -2022-11-14 09:05:21,205 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" -2022-11-14 09:05:21,205 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:previousVersion ;[\n]" -2022-11-14 09:05:21,205 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedDatasetRelation[\n]" -2022-11-14 09:05:21,205 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " ;[\n]" -2022-11-14 09:05:21,205 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:relatedDataset ;[\n]" -2022-11-14 09:05:21,205 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo , ;[\n]" -2022-11-14 09:05:21,205 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "Links from concepts to categories using the SKOS vocabulary. Normalized dataset matching Wikidata resources (sorted)."@en ;[\n]" -2022-11-14 09:05:21,205 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" -2022-11-14 09:05:21,205 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:isPartOf ;[\n]" -2022-11-14 09:05:21,205 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" -2022-11-14 09:05:21,205 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:language ;[\n]" -2022-11-14 09:05:21,205 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" -2022-11-14 09:05:21,205 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" -2022-11-14 09:05:21,205 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" -2022-11-14 09:05:21,205 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "Article Categories Wikidata Uris"@en ;[\n]" -2022-11-14 09:05:21,205 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " void:rootResource ;[\n]" -2022-11-14 09:05:21,205 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " void:triples 5515693 ;[\n]" -2022-11-14 09:05:21,205 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:distribution , ;[\n]" -2022-11-14 09:05:21,205 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:keyword "Article Categories Wikidata Uris"@en , "DBpedia"@en ;[\n]" -2022-11-14 09:05:21,205 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:landingPage ;[\n]" -2022-11-14 09:05:21,205 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " sd:defaultGraph ;[\n]" -2022-11-14 09:05:21,205 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " foaf:page .[\n]" -2022-11-14 09:05:21,205 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:21,205 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:21,205 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:SingleFile ;[\n]" -2022-11-14 09:05:21,205 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "core-i18n/fr/nif_page_structure_fr.ttl.bz2" , "NIF page structure"@en ;[\n]" -2022-11-14 09:05:21,205 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" -2022-11-14 09:05:21,205 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:checksum ;[\n]" -2022-11-14 09:05:21,205 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:is" -2022-11-14 09:05:21,235 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "DistributionOf ;[\n]" -2022-11-14 09:05:21,235 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" -2022-11-14 09:05:21,235 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:preview ;[\n]" -2022-11-14 09:05:21,243 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:uncompressedByteSize 56340318016 ;[\n]" -2022-11-14 09:05:21,243 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " " -2022-11-14 09:05:21,245 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "dc:conformsTo ;[\n]" -2022-11-14 09:05:21,245 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "This dataset contains the page structure of a Wikipedia page, divided in sections and paragraphs."@en ;[\n]" -2022-11-14 09:05:21,245 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" -2022-11-14 09:05:21,245 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" -2022-11-14 09:05:21,245 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" -2022-11-14 09:05:21,245 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" -2022-11-14 09:05:21,245 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" -2022-11-14 09:05:21,245 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "NIF page structure"@en ;[\n]" -2022-11-14 09:05:21,245 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:byteSize 1025049542 ;[\n]" -2022-11-14 09:05:21,245 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:downloadURL ;[\n]" -2022-11-14 09:05:21,245 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:mediaType dataid-mt:MediaType_turtle_x-bzip2 .[\n]" -2022-11-14 09:05:21,245 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:21,245 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:21,245 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:Dataset , dataid-ld:LinkedDataDataset ;[\n]" -2022-11-14 09:05:21,245 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "Long Abstracts English Uris"@en ;[\n]" -2022-11-14 09:05:21,245 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" -2022-11-14 09:05:21,245 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" -2022-11-14 09:05:21,245 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:previousVersion ;[\n]" -2022-11-14 09:05:21,245 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedDatasetRelation[\n]" -2022-11-14 09:05:21,245 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " ;[\n]" -2022-11-14 09:05:21,245 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:relatedDataset ;[\n]" -2022-11-14 09:05:21,245 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo , ;[\n]" -2022-11-14 09:05:21,245 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "Long abstracts (full abstracts) of Wikipedia articles, usually the first section. Normalized dataset matching English DBpedia resources."@en ;[\n]" -2022-11-14 09:05:21,245 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" -2022-11-14 09:05:21,245 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:isPartOf ;[\n]" -2022-11-14 09:05:21,245 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" -2022-11-14 09:05:21,245 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:language ;[\n]" -2022-11-14 09:05:21,245 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" -2022-11-14 09:05:21,245 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" -2022-11-14 09:05:21,245 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" -2022-11-14 09:05:21,245 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "Long Abstracts English Uris"@en ;[\n]" -2022-11-14 09:05:21,245 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " void:rootResource ;[\n]" -2022-11-14 09:05:21,245 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " void:sparqlEndpoint ;[\n]" -2022-11-14 09:05:21,247 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " void:triples 1099339 ;[\n]" -2022-11-14 09:05:21,247 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:distribution , , ;[\n]" -2022-11-14 09:05:21,247 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:keyword "DBpedia"@en , "Long Abstracts English Uris"@en ;[\n]" -2022-11-14 09:05:21,247 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:landingPage ;[\n]" -2022-11-14 09:05:21,247 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " sd:defaultGraph ;[\n]" -2022-11-14 09:05:21,247 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " foaf:page .[\n]" -2022-11-14 09:05:21,247 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:21,247 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:21,247 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:SingleFile ;[\n]" -2022-11-14 09:05:21,247 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "NIF page structure"@en , "core-i18n/fr/nif_page_structure_fr.tql.bz2" ;[\n]" -2022-11-14 09:05:21,247 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" -2022-11-14 09:05:21,247 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:checksum ;[\n]" -2022-11-14 09:05:21,247 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:isDistributionOf ;[\n]" -2022-11-14 09:05:21,247 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" -2022-11-14 09:05:21,247 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:preview ;[\n]" -2022-11-14 09:05:21,247 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:uncompressedByteSize 72056476808 ;[\n]" -2022-11-14 09:05:21,247 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo ;[\n]" -2022-11-14 09:05:21,247 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "This dataset contains the page structure of a Wikipedia page, divided in sections and paragraphs."@en ;[\n]" -2022-11-14 09:05:21,247 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" -2022-11-14 09:05:21,247 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" -2022-11-14 09:05:21,247 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" -2022-11-14 09:05:21,247 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" -2022-11-14 09:05:21,247 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" -2022-11-14 09:05:21,247 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "NIF page structure"@en ;[\n]" -2022-11-14 09:05:21,247 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:byteSize 1085131121 ;[\n]" -2022-11-14 09:05:21,247 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:downloadURL ;[\n]" -2022-11-14 09:05:21,247 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:mediaType dataid-mt:MediaType_n-quads_x-bzip2 .[\n]" -2022-11-14 09:05:21,247 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:21,247 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:21,275 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a d" -2022-11-14 09:05:21,285 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "ataid:SingleFile ;[\n]" -2022-11-14 09:05:21,285 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "Short Abstracts English Uris"@en , "core-i18n/fr/short_abstracts_en_uris_fr.ttl.bz2" ;[\n]" -2022-11-14 09:05:21,285 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" -2022-11-14 09:05:21,285 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:checksum ;[\n]" -2022-11-14 09:05:21,285 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:isDistributionOf ;[\n]" -2022-11-14 09:05:21,285 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" -2022-11-14 09:05:21,285 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:preview ;[\n]" -2022-11-14 09:05:21,285 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:uncompressedByteSize 450469632 ;[\n]" -2022-11-14 09:05:21,285 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo ;[\n]" -2022-11-14 09:05:21,285 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "Short Abstracts (about 600 characters long) of Wikipedia articles. Normalized dataset matching English DBpedia resources."@en ;[\n]" -2022-11-14 09:05:21,285 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" -2022-11-14 09:05:21,285 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" -2022-11-14 09:05:21,285 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" -2022-11-14 09:05:21,285 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" -2022-11-14 09:05:21,285 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" -2022-11-14 09:05:21,285 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "Short Abstracts English Uris"@en ;[\n]" -2022-11-14 09:05:21,285 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:byteSize 99360159 ;[\n]" -2022-11-14 09:05:21,285 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:downloadURL ;[\n]" -2022-11-14 09:05:21,285 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:mediaType dataid-mt:MediaType_turtle_x-bzip2 .[\n]" -2022-11-14 09:05:21,285 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:21,285 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:21,285 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:Dataset , dataid-ld:LinkedDataDataset ;[\n]" -2022-11-14 09:05:21,285 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "Specific Mappingbased Properties"@en ;[\n]" -2022-11-14 09:05:21,285 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" -2022-11-14 09:05:21,285 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" -2022-11-14 09:05:21,285 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:previousVersion ;[\n]" -2022-11-14 09:05:21,285 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedDatasetRelation[\n]" -2022-11-14 09:05:21,285 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " ;[\n]" -2022-11-14 09:05:21,285 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:relatedDataset ;[\n]" -2022-11-14 09:05:21,285 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo , ;[\n]" -2022-11-14 09:05:21,287 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "Infobox data from the mapping-based extraction, using units of measurement more convenient for the resource type, e.g. square kilometres instead of square metres for the area of a city."@en ;[\n]" -2022-11-14 09:05:21,287 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" -2022-11-14 09:05:21,287 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:isPartOf ;[\n]" -2022-11-14 09:05:21,287 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" -2022-11-14 09:05:21,287 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:language ;[\n]" -2022-11-14 09:05:21,287 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" -2022-11-14 09:05:21,287 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" -2022-11-14 09:05:21,287 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" -2022-11-14 09:05:21,287 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "Specific Mappingbased Properties"@en ;[\n]" -2022-11-14 09:05:21,287 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " void:rootResource ;[\n]" -2022-11-14 09:05:21,287 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " void:triples 60835 ;[\n]" -2022-11-14 09:05:21,287 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:distribution , ;[\n]" -2022-11-14 09:05:21,287 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:keyword "Specific Mappingbased Properties"@en , "DBpedia"@en ;[\n]" -2022-11-14 09:05:21,287 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:landingPage ;[\n]" -2022-11-14 09:05:21,287 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " sd:defaultGraph ;[\n]" -2022-11-14 09:05:21,287 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " foaf:page .[\n]" -2022-11-14 09:05:21,287 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:21,287 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:21,287 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:SingleFile ;[\n]" -2022-11-14 09:05:21,287 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "Short Abstracts English Uris"@en , "core-i18n/fr/short_abstracts_en_uris_fr.tql.bz2" ;[\n]" -2022-11-14 09:05:21,287 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" -2022-11-14 09:05:21,287 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:checksum ;[\n]" -2022-11-14 09:05:21,287 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:isDistributionOf ;[\n]" -2022-11-14 09:05:21,287 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" -2022-11-14 09:05:21,287 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:preview ;[\n]" -2022-11-14 09:05:21,287 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:uncompressedByteSize 523363622 ;[\n]" -2022-11-14 09:05:21,287 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo ;[\n]" -2022-11-14 09:05:21,287 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "Short Abstracts (about 600 characters long) of Wikipedia article" -2022-11-14 09:05:21,316 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "s. Normalized dataset matching English DBpedia resources."@en ;[\n]" -2022-11-14 09:05:21,316 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" -2022-11-14 09:05:21,316 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" -2022-11-14 09:05:21,316 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" -2022-11-14 09:05:21,332 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" -2022-11-14 09:05:21,332 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" -2022-11-14 09:05:21,332 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "Short Abstracts English Uris"@en ;[\n]" -2022-11-14 09:05:21,332 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:byteSize 111766632 ;[\n]" -2022-11-14 09:05:21,332 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:downloadURL ;[\n]" -2022-11-14 09:05:21,332 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:mediaType dataid-mt:MediaType_n-quads_x-bzip2 .[\n]" -2022-11-14 09:05:21,332 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:21,332 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:21,332 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:Dataset , dataid-ld:LinkedDataDataset ;[\n]" -2022-11-14 09:05:21,332 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "Revision Uris"@en ;[\n]" -2022-11-14 09:05:21,332 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" -2022-11-14 09:05:21,332 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" -2022-11-14 09:05:21,332 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:previousVersion ;[\n]" -2022-11-14 09:05:21,332 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedDatasetRelation[\n]" -2022-11-14 09:05:21,332 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " ;[\n]" -2022-11-14 09:05:21,332 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:relatedDataset ;[\n]" -2022-11-14 09:05:21,332 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo , ;[\n]" -2022-11-14 09:05:21,332 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "Dataset linking DBpedia resource to the specific Wikipedia article revision used in this DBpedia release."@en ;[\n]" -2022-11-14 09:05:21,332 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" -2022-11-14 09:05:21,332 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:isPartOf ;[\n]" -2022-11-14 09:05:21,332 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" -2022-11-14 09:05:21,332 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:language ;[\n]" -2022-11-14 09:05:21,332 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" -2022-11-14 09:05:21,332 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" -2022-11-14 09:05:21,332 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" -2022-11-14 09:05:21,332 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "Revision Uris"@en ;[\n]" -2022-11-14 09:05:21,332 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " void:rootResource ;[\n]" -2022-11-14 09:05:21,332 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " void:triples 3831703 ;[\n]" -2022-11-14 09:05:21,332 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:distribution , ;" -2022-11-14 09:05:21,334 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:21,334 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:keyword "Revision Uris"@en , "DBpedia"@en ;[\n]" -2022-11-14 09:05:21,334 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:landingPage ;[\n]" -2022-11-14 09:05:21,334 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " sd:defaultGraph ;[\n]" -2022-11-14 09:05:21,334 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " foaf:page .[\n]" -2022-11-14 09:05:21,334 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:21,334 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:21,334 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:SingleFile ;[\n]" -2022-11-14 09:05:21,334 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "core-i18n/fr/pnd_en_uris_fr.ttl.bz2" , "pnd English Uris"@en ;[\n]" -2022-11-14 09:05:21,334 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" -2022-11-14 09:05:21,334 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:checksum ;[\n]" -2022-11-14 09:05:21,334 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:isDistributionOf ;[\n]" -2022-11-14 09:05:21,334 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" -2022-11-14 09:05:21,334 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:preview ;[\n]" -2022-11-14 09:05:21,334 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:uncompressedByteSize 27988 ;[\n]" -2022-11-14 09:05:21,334 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo ;[\n]" -2022-11-14 09:05:21,334 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "Undescribed Dataset Normalized dataset matching English DBpedia resources."@en ;[\n]" -2022-11-14 09:05:21,334 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" -2022-11-14 09:05:21,334 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" -2022-11-14 09:05:21,334 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" -2022-11-14 09:05:21,334 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" -2022-11-14 09:05:21,334 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" -2022-11-14 09:05:21,334 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "pnd English Uris"@en ;[\n]" -2022-11-14 09:05:21,334 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:byteSize 3696 ;[\n]" -2022-11-14 09:05:21,334 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:downloadURL ;[\n]" -2022-11-14 09:05:21,334 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:mediaType dataid-mt:MediaType_turtle_x-bzip2 .[\n]" -2022-11-14 09:05:21,334 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:21,334 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:21,334 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:SingleFile ;[\n]" -2022-11-14 09:05:21,334 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "core-i18n/fr/specific_mappingbased_properties_en_uris_fr.ttl.bz2" , "Specific Mappingbased Properties English Uris"@en ;[\n]" -2022-11-14 09:05:21,334 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" -2022-11-14 09:05:21,334 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:checksum ;[\n]" -2022-11-14 09:05:21,334 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:isDistributionOf ;[\n]" -2022-11-14 09:05:21,355 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" -2022-11-14 09:05:21,355 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:preview ;[\n]" -2022-11-14 09:05:21,355 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:uncompressedByteSize 7027463 ;[\n]" -2022-11-14 09:05:21,355 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo ;[\n]" -2022-11-14 09:05:21,355 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "Infobox data from the mapping-based extraction, using units of measurement more convenien" -2022-11-14 09:05:21,378 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "t for the resource type, e.g. square kilometres instead of square metres for the area of a city. Normalized dataset matching English DBpedia resources."@en ;[\n]" -2022-11-14 09:05:21,378 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" -2022-11-14 09:05:21,378 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" -2022-11-14 09:05:21,378 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" -2022-11-14 09:05:21,378 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" -2022-11-14 09:05:21,378 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" -2022-11-14 09:05:21,378 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "Specific Mappingbased Properties English Uris"@en ;[\n]" -2022-11-14 09:05:21,378 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:byteSize 458200" -2022-11-14 09:05:21,387 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " ;[\n]" -2022-11-14 09:05:21,387 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:downloadURL ;[\n]" -2022-11-14 09:05:21,387 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:mediaType dataid-mt:MediaType_turtle_x-bzip2 .[\n]" -2022-11-14 09:05:21,387 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:21,387 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:21,387 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:Dataset , dataid-ld:LinkedDataDataset ;[\n]" -2022-11-14 09:05:21,387 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "Short Abstracts English Uris"@en ;[\n]" -2022-11-14 09:05:21,387 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" -2022-11-14 09:05:21,387 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" -2022-11-14 09:05:21,387 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:previousVersion ;[\n]" -2022-11-14 09:05:21,387 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedDatasetRelation[\n]" -2022-11-14 09:05:21,387 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " ;[\n]" -2022-11-14 09:05:21,387 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:relatedDataset ;[\n]" -2022-11-14 09:05:21,387 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo , ;[\n]" -2022-11-14 09:05:21,387 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "Short Abstracts (about 600 characters long) of Wikipedia articles. Normalized dataset matching English DBpedia resources."@en ;[\n]" -2022-11-14 09:05:21,387 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" -2022-11-14 09:05:21,387 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:isPartOf ;[\n]" -2022-11-14 09:05:21,387 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" -2022-11-14 09:05:21,387 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:language ;[\n]" -2022-11-14 09:05:21,387 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" -2022-11-14 09:05:21,387 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" -2022-11-14 09:05:21,387 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" -2022-11-14 09:05:21,387 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "Short Abstracts English Uris"@en ;[\n]" -2022-11-14 09:05:21,387 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " void:rootResource ;[\n]" -2022-11-14 09:05:21,387 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " void:sparqlEndpoint ;[\n]" -2022-11-14 09:05:21,387 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " void:triples 1099339 ;[\n]" -2022-11-14 09:05:21,387 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:distribution , , ;[\n]" -2022-11-14 09:05:21,387 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:keyword "DBpedia"@en , "Short Abstracts English Uris"@en ;[\n]" -2022-11-14 09:05:21,387 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:landingPage ;[\n]" -2022-11-14 09:05:21,387 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " sd:defaultGraph ;[\n]" -2022-11-14 09:05:21,387 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " foaf:page .[\n]" -2022-11-14 09:05:21,387 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:21,387 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:21,387 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid-ld:LinkedDataDataset , dataid:Dataset ;[\n]" -2022-11-14 09:05:21,387 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "Mappingbased Objects English Uris"@en ;[\n]" -2022-11-14 09:05:21,387 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" -2022-11-14 09:05:21,387 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" -2022-11-14 09:05:21,387 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:previousVersion ;[\n]" -2022-11-14 09:05:21,387 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedDatasetRelation[\n]" -2022-11-14 09:05:21,387 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " ;[\n]" -2022-11-14 09:05:21,387 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:relatedDataset ;[\n]" -2022-11-14 09:05:21,387 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo , ;[\n]" -2022-11-14 09:05:21,387 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "High-quality data extracted from Infoboxes using the mapping-based extraction (Object properties only). The predicates in this dataset are in the 'ontology' namespace. Note that this data is of much higher quality than the Raw Infobox Properties in the 'property' namespace. Normalized dataset matching English DBpedia resources."@en ;[\n]" -2022-11-14 09:05:21,387 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" -2022-11-14 09:05:21,395 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:isPartOf ;[\n]" -2022-11-14 09:05:21,395 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" -2022-11-14 09:05:21,395 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:language ;[\n]" -2022-11-14 09:05:21,395 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" -2022-11-14 09:05:21,395 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" -2022-11-14 09:05:21,395 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" -2022-11-14 09:05:21,395 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "Mappingbased Objects English Uris"@en ;[\n]" -2022-11-14 09:05:21,395 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " void:rootResource ;[\n]" -2022-11-14 09:05:21,395 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " void:triples 2296710 ;[\n]" -2022-11-14 09:05:21,395 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:distribution , ;[\n]" -2022-11-14 09:05:21,395 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:keyword "DBpedia"@en , "Mappingbased Ob" -2022-11-14 09:05:21,417 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "jects English Uris"@en ;[\n]" -2022-11-14 09:05:21,417 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:landingPage ;[\n]" -2022-11-14 09:05:21,417 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " sd:defaultGraph ;[\n]" -2022-11-14 09:05:21,417 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " foaf:page .[\n]" -2022-11-14 09:05:21,417 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:21,417 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:21,417 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a " -2022-11-14 09:05:21,430 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:SingleFile ;[\n]" -2022-11-14 09:05:21,430 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "core-i18n/fr/infobox_property_definitions_fr.ttl.bz2" , "Infobox Property Definitions"@en ;[\n]" -2022-11-14 09:05:21,430 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" -2022-11-14 09:05:21,430 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:checksum ;[\n]" -2022-11-14 09:05:21,430 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:isDistributionOf ;[\n]" -2022-11-14 09:05:21,430 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" -2022-11-14 09:05:21,430 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:preview ;[\n]" -2022-11-14 09:05:21,430 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:uncompressedByteSize 5607468 ;[\n]" -2022-11-14 09:05:21,430 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo ;[\n]" -2022-11-14 09:05:21,430 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "All properties predicates used in infoboxes."@en ;[\n]" -2022-11-14 09:05:21,430 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" -2022-11-14 09:05:21,430 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" -2022-11-14 09:05:21,430 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" -2022-11-14 09:05:21,430 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" -2022-11-14 09:05:21,430 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" -2022-11-14 09:05:21,430 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "Infobox Property Definitions"@en ;[\n]" -2022-11-14 09:05:21,430 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:byteSize 259621 ;[\n]" -2022-11-14 09:05:21,430 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:downloadURL ;[\n]" -2022-11-14 09:05:21,430 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:mediaType dataid-mt:MediaType_turtle_x-bzip2 .[\n]" -2022-11-14 09:05:21,430 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:21,430 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:21,430 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:SingleFile ;[\n]" -2022-11-14 09:05:21,430 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "Specific Mappingbased Properties English Uris"@en , "core-i18n/fr/specific_mappingbased_properties_en_uris_fr.tql.bz2" ;[\n]" -2022-11-14 09:05:21,430 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" -2022-11-14 09:05:21,430 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:checksum ;[\n]" -2022-11-14 09:05:21,430 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:isDistributionOf ;[\n]" -2022-11-14 09:05:21,430 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" -2022-11-14 09:05:21,432 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:preview ;[\n]" -2022-11-14 09:05:21,432 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:uncompressedByteSize 15924304 ;[\n]" -2022-11-14 09:05:21,432 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo ;[\n]" -2022-11-14 09:05:21,432 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "Infobox data from the mapping-based extraction, using units of measurement more convenient for the resource type, e.g. square kilometres instead of square metres for the area of a city. Normalized dataset matching English DBpedia resources."@en ;[\n]" -2022-11-14 09:05:21,432 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" -2022-11-14 09:05:21,432 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" -2022-11-14 09:05:21,432 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" -2022-11-14 09:05:21,432 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" -2022-11-14 09:05:21,432 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" -2022-11-14 09:05:21,432 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "Specific Mappingbased Properties English Uris"@en ;[\n]" -2022-11-14 09:05:21,432 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:byteSize 993115 ;[\n]" -2022-11-14 09:05:21,432 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:downloadURL ;[\n]" -2022-11-14 09:05:21,432 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:mediaType dataid-mt:MediaType_n-quads_x-bzip2 .[\n]" -2022-11-14 09:05:21,432 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:21,432 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:21,456 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid-ld:LinkedDataDataset , dataid:Dataset ;[\n]" -2022-11-14 09:05:21,456 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "Template Parameters"@en ;[\n]" -2022-11-14 09:05:21,456 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" -2022-11-14 09:05:21,456 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" -2022-11-14 09:05:21,456 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:previousVersion ;[\n]" -2022-11-14 09:05:21,456 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedDatasetRelation[\n]" -2022-11-14 09:05:21,456 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " ;[\n]" -2022-11-14 09:05:21,456 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:relatedDataset ;[\n]" -2022-11-14 09:05:21,456 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo , ;[\n]" -2022-11-14 09:05:21,456 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "Dataset describing names of template parameters."@en ;[\n]" -2022-11-14 09:05:21,456 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" -2022-11-14 09:05:21,456 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:isPartOf ;[\n]" -2022-11-14 09:05:21,456 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" -2022-11-14 09:05:21,456 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:language ;[\n]" -2022-11-14 09:05:21,456 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" -2022-11-14 09:05:21,456 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified " -2022-11-14 09:05:21,463 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " "2017-07-06"^^xsd:date ;[\n]" -2022-11-14 09:05:21,463 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" -2022-11-14 09:05:21,463 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "Template Parameters"@en ;[\n]" -2022-11-14 09:05:21,463 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " void:rootResource ;[\n]" -2022-11-14 09:05:21,463 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " void:triples 232720 ;[\n]" -2022-11-14 09:05:21,463 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:distribution ;[\n]" -2022-11-14 09:05:21,463 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:keyword "Template Parameters"@en , "DBpedia"@en ;[\n]" -2022-11-14 09:05:21,463 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:landingPage ;[\n]" -2022-11-14 09:05:21,463 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " sd:defaultGraph ;[\n]" -2022-11-14 09:05:21,463 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " foaf:page .[\n]" -2022-11-14 09:05:21,463 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:21,463 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:21,463 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:SingleFile ;[\n]" -2022-11-14 09:05:21,463 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "Page Length"@en , "core-i18n/fr/page_length_fr.tql.bz2" ;[\n]" -2022-11-14 09:05:21,463 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" -2022-11-14 09:05:21,463 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:checksum ;[\n]" -2022-11-14 09:05:21,463 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:isDistributionOf ;[\n]" -2022-11-14 09:05:21,463 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" -2022-11-14 09:05:21,463 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:preview ;[\n]" -2022-11-14 09:05:21,463 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:uncompressedByteSize 745185054 ;[\n]" -2022-11-14 09:05:21,463 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo ;[\n]" -2022-11-14 09:05:21,463 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "Numbers of characters contained in a Wikipedia article's source."@en ;[\n]" -2022-11-14 09:05:21,463 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" -2022-11-14 09:05:21,463 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" -2022-11-14 09:05:21,463 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" -2022-11-14 09:05:21,463 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" -2022-11-14 09:05:21,463 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" -2022-11-14 09:05:21,463 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "Page Length"@en ;[\n]" -2022-11-14 09:05:21,463 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:byteSize 58286648 ;[\n]" -2022-11-14 09:05:21,463 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:downloadURL ;[\n]" -2022-11-14 09:05:21,463 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:mediaType dataid-mt:MediaType_n-quads_x-bzip2 .[\n]" -2022-11-14 09:05:21,463 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:21,463 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:21,463 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:Dataset , dataid-ld:LinkedDataDataset ;[\n]" -2022-11-14 09:05:21,463 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "Disambiguations"@en ;[\n]" -2022-11-14 09:05:21,463 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" -2022-11-14 09:05:21,512 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" -2022-11-14 09:05:21,512 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:previousVersion ;[\n]" -2022-11-14 09:05:21,512 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedDatasetRelation[\n]" -2022-11-14 09:05:21,512 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " ;[\n]" -2022-11-14 09:05:21,512 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:relatedDataset ;[\n]" -2022-11-14 09:05:21,512 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo , ;[\n]" -2022-11-14 09:05:21,512 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "Links extracted from Wikipedia disambiguation pages. Since Wikipedia has no syntax to distinguish disambiguation links from ordinary links, DBpedia has to use heuristics."@en ;[\n]" -2022-11-14 09:05:21,512 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" -2022-11-14 09:05:21,512 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:isPartOf ;[\n]" -2022-11-14 09:05:21,512 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" -2022-11-14 09:05:21,512 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:language ;[\n]" -2022-11-14 09:05:21,512 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" -2022-11-14 09:05:21,512 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" -2022-11-14 09:05:21,512 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" -2022-11-14 09:05:21,512 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title " -2022-11-14 09:05:21,513 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " "Disambiguations"@en ;[\n]" -2022-11-14 09:05:21,513 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " void:rootResource ;[\n]" -2022-11-14 09:05:21,513 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " void:triples 561852 ;[\n]" -2022-11-14 09:05:21,513 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:distribution , ;[\n]" -2022-11-14 09:05:21,513 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:keyword "Disambiguations"@en , "DBpedia"@en ;[\n]" -2022-11-14 09:05:21,513 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:landingPage ;[\n]" -2022-11-14 09:05:21,513 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " sd:defaultGraph ;[\n]" -2022-11-14 09:05:21,513 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " foaf:page .[\n]" -2022-11-14 09:05:21,513 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:21,513 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:21,513 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:SingleFile ;[\n]" -2022-11-14 09:05:21,513 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "Mappingbased Literals English Uris"@en , "core-i18n/fr/mappingbased_literals_en_uris_fr.tql.bz2" ;[\n]" -2022-11-14 09:05:21,513 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" -2022-11-14 09:05:21,513 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:checksum ;[\n]" -2022-11-14 09:05:21,513 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:isDistributionOf ;[\n]" -2022-11-14 09:05:21,513 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:la" -2022-11-14 09:05:21,513 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "testVersion ;[\n]" -2022-11-14 09:05:21,513 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:preview ;[\n]" -2022-11-14 09:05:21,513 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:uncompressedByteSize 698711539 ;[\n]" -2022-11-14 09:05:21,513 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo ;[\n]" -2022-11-14 09:05:21,513 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "High-quality data extracted from Infoboxes using the mapping-based extraction (Literal properties only). The predicates in this dataset are in the ontology namespace. Note that this data is of much higher quality than the Raw Infobox Properties in the 'property' namespace. Normalized dataset matching English DBpedia resources."@en ;[\n]" -2022-11-14 09:05:21,513 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" -2022-11-14 09:05:21,513 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" -2022-11-14 09:05:21,513 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" -2022-11-14 09:05:21,513 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" -2022-11-14 09:05:21,513 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" -2022-11-14 09:05:21,513 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "Mappingbased Literals English Uris"@en ;[\n]" -2022-11-14 09:05:21,514 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:byteSize 44732375 ;[\n]" -2022-11-14 09:05:21,514 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:downloadURL ;[\n]" -2022-11-14 09:05:21,514 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:mediaType dataid-mt:MediaType_n-quads_x-bzip2 .[\n]" -2022-11-14 09:05:21,514 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:21,514 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:21,514 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:SingleFile ;[\n]" -2022-11-14 09:05:21,514 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "Homepages English Uris"@en , "core-i18n/fr/homepages_en_uris_fr.ttl.bz2" ;[\n]" -2022-11-14 09:05:21,514 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" -2022-11-14 09:05:21,514 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:checksum ;[\n]" -2022-11-14 09:05:21,514 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:isDistributionOf ;[\n]" -2022-11-14 09:05:21,514 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" -2022-11-14 09:05:21,514 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:preview ;[\n]" -2022-11-14 09:05:21,514 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:uncompressedByteSize 14936143 ;[\n]" -2022-11-14 09:05:21,514 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo ;[\n]" -2022-11-14 09:05:21,514 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "Links to homepages of persons, organizations etc. Normalized dataset matching English DBpedia resources."@en ;[\n]" -2022-11-14 09:05:21,514 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion " -2022-11-14 09:05:21,558 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " ;[\n]" -2022-11-14 09:05:21,558 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" -2022-11-14 09:05:21,558 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" -2022-11-14 09:05:21,558 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" -2022-11-14 09:05:21,558 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" -2022-11-14 09:05:21,558 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "Homepages English Uris"@en ;[\n]" -2022-11-14 09:05:21,558 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:byteSize 1917160 ;[\n]" -2022-11-14 09:05:21,558 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:downloadURL ;[\n]" -2022-11-14 09:05:21,558 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:mediaType dataid-mt:MediaType_turtle_x-bzip2 .[\n]" -2022-11-14 09:05:21,558 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:21,558 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:21,558 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:SingleFile ;[\n]" -2022-11-14 09:05:21,558 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "Mappingbased Objects English Uris"@en , "core-i18n/fr/mappingbased_objects_en_uris_fr.ttl.bz2" ;[\n]" -2022-11-14 09:05:21,558 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" -2022-11-14 09:05:21,558 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:checksum ;[\n]" -2022-11-14 09:05:21,558 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:isDistributionOf ;[\n]" -2022-11-14 09:05:21,558 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" -2022-11-14 09:05:21,558 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:preview ;[\n]" -2022-11-14 09:05:21,558 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:uncompressedByteSize 310186506 ;[\n]" -2022-11-14 09:05:21,558 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo ;[\n]" -2022-11-14 09:05:21,558 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "High-quality data extracted from Infoboxes using the mapping-based extraction (Object properties only). The predicates in this dataset are in the 'ontology' namespace. Note that this data is of much higher quality than the Raw Infobox Properties in the 'property' namespace. Normalized dataset matching English DBpedia resources."@en ;[\n]" -2022-11-14 09:05:21,558 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" -2022-11-14 09:05:21,558 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" -2022-11-14 09:05:21,558 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" -2022-11-14 09:05:21,558 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" -2022-11-14 09:05:21,558 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" -2022-11-14 09:05:21,558 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "Mappingbased Objects English Uris"@en ;[\n]" -2022-11-14 09:05:21,558 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:byteSize 20619140 ;[\n]" -2022-11-14 09:05:21,558 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:d" -2022-11-14 09:05:21,564 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "ownloadURL ;[\n]" -2022-11-14 09:05:21,564 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:mediaType dataid-mt:MediaType_turtle_x-bzip2 .[\n]" -2022-11-14 09:05:21,564 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:21,564 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:21,564 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:SingleFile ;[\n]" -2022-11-14 09:05:21,564 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "core-i18n/fr/persondata_wkd_uris_fr.ttl.bz2" , "Person data Wikidata Uris"@en ;[\n]" -2022-11-14 09:05:21,564 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" -2022-11-14 09:05:21,564 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:checksum ;[\n]" -2022-11-14 09:05:21,564 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:isDistributionOf ;[\n]" -2022-11-14 09:05:21,564 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" -2022-11-14 09:05:21,564 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:preview ;[\n]" -2022-11-14 09:05:21,564 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:uncompressedByteSize 433683150 ;[\n]" -2022-11-14 09:05:21,564 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo ;[\n]" -2022-11-14 09:05:21,564 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "Information about persons (date and place of birth etc., extracted from the English and German Wikipedia, re" -2022-11-14 09:05:21,565 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "presented using the FOAF vocabulary. Normalized dataset matching Wikidata resources (sorted)."@en ;[\n]" -2022-11-14 09:05:21,565 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" -2022-11-14 09:05:21,565 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" -2022-11-14 09:05:21,565 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" -2022-11-14 09:05:21,565 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" -2022-11-14 09:05:21,565 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" -2022-11-14 09:05:21,565 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "Person data Wikidata Uris"@en ;[\n]" -2022-11-14 09:05:21,565 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:byteSize 18372179 ;[\n]" -2022-11-14 09:05:21,565 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:downloadURL ;[\n]" -2022-11-14 09:05:21,565 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:mediaType dataid-mt:MediaType_turtle_x-bzip2 .[\n]" -2022-11-14 09:05:21,565 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:21,565 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:21,565 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid-ld:LinkedDataDataset , dataid:Dataset ;[\n]" -2022-11-14 09:05:21,565 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "Short Abstracts"@en ;[\n]" -2022-11-14 09:05:21,565 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" -2022-11-14 09:05:21,565 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" -2022-11-14 09:05:21,565 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:previousVersion ;[\n]" -2022-11-14 09:05:21,565 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedDatasetRelation[\n]" -2022-11-14 09:05:21,565 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " ;[\n]" -2022-11-14 09:05:21,596 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:relatedDataset ;[\n]" -2022-11-14 09:05:21,596 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo , ;[\n]" -2022-11-14 09:05:21,596 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "Short Abstracts (about 600 characters long) of Wikipedia articles."@en ;[\n]" -2022-11-14 09:05:21,596 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" -2022-11-14 09:05:21,596 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:isPartOf ;[\n]" -2022-11-14 09:05:21,596 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" -2022-11-14 09:05:21,596 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:language ;[\n]" -2022-11-14 09:05:21,596 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" -2022-11-14 09:05:21,596 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" -2022-11-14 09:05:21,596 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" -2022-11-14 09:05:21,596 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "Short Abstracts"@en ;[\n]" -2022-11-14 09:05:21,596 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " void:rootResource ;[\n]" -2022-11-14 09:05:21,596 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " void:triples 1686181 ;[\n]" -2022-11-14 09:05:21,596 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:distribution , ;[\n]" -2022-11-14 09:05:21,596 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:keyword "Short Abstracts"@en , "DBpedia"@en ;[\n]" -2022-11-14 09:05:21,596 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:landingPage ;[\n]" -2022-11-14 09:05:21,596 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " sd:defaultGraph ;[\n]" -2022-11-14 09:05:21,596 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " foaf:page .[\n]" -2022-11-14 09:05:21,596 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:21,596 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:21,596 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:SingleFile ;[\n]" -2022-11-14 09:05:21,596 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "Geo Coordinates English Uris"@en , "core-i18n/fr/geo_coordinates_en_uris_fr.ttl.bz2" ;[\n]" -2022-11-14 09:05:21,596 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" -2022-11-14 09:05:21,596 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:checksum ;[\n]" -2022-11-14 09:05:21,596 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:isDistributionOf ;[\n]" -2022-11-14 09:05:21,596 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" -2022-11-14 09:05:21,596 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:preview ;[\n]" -2022-11-14 09:05:21,596 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:uncompressedByteSize 17279137 ;[\n]" -2022-11-14 09:05:21,596 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo ;[\n]" -2022-11-14 09:05:21,596 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description " -2022-11-14 09:05:21,604 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " "Geographic coordinates extracted from Wikipedia. Normalized dataset matching English DBpedia resources."@en ;[\n]" -2022-11-14 09:05:21,604 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" -2022-11-14 09:05:21,604 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" -2022-11-14 09:05:21,604 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" -2022-11-14 09:05:21,604 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" -2022-11-14 09:05:21,604 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" -2022-11-14 09:05:21,604 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "Geo Coordinates English Uris"@en ;[\n]" -2022-11-14 09:05:21,604 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:byteSize 925549 ;[\n]" -2022-11-14 09:05:21,604 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:downloadURL ;[\n]" -2022-11-14 09:05:21,604 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:mediaType dataid-mt:MediaType_turtle_x-bzip2 .[\n]" -2022-11-14 09:05:21,604 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:21,604 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:21,604 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:SingleFile ;[\n]" -2022-11-14 09:05:21,604 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "core-i18n/fr/persondata_wkd_uris_fr.tql.bz2" , "Person data Wikidata Uris"@en ;[\n]" -2022-11-14 09:05:21,604 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" -2022-11-14 09:05:21,604 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:checksum ;[\n]" -2022-11-14 09:05:21,604 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:isDistributionOf ;[\n]" -2022-11-14 09:05:21,604 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" -2022-11-14 09:05:21,604 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:preview ;[\n]" -2022-11-14 09:05:21,604 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:uncompressedByteSize 636049497 ;[\n]" -2022-11-14 09:05:21,604 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo ;[\n]" -2022-11-14 09:05:21,604 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "Information about persons (date and place of birth etc., extracted from the English and German Wikipedia, represented using the FOAF vocabulary. Normalized dataset matching Wikidata resources (sorted)."@en ;[\n]" -2022-11-14 09:05:21,604 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" -2022-11-14 09:05:21,604 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" -2022-11-14 09:05:21,604 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" -2022-11-14 09:05:21,604 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" -2022-11-14 09:05:21,604 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" -2022-11-14 09:05:21,604 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "Person data Wikidata Uris"@en ;[\n]" -2022-11-14 09:05:21,604 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:byteSize 29557229 ;[\n]" -2022-11-14 09:05:21,604 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:downloadURL ;[\n]" -2022-11-14 09:05:21,652 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:mediaType dataid-mt:MediaType_n-quads_x-bzip2 .[\n]" -2022-11-14 09:05:21,652 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:21,652 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:21,652 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:SingleFile ;[\n]" -2022-11-14 09:05:21,652 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "core-i18n/fr/external_links_en_uris_fr.tql.bz2" , "External Links English Uris"@en ;[\n]" -2022-11-14 09:05:21,652 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" -2022-11-14 09:05:21,652 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:checksum ;[\n]" -2022-11-14 09:05:21,652 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:isDistributionOf ;[\n]" -2022-11-14 09:05:21,652 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" -2022-11-14 09:05:21,652 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:preview ;[\n]" -2022-11-14 09:05:21,652 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:uncompressedByteSize 347896011 ;[\n]" -2022-11-14 09:05:21,652 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo ;[\n]" -2022-11-14 09:05:21,652 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "Links to external web pages about a concept. Normalized dataset matching English DBpedia resources."@en ;[\n]" -2022-11-14 09:05:21,652 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" -2022-11-14 09:05:21,652 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" -2022-11-14 09:05:21,652 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" -2022-11-14 09:05:21,652 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" -2022-11-14 09:05:21,652 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" -2022-11-14 09:05:21,652 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "External Links English Uris"@en ;[\n]" -2022-11-14 09:05:21,652 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:byteSize 39231236 ;[\n]" -2022-11-14 09:05:21,652 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:downloadURL ;[\n]" -2022-11-14 09:05:21,652 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:mediaType dataid-mt:MediaType_n-quads_x-bzip2 .[\n]" -2022-11-14 09:05:21,652 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:21,652 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:21,652 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:SingleFile ;[\n]" -2022-11-14 09:05:21,652 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "Geo Coordinates"@en , "core-i18n/fr/geo_coordinates_fr.tql.bz2" ;[\n]" -2022-11-14 09:05:21,652 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" -2022-11-14 09:05:21,652 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:checksum ;[\n]" -2022-11-14 09:05:21,652 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:isDistributionOf ;[\n]" -2022-11-14 09:05:21,652 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" -2022-11-14 09:05:21,659 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:preview ;[\n]" -2022-11-14 09:05:21,659 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:uncompressedByteSize 32446253 ;[\n]" -2022-11-14 09:05:21,659 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo ;[\n]" -2022-11-14 09:05:21,659 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "Geographic coordinates extracted from Wikipedia."@en ;[\n]" -2022-11-14 09:05:21,659 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" -2022-11-14 09:05:21,659 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" -2022-11-14 09:05:21,659 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" -2022-11-14 09:05:21,659 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" -2022-11-14 09:05:21,659 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" -2022-11-14 09:05:21,659 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "Geo Coordinates"@en ;[\n]" -2022-11-14 09:05:21,659 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:byteSize 1752256 ;[\n]" -2022-11-14 09:05:21,659 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:downloadURL ;[\n]" -2022-11-14 09:05:21,659 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:mediaType dataid-mt:MediaType_n-quads_x-bzip2 .[\n]" -2022-11-14 09:05:21,659 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:21,659 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:21,659 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:SingleFile ;[\n]" -2022-11-14 09:05:21,659 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "core-i18n/fr/infobox_properties_fr.ttl.bz2" , "Infobox Properties"@en ;[\n]" -2022-11-14 09:05:21,659 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" -2022-11-14 09:05:21,659 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:checksum ;[\n]" -2022-11-14 09:05:21,659 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:isDistributionOf ;[\n]" -2022-11-14 09:05:21,659 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" -2022-11-14 09:05:21,659 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:preview ;[\n]" -2022-11-14 09:05:21,659 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:uncompressedByteSize 2724575458 ;[\n]" -2022-11-14 09:05:21,659 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo ;[\n]" -2022-11-14 09:05:21,659 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "Information that has been extracted from Wikipedia infoboxes. Note that this data is in the less clean 'property' namespace. The Mapping-based Properties in the 'ontology' namespace, should always be preferred over this data."@en ;[\n]" -2022-11-14 09:05:21,659 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" -2022-11-14 09:05:21,659 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" -2022-11-14 09:05:21,659 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" -2022-11-14 09:05:21,659 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xs" -2022-11-14 09:05:21,711 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "d:date ;[\n]" -2022-11-14 09:05:21,711 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" -2022-11-14 09:05:21,711 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "Infobox Properties"@en ;[\n]" -2022-11-14 09:05:21,711 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:byteSize 166283116 ;[\n]" -2022-11-14 09:05:21,711 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:downloadURL ;[\n]" -2022-11-14 09:05:21,711 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:mediaType dataid-mt:MediaType_turtle_x-bzip2 .[\n]" -2022-11-14 09:05:21,711 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:21,711 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:21,711 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid-ld:LinkedDataDataset , dataid:Dataset ;[\n]" -2022-11-14 09:05:21,711 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "French Population"@en ;[\n]" -2022-11-14 09:05:21,711 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" -2022-11-14 09:05:21,711 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" -2022-11-14 09:05:21,711 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:previousVersion ;[\n]" -2022-11-14 09:05:21,711 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedDatasetRelation[\n]" -2022-11-14 09:05:21,711 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " ;[\n]" -2022-11-14 09:05:21,711 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:relatedDataset ;[\n]" -2022-11-14 09:05:21,711 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo , ;[\n]" -2022-11-14 09:05:21,711 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "French dataset about population."@en ;[\n]" -2022-11-14 09:05:21,711 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" -2022-11-14 09:05:21,711 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:isPartOf ;[\n]" -2022-11-14 09:05:21,711 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" -2022-11-14 09:05:21,711 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:language ;[\n]" -2022-11-14 09:05:21,711 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" -2022-11-14 09:05:21,711 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" -2022-11-14 09:05:21,711 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" -2022-11-14 09:05:21,711 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "French Population"@en ;[\n]" -2022-11-14 09:05:21,711 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " void:rootResource ;[\n]" -2022-11-14 09:05:21,711 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " void:triples 42967 ;[\n]" -2022-11-14 09:05:21,711 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:distribution , ;[\n]" -2022-11-14 09:05:21,711 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:keyword "French Population"@en , "DBpedia"@en ;[\n]" -2022-11-14 09:05:21,711 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:landingPage ;[\n]" -2022-11-14 09:05:21,711 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " sd:defaultGraph ;[\n]" -2022-11-14 09:05:21,711 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " foaf:page .[\n]" -2022-11-14 09:05:21,711 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:21,711 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:21,711 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid-ld:LinkedDataDataset , dataid:Dataset ;[\n]" -2022-11-14 09:05:21,711 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:la" -2022-11-14 09:05:21,720 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "bel "Mappingbased Objects Disjoint Domain"@en ;[\n]" -2022-11-14 09:05:21,720 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" -2022-11-14 09:05:21,720 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" -2022-11-14 09:05:21,720 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:previousVersion ;[\n]" -2022-11-14 09:05:21,720 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedDatasetRelation[\n]" -2022-11-14 09:05:21,720 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " ;[\n]" -2022-11-14 09:05:21,720 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:relatedDataset ;[\n]" -2022-11-14 09:05:21,720 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo , ;[\n]" -2022-11-14 09:05:21,720 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "Errors detected in the mapping based properties (disjoint domain)."@en ;[\n]" -2022-11-14 09:05:21,720 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" -2022-11-14 09:05:21,720 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:isPartOf ;[\n]" -2022-11-14 09:05:21,720 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" -2022-11-14 09:05:21,720 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:language ;[\n]" -2022-11-14 09:05:21,720 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" -2022-11-14 09:05:21,720 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" -2022-11-14 09:05:21,720 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" -2022-11-14 09:05:21,720 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "Mappingbased Objects Disjoint Domain"@en ;[\n]" -2022-11-14 09:05:21,720 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " void:rootResource ;[\n]" -2022-11-14 09:05:21,720 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " void:triples 16840 ;[\n]" -2022-11-14 09:05:21,720 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:distribution , ;[\n]" -2022-11-14 09:05:21,720 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:keyword "DBpedia"@en , "Mappingbased Objects Disjoint Domain"@en ;[\n]" -2022-11-14 09:05:21,720 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:landingPage ;[\n]" -2022-11-14 09:05:21,720 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " sd:defaultGraph ;[\n]" -2022-11-14 09:05:21,720 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " foaf:page .[\n]" -2022-11-14 09:05:21,720 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:21,720 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:21,720 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:SingleFile ;[\n]" -2022-11-14 09:05:21,720 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "Labels English Uris"@en , "core-i18n/fr/labels_en_uris_fr.tql.bz2" ;[\n]" -2022-11-14 09:05:21,720 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" -2022-11-14 09:05:21,720 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:checksum ;[\n]" -2022-11-14 09:05:21,777 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:isDistributionOf ;[\n]" -2022-11-14 09:05:21,777 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" -2022-11-14 09:05:21,777 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:preview ;[\n]" -2022-11-14 09:05:21,777 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:uncompressedByteSize 215618136 ;[\n]" -2022-11-14 09:05:21,777 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo ;[\n]" -2022-11-14 09:05:21,777 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "Titles of all Wikipedia Articles in the corresponding language. In Wikidata, it contains all the languages available in the mappings wiki, labels_nmw contains the rest Normalized dataset matching English DBpedia resources."@en ;[\n]" -2022-11-14 09:05:21,777 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" -2022-11-14 09:05:21,777 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" -2022-11-14 09:05:21,777 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" -2022-11-14 09:05:21,777 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" -2022-11-14 09:05:21,777 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" -2022-11-14 09:05:21,777 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "Labels English Uris"@en ;[\n]" -2022-11-14 09:05:21,777 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:byteSize 27811542 ;[\n]" -2022-11-14 09:05:21,777 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:downloadURL ;[\n]" -2022-11-14 09:05:21,777 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:mediaType dataid-mt:MediaType_n-quads_x-bzip2 .[\n]" -2022-11-14 09:05:21,777 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:21,777 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:21,777 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:Dataset , dataid-ld:LinkedDataDataset ;[\n]" -2022-11-14 09:05:21,777 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "Mappingbased Objects Disjoint Range"@en ;[\n]" -2022-11-14 09:05:21,777 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" -2022-11-14 09:05:21,777 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" -2022-11-14 09:05:21,777 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:previousVersion ;[\n]" -2022-11-14 09:05:21,777 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedDatasetRelation[\n]" -2022-11-14 09:05:21,777 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " ;[\n]" -2022-11-14 09:05:21,777 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:relatedDataset ;[\n]" -2022-11-14 09:05:21,777 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo , ;[\n]" -2022-11-14 09:05:21,777 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "Errors detected in the mapping based properties (disjoint range)."@en ;[\n]" -2022-11-14 09:05:21,777 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" -2022-11-14 09:05:21,777 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:isPartOf ;[\n]" -2022-11-14 09:05:21,780 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" -2022-11-14 09:05:21,780 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:language ;[\n]" -2022-11-14 09:05:21,780 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" -2022-11-14 09:05:21,780 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" -2022-11-14 09:05:21,780 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" -2022-11-14 09:05:21,780 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "Mappingbased Objects Disjoint Range"@en ;[\n]" -2022-11-14 09:05:21,780 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " void:rootResource ;[\n]" -2022-11-14 09:05:21,780 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " void:triples 6420 ;[\n]" -2022-11-14 09:05:21,780 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:distribution , ;[\n]" -2022-11-14 09:05:21,780 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:keyword "Mappingbased Objects Disjoint Range"@en , "DBpedia"@en ;[\n]" -2022-11-14 09:05:21,780 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:landingPage ;[\n]" -2022-11-14 09:05:21,780 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " sd:defaultGraph ;[\n]" -2022-11-14 09:05:21,780 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " foaf:page .[\n]" -2022-11-14 09:05:21,780 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:21,780 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:21,780 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid-ld:LinkedDataDataset , dataid:Dataset ;[\n]" -2022-11-14 09:05:21,780 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "French Population English Uris"@en ;[\n]" -2022-11-14 09:05:21,780 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" -2022-11-14 09:05:21,780 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" -2022-11-14 09:05:21,780 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedDatasetRelation[\n]" -2022-11-14 09:05:21,780 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " ;[\n]" -2022-11-14 09:05:21,780 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:relatedDataset ;[\n]" -2022-11-14 09:05:21,780 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo , ;[\n]" -2022-11-14 09:05:21,780 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "French dataset about population. Normalized dataset matching English DBpedia resources."@en ;[\n]" -2022-11-14 09:05:21,780 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" -2022-11-14 09:05:21,780 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:isPartOf ;[\n]" -2022-11-14 09:05:21,780 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" -2022-11-14 09:05:21,780 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:language ;[\n]" -2022-11-14 09:05:21,780 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" -2022-11-14 09:05:21,780 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" -2022-11-14 09:05:21,780 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" -2022-11-14 09:05:21,780 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "French Population English Uris"@en ;[\n]" -2022-11-14 09:05:21,780 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " void:rootResource" -2022-11-14 09:05:21,835 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " ;[\n]" -2022-11-14 09:05:21,835 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " void:triples 38279 ;[\n]" -2022-11-14 09:05:21,835 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:distribution , ;[\n]" -2022-11-14 09:05:21,835 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:keyword "French Population English Uris"@en , "DBpedia"@en ;[\n]" -2022-11-14 09:05:21,835 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:landingPage ;[\n]" -2022-11-14 09:05:21,835 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " sd:defaultGraph ;[\n]" -2022-11-14 09:05:21,835 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " foaf:page .[\n]" -2022-11-14 09:05:21,835 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:21,835 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:21,835 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:SingleFile ;[\n]" -2022-11-14 09:05:21,835 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "Category Labels. Wikidata Uris"@en , "core-i18n/fr/category_labels_wkd_uris_fr.ttl.bz2" ;[\n]" -2022-11-14 09:05:21,835 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" -2022-11-14 09:05:21,835 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:checksum ;[\n]" -2022-11-14 09:05:21,835 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:isDistributionOf ;[\n]" -2022-11-14 09:05:21,835 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" -2022-11-14 09:05:21,835 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:preview ;[\n]" -2022-11-14 09:05:21,835 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:uncompressedByteSize 36610974 ;[\n]" -2022-11-14 09:05:21,835 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo ;[\n]" -2022-11-14 09:05:21,835 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "Labels for Categories. Normalized dataset matching Wikidata resources (sorted)."@en ;[\n]" -2022-11-14 09:05:21,835 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" -2022-11-14 09:05:21,835 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" -2022-11-14 09:05:21,835 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" -2022-11-14 09:05:21,835 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" -2022-11-14 09:05:21,835 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" -2022-11-14 09:05:21,835 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "Category Labels. Wikidata Uris"@en ;[\n]" -2022-11-14 09:05:21,835 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:byteSize 2518920 ;[\n]" -2022-11-14 09:05:21,835 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:downloadURL ;[\n]" -2022-11-14 09:05:21,835 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:mediaType dataid-mt:MediaType_turtle_x-bzip2 .[\n]" -2022-11-14 09:05:21,835 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:21,835 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:21,835 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:Dataset , dataid-ld:LinkedData" -2022-11-14 09:05:21,836 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "Dataset ;[\n]" -2022-11-14 09:05:21,836 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "SKOS Categories"@en ;[\n]" -2022-11-14 09:05:21,836 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" -2022-11-14 09:05:21,836 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" -2022-11-14 09:05:21,836 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:previousVersion ;[\n]" -2022-11-14 09:05:21,836 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedDatasetRelation[\n]" -2022-11-14 09:05:21,836 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " ;[\n]" -2022-11-14 09:05:21,836 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:relatedDataset ;[\n]" -2022-11-14 09:05:21,836 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo , ;[\n]" -2022-11-14 09:05:21,836 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "Information which concept is a category and how categories are related using the SKOS Vocabulary."@en ;[\n]" -2022-11-14 09:05:21,836 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" -2022-11-14 09:05:21,836 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:isPartOf ;[\n]" -2022-11-14 09:05:21,836 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" -2022-11-14 09:05:21,836 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:language ;[\n]" -2022-11-14 09:05:21,836 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" -2022-11-14 09:05:21,836 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" -2022-11-14 09:05:21,836 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" -2022-11-14 09:05:21,836 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "SKOS Categories"@en ;[\n]" -2022-11-14 09:05:21,836 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " void:rootResource ;[\n]" -2022-11-14 09:05:21,836 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " void:triples 1394960 ;[\n]" -2022-11-14 09:05:21,836 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:distribution , ;[\n]" -2022-11-14 09:05:21,836 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:keyword "SKOS Categories"@en , "DBpedia"@en ;[\n]" -2022-11-14 09:05:21,836 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:landingPage ;[\n]" -2022-11-14 09:05:21,836 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " sd:defaultGraph ;[\n]" -2022-11-14 09:05:21,836 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " foaf:page .[\n]" -2022-11-14 09:05:21,837 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:21,837 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:21,837 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:SingleFile ;[\n]" -2022-11-14 09:05:21,837 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "core-i18n/fr/specific_mappingbased_properties_fr.tql.bz2" , "Specific Mappingbased Properties"@en ;[\n]" -2022-11-14 09:05:21,837 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" -2022-11-14 09:05:21,837 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:checksum ;[\n]" -2022-11-14 09:05:21,837 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:isDistributionOf ;[\n]" -2022-11-14 09:05:21,878 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" -2022-11-14 09:05:21,878 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:preview ;[\n]" -2022-11-14 09:05:21,878 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:uncompressedByteSize 20446922 ;[\n]" -2022-11-14 09:05:21,878 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo ;[\n]" -2022-11-14 09:05:21,878 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "Infobox data from the mapping-based extraction, using units of measurement more convenient for the resource type, e.g. square kilometres instead of square metres for the area of a city."@en ;[\n]" -2022-11-14 09:05:21,878 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" -2022-11-14 09:05:21,878 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" -2022-11-14 09:05:21,878 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" -2022-11-14 09:05:21,878 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" -2022-11-14 09:05:21,878 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" -2022-11-14 09:05:21,878 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "Specific Mappingbased Properties"@en ;[\n]" -2022-11-14 09:05:21,878 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:byteSize 1217404 ;[\n]" -2022-11-14 09:05:21,878 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:downloadURL ;[\n]" -2022-11-14 09:05:21,879 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:mediaType dataid-mt:MediaType_n-quads_x-bzip2 .[\n]" -2022-11-14 09:05:21,879 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:21,879 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:21,879 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:SingleFile ;[\n]" -2022-11-14 09:05:21,879 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "core-i18n/fr/category_labels_wkd_uris_fr.tql.bz2" , "Category Labels. Wikidata Uris"@en ;[\n]" -2022-11-14 09:05:21,879 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" -2022-11-14 09:05:21,879 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:checksum ;[\n]" -2022-11-14 09:05:21,879 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:isDistributionOf ;[\n]" -2022-11-14 09:05:21,879 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" -2022-11-14 09:05:21,879 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:preview ;[\n]" -2022-11-14 09:05:21,879 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:uncompressedByteSize 60963104 ;[\n]" -2022-11-14 09:05:21,879 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo ;[\n]" -2022-11-14 09:05:21,879 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "Labels for Categories. Normalized dataset matching Wikidata resources (sorted)."@en ;[\n]" -2022-11-14 09:05:21,879 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" -2022-11-14 09:05:21,884 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" -2022-11-14 09:05:21,884 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" -2022-11-14 09:05:21,884 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" -2022-11-14 09:05:21,884 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" -2022-11-14 09:05:21,884 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "Category Labels. Wikidata Uris"@en ;[\n]" -2022-11-14 09:05:21,884 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:byteSize 5151868 ;[\n]" -2022-11-14 09:05:21,884 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:downloadURL ;[\n]" -2022-11-14 09:05:21,884 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:mediaType dataid-mt:MediaType_n-quads_x-bzip2 .[\n]" -2022-11-14 09:05:21,884 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:21,884 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:21,884 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid-ld:LinkedDataDataset , dataid:Dataset ;[\n]" -2022-11-14 09:05:21,884 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "Infobox Properties"@en ;[\n]" -2022-11-14 09:05:21,884 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" -2022-11-14 09:05:21,884 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" -2022-11-14 09:05:21,884 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:previousVersion ;[\n]" -2022-11-14 09:05:21,884 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedDatasetRelation[\n]" -2022-11-14 09:05:21,884 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " ;[\n]" -2022-11-14 09:05:21,884 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:relatedDataset ;[\n]" -2022-11-14 09:05:21,885 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo , ;[\n]" -2022-11-14 09:05:21,885 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "Information that has been extracted from Wikipedia infoboxes. Note that this data is in the less clean 'property' namespace. The Mapping-based Properties in the 'ontology' namespace, should always be preferred over this data."@en ;[\n]" -2022-11-14 09:05:21,885 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" -2022-11-14 09:05:21,885 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:isPartOf ;[\n]" -2022-11-14 09:05:21,885 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" -2022-11-14 09:05:21,885 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:language ;[\n]" -2022-11-14 09:05:21,885 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" -2022-11-14 09:05:21,885 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" -2022-11-14 09:05:21,885 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" -2022-11-14 09:05:21,885 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "Infobox Properties"@en ;[\n]" -2022-11-14 09:05:21,885 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " void:rootResource ;[\n]" -2022-11-14 09:05:21,885 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " void:triples 16052189 ;[\n]" -2022-11-14 09:05:21,885 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:distribution , ;[\n]" -2022-11-14 09:05:21,919 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:keyword "DBpedia"@en , "Infobox Properties"@en ;[\n]" -2022-11-14 09:05:21,919 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:landingPage ;[\n]" -2022-11-14 09:05:21,919 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " sd:defaultGraph ;[\n]" -2022-11-14 09:05:21,919 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " foaf:page .[\n]" -2022-11-14 09:05:21,919 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:21,919 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:21,919 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:SingleFile ;[\n]" -2022-11-14 09:05:21,919 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "core-i18n/fr/infobox_property_definitions_en_uris_fr.ttl.bz2" , "Infobox Property Definitions English Uris"@en ;[\n]" -2022-11-14 09:05:21,919 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" -2022-11-14 09:05:21,919 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:checksum ;[\n]" -2022-11-14 09:05:21,919 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:isDistributionOf ;[\n]" -2022-11-14 09:05:21,919 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" -2022-11-14 09:05:21,919 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:preview ;[\n]" -2022-11-14 09:05:21,922 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:uncompressedByteSize 5456947 ;[\n]" -2022-11-14 09:05:21,922 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo ;[\n]" -2022-11-14 09:05:21,922 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "All properties predicates used in infoboxes. Normalized dataset matching English DBpedia resources."@en ;[\n]" -2022-11-14 09:05:21,922 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" -2022-11-14 09:05:21,922 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" -2022-11-14 09:05:21,922 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" -2022-11-14 09:05:21,922 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" -2022-11-14 09:05:21,922 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" -2022-11-14 09:05:21,922 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "Infobox Property Definitions English Uris"@en ;[\n]" -2022-11-14 09:05:21,922 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:byteSize 258033 ;[\n]" -2022-11-14 09:05:21,922 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:downloadURL ;[\n]" -2022-11-14 09:05:21,922 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:mediaType dataid-mt:MediaType_turtle_x-bzip2 .[\n]" -2022-11-14 09:05:21,922 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:21,922 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:21,922 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:SingleFile ;[\n]" -2022-11-14 09:05:21,922 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "Infobox Property Definitions Wikidata Uris"@en , "core-i18n/fr/infobox_property_definitions_wkd_" -2022-11-14 09:05:21,923 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "uris_fr.tql.bz2" ;[\n]" -2022-11-14 09:05:21,923 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" -2022-11-14 09:05:21,923 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:checksum ;[\n]" -2022-11-14 09:05:21,923 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:isDistributionOf ;[\n]" -2022-11-14 09:05:21,923 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" -2022-11-14 09:05:21,923 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:preview ;[\n]" -2022-11-14 09:05:21,923 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:uncompressedByteSize 12535275 ;[\n]" -2022-11-14 09:05:21,923 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo ;[\n]" -2022-11-14 09:05:21,923 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "All properties predicates used in infoboxes. Normalized dataset matching Wikidata resources (sorted)."@en ;[\n]" -2022-11-14 09:05:21,923 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" -2022-11-14 09:05:21,923 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" -2022-11-14 09:05:21,923 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" -2022-11-14 09:05:21,923 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" -2022-11-14 09:05:21,923 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " " -2022-11-14 09:05:21,932 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" -2022-11-14 09:05:21,932 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "Infobox Property Definitions Wikidata Uris"@en ;[\n]" -2022-11-14 09:05:21,932 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:byteSize 820217 ;[\n]" -2022-11-14 09:05:21,932 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:downloadURL ;[\n]" -2022-11-14 09:05:21,932 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:mediaType dataid-mt:MediaType_n-quads_x-bzip2 .[\n]" -2022-11-14 09:05:21,932 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:21,932 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:21,932 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:Dataset , dataid-ld:LinkedDataDataset ;[\n]" -2022-11-14 09:05:21,932 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "External Links Wikidata Uris"@en ;[\n]" -2022-11-14 09:05:21,932 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" -2022-11-14 09:05:21,932 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" -2022-11-14 09:05:21,932 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:previousVersion ;[\n]" -2022-11-14 09:05:21,932 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedDatasetRelation[\n]" -2022-11-14 09:05:21,932 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " ;[\n]" -2022-11-14 09:05:21,932 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:relatedDataset ;[\n]" -2022-11-14 09:05:21,932 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo , ;[\n]" -2022-11-14 09:05:21,932 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "Links to external web pages about a " -2022-11-14 09:05:21,933 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "concept. Normalized dataset matching Wikidata resources (sorted)."@en ;[\n]" -2022-11-14 09:05:21,933 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" -2022-11-14 09:05:21,933 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:isPartOf ;[\n]" -2022-11-14 09:05:21,933 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" -2022-11-14 09:05:21,933 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:language ;[\n]" -2022-11-14 09:05:21,933 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" -2022-11-14 09:05:21,933 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" -2022-11-14 09:05:21,933 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" -2022-11-14 09:05:21,933 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "External Links Wikidata Uris"@en ;[\n]" -2022-11-14 09:05:21,933 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " void:rootResource ;[\n]" -2022-11-14 09:05:21,933 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " void:triples 1779435 ;[\n]" -2022-11-14 09:05:21,933 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:distribution , ;[\n]" -2022-11-14 09:05:21,933 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:keyword "DBpedia"@en , "External Links Wikidata Uris"@en ;[\n]" -2022-11-14 09:05:21,933 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:landingPage ;[\n]" -2022-11-14 09:05:21,933 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " sd:defaultGraph ;[\n]" -2022-11-14 09:05:21,933 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " foaf:page .[\n]" -2022-11-14 09:05:21,935 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:21,935 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:21,935 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:SingleFile ;[\n]" -2022-11-14 09:05:21,935 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "core-i18n/fr/infobox_property_definitions_en_uris_fr.tql.bz2" , "Infobox Property Definitions English Uris"@en ;[\n]" -2022-11-14 09:05:21,935 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" -2022-11-14 09:05:21,935 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:checksum ;[\n]" -2022-11-14 09:05:21,935 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:isDistributionOf ;[\n]" -2022-11-14 09:05:21,935 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" -2022-11-14 09:05:21,935 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:preview ;[\n]" -2022-11-14 09:05:21,935 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:uncompressedByteSize 12155349 ;[\n]" -2022-11-14 09:05:21,935 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo ;[\n]" -2022-11-14 09:05:21,935 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "All properties predicates used in infoboxes. Normalized dataset matching English DBpedia resources."@en ;[\n]" -2022-11-14 09:05:21,935 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion" -2022-11-14 09:05:21,936 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " ;[\n]" -2022-11-14 09:05:21,936 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" -2022-11-14 09:05:21,936 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" -2022-11-14 09:05:21,936 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" -2022-11-14 09:05:21,936 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" -2022-11-14 09:05:21,936 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "Infobox Property Definitions English Uris"@en ;[\n]" -2022-11-14 09:05:21,936 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:byteSize 760941 ;[\n]" -2022-11-14 09:05:21,936 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:downloadURL ;[\n]" -2022-11-14 09:05:21,936 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:mediaType dataid-mt:MediaType_n-quads_x-bzip2 .[\n]" -2022-11-14 09:05:21,936 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:21,936 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:21,936 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid-ld:LinkedDataDataset , dataid:Dataset ;[\n]" -2022-11-14 09:05:21,936 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "Infobox Property Definitions Wikidata Uris"@en ;[\n]" -2022-11-14 09:05:21,936 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" -2022-11-14 09:05:21,936 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" -2022-11-14 09:05:21,936 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:previousVersion ;[\n]" -2022-11-14 09:05:21,936 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedDatasetRelation[\n]" -2022-11-14 09:05:21,936 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " ;[\n]" -2022-11-14 09:05:21,937 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:relatedDataset ;[\n]" -2022-11-14 09:05:21,937 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo , ;[\n]" -2022-11-14 09:05:21,937 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "All properties predicates used in infoboxes. Normalized dataset matching Wikidata resources (sorted)."@en ;[\n]" -2022-11-14 09:05:21,937 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" -2022-11-14 09:05:21,937 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:isPartOf ;[\n]" -2022-11-14 09:05:21,937 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" -2022-11-14 09:05:21,937 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:language ;[\n]" -2022-11-14 09:05:21,937 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" -2022-11-14 09:05:21,937 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" -2022-11-14 09:05:21,937 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" -2022-11-14 09:05:21,937 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "Infobox Property Definitions Wikidata Uris"@en ;[\n]" -2022-11-14 09:05:21,937 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " void:rootResource ;[\n]" -2022-11-14 09:05:21,937 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " void:triples 42214 ;[\n]" -2022-11-14 09:05:21,937 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:distribution , ;[\n]" -2022-11-14 09:05:21,939 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:keyword "DBpedia"@en , "Infobox Property Definitions Wikidata Uris"@en ;[\n]" -2022-11-14 09:05:21,939 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:landingPage ;[\n]" -2022-11-14 09:05:21,939 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " sd:defaultGraph ;[\n]" -2022-11-14 09:05:21,939 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " foaf:page .[\n]" -2022-11-14 09:05:21,939 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:21,939 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:21,939 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:SingleFile ;[\n]" -2022-11-14 09:05:21,939 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "Labels Wikidata Uris"@en , "core-i18n/fr/labels_wkd_uris_fr.ttl.bz2" ;[\n]" -2022-11-14 09:05:21,939 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" -2022-11-14 09:05:21,939 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:checksum ;[\n]" -2022-11-14 09:05:21,939 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:isDistributionOf ;[\n]" -2022-11-14 09:05:21,939 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" -2022-11-14 09:05:21,939 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:preview ;[\n]" -2022-11-14 09:05:21,939 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:uncompr" -2022-11-14 09:05:21,940 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "essedByteSize 215950219 ;[\n]" -2022-11-14 09:05:21,940 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo ;[\n]" -2022-11-14 09:05:21,940 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "Titles of all Wikipedia Articles in the corresponding language. In Wikidata, it contains all the languages available in the mappings wiki, labels_nmw contains the rest Normalized dataset matching Wikidata resources (sorted)."@en ;[\n]" -2022-11-14 09:05:21,940 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" -2022-11-14 09:05:21,940 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" -2022-11-14 09:05:21,940 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" -2022-11-14 09:05:21,940 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" -2022-11-14 09:05:21,940 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" -2022-11-14 09:05:21,940 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "Labels Wikidata Uris"@en ;[\n]" -2022-11-14 09:05:21,940 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:byteSize 18411219 ;[\n]" -2022-11-14 09:05:21,940 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:downloadURL ;[\n]" -2022-11-14 09:05:21,940 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:mediaType dataid-mt:MediaType_turtle_x-bzip2 .[\n]" -2022-11-14 09:05:21,940 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:21,940 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:21,940 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:SingleFile ;[\n]" -2022-11-14 09:05:21,940 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "Category Labels."@en , "core-i18n/fr/category_labels_fr.tql.bz2" ;[\n]" -2022-11-14 09:05:21,940 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associated" -2022-11-14 09:05:21,941 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "Agent ;[\n]" -2022-11-14 09:05:21,941 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:checksum ;[\n]" -2022-11-14 09:05:21,941 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:isDistributionOf ;[\n]" -2022-11-14 09:05:21,941 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" -2022-11-14 09:05:21,941 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:preview ;[\n]" -2022-11-14 09:05:21,941 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:uncompressedByteSize 84428293 ;[\n]" -2022-11-14 09:05:21,941 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo ;[\n]" -2022-11-14 09:05:21,941 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "Labels for Categories."@en ;[\n]" -2022-11-14 09:05:21,941 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" -2022-11-14 09:05:21,941 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" -2022-11-14 09:05:21,941 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" -2022-11-14 09:05:21,941 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" -2022-11-14 09:05:21,941 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" -2022-11-14 09:05:21,941 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "Category Labels."@en ;[\n]" -2022-11-14 09:05:21,941 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:byteSize 6537704 ;[\n]" -2022-11-14 09:05:21,941 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:downloadURL ;[\n]" -2022-11-14 09:05:21,965 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:mediaType dataid-mt:MediaType_n-quads_x-bzip2 .[\n]" -2022-11-14 09:05:21,965 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:21,965 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:21,965 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:SingleFile ;[\n]" -2022-11-14 09:05:21,965 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "core-i18n/fr/revision_ids_fr.tql.bz2" , "Revision Ids"@en ;[\n]" -2022-11-14 09:05:21,965 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" -2022-11-14 09:05:21,965 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:checksum ;[\n]" -2022-11-14 09:05:21,965 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:isDistributionOf ;[\n]" -2022-11-14 09:05:21,965 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" -2022-11-14 09:05:21,965 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:preview ;[\n]" -2022-11-14 09:05:21,965 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:uncompressedByteSize 897397155 ;[\n]" -2022-11-14 09:05:21,965 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo ;[\n]" -2022-11-14 09:05:21,965 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "Dataset linking a DBpedia resource to the revision ID of the Wikipedia article the data was extracted from."@en ;[\n]" -2022-11-14 09:05:21,965 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" -2022-11-14 09:05:21,965 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc" -2022-11-14 09:05:21,981 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << ":issued "2017-07-01"^^xsd:date ;[\n]" -2022-11-14 09:05:21,981 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" -2022-11-14 09:05:21,981 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" -2022-11-14 09:05:21,981 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" -2022-11-14 09:05:21,981 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "Revision Ids"@en ;[\n]" -2022-11-14 09:05:21,981 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:byteSize 73706230 ;[\n]" -2022-11-14 09:05:21,981 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:downloadURL ;[\n]" -2022-11-14 09:05:21,981 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:mediaType dataid-mt:MediaType_n-quads_x-bzip2 .[\n]" -2022-11-14 09:05:21,981 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:21,981 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:21,981 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:SingleFile ;[\n]" -2022-11-14 09:05:21,981 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "core-i18n/fr/redirects_fr.tql.bz2" , "Redirects"@en ;[\n]" -2022-11-14 09:05:21,981 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" -2022-11-14 09:05:21,981 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:checksum ;[\n]" -2022-11-14 09:05:21,981 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:isDistributionOf ;[\n]" -2022-11-14 09:05:21,981 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" -2022-11-14 09:05:21,981 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:preview ;[\n]" -2022-11-14 09:05:21,981 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:uncompressedByteSize 333422301 ;[\n]" -2022-11-14 09:05:21,981 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo ;[\n]" -2022-11-14 09:05:21,981 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "Dataset containing redirects between articles in Wikipedia."@en ;[\n]" -2022-11-14 09:05:21,981 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" -2022-11-14 09:05:21,981 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" -2022-11-14 09:05:21,981 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" -2022-11-14 09:05:21,981 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" -2022-11-14 09:05:21,981 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" -2022-11-14 09:05:21,981 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "Redirects"@en ;[\n]" -2022-11-14 09:05:21,981 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:byteSize 32013594 ;[\n]" -2022-11-14 09:05:21,981 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:downloadURL ;[\n]" -2022-11-14 09:05:21,981 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:mediaType dataid-mt:MediaType_n-quads_x-bzip2 .[\n]" -2022-11-14 09:05:21,981 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:21,981 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:21,981 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid-ld:LinkedDataDataset , dataid:Dataset ;[\n]" -2022-11-14 09:05:21,981 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "Category Labels. English Uris"@en ;[\n]" -2022-11-14 09:05:21,981 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" -2022-11-14 09:05:21,981 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" -2022-11-14 09:05:21,981 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:prev" -2022-11-14 09:05:21,982 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "iousVersion ;[\n]" -2022-11-14 09:05:21,982 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedDatasetRelation[\n]" -2022-11-14 09:05:21,982 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " ;[\n]" -2022-11-14 09:05:21,982 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:relatedDataset ;[\n]" -2022-11-14 09:05:21,982 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo , ;[\n]" -2022-11-14 09:05:21,982 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "Labels for Categories. Normalized dataset matching English DBpedia resources."@en ;[\n]" -2022-11-14 09:05:21,982 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" -2022-11-14 09:05:21,982 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:isPartOf ;[\n]" -2022-11-14 09:05:21,982 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" -2022-11-14 09:05:21,982 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:language ;[\n]" -2022-11-14 09:05:21,982 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" -2022-11-14 09:05:21,982 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" -2022-11-14 09:05:21,982 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" -2022-11-14 09:05:21,982 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "Category Labels. English Uris"@en ;[\n]" -2022-11-14 09:05:21,982 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " void:rootResource ;[\n]" -2022-11-14 09:05:21,982 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " void:triples 170136 ;[\n]" -2022-11-14 09:05:21,982 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:distribution , ;[\n]" -2022-11-14 09:05:21,982 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:keyword "Category Labels. English Uris"@en , "DBpedia"@en ;[\n]" -2022-11-14 09:05:21,982 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:landingPage ;[\n]" -2022-11-14 09:05:21,982 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " sd:defaultGraph ;[\n]" -2022-11-14 09:05:21,982 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " foaf:page .[\n]" -2022-11-14 09:05:21,982 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:21,982 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:21,982 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:SingleFile ;[\n]" -2022-11-14 09:05:21,982 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "Geo Coordinates Mappingbased English Uris"@en , "core-i18n/fr/geo_coordinates_mappingbased_en_uris_fr.tql.bz2" ;[\n]" -2022-11-14 09:05:21,982 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" -2022-11-14 09:05:21,982 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:checksum ;[\n]" -2022-11-14 09:05:21,982 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:isDistributionOf ;[\n]" -2022-11-14 09:05:21,983 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" -2022-11-14 09:05:21,984 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:preview ;[\n]" -2022-11-14 09:05:21,984 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:uncompressedByteSize 144779602 ;[\n]" -2022-11-14 09:05:21,984 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo ;[\n]" -2022-11-14 09:05:21,984 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "Geographic coordinates extracted from Wikipedia originating from mapped infoboxes in the mappings wiki Normalized dataset matching English DBpedia resources."@en ;[\n]" -2022-11-14 09:05:21,984 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" -2022-11-14 09:05:21,984 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" -2022-11-14 09:05:21,984 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" -2022-11-14 09:05:21,984 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" -2022-11-14 09:05:21,984 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" -2022-11-14 09:05:21,984 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "Geo Coordinates Mappingbased English Uris"@en ;[\n]" -2022-11-14 09:05:21,984 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:byteSize 7040890 ;[\n]" -2022-11-14 09:05:21,984 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:downloadURL ;[\n]" -2022-11-14 09:05:21,984 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:mediaType dataid-mt:MediaType_n-quads_x-bzip2 .[\n]" -2022-11-14 09:05:21,984 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:21,984 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:21,984 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " " -2022-11-14 09:05:21,987 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:Dataset , dataid-ld:LinkedDataDataset ;[\n]" -2022-11-14 09:05:21,987 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "NIF Context"@en ;[\n]" -2022-11-14 09:05:21,987 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" -2022-11-14 09:05:21,987 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" -2022-11-14 09:05:21,987 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedDatasetRelation[\n]" -2022-11-14 09:05:21,987 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " ;[\n]" -2022-11-14 09:05:21,987 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:relatedDataset ;[\n]" -2022-11-14 09:05:21,987 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo , ;[\n]" -2022-11-14 09:05:21,987 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "Contains the full text of a Wikipedia page in the NLP Interchange Format (NIF). All other NIF resources will reference the context of its Wikipedia page.It contains the whole text of a WikiPage (minus tables and references and minor artifacts)"@en ;[\n]" -2022-11-14 09:05:21,987 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" -2022-11-14 09:05:21,987 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:isPartOf ;[\n]" -2022-11-14 09:05:21,987 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" -2022-11-14 09:05:21,987 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:language ;[\n]" -2022-11-14 09:05:21,987 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" -2022-11-14 09:05:21,987 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" -2022-11-14 09:05:21,987 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" -2022-11-14 09:05:21,987 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "NIF Context"@en ;[\n]" -2022-11-14 09:05:21,987 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " void:rootResource ;[\n]" -2022-11-14 09:05:21,987 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " void:triples 10149357 ;[\n]" -2022-11-14 09:05:21,987 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:distribution , ;[\n]" -2022-11-14 09:05:21,987 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:keyword "NIF Context"@en , "DBpedia"@en ;[\n]" -2022-11-14 09:05:21,987 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:landingPage ;[\n]" -2022-11-14 09:05:21,987 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " sd:defaultGraph ;[\n]" -2022-11-14 09:05:21,987 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " foaf:page .[\n]" -2022-11-14 09:05:21,987 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:21,987 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:21,987 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:SingleFile ;[\n]" -2022-11-14 09:05:21,987 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "Article Categories"@en , "core-i18n/fr/article_categories_fr.tql.bz2" ;[\n]" -2022-11-14 09:05:21,987 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" -2022-11-14 09:05:21,987 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:checksum ;[\n]" -2022-11-14 09:05:21,987 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:isDistributionOf ;[\n]" -2022-11-14 09:05:21,995 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" -2022-11-14 09:05:21,995 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:preview ;[\n]" -2022-11-14 09:05:21,995 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:uncompressedByteSize 1860174690 ;[\n]" -2022-11-14 09:05:21,995 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo ;[\n]" -2022-11-14 09:05:21,995 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "Links from concepts to categories using the SKOS vocabulary."@en ;[\n]" -2022-11-14 09:05:21,995 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" -2022-11-14 09:05:21,995 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" -2022-11-14 09:05:21,995 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" -2022-11-14 09:05:21,995 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" -2022-11-14 09:05:21,995 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" -2022-11-14 09:05:21,995 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "Article Categories"@en ;[\n]" -2022-11-14 09:05:21,995 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:byteSize 112481112 ;[\n]" -2022-11-14 09:05:21,995 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:downloadURL ;[\n]" -2022-11-14 09:05:21,995 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:mediaType dataid-mt:MediaType_n-quads_x-bzip2 .[\n]" -2022-11-14 09:05:21,995 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:21,995 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:21,995 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:Datas" -2022-11-14 09:05:21,996 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "et , dataid-ld:LinkedDataDataset ;[\n]" -2022-11-14 09:05:21,996 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "Freebase Links"@en ;[\n]" -2022-11-14 09:05:21,996 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" -2022-11-14 09:05:21,996 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" -2022-11-14 09:05:21,996 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:previousVersion ;[\n]" -2022-11-14 09:05:21,996 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedDatasetRelation[\n]" -2022-11-14 09:05:21,996 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " ;[\n]" -2022-11-14 09:05:21,996 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:relatedDataset ;[\n]" -2022-11-14 09:05:21,996 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo , ;[\n]" -2022-11-14 09:05:21,996 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "This file contains the back-links (owl:sameAs) to the Freebase dataset."@en ;[\n]" -2022-11-14 09:05:21,996 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" -2022-11-14 09:05:21,996 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:isPartOf ;[\n]" -2022-11-14 09:05:21,996 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" -2022-11-14 09:05:21,996 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:language ;[\n]" -2022-11-14 09:05:21,996 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" -2022-11-14 09:05:21,996 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" -2022-11-14 09:05:21,996 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" -2022-11-14 09:05:22,025 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "Freebase Links"@en ;[\n]" -2022-11-14 09:05:22,025 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " void:rootResource ;[\n]" -2022-11-14 09:05:22,025 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " void:triples 1909782 ;[\n]" -2022-11-14 09:05:22,025 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:distribution ;[\n]" -2022-11-14 09:05:22,025 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:keyword "Freebase Links"@en , "DBpedia"@en ;[\n]" -2022-11-14 09:05:22,025 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:landingPage ;[\n]" -2022-11-14 09:05:22,025 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " sd:defaultGraph ;[\n]" -2022-11-14 09:05:22,025 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " foaf:page .[\n]" -2022-11-14 09:05:22,025 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,025 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,025 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:SingleFile ;[\n]" -2022-11-14 09:05:22,025 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "Long Abstracts Wikidata Uris"@en , "core-i18n/fr/long_abstracts_wkd_uris_fr.ttl.bz2" ;[\n]" -2022-11-14 09:05:22,025 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" -2022-11-14 09:05:22,025 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:checksum ;[\n]" -2022-11-14 09:05:22,025 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:isDistributionOf ;[\n]" -2022-11-14 09:05:22,025 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" -2022-11-14 09:05:22,026 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:preview ;[\n]" -2022-11-14 09:05:22,026 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:uncompressedByteSize 823433869 ;[\n]" -2022-11-14 09:05:22,026 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo ;[\n]" -2022-11-14 09:05:22,026 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "Long abstracts (full abstracts) of Wikipedia articles, usually the first section. Normalized dataset matching Wikidata resources (sorted)."@en ;[\n]" -2022-11-14 09:05:22,026 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" -2022-11-14 09:05:22,026 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" -2022-11-14 09:05:22,026 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" -2022-11-14 09:05:22,026 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" -2022-11-14 09:05:22,026 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" -2022-11-14 09:05:22,026 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "Long Abstracts Wikidata Uris"@en ;[\n]" -2022-11-14 09:05:22,026 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:byteSize 189970540 ;[\n]" -2022-11-14 09:05:22,026 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:downloadURL ;[\n]" -2022-11-14 09:05:22,026 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:mediaType dataid-mt:MediaType_turtle_x-bzip2 .[\n]" -2022-11-14 09:05:22,026 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,026 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,026 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid-ld:LinkedDataDataset , dataid:Dataset ;[\n]" -2022-11-14 09:05:22,026 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "Instance Types English Uris"@en ;[\n]" -2022-11-14 09:05:22,026 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" -2022-11-14 09:05:22,026 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" -2022-11-14 09:05:22,026 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:previousVersion ;[\n]" -2022-11-14 09:05:22,026 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedDatasetRelation[\n]" -2022-11-14 09:05:22,026 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " ;[\n]" -2022-11-14 09:05:22,026 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:relatedDataset ;[\n]" -2022-11-14 09:05:22,026 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo , ;[\n]" -2022-11-14 09:05:22,026 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "Contains triples of the form $object rdf:type $class from the mapping-based extraction. Normalized dataset matching English DBpedia resources."@en ;[\n]" -2022-11-14 09:05:22,026 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" -2022-11-14 09:05:22,026 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:isPartOf ;[\n]" -2022-11-14 09:05:22,026 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" -2022-11-14 09:05:22,026 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:language ;[\n]" -2022-11-14 09:05:22,026 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" -2022-11-14 09:05:22,026 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" -2022-11-14 09:05:22,026 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" -2022-11-14 09:05:22,026 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "Instance Types English Uris"@en ;[\n]" -2022-11-14 09:05:22,026 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " void:rootResource ;[\n]" -2022-11-14 09:05:22,026 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " void:triples 612040 ;[\n]" -2022-11-14 09:05:22,026 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:distribution , ;[\n]" -2022-11-14 09:05:22,026 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:keyword "DBpedia"@en , "Instance Types English Uris"@en ;[\n]" -2022-11-14 09:05:22,026 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:landingPage ;[\n]" -2022-11-14 09:05:22,026 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " sd:defaultGraph ;[\n]" -2022-11-14 09:05:22,026 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " foaf:page .[\n]" -2022-11-14 09:05:22,026 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,026 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,026 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:SingleFile ;[\n]" -2022-11-14 09:05:22,026 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "Revision Uris"@en , "core-i18n/fr/revision_uris_fr.tql.bz2" ;[\n]" -2022-11-14 09:05:22,026 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" -2022-11-14 09:05:22,026 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:checksum ;[\n]" -2022-11-14 09:05:22,026 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:isDistributionOf ;[\n]" -2022-11-14 09:05:22,040 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" -2022-11-14 09:05:22,040 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:preview ;[\n]" -2022-11-14 09:05:22,040 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:uncompressedByteSize 931901088 ;[\n]" -2022-11-14 09:05:22,040 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo ;[\n]" -2022-11-14 09:05:22,040 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "Dataset linking DBpedia resource to the specific Wikipedia article revision used in this DBpedia release."@en ;[\n]" -2022-11-14 09:05:22,040 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" -2022-11-14 09:05:22,040 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" -2022-11-14 09:05:22,040 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" -2022-11-14 09:05:22,040 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" -2022-11-14 09:05:22,040 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" -2022-11-14 09:05:22,040 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "Revision Uris"@en ;[\n]" -2022-11-14 09:05:22,040 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:byteSize 80164538 ;[\n]" -2022-11-14 09:05:22,040 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:downloadURL ;[\n]" -2022-11-14 09:05:22,040 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:mediaType dataid-mt:MediaType_n-quads_x-bzip2 .[\n]" -2022-11-14 09:05:22,040 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,040 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,041 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:SingleFile ;[\n]" -2022-11-14 09:05:22,041 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "core-i18n/fr/external_links_wkd_uris_fr.ttl.bz2" , "External Links Wikidata Uris"@en ;[\n]" -2022-11-14 09:05:22,041 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" -2022-11-14 09:05:22,041 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:checksum ;[\n]" -2022-11-14 09:05:22,041 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:isDistributionOf ;[\n]" -2022-11-14 09:05:22,041 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" -2022-11-14 09:05:22,041 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:preview ;[\n]" -2022-11-14 09:05:22,041 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:uncompressedByteSize 288467499 ;[\n]" -2022-11-14 09:05:22,041 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo ;[\n]" -2022-11-14 09:05:22,041 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "Links to external web pages about a concept. Normalized dataset matching Wikidata resources (sorted)."@en ;[\n]" -2022-11-14 09:05:22,041 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" -2022-11-14 09:05:22,041 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" -2022-11-14 09:05:22,041 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" -2022-11-14 09:05:22,042 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" -2022-11-14 09:05:22,042 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" -2022-11-14 09:05:22,042 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "External Links Wikidata Uris"@en ;[\n]" -2022-11-14 09:05:22,042 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:byteSize 35315073 ;[\n]" -2022-11-14 09:05:22,042 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:downloadURL ;[\n]" -2022-11-14 09:05:22,042 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:mediaType dataid-mt:MediaType_turtle_x-bzip2 .[\n]" -2022-11-14 09:05:22,042 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,042 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,042 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:SingleFile ;[\n]" -2022-11-14 09:05:22,042 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "Page Links"@en , "core-i18n/fr/page_links_fr.ttl.bz2" ;[\n]" -2022-11-14 09:05:22,042 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" -2022-11-14 09:05:22,042 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:checksum ;[\n]" -2022-11-14 09:05:22,042 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:isDistributionOf ;[\n]" -2022-11-14 09:05:22,042 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" -2022-11-14 09:05:22,042 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:preview ;[\n]" -2022-11-14 09:05:22,042 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:uncompressedByteSize 10" -2022-11-14 09:05:22,042 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "090369736 ;[\n]" -2022-11-14 09:05:22,043 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo ;[\n]" -2022-11-14 09:05:22,043 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "Dataset containing internal links between DBpedia instances. The dataset was created from the internal links between Wikipedia articles. The dataset might be useful for structural analysis, data mining or for ranking DBpedia instances using Page Rank or similar algorithms."@en ;[\n]" -2022-11-14 09:05:22,043 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" -2022-11-14 09:05:22,043 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" -2022-11-14 09:05:22,043 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" -2022-11-14 09:05:22,043 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" -2022-11-14 09:05:22,043 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" -2022-11-14 09:05:22,043 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "Page Links"@en ;[\n]" -2022-11-14 09:05:22,043 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:byteSize 519197953 ;[\n]" -2022-11-14 09:05:22,043 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:downloadURL ;[\n]" -2022-11-14 09:05:22,043 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:mediaType dataid-mt:MediaType_turtle_x-bzip2 .[\n]" -2022-11-14 09:05:22,043 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,043 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,043 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:SingleFile ;[\n]" -2022-11-14 09:05:22,043 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "Long Abstracts"@en , "core-i18n/fr/long_abstracts_fr.tql.bz2" ;[\n]" -2022-11-14 09:05:22,043 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dat" -2022-11-14 09:05:22,044 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "aid:associatedAgent ;[\n]" -2022-11-14 09:05:22,044 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:checksum ;[\n]" -2022-11-14 09:05:22,044 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:isDistributionOf ;[\n]" -2022-11-14 09:05:22,044 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" -2022-11-14 09:05:22,044 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:preview ;[\n]" -2022-11-14 09:05:22,044 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:uncompressedByteSize 950187275 ;[\n]" -2022-11-14 09:05:22,044 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo ;[\n]" -2022-11-14 09:05:22,044 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "Long abstracts (full abstracts) of Wikipedia articles, usually the first section."@en ;[\n]" -2022-11-14 09:05:22,044 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" -2022-11-14 09:05:22,044 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" -2022-11-14 09:05:22,044 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" -2022-11-14 09:05:22,044 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" -2022-11-14 09:05:22,044 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" -2022-11-14 09:05:22,044 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "Long Abstracts"@en ;[\n]" -2022-11-14 09:05:22,044 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:byteSize 213329202 ;[\n]" -2022-11-14 09:05:22,044 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " " -2022-11-14 09:05:22,045 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:downloadURL ;[\n]" -2022-11-14 09:05:22,045 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:mediaType dataid-mt:MediaType_n-quads_x-bzip2 .[\n]" -2022-11-14 09:05:22,045 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,045 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,045 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:SingleFile ;[\n]" -2022-11-14 09:05:22,045 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "External Links Wikidata Uris"@en , "core-i18n/fr/external_links_wkd_uris_fr.tql.bz2" ;[\n]" -2022-11-14 09:05:22,045 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" -2022-11-14 09:05:22,045 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:checksum ;[\n]" -2022-11-14 09:05:22,045 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:isDistributionOf ;[\n]" -2022-11-14 09:05:22,045 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" -2022-11-14 09:05:22,045 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:preview ;[\n]" -2022-11-14 09:05:22,045 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:uncompressedByteSize 509442311 ;[\n]" -2022-11-14 09:05:22,045 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo ;[\n]" -2022-11-14 09:05:22,045 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "Links to external web pages about a concept. Normalized dataset match" -2022-11-14 09:05:22,046 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "ing Wikidata resources (sorted)."@en ;[\n]" -2022-11-14 09:05:22,046 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" -2022-11-14 09:05:22,046 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" -2022-11-14 09:05:22,046 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" -2022-11-14 09:05:22,046 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" -2022-11-14 09:05:22,046 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" -2022-11-14 09:05:22,046 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "External Links Wikidata Uris"@en ;[\n]" -2022-11-14 09:05:22,046 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:byteSize 57319179 ;[\n]" -2022-11-14 09:05:22,046 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:downloadURL ;[\n]" -2022-11-14 09:05:22,046 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:mediaType dataid-mt:MediaType_n-quads_x-bzip2 .[\n]" -2022-11-14 09:05:22,046 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,046 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,046 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:SingleFile ;[\n]" -2022-11-14 09:05:22,046 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "core-i18n/fr/homepages_wkd_uris_fr.ttl.bz2" , "Homepages Wikidata Uris"@en ;[\n]" -2022-11-14 09:05:22,046 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" -2022-11-14 09:05:22,046 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:checksum ;[\n]" -2022-11-14 09:05:22,046 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:isDistributionOf ;[\n]" -2022-11-14 09:05:22,046 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" -2022-11-14 09:05:22,046 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:preview ;[\n]" -2022-11-14 09:05:22,046 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:uncompressedByteSize 20514473 ;[\n]" -2022-11-14 09:05:22,046 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo ;[\n]" -2022-11-14 09:05:22,046 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "Links to homepages of persons, organizations etc. Normalized dataset matching Wikidata resources (sorted)."@en ;[\n]" -2022-11-14 09:05:22,046 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" -2022-11-14 09:05:22,046 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" -2022-11-14 09:05:22,046 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" -2022-11-14 09:05:22,046 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" -2022-11-14 09:05:22,046 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" -2022-11-14 09:05:22,046 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "Homepages Wikidata Uris"@en ;[\n]" -2022-11-14 09:05:22,046 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:byteSize 1932951 ;[\n]" -2022-11-14 09:05:22,046 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:downloadURL ;[\n]" -2022-11-14 09:05:22,046 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:mediaType dataid-mt:MediaType_turtle_x-bzip2 .[\n]" -2022-11-14 09:05:22,046 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,046 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,047 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:SingleFile ;[\n]" -2022-11-14 09:05:22,047 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "Homepages Wikidata Uris"@en , "core-i18n/fr/homepages_wkd_uris_fr.tql.bz2" ;[\n]" -2022-11-14 09:05:22,047 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" -2022-11-14 09:05:22,047 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:checksum ;[\n]" -2022-11-14 09:05:22,047 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:isDistributionOf ;[\n]" -2022-11-14 09:05:22,047 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" -2022-11-14 09:05:22,047 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:preview ;[\n]" -2022-11-14 09:05:22,047 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:uncompressedByteSize 37454494 ;[\n]" -2022-11-14 09:05:22,047 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo ;[\n]" -2022-11-14 09:05:22,047 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "Links to homepages of persons, organizations etc. Normalized dataset matching Wikidata resources (sorted)."@en ;[\n]" -2022-11-14 09:05:22,047 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" -2022-11-14 09:05:22,047 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" -2022-11-14 09:05:22,047 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" -2022-11-14 09:05:22,047 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" -2022-11-14 09:05:22,047 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" -2022-11-14 09:05:22,047 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "Homepages Wikidata Uris"@en ;[\n]" -2022-11-14 09:05:22,048 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:byteSize 4405042 ;[\n]" -2022-11-14 09:05:22,048 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:downloadURL ;[\n]" -2022-11-14 09:05:22,048 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:mediaType dataid-mt:MediaType_n-quads_x-bzip2 .[\n]" -2022-11-14 09:05:22,048 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,048 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,048 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid-ld:LinkedDataDataset , dataid:Dataset ;[\n]" -2022-11-14 09:05:22,048 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "Page Ids"@en ;[\n]" -2022-11-14 09:05:22,048 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" -2022-11-14 09:05:22,048 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" -2022-11-14 09:05:22,048 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:previousVersion ;[\n]" -2022-11-14 09:05:22,048 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedDatasetRelation[\n]" -2022-11-14 09:05:22,048 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " ;[\n]" -2022-11-14 09:05:22,048 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:relatedDataset ;[\n]" -2022-11-14 09:05:22,048 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo , ;[\n]" -2022-11-14 09:05:22,048 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "Dataset linking a DBpedia resource to the page ID of the Wikipedia ar" -2022-11-14 09:05:22,049 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "ticle the data was extracted from."@en ;[\n]" -2022-11-14 09:05:22,049 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" -2022-11-14 09:05:22,049 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:isPartOf ;[\n]" -2022-11-14 09:05:22,049 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" -2022-11-14 09:05:22,049 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:language ;[\n]" -2022-11-14 09:05:22,049 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" -2022-11-14 09:05:22,049 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" -2022-11-14 09:05:22,049 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" -2022-11-14 09:05:22,049 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "Page Ids"@en ;[\n]" -2022-11-14 09:05:22,049 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " void:rootResource ;[\n]" -2022-11-14 09:05:22,049 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " void:triples 3831703 ;[\n]" -2022-11-14 09:05:22,049 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:distribution , ;[\n]" -2022-11-14 09:05:22,049 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:keyword "DBpedia"@en , "Page Ids"@en ;[\n]" -2022-11-14 09:05:22,049 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:landingPage ;[\n]" -2022-11-14 09:05:22,049 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " sd:defaultGraph ;[\n]" -2022-11-14 09:05:22,049 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " foaf:page .[\n]" -2022-11-14 09:05:22,049 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,049 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,049 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:SingleFile ;[\n]" -2022-11-14 09:05:22,049 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "core-i18n/fr/article_templates_nested_fr.ttl.bz2" , "Nested Article Templates"@en ;[\n]" -2022-11-14 09:05:22,049 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" -2022-11-14 09:05:22,049 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:checksum ;[\n]" -2022-11-14 09:05:22,049 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:isDistributionOf ;[\n]" -2022-11-14 09:05:22,049 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" -2022-11-14 09:05:22,049 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:preview ;[\n]" -2022-11-14 09:05:22,049 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:uncompressedByteSize 422696668 ;[\n]" -2022-11-14 09:05:22,049 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo ;[\n]" -2022-11-14 09:05:22,049 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "Templates used in an article (nested)."@en ;[\n]" -2022-11-14 09:05:22,049 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" -2022-11-14 09:05:22,049 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" -2022-11-14 09:05:22,049 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" -2022-11-14 09:05:22,049 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" -2022-11-14 09:05:22,049 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " " -2022-11-14 09:05:22,050 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" -2022-11-14 09:05:22,050 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "Nested Article Templates"@en ;[\n]" -2022-11-14 09:05:22,050 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:byteSize 17109946 ;[\n]" -2022-11-14 09:05:22,050 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:downloadURL ;[\n]" -2022-11-14 09:05:22,050 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:mediaType dataid-mt:MediaType_turtle_x-bzip2 .[\n]" -2022-11-14 09:05:22,050 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,050 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,050 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:SingleFile ;[\n]" -2022-11-14 09:05:22,050 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "SKOS Categories Wikidata Uris"@en , "core-i18n/fr/skos_categories_wkd_uris_fr.ttl.bz2" ;[\n]" -2022-11-14 09:05:22,050 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" -2022-11-14 09:05:22,050 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:checksum ;[\n]" -2022-11-14 09:05:22,050 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:isDistributionOf ;[\n]" -2022-11-14 09:05:22,050 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" -2022-11-14 09:05:22,050 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:preview ;[\n]" -2022-11-14 09:05:22,050 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:uncompressedByteSize 157446206 ;[\n]" -2022-11-14 09:05:22,050 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo ;[\n]" -2022-11-14 09:05:22,050 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "Information which concept is a category and how categories are related using the SKOS Vocabulary. Normalized dataset matching Wikidata resources (sorted)."@en ;[\n]" -2022-11-14 09:05:22,050 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" -2022-11-14 09:05:22,050 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" -2022-11-14 09:05:22,050 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" -2022-11-14 09:05:22,050 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" -2022-11-14 09:05:22,050 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" -2022-11-14 09:05:22,050 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "SKOS Categories Wikidata Uris"@en ;[\n]" -2022-11-14 09:05:22,050 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:byteSize 6340656 ;[\n]" -2022-11-14 09:05:22,050 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:downloadURL ;[\n]" -2022-11-14 09:05:22,050 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:mediaType dataid-mt:MediaType_turtle_x-bzip2 .[\n]" -2022-11-14 09:05:22,050 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,050 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,050 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:SingleFile ;[\n]" -2022-11-14 09:05:22,050 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "core-i18n/fr/article_templates_nested_fr.tql.bz2" , "Nested Article Templates"@en ;[\n]" -2022-11-14 09:05:22,050 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent " -2022-11-14 09:05:22,064 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " ;[\n]" -2022-11-14 09:05:22,064 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:checksum ;[\n]" -2022-11-14 09:05:22,064 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:isDistributionOf ;[\n]" -2022-11-14 09:05:22,064 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" -2022-11-14 09:05:22,064 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:preview ;[\n]" -2022-11-14 09:05:22,064 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:uncompressedByteSize 675602210 ;[\n]" -2022-11-14 09:05:22,064 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo ;[\n]" -2022-11-14 09:05:22,064 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "Templates used in an article (nested)."@en ;[\n]" -2022-11-14 09:05:22,064 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" -2022-11-14 09:05:22,064 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" -2022-11-14 09:05:22,064 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" -2022-11-14 09:05:22,064 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" -2022-11-14 09:05:22,064 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" -2022-11-14 09:05:22,064 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "Nested Article Templates"@en ;[\n]" -2022-11-14 09:05:22,064 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:byteSize 33380978 ;[\n]" -2022-11-14 09:05:22,064 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " " -2022-11-14 09:05:22,065 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:downloadURL ;[\n]" -2022-11-14 09:05:22,065 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:mediaType dataid-mt:MediaType_n-quads_x-bzip2 .[\n]" -2022-11-14 09:05:22,065 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,065 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,065 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:Dataset , dataid-ld:LinkedDataDataset ;[\n]" -2022-11-14 09:05:22,065 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "Infobox Properties English Uris"@en ;[\n]" -2022-11-14 09:05:22,065 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" -2022-11-14 09:05:22,065 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" -2022-11-14 09:05:22,065 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:previousVersion ;[\n]" -2022-11-14 09:05:22,065 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedDatasetRelation[\n]" -2022-11-14 09:05:22,065 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " ;[\n]" -2022-11-14 09:05:22,065 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:relatedDataset ;[\n]" -2022-11-14 09:05:22,065 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo , ;[\n]" -2022-11-14 09:05:22,065 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "Information that has been extracted from Wikipedia infoboxes. Note that this data is in the less clean 'property' namespace. The Mapping-based Properties in the 'ontology' namespace, should always be preferred over this data. Normalized dataset matching English DBpedia resources."@en ;[\n]" -2022-11-14 09:05:22,065 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" -2022-11-14 09:05:22,065 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:isPartOf ;[\n]" -2022-11-14 09:05:22,065 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" -2022-11-14 09:05:22,065 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:language ;[\n]" -2022-11-14 09:05:22,065 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" -2022-11-14 09:05:22,065 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" -2022-11-14 09:05:22,065 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" -2022-11-14 09:05:22,065 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "Infobox Properties English Uris"@en ;[\n]" -2022-11-14 09:05:22,065 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " void:rootResource ;[\n]" -2022-11-14 09:05:22,065 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " void:triples 10395149 ;[\n]" -2022-11-14 09:05:22,065 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:distribution , ;[\n]" -2022-11-14 09:05:22,065 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:keyword "DBpedia"@en , "Infobox Properties English Uris"@en ;[\n]" -2022-11-14 09:05:22,065 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:landingPage ;[\n]" -2022-11-14 09:05:22,065 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " sd:defaultGraph ;[\n]" -2022-11-14 09:05:22,065 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " foaf:page .[\n]" -2022-11-14 09:05:22,065 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,065 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,066 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:SingleFile ;[\n]" -2022-11-14 09:05:22,066 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "Infobox Properties English Uris"@en , "core-i18n/fr/infobox_properties_en_uris_fr.ttl.bz2" ;[\n]" -2022-11-14 09:05:22,066 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" -2022-11-14 09:05:22,066 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:checksum ;[\n]" -2022-11-14 09:05:22,066 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:isDistributionOf ;[\n]" -2022-11-14 09:05:22,066 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" -2022-11-14 09:05:22,066 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:preview ;[\n]" -2022-11-14 09:05:22,066 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:uncompressedByteSize 1343049271 ;[\n]" -2022-11-14 09:05:22,066 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo ;[\n]" -2022-11-14 09:05:22,066 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "Information that has been extracted from Wikipedia infoboxes. Note that this data is in the less clean 'property' namespace. The Mapping-based Properties in the 'ontology' namespace, should always be preferred over this data. Normalized d" -2022-11-14 09:05:22,080 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "ataset matching English DBpedia resources."@en ;[\n]" -2022-11-14 09:05:22,080 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" -2022-11-14 09:05:22,080 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" -2022-11-14 09:05:22,080 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" -2022-11-14 09:05:22,080 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" -2022-11-14 09:05:22,080 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" -2022-11-14 09:05:22,080 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "Infobox Properties English Uris"@en ;[\n]" -2022-11-14 09:05:22,080 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:byteSize 105664829 ;[\n]" -2022-11-14 09:05:22,080 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:downloadURL ;[\n]" -2022-11-14 09:05:22,080 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:mediaType dataid-mt:MediaType_turtle_x-bzip2 .[\n]" -2022-11-14 09:05:22,080 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,080 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,080 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:Dataset , dataid-ld:LinkedDataDataset ;[\n]" -2022-11-14 09:05:22,080 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "Labels"@en ;[\n]" -2022-11-14 09:05:22,080 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" -2022-11-14 09:05:22,080 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" -2022-11-14 09:05:22,080 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:previousVersion ;[\n]" -2022-11-14 09:05:22,080 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedDatasetRelation[\n]" -2022-11-14 09:05:22,080 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " ;[\n]" -2022-11-14 09:05:22,081 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:relatedDataset ;[\n]" -2022-11-14 09:05:22,081 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo , ;[\n]" -2022-11-14 09:05:22,081 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "Titles of all Wikipedia Articles in the corresponding language. In Wikidata, it contains all the languages available in the mappings wiki, labels_nmw contains the rest "@en ;[\n]" -2022-11-14 09:05:22,081 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" -2022-11-14 09:05:22,081 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:isPartOf ;[\n]" -2022-11-14 09:05:22,081 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" -2022-11-14 09:05:22,081 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:language ;[\n]" -2022-11-14 09:05:22,081 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" -2022-11-14 09:05:22,081 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" -2022-11-14 09:05:22,081 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" -2022-11-14 09:05:22,081 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "Labels"@en ;[\n]" -2022-11-14 09:05:22,081 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " void:rootResource ;[\n]" -2022-11-14 09:05:22,081 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " void:triples 3241245 ;[\n]" -2022-11-14 09:05:22,081 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:distribution , ;[\n]" -2022-11-14 09:05:22,081 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:key" -2022-11-14 09:05:22,081 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "word "Labels"@en , "DBpedia"@en ;[\n]" -2022-11-14 09:05:22,081 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:landingPage ;[\n]" -2022-11-14 09:05:22,081 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " sd:defaultGraph ;[\n]" -2022-11-14 09:05:22,081 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " foaf:page .[\n]" -2022-11-14 09:05:22,081 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,081 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,081 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:SingleFile ;[\n]" -2022-11-14 09:05:22,081 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "Images Wikidata Uris"@en , "core-i18n/fr/images_wkd_uris_fr.ttl.bz2" ;[\n]" -2022-11-14 09:05:22,081 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" -2022-11-14 09:05:22,081 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:checksum ;[\n]" -2022-11-14 09:05:22,081 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:isDistributionOf ;[\n]" -2022-11-14 09:05:22,081 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" -2022-11-14 09:05:22,081 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:preview ;[\n]" -2022-11-14 09:05:22,081 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:uncompressedByteSize 1013402456 ;[\n]" -2022-11-14 09:05:22,081 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo ;[\n]" -2022-11-14 09:05:22,081 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "Main image and corresponding thumbnail from Wikipedia article. Normalized dataset matching Wikidata res" -2022-11-14 09:05:22,082 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "ources (sorted)."@en ;[\n]" -2022-11-14 09:05:22,082 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" -2022-11-14 09:05:22,082 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" -2022-11-14 09:05:22,082 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" -2022-11-14 09:05:22,082 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" -2022-11-14 09:05:22,082 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" -2022-11-14 09:05:22,082 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "Images Wikidata Uris"@en ;[\n]" -2022-11-14 09:05:22,082 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:byteSize 40302988 ;[\n]" -2022-11-14 09:05:22,082 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:downloadURL ;[\n]" -2022-11-14 09:05:22,082 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:mediaType dataid-mt:MediaType_turtle_x-bzip2 .[\n]" -2022-11-14 09:05:22,082 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,082 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,082 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:SingleFile ;[\n]" -2022-11-14 09:05:22,082 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "Infobox Properties English Uris"@en , "core-i18n/fr/infobox_properties_en_uris_fr.tql.bz2" ;[\n]" -2022-11-14 09:05:22,082 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" -2022-11-14 09:05:22,082 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:checksum ;[\n]" -2022-11-14 09:05:22,082 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:isDistributionOf ;[\n]" -2022-11-14 09:05:22,086 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" -2022-11-14 09:05:22,086 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:preview ;[\n]" -2022-11-14 09:05:22,086 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:uncompressedByteSize 3060702431 ;[\n]" -2022-11-14 09:05:22,086 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo ;[\n]" -2022-11-14 09:05:22,086 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "Information that has been extracted from Wikipedia infoboxes. Note that this data is in the less clean 'property' namespace. The Mapping-based Properties in the 'ontology' namespace, should always be preferred over this data. Normalized dataset matching English DBpedia resources."@en ;[\n]" -2022-11-14 09:05:22,086 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" -2022-11-14 09:05:22,086 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" -2022-11-14 09:05:22,086 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" -2022-11-14 09:05:22,086 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" -2022-11-14 09:05:22,086 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" -2022-11-14 09:05:22,086 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "Infobox Properties English Uris"@en ;[\n]" -2022-11-14 09:05:22,086 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:byteSize 180978981 ;[\n]" -2022-11-14 09:05:22,086 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:downloadURL " -2022-11-14 09:05:22,087 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " ;[\n]" -2022-11-14 09:05:22,087 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:mediaType dataid-mt:MediaType_n-quads_x-bzip2 .[\n]" -2022-11-14 09:05:22,087 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,087 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,087 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:SingleFile ;[\n]" -2022-11-14 09:05:22,087 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "core-i18n/fr/topical_concepts_wkd_uris_fr.ttl.bz2" , "Topical Concepts Wikidata Uris"@en ;[\n]" -2022-11-14 09:05:22,087 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" -2022-11-14 09:05:22,087 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:checksum ;[\n]" -2022-11-14 09:05:22,087 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:isDistributionOf ;[\n]" -2022-11-14 09:05:22,087 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" -2022-11-14 09:05:22,087 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:preview ;[\n]" -2022-11-14 09:05:22,087 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:uncompressedByteSize 13030738 ;[\n]" -2022-11-14 09:05:22,087 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo ;[\n]" -2022-11-14 09:05:22,087 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "Resources that describe a category Normalized dataset matching W" -2022-11-14 09:05:22,088 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "ikidata resources (sorted)."@en ;[\n]" -2022-11-14 09:05:22,088 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" -2022-11-14 09:05:22,088 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" -2022-11-14 09:05:22,088 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" -2022-11-14 09:05:22,088 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" -2022-11-14 09:05:22,088 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" -2022-11-14 09:05:22,088 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "Topical Concepts Wikidata Uris"@en ;[\n]" -2022-11-14 09:05:22,088 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:byteSize 402384 ;[\n]" -2022-11-14 09:05:22,088 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:downloadURL ;[\n]" -2022-11-14 09:05:22,088 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:mediaType dataid-mt:MediaType_turtle_x-bzip2 .[\n]" -2022-11-14 09:05:22,088 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,088 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,088 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:SingleFile ;[\n]" -2022-11-14 09:05:22,088 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "Mappingbased Literals"@en , "core-i18n/fr/mappingbased_literals_fr.tql.bz2" ;[\n]" -2022-11-14 09:05:22,088 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" -2022-11-14 09:05:22,088 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:checksum ;[\n]" -2022-11-14 09:05:22,088 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:isDistributionOf ;[\n]" -2022-11-14 09:05:22,088 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" -2022-11-14 09:05:22,088 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:preview ;[\n]" -2022-11-14 09:05:22,088 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:uncompressedByteSize 1663448462 ;[\n]" -2022-11-14 09:05:22,088 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo ;[\n]" -2022-11-14 09:05:22,088 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "High-quality data extracted from Infoboxes using the mapping-based extraction (Literal properties only). The predicates in this dataset are in the ontology namespace. Note that this data is of much higher quality than the Raw Infobox Properties in the 'property' namespace."@en ;[\n]" -2022-11-14 09:05:22,088 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" -2022-11-14 09:05:22,088 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" -2022-11-14 09:05:22,088 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" -2022-11-14 09:05:22,089 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" -2022-11-14 09:05:22,089 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" -2022-11-14 09:05:22,089 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "Mappingbased Literals"@en ;[\n]" -2022-11-14 09:05:22,089 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:byteSize 89528203 ;[\n]" -2022-11-14 09:05:22,089 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:downloadURL ;[\n]" -2022-11-14 09:05:22,089 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:mediaType dataid-mt:MediaType_n-quads_x-bzip2 .[\n]" -2022-11-14 09:05:22,089 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,089 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,089 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:Dataset , dataid-ld:LinkedDataDataset ;[\n]" -2022-11-14 09:05:22,089 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "Geo Coordinates English Uris"@en ;[\n]" -2022-11-14 09:05:22,089 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" -2022-11-14 09:05:22,089 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" -2022-11-14 09:05:22,089 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:previousVersion ;[\n]" -2022-11-14 09:05:22,089 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedDatasetRelation[\n]" -2022-11-14 09:05:22,089 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " ;[\n]" -2022-11-14 09:05:22,089 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:relatedDataset ;[\n]" -2022-11-14 09:05:22,089 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo , ;[\n]" -2022-11-14 09:05:22,089 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "Geographic coordinates extracted from Wikipedia. Normalized dataset matching English DBpedia resources."@en ;[\n]" -2022-11-14 09:05:22,089 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" -2022-11-14 09:05:22,089 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:isPartOf ;[\n]" -2022-11-14 09:05:22,089 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " " -2022-11-14 09:05:22,090 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" -2022-11-14 09:05:22,090 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:language ;[\n]" -2022-11-14 09:05:22,090 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" -2022-11-14 09:05:22,090 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" -2022-11-14 09:05:22,090 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" -2022-11-14 09:05:22,090 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "Geo Coordinates English Uris"@en ;[\n]" -2022-11-14 09:05:22,090 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " void:rootResource ;[\n]" -2022-11-14 09:05:22,090 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " void:triples 119868 ;[\n]" -2022-11-14 09:05:22,090 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:distribution , ;[\n]" -2022-11-14 09:05:22,090 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:keyword "DBpedia"@en , "Geo Coordinates English Uris"@en ;[\n]" -2022-11-14 09:05:22,090 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:landingPage ;[\n]" -2022-11-14 09:05:22,090 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " sd:defaultGraph ;[\n]" -2022-11-14 09:05:22,090 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " foaf:page .[\n]" -2022-11-14 09:05:22,090 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,090 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,090 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:Dataset , dataid-ld:LinkedDataDataset ;[\n]" -2022-11-14 09:05:22,090 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "mappingbased objects uncleaned"@en ;[\n]" -2022-11-14 09:05:22,090 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" -2022-11-14 09:05:22,090 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" -2022-11-14 09:05:22,090 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:previousVersion ;[\n]" -2022-11-14 09:05:22,090 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedDatasetRelation[\n]" -2022-11-14 09:05:22,090 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " ;[\n]" -2022-11-14 09:05:22,090 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:relatedDataset ;[\n]" -2022-11-14 09:05:22,090 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo , ;[\n]" -2022-11-14 09:05:22,090 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "DBpedia dataset mappingbased_objects_uncleaned, subset of "@en ;[\n]" -2022-11-14 09:05:22,090 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" -2022-11-14 09:05:22,090 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:isPartOf ;[\n]" -2022-11-14 09:05:22,090 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" -2022-11-14 09:05:22,090 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:language ;[\n]" -2022-11-14 09:05:22,090 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" -2022-11-14 09:05:22,090 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" -2022-11-14 09:05:22,090 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" -2022-11-14 09:05:22,090 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "mappingbased objects uncleaned"@en ;[\n]" -2022-11-14 09:05:22,090 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " void:rootResource ;[\n]" -2022-11-14 09:05:22,090 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " void:triples 5005987 ;[\n]" -2022-11-14 09:05:22,090 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:distribution , ;[\n]" -2022-11-14 09:05:22,090 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:keyword "mappingbased objects uncleaned"@en , "DBpedia"@en ;[\n]" -2022-11-14 09:05:22,090 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:landingPage ;[\n]" -2022-11-14 09:05:22,090 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " sd:defaultGraph ;[\n]" -2022-11-14 09:05:22,090 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " foaf:page .[\n]" -2022-11-14 09:05:22,090 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,090 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,090 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid-ld:LinkedDataDataset , dataid:Dataset ;[\n]" -2022-11-14 09:05:22,090 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "Equations in MathML"@en ;[\n]" -2022-11-14 09:05:22,090 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" -2022-11-14 09:05:22,090 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" -2022-11-14 09:05:22,090 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedDatasetRelation[\n]" -2022-11-14 09:05:22,090 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " ;[\n]" -2022-11-14 09:05:22,090 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:relatedDataset ;[\n]" -2022-11-14 09:05:22,090 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo , ;[\n]" -2022-11-14 09:05:22,092 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "This are all equations collected during the NIF extraction, transformed into MathML XML syntax."@en ;[\n]" -2022-11-14 09:05:22,092 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" -2022-11-14 09:05:22,092 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:isPartOf ;[\n]" -2022-11-14 09:05:22,092 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" -2022-11-14 09:05:22,092 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:language ;[\n]" -2022-11-14 09:05:22,092 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" -2022-11-14 09:05:22,092 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" -2022-11-14 09:05:22,092 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" -2022-11-14 09:05:22,092 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "Equations in MathML"@en ;[\n]" -2022-11-14 09:05:22,092 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " void:rootResource ;[\n]" -2022-11-14 09:05:22,092 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " void:triples 1155920 ;[\n]" -2022-11-14 09:05:22,092 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:distribution , ;[\n]" -2022-11-14 09:05:22,092 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:keyword "Equations in MathML"@en , "DBpedia"@en ;[\n]" -2022-11-14 09:05:22,092 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:landingPage ;[\n]" -2022-11-14 09:05:22,092 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " sd:defaultGraph ;[\n]" -2022-11-14 09:05:22,092 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " foaf:page .[\n]" -2022-11-14 09:05:22,093 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,093 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,093 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:SingleFile ;[\n]" -2022-11-14 09:05:22,093 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "Geonames Links"@en , "core-i18n/fr/geonames_links_fr.ttl.bz2" ;[\n]" -2022-11-14 09:05:22,093 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" -2022-11-14 09:05:22,093 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:checksum ;[\n]" -2022-11-14 09:05:22,093 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:isDistributionOf ;[\n]" -2022-11-14 09:05:22,093 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" -2022-11-14 09:05:22,093 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:preview ;[\n]" -2022-11-14 09:05:22,093 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:uncompressedByteSize 40217 ;[\n]" -2022-11-14 09:05:22,093 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo ;[\n]" -2022-11-14 09:05:22,093 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "This file contains the back-links (owl:sameAs) to the Geonames dataset."@en ;[\n]" -2022-11-14 09:05:22,093 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" -2022-11-14 09:05:22,093 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" -2022-11-14 09:05:22,093 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" -2022-11-14 09:05:22,094 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" -2022-11-14 09:05:22,094 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" -2022-11-14 09:05:22,094 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "Geonames Links"@en ;[\n]" -2022-11-14 09:05:22,094 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:byteSize 4005 ;[\n]" -2022-11-14 09:05:22,094 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:downloadURL ;[\n]" -2022-11-14 09:05:22,094 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:mediaType dataid-mt:MediaType_turtle_x-bzip2 .[\n]" -2022-11-14 09:05:22,094 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,094 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,094 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:Dataset , dataid-ld:LinkedDataDataset ;[\n]" -2022-11-14 09:05:22,094 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "Person data Wikidata Uris"@en ;[\n]" -2022-11-14 09:05:22,094 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" -2022-11-14 09:05:22,094 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" -2022-11-14 09:05:22,094 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedDatasetRelation[\n]" -2022-11-14 09:05:22,094 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " ;[\n]" -2022-11-14 09:05:22,094 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:relatedDataset ;[\n]" -2022-11-14 09:05:22,094 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo , ;[\n]" -2022-11-14 09:05:22,094 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "Information about persons (date and place of birth etc., extracted from the English and German Wikipedia, represented using t" -2022-11-14 09:05:22,094 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "he FOAF vocabulary. Normalized dataset matching Wikidata resources (sorted)."@en ;[\n]" -2022-11-14 09:05:22,094 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" -2022-11-14 09:05:22,094 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:isPartOf ;[\n]" -2022-11-14 09:05:22,094 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" -2022-11-14 09:05:22,094 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:language ;[\n]" -2022-11-14 09:05:22,095 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" -2022-11-14 09:05:22,095 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" -2022-11-14 09:05:22,095 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" -2022-11-14 09:05:22,095 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "Person data Wikidata Uris"@en ;[\n]" -2022-11-14 09:05:22,095 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " void:rootResource ;[\n]" -2022-11-14 09:05:22,095 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " void:triples 3622531 ;[\n]" -2022-11-14 09:05:22,095 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:distribution , ;[\n]" -2022-11-14 09:05:22,095 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:keyword "Person data Wikidata Uris"@en , "DBpedia"@en ;[\n]" -2022-11-14 09:05:22,095 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:landingPage ;[\n]" -2022-11-14 09:05:22,095 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " sd:defaultGraph ;[\n]" -2022-11-14 09:05:22,095 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " foaf:page .[\n]" -2022-11-14 09:05:22,095 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,095 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,095 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:SingleFile ;[\n]" -2022-11-14 09:05:22,095 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "core-i18n/fr/instance_types_transitive_wkd_uris_fr.tql.bz2" , "Instance Types Transitive Wikidata Uris"@en ;[\n]" -2022-11-14 09:05:22,095 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" -2022-11-14 09:05:22,095 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:checksum ;[\n]" -2022-11-14 09:05:22,095 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:isDistributionOf ;[\n]" -2022-11-14 09:05:22,095 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" -2022-11-14 09:05:22,095 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:preview ;[\n]" -2022-11-14 09:05:22,095 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:uncompressedByteSize 1794860065 ;[\n]" -2022-11-14 09:05:22,095 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo ;[\n]" -2022-11-14 09:05:22,095 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "Contains transitive rdf:type $class based on the DBpedia ontology. Normalized dataset matching Wikidata resources (sorted)."@en ;[\n]" -2022-11-14 09:05:22,095 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion " -2022-11-14 09:05:22,096 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " ;[\n]" -2022-11-14 09:05:22,096 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" -2022-11-14 09:05:22,096 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" -2022-11-14 09:05:22,096 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" -2022-11-14 09:05:22,096 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" -2022-11-14 09:05:22,096 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "Instance Types Transitive Wikidata Uris"@en ;[\n]" -2022-11-14 09:05:22,096 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:byteSize 45539004 ;[\n]" -2022-11-14 09:05:22,096 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:downloadURL ;[\n]" -2022-11-14 09:05:22,096 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:mediaType dataid-mt:MediaType_n-quads_x-bzip2 .[\n]" -2022-11-14 09:05:22,096 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,096 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,096 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid-ld:LinkedDataDataset , dataid:Dataset ;[\n]" -2022-11-14 09:05:22,096 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "Homepages Wikidata Uris"@en ;[\n]" -2022-11-14 09:05:22,096 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" -2022-11-14 09:05:22,096 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" -2022-11-14 09:05:22,096 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:previousVersion ;[\n]" -2022-11-14 09:05:22,096 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedDatasetRelation[\n]" -2022-11-14 09:05:22,096 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " ;[\n]" -2022-11-14 09:05:22,096 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:relatedDataset ;[\n]" -2022-11-14 09:05:22,096 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo , ;[\n]" -2022-11-14 09:05:22,096 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "Links to homepages of persons, organizations etc. Normalized dataset matching Wikidata resources (sorted)."@en ;[\n]" -2022-11-14 09:05:22,096 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" -2022-11-14 09:05:22,097 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:isPartOf ;[\n]" -2022-11-14 09:05:22,097 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" -2022-11-14 09:05:22,097 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:language ;[\n]" -2022-11-14 09:05:22,097 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" -2022-11-14 09:05:22,097 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" -2022-11-14 09:05:22,097 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" -2022-11-14 09:05:22,097 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "Homepages Wikidata Uris"@en ;[\n]" -2022-11-14 09:05:22,097 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " void:rootResource ;[\n]" -2022-11-14 09:05:22,097 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " void:triples 171147 ;[\n]" -2022-11-14 09:05:22,097 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:distribution , ;[\n]" -2022-11-14 09:05:22,097 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:keyword "Homepages Wikidata Uris"@en , "DBpedia"@en ;[\n]" -2022-11-14 09:05:22,097 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:landingPage ;[\n]" -2022-11-14 09:05:22,097 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " sd:defaultGraph ;[\n]" -2022-11-14 09:05:22,097 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " foaf:page .[\n]" -2022-11-14 09:05:22,097 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,097 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,097 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:Dataset , dataid-ld:LinkedDataDataset ;[\n]" -2022-11-14 09:05:22,097 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "Nested Article Templates"@en ;[\n]" -2022-11-14 09:05:22,097 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" -2022-11-14 09:05:22,097 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" -2022-11-14 09:05:22,097 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:previousVersion ;[\n]" -2022-11-14 09:05:22,097 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedDatasetRelation[\n]" -2022-11-14 09:05:22,097 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " ;[\n]" -2022-11-14 09:05:22,097 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:relatedDataset ;[\n]" -2022-11-14 09:05:22,097 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo , ;[\n]" -2022-11-14 09:05:22,097 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "Templates used in an article (nested)."@en ;[\n]" -2022-11-14 09:05:22,097 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" -2022-11-14 09:05:22,097 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:isPartOf " -2022-11-14 09:05:22,100 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " ;[\n]" -2022-11-14 09:05:22,100 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" -2022-11-14 09:05:22,100 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:language ;[\n]" -2022-11-14 09:05:22,100 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" -2022-11-14 09:05:22,100 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" -2022-11-14 09:05:22,100 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" -2022-11-14 09:05:22,100 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "Nested Article Templates"@en ;[\n]" -2022-11-14 09:05:22,100 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " void:rootResource ;[\n]" -2022-11-14 09:05:22,100 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " void:triples 2566817 ;[\n]" -2022-11-14 09:05:22,100 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:distribution , ;[\n]" -2022-11-14 09:05:22,100 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:keyword "DBpedia"@en , "Nested Article Templates"@en ;[\n]" -2022-11-14 09:05:22,100 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:landingPage ;[\n]" -2022-11-14 09:05:22,100 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " sd:defaultGraph ;[\n]" -2022-11-14 09:05:22,100 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " foaf:page .[\n]" -2022-11-14 09:05:22,100 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,100 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,100 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:Dataset , dataid-ld:LinkedDataDataset ;[\n]" -2022-11-14 09:05:22,100 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "Revision Ids"@en ;[\n]" -2022-11-14 09:05:22,100 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " " -2022-11-14 09:05:22,101 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "dataid:associatedAgent ;[\n]" -2022-11-14 09:05:22,101 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" -2022-11-14 09:05:22,101 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:previousVersion ;[\n]" -2022-11-14 09:05:22,101 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedDatasetRelation[\n]" -2022-11-14 09:05:22,101 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " ;[\n]" -2022-11-14 09:05:22,101 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:relatedDataset ;[\n]" -2022-11-14 09:05:22,101 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo , ;[\n]" -2022-11-14 09:05:22,101 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "Dataset linking a DBpedia resource to the revision ID of the Wikipedia article the data was extracted from."@en ;[\n]" -2022-11-14 09:05:22,101 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" -2022-11-14 09:05:22,101 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:isPartOf ;[\n]" -2022-11-14 09:05:22,101 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" -2022-11-14 09:05:22,101 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:language ;[\n]" -2022-11-14 09:05:22,101 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" -2022-11-14 09:05:22,101 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" -2022-11-14 09:05:22,101 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" -2022-11-14 09:05:22,101 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "Revision Ids" -2022-11-14 09:05:22,102 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << ""@en ;[\n]" -2022-11-14 09:05:22,102 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " void:rootResource ;[\n]" -2022-11-14 09:05:22,102 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " void:triples 3831703 ;[\n]" -2022-11-14 09:05:22,102 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:distribution , ;[\n]" -2022-11-14 09:05:22,102 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:keyword "Revision Ids"@en , "DBpedia"@en ;[\n]" -2022-11-14 09:05:22,102 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:landingPage ;[\n]" -2022-11-14 09:05:22,102 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " sd:defaultGraph ;[\n]" -2022-11-14 09:05:22,102 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " foaf:page .[\n]" -2022-11-14 09:05:22,102 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,102 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,102 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:SingleFile ;[\n]" -2022-11-14 09:05:22,102 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "core-i18n/fr/wikipedia_links_fr.ttl.bz2" , "Wikipedia Links"@en ;[\n]" -2022-11-14 09:05:22,102 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" -2022-11-14 09:05:22,102 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:checksum ;[\n]" -2022-11-14 09:05:22,102 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:isDistributionOf ;[\n]" -2022-11-14 09:05:22,102 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" -2022-11-14 09:05:22,102 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:preview " -2022-11-14 09:05:22,102 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " ;[\n]" -2022-11-14 09:05:22,102 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:uncompressedByteSize 1768454737 ;[\n]" -2022-11-14 09:05:22,102 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo ;[\n]" -2022-11-14 09:05:22,102 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "Dataset linking DBpedia resource to corresponding article in Wikipedia."@en ;[\n]" -2022-11-14 09:05:22,102 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" -2022-11-14 09:05:22,102 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" -2022-11-14 09:05:22,102 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" -2022-11-14 09:05:22,102 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" -2022-11-14 09:05:22,102 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" -2022-11-14 09:05:22,102 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "Wikipedia Links"@en ;[\n]" -2022-11-14 09:05:22,102 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:byteSize 79262209 ;[\n]" -2022-11-14 09:05:22,102 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:downloadURL ;[\n]" -2022-11-14 09:05:22,102 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:mediaType dataid-mt:MediaType_turtle_x-bzip2 .[\n]" -2022-11-14 09:05:22,102 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,102 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,102 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:SingleFile ;[\n]" -2022-11-14 09:05:22,102 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "core-i18n/fr/wikipedia_links_fr.tql.bz2" , "Wikipedia Links"@en ;[\n]" -2022-11-14 09:05:22,102 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" -2022-11-14 09:05:22,103 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:checksum ;[\n]" -2022-11-14 09:05:22,103 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:isDistributionOf ;[\n]" -2022-11-14 09:05:22,103 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" -2022-11-14 09:05:22,103 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:preview ;[\n]" -2022-11-14 09:05:22,103 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:uncompressedByteSize 2645830781 ;[\n]" -2022-11-14 09:05:22,103 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo ;[\n]" -2022-11-14 09:05:22,103 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "Dataset linking DBpedia resource to corresponding article in Wikipedia."@en ;[\n]" -2022-11-14 09:05:22,103 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" -2022-11-14 09:05:22,103 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" -2022-11-14 09:05:22,103 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" -2022-11-14 09:05:22,103 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" -2022-11-14 09:05:22,103 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" -2022-11-14 09:05:22,103 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "Wikipedia Links"@en ;[\n]" -2022-11-14 09:05:22,103 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:byteSize 128222486 ;[\n]" -2022-11-14 09:05:22,103 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:downloadURL ;[\n]" -2022-11-14 09:05:22,103 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:mediaType dataid-mt:MediaType_n-quads_x-bzip2 .[\n]" -2022-11-14 09:05:22,103 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,103 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,103 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:SingleFile ;[\n]" -2022-11-14 09:05:22,103 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "core-i18n/fr/skos_categories_en_uris_fr.ttl.bz2" , "SKOS Categories English Uris"@en ;[\n]" -2022-11-14 09:05:22,103 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" -2022-11-14 09:05:22,103 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:checksum ;[\n]" -2022-11-14 09:05:22,103 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:isDistributionOf ;[\n]" -2022-11-14 09:05:22,103 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" -2022-11-14 09:05:22,103 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:preview ;[\n]" -2022-11-14 09:05:22,103 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:uncompressedByteSize 99843883 ;[\n]" -2022-11-14 09:05:22,103 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo ;[\n]" -2022-11-14 09:05:22,103 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "Information which concept is a category and how categories are related using the SKOS Vocabulary. Normali" -2022-11-14 09:05:22,124 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "zed dataset matching English DBpedia resources."@en ;[\n]" -2022-11-14 09:05:22,124 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" -2022-11-14 09:05:22,124 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" -2022-11-14 09:05:22,124 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" -2022-11-14 09:05:22,124 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" -2022-11-14 09:05:22,124 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" -2022-11-14 09:05:22,124 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "SKOS Categories English Uris"@en ;[\n]" -2022-11-14 09:05:22,124 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:byteSize 4508904 ;[\n]" -2022-11-14 09:05:22,124 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:downloadURL ;[\n]" -2022-11-14 09:05:22,124 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:mediaType dataid-mt:MediaType_turtle_x-bzip2 .[\n]" -2022-11-14 09:05:22,124 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,124 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,124 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:Dataset , dataid-ld:LinkedDataDataset ;[\n]" -2022-11-14 09:05:22,124 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "French Population Wikidata Uris"@en ;[\n]" -2022-11-14 09:05:22,124 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" -2022-11-14 09:05:22,124 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" -2022-11-14 09:05:22,124 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedDatasetRelation[\n]" -2022-11-14 09:05:22,124 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " " -2022-11-14 09:05:22,125 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " ;[\n]" -2022-11-14 09:05:22,125 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:relatedDataset ;[\n]" -2022-11-14 09:05:22,125 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo , ;[\n]" -2022-11-14 09:05:22,125 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "French dataset about population. Normalized dataset matching Wikidata resources (sorted)."@en ;[\n]" -2022-11-14 09:05:22,125 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" -2022-11-14 09:05:22,125 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:isPartOf ;[\n]" -2022-11-14 09:05:22,125 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" -2022-11-14 09:05:22,125 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:language ;[\n]" -2022-11-14 09:05:22,125 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" -2022-11-14 09:05:22,125 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" -2022-11-14 09:05:22,125 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" -2022-11-14 09:05:22,125 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "French Population Wikidata Uris"@en ;[\n]" -2022-11-14 09:05:22,125 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " void:rootResource ;[\n]" -2022-11-14 09:05:22,125 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " void:triples 41374 ;[\n]" -2022-11-14 09:05:22,125 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:distribution , ;[\n]" -2022-11-14 09:05:22,125 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:keyword "French Population Wikidata Uris"@en , "DBpedia"@en ;[\n]" -2022-11-14 09:05:22,125 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:landingPage ;[\n]" -2022-11-14 09:05:22,125 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " sd:defaultGraph ;[\n]" -2022-11-14 09:05:22,125 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " foaf:page .[\n]" -2022-11-14 09:05:22,125 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,125 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,125 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:SingleFile ;[\n]" -2022-11-14 09:05:22,125 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "core-i18n/fr/instance_types_transitive_en_uris_fr.ttl.bz2" , "Instance Types Transitive English Uris"@en ;[\n]" -2022-11-14 09:05:22,125 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" -2022-11-14 09:05:22,125 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:checksum ;[\n]" -2022-11-14 09:05:22,125 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:isDistributionOf ;[\n]" -2022-11-14 09:05:22,125 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" -2022-11-14 09:05:22,125 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:preview ;[\n]" -2022-11-14 09:05:22,125 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:uncompressedByteSize " -2022-11-14 09:05:22,125 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "690674922 ;[\n]" -2022-11-14 09:05:22,125 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo ;[\n]" -2022-11-14 09:05:22,125 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "Contains transitive rdf:type $class based on the DBpedia ontology. Normalized dataset matching English DBpedia resources."@en ;[\n]" -2022-11-14 09:05:22,125 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" -2022-11-14 09:05:22,125 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" -2022-11-14 09:05:22,125 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" -2022-11-14 09:05:22,125 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" -2022-11-14 09:05:22,125 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" -2022-11-14 09:05:22,125 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "Instance Types Transitive English Uris"@en ;[\n]" -2022-11-14 09:05:22,125 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:byteSize 20207344 ;[\n]" -2022-11-14 09:05:22,125 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:downloadURL ;[\n]" -2022-11-14 09:05:22,125 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:mediaType dataid-mt:MediaType_turtle_x-bzip2 .[\n]" -2022-11-14 09:05:22,125 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,125 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,125 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:SingleFile ;[\n]" -2022-11-14 09:05:22,125 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "SKOS Categories English Uris"@en , "core-i18n/fr/skos_categories_en_uris_fr.tql.bz2" ;[\n]" -2022-11-14 09:05:22,125 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" -2022-11-14 09:05:22,132 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:checksum ;[\n]" -2022-11-14 09:05:22,132 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:isDistributionOf ;[\n]" -2022-11-14 09:05:22,132 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" -2022-11-14 09:05:22,132 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:preview ;[\n]" -2022-11-14 09:05:22,132 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:uncompressedByteSize 155999390 ;[\n]" -2022-11-14 09:05:22,132 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo ;[\n]" -2022-11-14 09:05:22,132 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "Information which concept is a category and how categories are related using the SKOS Vocabulary. Normalized dataset matching English DBpedia resources."@en ;[\n]" -2022-11-14 09:05:22,132 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" -2022-11-14 09:05:22,132 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" -2022-11-14 09:05:22,132 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" -2022-11-14 09:05:22,132 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" -2022-11-14 09:05:22,132 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" -2022-11-14 09:05:22,132 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "SKOS Ca" -2022-11-14 09:05:22,133 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "tegories English Uris"@en ;[\n]" -2022-11-14 09:05:22,133 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:byteSize 7904810 ;[\n]" -2022-11-14 09:05:22,133 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:downloadURL ;[\n]" -2022-11-14 09:05:22,133 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:mediaType dataid-mt:MediaType_n-quads_x-bzip2 .[\n]" -2022-11-14 09:05:22,133 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,133 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,133 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid-ld:LinkedDataDataset , dataid:Dataset ;[\n]" -2022-11-14 09:05:22,133 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "Person data"@en ;[\n]" -2022-11-14 09:05:22,133 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" -2022-11-14 09:05:22,133 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" -2022-11-14 09:05:22,133 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedDatasetRelation[\n]" -2022-11-14 09:05:22,133 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " ;[\n]" -2022-11-14 09:05:22,133 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:relatedDataset ;[\n]" -2022-11-14 09:05:22,133 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo , ;[\n]" -2022-11-14 09:05:22,133 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "Information about persons (date and place of birth etc., extracted from the English and German Wikipedia, represented using the FOAF vocabulary."@en ;[\n]" -2022-11-14 09:05:22,133 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" -2022-11-14 09:05:22,133 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:isPartOf ;[\n]" -2022-11-14 09:05:22,133 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" -2022-11-14 09:05:22,133 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:language ;[\n]" -2022-11-14 09:05:22,133 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" -2022-11-14 09:05:22,133 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" -2022-11-14 09:05:22,133 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" -2022-11-14 09:05:22,133 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "Person data"@en ;[\n]" -2022-11-14 09:05:22,133 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " void:rootResource ;[\n]" -2022-11-14 09:05:22,133 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " void:triples 3622531 ;[\n]" -2022-11-14 09:05:22,133 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:distribution , ;[\n]" -2022-11-14 09:05:22,133 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:keyword "Person data"@en , "DBpedia"@en ;[\n]" -2022-11-14 09:05:22,133 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:landingPage ;[\n]" -2022-11-14 09:05:22,133 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " sd:defaultGraph ;[\n]" -2022-11-14 09:05:22,133 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " foaf:page .[\n]" -2022-11-14 09:05:22,133 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,133 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,133 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:SingleFile ;[\n]" -2022-11-14 09:05:22,133 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "Instance Types Transitive English Uris"@en , "core-i18n/fr/instance_types_transitive_en_uris_fr.tql.bz2" ;[\n]" -2022-11-14 09:05:22,133 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associated" -2022-11-14 09:05:22,134 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "Agent ;[\n]" -2022-11-14 09:05:22,134 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:checksum ;[\n]" -2022-11-14 09:05:22,134 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:isDistributionOf ;[\n]" -2022-11-14 09:05:22,134 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" -2022-11-14 09:05:22,134 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:preview ;[\n]" -2022-11-14 09:05:22,134 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:uncompressedByteSize 1284046793 ;[\n]" -2022-11-14 09:05:22,134 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo ;[\n]" -2022-11-14 09:05:22,134 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "Contains transitive rdf:type $class based on the DBpedia ontology. Normalized dataset matching English DBpedia resources."@en ;[\n]" -2022-11-14 09:05:22,134 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" -2022-11-14 09:05:22,134 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" -2022-11-14 09:05:22,134 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" -2022-11-14 09:05:22,134 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" -2022-11-14 09:05:22,134 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" -2022-11-14 09:05:22,134 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "Instance Types Transitive English Uris"@en ;[\n]" -2022-11-14 09:05:22,134 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:byteSize 35305518 ;[\n]" -2022-11-14 09:05:22,134 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:downloadURL ;[\n]" -2022-11-14 09:05:22,134 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:mediaType dataid-mt:MediaType_n-quads_x-bzip2 .[\n]" -2022-11-14 09:05:22,134 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,134 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,134 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:SingleFile ;[\n]" -2022-11-14 09:05:22,134 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "Category Labels. English Uris"@en , "core-i18n/fr/category_labels_en_uris_fr.ttl.bz2" ;[\n]" -2022-11-14 09:05:22,134 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" -2022-11-14 09:05:22,134 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:checksum ;[\n]" -2022-11-14 09:05:22,134 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:isDistributionOf ;[\n]" -2022-11-14 09:05:22,134 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" -2022-11-14 09:05:22,134 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:preview ;[\n]" -2022-11-14 09:05:22,134 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:uncompressedByteSize 23827517 ;[\n]" -2022-11-14 09:05:22,134 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo ;[\n]" -2022-11-14 09:05:22,134 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "Labels for Categories. Normalized dataset matching English DBpedia resources."@en ;[\n]" -2022-11-14 09:05:22,134 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" -2022-11-14 09:05:22,134 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" -2022-11-14 09:05:22,134 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" -2022-11-14 09:05:22,134 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" -2022-11-14 09:05:22,134 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" -2022-11-14 09:05:22,134 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "Category Labels. English Uris"@en ;[\n]" -2022-11-14 09:05:22,134 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:byteSize 1838112 ;[\n]" -2022-11-14 09:05:22,134 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:downloadURL ;[\n]" -2022-11-14 09:05:22,134 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:mediaType dataid-mt:MediaType_turtle_x-bzip2 .[\n]" -2022-11-14 09:05:22,134 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,134 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,134 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:Dataset , dataid-ld:LinkedDataDataset ;[\n]" -2022-11-14 09:05:22,134 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "Short Abstracts Wikidata Uris"@en ;[\n]" -2022-11-14 09:05:22,134 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" -2022-11-14 09:05:22,134 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" -2022-11-14 09:05:22,134 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:previousVersion " -2022-11-14 09:05:22,135 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " ;[\n]" -2022-11-14 09:05:22,135 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedDatasetRelation[\n]" -2022-11-14 09:05:22,135 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " ;[\n]" -2022-11-14 09:05:22,135 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:relatedDataset ;[\n]" -2022-11-14 09:05:22,135 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo , ;[\n]" -2022-11-14 09:05:22,135 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "Short Abstracts (about 600 characters long) of Wikipedia articles. Normalized dataset matching Wikidata resources (sorted)."@en ;[\n]" -2022-11-14 09:05:22,135 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" -2022-11-14 09:05:22,135 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:isPartOf ;[\n]" -2022-11-14 09:05:22,135 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" -2022-11-14 09:05:22,135 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:language ;[\n]" -2022-11-14 09:05:22,135 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" -2022-11-14 09:05:22,135 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" -2022-11-14 09:05:22,135 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" -2022-11-14 09:05:22,135 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "Short Abstracts Wikidata Uris"@en ;[\n]" -2022-11-14 09:05:22,135 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " void:rootResource ;[\n]" -2022-11-14 09:05:22,135 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " void:triples 1678856 ;[\n]" -2022-11-14 09:05:22,135 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:distribution , ;[\n]" -2022-11-14 09:05:22,135 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:keyword "DBpedia"@en , "Short Abstracts Wikidata Uris"@en ;[\n]" -2022-11-14 09:05:22,135 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:landingPage ;[\n]" -2022-11-14 09:05:22,135 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " sd:defaultGraph ;[\n]" -2022-11-14 09:05:22,135 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " foaf:page .[\n]" -2022-11-14 09:05:22,135 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,135 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,135 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:SingleFile ;[\n]" -2022-11-14 09:05:22,135 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "Topical Concepts"@en , "core-i18n/fr/topical_concepts_fr.ttl.bz2" ;[\n]" -2022-11-14 09:05:22,135 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" -2022-11-14 09:05:22,135 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:checksum ;[\n]" -2022-11-14 09:05:22,135 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:isDistributionOf ;[\n]" -2022-11-14 09:05:22,135 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" -2022-11-14 09:05:22,135 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:preview ;[\n]" -2022-11-14 09:05:22,137 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:uncompressedByteSize 19824066 ;[\n]" -2022-11-14 09:05:22,137 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo ;[\n]" -2022-11-14 09:05:22,137 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "Resources that describe a category"@en ;[\n]" -2022-11-14 09:05:22,137 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" -2022-11-14 09:05:22,137 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" -2022-11-14 09:05:22,137 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" -2022-11-14 09:05:22,137 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" -2022-11-14 09:05:22,137 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" -2022-11-14 09:05:22,137 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "Topical Concepts"@en ;[\n]" -2022-11-14 09:05:22,137 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:byteSize 963916 ;[\n]" -2022-11-14 09:05:22,137 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:downloadURL ;[\n]" -2022-11-14 09:05:22,137 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:mediaType dataid-mt:MediaType_turtle_x-bzip2 .[\n]" -2022-11-14 09:05:22,137 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,137 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,137 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:SingleFile ;[\n]" -2022-11-14 09:05:22,137 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "core-i18n/fr/topical_concepts_fr.tql.bz2" , "Topical Concepts"@en ;[\n]" -2022-11-14 09:05:22,137 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" -2022-11-14 09:05:22,137 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:checksum ;[\n]" -2022-11-14 09:05:22,137 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:isDistributionOf ;[\n]" -2022-11-14 09:05:22,137 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" -2022-11-14 09:05:22,137 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:preview ;[\n]" -2022-11-14 09:05:22,137 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:uncompressedByteSize 32606418 ;[\n]" -2022-11-14 09:05:22,137 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo ;[\n]" -2022-11-14 09:05:22,137 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "Resources that describe a category"@en ;[\n]" -2022-11-14 09:05:22,137 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" -2022-11-14 09:05:22,137 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" -2022-11-14 09:05:22,137 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" -2022-11-14 09:05:22,137 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" -2022-11-14 09:05:22,137 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" -2022-11-14 09:05:22,137 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "Topical Concepts"@en ;[\n]" -2022-11-14 09:05:22,137 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:byteSize 1780548 ;[\n]" -2022-11-14 09:05:22,137 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:downloadURL ;[\n]" -2022-11-14 09:05:22,137 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:mediaType dataid-mt" -2022-11-14 09:05:22,143 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << ":MediaType_n-quads_x-bzip2 .[\n]" -2022-11-14 09:05:22,143 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,143 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,143 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:SingleFile ;[\n]" -2022-11-14 09:05:22,143 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "core-i18n/fr/article_categories_en_uris_fr.ttl.bz2" , "Article Categories English Uris"@en ;[\n]" -2022-11-14 09:05:22,143 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" -2022-11-14 09:05:22,143 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:checksum ;[\n]" -2022-11-14 09:05:22,143 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:isDistributionOf ;[\n]" -2022-11-14 09:05:22,143 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" -2022-11-14 09:05:22,143 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:preview ;[\n]" -2022-11-14 09:05:22,143 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:uncompressedByteSize 406587108 ;[\n]" -2022-11-14 09:05:22,143 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo ;[\n]" -2022-11-14 09:05:22,143 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "Links from concepts to categories using the SKOS vocabulary. Normalized dataset matching English DBpedia resources."@en ;[\n]" -2022-11-14 09:05:22,143 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" -2022-11-14 09:05:22,144 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" -2022-11-14 09:05:22,144 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" -2022-11-14 09:05:22,144 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" -2022-11-14 09:05:22,144 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" -2022-11-14 09:05:22,144 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "Article Categories English Uris"@en ;[\n]" -2022-11-14 09:05:22,144 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:byteSize 27847553 ;[\n]" -2022-11-14 09:05:22,144 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:downloadURL ;[\n]" -2022-11-14 09:05:22,144 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:mediaType dataid-mt:MediaType_turtle_x-bzip2 .[\n]" -2022-11-14 09:05:22,144 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,144 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,144 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:SingleFile ;[\n]" -2022-11-14 09:05:22,144 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "NIF Text Links"@en , "core-i18n/fr/nif_text_links_fr.ttl.bz2" ;[\n]" -2022-11-14 09:05:22,144 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" -2022-11-14 09:05:22,144 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:checksum ;[\n]" -2022-11-14 09:05:22,144 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:isDistributionOf ;[\n]" -2022-11-14 09:05:22,144 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" -2022-11-14 09:05:22,144 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:preview ;[\n]" -2022-11-14 09:05:22,144 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:uncompressedByteSize 90566118826 ;[\n]" -2022-11-14 09:05:22,144 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo ;[\n]" -2022-11-14 09:05:22,144 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "This dataset contains all text links of a Wikipedia page, detailed in the NIF format."@en ;[\n]" -2022-11-14 09:05:22,144 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" -2022-11-14 09:05:22,144 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" -2022-11-14 09:05:22,144 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" -2022-11-14 09:05:22,144 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" -2022-11-14 09:05:22,144 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" -2022-11-14 09:05:22,144 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "NIF Text Links"@en ;[\n]" -2022-11-14 09:05:22,144 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:byteSize 2501070213 ;[\n]" -2022-11-14 09:05:22,144 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:downloadURL ;[\n]" -2022-11-14 09:05:22,144 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:mediaType dataid-mt:MediaType_turtle_x-bzip2 .[\n]" -2022-11-14 09:05:22,144 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,144 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,144 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:SingleFile ;[\n]" -2022-11-14 09:05:22,144 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "core-i18n/fr/raw_tables_fr.ttl.bz2" , "Raw html tables"@en ;[\n]" -2022-11-14 09:05:22,144 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " " -2022-11-14 09:05:22,145 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" -2022-11-14 09:05:22,145 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:checksum ;[\n]" -2022-11-14 09:05:22,145 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:isDistributionOf ;[\n]" -2022-11-14 09:05:22,145 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" -2022-11-14 09:05:22,145 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:preview ;[\n]" -2022-11-14 09:05:22,145 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:uncompressedByteSize 14708397280 ;[\n]" -2022-11-14 09:05:22,145 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo ;[\n]" -2022-11-14 09:05:22,145 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "These are the raw html tables collected during the NIF extraction; to be further processed later."@en ;[\n]" -2022-11-14 09:05:22,145 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" -2022-11-14 09:05:22,145 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" -2022-11-14 09:05:22,145 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" -2022-11-14 09:05:22,145 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" -2022-11-14 09:05:22,145 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" -2022-11-14 09:05:22,145 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "Raw html tables"@en ;[\n]" -2022-11-14 09:05:22,145 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:byteSize 798083999 ;[\n]" -2022-11-14 09:05:22,145 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:downloadURL ;[\n]" -2022-11-14 09:05:22,145 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:mediaType dataid-mt:MediaType_turtle_x-bzip2 .[\n]" -2022-11-14 09:05:22,145 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,145 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,145 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:SingleFile ;[\n]" -2022-11-14 09:05:22,145 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "Out Degree"@en , "core-i18n/fr/out_degree_fr.tql.bz2" ;[\n]" -2022-11-14 09:05:22,145 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" -2022-11-14 09:05:22,145 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:checksum ;[\n]" -2022-11-14 09:05:22,145 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:isDistributionOf ;[\n]" -2022-11-14 09:05:22,145 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" -2022-11-14 09:05:22,145 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:preview ;[\n]" -2022-11-14 09:05:22,145 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:uncompressedByteSize 749683170 ;[\n]" -2022-11-14 09:05:22,145 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo ;[\n]" -2022-11-14 09:05:22,145 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "Number of links emerging from a Wikipedia article and pointing to another Wikipedia article."@en ;[\n]" -2022-11-14 09:05:22,145 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" -2022-11-14 09:05:22,145 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" -2022-11-14 09:05:22,145 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" -2022-11-14 09:05:22,145 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" -2022-11-14 09:05:22,145 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" -2022-11-14 09:05:22,145 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "Out Degree"@en ;[\n]" -2022-11-14 09:05:22,145 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:byteSize 54811602 ;[\n]" -2022-11-14 09:05:22,145 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:downloadURL ;[\n]" -2022-11-14 09:05:22,145 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:mediaType dataid-mt:MediaType_n-quads_x-bzip2 .[\n]" -2022-11-14 09:05:22,145 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,145 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,145 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid-ld:LinkedDataDataset , dataid:Dataset ;[\n]" -2022-11-14 09:05:22,145 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "Geo Coordinates Mappingbased English Uris"@en ;[\n]" -2022-11-14 09:05:22,145 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" -2022-11-14 09:05:22,145 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" -2022-11-14 09:05:22,145 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedDatasetRelation[\n]" -2022-11-14 09:05:22,145 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " ;[\n]" -2022-11-14 09:05:22,145 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:relatedDataset ;[\n]" -2022-11-14 09:05:22,145 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo , ;[\n]" -2022-11-14 09:05:22,147 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "Geographic coordinates extracted from Wikipedia originating from mapped infoboxes in the mappings wiki Normalized dataset matching English DBpedia resources."@en ;[\n]" -2022-11-14 09:05:22,147 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" -2022-11-14 09:05:22,147 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:isPartOf ;[\n]" -2022-11-14 09:05:22,147 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" -2022-11-14 09:05:22,147 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:language ;[\n]" -2022-11-14 09:05:22,147 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" -2022-11-14 09:05:22,147 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" -2022-11-14 09:05:22,147 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" -2022-11-14 09:05:22,147 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "Geo Coordinates Mappingbased English Uris"@en ;[\n]" -2022-11-14 09:05:22,147 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " void:rootResource ;[\n]" -2022-11-14 09:05:22,147 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " void:triples 664186 ;[\n]" -2022-11-14 09:05:22,147 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:distribution , ;[\n]" -2022-11-14 09:05:22,147 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:keyword "Geo Coordinates Mappingbased English Uris"@en , "DBpedia"@en ;[\n]" -2022-11-14 09:05:22,147 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:landingPage ;[\n]" -2022-11-14 09:05:22,147 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " sd:defaultGraph ;[\n]" -2022-11-14 09:05:22,147 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " foaf:page .[\n]" -2022-11-14 09:05:22,147 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,147 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,147 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:SingleFile ;[\n]" -2022-11-14 09:05:22,147 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "French Population English Uris"@en , "core-i18n/fr/french_population_en_uris_fr.ttl.bz2" ;[\n]" -2022-11-14 09:05:22,147 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" -2022-11-14 09:05:22,147 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:checksum ;[\n]" -2022-11-14 09:05:22,147 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:isDistributionOf ;[\n]" -2022-11-14 09:05:22,147 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" -2022-11-14 09:05:22,147 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:preview ;[\n]" -2022-11-14 09:05:22,147 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:uncompressedByteSize 5903911 ;[\n]" -2022-11-14 09:05:22,147 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo ;[\n]" -2022-11-14 09:05:22,147 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:descripti" -2022-11-14 09:05:22,148 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "on "French dataset about population. Normalized dataset matching English DBpedia resources."@en ;[\n]" -2022-11-14 09:05:22,148 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" -2022-11-14 09:05:22,148 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" -2022-11-14 09:05:22,148 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" -2022-11-14 09:05:22,148 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" -2022-11-14 09:05:22,148 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" -2022-11-14 09:05:22,148 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "French Population English Uris"@en ;[\n]" -2022-11-14 09:05:22,148 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:byteSize 253255 ;[\n]" -2022-11-14 09:05:22,148 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:downloadURL ;[\n]" -2022-11-14 09:05:22,148 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:mediaType dataid-mt:MediaType_turtle_x-bzip2 .[\n]" -2022-11-14 09:05:22,148 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,148 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,148 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid-ld:LinkedDataDataset , dataid:Dataset ;[\n]" -2022-11-14 09:05:22,148 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "Article Categories"@en ;[\n]" -2022-11-14 09:05:22,148 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" -2022-11-14 09:05:22,148 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" -2022-11-14 09:05:22,148 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:previousVersion ;[\n]" -2022-11-14 09:05:22,148 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedDatasetRelation[\n]" -2022-11-14 09:05:22,148 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " ;[\n]" -2022-11-14 09:05:22,148 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:relatedDataset ;[\n]" -2022-11-14 09:05:22,148 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo , ;[\n]" -2022-11-14 09:05:22,148 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "Links from concepts to categories using the SKOS vocabulary."@en ;[\n]" -2022-11-14 09:05:22,148 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" -2022-11-14 09:05:22,148 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:isPartOf ;[\n]" -2022-11-14 09:05:22,148 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" -2022-11-14 09:05:22,148 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:language ;[\n]" -2022-11-14 09:05:22,148 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" -2022-11-14 09:05:22,148 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" -2022-11-14 09:05:22,148 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" -2022-11-14 09:05:22,148 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "Article Categories"@en ;[\n]" -2022-11-14 09:05:22,148 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " void:rootResource ;[\n]" -2022-11-14 09:05:22,148 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " void:triples 6549309 ;[\n]" -2022-11-14 09:05:22,148 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:distribution , ;[\n]" -2022-11-14 09:05:22,149 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:keyword "DBpedia"@en , "Article Categories"@en ;[\n]" -2022-11-14 09:05:22,149 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:landingPage ;[\n]" -2022-11-14 09:05:22,149 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " sd:defaultGraph ;[\n]" -2022-11-14 09:05:22,149 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " foaf:page .[\n]" -2022-11-14 09:05:22,149 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,149 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,149 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:SingleFile ;[\n]" -2022-11-14 09:05:22,149 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "French Population English Uris"@en , "core-i18n/fr/french_population_en_uris_fr.tql.bz2" ;[\n]" -2022-11-14 09:05:22,149 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" -2022-11-14 09:05:22,149 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:checksum ;[\n]" -2022-11-14 09:05:22,149 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:isDistributionOf ;[\n]" -2022-11-14 09:05:22,149 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" -2022-11-14 09:05:22,149 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:preview ;[\n]" -2022-11-14 09:05:22,149 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:uncompressedByteSize 10425645 ;[\n]" -2022-11-14 09:05:22,149 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo " -2022-11-14 09:05:22,150 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " ;[\n]" -2022-11-14 09:05:22,150 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "French dataset about population. Normalized dataset matching English DBpedia resources."@en ;[\n]" -2022-11-14 09:05:22,150 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" -2022-11-14 09:05:22,150 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" -2022-11-14 09:05:22,150 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" -2022-11-14 09:05:22,150 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" -2022-11-14 09:05:22,150 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" -2022-11-14 09:05:22,150 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "French Population English Uris"@en ;[\n]" -2022-11-14 09:05:22,150 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:byteSize 499005 ;[\n]" -2022-11-14 09:05:22,150 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:downloadURL ;[\n]" -2022-11-14 09:05:22,150 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:mediaType dataid-mt:MediaType_n-quads_x-bzip2 .[\n]" -2022-11-14 09:05:22,150 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,150 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,150 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:Dataset , dataid-ld:LinkedDataDataset ;[\n]" -2022-11-14 09:05:22,150 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "Mappingbased Literals"@en ;[\n]" -2022-11-14 09:05:22,150 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" -2022-11-14 09:05:22,150 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" -2022-11-14 09:05:22,150 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:previousVersion ;[\n]" -2022-11-14 09:05:22,150 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedDatasetRelation[\n]" -2022-11-14 09:05:22,150 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " ;[\n]" -2022-11-14 09:05:22,150 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:relatedDataset ;[\n]" -2022-11-14 09:05:22,150 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo , ;[\n]" -2022-11-14 09:05:22,150 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "High-quality data extracted from Infoboxes using the mapping-based extraction (Literal properties only). The predicates in this dataset are in the ontology namespace. Note that this data is of much higher quality than the Raw Infobox Properties in the 'property' namespace."@en ;[\n]" -2022-11-14 09:05:22,150 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" -2022-11-14 09:05:22,150 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:isPartOf ;[\n]" -2022-11-14 09:05:22,150 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" -2022-11-14 09:05:22,150 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:language ;[\n]" -2022-11-14 09:05:22,150 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" -2022-11-14 09:05:22,150 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" -2022-11-14 09:05:22,150 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" -2022-11-14 09:05:22,150 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "Mappingbased Literals"@en ;[\n]" -2022-11-14 09:05:22,150 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " void:rootResource ;[\n]" -2022-11-14 09:05:22,150 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " void:triples 5080630 ;[\n]" -2022-11-14 09:05:22,150 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:distribution , ;[\n]" -2022-11-14 09:05:22,150 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:keyword "DBpedia"@en , "Mappingbased Literals"@en ;[\n]" -2022-11-14 09:05:22,150 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:landingPage ;[\n]" -2022-11-14 09:05:22,150 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " sd:defaultGraph ;[\n]" -2022-11-14 09:05:22,150 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " foaf:page .[\n]" -2022-11-14 09:05:22,150 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,150 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,150 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:SingleFile ;[\n]" -2022-11-14 09:05:22,150 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "NIF Context"@en , "core-i18n/fr/nif_context_fr.tql.bz2" ;[\n]" -2022-11-14 09:05:22,150 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" -2022-11-14 09:05:22,150 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:checksum ;[\n]" -2022-11-14 09:05:22,150 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:isDistributionOf ;[\n]" -2022-11-14 09:05:22,150 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" -2022-11-14 09:05:22,150 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:preview ;[\n]" -2022-11-14 09:05:22,150 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:uncompressedByteSize 7635864056 ;[\n]" -2022-11-14 09:05:22,150 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo ;[\n]" -2022-11-14 09:05:22,150 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "Contains the full text of a Wikipedia page in the NLP Interchange Format (NIF). All other NIF resources will reference the context of its Wikipedia page.It contains the whole text of a WikiPage (minus tables and references and minor artifacts)"@en ;[\n]" -2022-11-14 09:05:22,150 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" -2022-11-14 09:05:22,150 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" -2022-11-14 09:05:22,150 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" -2022-11-14 09:05:22,150 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" -2022-11-14 09:05:22,150 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" -2022-11-14 09:05:22,150 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "NIF Context"@en ;[\n]" -2022-11-14 09:05:22,150 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:byteSize 1506058648 ;[\n]" -2022-11-14 09:05:22,150 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:downloadURL ;[\n]" -2022-11-14 09:05:22,150 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:mediaType dataid-mt:MediaType_n-quads_x-bzip2 .[\n]" -2022-11-14 09:05:22,150 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,150 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,150 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:SingleFile ;[\n]" -2022-11-14 09:05:22,150 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label " -2022-11-14 09:05:22,152 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " "Equations in MathML"@en , "core-i18n/fr/equations_fr.tql.bz2" ;[\n]" -2022-11-14 09:05:22,152 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" -2022-11-14 09:05:22,152 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:checksum ;[\n]" -2022-11-14 09:05:22,152 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:isDistributionOf ;[\n]" -2022-11-14 09:05:22,152 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" -2022-11-14 09:05:22,152 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:preview ;[\n]" -2022-11-14 09:05:22,152 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:uncompressedByteSize 492322845 ;[\n]" -2022-11-14 09:05:22,152 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo ;[\n]" -2022-11-14 09:05:22,152 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "This are all equations collected during the NIF extraction, transformed into MathML XML syntax."@en ;[\n]" -2022-11-14 09:05:22,152 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" -2022-11-14 09:05:22,152 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" -2022-11-14 09:05:22,152 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" -2022-11-14 09:05:22,152 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" -2022-11-14 09:05:22,152 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" -2022-11-14 09:05:22,152 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "Equation" -2022-11-14 09:05:22,153 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "s in MathML"@en ;[\n]" -2022-11-14 09:05:22,153 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:byteSize 10143896 ;[\n]" -2022-11-14 09:05:22,153 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:downloadURL ;[\n]" -2022-11-14 09:05:22,153 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:mediaType dataid-mt:MediaType_n-quads_x-bzip2 .[\n]" -2022-11-14 09:05:22,153 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,153 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,153 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid-ld:LinkedDataDataset , dataid:Dataset ;[\n]" -2022-11-14 09:05:22,153 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "Out Degree"@en ;[\n]" -2022-11-14 09:05:22,153 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" -2022-11-14 09:05:22,153 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" -2022-11-14 09:05:22,153 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:previousVersion ;[\n]" -2022-11-14 09:05:22,153 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedDatasetRelation[\n]" -2022-11-14 09:05:22,153 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " ;[\n]" -2022-11-14 09:05:22,153 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:relatedDataset ;[\n]" -2022-11-14 09:05:22,153 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo , ;[\n]" -2022-11-14 09:05:22,153 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "Number of links emerging from a Wikipedia article and pointing to another Wikipedia article."@en ;[\n]" -2022-11-14 09:05:22,153 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" -2022-11-14 09:05:22,153 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:isPartOf ;[\n]" -2022-11-14 09:05:22,153 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" -2022-11-14 09:05:22,153 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:language ;[\n]" -2022-11-14 09:05:22,153 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" -2022-11-14 09:05:22,153 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" -2022-11-14 09:05:22,153 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" -2022-11-14 09:05:22,153 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "Out Degree"@en ;[\n]" -2022-11-14 09:05:22,153 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " void:rootResource ;[\n]" -2022-11-14 09:05:22,153 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " void:triples 3241245 ;[\n]" -2022-11-14 09:05:22,153 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:distribution , ;[\n]" -2022-11-14 09:05:22,153 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:keyword "DBpedia"@en , "Out Degree"@en ;[\n]" -2022-11-14 09:05:22,153 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:landingPage ;[\n]" -2022-11-14 09:05:22,153 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " sd:defaultGraph ;[\n]" -2022-11-14 09:05:22,153 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " foaf:page .[\n]" -2022-11-14 09:05:22,153 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,153 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,153 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:Dataset , dataid-ld:LinkedDataDataset ;[\n]" -2022-11-14 09:05:22,153 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "External Links"@en ;[\n]" -2022-11-14 09:05:22,153 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" -2022-11-14 09:05:22,153 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" -2022-11-14 09:05:22,153 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:previousVersion ;[\n]" -2022-11-14 09:05:22,153 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedDatasetRelation[\n]" -2022-11-14 09:05:22,153 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " ;[\n]" -2022-11-14 09:05:22,153 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:relatedDataset ;[\n]" -2022-11-14 09:05:22,153 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo , ;[\n]" -2022-11-14 09:05:22,153 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "Links to external web pages about a conce" -2022-11-14 09:05:22,154 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "pt."@en ;[\n]" -2022-11-14 09:05:22,154 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" -2022-11-14 09:05:22,154 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:isPartOf ;[\n]" -2022-11-14 09:05:22,154 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" -2022-11-14 09:05:22,154 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:language ;[\n]" -2022-11-14 09:05:22,154 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" -2022-11-14 09:05:22,154 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" -2022-11-14 09:05:22,154 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" -2022-11-14 09:05:22,154 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "External Links"@en ;[\n]" -2022-11-14 09:05:22,154 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " void:rootResource ;[\n]" -2022-11-14 09:05:22,154 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " void:triples 1786240 ;[\n]" -2022-11-14 09:05:22,154 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:distribution , ;[\n]" -2022-11-14 09:05:22,154 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:keyword "External Links"@en , "DBpedia"@en ;[\n]" -2022-11-14 09:05:22,154 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:landingPage ;[\n]" -2022-11-14 09:05:22,154 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " sd:defaultGraph ;[\n]" -2022-11-14 09:05:22,154 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " foaf:page .[\n]" -2022-11-14 09:05:22,154 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,154 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,154 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:SingleFile ;[\n]" -2022-11-14 09:05:22,154 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "core-i18n/fr/infobox_test_fr.ttl.bz2" , "infobox test"@en ;[\n]" -2022-11-14 09:05:22,154 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" -2022-11-14 09:05:22,154 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:checksum ;[\n]" -2022-11-14 09:05:22,154 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:isDistributionOf ;[\n]" -2022-11-14 09:05:22,154 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" -2022-11-14 09:05:22,154 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:preview ;[\n]" -2022-11-14 09:05:22,154 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:uncompressedByteSize 64 ;[\n]" -2022-11-14 09:05:22,154 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo ;[\n]" -2022-11-14 09:05:22,154 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "DBpedia dataset infobox_test, subset of "@en ;[\n]" -2022-11-14 09:05:22,154 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" -2022-11-14 09:05:22,154 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" -2022-11-14 09:05:22,154 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" -2022-11-14 09:05:22,154 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" -2022-11-14 09:05:22,154 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" -2022-11-14 09:05:22,154 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "infobox test"@en ;[\n]" -2022-11-14 09:05:22,154 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:byteSize 89 ;[\n]" -2022-11-14 09:05:22,154 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:downloadURL ;[\n]" -2022-11-14 09:05:22,154 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:mediaType dataid-mt:MediaType_turtle_x-bzip2 .[\n]" -2022-11-14 09:05:22,154 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,154 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,154 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:SingleFile ;[\n]" -2022-11-14 09:05:22,154 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "Images English Uris"@en , "core-i18n/fr/images_en_uris_fr.ttl.bz2" ;[\n]" -2022-11-14 09:05:22,154 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" -2022-11-14 09:05:22,154 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:checksum ;[\n]" -2022-11-14 09:05:22,154 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:isDistributionOf ;[\n]" -2022-11-14 09:05:22,155 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" -2022-11-14 09:05:22,155 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:preview ;[\n]" -2022-11-14 09:05:22,155 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:uncompressedByteSize 947554296 ;[\n]" -2022-11-14 09:05:22,155 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo ;[\n]" -2022-11-14 09:05:22,155 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "Main image and corresponding thumbnail from Wikipedia article. Normalized dataset matching English DBpedia resources."@en ;[\n]" -2022-11-14 09:05:22,155 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" -2022-11-14 09:05:22,155 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" -2022-11-14 09:05:22,155 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" -2022-11-14 09:05:22,155 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" -2022-11-14 09:05:22,155 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" -2022-11-14 09:05:22,155 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "Images English Uris"@en ;[\n]" -2022-11-14 09:05:22,155 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:byteSize 38309474 ;[\n]" -2022-11-14 09:05:22,155 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:downloadURL ;[\n]" -2022-11-14 09:05:22,155 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:mediaType dataid-mt:MediaType_turtle_x-bzip2 .[\n]" -2022-11-14 09:05:22,155 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,155 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,174 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:SingleFile ;[\n]" -2022-11-14 09:05:22,174 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "Images English Uris"@en , "core-i18n/fr/images_en_uris_fr.tql.bz2" ;[\n]" -2022-11-14 09:05:22,174 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" -2022-11-14 09:05:22,174 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:checksum ;[\n]" -2022-11-14 09:05:22,174 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:isDistributionOf ;[\n]" -2022-11-14 09:05:22,174 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" -2022-11-14 09:05:22,174 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:preview ;[\n]" -2022-11-14 09:05:22,174 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:uncompressedByteSize 1372814884 ;[\n]" -2022-11-14 09:05:22,174 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo ;[\n]" -2022-11-14 09:05:22,174 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "Main image and corresponding thumbnail from Wikipedia article. Normalized dataset matching English DBpedia resources."@en ;[\n]" -2022-11-14 09:05:22,174 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" -2022-11-14 09:05:22,174 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" -2022-11-14 09:05:22,174 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" -2022-11-14 09:05:22,174 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" -2022-11-14 09:05:22,174 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" -2022-11-14 09:05:22,174 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "Images English Uris"@en ;[\n]" -2022-11-14 09:05:22,174 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:byteSize 57742576 ;[\n]" -2022-11-14 09:05:22,174 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:downloadURL ;[\n]" -2022-11-14 09:05:22,174 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:mediaType dataid-mt:MediaType_n-quads_x-bzip2 .[\n]" -2022-11-14 09:05:22,174 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,174 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,174 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:Dataset , dataid-ld:LinkedDataDataset ;[\n]" -2022-11-14 09:05:22,174 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "Mappingbased Literals English Uris"@en ;[\n]" -2022-11-14 09:05:22,174 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" -2022-11-14 09:05:22,174 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" -2022-11-14 09:05:22,174 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:previousVersion ;[\n]" -2022-11-14 09:05:22,174 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedDatasetRelation[\n]" -2022-11-14 09:05:22,174 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " ;[\n]" -2022-11-14 09:05:22,174 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:relatedDataset ;[\n]" -2022-11-14 09:05:22,174 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo , ;[\n]" -2022-11-14 09:05:22,174 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:descripti" -2022-11-14 09:05:22,175 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "on "High-quality data extracted from Infoboxes using the mapping-based extraction (Literal properties only). The predicates in this dataset are in the ontology namespace. Note that this data is of much higher quality than the Raw Infobox Properties in the 'property' namespace. Normalized dataset matching English DBpedia resources."@en ;[\n]" -2022-11-14 09:05:22,175 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" -2022-11-14 09:05:22,175 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:isPartOf ;[\n]" -2022-11-14 09:05:22,175 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" -2022-11-14 09:05:22,175 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:language ;[\n]" -2022-11-14 09:05:22,175 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" -2022-11-14 09:05:22,175 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" -2022-11-14 09:05:22,175 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" -2022-11-14 09:05:22,175 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "Mappingbased Literals English Uris"@en ;[\n]" -2022-11-14 09:05:22,176 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " void:rootResource ;[\n]" -2022-11-14 09:05:22,176 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " void:triples 2282395 ;[\n]" -2022-11-14 09:05:22,176 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:distribution , ;[\n]" -2022-11-14 09:05:22,176 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:keyword "DBpedia"@en , "Mappingbased Literals English Uris"@en ;[\n]" -2022-11-14 09:05:22,176 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:landingPage ;[\n]" -2022-11-14 09:05:22,176 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " sd:defaultGraph ;[\n]" -2022-11-14 09:05:22,176 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " foaf:page .[\n]" -2022-11-14 09:05:22,176 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,176 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,176 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:SingleFile ;[\n]" -2022-11-14 09:05:22,176 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "core-i18n/fr/persondata_fr.tql.bz2" , "Person data"@en ;[\n]" -2022-11-14 09:05:22,176 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" -2022-11-14 09:05:22,176 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:checksum ;[\n]" -2022-11-14 09:05:22,176 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:isDistributionOf ;[\n]" -2022-11-14 09:05:22,176 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" -2022-11-14 09:05:22,176 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:preview ;[\n]" -2022-11-14 09:05:22,176 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:uncompressedByteSize 644610137 ;[\n]" -2022-11-14 09:05:22,176 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo ;[\n]" -2022-11-14 09:05:22,176 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "Information about persons (date and place of birth etc., extracted from the Eng" -2022-11-14 09:05:22,177 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "lish and German Wikipedia, represented using the FOAF vocabulary."@en ;[\n]" -2022-11-14 09:05:22,177 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" -2022-11-14 09:05:22,177 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" -2022-11-14 09:05:22,177 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" -2022-11-14 09:05:22,177 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" -2022-11-14 09:05:22,177 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" -2022-11-14 09:05:22,177 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "Person data"@en ;[\n]" -2022-11-14 09:05:22,177 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:byteSize 34663074 ;[\n]" -2022-11-14 09:05:22,177 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:downloadURL ;[\n]" -2022-11-14 09:05:22,177 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:mediaType dataid-mt:MediaType_n-quads_x-bzip2 .[\n]" -2022-11-14 09:05:22,177 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,177 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,177 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:SingleFile ;[\n]" -2022-11-14 09:05:22,177 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "Disambiguations"@en , "core-i18n/fr/disambiguations_fr.ttl.bz2" ;[\n]" -2022-11-14 09:05:22,177 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" -2022-11-14 09:05:22,177 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:checksum ;[\n]" -2022-11-14 09:05:22,177 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:isDistributionOf ;" -2022-11-14 09:05:22,177 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,177 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" -2022-11-14 09:05:22,177 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:preview ;[\n]" -2022-11-14 09:05:22,177 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:uncompressedByteSize 85568495 ;[\n]" -2022-11-14 09:05:22,177 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo ;[\n]" -2022-11-14 09:05:22,177 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "Links extracted from Wikipedia disambiguation pages. Since Wikipedia has no syntax to distinguish disambiguation links from ordinary links, DBpedia has to use heuristics."@en ;[\n]" -2022-11-14 09:05:22,177 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" -2022-11-14 09:05:22,177 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" -2022-11-14 09:05:22,177 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" -2022-11-14 09:05:22,177 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" -2022-11-14 09:05:22,177 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" -2022-11-14 09:05:22,177 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "Disambiguations"@en ;[\n]" -2022-11-14 09:05:22,177 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:byteSize 4670656 ;[\n]" -2022-11-14 09:05:22,177 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:downloadURL ;[\n]" -2022-11-14 09:05:22,177 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:mediaType dataid-mt:MediaType_turtle_x-bzip2 .[\n]" -2022-11-14 09:05:22,177 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,177 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,177 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:SingleFile ;[\n]" -2022-11-14 09:05:22,177 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "Mappingbased Objects Wikidata Uris"@en , "core-i18n/fr/mappingbased_objects_wkd_uris_fr.ttl.bz2" ;[\n]" -2022-11-14 09:05:22,177 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" -2022-11-14 09:05:22,177 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:checksum ;[\n]" -2022-11-14 09:05:22,177 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:isDistributionOf ;[\n]" -2022-11-14 09:05:22,177 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" -2022-11-14 09:05:22,177 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:preview ;[\n]" -2022-11-14 09:05:22,177 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:uncompressedByteSize 435482129 ;[\n]" -2022-11-14 09:05:22,177 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo ;[\n]" -2022-11-14 09:05:22,177 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "High-quality data extracted from Infoboxes using the mapping-based extraction (Object properties only). The predicates in this dataset are in the 'ontology' namespace. Note that this data is of much higher quality than the Raw Infobox Propertie" -2022-11-14 09:05:22,178 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "s in the 'property' namespace. Normalized dataset matching Wikidata resources (sorted)."@en ;[\n]" -2022-11-14 09:05:22,178 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" -2022-11-14 09:05:22,178 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" -2022-11-14 09:05:22,178 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" -2022-11-14 09:05:22,178 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" -2022-11-14 09:05:22,178 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" -2022-11-14 09:05:22,178 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "Mappingbased Objects Wikidata Uris"@en ;[\n]" -2022-11-14 09:05:22,178 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:byteSize 17881116 ;[\n]" -2022-11-14 09:05:22,178 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:downloadURL ;[\n]" -2022-11-14 09:05:22,178 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:mediaType dataid-mt:MediaType_turtle_x-bzip2 .[\n]" -2022-11-14 09:05:22,178 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,178 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,178 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:SingleFile ;[\n]" -2022-11-14 09:05:22,178 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "French Population"@en , "core-i18n/fr/french_population_fr.tql.bz2" ;[\n]" -2022-11-14 09:05:22,178 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" -2022-11-14 09:05:22,178 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:checksum ;[\n]" -2022-11-14 09:05:22,178 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:isDistributionOf ;[\n]" -2022-11-14 09:05:22,178 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" -2022-11-14 09:05:22,178 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:preview ;[\n]" -2022-11-14 09:05:22,178 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:uncompressedByteSize 11893992 ;[\n]" -2022-11-14 09:05:22,178 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo ;[\n]" -2022-11-14 09:05:22,178 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "French dataset about population."@en ;[\n]" -2022-11-14 09:05:22,178 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" -2022-11-14 09:05:22,178 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" -2022-11-14 09:05:22,178 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" -2022-11-14 09:05:22,178 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" -2022-11-14 09:05:22,178 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" -2022-11-14 09:05:22,178 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "French Population"@en ;[\n]" -2022-11-14 09:05:22,178 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:byteSize 554317 ;[\n]" -2022-11-14 09:05:22,178 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:downloadURL ;[\n]" -2022-11-14 09:05:22,178 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:mediaType dataid-mt:MediaType_n-quads_x-bzip2 .[\n]" -2022-11-14 09:05:22,178 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,178 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,178 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:SingleFile ;[\n]" -2022-11-14 09:05:22,178 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "Geo Coordinates Mappingbased"@en , "core-i18n/fr/geo_coordinates_mappingbased_fr.ttl.bz2" ;[\n]" -2022-11-14 09:05:22,178 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" -2022-11-14 09:05:22,178 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:checksum ;[\n]" -2022-11-14 09:05:22,178 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:isDistributionOf ;[\n]" -2022-11-14 09:05:22,178 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" -2022-11-14 09:05:22,178 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:preview ;[\n]" -2022-11-14 09:05:22,178 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:uncompressedByteSize 118908579 ;[\n]" -2022-11-14 09:05:22,178 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo ;[\n]" -2022-11-14 09:05:22,178 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "Geographic coordinates extracted from Wikipedia originating from mapped infoboxes in the mappings wiki"@en ;[\n]" -2022-11-14 09:05:22,178 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" -2022-11-14 09:05:22,178 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" -2022-11-14 09:05:22,178 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:l" -2022-11-14 09:05:22,189 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "icense ;[\n]" -2022-11-14 09:05:22,189 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" -2022-11-14 09:05:22,189 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" -2022-11-14 09:05:22,189 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "Geo Coordinates Mappingbased"@en ;[\n]" -2022-11-14 09:05:22,189 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:byteSize 5843021 ;[\n]" -2022-11-14 09:05:22,189 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:downloadURL ;[\n]" -2022-11-14 09:05:22,189 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:mediaType dataid-mt:MediaType_turtle_x-bzip2 .[\n]" -2022-11-14 09:05:22,189 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,189 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,189 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:SingleFile ;[\n]" -2022-11-14 09:05:22,189 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "core-i18n/fr/long_abstracts_en_uris_fr.ttl.bz2" , "Long Abstracts English Uris"@en ;[\n]" -2022-11-14 09:05:22,189 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" -2022-11-14 09:05:22,189 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:checksum ;[\n]" -2022-11-14 09:05:22,189 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:isDistributionOf ;[\n]" -2022-11-14 09:05:22,189 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" -2022-11-14 09:05:22,189 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:preview ;[\n]" -2022-11-14 09:05:22,189 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:uncompressedByteSize 558529917 ;[\n]" -2022-11-14 09:05:22,189 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo ;[\n]" -2022-11-14 09:05:22,189 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "Long abstracts (full abstracts) of Wikipedia articles, usually the first section. Normalized dataset matching English DBpedia resources."@en ;[\n]" -2022-11-14 09:05:22,189 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" -2022-11-14 09:05:22,189 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" -2022-11-14 09:05:22,189 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" -2022-11-14 09:05:22,189 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" -2022-11-14 09:05:22,189 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" -2022-11-14 09:05:22,189 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "Long Abstracts English Uris"@en ;[\n]" -2022-11-14 09:05:22,189 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:byteSize 133856751 ;[\n]" -2022-11-14 09:05:22,189 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:downloadURL ;[\n]" -2022-11-14 09:05:22,189 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:mediaType dataid-mt:MediaType_turtle_x-bzip2 .[\n]" -2022-11-14 09:05:22,189 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,189 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,189 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:SingleFile ;[\n]" -2022-11-14 09:05:22,189 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "core-i18n/fr/geo_coordinates_mappingbased_fr.tql.bz2" , "Geo Coordinates Mappingbased"@en ;[\n]" -2022-11-14 09:05:22,189 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" -2022-11-14 09:05:22,189 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:checksum ;[\n]" -2022-11-14 09:05:22,189 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:isDistributionOf ;[\n]" -2022-11-14 09:05:22,189 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" -2022-11-14 09:05:22,189 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:preview ;[\n]" -2022-11-14 09:05:22,189 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:uncompressedByteSize 185292693 ;[\n]" -2022-11-14 09:05:22,189 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo ;[\n]" -2022-11-14 09:05:22,189 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "Geographic coordinates extracted from Wikipedia originating from mapped infoboxes in the mappings wiki"@en ;[\n]" -2022-11-14 09:05:22,189 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" -2022-11-14 09:05:22,189 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" -2022-11-14 09:05:22,189 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" -2022-11-14 09:05:22,189 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" -2022-11-14 09:05:22,189 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" -2022-11-14 09:05:22,189 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "Geo Coordinates Mappingbased"@en ;[\n]" -2022-11-14 09:05:22,189 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:byteSize 8801301 ;[\n]" -2022-11-14 09:05:22,189 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:downloadURL ;[\n]" -2022-11-14 09:05:22,189 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:mediaType dataid-mt:MediaType_n-quads_x-bzip2 .[\n]" -2022-11-14 09:05:22,189 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,189 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,189 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:SingleFile ;[\n]" -2022-11-14 09:05:22,189 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "Geo Coordinates Wikidata Uris"@en , "core-i18n/fr/geo_coordinates_wkd_uris_fr.tql.bz2" ;[\n]" -2022-11-14 09:05:22,189 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" -2022-11-14 09:05:22,190 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:checksum ;[\n]" -2022-11-14 09:05:22,190 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:isDistributionOf ;[\n]" -2022-11-14 09:05:22,190 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" -2022-11-14 09:05:22,190 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:preview ;[\n]" -2022-11-14 09:05:22,191 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:uncompressedByteSize 31643342 ;[\n]" -2022-11-14 09:05:22,191 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo ;[\n]" -2022-11-14 09:05:22,191 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "Geographic coordinates extracted from Wikipedia. Normalized dataset matching Wikidata resources (sorted)."@en ;[\n]" -2022-11-14 09:05:22,191 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" -2022-11-14 09:05:22,191 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" -2022-11-14 09:05:22,191 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" -2022-11-14 09:05:22,191 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" -2022-11-14 09:05:22,191 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" -2022-11-14 09:05:22,191 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "Geo Coordinates Wikidata Uris"@en ;[\n]" -2022-11-14 09:05:22,191 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:byteSize 1704916 ;[\n]" -2022-11-14 09:05:22,191 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:downloadURL ;[\n]" -2022-11-14 09:05:22,191 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:mediaType dataid-mt:MediaType_n-quads_x-bzip2 .[\n]" -2022-11-14 09:05:22,191 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,191 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,191 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid-ld:LinkedDataDataset , dataid:Dataset ;[\n]" -2022-11-14 09:05:22,191 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "Instance Types Transitive"@en ;[\n]" -2022-11-14 09:05:22,191 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" -2022-11-14 09:05:22,191 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" -2022-11-14 09:05:22,191 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:previousVersion ;[\n]" -2022-11-14 09:05:22,191 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedDatasetRelation[\n]" -2022-11-14 09:05:22,191 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " ;[\n]" -2022-11-14 09:05:22,191 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:relatedDataset ;[\n]" -2022-11-14 09:05:22,191 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo , ;[\n]" -2022-11-14 09:05:22,191 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "Contains transitive rdf:type $class based on the DBpedia ontology."@en ;[\n]" -2022-11-14 09:05:22,191 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" -2022-11-14 09:05:22,191 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:isPartOf ;[\n]" -2022-11-14 09:05:22,191 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" -2022-11-14 09:05:22,191 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:language ;[\n]" -2022-11-14 09:05:22,191 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" -2022-11-14 09:05:22,191 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" -2022-11-14 09:05:22,191 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" -2022-11-14 09:05:22,191 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "Instance Types Transitive"@en ;[\n]" -2022-11-14 09:05:22,191 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " void:rootResource ;[\n]" -2022-11-14 09:05:22,191 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " void:triples 9634901 ;[\n]" -2022-11-14 09:05:22,191 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:distribution , ;[\n]" -2022-11-14 09:05:22,191 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:keyword "DBpedia"@en , "Instance Types Transitive"@en ;[\n]" -2022-11-14 09:05:22,191 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:landingPage ;[\n]" -2022-11-14 09:05:22,191 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " sd:defaultGraph ;[\n]" -2022-11-14 09:05:22,191 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " foaf:page .[\n]" -2022-11-14 09:05:22,191 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,191 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,191 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:SingleFile ;[\n]" -2022-11-14 09:05:22,191 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "core-i18n/fr/template_parameters_fr.ttl.bz2" , "Template Parameters"@en ;[\n]" -2022-11-14 09:05:22,191 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" -2022-11-14 09:05:22,191 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:checksum ;[\n]" -2022-11-14 09:05:22,191 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:isDistributionOf ;[\n]" -2022-11-14 09:05:22,191 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" -2022-11-14 09:05:22,191 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:preview ;[\n]" -2022-11-14 09:05:22,191 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:uncompressedByteSize 32238749 ;[\n]" -2022-11-14 09:05:22,191 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo ;[\n]" -2022-11-14 09:05:22,191 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "Dataset describing names of template parameters."@en ;[\n]" -2022-11-14 09:05:22,191 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" -2022-11-14 09:05:22,191 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" -2022-11-14 09:05:22,191 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" -2022-11-14 09:05:22,191 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" -2022-11-14 09:05:22,191 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" -2022-11-14 09:05:22,191 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "Template Parameters"@en ;[\n]" -2022-11-14 09:05:22,191 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:byteSize 1054170 ;[\n]" -2022-11-14 09:05:22,191 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:downloadURL ;[\n]" -2022-11-14 09:05:22,191 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:mediaType dataid-mt:MediaType_turtle_x-bzip2 .[\n]" -2022-11-14 09:05:22,191 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,191 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,191 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:SingleFile ;[\n]" -2022-11-14 09:05:22,191 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "core-i18n/fr/short_abstracts_fr.ttl.bz2" , "Short Abstracts"@en ;[\n]" -2022-11-14 09:05:22,191 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" -2022-11-14 09:05:22,191 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:checksum ;[\n]" -2022-11-14 09:05:22,191 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:isDistributionOf ;[\n]" -2022-11-14 09:05:22,191 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" -2022-11-14 09:05:22,191 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:preview ;[\n]" -2022-11-14 09:05:22,191 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:uncompressedByteSize 683117178 ;[\n]" -2022-11-14 09:05:22,191 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo ;[\n]" -2022-11-14 09:05:22,191 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "Short Abstracts (about 600 characters long) of Wikipedia articles."@en ;[\n]" -2022-11-14 09:05:22,191 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" -2022-11-14 09:05:22,191 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" -2022-11-14 09:05:22,191 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" -2022-11-14 09:05:22,191 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" -2022-11-14 09:05:22,191 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" -2022-11-14 09:05:22,191 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "Short Abstracts"@en ;[\n]" -2022-11-14 09:05:22,191 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:byteSize 147287822 ;[\n]" -2022-11-14 09:05:22,191 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:downloadURL ;[\n]" -2022-11-14 09:05:22,191 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:mediaType dataid-mt:MediaType_turtle_x-bzip2 .[\n]" -2022-11-14 09:05:22,191 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,191 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,191 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:SingleFile ;[\n]" -2022-11-14 09:05:22,191 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "Commons Page Links"@en , "core-i18n/fr/commons_page_links_fr.tql.bz2" ;[\n]" -2022-11-14 09:05:22,191 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" -2022-11-14 09:05:22,191 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:checksum ;[\n]" -2022-11-14 09:05:22,191 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:isDistributionOf ;[\n]" -2022-11-14 09:05:22,191 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" -2022-11-14 09:05:22,191 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:preview ;[\n]" -2022-11-14 09:05:22,191 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:uncompressedByteSize 6633 ;[\n]" -2022-11-14 09:05:22,191 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo ;[\n]" -2022-11-14 09:05:22,191 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "Dataset containing links between a language-locale DBpedia inst" -2022-11-14 09:05:22,192 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "ance and DBpedia Commons."@en ;[\n]" -2022-11-14 09:05:22,192 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" -2022-11-14 09:05:22,192 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" -2022-11-14 09:05:22,192 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" -2022-11-14 09:05:22,192 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" -2022-11-14 09:05:22,192 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" -2022-11-14 09:05:22,192 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "Commons Page Links"@en ;[\n]" -2022-11-14 09:05:22,192 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:byteSize 1288 ;[\n]" -2022-11-14 09:05:22,192 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:downloadURL ;[\n]" -2022-11-14 09:05:22,193 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:mediaType dataid-mt:MediaType_n-quads_x-bzip2 .[\n]" -2022-11-14 09:05:22,193 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,193 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,193 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:Dataset , dataid-ld:LinkedDataDataset ;[\n]" -2022-11-14 09:05:22,193 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "Page Length"@en ;[\n]" -2022-11-14 09:05:22,193 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" -2022-11-14 09:05:22,193 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" -2022-11-14 09:05:22,193 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:previousVersion ;[\n]" -2022-11-14 09:05:22,193 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedDatasetRelation[\n]" -2022-11-14 09:05:22,193 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " ;[\n]" -2022-11-14 09:05:22,193 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:relatedDataset ;[\n]" -2022-11-14 09:05:22,193 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo , ;[\n]" -2022-11-14 09:05:22,193 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "Numbers of characters contained in a Wikipedia article's source."@en ;[\n]" -2022-11-14 09:05:22,193 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" -2022-11-14 09:05:22,193 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:isPartOf ;[\n]" -2022-11-14 09:05:22,193 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" -2022-11-14 09:05:22,193 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:language ;[\n]" -2022-11-14 09:05:22,193 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" -2022-11-14 09:05:22,193 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" -2022-11-14 09:05:22,193 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" -2022-11-14 09:05:22,193 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "Page Length"@en ;[\n]" -2022-11-14 09:05:22,193 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " void:rootResource ;[\n]" -2022-11-14 09:05:22,193 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " void:triples 3241245 ;[\n]" -2022-11-14 09:05:22,193 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:distribution , ;[\n]" -2022-11-14 09:05:22,193 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:keyword "Page Length"@en , "DBpedia"@en ;[\n]" -2022-11-14 09:05:22,193 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:landingPage ;[\n]" -2022-11-14 09:05:22,193 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " sd:defaultGraph ;[\n]" -2022-11-14 09:05:22,193 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " foaf:page .[\n]" -2022-11-14 09:05:22,193 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,193 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,193 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:SingleFile ;[\n]" -2022-11-14 09:05:22,193 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "core-i18n/fr/labels_fr.tql.bz2" , "Labels"@en ;[\n]" -2022-11-14 09:05:22,193 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" -2022-11-14 09:05:22,193 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:checksum ;[\n]" -2022-11-14 09:05:22,193 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:isDistributionOf ;[\n]" -2022-11-14 09:05:22,193 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" -2022-11-14 09:05:22,193 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:preview ;[\n]" -2022-11-14 09:05:22,193 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:uncompressedByteSize 631634023 ;[\n]" -2022-11-14 09:05:22,193 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo ;[\n]" -2022-11-14 09:05:22,193 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "Titles of all Wikipedia Articles in the corresponding language. In Wikidata, it contains all the languages available in the mappings wiki, labels_nmw contains the rest "@en ;[\n]" -2022-11-14 09:05:22,193 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" -2022-11-14 09:05:22,193 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" -2022-11-14 09:05:22,193 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" -2022-11-14 09:05:22,193 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" -2022-11-14 09:05:22,193 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" -2022-11-14 09:05:22,193 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "Labels"@en ;[\n]" -2022-11-14 09:05:22,193 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:byteSize 72181065 ;[\n]" -2022-11-14 09:05:22,193 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:downloadURL ;[\n]" -2022-11-14 09:05:22,193 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:mediaType dataid-mt:MediaType_n-quads_x-bzip2 .[\n]" -2022-11-14 09:05:22,193 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,193 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,193 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:Dataset , dataid-ld:LinkedDataDataset ;[\n]" -2022-11-14 09:05:22,193 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "Instance Types Sdtyped Dbo"@en ;[\n]" -2022-11-14 09:05:22,193 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" -2022-11-14 09:05:22,193 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" -2022-11-14 09:05:22,193 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedDatasetRelation[\n]" -2022-11-14 09:05:22,193 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " ;[\n]" -2022-11-14 09:05:22,193 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:relatedDataset ;[\n]" -2022-11-14 09:05:22,193 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo , ;[\n]" -2022-11-14 09:05:22,193 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "The SDType heuristic can extract probable type information in large, cross-domain databases on noisy data. This is its result for DBpedia which supplements the normally gathered instance types. This set is its result for DBpedia where the inferred type has an equivalent in the DBpedia ontology."@en ;[\n]" -2022-11-14 09:05:22,193 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" -2022-11-14 09:05:22,193 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:isPartOf ;[\n]" -2022-11-14 09:05:22,193 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" -2022-11-14 09:05:22,193 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:language ;[\n]" -2022-11-14 09:05:22,193 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" -2022-11-14 09:05:22,193 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" -2022-11-14 09:05:22,193 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" -2022-11-14 09:05:22,193 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "Instance Types Sdtyped Dbo"@en ;[\n]" -2022-11-14 09:05:22,193 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " void:rootResource ;[\n]" -2022-11-14 09:05:22,193 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " void:triples 763747 ;[\n]" -2022-11-14 09:05:22,193 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:distribution , ;[\n]" -2022-11-14 09:05:22,193 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:keyword "Instance Types Sdtyped Dbo"@en , "DBpedia"@en ;[\n]" -2022-11-14 09:05:22,193 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:landingPage ;[\n]" -2022-11-14 09:05:22,193 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " sd:defaultGraph ;[\n]" -2022-11-14 09:05:22,193 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " foaf:page .[\n]" -2022-11-14 09:05:22,193 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,193 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,193 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:SingleFile ;[\n]" -2022-11-14 09:05:22,193 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "Specific Mappingbased Properties Wikidata Uris"@en , "core-i18n/fr/specific_mappingbased_properties_wkd_uris_fr.ttl.bz2" ;[\n]" -2022-11-14 09:05:22,193 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" -2022-11-14 09:05:22,193 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:checksum ;[\n]" -2022-11-14 09:05:22,193 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:isDistributionOf ;[\n]" -2022-11-14 09:05:22,193 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion " -2022-11-14 09:05:22,194 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << ";[\n]" -2022-11-14 09:05:22,194 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:preview ;[\n]" -2022-11-14 09:05:22,194 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:uncompressedByteSize 8610096 ;[\n]" -2022-11-14 09:05:22,194 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo ;[\n]" -2022-11-14 09:05:22,194 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "Infobox data from the mapping-based extraction, using units of measurement more convenient for the resource type, e.g. square kilometres instead of square metres for the area of a city. Normalized dataset matching Wikidata resources (sorted)."@en ;[\n]" -2022-11-14 09:05:22,194 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" -2022-11-14 09:05:22,194 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" -2022-11-14 09:05:22,194 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" -2022-11-14 09:05:22,194 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" -2022-11-14 09:05:22,194 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" -2022-11-14 09:05:22,194 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "Specific Mappingbased Properties Wikidata Uris"@en ;[\n]" -2022-11-14 09:05:22,194 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:byteSize 295161 ;[\n]" -2022-11-14 09:05:22,194 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:downloadURL ;[\n]" -2022-11-14 09:05:22,194 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:mediaType dataid-mt:MediaType_turtle_x-bzip2 .[\n]" -2022-11-14 09:05:22,194 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,194 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,194 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid-ld:LinkedDataDataset , dataid:Dataset ;[\n]" -2022-11-14 09:05:22,194 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "Page Links English Uris"@en ;[\n]" -2022-11-14 09:05:22,194 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" -2022-11-14 09:05:22,194 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" -2022-11-14 09:05:22,194 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:previousVersion ;[\n]" -2022-11-14 09:05:22,194 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedDatasetRelation[\n]" -2022-11-14 09:05:22,194 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " ;[\n]" -2022-11-14 09:05:22,194 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:relatedDataset ;[\n]" -2022-11-14 09:05:22,194 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo , ;[\n]" -2022-11-14 09:05:22,194 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "Dataset containing internal links between DBpedia instances. The dataset was created from the internal links between Wikipedia articles. The dataset might be useful for structural analysis, data mining or for ranking DBpedia instances using Page Rank or similar algorithms. Normalized dataset matching English DBpedia resources."@en ;[\n]" -2022-11-14 09:05:22,194 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" -2022-11-14 09:05:22,194 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:isPartOf ;[\n]" -2022-11-14 09:05:22,194 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" -2022-11-14 09:05:22,194 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:language ;[\n]" -2022-11-14 09:05:22,194 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" -2022-11-14 09:05:22,194 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified " -2022-11-14 09:05:22,200 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " "2017-07-06"^^xsd:date ;[\n]" -2022-11-14 09:05:22,200 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" -2022-11-14 09:05:22,200 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "Page Links English Uris"@en ;[\n]" -2022-11-14 09:05:22,200 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " void:rootResource ;[\n]" -2022-11-14 09:05:22,200 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " void:triples 31551868 ;[\n]" -2022-11-14 09:05:22,200 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:distribution , ;[\n]" -2022-11-14 09:05:22,200 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:keyword "Page Links English Uris"@en , "DBpedia"@en ;[\n]" -2022-11-14 09:05:22,200 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:landingPage ;[\n]" -2022-11-14 09:05:22,200 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " sd:defaultGraph ;[\n]" -2022-11-14 09:05:22,200 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " foaf:page .[\n]" -2022-11-14 09:05:22,201 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,201 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,201 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:Dataset , dataid-ld:LinkedDataDataset ;[\n]" -2022-11-14 09:05:22,201 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "Mappingbased Objects Wikidata Uris"@en ;[\n]" -2022-11-14 09:05:22,201 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" -2022-11-14 09:05:22,201 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" -2022-11-14 09:05:22,201 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:previousVersion ;[\n]" -2022-11-14 09:05:22,201 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedDatasetRelation[\n]" -2022-11-14 09:05:22,201 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " ;[\n]" -2022-11-14 09:05:22,201 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:relatedDataset ;[\n]" -2022-11-14 09:05:22,201 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo , ;[\n]" -2022-11-14 09:05:22,201 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "High-quality data extracted from Infoboxes using the mapping-based extraction (Object properties only). The predicates in this dataset are in the 'ontology' namespace. Note that this data is of much higher quality than the Raw Infobox Properties in the 'property' namespace. Normalized dataset matching Wikidata resources (sorted)."@en ;[\n]" -2022-11-14 09:05:22,201 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" -2022-11-14 09:05:22,201 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:isPartOf ;[\n]" -2022-11-14 09:05:22,201 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" -2022-11-14 09:05:22,201 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:language ;[\n]" -2022-11-14 09:05:22,201 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" -2022-11-14 09:05:22,201 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" -2022-11-14 09:05:22,201 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" -2022-11-14 09:05:22,201 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "Mappingbased Objects Wikidata Uris"@en ;[\n]" -2022-11-14 09:05:22,201 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " void:rootResource ;[\n]" -2022-11-14 09:05:22,201 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " void:triples 3213999 ;[\n]" -2022-11-14 09:05:22,201 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:distribution , ;[\n]" -2022-11-14 09:05:22,201 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:keyword "DBpedia"@en , "Mappingbased Objects Wikidata Uris"@en ;[\n]" -2022-11-14 09:05:22,201 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:landingPage ;[\n]" -2022-11-14 09:05:22,201 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " sd:defaultGraph ;[\n]" -2022-11-14 09:05:22,201 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " foaf:page .[\n]" -2022-11-14 09:05:22,201 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,201 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,201 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:SingleFile ;[\n]" -2022-11-14 09:05:22,201 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "SKOS Categories"@en , "core-i18n/fr/skos_categories_fr.tql.bz2" ;[\n]" -2022-11-14 09:05:22,201 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" -2022-11-14 09:05:22,201 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:checksum ;[\n]" -2022-11-14 09:05:22,201 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:isDistributionOf ;[\n]" -2022-11-14 09:05:22,201 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" -2022-11-14 09:05:22,201 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:preview ;[\n]" -2022-11-14 09:05:22,201 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:uncompressedByteSize 376314276 ;[\n]" -2022-11-14 09:05:22,201 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo ;[\n]" -2022-11-14 09:05:22,201 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "Information which concept is a category and how categories are related using the SKOS Vocabulary."@en ;[\n]" -2022-11-14 09:05:22,201 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" -2022-11-14 09:05:22,201 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" -2022-11-14 09:05:22,201 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" -2022-11-14 09:05:22,201 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" -2022-11-14 09:05:22,201 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" -2022-11-14 09:05:22,201 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "SKOS Categories"@en ;[\n]" -2022-11-14 09:05:22,201 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:byteSize 16584803 ;[\n]" -2022-11-14 09:05:22,201 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:downloadURL ;[\n]" -2022-11-14 09:05:22,201 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:mediaType dataid-mt:MediaType_n-quads_x-bzip2 .[\n]" -2022-11-14 09:05:22,201 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,201 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,201 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:SingleFile ;[\n]" -2022-11-14 09:05:22,201 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "Instance Types Sdtyped Dbo"@en , "core-i18n/fr/instance_types_sdtyped_dbo_fr.ttl.bz2" ;[\n]" -2022-11-14 09:05:22,201 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" -2022-11-14 09:05:22,201 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:checksum ;[\n]" -2022-11-14 09:05:22,201 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:isDistributionOf ;[\n]" -2022-11-14 09:05:22,201 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" -2022-11-14 09:05:22,201 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:preview ;[\n]" -2022-11-14 09:05:22,201 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:uncompressedByteSize 114562319 ;[\n]" -2022-11-14 09:05:22,201 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo ;[\n]" -2022-11-14 09:05:22,201 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "The SDType heuristic can extract probable type information in large, cross-domain databases on noisy data. This is its result for DBpedia which supplements the normally gathered instance types. This set is its result for DBpedia where the inferred type has an equivalent in the DBpedia ontology."@en ;[\n]" -2022-11-14 09:05:22,201 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" -2022-11-14 09:05:22,201 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" -2022-11-14 09:05:22,201 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" -2022-11-14 09:05:22,201 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" -2022-11-14 09:05:22,201 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" -2022-11-14 09:05:22,201 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "Instance Types Sdtyped Dbo"@en ;[\n]" -2022-11-14 09:05:22,201 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:byteSize 6418573 ;[\n]" -2022-11-14 09:05:22,201 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:downloadURL ;[\n]" -2022-11-14 09:05:22,201 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:mediaType dataid-mt:MediaType_turtle_x-bzip2 .[\n]" -2022-11-14 09:05:22,201 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,201 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,201 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:SingleFile ;[\n]" -2022-11-14 09:05:22,201 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "Instance Types Sdtyped Dbo"@en , "core-i18n/fr/instance_types_sdtyped_dbo_fr.tql.bz2" ;[\n]" -2022-11-14 09:05:22,201 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" -2022-11-14 09:05:22,201 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:checksum ;[\n]" -2022-11-14 09:05:22,201 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:isDistributionOf ;[\n]" -2022-11-14 09:05:22,202 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" -2022-11-14 09:05:22,202 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:preview ;[\n]" -2022-11-14 09:05:22,202 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:uncompressedByteSize 224608253 ;[\n]" -2022-11-14 09:05:22,202 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo ;[\n]" -2022-11-14 09:05:22,202 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "The SDType heuristic can extract probable type information in large, cross-domain databases on noisy data. This is its result for DBpedia which supplements the normally gathered instance types. This set is its result for DBpedia where the inferred type has an equivalent in the DBpedia ontology."@en ;[\n]" -2022-11-14 09:05:22,202 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" -2022-11-14 09:05:22,202 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" -2022-11-14 09:05:22,202 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" -2022-11-14 09:05:22,202 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" -2022-11-14 09:05:22,202 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" -2022-11-14 09:05:22,202 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "Instance Types Sdtyped Dbo"@en ;[\n]" -2022-11-14 09:05:22,202 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:byteSize 12208201 ;[\n]" -2022-11-14 09:05:22,202 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:downloadURL ;[\n]" -2022-11-14 09:05:22,202 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:mediaType dataid-mt:MediaType_n-quads_x-bzip2 .[\n]" -2022-11-14 09:05:22,203 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,203 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,203 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid-ld:LinkedDataDataset , dataid:Dataset ;[\n]" -2022-11-14 09:05:22,203 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "NIF page structure"@en ;[\n]" -2022-11-14 09:05:22,203 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" -2022-11-14 09:05:22,203 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" -2022-11-14 09:05:22,203 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedDatasetRelation[\n]" -2022-11-14 09:05:22,203 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " ;[\n]" -2022-11-14 09:05:22,203 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:relatedDataset ;[\n]" -2022-11-14 09:05:22,203 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo , ;[\n]" -2022-11-14 09:05:22,203 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "This dataset contains the page structure of a Wikipedia page, divided in sections and paragraphs."@en ;[\n]" -2022-11-14 09:05:22,203 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" -2022-11-14 09:05:22,203 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:isPartOf ;[\n]" -2022-11-14 09:05:22,203 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" -2022-11-14 09:05:22,203 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:language ;[\n]" -2022-11-14 09:05:22,203 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" -2022-11-14 09:05:22,203 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" -2022-11-14 09:05:22,203 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" -2022-11-14 09:05:22,203 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "NIF page structure"@en ;[\n]" -2022-11-14 09:05:22,203 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " void:rootResource ;[\n]" -2022-11-14 09:05:22,203 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " void:triples 229167295 ;[\n]" -2022-11-14 09:05:22,203 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:distribution , ;[\n]" -2022-11-14 09:05:22,203 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:keyword "NIF page structure"@en , "DBpedia"@en ;[\n]" -2022-11-14 09:05:22,203 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:landingPage ;[\n]" -2022-11-14 09:05:22,203 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " sd:defaultGraph ;[\n]" -2022-11-14 09:05:22,203 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " foaf:page .[\n]" -2022-11-14 09:05:22,203 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,203 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,203 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:SingleFile ;[\n]" -2022-11-14 09:05:22,203 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "Mappingbased Objects Disjoint Range"@en , "core-i18n/fr/mappingbased_objects_disjoint_range_fr.ttl.bz2" ;[\n]" -2022-11-14 09:05:22,203 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" -2022-11-14 09:05:22,203 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:checksum ;[\n]" -2022-11-14 09:05:22,203 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:isDistributionOf ;[\n]" -2022-11-14 09:05:22,203 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" -2022-11-14 09:05:22,203 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:preview ;[\n]" -2022-11-14 09:05:22,203 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:uncompressedByteSize 974657 ;[\n]" -2022-11-14 09:05:22,203 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo ;[\n]" -2022-11-14 09:05:22,203 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "Errors detected in the mapping based properties (disjoint range)."@en ;[\n]" -2022-11-14 09:05:22,203 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" -2022-11-14 09:05:22,203 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" -2022-11-14 09:05:22,203 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" -2022-11-14 09:05:22,203 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" -2022-11-14 09:05:22,203 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" -2022-11-14 09:05:22,203 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "Mappingbased Objects Disjoint Range"@en ;[\n]" -2022-11-14 09:05:22,203 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:byteSize 78968 ;[\n]" -2022-11-14 09:05:22,203 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:downloadURL ;[\n]" -2022-11-14 09:05:22,203 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:mediaType dataid-mt:MediaType_turtle_x-bzip2 .[\n]" -2022-11-14 09:05:22,203 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,203 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,203 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:SingleFile ;[\n]" -2022-11-14 09:05:22,203 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "Mappingbased Objects Disjoint Range"@en , "core-i18n/fr/mappingbased_objects_disjoint_range_fr.tql.bz2" ;[\n]" -2022-11-14 09:05:22,203 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" -2022-11-14 09:05:22,203 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:checksum ;[\n]" -2022-11-14 09:05:22,203 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:isDistributionOf ;[\n]" -2022-11-14 09:05:22,203 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" -2022-11-14 09:05:22,203 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:preview ;[\n]" -2022-11-14 09:05:22,203 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:uncompressedByteSize 2254848 ;[\n]" -2022-11-14 09:05:22,203 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo ;[\n]" -2022-11-14 09:05:22,203 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "Errors detected in the mapping based properties (disjoint range)."@en ;[\n]" -2022-11-14 09:05:22,203 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" -2022-11-14 09:05:22,203 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" -2022-11-14 09:05:22,203 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" -2022-11-14 09:05:22,203 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" -2022-11-14 09:05:22,203 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" -2022-11-14 09:05:22,203 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "Mappingbased Objects Disjoint Range"@en ;[\n]" -2022-11-14 09:05:22,203 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:byteSize 169238 ;[\n]" -2022-11-14 09:05:22,203 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:downloadURL ;[\n]" -2022-11-14 09:05:22,203 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:mediaType dataid-mt:MediaType_n-quads_x-bzip2 .[\n]" -2022-11-14 09:05:22,203 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,203 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,203 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:SingleFile ;[\n]" -2022-11-14 09:05:22,203 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "core-i18n/fr/interlanguage_links_fr.ttl.bz2" , "Interlanguage Links"@en " -2022-11-14 09:05:22,204 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << ";[\n]" -2022-11-14 09:05:22,204 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" -2022-11-14 09:05:22,204 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:checksum ;[\n]" -2022-11-14 09:05:22,204 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:isDistributionOf ;[\n]" -2022-11-14 09:05:22,204 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" -2022-11-14 09:05:22,204 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:preview ;[\n]" -2022-11-14 09:05:22,204 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:uncompressedByteSize 3440935599 ;[\n]" -2022-11-14 09:05:22,204 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo ;[\n]" -2022-11-14 09:05:22,204 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "Dataset linking a DBpedia resource to the same resource in other languages and in Wikidata."@en ;[\n]" -2022-11-14 09:05:22,204 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" -2022-11-14 09:05:22,204 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" -2022-11-14 09:05:22,204 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" -2022-11-14 09:05:22,204 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" -2022-11-14 09:05:22,204 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" -2022-11-14 09:05:22,204 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "Interlanguage Links"@en ;[\n]" -2022-11-14 09:05:22,204 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:byteSize 187868323 ;[\n]" -2022-11-14 09:05:22,204 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:downloadURL ;[\n]" -2022-11-14 09:05:22,204 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:mediaType dataid-mt:MediaType_turtle_x-bzip2 .[\n]" -2022-11-14 09:05:22,204 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,204 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,204 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid-ld:LinkedDataDataset , dataid:Dataset ;[\n]" -2022-11-14 09:05:22,204 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "Topical Concepts"@en ;[\n]" -2022-11-14 09:05:22,204 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" -2022-11-14 09:05:22,204 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" -2022-11-14 09:05:22,204 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:previousVersion ;[\n]" -2022-11-14 09:05:22,204 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedDatasetRelation[\n]" -2022-11-14 09:05:22,204 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " ;[\n]" -2022-11-14 09:05:22,204 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:relatedDataset ;[\n]" -2022-11-14 09:05:22,204 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo , ;[\n]" -2022-11-14 09:05:22,204 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "Resources that describe a category"@en ;[\n]" -2022-11-14 09:05:22,204 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" -2022-11-14 09:05:22,204 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:isPartOf ;[\n]" -2022-11-14 09:05:22,204 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" -2022-11-14 09:05:22,204 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:language ;[\n]" -2022-11-14 09:05:22,204 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" -2022-11-14 09:05:22,204 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" -2022-11-14 09:05:22,204 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" -2022-11-14 09:05:22,204 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "Topical Concepts"@en ;[\n]" -2022-11-14 09:05:22,204 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " void:rootResource ;[\n]" -2022-11-14 09:05:22,204 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " void:triples 125544 ;[\n]" -2022-11-14 09:05:22,204 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:distribution , ;[\n]" -2022-11-14 09:05:22,204 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:keyword "Topical Concepts"@en , "DBpedia"@en ;[\n]" -2022-11-14 09:05:22,204 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:landingPage ;[\n]" -2022-11-14 09:05:22,204 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " sd:defaultGraph ;[\n]" -2022-11-14 09:05:22,204 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " foaf:page .[\n]" -2022-11-14 09:05:22,204 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,204 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,204 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:SingleFile ;[\n]" -2022-11-14 09:05:22,204 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "Disambiguations Wikidata Uris"@en , "core-i18n/fr/disambiguations_wkd_uris_fr.ttl.bz2" ;[\n]" -2022-11-14 09:05:22,204 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" -2022-11-14 09:05:22,204 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:checksum ;[\n]" -2022-11-14 09:05:22,204 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:isDistributionOf ;[\n]" -2022-11-14 09:05:22,204 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" -2022-11-14 09:05:22,204 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:preview ;[\n]" -2022-11-14 09:05:22,204 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:uncompressedByteSize 65563768 ;[\n]" -2022-11-14 09:05:22,204 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo ;[\n]" -2022-11-14 09:05:22,204 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "Links extracted from Wikipedia disambiguation pages. Since Wikipedia has no syntax to distinguish disambiguation links from ordinary links, DBpedia has to use heuristics. Normalized dataset matching Wikidata resources (sorted)."@en ;[\n]" -2022-11-14 09:05:22,204 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" -2022-11-14 09:05:22,204 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" -2022-11-14 09:05:22,204 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" -2022-11-14 09:05:22,204 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" -2022-11-14 09:05:22,204 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" -2022-11-14 09:05:22,204 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "Disambiguations Wikidata Uris"@en ;[\n]" -2022-11-14 09:05:22,204 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:byteSize 2331822 ;[\n]" -2022-11-14 09:05:22,204 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:downloadURL ;[\n]" -2022-11-14 09:05:22,204 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:mediaType dataid-mt:MediaType_turtle_x-bzip2 .[\n]" -2022-11-14 09:05:22,204 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,204 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,204 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:Dataset , dataid-ld:LinkedDataDataset ;[\n]" -2022-11-14 09:05:22,204 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "Raw html tables"@en ;[\n]" -2022-11-14 09:05:22,204 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" -2022-11-14 09:05:22,204 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" -2022-11-14 09:05:22,204 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedDatasetRelation[\n]" -2022-11-14 09:05:22,204 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " ;[\n]" -2022-11-14 09:05:22,204 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:relatedDataset ;[\n]" -2022-11-14 09:05:22,204 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo , ;[\n]" -2022-11-14 09:05:22,204 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "These are the raw html tables collected during the NIF extraction; to be further processed later."@en ;[\n]" -2022-11-14 09:05:22,204 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" -2022-11-14 09:05:22,204 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:isPartOf ;[\n]" -2022-11-14 09:05:22,204 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" -2022-11-14 09:05:22,204 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:language ;[\n]" -2022-11-14 09:05:22,204 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" -2022-11-14 09:05:22,204 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" -2022-11-14 09:05:22,204 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" -2022-11-14 09:05:22,204 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "Raw html tables"@en ;[\n]" -2022-11-14 09:05:22,204 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " void:rootResource ;[\n]" -2022-11-14 09:05:22,204 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " void:triples 12787620 ;[\n]" -2022-11-14 09:05:22,204 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:distribution , ;[\n]" -2022-11-14 09:05:22,204 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:keyword "DBpedia"@en , "Raw html tables"@en ;[\n]" -2022-11-14 09:05:22,204 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:landingPage ;[\n]" -2022-11-14 09:05:22,204 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " sd:defaultGraph ;[\n]" -2022-11-14 09:05:22,204 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " foaf:page .[\n]" -2022-11-14 09:05:22,204 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,204 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,204 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid-ld:LinkedDataDataset , data" -2022-11-14 09:05:22,206 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "id:Dataset ;[\n]" -2022-11-14 09:05:22,206 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "Labels English Uris"@en ;[\n]" -2022-11-14 09:05:22,206 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" -2022-11-14 09:05:22,206 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" -2022-11-14 09:05:22,206 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:previousVersion ;[\n]" -2022-11-14 09:05:22,206 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedDatasetRelation[\n]" -2022-11-14 09:05:22,206 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " ;[\n]" -2022-11-14 09:05:22,206 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:relatedDataset ;[\n]" -2022-11-14 09:05:22,206 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo , ;[\n]" -2022-11-14 09:05:22,206 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "Titles of all Wikipedia Articles in the corresponding language. In Wikidata, it contains all the languages available in the mappings wiki, labels_nmw contains the rest Normalized dataset matching English DBpedia resources."@en ;[\n]" -2022-11-14 09:05:22,206 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" -2022-11-14 09:05:22,206 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:isPartOf ;[\n]" -2022-11-14 09:05:22,206 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" -2022-11-14 09:05:22,206 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:language ;[\n]" -2022-11-14 09:05:22,206 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" -2022-11-14 09:05:22,206 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" -2022-11-14 09:05:22,206 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" -2022-11-14 09:05:22,206 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "Labels English Uris"@en ;[\n]" -2022-11-14 09:05:22,206 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " void:rootResource ;[\n]" -2022-11-14 09:05:22,206 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " void:sparqlEndpoint ;[\n]" -2022-11-14 09:05:22,206 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " void:triples 1164577 ;[\n]" -2022-11-14 09:05:22,206 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:distribution , , ;[\n]" -2022-11-14 09:05:22,206 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:keyword "DBpedia"@en , "Labels English Uris"@en ;[\n]" -2022-11-14 09:05:22,206 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:landingPage ;[\n]" -2022-11-14 09:05:22,206 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " sd:defaultGraph ;[\n]" -2022-11-14 09:05:22,206 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " foaf:page .[\n]" -2022-11-14 09:05:22,206 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,206 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,206 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid-ld:LinkedDataDataset , dataid:Dataset ;[\n]" -2022-11-14 09:05:22,206 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "Infobox Properties Mapped"@en ;[\n]" -2022-11-14 09:05:22,206 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" -2022-11-14 09:05:22,206 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" -2022-11-14 09:05:22,206 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:previousVersion ;[\n]" -2022-11-14 09:05:22,206 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedDatasetRelation[\n]" -2022-11-14 09:05:22,206 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " ;[\n]" -2022-11-14 09:05:22,206 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:relatedDataset ;[\n]" -2022-11-14 09:05:22,206 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo , ;[\n]" -2022-11-14 09:05:22,206 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "Information that has been extracted from Wikipedia infoboxes. Note that this data is in the less clean 'property' namespace. The Mapping-based Properties in the 'ontology' namespace, should always be preferred over this data. This dataset contains facts that have equivalent mapped facts in the mapping-based datasets. "@en ;[\n]" -2022-11-14 09:05:22,206 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" -2022-11-14 09:05:22,206 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:isPartOf ;[\n]" -2022-11-14 09:05:22,206 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" -2022-11-14 09:05:22,206 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:language ;[\n]" -2022-11-14 09:05:22,206 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" -2022-11-14 09:05:22,206 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" -2022-11-14 09:05:22,206 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" -2022-11-14 09:05:22,206 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "Infobox Properties Mapped"@en ;[\n]" -2022-11-14 09:05:22,206 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " void:rootResource ;[\n]" -2022-11-14 09:05:22,206 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " void:triples 8143161 ;[\n]" -2022-11-14 09:05:22,206 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:distribution , ;[\n]" -2022-11-14 09:05:22,214 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:keyword "Infobox Properties Mapped"@en , "DBpedia"@en ;[\n]" -2022-11-14 09:05:22,214 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:landingPage ;[\n]" -2022-11-14 09:05:22,214 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " sd:defaultGraph ;[\n]" -2022-11-14 09:05:22,214 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " foaf:page .[\n]" -2022-11-14 09:05:22,214 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,214 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,214 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:Dataset , dataid-ld:LinkedDataDataset ;[\n]" -2022-11-14 09:05:22,214 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "Geo Coordinates Mappingbased Wikidata Uris"@en ;[\n]" -2022-11-14 09:05:22,214 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" -2022-11-14 09:05:22,214 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" -2022-11-14 09:05:22,214 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:previousVersion ;[\n]" -2022-11-14 09:05:22,214 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedDatasetRelation[\n]" -2022-11-14 09:05:22,214 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " ;[\n]" -2022-11-14 09:05:22,214 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:relatedDataset ;[\n]" -2022-11-14 09:05:22,214 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo , ;[\n]" -2022-11-14 09:05:22,214 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "Geographic coordinates extracted from Wikipedia originating from mapped infoboxes in the mappings wiki Normalized dataset matching Wikidata resources (sorted)."@en ;[\n]" -2022-11-14 09:05:22,214 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" -2022-11-14 09:05:22,214 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:isPartOf ;[\n]" -2022-11-14 09:05:22,214 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" -2022-11-14 09:05:22,214 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:language ;[\n]" -2022-11-14 09:05:22,214 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" -2022-11-14 09:05:22,214 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" -2022-11-14 09:05:22,214 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" -2022-11-14 09:05:22,214 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "Geo Coordinates Mappingbased Wikidata Uris"@en ;[\n]" -2022-11-14 09:05:22,214 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " void:rootResource ;[\n]" -2022-11-14 09:05:22,214 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " void:triples 823959 ;[\n]" -2022-11-14 09:05:22,214 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:distribution , ;[\n]" -2022-11-14 09:05:22,214 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:keyword "DBpedia"@en , "Geo Coordinates Mappingbased Wikidata Uris"@en ;[\n]" -2022-11-14 09:05:22,214 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:landingPage ;[\n]" -2022-11-14 09:05:22,214 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " sd:defaultGraph ;[\n]" -2022-11-14 09:05:22,214 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " foaf:page .[\n]" -2022-11-14 09:05:22,214 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,214 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,214 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:SingleFile ;[\n]" -2022-11-14 09:05:22,214 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "pnd English Uris"@en , "core-i18n/fr/pnd_en_uris_fr.tql.bz2" ;[\n]" -2022-11-14 09:05:22,214 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" -2022-11-14 09:05:22,214 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:checksum ;[\n]" -2022-11-14 09:05:22,214 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:isDistributionOf ;[\n]" -2022-11-14 09:05:22,214 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" -2022-11-14 09:05:22,214 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:preview ;[\n]" -2022-11-14 09:05:22,214 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:uncompressedByteSize 64581 ;[\n]" -2022-11-14 09:05:22,214 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo ;[\n]" -2022-11-14 09:05:22,214 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "Undescribed Dataset Normalized dataset matching English DBpedia resources."@en ;[\n]" -2022-11-14 09:05:22,214 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" -2022-11-14 09:05:22,224 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" -2022-11-14 09:05:22,224 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" -2022-11-14 09:05:22,224 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" -2022-11-14 09:05:22,224 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" -2022-11-14 09:05:22,224 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "pnd English Uris"@en ;[\n]" -2022-11-14 09:05:22,224 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:byteSize 6885 ;[\n]" -2022-11-14 09:05:22,224 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:downloadURL ;[\n]" -2022-11-14 09:05:22,224 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:mediaType dataid-mt:MediaType_n-quads_x-bzip2 .[\n]" -2022-11-14 09:05:22,224 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,224 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,224 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:SingleFile ;[\n]" -2022-11-14 09:05:22,224 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "Page Links Wikidata Uris"@en , "core-i18n/fr/page_links_wkd_uris_fr.ttl.bz2" ;[\n]" -2022-11-14 09:05:22,224 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" -2022-11-14 09:05:22,224 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:checksum ;[\n]" -2022-11-14 09:05:22,224 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:isDistributionOf ;[\n]" -2022-11-14 09:05:22,224 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" -2022-11-14 09:05:22,224 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:preview ;[\n]" -2022-11-14 09:05:22,224 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:uncompressedByteSize 7191511383 ;[\n]" -2022-11-14 09:05:22,224 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo ;[\n]" -2022-11-14 09:05:22,224 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "Dataset containing internal links between DBpedia instances. The dataset was created from the internal links between Wikipedia articles. The dataset might be useful for structural analysis, data mining or for ranking DBpedia instances using Page Rank or similar algorithms. Normalized dataset matching Wikidata resources (sorted)."@en ;[\n]" -2022-11-14 09:05:22,224 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" -2022-11-14 09:05:22,224 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" -2022-11-14 09:05:22,224 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" -2022-11-14 09:05:22,224 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" -2022-11-14 09:05:22,224 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" -2022-11-14 09:05:22,224 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "Page Links Wikidata Uris"@en ;[\n]" -2022-11-14 09:05:22,224 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:byteSize 204654239 ;[\n]" -2022-11-14 09:05:22,224 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:downloadURL ;[\n]" -2022-11-14 09:05:22,224 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:mediaType dataid-mt:MediaType_turtle_x-bzip2 .[\n]" -2022-11-14 09:05:22,224 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,224 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,224 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid-ld:LinkedDataDataset , dataid:Dataset ;[\n]" -2022-11-14 09:05:22,224 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "Long Abstracts"@en ;[\n]" -2022-11-14 09:05:22,224 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" -2022-11-14 09:05:22,224 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" -2022-11-14 09:05:22,224 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:previousVersion ;[\n]" -2022-11-14 09:05:22,224 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedDatasetRelation[\n]" -2022-11-14 09:05:22,224 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " ;[\n]" -2022-11-14 09:05:22,224 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:relatedDataset ;[\n]" -2022-11-14 09:05:22,224 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo , ;[\n]" -2022-11-14 09:05:22,224 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "Long abstracts (full abstracts) of Wikipedia articles, usually the first section."@en ;[\n]" -2022-11-14 09:05:22,224 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" -2022-11-14 09:05:22,224 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:isPartOf ;[\n]" -2022-11-14 09:05:22,224 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" -2022-11-14 09:05:22,224 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:language ;[\n]" -2022-11-14 09:05:22,224 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" -2022-11-14 09:05:22,224 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" -2022-11-14 09:05:22,224 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" -2022-11-14 09:05:22,224 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "Long Abstracts"@en ;[\n]" -2022-11-14 09:05:22,224 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " void:rootResource ;[\n]" -2022-11-14 09:05:22,224 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " void:triples 1686181 ;[\n]" -2022-11-14 09:05:22,224 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:distribution , ;[\n]" -2022-11-14 09:05:22,224 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:keyword "Long Abstracts"@en , "DBpedia"@en ;[\n]" -2022-11-14 09:05:22,224 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:landingPage ;[\n]" -2022-11-14 09:05:22,224 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " sd:defaultGraph ;[\n]" -2022-11-14 09:05:22,224 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " foaf:page .[\n]" -2022-11-14 09:05:22,224 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,224 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,224 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid-ld:LinkedDataDataset , dataid:Dataset ;[\n]" -2022-11-14 09:05:22,224 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "Interlanguage Links"@en ;[\n]" -2022-11-14 09:05:22,224 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" -2022-11-14 09:05:22,224 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" -2022-11-14 09:05:22,224 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:previousVersion ;[\n]" -2022-11-14 09:05:22,224 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedDatasetRelation[\n]" -2022-11-14 09:05:22,224 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " ;[\n]" -2022-11-14 09:05:22,224 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:relatedDataset ;[\n]" -2022-11-14 09:05:22,224 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo , ;[\n]" -2022-11-14 09:05:22,224 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "Dataset linking a DBpedia resource to the same resource in other languages and in Wikidata."@en ;[\n]" -2022-11-14 09:05:22,224 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" -2022-11-14 09:05:22,224 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:isPartOf ;[\n]" -2022-11-14 09:05:22,224 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" -2022-11-14 09:05:22,224 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:language ;[\n]" -2022-11-14 09:05:22,224 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" -2022-11-14 09:05:22,224 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" -2022-11-14 09:05:22,224 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" -2022-11-14 09:05:22,224 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "Interlanguage Links"@en ;[\n]" -2022-11-14 09:05:22,224 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " void:rootResource ;[\n]" -2022-11-14 09:05:22,224 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " void:triples 23160557 ;[\n]" -2022-11-14 09:05:22,224 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:distribution , ;[\n]" -2022-11-14 09:05:22,224 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:keyword "DBpedia"@en , "Interlanguage Links"@en ;[\n]" -2022-11-14 09:05:22,224 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:landingPage ;[\n]" -2022-11-14 09:05:22,224 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " sd:defaultGraph ;[\n]" -2022-11-14 09:05:22,224 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " foaf:page .[\n]" -2022-11-14 09:05:22,224 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,224 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,224 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid-ld:LinkedDataDataset , dataid:Dataset ;[\n]" -2022-11-14 09:05:22,224 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "Article Categories English Uris"@en ;[\n]" -2022-11-14 09:05:22,224 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" -2022-11-14 09:05:22,224 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" -2022-11-14 09:05:22,224 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:previousVersion ;[\n]" -2022-11-14 09:05:22,224 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedDatasetRelation[\n]" -2022-11-14 09:05:22,224 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " ;[\n]" -2022-11-14 09:05:22,224 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:relatedDataset ;[\n]" -2022-11-14 09:05:22,224 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo , ;[\n]" -2022-11-14 09:05:22,224 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "Links from concepts to categories using the SKOS vocabulary. Normalized dataset matching English DBpedia resources."@en ;[\n]" -2022-11-14 09:05:22,224 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" -2022-11-14 09:05:22,224 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:isPartOf ;[\n]" -2022-11-14 09:05:22,224 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" -2022-11-14 09:05:22,224 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:language ;[\n]" -2022-11-14 09:05:22,225 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" -2022-11-14 09:05:22,225 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" -2022-11-14 09:05:22,225 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" -2022-11-14 09:05:22,225 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "Article Categories English Uris"@en ;[\n]" -2022-11-14 09:05:22,225 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " void:rootResource ;[\n]" -2022-11-14 09:05:22,225 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " void:triples 2716241 ;[\n]" -2022-11-14 09:05:22,225 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:distribution , ;[\n]" -2022-11-14 09:05:22,225 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:keyword "DBpedia"@en , "Article Categories English Uris"@en ;[\n]" -2022-11-14 09:05:22,225 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:landingPage ;[\n]" -2022-11-14 09:05:22,225 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " sd:defaultGraph ;[\n]" -2022-11-14 09:05:22,225 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " foaf:page .[\n]" -2022-11-14 09:05:22,225 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,225 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,225 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:SingleFile ;[\n]" -2022-11-14 09:05:22,225 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "core-i18n/fr/infobox_property_definitions_fr.tql.bz2" , "Infobox Property Definitions"@en ;[\n]" -2022-11-14 09:05:22,225 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" -2022-11-14 09:05:22,225 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:checksum ;[\n]" -2022-11-14 09:05:22,225 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:isDistributionOf ;[\n]" -2022-11-14 09:05:22,225 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" -2022-11-14 09:05:22,225 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:preview ;[\n]" -2022-11-14 09:05:22,225 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:uncompressedByteSize 12347074 ;[\n]" -2022-11-14 09:05:22,225 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo ;[\n]" -2022-11-14 09:05:22,225 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "All properties predicates used in infoboxes."@en ;[\n]" -2022-11-14 09:05:22,225 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" -2022-11-14 09:05:22,225 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" -2022-11-14 09:05:22,225 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" -2022-11-14 09:05:22,225 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" -2022-11-14 09:05:22,225 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" -2022-11-14 09:05:22,225 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "Infobox Property Definitions"@en ;[\n]" -2022-11-14 09:05:22,225 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:byteSize 764067 ;[\n]" -2022-11-14 09:05:22,225 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:downloadURL ;[\n]" -2022-11-14 09:05:22,225 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:mediaType dataid-mt:MediaType_n-quads_x-bzip2 .[\n]" -2022-11-14 09:05:22,225 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,225 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,225 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:SingleFile ;[\n]" -2022-11-14 09:05:22,225 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "core-i18n/fr/page_links_en_uris_fr.ttl.bz2" , "Page Links English Uris"@en ;[\n]" -2022-11-14 09:05:22,225 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" -2022-11-14 09:05:22,225 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:checksum ;[\n]" -2022-11-14 09:05:22,225 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:isDistributionOf ;[\n]" -2022-11-14 09:05:22,225 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" -2022-11-14 09:05:22,225 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:preview ;[\n]" -2022-11-14 09:05:22,225 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:uncompressedByteSize 4595433793 ;[\n]" -2022-11-14 09:05:22,225 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo ;[\n]" -2022-11-14 09:05:22,225 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "Dataset containing internal links between DBpedia instances. The dataset was created from the internal links between Wikipedia articles. The dataset might be useful for structural analysis, data mining or for ranking DBpedia instances using Page Rank or similar algorithms. Normalized dataset matching English DBpedia resources."@en ;[\n]" -2022-11-14 09:05:22,225 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" -2022-11-14 09:05:22,225 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" -2022-11-14 09:05:22,225 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" -2022-11-14 09:05:22,225 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" -2022-11-14 09:05:22,225 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" -2022-11-14 09:05:22,225 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "Page Links English Uris"@en ;[\n]" -2022-11-14 09:05:22,225 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:byteSize 234071204 ;[\n]" -2022-11-14 09:05:22,225 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:downloadURL ;[\n]" -2022-11-14 09:05:22,225 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:mediaType dataid-mt:MediaType_turtle_x-bzip2 .[\n]" -2022-11-14 09:05:22,225 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,225 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,225 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:SingleFile ;[\n]" -2022-11-14 09:05:22,225 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "Disambiguations English Uris"@en , "core-i18n/fr/disambiguations_en_uris_fr.ttl.bz2" ;[\n]" -2022-11-14 09:05:22,225 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" -2022-11-14 09:05:22,225 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:checksum ;[\n]" -2022-11-14 09:05:22,225 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:isDistributionOf ;[\n]" -2022-11-14 09:05:22,225 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" -2022-11-14 09:05:22,225 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:preview ;[\n]" -2022-11-14 09:05:22,225 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:uncompressedByteSize 35211646 ;[\n]" -2022-11-14 09:05:22,225 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo ;[\n]" -2022-11-14 09:05:22,225 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "Links extracted from Wikipedia disambiguation pages. Since Wikipedia has no syntax to distinguish disambiguation links from ordinary links, DBpedia has to use heuristics. Normalized dataset matching English DBpedia resources."@en ;[\n]" -2022-11-14 09:05:22,225 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" -2022-11-14 09:05:22,225 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" -2022-11-14 09:05:22,225 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" -2022-11-14 09:05:22,225 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" -2022-11-14 09:05:22,225 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" -2022-11-14 09:05:22,225 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "Disambiguations English Uris"@en ;[\n]" -2022-11-14 09:05:22,225 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:byteSize 2060893 ;[\n]" -2022-11-14 09:05:22,225 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:downloadURL ;[\n]" -2022-11-14 09:05:22,225 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:mediaType dataid-mt:MediaType_turtle_x-bzip2 .[\n]" -2022-11-14 09:05:22,225 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,225 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,225 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid-ld:LinkedDataDataset , dataid:Dataset ;[\n]" -2022-11-14 09:05:22,225 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "Homepages"@en ;[\n]" -2022-11-14 09:05:22,225 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" -2022-11-14 09:05:22,225 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" -2022-11-14 09:05:22,225 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:previousVersion ;[\n]" -2022-11-14 09:05:22,225 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedDatasetRelation[\n]" -2022-11-14 09:05:22,225 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " ;[\n]" -2022-11-14 09:05:22,225 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:relatedDataset ;[\n]" -2022-11-14 09:05:22,225 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo , ;[\n]" -2022-11-14 09:05:22,225 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "Links to homepages of persons, organizations etc."@en ;[\n]" -2022-11-14 09:05:22,225 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" -2022-11-14 09:05:22,225 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:isPartOf ;[\n]" -2022-11-14 09:05:22,225 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" -2022-11-14 09:05:22,225 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:language ;[\n]" -2022-11-14 09:05:22,225 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" -2022-11-14 09:05:22,225 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" -2022-11-14 09:05:22,225 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" -2022-11-14 09:05:22,225 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "Homepages"@en ;[\n]" -2022-11-14 09:05:22,225 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " void:rootResource ;[\n]" -2022-11-14 09:05:22,225 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " void:triples 171829 ;[\n]" -2022-11-14 09:05:22,225 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:distribution , ;[\n]" -2022-11-14 09:05:22,225 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:keyword "DBpedia"@en , "Homepages"@en ;[\n]" -2022-11-14 09:05:22,225 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:landingPage ;[\n]" -2022-11-14 09:05:22,225 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " sd:defaultGraph ;[\n]" -2022-11-14 09:05:22,225 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " foaf:page .[\n]" -2022-11-14 09:05:22,229 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,229 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,229 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:SingleFile ;[\n]" -2022-11-14 09:05:22,229 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "core-i18n/fr/disambiguations_en_uris_fr.tql.bz2" , "Disambiguations English Uris"@en ;[\n]" -2022-11-14 09:05:22,229 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" -2022-11-14 09:05:22,229 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:checksum ;[\n]" -2022-11-14 09:05:22,229 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:isDistributionOf ;[\n]" -2022-11-14 09:05:22,229 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" -2022-11-14 09:05:22,229 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:preview ;[\n]" -2022-11-14 09:05:22,229 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:uncompressedByteSize 58778800 ;[\n]" -2022-11-14 09:05:22,229 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo ;[\n]" -2022-11-14 09:05:22,229 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "Links extracted from Wikipedia disambiguation pages. Since Wikipedia has no syntax to distinguish disambiguation links from ordinary links, DBpedia has to use heuristics. Normalized dataset matching English DBpedia resources."@en ;[\n]" -2022-11-14 09:05:22,229 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" -2022-11-14 09:05:22,229 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" -2022-11-14 09:05:22,229 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" -2022-11-14 09:05:22,229 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" -2022-11-14 09:05:22,229 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" -2022-11-14 09:05:22,229 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "Disambiguations English Uris"@en ;[\n]" -2022-11-14 09:05:22,229 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:byteSize 3553621 ;[\n]" -2022-11-14 09:05:22,229 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:downloadURL ;[\n]" -2022-11-14 09:05:22,229 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:mediaType dataid-mt:MediaType_n-quads_x-bzip2 .[\n]" -2022-11-14 09:05:22,229 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,229 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,229 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:SingleFile ;[\n]" -2022-11-14 09:05:22,229 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "core-i18n/fr/pnd_fr.ttl.bz2" , "pnd"@en ;[\n]" -2022-11-14 09:05:22,229 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" -2022-11-14 09:05:22,229 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:checksum ;[\n]" -2022-11-14 09:05:22,229 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:isDistributionOf ;[\n]" -2022-11-14 09:05:22,229 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" -2022-11-14 09:05:22,229 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:preview ;[\n]" -2022-11-14 09:05:22,229 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:uncompressedByteSize 38764 ;[\n]" -2022-11-14 09:05:22,229 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo ;[\n]" -2022-11-14 09:05:22,229 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "DBpedia dataset pnd, subset of "@en ;[\n]" -2022-11-14 09:05:22,229 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" -2022-11-14 09:05:22,229 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" -2022-11-14 09:05:22,229 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" -2022-11-14 09:05:22,229 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" -2022-11-14 09:05:22,229 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" -2022-11-14 09:05:22,229 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "pnd"@en ;[\n]" -2022-11-14 09:05:22,229 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:byteSize 4813 ;[\n]" -2022-11-14 09:05:22,229 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:downloadURL ;[\n]" -2022-11-14 09:05:22,229 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:mediaType dataid-mt:MediaType_turtle_x-bzip2 .[\n]" -2022-11-14 09:05:22,229 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,229 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,229 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid-ld:LinkedDataDataset , dataid:Dataset ;[\n]" -2022-11-14 09:05:22,229 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "infobox test"@en ;[\n]" -2022-11-14 09:05:22,229 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" -2022-11-14 09:05:22,229 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" -2022-11-14 09:05:22,229 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:previousVersion ;[\n]" -2022-11-14 09:05:22,229 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedDatasetRelation[\n]" -2022-11-14 09:05:22,229 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " ;[\n]" -2022-11-14 09:05:22,229 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:relatedDataset ;[\n]" -2022-11-14 09:05:22,229 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo , ;[\n]" -2022-11-14 09:05:22,229 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "DBpedia dataset infobox_test, subset of "@en ;[\n]" -2022-11-14 09:05:22,229 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" -2022-11-14 09:05:22,229 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:isPartOf ;[\n]" -2022-11-14 09:05:22,229 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" -2022-11-14 09:05:22,229 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:language ;[\n]" -2022-11-14 09:05:22,229 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" -2022-11-14 09:05:22,229 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" -2022-11-14 09:05:22,229 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" -2022-11-14 09:05:22,229 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "infobox test"@en ;[\n]" -2022-11-14 09:05:22,229 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " void:rootResource ;[\n]" -2022-11-14 09:05:22,229 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " void:triples 0 ;[\n]" -2022-11-14 09:05:22,229 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:distribution , ;[\n]" -2022-11-14 09:05:22,229 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:keyword "DBpedia"@en , "infobox test"@en ;[\n]" -2022-11-14 09:05:22,229 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:landingPage ;[\n]" -2022-11-14 09:05:22,229 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " sd:defaultGraph ;[\n]" -2022-11-14 09:05:22,229 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " foaf:page .[\n]" -2022-11-14 09:05:22,229 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,229 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,229 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:SingleFile ;[\n]" -2022-11-14 09:05:22,229 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "core-i18n/fr/persondata_en_uris_fr.ttl.bz2" , "Person data English Uris"@en ;[\n]" -2022-11-14 09:05:22,229 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" -2022-11-14 09:05:22,229 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:checksum ;[\n]" -2022-11-14 09:05:22,229 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:isDistributionOf ;[\n]" -2022-11-14 09:05:22,229 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" -2022-11-14 09:05:22,229 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:preview ;[\n]" -2022-11-14 09:05:22,229 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:uncompressedByteSize 291638568 ;[\n]" -2022-11-14 09:05:22,229 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo ;[\n]" -2022-11-14 09:05:22,229 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "Information about persons (date and place of birth etc., extracted from the English and German Wikipedia, represented using the FOAF vocabulary. Normalized dataset matching English DBpedia resources."@en ;[\n]" -2022-11-14 09:05:22,229 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" -2022-11-14 09:05:22,229 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" -2022-11-14 09:05:22,229 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" -2022-11-14 09:05:22,229 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" -2022-11-14 09:05:22,229 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" -2022-11-14 09:05:22,229 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "Person data English Uris"@en ;[\n]" -2022-11-14 09:05:22,229 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:byteSize 16895414 ;[\n]" -2022-11-14 09:05:22,229 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:downloadURL ;[\n]" -2022-11-14 09:05:22,229 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:mediaType dataid-mt:MediaType_turtle_x-bzip2 .[\n]" -2022-11-14 09:05:22,229 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,229 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,229 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid-ld:LinkedDataDataset , dataid:Dataset ;[\n]" -2022-11-14 09:05:22,229 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "Mappingbased Objects"@en ;[\n]" -2022-11-14 09:05:22,229 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associated" -2022-11-14 09:05:22,229 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "Agent ;[\n]" -2022-11-14 09:05:22,229 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" -2022-11-14 09:05:22,229 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:previousVersion ;[\n]" -2022-11-14 09:05:22,229 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedDatasetRelation[\n]" -2022-11-14 09:05:22,229 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " ;[\n]" -2022-11-14 09:05:22,229 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:relatedDataset ;[\n]" -2022-11-14 09:05:22,229 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo , ;[\n]" -2022-11-14 09:05:22,229 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "High-quality data extracted from Infoboxes using the mapping-based extraction (Object properties only). The predicates in this dataset are in the 'ontology' namespace. Note that this data is of much higher quality than the Raw Infobox Properties in the 'property' namespace."@en ;[\n]" -2022-11-14 09:05:22,229 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" -2022-11-14 09:05:22,229 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:isPartOf ;[\n]" -2022-11-14 09:05:22,229 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" -2022-11-14 09:05:22,229 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:language ;[\n]" -2022-11-14 09:05:22,229 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" -2022-11-14 09:05:22,229 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" -2022-11-14 09:05:22,229 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" -2022-11-14 09:05:22,229 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "Mappingbased Objects"@en ;[\n]" -2022-11-14 09:05:22,229 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " void:rootResource ;[\n]" -2022-11-14 09:05:22,229 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " void:triples 4983089 ;[\n]" -2022-11-14 09:05:22,229 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:distribution , ;[\n]" -2022-11-14 09:05:22,229 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:keyword "DBpedia"@en , "Mappingbased Objects"@en ;[\n]" -2022-11-14 09:05:22,229 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:landingPage ;[\n]" -2022-11-14 09:05:22,229 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " sd:defaultGraph ;[\n]" -2022-11-14 09:05:22,229 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " foaf:page .[\n]" -2022-11-14 09:05:22,229 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,229 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,229 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid-ld:LinkedDataDataset , dataid:Dataset ;[\n]" -2022-11-14 09:05:22,229 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "pnd Wikidata Uris"@en ;[\n]" -2022-11-14 09:05:22,229 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" -2022-11-14 09:05:22,229 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" -2022-11-14 09:05:22,229 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:previousVersion ;[\n]" -2022-11-14 09:05:22,229 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedDatasetRelation[\n]" -2022-11-14 09:05:22,229 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " ;[\n]" -2022-11-14 09:05:22,229 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:relatedDataset ;[\n]" -2022-11-14 09:05:22,229 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo , ;[\n]" -2022-11-14 09:05:22,229 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "Undescribed Dataset Normalized dataset matching Wikidata resources (sorted)."@en ;[\n]" -2022-11-14 09:05:22,229 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" -2022-11-14 09:05:22,229 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:isPartOf ;[\n]" -2022-11-14 09:05:22,229 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" -2022-11-14 09:05:22,229 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:language ;[\n]" -2022-11-14 09:05:22,229 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" -2022-11-14 09:05:22,229 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" -2022-11-14 09:05:22,229 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" -2022-11-14 09:05:22,229 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "pnd Wikidata Uris"@en ;[\n]" -2022-11-14 09:05:22,229 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " void:rootResource ;[\n]" -2022-11-14 09:05:22,229 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " void:triples 343 ;[\n]" -2022-11-14 09:05:22,229 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:distribution , ;[\n]" -2022-11-14 09:05:22,229 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:keyword "DBpedia"@en , "pnd Wikidata Uris"@en ;[\n]" -2022-11-14 09:05:22,229 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:landingPage ;[\n]" -2022-11-14 09:05:22,229 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " sd:defaultGraph ;[\n]" -2022-11-14 09:05:22,229 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " foaf:page .[\n]" -2022-11-14 09:05:22,229 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,229 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,229 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:Dataset ;[\n]" -2022-11-14 09:05:22,229 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "Wikipedia XML source dump file"@en ;[\n]" -2022-11-14 09:05:22,229 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" -2022-11-14 09:05:22,229 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" -2022-11-14 09:05:22,229 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:previousVersion ;[\n]" -2022-11-14 09:05:22,229 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedDatasetRelation[\n]" -2022-11-14 09:05:22,229 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " ;[\n]" -2022-11-14 09:05:22,229 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:relatedDataset ;[\n]" -2022-11-14 09:05:22,229 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:underAuthorization ;[\n]" -2022-11-14 09:05:22,229 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "The Wikipedia dump file, which is the source for all other extracted datasets."@en ;[\n]" -2022-11-14 09:05:22,229 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion "20161020" ;[\n]" -2022-11-14 09:05:22,229 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2016-10-20"^^xsd:date ;[\n]" -2022-11-14 09:05:22,229 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:language ;[\n]" -2022-11-14 09:05:22,229 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" -2022-11-14 09:05:22,229 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " " -2022-11-14 09:05:22,230 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" -2022-11-14 09:05:22,230 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "Wikipedia XML source dump file"@en ;[\n]" -2022-11-14 09:05:22,230 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:distribution ;[\n]" -2022-11-14 09:05:22,230 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:keyword "XML dump file"@en , "Wikipedia"@en ;[\n]" -2022-11-14 09:05:22,230 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:landingPage .[\n]" -2022-11-14 09:05:22,230 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,230 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,230 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:SingleFile ;[\n]" -2022-11-14 09:05:22,230 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "Homepages English Uris"@en , "core-i18n/fr/homepages_en_uris_fr.tql.bz2" ;[\n]" -2022-11-14 09:05:22,230 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" -2022-11-14 09:05:22,230 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:checksum ;[\n]" -2022-11-14 09:05:22,230 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:isDistributionOf ;[\n]" -2022-11-14 09:05:22,230 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" -2022-11-14 09:05:22,230 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:preview ;[\n]" -2022-11-14 09:05:22,230 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:uncompressedByteSize 26757149 ;[\n]" -2022-11-14 09:05:22,230 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo ;[\n]" -2022-11-14 09:05:22,230 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "Links to homepages of persons, organizations etc. Normalized dataset matching English DBpedia resources."@en ;[\n]" -2022-11-14 09:05:22,230 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" -2022-11-14 09:05:22,230 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" -2022-11-14 09:05:22,230 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" -2022-11-14 09:05:22,230 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" -2022-11-14 09:05:22,230 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" -2022-11-14 09:05:22,230 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "Homepages English Uris"@en ;[\n]" -2022-11-14 09:05:22,230 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:byteSize 3368388 ;[\n]" -2022-11-14 09:05:22,230 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:downloadURL ;[\n]" -2022-11-14 09:05:22,230 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:mediaType dataid-mt:MediaType_n-quads_x-bzip2 .[\n]" -2022-11-14 09:05:22,230 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,230 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,230 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:SingleFile ;[\n]" -2022-11-14 09:05:22,230 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "Instance Types Transitive"@en , "core-i18n/fr/instance_types_transitive_fr.ttl.bz2" ;[\n]" -2022-11-14 09:05:22,230 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" -2022-11-14 09:05:22,230 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:checksum ;[\n]" -2022-11-14 09:05:22,230 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:isDistributionOf ;[\n]" -2022-11-14 09:05:22,230 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" -2022-11-14 09:05:22,230 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:preview ;[\n]" -2022-11-14 09:05:22,230 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:uncompressedByteSize 1428189829 ;[\n]" -2022-11-14 09:05:22,230 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo ;[\n]" -2022-11-14 09:05:22,230 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "Contains transitive rdf:type $class based on the DBpedia ontology."@en ;[\n]" -2022-11-14 09:05:22,230 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" -2022-11-14 09:05:22,230 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" -2022-11-14 09:05:22,230 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" -2022-11-14 09:05:22,230 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" -2022-11-14 09:05:22,230 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" -2022-11-14 09:05:22,230 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "Instance Types Transitive"@en ;[\n]" -2022-11-14 09:05:22,230 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:byteSize 37604661 ;[\n]" -2022-11-14 09:05:22,230 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:downloadURL ;[\n]" -2022-11-14 09:05:22,230 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:mediaType dataid-mt:MediaType_turtle_x-bzip2 .[\n]" -2022-11-14 09:05:22,230 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,230 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,230 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:SingleFile ;[\n]" -2022-11-14 09:05:22,230 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "Mappingbased Objects English Uris"@en , "core-i18n/fr/mappingbased_objects_en_uris_fr.tql.bz2" ;[\n]" -2022-11-14 09:05:22,230 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" -2022-11-14 09:05:22,230 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:checksum ;[\n]" -2022-11-14 09:05:22,230 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:isDistributionOf ;[\n]" -2022-11-14 09:05:22,230 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" -2022-11-14 09:05:22,230 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:preview ;[\n]" -2022-11-14 09:05:22,230 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:uncompressedByteSize 734952411 ;[\n]" -2022-11-14 09:05:22,230 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo ;[\n]" -2022-11-14 09:05:22,230 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "High-quality data extracted from Infoboxes using the mapping-based extraction (Object properties only). The predicates in this dataset are in the 'ontology' namespace. Note that this data is of much higher quality than the Raw Infobox Properties in the 'property' namespace. Normalized dataset matching English DBpedia resources."@en ;[\n]" -2022-11-14 09:05:22,230 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" -2022-11-14 09:05:22,230 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" -2022-11-14 09:05:22,230 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" -2022-11-14 09:05:22,230 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" -2022-11-14 09:05:22,230 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" -2022-11-14 09:05:22,230 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "Mappingbased Objects English Uris"@en ;[\n]" -2022-11-14 09:05:22,230 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:byteSize 42957738 ;[\n]" -2022-11-14 09:05:22,230 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:downloadURL ;[\n]" -2022-11-14 09:05:22,230 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:mediaType dataid-mt:MediaType_n-quads_x-bzip2 .[\n]" -2022-11-14 09:05:22,230 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,230 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,230 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:SingleFile ;[\n]" -2022-11-14 09:05:22,230 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "core-i18n/fr/instance_types_transitive_fr.tql.bz2" , "Instance Types Transitive"@en ;[\n]" -2022-11-14 09:05:22,230 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" -2022-11-14 09:05:22,230 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:checksum ;[\n]" -2022-11-14 09:05:22,230 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:isDistributionOf ;[\n]" -2022-11-14 09:05:22,230 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" -2022-11-14 09:05:22,230 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:preview ;[\n]" -2022-11-14 09:05:22,230 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:uncompressedByteSize 2596532321 ;[\n]" -2022-11-14 09:05:22,230 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo ;[\n]" -2022-11-14 09:05:22,230 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "Contains transitive rdf:type $class based on the DBpedia ontology."@en ;[\n]" -2022-11-14 09:05:22,230 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" -2022-11-14 09:05:22,230 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" -2022-11-14 09:05:22,230 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" -2022-11-14 09:05:22,230 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" -2022-11-14 09:05:22,230 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" -2022-11-14 09:05:22,230 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "Instance Types Transitive"@en ;[\n]" -2022-11-14 09:05:22,230 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:byteSize 61232" -2022-11-14 09:05:22,232 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "203 ;[\n]" -2022-11-14 09:05:22,232 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:downloadURL ;[\n]" -2022-11-14 09:05:22,232 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:mediaType dataid-mt:MediaType_n-quads_x-bzip2 .[\n]" -2022-11-14 09:05:22,232 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,232 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,232 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid-ld:LinkedDataDataset , dataid:Dataset ;[\n]" -2022-11-14 09:05:22,232 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "Mappingbased Literals Wikidata Uris"@en ;[\n]" -2022-11-14 09:05:22,232 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" -2022-11-14 09:05:22,232 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" -2022-11-14 09:05:22,232 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:previousVersion ;[\n]" -2022-11-14 09:05:22,232 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedDatasetRelation[\n]" -2022-11-14 09:05:22,232 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " ;[\n]" -2022-11-14 09:05:22,232 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:relatedDataset ;[\n]" -2022-11-14 09:05:22,232 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo , ;[\n]" -2022-11-14 09:05:22,232 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "High-quality data extracted from Infoboxes using the mapping-based extraction (Literal properties only). The predicates in this dataset are in the ontology namespace. Note that this data is of much higher quality than " -2022-11-14 09:05:22,233 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "the Raw Infobox Properties in the 'property' namespace. Normalized dataset matching Wikidata resources (sorted)."@en ;[\n]" -2022-11-14 09:05:22,233 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" -2022-11-14 09:05:22,233 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:isPartOf ;[\n]" -2022-11-14 09:05:22,233 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" -2022-11-14 09:05:22,233 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:language ;[\n]" -2022-11-14 09:05:22,233 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" -2022-11-14 09:05:22,233 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" -2022-11-14 09:05:22,233 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" -2022-11-14 09:05:22,233 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "Mappingbased Literals Wikidata Uris"@en ;[\n]" -2022-11-14 09:05:22,233 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " void:rootResource ;[\n]" -2022-11-14 09:05:22,233 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " void:triples 2959079 ;[\n]" -2022-11-14 09:05:22,233 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:distribution , ;[\n]" -2022-11-14 09:05:22,233 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:keyword "Mappingbased Literals Wikidata Uris"@en , "DBpedia"@en ;[\n]" -2022-11-14 09:05:22,233 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:landingPage ;[\n]" -2022-11-14 09:05:22,233 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " sd:defaultGraph ;[\n]" -2022-11-14 09:05:22,233 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " foaf:page .[\n]" -2022-11-14 09:05:22,233 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,233 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,233 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:SingleFile ;[\n]" -2022-11-14 09:05:22,233 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "core-i18n/fr/geo_coordinates_en_uris_fr.tql.bz2" , "Geo Coordinates English Uris"@en ;[\n]" -2022-11-14 09:05:22,233 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" -2022-11-14 09:05:22,233 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:checksum ;[\n]" -2022-11-14 09:05:22,233 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:isDistributionOf ;[\n]" -2022-11-14 09:05:22,233 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" -2022-11-14 09:05:22,233 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:preview ;[\n]" -2022-11-14 09:05:22,233 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:uncompressedByteSize 25161745 ;[\n]" -2022-11-14 09:05:22,233 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo ;[\n]" -2022-11-14 09:05:22,233 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "Geographic coordinates extracted from Wikipedia. Normalized dataset matching English DBpedia resources."@en ;[\n]" -2022-11-14 09:05:22,233 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" -2022-11-14 09:05:22,234 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" -2022-11-14 09:05:22,234 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" -2022-11-14 09:05:22,234 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" -2022-11-14 09:05:22,234 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" -2022-11-14 09:05:22,234 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "Geo Coordinates English Uris"@en ;[\n]" -2022-11-14 09:05:22,234 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:byteSize 1465178 ;[\n]" -2022-11-14 09:05:22,234 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:downloadURL ;[\n]" -2022-11-14 09:05:22,234 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:mediaType dataid-mt:MediaType_n-quads_x-bzip2 .[\n]" -2022-11-14 09:05:22,234 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,234 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,234 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:Dataset , dataid-ld:LinkedDataDataset ;[\n]" -2022-11-14 09:05:22,234 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "Geo Coordinates Mappingbased"@en ;[\n]" -2022-11-14 09:05:22,234 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" -2022-11-14 09:05:22,234 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" -2022-11-14 09:05:22,234 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:previousVersion ;[\n]" -2022-11-14 09:05:22,234 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedDatasetRelation[\n]" -2022-11-14 09:05:22,234 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " ;[\n]" -2022-11-14 09:05:22,235 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:relatedDataset ;[\n]" -2022-11-14 09:05:22,235 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo , ;[\n]" -2022-11-14 09:05:22,235 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "Geographic coordinates extracted from Wikipedia originating from mapped infoboxes in the mappings wiki"@en ;[\n]" -2022-11-14 09:05:22,235 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" -2022-11-14 09:05:22,235 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:isPartOf ;[\n]" -2022-11-14 09:05:22,235 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" -2022-11-14 09:05:22,235 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:language ;[\n]" -2022-11-14 09:05:22,235 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" -2022-11-14 09:05:22,235 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" -2022-11-14 09:05:22,235 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" -2022-11-14 09:05:22,235 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "Geo Coordinates Mappingbased"@en ;[\n]" -2022-11-14 09:05:22,235 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " void:rootResource ;[\n]" -2022-11-14 09:05:22,235 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " void:triples 827523 ;[\n]" -2022-11-14 09:05:22,235 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:distribution , ;[\n]" -2022-11-14 09:05:22,235 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:keyword "Geo Coordinates Mappingbased"@en , "DBpedia"@en ;[\n]" -2022-11-14 09:05:22,235 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:landingPage ;[\n]" -2022-11-14 09:05:22,235 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " sd:defaultGraph ;[\n]" -2022-11-14 09:05:22,235 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " foaf:page .[\n]" -2022-11-14 09:05:22,235 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,235 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,235 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid-ld:LinkedDataDataset , dataid:Dataset ;[\n]" -2022-11-14 09:05:22,235 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "Specific Mappingbased Properties English Uris"@en ;[\n]" -2022-11-14 09:05:22,235 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" -2022-11-14 09:05:22,235 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" -2022-11-14 09:05:22,235 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:previousVersion ;[\n]" -2022-11-14 09:05:22,235 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedDatasetRelation[\n]" -2022-11-14 09:05:22,235 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " ;[\n]" -2022-11-14 09:05:22,235 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:relatedDataset ;[\n]" -2022-11-14 09:05:22,235 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo , ;[\n]" -2022-11-14 09:05:22,235 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "Infobox data from the mapping-based extraction, using units of measurement more " -2022-11-14 09:05:22,237 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "convenient for the resource type, e.g. square kilometres instead of square metres for the area of a city. Normalized dataset matching English DBpedia resources."@en ;[\n]" -2022-11-14 09:05:22,237 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" -2022-11-14 09:05:22,237 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:isPartOf ;[\n]" -2022-11-14 09:05:22,237 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" -2022-11-14 09:05:22,237 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:language ;[\n]" -2022-11-14 09:05:22,237 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" -2022-11-14 09:05:22,237 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" -2022-11-14 09:05:22,237 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" -2022-11-14 09:05:22,237 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "Specific Mappingbased Properties English Uris"@en ;[\n]" -2022-11-14 09:05:22,237 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " void:rootResource ;[\n]" -2022-11-14 09:05:22,237 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " void:triples 48016 ;[\n]" -2022-11-14 09:05:22,237 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:distribution , ;[\n]" -2022-11-14 09:05:22,237 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:keyword "Specific Mappingbased Properties English Uris"@en , "DBpedia"@en ;[\n]" -2022-11-14 09:05:22,237 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " " -2022-11-14 09:05:22,238 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:landingPage ;[\n]" -2022-11-14 09:05:22,238 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " sd:defaultGraph ;[\n]" -2022-11-14 09:05:22,238 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " foaf:page .[\n]" -2022-11-14 09:05:22,238 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,238 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,238 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:SingleFile ;[\n]" -2022-11-14 09:05:22,238 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "Images"@en , "core-i18n/fr/images_fr.ttl.bz2" ;[\n]" -2022-11-14 09:05:22,238 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" -2022-11-14 09:05:22,238 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:checksum ;[\n]" -2022-11-14 09:05:22,238 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:isDistributionOf ;[\n]" -2022-11-14 09:05:22,238 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" -2022-11-14 09:05:22,238 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:preview ;[\n]" -2022-11-14 09:05:22,238 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:uncompressedByteSize 1021959304 ;[\n]" -2022-11-14 09:05:22,238 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo ;[\n]" -2022-11-14 09:05:22,238 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "Main image and corresponding thumbnail from Wikipedia article."@en ;[\n]" -2022-11-14 09:05:22,238 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" -2022-11-14 09:05:22,238 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "20" -2022-11-14 09:05:22,239 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "17-07-01"^^xsd:date ;[\n]" -2022-11-14 09:05:22,239 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" -2022-11-14 09:05:22,239 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" -2022-11-14 09:05:22,239 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" -2022-11-14 09:05:22,239 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "Images"@en ;[\n]" -2022-11-14 09:05:22,239 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:byteSize 41856787 ;[\n]" -2022-11-14 09:05:22,239 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:downloadURL ;[\n]" -2022-11-14 09:05:22,239 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:mediaType dataid-mt:MediaType_turtle_x-bzip2 .[\n]" -2022-11-14 09:05:22,239 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,239 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,239 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:SingleFile ;[\n]" -2022-11-14 09:05:22,239 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "Infobox Properties"@en , "core-i18n/fr/infobox_properties_fr.tql.bz2" ;[\n]" -2022-11-14 09:05:22,239 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" -2022-11-14 09:05:22,239 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:checksum ;[\n]" -2022-11-14 09:05:22,239 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:isDistributionOf ;[\n]" -2022-11-14 09:05:22,239 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" -2022-11-14 09:05:22,239 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:preview ;[\n]" -2022-11-14 09:05:22,240 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:uncompressedByteSize 5432500076 ;[\n]" -2022-11-14 09:05:22,240 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo ;[\n]" -2022-11-14 09:05:22,240 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "Information that has been extracted from Wikipedia infoboxes. Note that this data is in the less clean 'property' namespace. The Mapping-based Properties in the 'ontology' namespace, should always be preferred over this data."@en ;[\n]" -2022-11-14 09:05:22,240 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" -2022-11-14 09:05:22,240 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" -2022-11-14 09:05:22,240 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" -2022-11-14 09:05:22,240 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" -2022-11-14 09:05:22,240 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" -2022-11-14 09:05:22,240 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "Infobox Properties"@en ;[\n]" -2022-11-14 09:05:22,240 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:byteSize 276611148 ;[\n]" -2022-11-14 09:05:22,240 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:downloadURL ;[\n]" -2022-11-14 09:05:22,240 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:mediaType dataid-mt:MediaType_n-quads_x-bzip2 .[\n]" -2022-11-14 09:05:22,240 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,240 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,240 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:SingleFile ;[\n]" -2022-11-14 09:05:22,240 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "Images"@en , "core-i1" -2022-11-14 09:05:22,241 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "8n/fr/images_fr.tql.bz2" ;[\n]" -2022-11-14 09:05:22,241 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" -2022-11-14 09:05:22,241 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:checksum ;[\n]" -2022-11-14 09:05:22,241 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:isDistributionOf ;[\n]" -2022-11-14 09:05:22,241 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" -2022-11-14 09:05:22,241 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:preview ;[\n]" -2022-11-14 09:05:22,241 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:uncompressedByteSize 1481265053 ;[\n]" -2022-11-14 09:05:22,241 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo ;[\n]" -2022-11-14 09:05:22,241 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "Main image and corresponding thumbnail from Wikipedia article."@en ;[\n]" -2022-11-14 09:05:22,241 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" -2022-11-14 09:05:22,241 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" -2022-11-14 09:05:22,241 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" -2022-11-14 09:05:22,241 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" -2022-11-14 09:05:22,241 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" -2022-11-14 09:05:22,241 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "Images"@en ;[\n]" -2022-11-14 09:05:22,241 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:byteSize 58380688 ;[\n]" -2022-11-14 09:05:22,241 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:downloadURL ;[\n]" -2022-11-14 09:05:22,241 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:mediaType dataid-mt:MediaType_n-quads_x-bzip2 .[\n]" -2022-11-14 09:05:22,241 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,241 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,241 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:Dataset , dataid-ld:LinkedDataDataset ;[\n]" -2022-11-14 09:05:22,241 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "Infobox Property Definitions English Uris"@en ;[\n]" -2022-11-14 09:05:22,241 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" -2022-11-14 09:05:22,241 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" -2022-11-14 09:05:22,241 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:previousVersion ;[\n]" -2022-11-14 09:05:22,241 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedDatasetRelation[\n]" -2022-11-14 09:05:22,241 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " ;[\n]" -2022-11-14 09:05:22,241 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:relatedDataset ;[\n]" -2022-11-14 09:05:22,241 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo , ;[\n]" -2022-11-14 09:05:22,241 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "All properties predicates used in infoboxes. Normalized dataset matching English DBpedia resources."@en ;[\n]" -2022-11-14 09:05:22,241 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" -2022-11-14 09:05:22,241 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:isPartOf " -2022-11-14 09:05:22,244 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " ;[\n]" -2022-11-14 09:05:22,244 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" -2022-11-14 09:05:22,244 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:language ;[\n]" -2022-11-14 09:05:22,244 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" -2022-11-14 09:05:22,244 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" -2022-11-14 09:05:22,244 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" -2022-11-14 09:05:22,244 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "Infobox Property Definitions English Uris"@en ;[\n]" -2022-11-14 09:05:22,244 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " void:rootResource ;[\n]" -2022-11-14 09:05:22,244 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " void:triples 42214 ;[\n]" -2022-11-14 09:05:22,244 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:distribution , ;[\n]" -2022-11-14 09:05:22,244 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:keyword "DBpedia"@en , "Infobox Property Definitions English Uris"@en ;[\n]" -2022-11-14 09:05:22,244 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:landingPage ;[\n]" -2022-11-14 09:05:22,244 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " sd:defaultGraph ;[\n]" -2022-11-14 09:05:22,244 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " foaf:page .[\n]" -2022-11-14 09:05:22,244 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,244 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,244 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:Dataset , dataid-ld:LinkedDataDat" -2022-11-14 09:05:22,245 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "aset ;[\n]" -2022-11-14 09:05:22,245 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "NIF Text Links"@en ;[\n]" -2022-11-14 09:05:22,245 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" -2022-11-14 09:05:22,245 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" -2022-11-14 09:05:22,245 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedDatasetRelation[\n]" -2022-11-14 09:05:22,245 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " ;[\n]" -2022-11-14 09:05:22,245 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:relatedDataset ;[\n]" -2022-11-14 09:05:22,245 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo , ;[\n]" -2022-11-14 09:05:22,245 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "This dataset contains all text links of a Wikipedia page, detailed in the NIF format."@en ;[\n]" -2022-11-14 09:05:22,245 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" -2022-11-14 09:05:22,245 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:isPartOf ;[\n]" -2022-11-14 09:05:22,245 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" -2022-11-14 09:05:22,245 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:language ;[\n]" -2022-11-14 09:05:22,245 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" -2022-11-14 09:05:22,245 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" -2022-11-14 09:05:22,245 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" -2022-11-14 09:05:22,245 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "NIF Text Links"@en ;[\n]" -2022-11-14 09:05:22,245 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " void:rootResource ;[\n]" -2022-11-14 09:05:22,254 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " void:triples 405609542 ;[\n]" -2022-11-14 09:05:22,254 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:distribution , ;[\n]" -2022-11-14 09:05:22,254 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:keyword "NIF Text Links"@en , "DBpedia"@en ;[\n]" -2022-11-14 09:05:22,254 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:landingPage ;[\n]" -2022-11-14 09:05:22,254 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " sd:defaultGraph ;[\n]" -2022-11-14 09:05:22,254 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " foaf:page .[\n]" -2022-11-14 09:05:22,254 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,254 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,254 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:Dataset , dataid-ld:LinkedDataDataset ;[\n]" -2022-11-14 09:05:22,254 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "Long Abstracts Wikidata Uris"@en ;[\n]" -2022-11-14 09:05:22,254 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" -2022-11-14 09:05:22,254 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" -2022-11-14 09:05:22,254 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:previousVersion ;[\n]" -2022-11-14 09:05:22,254 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedDatasetRelation[\n]" -2022-11-14 09:05:22,254 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " ;[\n]" -2022-11-14 09:05:22,254 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:relatedDataset ;[\n]" -2022-11-14 09:05:22,254 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo , ;[\n]" -2022-11-14 09:05:22,254 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "Long abstracts (full abstracts) of Wikipedia articles, usually the first section. Normalized dataset matching Wikidata resources (sorted)."@en ;[\n]" -2022-11-14 09:05:22,254 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" -2022-11-14 09:05:22,254 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:isPartOf ;[\n]" -2022-11-14 09:05:22,254 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" -2022-11-14 09:05:22,254 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:language ;[\n]" -2022-11-14 09:05:22,254 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" -2022-11-14 09:05:22,254 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" -2022-11-14 09:05:22,254 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" -2022-11-14 09:05:22,254 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "Long Abstracts Wikidata Uris"@en ;[\n]" -2022-11-14 09:05:22,254 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " void:rootResource ;[\n]" -2022-11-14 09:05:22,254 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " void:triples 1678856 ;[\n]" -2022-11-14 09:05:22,254 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:distribution , ;[\n]" -2022-11-14 09:05:22,254 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:keyword "Long Abstracts Wikidata Uris"@en , "DBpedia"@en ;[\n]" -2022-11-14 09:05:22,254 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:landingPage ;[\n]" -2022-11-14 09:05:22,254 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " sd:defaultGraph ;[\n]" -2022-11-14 09:05:22,254 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " foaf:page .[\n]" -2022-11-14 09:05:22,254 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,254 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,254 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid-ld:LinkedDataDataset , dataid:Dataset ;[\n]" -2022-11-14 09:05:22,254 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "Infobox Properties Wikidata Uris"@en ;[\n]" -2022-11-14 09:05:22,254 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" -2022-11-14 09:05:22,254 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" -2022-11-14 09:05:22,254 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:previousVersion ;[\n]" -2022-11-14 09:05:22,254 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedDatasetRelation[\n]" -2022-11-14 09:05:22,254 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " ;[\n]" -2022-11-14 09:05:22,254 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:relatedDataset ;[\n]" -2022-11-14 09:05:22,254 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo , ;[\n]" -2022-11-14 09:05:22,254 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "Information that has been extracted from Wikipedia infoboxes. Note that this data is in the less clean 'property' namespace. The Mapping-based Properties in the 'ontology' namespace, should always be preferred over this data. Norma" -2022-11-14 09:05:22,255 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "lized dataset matching Wikidata resources (sorted)."@en ;[\n]" -2022-11-14 09:05:22,255 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" -2022-11-14 09:05:22,255 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:isPartOf ;[\n]" -2022-11-14 09:05:22,255 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" -2022-11-14 09:05:22,255 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:language ;[\n]" -2022-11-14 09:05:22,255 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" -2022-11-14 09:05:22,255 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" -2022-11-14 09:05:22,255 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" -2022-11-14 09:05:22,255 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "Infobox Properties Wikidata Uris"@en ;[\n]" -2022-11-14 09:05:22,255 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " void:rootResource ;[\n]" -2022-11-14 09:05:22,255 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " void:triples 15644911 ;[\n]" -2022-11-14 09:05:22,255 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:distribution , ;[\n]" -2022-11-14 09:05:22,255 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:keyword "Infobox Properties Wikidata Uris"@en , "DBpedia"@en ;[\n]" -2022-11-14 09:05:22,255 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:landingPage ;[\n]" -2022-11-14 09:05:22,255 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " sd:defaultGraph ;[\n]" -2022-11-14 09:05:22,255 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " foaf:page .[\n]" -2022-11-14 09:05:22,255 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,255 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,255 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid-ld:LinkedDataDataset , dataid:Dataset ;[\n]" -2022-11-14 09:05:22,255 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "Disambiguations Wikidata Uris"@en ;[\n]" -2022-11-14 09:05:22,255 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" -2022-11-14 09:05:22,255 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" -2022-11-14 09:05:22,255 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:previousVersion ;[\n]" -2022-11-14 09:05:22,255 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedDatasetRelation[\n]" -2022-11-14 09:05:22,255 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " ;[\n]" -2022-11-14 09:05:22,255 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:relatedDataset ;[\n]" -2022-11-14 09:05:22,255 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo , ;[\n]" -2022-11-14 09:05:22,255 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "Links extracted from Wikipedia disambiguation pages. Since Wikipedia has no syntax to distinguish disambiguation links from ordinary links, DBpedia has to use heuristics. Normalized dataset matching Wikidata resources (sorted)."@en ;[\n]" -2022-11-14 09:05:22,255 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" -2022-11-14 09:05:22,255 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:isPartOf ;[\n]" -2022-11-14 09:05:22,255 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" -2022-11-14 09:05:22,255 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:language ;[\n]" -2022-11-14 09:05:22,255 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" -2022-11-14 09:05:22,255 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" -2022-11-14 09:05:22,255 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" -2022-11-14 09:05:22,255 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "Disambiguations Wikidata Uris"@en ;[\n]" -2022-11-14 09:05:22,255 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " void:rootResource ;[\n]" -2022-11-14 09:05:22,255 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " void:triples 439397 ;[\n]" -2022-11-14 09:05:22,255 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:distribution , ;[\n]" -2022-11-14 09:05:22,255 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:keyword "DBpedia"@en , "Disambiguations Wikidata Uris"@en ;[\n]" -2022-11-14 09:05:22,255 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:landingPage ;[\n]" -2022-11-14 09:05:22,255 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " sd:defaultGraph ;[\n]" -2022-11-14 09:05:22,255 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " foaf:page .[\n]" -2022-11-14 09:05:22,255 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,255 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,255 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid-ld:LinkedDataDataset , dataid:Dataset ;[\n]" -2022-11-14 09:05:22,255 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "Instance Types Transitive Wikidata Uris"@en ;[\n]" -2022-11-14 09:05:22,255 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" -2022-11-14 09:05:22,255 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" -2022-11-14 09:05:22,255 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:previousVersion ;[\n]" -2022-11-14 09:05:22,255 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedDatasetRelation[\n]" -2022-11-14 09:05:22,255 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " ;[\n]" -2022-11-14 09:05:22,255 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:relatedDataset ;[\n]" -2022-11-14 09:05:22,255 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo , ;[\n]" -2022-11-14 09:05:22,255 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "Contains transitive rdf:type $class based on the DBpedia ontology. Normalized dataset matching Wikidata resources (sorted)."@en ;[\n]" -2022-11-14 09:05:22,255 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" -2022-11-14 09:05:22,255 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:isPartOf ;[\n]" -2022-11-14 09:05:22,255 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" -2022-11-14 09:05:22,255 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:language ;[\n]" -2022-11-14 09:05:22,255 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" -2022-11-14 09:05:22,255 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" -2022-11-14 09:05:22,255 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" -2022-11-14 09:05:22,256 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "Instance Types Transitive Wikidata Uris"@en ;[\n]" -2022-11-14 09:05:22,256 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " void:rootResource ;[\n]" -2022-11-14 09:05:22,256 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " void:triples 6866781 ;[\n]" -2022-11-14 09:05:22,256 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:distribution , ;[\n]" -2022-11-14 09:05:22,256 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:keyword "Instance Types Transitive Wikidata Uris"@en , "DBpedia"@en ;[\n]" -2022-11-14 09:05:22,256 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:landingPage ;[\n]" -2022-11-14 09:05:22,256 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " sd:defaultGraph ;[\n]" -2022-11-14 09:05:22,256 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " foaf:page .[\n]" -2022-11-14 09:05:22,256 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,256 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,256 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:Dataset , dataid-ld:LinkedDataDataset ;[\n]" -2022-11-14 09:05:22,256 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "Category Labels. Wikidata Uris"@en ;[\n]" -2022-11-14 09:05:22,256 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" -2022-11-14 09:05:22,256 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" -2022-11-14 09:05:22,256 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:previousVersion ;[\n]" -2022-11-14 09:05:22,256 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedDat" -2022-11-14 09:05:22,256 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "asetRelation[\n]" -2022-11-14 09:05:22,256 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " ;[\n]" -2022-11-14 09:05:22,256 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:relatedDataset ;[\n]" -2022-11-14 09:05:22,256 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo , ;[\n]" -2022-11-14 09:05:22,256 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "Labels for Categories. Normalized dataset matching Wikidata resources (sorted)."@en ;[\n]" -2022-11-14 09:05:22,256 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" -2022-11-14 09:05:22,256 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:isPartOf ;[\n]" -2022-11-14 09:05:22,256 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" -2022-11-14 09:05:22,256 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:language ;[\n]" -2022-11-14 09:05:22,256 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" -2022-11-14 09:05:22,256 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" -2022-11-14 09:05:22,256 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" -2022-11-14 09:05:22,256 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "Category Labels. Wikidata Uris"@en ;[\n]" -2022-11-14 09:05:22,256 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " void:rootResource ;[\n]" -2022-11-14 09:05:22,256 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " void:triples 287624 ;[\n]" -2022-11-14 09:05:22,256 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:distribution , ;[\n]" -2022-11-14 09:05:22,256 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:keyword "DBpedia"@en , "Category Labels. Wikidata Uris"@en ;[\n]" -2022-11-14 09:05:22,256 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:landingPage ;[\n]" -2022-11-14 09:05:22,256 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " sd:defaultGraph ;[\n]" -2022-11-14 09:05:22,256 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " foaf:page .[\n]" -2022-11-14 09:05:22,256 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,256 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,256 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:SingleFile ;[\n]" -2022-11-14 09:05:22,256 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "core-i18n/fr/mappingbased_objects_fr.ttl.bz2" , "Mappingbased Objects"@en ;[\n]" -2022-11-14 09:05:22,256 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" -2022-11-14 09:05:22,256 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:checksum ;[\n]" -2022-11-14 09:05:22,256 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:isDistributionOf ;[\n]" -2022-11-14 09:05:22,256 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" -2022-11-14 09:05:22,256 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:preview ;[\n]" -2022-11-14 09:05:22,256 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:uncompressedByteSize 735911106 ;[\n]" -2022-11-14 09:05:22,256 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " " -2022-11-14 09:05:22,258 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo ;[\n]" -2022-11-14 09:05:22,258 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "High-quality data extracted from Infoboxes using the mapping-based extraction (Object properties only). The predicates in this dataset are in the 'ontology' namespace. Note that this data is of much higher quality than the Raw Infobox Properties in the 'property' namespace."@en ;[\n]" -2022-11-14 09:05:22,258 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" -2022-11-14 09:05:22,258 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" -2022-11-14 09:05:22,258 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" -2022-11-14 09:05:22,258 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" -2022-11-14 09:05:22,258 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" -2022-11-14 09:05:22,258 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "Mappingbased Objects"@en ;[\n]" -2022-11-14 09:05:22,258 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:byteSize 43960378 ;[\n]" -2022-11-14 09:05:22,258 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:downloadURL ;[\n]" -2022-11-14 09:05:22,258 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:mediaType dataid-mt:MediaType_turtle_x-bzip2 .[\n]" -2022-11-14 09:05:22,258 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,258 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,258 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid-ld:LinkedDataDataset , dataid:Dataset ;[\n]" -2022-11-14 09:05:22,258 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "Page Links"@en ;[\n]" -2022-11-14 09:05:22,258 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" -2022-11-14 09:05:22,258 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" -2022-11-14 09:05:22,258 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:previousVersion ;[\n]" -2022-11-14 09:05:22,258 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedDatasetRelation[\n]" -2022-11-14 09:05:22,258 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " ;[\n]" -2022-11-14 09:05:22,258 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:relatedDataset ;[\n]" -2022-11-14 09:05:22,258 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo , ;[\n]" -2022-11-14 09:05:22,258 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "Dataset containing internal links between DBpedia instances. The dataset was created from the internal links between Wikipedia articles. The dataset might be useful for structural analysis, data mining or for ranking DBpedia instances using Page Rank or similar algorithms."@en ;[\n]" -2022-11-14 09:05:22,258 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" -2022-11-14 09:05:22,258 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:isPartOf ;[\n]" -2022-11-14 09:05:22,258 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" -2022-11-14 09:05:22,258 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:language ;[\n]" -2022-11-14 09:05:22,258 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" -2022-11-14 09:05:22,258 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" -2022-11-14 09:05:22,258 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher " -2022-11-14 09:05:22,260 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " ;[\n]" -2022-11-14 09:05:22,260 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "Page Links"@en ;[\n]" -2022-11-14 09:05:22,260 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " void:rootResource ;[\n]" -2022-11-14 09:05:22,260 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " void:triples 64054759 ;[\n]" -2022-11-14 09:05:22,260 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:distribution , ;[\n]" -2022-11-14 09:05:22,260 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:keyword "Page Links"@en , "DBpedia"@en ;[\n]" -2022-11-14 09:05:22,260 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:landingPage ;[\n]" -2022-11-14 09:05:22,260 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " sd:defaultGraph ;[\n]" -2022-11-14 09:05:22,260 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " foaf:page .[\n]" -2022-11-14 09:05:22,260 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,260 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,260 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:SingleFile ;[\n]" -2022-11-14 09:05:22,260 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "Mappingbased Objects"@en , "core-i18n/fr/mappingbased_objects_fr.tql.bz2" ;[\n]" -2022-11-14 09:05:22,260 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" -2022-11-14 09:05:22,260 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:checksum ;[\n]" -2022-11-14 09:05:22,260 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:isDistributionOf ;[\n]" -2022-11-14 09:05:22,260 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion " -2022-11-14 09:05:22,261 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " ;[\n]" -2022-11-14 09:05:22,261 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:preview ;[\n]" -2022-11-14 09:05:22,261 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:uncompressedByteSize 1602561567 ;[\n]" -2022-11-14 09:05:22,261 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo ;[\n]" -2022-11-14 09:05:22,261 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "High-quality data extracted from Infoboxes using the mapping-based extraction (Object properties only). The predicates in this dataset are in the 'ontology' namespace. Note that this data is of much higher quality than the Raw Infobox Properties in the 'property' namespace."@en ;[\n]" -2022-11-14 09:05:22,261 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" -2022-11-14 09:05:22,261 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" -2022-11-14 09:05:22,261 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" -2022-11-14 09:05:22,261 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" -2022-11-14 09:05:22,261 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" -2022-11-14 09:05:22,261 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "Mappingbased Objects"@en ;[\n]" -2022-11-14 09:05:22,261 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:byteSize 84620726 ;[\n]" -2022-11-14 09:05:22,261 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:downloadURL ;[\n]" -2022-11-14 09:05:22,261 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:mediaType dataid-mt:MediaType_n-quads_x-bzip2 .[\n]" -2022-11-14 09:05:22,261 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,261 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,261 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid-ld:LinkedDataDataset , dataid:Dataset ;[\n]" -2022-11-14 09:05:22,261 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "Interlanguage Links between DBpedia Chapters"@en ;[\n]" -2022-11-14 09:05:22,261 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" -2022-11-14 09:05:22,261 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" -2022-11-14 09:05:22,261 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:previousVersion ;[\n]" -2022-11-14 09:05:22,261 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedDatasetRelation[\n]" -2022-11-14 09:05:22,261 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " ;[\n]" -2022-11-14 09:05:22,261 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:relatedDataset ;[\n]" -2022-11-14 09:05:22,261 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo , ;[\n]" -2022-11-14 09:05:22,261 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "Chapter specific interlanguage links only contains the interlanguage links between those languages for which a DBpedia mapping chapter exists and provides dereferencable URIs. (a subset of interlanguage links)"@en ;[\n]" -2022-11-14 09:05:22,261 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" -2022-11-14 09:05:22,261 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:isPartOf " -2022-11-14 09:05:22,262 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " ;[\n]" -2022-11-14 09:05:22,262 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" -2022-11-14 09:05:22,262 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:language ;[\n]" -2022-11-14 09:05:22,262 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" -2022-11-14 09:05:22,262 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" -2022-11-14 09:05:22,262 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" -2022-11-14 09:05:22,262 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "Interlanguage Links between DBpedia Chapters"@en ;[\n]" -2022-11-14 09:05:22,262 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " void:rootResource ;[\n]" -2022-11-14 09:05:22,262 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " void:triples 10971361 ;[\n]" -2022-11-14 09:05:22,262 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:distribution , ;[\n]" -2022-11-14 09:05:22,262 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:keyword "Interlanguage Links between DBpedia Chapters"@en , "DBpedia"@en ;[\n]" -2022-11-14 09:05:22,262 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:landingPage ;[\n]" -2022-11-14 09:05:22,262 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " sd:defaultGraph ;[\n]" -2022-11-14 09:05:22,262 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " foaf:page .[\n]" -2022-11-14 09:05:22,262 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,262 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,262 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:SingleFile ;[\n]" -2022-11-14 09:05:22,262 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label " -2022-11-14 09:05:22,263 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " "core-i18n/fr/page_length_fr.ttl.bz2" , "Page Length"@en ;[\n]" -2022-11-14 09:05:22,263 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" -2022-11-14 09:05:22,263 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:checksum ;[\n]" -2022-11-14 09:05:22,263 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:isDistributionOf ;[\n]" -2022-11-14 09:05:22,263 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" -2022-11-14 09:05:22,263 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:preview ;[\n]" -2022-11-14 09:05:22,263 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:uncompressedByteSize 525841043 ;[\n]" -2022-11-14 09:05:22,263 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo ;[\n]" -2022-11-14 09:05:22,263 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "Numbers of characters contained in a Wikipedia article's source."@en ;[\n]" -2022-11-14 09:05:22,263 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" -2022-11-14 09:05:22,263 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" -2022-11-14 09:05:22,263 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" -2022-11-14 09:05:22,263 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" -2022-11-14 09:05:22,263 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" -2022-11-14 09:05:22,263 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "Page Length"@en ;[\n]" -2022-11-14 09:05:22,263 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " d" -2022-11-14 09:05:22,264 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "cat:byteSize 32403907 ;[\n]" -2022-11-14 09:05:22,264 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:downloadURL ;[\n]" -2022-11-14 09:05:22,264 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:mediaType dataid-mt:MediaType_turtle_x-bzip2 .[\n]" -2022-11-14 09:05:22,264 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,264 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,264 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:SingleFile ;[\n]" -2022-11-14 09:05:22,264 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "Labels Wikidata Uris"@en , "core-i18n/fr/labels_wkd_uris_fr.tql.bz2" ;[\n]" -2022-11-14 09:05:22,264 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" -2022-11-14 09:05:22,264 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:checksum ;[\n]" -2022-11-14 09:05:22,264 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:isDistributionOf ;[\n]" -2022-11-14 09:05:22,264 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" -2022-11-14 09:05:22,264 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:preview ;[\n]" -2022-11-14 09:05:22,264 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:uncompressedByteSize 336643942 ;[\n]" -2022-11-14 09:05:22,264 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo ;[\n]" -2022-11-14 09:05:22,264 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "Titles of all Wikipedia Articles in the corresponding language. In Wikidata, it contains all the languages availa" -2022-11-14 09:05:22,265 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "ble in the mappings wiki, labels_nmw contains the rest Normalized dataset matching Wikidata resources (sorted)."@en ;[\n]" -2022-11-14 09:05:22,265 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" -2022-11-14 09:05:22,265 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" -2022-11-14 09:05:22,265 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" -2022-11-14 09:05:22,265 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" -2022-11-14 09:05:22,265 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" -2022-11-14 09:05:22,265 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "Labels Wikidata Uris"@en ;[\n]" -2022-11-14 09:05:22,265 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:byteSize 37297385 ;[\n]" -2022-11-14 09:05:22,265 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:downloadURL ;[\n]" -2022-11-14 09:05:22,265 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:mediaType dataid-mt:MediaType_n-quads_x-bzip2 .[\n]" -2022-11-14 09:05:22,265 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,265 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,265 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:Dataset , dataid-ld:LinkedDataDataset ;[\n]" -2022-11-14 09:05:22,265 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "Instance Types Wikidata Uris"@en ;[\n]" -2022-11-14 09:05:22,265 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" -2022-11-14 09:05:22,265 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" -2022-11-14 09:05:22,265 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:previousVersion ;[\n]" -2022-11-14 09:05:22,265 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedDatasetRelation[\n]" -2022-11-14 09:05:22,265 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " ;[\n]" -2022-11-14 09:05:22,265 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:relatedDataset ;[\n]" -2022-11-14 09:05:22,265 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo , ;[\n]" -2022-11-14 09:05:22,265 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "Contains triples of the form $object rdf:type $class from the mapping-based extraction. Normalized dataset matching Wikidata resources (sorted)."@en ;[\n]" -2022-11-14 09:05:22,265 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" -2022-11-14 09:05:22,265 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:isPartOf ;[\n]" -2022-11-14 09:05:22,265 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" -2022-11-14 09:05:22,265 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:language ;[\n]" -2022-11-14 09:05:22,265 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" -2022-11-14 09:05:22,265 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" -2022-11-14 09:05:22,265 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" -2022-11-14 09:05:22,265 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "Instance Types Wikidata Uris"@en ;[\n]" -2022-11-14 09:05:22,265 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " void:rootResource ;[\n]" -2022-11-14 09:05:22,265 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " void:triples 849271 ;[\n]" -2022-11-14 09:05:22,265 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:distribution , ;[\n]" -2022-11-14 09:05:22,267 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:keyword "Instance Types Wikidata Uris"@en , "DBpedia"@en ;[\n]" -2022-11-14 09:05:22,267 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:landingPage ;[\n]" -2022-11-14 09:05:22,267 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " sd:defaultGraph ;[\n]" -2022-11-14 09:05:22,267 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " foaf:page .[\n]" -2022-11-14 09:05:22,267 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,267 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,267 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:SingleFile ;[\n]" -2022-11-14 09:05:22,267 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "Mappingbased Literals English Uris"@en , "core-i18n/fr/mappingbased_literals_en_uris_fr.ttl.bz2" ;[\n]" -2022-11-14 09:05:22,267 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" -2022-11-14 09:05:22,267 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:checksum ;[\n]" -2022-11-14 09:05:22,267 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:isDistributionOf ;[\n]" -2022-11-14 09:05:22,267 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" -2022-11-14 09:05:22,267 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:preview ;[\n]" -2022-11-14 09:05:22,268 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:uncompressedByteSize 275284621 ;[\n]" -2022-11-14 09:05:22,268 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo ;[\n]" -2022-11-14 09:05:22,268 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "High-quality data extracted from Infoboxes using the mapping-based extraction (Literal properties only). The predicates in this dataset are in the ontology namespace. Note that this data is of much higher quality than the Raw Infobox Properties in the 'property' namespace. Normalized dataset matching English DBpedia resources."@en ;[\n]" -2022-11-14 09:05:22,268 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" -2022-11-14 09:05:22,268 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" -2022-11-14 09:05:22,268 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" -2022-11-14 09:05:22,268 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" -2022-11-14 09:05:22,268 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" -2022-11-14 09:05:22,268 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "Mappingbased Literals English Uris"@en ;[\n]" -2022-11-14 09:05:22,268 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:byteSize 23510770 ;[\n]" -2022-11-14 09:05:22,268 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:downloadURL ;[\n]" -2022-11-14 09:05:22,268 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:mediaType dataid-mt:MediaType_turtle_x-bzip2 .[\n]" -2022-11-14 09:05:22,268 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,268 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,268 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:SingleFile ;[\n]" -2022-11-14 09:05:22,268 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "Mappingbased Literals Wikidata Uris"@en , "core-i18n/fr/mappingbased_literals_wkd_uris_fr.ttl.bz2" ;[\n]" -2022-11-14 09:05:22,268 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" -2022-11-14 09:05:22,268 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:checksum ;[\n]" -2022-11-14 09:05:22,268 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:isDistributionOf ;[\n]" -2022-11-14 09:05:22,268 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" -2022-11-14 09:05:22,268 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:preview ;[\n]" -2022-11-14 09:05:22,268 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:uncompressedByteSize 359039982 ;[\n]" -2022-11-14 09:05:22,268 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo ;[\n]" -2022-11-14 09:05:22,268 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "High-quality data extracted from Infoboxes using the mapping-based extraction (Literal properties only). The predicates in this dataset are in the ontology namespace. Note that this data is of much higher quality th" -2022-11-14 09:05:22,269 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "an the Raw Infobox Properties in the 'property' namespace. Normalized dataset matching Wikidata resources (sorted)."@en ;[\n]" -2022-11-14 09:05:22,269 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" -2022-11-14 09:05:22,269 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" -2022-11-14 09:05:22,269 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" -2022-11-14 09:05:22,269 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" -2022-11-14 09:05:22,269 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" -2022-11-14 09:05:22,269 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "Mappingbased Literals Wikidata Uris"@en ;[\n]" -2022-11-14 09:05:22,269 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:byteSize 26501268 ;[\n]" -2022-11-14 09:05:22,269 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:downloadURL ;[\n]" -2022-11-14 09:05:22,269 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:mediaType dataid-mt:MediaType_turtle_x-bzip2 .[\n]" -2022-11-14 09:05:22,269 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,269 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,269 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:Dataset , dataid-ld:LinkedDataDataset ;[\n]" -2022-11-14 09:05:22,269 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "Category Labels."@en ;[\n]" -2022-11-14 09:05:22,269 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" -2022-11-14 09:05:22,269 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" -2022-11-14 09:05:22,269 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:previousVersion ;[\n]" -2022-11-14 09:05:22,269 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualified" -2022-11-14 09:05:22,270 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "DatasetRelation[\n]" -2022-11-14 09:05:22,270 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " ;[\n]" -2022-11-14 09:05:22,270 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:relatedDataset ;[\n]" -2022-11-14 09:05:22,270 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo , ;[\n]" -2022-11-14 09:05:22,270 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "Labels for Categories."@en ;[\n]" -2022-11-14 09:05:22,270 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" -2022-11-14 09:05:22,270 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:isPartOf ;[\n]" -2022-11-14 09:05:22,270 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" -2022-11-14 09:05:22,270 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:language ;[\n]" -2022-11-14 09:05:22,270 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" -2022-11-14 09:05:22,270 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" -2022-11-14 09:05:22,270 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" -2022-11-14 09:05:22,270 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "Category Labels."@en ;[\n]" -2022-11-14 09:05:22,270 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " void:rootResource ;[\n]" -2022-11-14 09:05:22,270 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " void:triples 357366 ;[\n]" -2022-11-14 09:05:22,270 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:distribution , ;[\n]" -2022-11-14 09:05:22,270 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:keyword "Category Labels."@en , "DBpedia"@en ;[\n]" -2022-11-14 09:05:22,270 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:landingPage ;[\n]" -2022-11-14 09:05:22,270 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " sd:defaultGraph ;[\n]" -2022-11-14 09:05:22,270 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " foaf:page .[\n]" -2022-11-14 09:05:22,270 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,270 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,270 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:SingleFile ;[\n]" -2022-11-14 09:05:22,270 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "core-i18n/fr/mappingbased_literals_wkd_uris_fr.tql.bz2" , "Mappingbased Literals Wikidata Uris"@en ;[\n]" -2022-11-14 09:05:22,270 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" -2022-11-14 09:05:22,270 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:checksum ;[\n]" -2022-11-14 09:05:22,270 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:isDistributionOf ;[\n]" -2022-11-14 09:05:22,270 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" -2022-11-14 09:05:22,270 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:preview ;[\n]" -2022-11-14 09:05:22,270 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:uncompressedByteSize 912809097 ;[\n]" -2022-11-14 09:05:22,270 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo " -2022-11-14 09:05:22,273 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " ;[\n]" -2022-11-14 09:05:22,273 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "High-quality data extracted from Infoboxes using the mapping-based extraction (Literal properties only). The predicates in this dataset are in the ontology namespace. Note that this data is of much higher quality than the Raw Infobox Properties in the 'property' namespace. Normalized dataset matching Wikidata resources (sorted)."@en ;[\n]" -2022-11-14 09:05:22,273 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" -2022-11-14 09:05:22,273 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" -2022-11-14 09:05:22,273 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" -2022-11-14 09:05:22,273 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" -2022-11-14 09:05:22,273 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" -2022-11-14 09:05:22,273 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "Mappingbased Literals Wikidata Uris"@en ;[\n]" -2022-11-14 09:05:22,273 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:byteSize 59399048 ;[\n]" -2022-11-14 09:05:22,273 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:downloadURL ;[\n]" -2022-11-14 09:05:22,273 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:mediaType dataid-mt:MediaType_n-quads_x-bzip2 .[\n]" -2022-11-14 09:05:22,273 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,273 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,273 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:Dataset , dataid-ld:LinkedDataDataset ;[\n]" -2022-11-14 09:05:22,273 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "Images Wikidata Uris"@en ;[\n]" -2022-11-14 09:05:22,273 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " " -2022-11-14 09:05:22,274 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" -2022-11-14 09:05:22,274 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" -2022-11-14 09:05:22,274 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:previousVersion ;[\n]" -2022-11-14 09:05:22,274 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedDatasetRelation[\n]" -2022-11-14 09:05:22,274 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " ;[\n]" -2022-11-14 09:05:22,274 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:relatedDataset ;[\n]" -2022-11-14 09:05:22,274 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo , ;[\n]" -2022-11-14 09:05:22,274 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "Main image and corresponding thumbnail from Wikipedia article. Normalized dataset matching Wikidata resources (sorted)."@en ;[\n]" -2022-11-14 09:05:22,274 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" -2022-11-14 09:05:22,274 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:isPartOf ;[\n]" -2022-11-14 09:05:22,274 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" -2022-11-14 09:05:22,274 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:language ;[\n]" -2022-11-14 09:05:22,274 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" -2022-11-14 09:05:22,274 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" -2022-11-14 09:05:22,274 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" -2022-11-14 09:05:22,274 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title " -2022-11-14 09:05:22,275 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " "Images Wikidata Uris"@en ;[\n]" -2022-11-14 09:05:22,275 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " void:rootResource ;[\n]" -2022-11-14 09:05:22,275 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " void:triples 5371675 ;[\n]" -2022-11-14 09:05:22,275 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:distribution , ;[\n]" -2022-11-14 09:05:22,275 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:keyword "Images Wikidata Uris"@en , "DBpedia"@en ;[\n]" -2022-11-14 09:05:22,275 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:landingPage ;[\n]" -2022-11-14 09:05:22,275 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " sd:defaultGraph ;[\n]" -2022-11-14 09:05:22,275 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " foaf:page .[\n]" -2022-11-14 09:05:22,275 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,275 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,275 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:SingleFile ;[\n]" -2022-11-14 09:05:22,275 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "pnd Wikidata Uris"@en , "core-i18n/fr/pnd_wkd_uris_fr.ttl.bz2" ;[\n]" -2022-11-14 09:05:22,275 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" -2022-11-14 09:05:22,275 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:checksum ;[\n]" -2022-11-14 09:05:22,275 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:isDistributionOf ;[\n]" -2022-11-14 09:05:22,275 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" -2022-11-14 09:05:22,275 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:preview ;[\n]" -2022-11-14 09:05:22,275 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:uncompressedByteSize 37354 ;[\n]" -2022-11-14 09:05:22,275 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo ;[\n]" -2022-11-14 09:05:22,275 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "Undescribed Dataset Normalized dataset matching Wikidata resources (sorted)."@en ;[\n]" -2022-11-14 09:05:22,275 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" -2022-11-14 09:05:22,275 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" -2022-11-14 09:05:22,275 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" -2022-11-14 09:05:22,275 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" -2022-11-14 09:05:22,275 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" -2022-11-14 09:05:22,275 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "pnd Wikidata Uris"@en ;[\n]" -2022-11-14 09:05:22,275 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:byteSize 2838 ;[\n]" -2022-11-14 09:05:22,275 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:downloadURL ;[\n]" -2022-11-14 09:05:22,275 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:mediaType dataid-mt:MediaType_turtle_x-bzip2 .[\n]" -2022-11-14 09:05:22,275 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,275 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,275 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:SingleFile ;[\n]" -2022-11-14 09:05:22,275 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "core-i18n/fr/pnd_wkd_uris_fr.tql.bz2" , "pnd Wikidata Uris"@en ;[\n]" -2022-11-14 09:05:22,275 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:asso" -2022-11-14 09:05:22,277 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "ciatedAgent ;[\n]" -2022-11-14 09:05:22,277 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:checksum ;[\n]" -2022-11-14 09:05:22,277 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:isDistributionOf ;[\n]" -2022-11-14 09:05:22,277 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" -2022-11-14 09:05:22,277 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:preview ;[\n]" -2022-11-14 09:05:22,277 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:uncompressedByteSize 86953 ;[\n]" -2022-11-14 09:05:22,277 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo ;[\n]" -2022-11-14 09:05:22,277 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "Undescribed Dataset Normalized dataset matching Wikidata resources (sorted)."@en ;[\n]" -2022-11-14 09:05:22,277 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" -2022-11-14 09:05:22,277 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" -2022-11-14 09:05:22,277 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" -2022-11-14 09:05:22,277 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" -2022-11-14 09:05:22,277 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" -2022-11-14 09:05:22,277 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "pnd Wikidata Uris"@en ;[\n]" -2022-11-14 09:05:22,277 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:byteSize 8593 ;[\n]" -2022-11-14 09:05:22,277 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:downloadURL " -2022-11-14 09:05:22,277 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " ;[\n]" -2022-11-14 09:05:22,277 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:mediaType dataid-mt:MediaType_n-quads_x-bzip2 .[\n]" -2022-11-14 09:05:22,277 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,277 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,277 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid-ld:LinkedDataDataset , dataid:Dataset ;[\n]" -2022-11-14 09:05:22,277 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "pnd"@en ;[\n]" -2022-11-14 09:05:22,277 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" -2022-11-14 09:05:22,277 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" -2022-11-14 09:05:22,277 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:previousVersion ;[\n]" -2022-11-14 09:05:22,277 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedDatasetRelation[\n]" -2022-11-14 09:05:22,277 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " ;[\n]" -2022-11-14 09:05:22,277 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:relatedDataset ;[\n]" -2022-11-14 09:05:22,277 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo , ;[\n]" -2022-11-14 09:05:22,277 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "DBpedia dataset pnd, subset of "@en ;[\n]" -2022-11-14 09:05:22,277 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" -2022-11-14 09:05:22,277 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:isPartOf ;[\n]" -2022-11-14 09:05:22,277 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" -2022-11-14 09:05:22,277 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:language ;[\n]" -2022-11-14 09:05:22,277 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license " -2022-11-14 09:05:22,279 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " ;[\n]" -2022-11-14 09:05:22,279 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" -2022-11-14 09:05:22,279 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" -2022-11-14 09:05:22,279 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "pnd"@en ;[\n]" -2022-11-14 09:05:22,279 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " void:rootResource ;[\n]" -2022-11-14 09:05:22,279 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " void:triples 343 ;[\n]" -2022-11-14 09:05:22,279 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:distribution , ;[\n]" -2022-11-14 09:05:22,279 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:keyword "DBpedia"@en , "pnd"@en ;[\n]" -2022-11-14 09:05:22,279 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:landingPage ;[\n]" -2022-11-14 09:05:22,279 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " sd:defaultGraph ;[\n]" -2022-11-14 09:05:22,279 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " foaf:page .[\n]" -2022-11-14 09:05:22,279 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,279 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,279 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:SingleFile ;[\n]" -2022-11-14 09:05:22,279 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "Long Abstracts Wikidata Uris"@en , "core-i18n/fr/long_abstracts_wkd_uris_fr.tql.bz2" ;[\n]" -2022-11-14 09:05:22,279 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" -2022-11-14 09:05:22,279 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:checksum ;[\n]" -2022-11-14 09:05:22,279 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:isDistributionOf " -2022-11-14 09:05:22,280 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " ;[\n]" -2022-11-14 09:05:22,280 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" -2022-11-14 09:05:22,280 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:preview ;[\n]" -2022-11-14 09:05:22,280 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:uncompressedByteSize 936743634 ;[\n]" -2022-11-14 09:05:22,280 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo ;[\n]" -2022-11-14 09:05:22,280 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "Long abstracts (full abstracts) of Wikipedia articles, usually the first section. Normalized dataset matching Wikidata resources (sorted)."@en ;[\n]" -2022-11-14 09:05:22,280 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" -2022-11-14 09:05:22,280 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" -2022-11-14 09:05:22,280 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" -2022-11-14 09:05:22,280 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" -2022-11-14 09:05:22,280 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" -2022-11-14 09:05:22,280 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "Long Abstracts Wikidata Uris"@en ;[\n]" -2022-11-14 09:05:22,280 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:byteSize 211689983 ;[\n]" -2022-11-14 09:05:22,280 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:downloadURL ;[\n]" -2022-11-14 09:05:22,280 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:mediaType dataid-mt:MediaType_n-quads_x-bzip2 .[\n]" -2022-11-14 09:05:22,280 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,280 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,280 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid-ld:SparqlEndpoint ;[\n]" -2022-11-14 09:05:22,280 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "The official DBpedia sparql endpoint"@en ;[\n]" -2022-11-14 09:05:22,280 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:accessProcedure ;[\n]" -2022-11-14 09:05:22,280 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" -2022-11-14 09:05:22,280 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:isDistributionOf , , ;[\n]" -2022-11-14 09:05:22,280 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:underAuthorization ;[\n]" -2022-11-14 09:05:22,280 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo , ;[\n]" -2022-11-14 09:05:22,280 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "The official sparql endpoint of DBpedia, hosted graciously by OpenLink Software (http://virtuoso.openlinksw.com/), containing all datasets of the /core directory."@en ;[\n]" -2022-11-14 09:05:22,280 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" -2022-11-14 09:05:22,280 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued " -2022-11-14 09:05:22,281 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " "2017-07-01"^^xsd:date ;[\n]" -2022-11-14 09:05:22,281 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" -2022-11-14 09:05:22,281 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" -2022-11-14 09:05:22,281 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "The official DBpedia sparql endpoint"@en ;[\n]" -2022-11-14 09:05:22,281 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:accessURL ;[\n]" -2022-11-14 09:05:22,281 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:mediaType .[\n]" -2022-11-14 09:05:22,281 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,281 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,281 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:SingleFile ;[\n]" -2022-11-14 09:05:22,281 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "core-i18n/fr/page_links_fr.tql.bz2" , "Page Links"@en ;[\n]" -2022-11-14 09:05:22,281 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" -2022-11-14 09:05:22,281 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:checksum ;[\n]" -2022-11-14 09:05:22,281 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:isDistributionOf ;[\n]" -2022-11-14 09:05:22,281 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" -2022-11-14 09:05:22,281 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:preview ;[\n]" -2022-11-14 09:05:22,281 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:uncompressedByteSize 17666533212 ;[\n]" -2022-11-14 09:05:22,281 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo ;[\n]" -2022-11-14 09:05:22,281 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:" -2022-11-14 09:05:22,282 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "description "Dataset containing internal links between DBpedia instances. The dataset was created from the internal links between Wikipedia articles. The dataset might be useful for structural analysis, data mining or for ranking DBpedia instances using Page Rank or similar algorithms."@en ;[\n]" -2022-11-14 09:05:22,282 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" -2022-11-14 09:05:22,282 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" -2022-11-14 09:05:22,282 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" -2022-11-14 09:05:22,282 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" -2022-11-14 09:05:22,282 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" -2022-11-14 09:05:22,282 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "Page Links"@en ;[\n]" -2022-11-14 09:05:22,282 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:byteSize 810860093 ;[\n]" -2022-11-14 09:05:22,282 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:downloadURL ;[\n]" -2022-11-14 09:05:22,282 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:mediaType dataid-mt:MediaType_n-quads_x-bzip2 .[\n]" -2022-11-14 09:05:22,282 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,282 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,282 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:SingleFile ;[\n]" -2022-11-14 09:05:22,282 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "French Population Wikidata Uris"@en , "core-i18n/fr/french_population_wkd_uris_fr.ttl.bz2" ;[\n]" -2022-11-14 09:05:22,282 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" -2022-11-14 09:05:22,283 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:checksum ;[\n]" -2022-11-14 09:05:22,283 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:isDistributionOf ;[\n]" -2022-11-14 09:05:22,283 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" -2022-11-14 09:05:22,283 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:preview ;[\n]" -2022-11-14 09:05:22,283 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:uncompressedByteSize 6482954 ;[\n]" -2022-11-14 09:05:22,283 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo ;[\n]" -2022-11-14 09:05:22,283 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "French dataset about population. Normalized dataset matching Wikidata resources (sorted)."@en ;[\n]" -2022-11-14 09:05:22,283 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" -2022-11-14 09:05:22,283 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" -2022-11-14 09:05:22,283 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" -2022-11-14 09:05:22,283 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" -2022-11-14 09:05:22,283 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" -2022-11-14 09:05:22,283 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "French Population Wikidata Uris"@en ;" -2022-11-14 09:05:22,284 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,284 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:byteSize 196617 ;[\n]" -2022-11-14 09:05:22,284 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:downloadURL ;[\n]" -2022-11-14 09:05:22,284 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:mediaType dataid-mt:MediaType_turtle_x-bzip2 .[\n]" -2022-11-14 09:05:22,284 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,284 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,284 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:SingleFile ;[\n]" -2022-11-14 09:05:22,284 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "core-i18n/fr/external_links_en_uris_fr.ttl.bz2" , "External Links English Uris"@en ;[\n]" -2022-11-14 09:05:22,284 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" -2022-11-14 09:05:22,284 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:checksum ;[\n]" -2022-11-14 09:05:22,284 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:isDistributionOf ;[\n]" -2022-11-14 09:05:22,284 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" -2022-11-14 09:05:22,284 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:preview ;[\n]" -2022-11-14 09:05:22,284 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:uncompressedByteSize 198344589 ;[\n]" -2022-11-14 09:05:22,284 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo ;[\n]" -2022-11-14 09:05:22,284 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "Links to external web pages about a concept. Normalized dataset matching English DBpedia resources."@en ;[\n]" -2022-11-14 09:05:22,284 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" -2022-11-14 09:05:22,284 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" -2022-11-14 09:05:22,284 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" -2022-11-14 09:05:22,284 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" -2022-11-14 09:05:22,284 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" -2022-11-14 09:05:22,284 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "External Links English Uris"@en ;[\n]" -2022-11-14 09:05:22,284 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:byteSize 26416808 ;[\n]" -2022-11-14 09:05:22,284 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:downloadURL ;[\n]" -2022-11-14 09:05:22,284 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:mediaType dataid-mt:MediaType_turtle_x-bzip2 .[\n]" -2022-11-14 09:05:22,284 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,284 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,284 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:SingleFile ;[\n]" -2022-11-14 09:05:22,284 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "Geo Coordinates"@en , "core-i18n/fr/geo_coordinates_fr.ttl.bz2" ;[\n]" -2022-11-14 09:05:22,284 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" -2022-11-14 09:05:22,284 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:checksum ;[\n]" -2022-11-14 09:05:22,284 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:isDistributionOf ;[\n]" -2022-11-14 09:05:22,284 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" -2022-11-14 09:05:22,285 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:preview ;[\n]" -2022-11-14 09:05:22,285 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:uncompressedByteSize 22414269 ;[\n]" -2022-11-14 09:05:22,285 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo ;[\n]" -2022-11-14 09:05:22,285 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "Geographic coordinates extracted from Wikipedia."@en ;[\n]" -2022-11-14 09:05:22,285 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" -2022-11-14 09:05:22,285 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" -2022-11-14 09:05:22,285 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" -2022-11-14 09:05:22,285 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" -2022-11-14 09:05:22,285 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" -2022-11-14 09:05:22,285 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "Geo Coordinates"@en ;[\n]" -2022-11-14 09:05:22,285 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:byteSize 1191980 ;[\n]" -2022-11-14 09:05:22,285 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:downloadURL ;[\n]" -2022-11-14 09:05:22,285 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:mediaType dataid-mt:MediaType_turtle_x-bzip2 .[\n]" -2022-11-14 09:05:22,285 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,285 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,285 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " " -2022-11-14 09:05:22,285 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:SingleFile ;[\n]" -2022-11-14 09:05:22,285 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "core-i18n/fr/french_population_wkd_uris_fr.tql.bz2" , "French Population Wikidata Uris"@en ;[\n]" -2022-11-14 09:05:22,285 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" -2022-11-14 09:05:22,285 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:checksum ;[\n]" -2022-11-14 09:05:22,285 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:isDistributionOf ;[\n]" -2022-11-14 09:05:22,285 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" -2022-11-14 09:05:22,285 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:preview ;[\n]" -2022-11-14 09:05:22,285 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:uncompressedByteSize 11395186 ;[\n]" -2022-11-14 09:05:22,285 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo ;[\n]" -2022-11-14 09:05:22,285 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "French dataset about population. Normalized dataset matching Wikidata resources (sorted)."@en ;[\n]" -2022-11-14 09:05:22,285 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" -2022-11-14 09:05:22,285 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" -2022-11-14 09:05:22,285 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" -2022-11-14 09:05:22,287 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" -2022-11-14 09:05:22,287 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" -2022-11-14 09:05:22,287 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "French Population Wikidata Uris"@en ;[\n]" -2022-11-14 09:05:22,287 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:byteSize 575234 ;[\n]" -2022-11-14 09:05:22,287 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:downloadURL ;[\n]" -2022-11-14 09:05:22,287 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:mediaType dataid-mt:MediaType_n-quads_x-bzip2 .[\n]" -2022-11-14 09:05:22,287 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,287 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,287 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:Dataset , dataid-ld:LinkedDataDataset ;[\n]" -2022-11-14 09:05:22,287 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "Images"@en ;[\n]" -2022-11-14 09:05:22,287 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" -2022-11-14 09:05:22,287 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" -2022-11-14 09:05:22,287 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:previousVersion ;[\n]" -2022-11-14 09:05:22,287 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedDatasetRelation[\n]" -2022-11-14 09:05:22,287 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " ;[\n]" -2022-11-14 09:05:22,287 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:relatedDataset ;[\n]" -2022-11-14 09:05:22,287 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo , ;[\n]" -2022-11-14 09:05:22,287 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "Main image and corresponding thumbnail from Wikipedia article" -2022-11-14 09:05:22,288 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "."@en ;[\n]" -2022-11-14 09:05:22,288 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" -2022-11-14 09:05:22,288 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:isPartOf ;[\n]" -2022-11-14 09:05:22,288 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" -2022-11-14 09:05:22,288 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:language ;[\n]" -2022-11-14 09:05:22,288 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" -2022-11-14 09:05:22,288 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" -2022-11-14 09:05:22,288 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" -2022-11-14 09:05:22,288 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "Images"@en ;[\n]" -2022-11-14 09:05:22,288 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " void:rootResource ;[\n]" -2022-11-14 09:05:22,288 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " void:triples 5375167 ;[\n]" -2022-11-14 09:05:22,288 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:distribution , ;[\n]" -2022-11-14 09:05:22,288 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:keyword "DBpedia"@en , "Images"@en ;[\n]" -2022-11-14 09:05:22,288 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:landingPage ;[\n]" -2022-11-14 09:05:22,288 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " sd:defaultGraph ;[\n]" -2022-11-14 09:05:22,288 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " foaf:page .[\n]" -2022-11-14 09:05:22,288 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,288 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,288 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid-ld:LinkedDataDataset , dataid:Dataset ;[\n]" -2022-11-14 09:05:22,288 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "Instance Types"@en ;[\n]" -2022-11-14 09:05:22,288 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" -2022-11-14 09:05:22,288 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" -2022-11-14 09:05:22,288 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:previousVersion ;[\n]" -2022-11-14 09:05:22,288 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedDatasetRelation[\n]" -2022-11-14 09:05:22,288 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " ;[\n]" -2022-11-14 09:05:22,288 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:relatedDataset ;[\n]" -2022-11-14 09:05:22,288 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo , ;[\n]" -2022-11-14 09:05:22,288 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "Contains triples of the form $object rdf:type $class from the mapping-based extraction."@en ;[\n]" -2022-11-14 09:05:22,288 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" -2022-11-14 09:05:22,288 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:isPartOf ;[\n]" -2022-11-14 09:05:22,288 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" -2022-11-14 09:05:22,288 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:language ;[\n]" -2022-11-14 09:05:22,288 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" -2022-11-14 09:05:22,288 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" -2022-11-14 09:05:22,288 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" -2022-11-14 09:05:22,288 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "" -2022-11-14 09:05:22,289 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "Instance Types"@en ;[\n]" -2022-11-14 09:05:22,289 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " void:rootResource ;[\n]" -2022-11-14 09:05:22,289 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " void:triples 1782360 ;[\n]" -2022-11-14 09:05:22,289 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:distribution , ;[\n]" -2022-11-14 09:05:22,289 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:keyword "DBpedia"@en , "Instance Types"@en ;[\n]" -2022-11-14 09:05:22,289 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:landingPage ;[\n]" -2022-11-14 09:05:22,289 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " sd:defaultGraph ;[\n]" -2022-11-14 09:05:22,289 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " foaf:page .[\n]" -2022-11-14 09:05:22,289 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,289 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,289 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:SingleFile ;[\n]" -2022-11-14 09:05:22,289 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "core-i18n/fr/interlanguage_links_chapters_fr.ttl.bz2" , "Interlanguage Links between DBpedia Chapters"@en ;[\n]" -2022-11-14 09:05:22,289 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" -2022-11-14 09:05:22,289 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:checksum ;[\n]" -2022-11-14 09:05:22,289 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:isDistributionOf ;[\n]" -2022-11-14 09:05:22,289 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion " -2022-11-14 09:05:22,290 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " ;[\n]" -2022-11-14 09:05:22,290 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:preview ;[\n]" -2022-11-14 09:05:22,290 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:uncompressedByteSize 1596426766 ;[\n]" -2022-11-14 09:05:22,290 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo ;[\n]" -2022-11-14 09:05:22,290 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "Chapter specific interlanguage links only contains the interlanguage links between those languages for which a DBpedia mapping chapter exists and provides dereferencable URIs. (a subset of interlanguage links)"@en ;[\n]" -2022-11-14 09:05:22,290 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" -2022-11-14 09:05:22,290 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" -2022-11-14 09:05:22,290 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" -2022-11-14 09:05:22,290 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" -2022-11-14 09:05:22,290 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" -2022-11-14 09:05:22,290 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "Interlanguage Links between DBpedia Chapters"@en ;[\n]" -2022-11-14 09:05:22,290 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:byteSize 91288622 ;[\n]" -2022-11-14 09:05:22,290 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:downloadURL ;[\n]" -2022-11-14 09:05:22,290 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:mediaType dataid-mt:MediaType_turtle_x-bzip2 .[\n]" -2022-11-14 09:05:22,290 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,290 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,290 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:SingleFile ;[\n]" -2022-11-14 09:05:22,290 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "Labels English Uris"@en , "core-i18n/fr/labels_en_uris_fr.ttl.bz2" ;[\n]" -2022-11-14 09:05:22,290 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" -2022-11-14 09:05:22,290 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:checksum ;[\n]" -2022-11-14 09:05:22,290 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:isDistributionOf ;[\n]" -2022-11-14 09:05:22,290 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" -2022-11-14 09:05:22,290 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:preview ;[\n]" -2022-11-14 09:05:22,290 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:uncompressedByteSize 138922582 ;[\n]" -2022-11-14 09:05:22,290 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo ;[\n]" -2022-11-14 09:05:22,290 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "Titles of all Wikipedia Articles in the corresponding language. In Wikidata, it contains all the languages available in the mappings wiki, labels_nmw contains the rest Normalized dataset matching English DBpedia resources."@en ;[\n]" -2022-11-14 09:05:22,290 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" -2022-11-14 09:05:22,292 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" -2022-11-14 09:05:22,292 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" -2022-11-14 09:05:22,292 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" -2022-11-14 09:05:22,292 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" -2022-11-14 09:05:22,292 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "Labels English Uris"@en ;[\n]" -2022-11-14 09:05:22,292 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:byteSize 16831634 ;[\n]" -2022-11-14 09:05:22,292 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:downloadURL ;[\n]" -2022-11-14 09:05:22,292 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:mediaType dataid-mt:MediaType_turtle_x-bzip2 .[\n]" -2022-11-14 09:05:22,292 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,292 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,292 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:SingleFile ;[\n]" -2022-11-14 09:05:22,292 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "Interlanguage Links between DBpedia Chapters"@en , "core-i18n/fr/interlanguage_links_chapters_fr.tql.bz2" ;[\n]" -2022-11-14 09:05:22,292 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" -2022-11-14 09:05:22,292 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:checksum ;[\n]" -2022-11-14 09:05:22,292 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:isDistributionOf ;[\n]" -2022-11-14 09:05:22,292 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion" -2022-11-14 09:05:22,292 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " ;[\n]" -2022-11-14 09:05:22,292 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:preview ;[\n]" -2022-11-14 09:05:22,292 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:uncompressedByteSize 2206444627 ;[\n]" -2022-11-14 09:05:22,292 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo ;[\n]" -2022-11-14 09:05:22,292 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "Chapter specific interlanguage links only contains the interlanguage links between those languages for which a DBpedia mapping chapter exists and provides dereferencable URIs. (a subset of interlanguage links)"@en ;[\n]" -2022-11-14 09:05:22,292 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" -2022-11-14 09:05:22,292 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" -2022-11-14 09:05:22,292 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" -2022-11-14 09:05:22,292 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" -2022-11-14 09:05:22,292 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" -2022-11-14 09:05:22,292 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "Interlanguage Links between DBpedia Chapters"@en ;[\n]" -2022-11-14 09:05:22,292 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:byteSize 121672332 ;[\n]" -2022-11-14 09:05:22,292 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:downloadURL ;[\n]" -2022-11-14 09:05:22,292 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:mediaType dataid-mt:MediaType_n-quads_x-bzip2 .[\n]" -2022-11-14 09:05:22,292 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,292 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,292 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:SingleFile ;[\n]" -2022-11-14 09:05:22,292 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "Specific Mappingbased Properties"@en , "core-i18n/fr/specific_mappingbased_properties_fr.ttl.bz2" ;[\n]" -2022-11-14 09:05:22,292 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" -2022-11-14 09:05:22,292 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:checksum ;[\n]" -2022-11-14 09:05:22,292 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:isDistributionOf ;[\n]" -2022-11-14 09:05:22,292 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" -2022-11-14 09:05:22,292 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:preview ;[\n]" -2022-11-14 09:05:22,292 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:uncompressedByteSize 9106104 ;[\n]" -2022-11-14 09:05:22,292 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo ;[\n]" -2022-11-14 09:05:22,292 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "Infobox data from the mapping-based extraction, using units of measurement more convenient for the resource type, e.g. square" -2022-11-14 09:05:22,294 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " kilometres instead of square metres for the area of a city."@en ;[\n]" -2022-11-14 09:05:22,294 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" -2022-11-14 09:05:22,294 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" -2022-11-14 09:05:22,294 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" -2022-11-14 09:05:22,294 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" -2022-11-14 09:05:22,294 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" -2022-11-14 09:05:22,294 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "Specific Mappingbased Properties"@en ;[\n]" -2022-11-14 09:05:22,294 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:byteSize 588550 ;[\n]" -2022-11-14 09:05:22,294 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:downloadURL ;[\n]" -2022-11-14 09:05:22,294 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:mediaType dataid-mt:MediaType_turtle_x-bzip2 .[\n]" -2022-11-14 09:05:22,294 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,294 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,294 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:SingleFile ;[\n]" -2022-11-14 09:05:22,294 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "core-i18n/fr/skos_categories_wkd_uris_fr.tql.bz2" , "SKOS Categories Wikidata Uris"@en ;[\n]" -2022-11-14 09:05:22,294 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" -2022-11-14 09:05:22,294 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:checksum ;[\n]" -2022-11-14 09:05:22,294 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:isDistributionOf ;[\n]" -2022-11-14 09:05:22,294 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" -2022-11-14 09:05:22,294 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:preview ;[\n]" -2022-11-14 09:05:22,294 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:uncompressedByteSize 261002625 ;[\n]" -2022-11-14 09:05:22,294 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo ;[\n]" -2022-11-14 09:05:22,294 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "Information which concept is a category and how categories are related using the SKOS Vocabulary. Normalized dataset matching Wikidata resources (sorted)."@en ;[\n]" -2022-11-14 09:05:22,294 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" -2022-11-14 09:05:22,294 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" -2022-11-14 09:05:22,294 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" -2022-11-14 09:05:22,294 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" -2022-11-14 09:05:22,294 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" -2022-11-14 09:05:22,294 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "SKOS Categories Wikidata Uris"@en ;[\n]" -2022-11-14 09:05:22,294 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:byteSize 12511043 ;[\n]" -2022-11-14 09:05:22,294 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:downloadURL ;[\n]" -2022-11-14 09:05:22,295 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:mediaType dataid-mt:MediaType_n-quads_x-bzip2 .[\n]" -2022-11-14 09:05:22,295 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,295 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,295 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:SingleFile ;[\n]" -2022-11-14 09:05:22,295 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "Images Wikidata Uris"@en , "core-i18n/fr/images_wkd_uris_fr.tql.bz2" ;[\n]" -2022-11-14 09:05:22,295 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" -2022-11-14 09:05:22,295 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:checksum ;[\n]" -2022-11-14 09:05:22,295 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:isDistributionOf ;[\n]" -2022-11-14 09:05:22,295 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" -2022-11-14 09:05:22,295 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:preview ;[\n]" -2022-11-14 09:05:22,295 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:uncompressedByteSize 1472388570 ;[\n]" -2022-11-14 09:05:22,295 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo ;[\n]" -2022-11-14 09:05:22,295 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "Main image and corresponding thumbnail from Wikipedia article. Normalized dataset matching Wikidata resources (sorted)."@en ;[\n]" -2022-11-14 09:05:22,295 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" -2022-11-14 09:05:22,295 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" -2022-11-14 09:05:22,295 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" -2022-11-14 09:05:22,295 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" -2022-11-14 09:05:22,295 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" -2022-11-14 09:05:22,295 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "Images Wikidata Uris"@en ;[\n]" -2022-11-14 09:05:22,295 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:byteSize 73862937 ;[\n]" -2022-11-14 09:05:22,295 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:downloadURL ;[\n]" -2022-11-14 09:05:22,295 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:mediaType dataid-mt:MediaType_n-quads_x-bzip2 .[\n]" -2022-11-14 09:05:22,295 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,295 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,295 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:SingleFile ;[\n]" -2022-11-14 09:05:22,295 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "core-i18n/fr/topical_concepts_wkd_uris_fr.tql.bz2" , "Topical Concepts Wikidata Uris"@en ;[\n]" -2022-11-14 09:05:22,295 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" -2022-11-14 09:05:22,295 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:checksum ;[\n]" -2022-11-14 09:05:22,295 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:isDistributionOf ;[\n]" -2022-11-14 09:05:22,295 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" -2022-11-14 09:05:22,295 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:preview ;[\n]" -2022-11-14 09:05:22,295 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:uncompressedByteSize 22487769 ;[\n]" -2022-11-14 09:05:22,295 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo ;[\n]" -2022-11-14 09:05:22,295 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "Resources that describe a category Normalized dataset matching Wikidata resources (sorted)."@en ;[\n]" -2022-11-14 09:05:22,295 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" -2022-11-14 09:05:22,295 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" -2022-11-14 09:05:22,295 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" -2022-11-14 09:05:22,295 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" -2022-11-14 09:05:22,295 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" -2022-11-14 09:05:22,295 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "Topical Concepts Wikidata Uris"@en ;[\n]" -2022-11-14 09:05:22,295 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:byteSize 1558665 ;[\n]" -2022-11-14 09:05:22,295 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:downloadURL ;[\n]" -2022-11-14 09:05:22,295 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:mediaType dataid-mt:MediaType_n-quads_x-bzip2 .[\n]" -2022-11-14 09:05:22,295 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,295 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,295 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a " -2022-11-14 09:05:22,297 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:SingleFile ;[\n]" -2022-11-14 09:05:22,297 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "core-i18n/fr/infobox_property_definitions_wkd_uris_fr.ttl.bz2" , "Infobox Property Definitions Wikidata Uris"@en ;[\n]" -2022-11-14 09:05:22,297 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" -2022-11-14 09:05:22,297 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:checksum ;[\n]" -2022-11-14 09:05:22,297 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:isDistributionOf ;[\n]" -2022-11-14 09:05:22,297 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" -2022-11-14 09:05:22,297 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:preview ;[\n]" -2022-11-14 09:05:22,297 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:uncompressedByteSize 5836873 ;[\n]" -2022-11-14 09:05:22,297 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo ;[\n]" -2022-11-14 09:05:22,297 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "All properties predicates used in infoboxes. Normalized dataset matching Wikidata resources (sorted)."@en ;[\n]" -2022-11-14 09:05:22,297 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" -2022-11-14 09:05:22,297 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd" -2022-11-14 09:05:22,297 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << ":date ;[\n]" -2022-11-14 09:05:22,297 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" -2022-11-14 09:05:22,297 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" -2022-11-14 09:05:22,297 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" -2022-11-14 09:05:22,297 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "Infobox Property Definitions Wikidata Uris"@en ;[\n]" -2022-11-14 09:05:22,297 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:byteSize 235431 ;[\n]" -2022-11-14 09:05:22,297 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:downloadURL ;[\n]" -2022-11-14 09:05:22,297 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:mediaType dataid-mt:MediaType_turtle_x-bzip2 .[\n]" -2022-11-14 09:05:22,297 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,297 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,297 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:SingleFile ;[\n]" -2022-11-14 09:05:22,297 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "core-i18n/fr/mappingbased_objects_uncleaned_fr.ttl.bz2" , "mappingbased objects uncleaned"@en ;[\n]" -2022-11-14 09:05:22,297 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" -2022-11-14 09:05:22,297 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:checksum ;[\n]" -2022-11-14 09:05:22,297 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:isDistributionOf ;[\n]" -2022-11-14 09:05:22,297 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" -2022-11-14 09:05:22,299 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:preview ;[\n]" -2022-11-14 09:05:22,299 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:uncompressedByteSize 739640069 ;[\n]" -2022-11-14 09:05:22,299 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo ;[\n]" -2022-11-14 09:05:22,299 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "DBpedia dataset mappingbased_objects_uncleaned, subset of "@en ;[\n]" -2022-11-14 09:05:22,299 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" -2022-11-14 09:05:22,299 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" -2022-11-14 09:05:22,299 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" -2022-11-14 09:05:22,299 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" -2022-11-14 09:05:22,299 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" -2022-11-14 09:05:22,299 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "mappingbased objects uncleaned"@en ;[\n]" -2022-11-14 09:05:22,299 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:byteSize 44212451 ;[\n]" -2022-11-14 09:05:22,299 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:downloadURL ;[\n]" -2022-11-14 09:05:22,299 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:mediaType dataid-mt:MediaType_turtle_x-bzip2 .[\n]" -2022-11-14 09:05:22,299 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,299 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,299 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:SingleFile ;[\n]" -2022-11-14 09:05:22,299 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "Rransitive Redirects"@en , "core-i18n/fr/transitive_redirects_fr.ttl.bz2" ;[\n]" -2022-11-14 09:05:22,299 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" -2022-11-14 09:05:22,299 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:checksum ;[\n]" -2022-11-14 09:05:22,299 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:isDistributionOf ;[\n]" -2022-11-14 09:05:22,299 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" -2022-11-14 09:05:22,299 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:preview ;[\n]" -2022-11-14 09:05:22,299 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:uncompressedByteSize 233585388 ;[\n]" -2022-11-14 09:05:22,299 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo ;[\n]" -2022-11-14 09:05:22,299 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "Dataset containing transitively resolved redirects between articles in Wikipedia."@en ;[\n]" -2022-11-14 09:05:22,299 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" -2022-11-14 09:05:22,299 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" -2022-11-14 09:05:22,299 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" -2022-11-14 09:05:22,299 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" -2022-11-14 09:05:22,299 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" -2022-11-14 09:05:22,300 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "Rransitive Redirects"@en ;[\n]" -2022-11-14 09:05:22,300 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:byteSize 20901591 ;[\n]" -2022-11-14 09:05:22,300 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:downloadURL ;[\n]" -2022-11-14 09:05:22,300 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:mediaType dataid-mt:MediaType_turtle_x-bzip2 .[\n]" -2022-11-14 09:05:22,300 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,300 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,300 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:SingleFile ;[\n]" -2022-11-14 09:05:22,300 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "mappingbased objects uncleaned"@en , "core-i18n/fr/mappingbased_objects_uncleaned_fr.tql.bz2" ;[\n]" -2022-11-14 09:05:22,300 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" -2022-11-14 09:05:22,300 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:checksum ;[\n]" -2022-11-14 09:05:22,300 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:isDistributionOf ;[\n]" -2022-11-14 09:05:22,300 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" -2022-11-14 09:05:22,300 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:preview ;[\n]" -2022-11-14 09:05:22,300 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " " -2022-11-14 09:05:22,301 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:uncompressedByteSize 1610957366 ;[\n]" -2022-11-14 09:05:22,301 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo ;[\n]" -2022-11-14 09:05:22,301 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "DBpedia dataset mappingbased_objects_uncleaned, subset of "@en ;[\n]" -2022-11-14 09:05:22,301 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" -2022-11-14 09:05:22,301 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" -2022-11-14 09:05:22,301 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" -2022-11-14 09:05:22,301 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" -2022-11-14 09:05:22,301 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" -2022-11-14 09:05:22,301 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "mappingbased objects uncleaned"@en ;[\n]" -2022-11-14 09:05:22,301 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:byteSize 85124435 ;[\n]" -2022-11-14 09:05:22,301 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:downloadURL ;[\n]" -2022-11-14 09:05:22,301 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:mediaType dataid-mt:MediaType_n-quads_x-bzip2 .[\n]" -2022-11-14 09:05:22,301 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,301 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,301 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:SingleFile ;[\n]" -2022-11-14 09:05:22,301 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "Revision Ids"@en , "core-i18n/fr/revision_ids_fr.ttl.bz2" ;[\n]" -2022-11-14 09:05:22,301 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" -2022-11-14 09:05:22,301 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:checksum ;[\n]" -2022-11-14 09:05:22,301 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:isDistributionOf ;[\n]" -2022-11-14 09:05:22,301 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" -2022-11-14 09:05:22,301 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:preview ;[\n]" -2022-11-14 09:05:22,301 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:uncompressedByteSize 626872699 ;[\n]" -2022-11-14 09:05:22,301 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo ;[\n]" -2022-11-14 09:05:22,301 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "Dataset linking a DBpedia resource to the revision ID of the Wikipedia article the data was extracted from."@en ;[\n]" -2022-11-14 09:05:22,301 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" -2022-11-14 09:05:22,301 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" -2022-11-14 09:05:22,301 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" -2022-11-14 09:05:22,301 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" -2022-11-14 09:05:22,301 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" -2022-11-14 09:05:22,301 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "Revision Ids"@en ;[\n]" -2022-11-14 09:05:22,301 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:byteSize 45335466 ;[\n]" -2022-11-14 09:05:22,301 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:downloadURL ;[\n]" -2022-11-14 09:05:22,301 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:mediaType dataid-mt:MediaType_turtle_x-bzip2 .[\n]" -2022-11-14 09:05:22,301 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,301 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,301 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:SingleFile ;[\n]" -2022-11-14 09:05:22,301 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "Category Labels."@en , "core-i18n/fr/category_labels_fr.ttl.bz2" ;[\n]" -2022-11-14 09:05:22,301 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" -2022-11-14 09:05:22,301 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:checksum ;[\n]" -2022-11-14 09:05:22,301 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:isDistributionOf ;[\n]" -2022-11-14 09:05:22,301 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" -2022-11-14 09:05:22,301 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:preview ;[\n]" -2022-11-14 09:05:22,301 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:uncompressedByteSize 53979198 ;[\n]" -2022-11-14 09:05:22,301 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo ;[\n]" -2022-11-14 09:05:22,301 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "Labels for Categories."@en ;[\n]" -2022-11-14 09:05:22,301 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" -2022-11-14 09:05:22,301 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" -2022-11-14 09:05:22,301 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" -2022-11-14 09:05:22,302 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" -2022-11-14 09:05:22,302 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" -2022-11-14 09:05:22,302 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "Category Labels."@en ;[\n]" -2022-11-14 09:05:22,302 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:byteSize 3973817 ;[\n]" -2022-11-14 09:05:22,302 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:downloadURL ;[\n]" -2022-11-14 09:05:22,302 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:mediaType dataid-mt:MediaType_turtle_x-bzip2 .[\n]" -2022-11-14 09:05:22,302 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,302 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,302 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:SingleFile ;[\n]" -2022-11-14 09:05:22,302 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "core-i18n/fr/article_templates_fr.ttl.bz2" , "Article Templates"@en ;[\n]" -2022-11-14 09:05:22,302 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" -2022-11-14 09:05:22,302 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:checksum ;[\n]" -2022-11-14 09:05:22,302 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:isDistributionOf ;[\n]" -2022-11-14 09:05:22,302 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" -2022-11-14 09:05:22,302 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:preview ;[\n]" -2022-11-14 09:05:22,302 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:uncompress" -2022-11-14 09:05:22,304 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "edByteSize 2472731647 ;[\n]" -2022-11-14 09:05:22,304 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo ;[\n]" -2022-11-14 09:05:22,304 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "Templates used in an article (top-level)."@en ;[\n]" -2022-11-14 09:05:22,304 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" -2022-11-14 09:05:22,304 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" -2022-11-14 09:05:22,304 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" -2022-11-14 09:05:22,304 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" -2022-11-14 09:05:22,304 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" -2022-11-14 09:05:22,304 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "Article Templates"@en ;[\n]" -2022-11-14 09:05:22,304 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:byteSize 80883207 ;[\n]" -2022-11-14 09:05:22,304 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:downloadURL ;[\n]" -2022-11-14 09:05:22,304 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:mediaType dataid-mt:MediaType_turtle_x-bzip2 .[\n]" -2022-11-14 09:05:22,304 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,304 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,304 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:SingleFile ;[\n]" -2022-11-14 09:05:22,304 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "Instance Types Wikidata Uris"@en , "core-i18n/fr/instance_types_wkd_uris_fr.ttl.bz2" ;[\n]" -2022-11-14 09:05:22,304 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" -2022-11-14 09:05:22,304 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:checksum ;[\n]" -2022-11-14 09:05:22,304 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:isDistributionOf ;[\n]" -2022-11-14 09:05:22,304 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" -2022-11-14 09:05:22,304 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:preview ;[\n]" -2022-11-14 09:05:22,304 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:uncompressedByteSize 118435740 ;[\n]" -2022-11-14 09:05:22,304 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo ;[\n]" -2022-11-14 09:05:22,304 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "Contains triples of the form $object rdf:type $class from the mapping-based extraction. Normalized dataset matching Wikidata resources (sorted)."@en ;[\n]" -2022-11-14 09:05:22,304 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" -2022-11-14 09:05:22,304 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" -2022-11-14 09:05:22,304 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" -2022-11-14 09:05:22,304 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" -2022-11-14 09:05:22,304 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" -2022-11-14 09:05:22,304 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "Instance Types Wikidata Uris"@en ;[\n]" -2022-11-14 09:05:22,304 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:byteSize 2936138 ;[\n]" -2022-11-14 09:05:22,304 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:downloadURL " -2022-11-14 09:05:22,305 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " ;[\n]" -2022-11-14 09:05:22,305 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:mediaType dataid-mt:MediaType_turtle_x-bzip2 .[\n]" -2022-11-14 09:05:22,305 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,305 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,305 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:SingleFile ;[\n]" -2022-11-14 09:05:22,305 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "core-i18n/fr/redirects_fr.ttl.bz2" , "Redirects"@en ;[\n]" -2022-11-14 09:05:22,305 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" -2022-11-14 09:05:22,305 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:checksum ;[\n]" -2022-11-14 09:05:22,305 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:isDistributionOf ;[\n]" -2022-11-14 09:05:22,305 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" -2022-11-14 09:05:22,305 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:preview ;[\n]" -2022-11-14 09:05:22,305 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:uncompressedByteSize 234341588 ;[\n]" -2022-11-14 09:05:22,305 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo ;[\n]" -2022-11-14 09:05:22,305 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "Dataset containing redirects between articles in Wikipedia."@en ;[\n]" -2022-11-14 09:05:22,305 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" -2022-11-14 09:05:22,305 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" -2022-11-14 09:05:22,305 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" -2022-11-14 09:05:22,305 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" -2022-11-14 09:05:22,305 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" -2022-11-14 09:05:22,305 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "Redirects"@en ;[\n]" -2022-11-14 09:05:22,305 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:byteSize 20978399 ;[\n]" -2022-11-14 09:05:22,305 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:downloadURL ;[\n]" -2022-11-14 09:05:22,305 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:mediaType dataid-mt:MediaType_turtle_x-bzip2 .[\n]" -2022-11-14 09:05:22,305 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,305 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,305 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:SingleFile ;[\n]" -2022-11-14 09:05:22,305 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "core-i18n/fr/article_templates_fr.tql.bz2" , "Article Templates"@en ;[\n]" -2022-11-14 09:05:22,305 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" -2022-11-14 09:05:22,305 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:checksum ;[\n]" -2022-11-14 09:05:22,305 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:isDistributionOf ;[\n]" -2022-11-14 09:05:22,305 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" -2022-11-14 09:05:22,305 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:preview ;[\n]" -2022-11-14 09:05:22,305 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:uncompressedByteSize 4181448865 ;[\n]" -2022-11-14 09:05:22,305 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo ;[\n]" -2022-11-14 09:05:22,305 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "Templates used in an article (top-level)."@en ;[\n]" -2022-11-14 09:05:22,305 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" -2022-11-14 09:05:22,305 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" -2022-11-14 09:05:22,305 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" -2022-11-14 09:05:22,305 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" -2022-11-14 09:05:22,305 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" -2022-11-14 09:05:22,305 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "Article Templates"@en ;[\n]" -2022-11-14 09:05:22,305 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:byteSize 174147379 ;[\n]" -2022-11-14 09:05:22,305 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:downloadURL ;[\n]" -2022-11-14 09:05:22,305 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:mediaType dataid-mt:MediaType_n-quads_x-bzip2 .[\n]" -2022-11-14 09:05:22,305 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,305 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,305 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:SingleFile ;[\n]" -2022-11-14 09:05:22,305 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "core-i18n/fr/instance_types_wkd_uris_fr.tql.bz2" , "Instance Types Wikidata Uris"@en ;[\n]" -2022-11-14 09:05:22,305 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" -2022-11-14 09:05:22,305 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid" -2022-11-14 09:05:22,307 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << ":checksum ;[\n]" -2022-11-14 09:05:22,307 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:isDistributionOf ;[\n]" -2022-11-14 09:05:22,307 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" -2022-11-14 09:05:22,307 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:preview ;[\n]" -2022-11-14 09:05:22,307 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:uncompressedByteSize 223744576 ;[\n]" -2022-11-14 09:05:22,307 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo ;[\n]" -2022-11-14 09:05:22,307 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "Contains triples of the form $object rdf:type $class from the mapping-based extraction. Normalized dataset matching Wikidata resources (sorted)."@en ;[\n]" -2022-11-14 09:05:22,307 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" -2022-11-14 09:05:22,307 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" -2022-11-14 09:05:22,307 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" -2022-11-14 09:05:22,307 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" -2022-11-14 09:05:22,307 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" -2022-11-14 09:05:22,307 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "Instance Types Wikidata Uris"@en ;[\n]" -2022-11-14 09:05:22,307 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:byteSize 15501438 ;[\n]" -2022-11-14 09:05:22,307 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:downloadURL ;[\n]" -2022-11-14 09:05:22,307 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:mediaType dataid-mt:MediaType_n-quads_x-bzip2 .[\n]" -2022-11-14 09:05:22,307 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,307 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,307 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:SingleFile ;[\n]" -2022-11-14 09:05:22,307 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "core-i18n/fr/geo_coordinates_mappingbased_en_uris_fr.ttl.bz2" , "Geo Coordinates Mappingbased English Uris"@en ;[\n]" -2022-11-14 09:05:22,307 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" -2022-11-14 09:05:22,307 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:checksum ;[\n]" -2022-11-14 09:05:22,307 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:isDistributionOf ;[\n]" -2022-11-14 09:05:22,307 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" -2022-11-14 09:05:22,307 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:preview ;[\n]" -2022-11-14 09:05:22,307 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:uncompressedByteSize 92536613 ;[\n]" -2022-11-14 09:05:22,307 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " " -2022-11-14 09:05:22,308 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo ;[\n]" -2022-11-14 09:05:22,308 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "Geographic coordinates extracted from Wikipedia originating from mapped infoboxes in the mappings wiki Normalized dataset matching English DBpedia resources."@en ;[\n]" -2022-11-14 09:05:22,308 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" -2022-11-14 09:05:22,308 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" -2022-11-14 09:05:22,308 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" -2022-11-14 09:05:22,308 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" -2022-11-14 09:05:22,308 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" -2022-11-14 09:05:22,308 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "Geo Coordinates Mappingbased English Uris"@en ;[\n]" -2022-11-14 09:05:22,308 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:byteSize 4503701 ;[\n]" -2022-11-14 09:05:22,308 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:downloadURL ;[\n]" -2022-11-14 09:05:22,308 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:mediaType dataid-mt:MediaType_turtle_x-bzip2 .[\n]" -2022-11-14 09:05:22,308 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,308 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,308 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:SingleFile ;[\n]" -2022-11-14 09:05:22,308 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "Infobox Properties Wikidata Uris"@en , "core-i18n/fr/infobox_properties_wkd_uris_fr.ttl.bz2" ;[\n]" -2022-11-14 09:05:22,308 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgen" -2022-11-14 09:05:22,309 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "t ;[\n]" -2022-11-14 09:05:22,309 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:checksum ;[\n]" -2022-11-14 09:05:22,309 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:isDistributionOf ;[\n]" -2022-11-14 09:05:22,309 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" -2022-11-14 09:05:22,309 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:preview ;[\n]" -2022-11-14 09:05:22,309 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:uncompressedByteSize 2127780266 ;[\n]" -2022-11-14 09:05:22,309 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo ;[\n]" -2022-11-14 09:05:22,309 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "Information that has been extracted from Wikipedia infoboxes. Note that this data is in the less clean 'property' namespace. The Mapping-based Properties in the 'ontology' namespace, should always be preferred over this data. Normalized dataset matching Wikidata resources (sorted)."@en ;[\n]" -2022-11-14 09:05:22,309 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" -2022-11-14 09:05:22,309 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" -2022-11-14 09:05:22,309 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" -2022-11-14 09:05:22,309 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" -2022-11-14 09:05:22,309 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" -2022-11-14 09:05:22,309 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "Infobox Properties Wikidata Uris"@en ;[\n]" -2022-11-14 09:05:22,309 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:byteSize 144428084 ;[\n]" -2022-11-14 09:05:22,309 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:downloadURL ;[\n]" -2022-11-14 09:05:22,309 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:mediaType dataid-mt:MediaType_turtle_x-bzip2 .[\n]" -2022-11-14 09:05:22,309 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,309 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,309 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:SingleFile ;[\n]" -2022-11-14 09:05:22,309 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "core-i18n/fr/article_categories_fr.ttl.bz2" , "Article Categories"@en ;[\n]" -2022-11-14 09:05:22,309 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" -2022-11-14 09:05:22,309 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:checksum ;[\n]" -2022-11-14 09:05:22,309 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:isDistributionOf ;[\n]" -2022-11-14 09:05:22,309 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" -2022-11-14 09:05:22,309 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:preview ;[\n]" -2022-11-14 09:05:22,310 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:uncompressedByteSize 1059876180 ;[\n]" -2022-11-14 09:05:22,310 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo ;[\n]" -2022-11-14 09:05:22,310 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "Links from concepts to categories using the SKOS vocabulary."@en ;[\n]" -2022-11-14 09:05:22,310 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" -2022-11-14 09:05:22,310 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" -2022-11-14 09:05:22,310 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" -2022-11-14 09:05:22,310 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" -2022-11-14 09:05:22,310 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" -2022-11-14 09:05:22,310 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "Article Categories"@en ;[\n]" -2022-11-14 09:05:22,310 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:byteSize 64574734 ;[\n]" -2022-11-14 09:05:22,310 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:downloadURL ;[\n]" -2022-11-14 09:05:22,310 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:mediaType dataid-mt:MediaType_turtle_x-bzip2 .[\n]" -2022-11-14 09:05:22,310 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,310 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,310 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid-ld:LinkedDataDataset , dataid:Dataset ;[\n]" -2022-11-14 09:05:22,310 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "Disambiguations English Uris"@en ;[\n]" -2022-11-14 09:05:22,310 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" -2022-11-14 09:05:22,310 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" -2022-11-14 09:05:22,310 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:previousVersion ;[\n]" -2022-11-14 09:05:22,310 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedDatasetRelation[\n]" -2022-11-14 09:05:22,310 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " ;[\n]" -2022-11-14 09:05:22,310 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:relatedDataset ;[\n]" -2022-11-14 09:05:22,310 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo , ;[\n]" -2022-11-14 09:05:22,310 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "Links extracted from Wikipedia disambiguation pages. Since Wikipedia has no syntax to distinguish disambiguation links from ordinary links, DBpedia has to use heuristics. Normalized dataset matching English DBpedia resources."@en ;[\n]" -2022-11-14 09:05:22,310 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" -2022-11-14 09:05:22,310 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:isPartOf ;[\n]" -2022-11-14 09:05:22,310 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" -2022-11-14 09:05:22,310 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:language ;[\n]" -2022-11-14 09:05:22,310 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" -2022-11-14 09:05:22,310 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" -2022-11-14 09:05:22,310 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" -2022-11-14 09:05:22,310 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "Disambiguations English Uris"@en ;[\n]" -2022-11-14 09:05:22,310 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " void:root" -2022-11-14 09:05:22,312 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "Resource ;[\n]" -2022-11-14 09:05:22,312 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " void:triples 241509 ;[\n]" -2022-11-14 09:05:22,312 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:distribution , ;[\n]" -2022-11-14 09:05:22,312 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:keyword "Disambiguations English Uris"@en , "DBpedia"@en ;[\n]" -2022-11-14 09:05:22,312 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:landingPage ;[\n]" -2022-11-14 09:05:22,312 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " sd:defaultGraph ;[\n]" -2022-11-14 09:05:22,312 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " foaf:page .[\n]" -2022-11-14 09:05:22,312 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,312 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,312 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:SingleFile ;[\n]" -2022-11-14 09:05:22,312 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "Infobox Properties Wikidata Uris"@en , "core-i18n/fr/infobox_properties_wkd_uris_fr.tql.bz2" ;[\n]" -2022-11-14 09:05:22,312 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" -2022-11-14 09:05:22,312 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:checksum ;[\n]" -2022-11-14 09:05:22,312 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:isDistributionOf ;[\n]" -2022-11-14 09:05:22,312 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" -2022-11-14 09:05:22,312 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:preview ;[\n]" -2022-11-14 09:05:22,312 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:uncompressedByteSize 4763999384 ;[\n]" -2022-11-14 09:05:22,312 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo ;[\n]" -2022-11-14 09:05:22,312 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "Information that has been extracted from Wikipedia infoboxes. Note that this data is in the less clean 'property' namespace. The Mapping-based Properties in the 'ontology' namespace, should always be preferred over this data. Normalized dataset matching Wikidata resources (sorted)."@en ;[\n]" -2022-11-14 09:05:22,312 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" -2022-11-14 09:05:22,312 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" -2022-11-14 09:05:22,312 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" -2022-11-14 09:05:22,312 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" -2022-11-14 09:05:22,312 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" -2022-11-14 09:05:22,312 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "Infobox Properties Wikidata Uris"@en ;[\n]" -2022-11-14 09:05:22,312 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:byteSize 266878216 ;[\n]" -2022-11-14 09:05:22,312 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:downloadURL ;[\n]" -2022-11-14 09:05:22,313 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:mediaType dataid-mt:MediaType_n-quads_x-bzip2 .[\n]" -2022-11-14 09:05:22,313 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,313 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,313 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:SingleFile ;[\n]" -2022-11-14 09:05:22,313 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "External Links"@en , "core-i18n/fr/external_links_fr.ttl.bz2" ;[\n]" -2022-11-14 09:05:22,313 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" -2022-11-14 09:05:22,313 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:checksum ;[\n]" -2022-11-14 09:05:22,313 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:isDistributionOf ;[\n]" -2022-11-14 09:05:22,313 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" -2022-11-14 09:05:22,313 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:preview ;[\n]" -2022-11-14 09:05:22,313 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:uncompressedByteSize 304141894 ;[\n]" -2022-11-14 09:05:22,313 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo ;[\n]" -2022-11-14 09:05:22,313 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "Links to external web pages about a concept."@en ;[\n]" -2022-11-14 09:05:22,313 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" -2022-11-14 09:05:22,313 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" -2022-11-14 09:05:22,313 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc" -2022-11-14 09:05:22,314 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << ":license ;[\n]" -2022-11-14 09:05:22,314 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" -2022-11-14 09:05:22,314 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" -2022-11-14 09:05:22,314 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "External Links"@en ;[\n]" -2022-11-14 09:05:22,314 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:byteSize 40070508 ;[\n]" -2022-11-14 09:05:22,314 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:downloadURL ;[\n]" -2022-11-14 09:05:22,314 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:mediaType dataid-mt:MediaType_turtle_x-bzip2 .[\n]" -2022-11-14 09:05:22,314 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,314 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,314 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:SingleFile ;[\n]" -2022-11-14 09:05:22,314 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "core-i18n/fr/revision_uris_fr.ttl.bz2" , "Revision Uris"@en ;[\n]" -2022-11-14 09:05:22,314 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" -2022-11-14 09:05:22,314 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:checksum ;[\n]" -2022-11-14 09:05:22,314 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:isDistributionOf ;[\n]" -2022-11-14 09:05:22,314 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" -2022-11-14 09:05:22,314 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:preview ;[\n]" -2022-11-14 09:05:22,314 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:uncompressedByteSize 661376632 ;[\n]" -2022-11-14 09:05:22,314 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo ;[\n]" -2022-11-14 09:05:22,314 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "Dataset linking DBpedia resource to the specific Wikipedia article revision used in this DBpedia release."@en ;[\n]" -2022-11-14 09:05:22,314 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" -2022-11-14 09:05:22,314 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" -2022-11-14 09:05:22,314 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" -2022-11-14 09:05:22,314 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" -2022-11-14 09:05:22,314 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" -2022-11-14 09:05:22,314 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "Revision Uris"@en ;[\n]" -2022-11-14 09:05:22,314 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:byteSize 60349426 ;[\n]" -2022-11-14 09:05:22,314 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:downloadURL ;[\n]" -2022-11-14 09:05:22,314 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:mediaType dataid-mt:MediaType_turtle_x-bzip2 .[\n]" -2022-11-14 09:05:22,314 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,314 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,314 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:SingleFile ;[\n]" -2022-11-14 09:05:22,314 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "External Links"@en , "core-i18n/fr/external_links_fr.tql.bz2" ;[\n]" -2022-11-14 09:05:22,314 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" -2022-11-14 09:05:22,314 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:checksum ;[\n]" -2022-11-14 09:05:22,315 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:isDistributionOf ;[\n]" -2022-11-14 09:05:22,315 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" -2022-11-14 09:05:22,315 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:preview ;[\n]" -2022-11-14 09:05:22,315 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:uncompressedByteSize 525986413 ;[\n]" -2022-11-14 09:05:22,315 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo ;[\n]" -2022-11-14 09:05:22,315 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "Links to external web pages about a concept."@en ;[\n]" -2022-11-14 09:05:22,315 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" -2022-11-14 09:05:22,315 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" -2022-11-14 09:05:22,315 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" -2022-11-14 09:05:22,315 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" -2022-11-14 09:05:22,315 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" -2022-11-14 09:05:22,315 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "External Links"@en ;[\n]" -2022-11-14 09:05:22,315 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:byteSize 57350264 ;[\n]" -2022-11-14 09:05:22,315 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:downloadURL ;[\n]" -2022-11-14 09:05:22,315 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:mediaType dataid-mt:Medi" -2022-11-14 09:05:22,315 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "aType_n-quads_x-bzip2 .[\n]" -2022-11-14 09:05:22,315 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,315 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,315 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:SingleFile ;[\n]" -2022-11-14 09:05:22,315 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "Long Abstracts"@en , "core-i18n/fr/long_abstracts_fr.ttl.bz2" ;[\n]" -2022-11-14 09:05:22,315 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" -2022-11-14 09:05:22,315 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:checksum ;[\n]" -2022-11-14 09:05:22,315 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:isDistributionOf ;[\n]" -2022-11-14 09:05:22,315 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" -2022-11-14 09:05:22,315 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:preview ;[\n]" -2022-11-14 09:05:22,315 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:uncompressedByteSize 836364349 ;[\n]" -2022-11-14 09:05:22,315 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo ;[\n]" -2022-11-14 09:05:22,315 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "Long abstracts (full abstracts) of Wikipedia articles, usually the first section."@en ;[\n]" -2022-11-14 09:05:22,315 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" -2022-11-14 09:05:22,315 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" -2022-11-14 09:05:22,315 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" -2022-11-14 09:05:22,315 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" -2022-11-14 09:05:22,315 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" -2022-11-14 09:05:22,315 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "Long Abstracts"@en ;[\n]" -2022-11-14 09:05:22,315 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:byteSize 196402338 ;[\n]" -2022-11-14 09:05:22,315 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:downloadURL ;[\n]" -2022-11-14 09:05:22,315 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:mediaType dataid-mt:MediaType_turtle_x-bzip2 .[\n]" -2022-11-14 09:05:22,315 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,315 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,315 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid-ld:LinkedDataDataset , dataid:Dataset ;[\n]" -2022-11-14 09:05:22,315 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "Instance Types Transitive English Uris"@en ;[\n]" -2022-11-14 09:05:22,315 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" -2022-11-14 09:05:22,315 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" -2022-11-14 09:05:22,315 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:previousVersion ;[\n]" -2022-11-14 09:05:22,315 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedDatasetRelation[\n]" -2022-11-14 09:05:22,315 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " ;[\n]" -2022-11-14 09:05:22,315 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:relatedDataset ;[\n]" -2022-11-14 09:05:22,315 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo , ;[\n]" -2022-11-14 09:05:22,317 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "Contains transitive rdf:type $class based on the DBpedia ontology. Normalized dataset matching English DBpedia resources."@en ;[\n]" -2022-11-14 09:05:22,317 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" -2022-11-14 09:05:22,317 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:isPartOf ;[\n]" -2022-11-14 09:05:22,317 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" -2022-11-14 09:05:22,317 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:language ;[\n]" -2022-11-14 09:05:22,317 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" -2022-11-14 09:05:22,317 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" -2022-11-14 09:05:22,317 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" -2022-11-14 09:05:22,317 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "Instance Types Transitive English Uris"@en ;[\n]" -2022-11-14 09:05:22,317 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " void:rootResource ;[\n]" -2022-11-14 09:05:22,317 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " void:triples 4922008 ;[\n]" -2022-11-14 09:05:22,317 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:distribution , ;[\n]" -2022-11-14 09:05:22,317 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:keyword "Instance Types Transitive English Uris"@en , "DBpedia"@en ;[\n]" -2022-11-14 09:05:22,317 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dca" -2022-11-14 09:05:22,318 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "t:landingPage ;[\n]" -2022-11-14 09:05:22,318 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " sd:defaultGraph ;[\n]" -2022-11-14 09:05:22,318 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " foaf:page .[\n]" -2022-11-14 09:05:22,318 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,318 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,318 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:SingleFile ;[\n]" -2022-11-14 09:05:22,318 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "core-i18n/fr/category_labels_en_uris_fr.tql.bz2" , "Category Labels. English Uris"@en ;[\n]" -2022-11-14 09:05:22,318 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" -2022-11-14 09:05:22,318 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:checksum ;[\n]" -2022-11-14 09:05:22,318 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:isDistributionOf ;[\n]" -2022-11-14 09:05:22,318 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" -2022-11-14 09:05:22,318 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:preview ;[\n]" -2022-11-14 09:05:22,318 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:uncompressedByteSize 37972680 ;[\n]" -2022-11-14 09:05:22,318 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo ;[\n]" -2022-11-14 09:05:22,318 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "Labels for Categories. Normalized dataset matching English DBpedia resources."@en ;[\n]" -2022-11-14 09:05:22,318 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" -2022-11-14 09:05:22,318 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" -2022-11-14 09:05:22,318 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" -2022-11-14 09:05:22,318 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" -2022-11-14 09:05:22,318 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" -2022-11-14 09:05:22,318 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "Category Labels. English Uris"@en ;[\n]" -2022-11-14 09:05:22,318 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:byteSize 3351836 ;[\n]" -2022-11-14 09:05:22,318 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:downloadURL ;[\n]" -2022-11-14 09:05:22,318 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:mediaType dataid-mt:MediaType_n-quads_x-bzip2 .[\n]" -2022-11-14 09:05:22,318 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,318 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,318 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:Dataset , dataid-ld:LinkedDataDataset ;[\n]" -2022-11-14 09:05:22,318 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "Specific Mappingbased Properties Wikidata Uris"@en ;[\n]" -2022-11-14 09:05:22,318 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" -2022-11-14 09:05:22,318 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" -2022-11-14 09:05:22,318 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:previousVersion ;[\n]" -2022-11-14 09:05:22,318 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedDatasetRelation" -2022-11-14 09:05:22,319 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,319 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " ;[\n]" -2022-11-14 09:05:22,319 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:relatedDataset ;[\n]" -2022-11-14 09:05:22,319 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo , ;[\n]" -2022-11-14 09:05:22,319 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "Infobox data from the mapping-based extraction, using units of measurement more convenient for the resource type, e.g. square kilometres instead of square metres for the area of a city. Normalized dataset matching Wikidata resources (sorted)."@en ;[\n]" -2022-11-14 09:05:22,319 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" -2022-11-14 09:05:22,319 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:isPartOf ;[\n]" -2022-11-14 09:05:22,319 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" -2022-11-14 09:05:22,319 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:language ;[\n]" -2022-11-14 09:05:22,319 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" -2022-11-14 09:05:22,319 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" -2022-11-14 09:05:22,319 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" -2022-11-14 09:05:22,319 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "Specific Mappingbased Properties Wikidata Uris"@en ;[\n]" -2022-11-14 09:05:22,319 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " void:rootResource ;[\n]" -2022-11-14 09:05:22,319 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " " -2022-11-14 09:05:22,320 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " void:triples 59519 ;[\n]" -2022-11-14 09:05:22,320 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:distribution , ;[\n]" -2022-11-14 09:05:22,320 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:keyword "Specific Mappingbased Properties Wikidata Uris"@en , "DBpedia"@en ;[\n]" -2022-11-14 09:05:22,320 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:landingPage ;[\n]" -2022-11-14 09:05:22,320 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " sd:defaultGraph ;[\n]" -2022-11-14 09:05:22,320 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " foaf:page .[\n]" -2022-11-14 09:05:22,320 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,320 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,320 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:SingleFile ;[\n]" -2022-11-14 09:05:22,320 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "Article Categories English Uris"@en , "core-i18n/fr/article_categories_en_uris_fr.tql.bz2" ;[\n]" -2022-11-14 09:05:22,320 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" -2022-11-14 09:05:22,320 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:checksum ;[\n]" -2022-11-14 09:05:22,320 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:isDistributionOf ;[\n]" -2022-11-14 09:05:22,320 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" -2022-11-14 09:05:22,320 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:preview ;[\n]" -2022-11-14 09:05:22,320 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:uncompressedByteSize 738620778 ;[\n]" -2022-11-14 09:05:22,320 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo ;[\n]" -2022-11-14 09:05:22,320 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "Links from concepts to categories using the SKOS vocabulary. Normalized dataset matching English DBpedia resources."@en ;[\n]" -2022-11-14 09:05:22,320 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" -2022-11-14 09:05:22,320 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" -2022-11-14 09:05:22,320 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" -2022-11-14 09:05:22,320 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" -2022-11-14 09:05:22,320 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" -2022-11-14 09:05:22,320 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "Article Categories English Uris"@en ;[\n]" -2022-11-14 09:05:22,320 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:byteSize 53258721 ;[\n]" -2022-11-14 09:05:22,320 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:downloadURL ;[\n]" -2022-11-14 09:05:22,320 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:mediaType dataid-mt:MediaType_n-quads_x-bzip2 .[\n]" -2022-11-14 09:05:22,320 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,320 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,321 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:SingleFile ;[\n]" -2022-11-14 09:05:22,321 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "Mappingbased Literals"@en , "core-i18n/fr/mappingbased_literals_fr.ttl.bz2" ;[\n]" -2022-11-14 09:05:22,321 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" -2022-11-14 09:05:22,321 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:checksum ;[\n]" -2022-11-14 09:05:22,321 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:isDistributionOf ;[\n]" -2022-11-14 09:05:22,321 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" -2022-11-14 09:05:22,321 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:preview ;[\n]" -2022-11-14 09:05:22,321 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:uncompressedByteSize 682267247 ;[\n]" -2022-11-14 09:05:22,321 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo ;[\n]" -2022-11-14 09:05:22,321 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "High-quality data extracted from Infoboxes using the mapping-based extraction (Literal properties only). The predicates in this dataset are in the ontology namespace. Note that this data is of much higher quality than the Raw Infobox Properties in the 'property' namespace."@en ;[\n]" -2022-11-14 09:05:22,321 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" -2022-11-14 09:05:22,321 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" -2022-11-14 09:05:22,321 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" -2022-11-14 09:05:22,321 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" -2022-11-14 09:05:22,321 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" -2022-11-14 09:05:22,321 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "Mappingbased Literals"@en ;[\n]" -2022-11-14 09:05:22,321 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:byteSize 47464876 ;[\n]" -2022-11-14 09:05:22,321 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:downloadURL ;[\n]" -2022-11-14 09:05:22,321 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:mediaType dataid-mt:MediaType_turtle_x-bzip2 .[\n]" -2022-11-14 09:05:22,321 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,321 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,321 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:SingleFile ;[\n]" -2022-11-14 09:05:22,321 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "core-i18n/fr/geo_coordinates_mappingbased_wkd_uris_fr.ttl.bz2" , "Geo Coordinates Mappingbased Wikidata Uris"@en ;[\n]" -2022-11-14 09:05:22,321 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" -2022-11-14 09:05:22,321 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:checksum ;[\n]" -2022-11-14 09:05:22,321 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:isDistributionOf ;[\n]" -2022-11-14 09:05:22,322 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" -2022-11-14 09:05:22,322 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:preview ;[\n]" -2022-11-14 09:05:22,322 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:uncompressedByteSize 116096706 ;[\n]" -2022-11-14 09:05:22,322 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo ;[\n]" -2022-11-14 09:05:22,322 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "Geographic coordinates extracted from Wikipedia originating from mapped infoboxes in the mappings wiki Normalized dataset matching Wikidata resources (sorted)."@en ;[\n]" -2022-11-14 09:05:22,322 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" -2022-11-14 09:05:22,322 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" -2022-11-14 09:05:22,322 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" -2022-11-14 09:05:22,322 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" -2022-11-14 09:05:22,322 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" -2022-11-14 09:05:22,322 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "Geo Coordinates Mappingbased Wikidata Uris"@en ;[\n]" -2022-11-14 09:05:22,322 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:byteSize 4658809 ;[\n]" -2022-11-14 09:05:22,322 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:downloadURL ;[\n]" -2022-11-14 09:05:22,323 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:mediaType dataid-mt:MediaType_turtle_x-bzip2 .[\n]" -2022-11-14 09:05:22,323 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,323 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,323 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:SingleFile ;[\n]" -2022-11-14 09:05:22,323 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "NIF Text Links"@en , "core-i18n/fr/nif_text_links_fr.tql.bz2" ;[\n]" -2022-11-14 09:05:22,323 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" -2022-11-14 09:05:22,323 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:checksum ;[\n]" -2022-11-14 09:05:22,323 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:isDistributionOf ;[\n]" -2022-11-14 09:05:22,323 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" -2022-11-14 09:05:22,323 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:preview ;[\n]" -2022-11-14 09:05:22,323 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:uncompressedByteSize 118158444229 ;[\n]" -2022-11-14 09:05:22,323 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo ;[\n]" -2022-11-14 09:05:22,323 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "This dataset contains all text links of a Wikipedia page, detailed in the NIF format."@en ;[\n]" -2022-11-14 09:05:22,323 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" -2022-11-14 09:05:22,323 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2" -2022-11-14 09:05:22,323 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "017-07-01"^^xsd:date ;[\n]" -2022-11-14 09:05:22,323 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" -2022-11-14 09:05:22,323 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" -2022-11-14 09:05:22,323 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" -2022-11-14 09:05:22,323 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "NIF Text Links"@en ;[\n]" -2022-11-14 09:05:22,323 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:byteSize 2608847500 ;[\n]" -2022-11-14 09:05:22,323 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:downloadURL ;[\n]" -2022-11-14 09:05:22,323 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:mediaType dataid-mt:MediaType_n-quads_x-bzip2 .[\n]" -2022-11-14 09:05:22,323 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,323 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,323 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:SingleFile ;[\n]" -2022-11-14 09:05:22,323 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "Geo Coordinates Mappingbased Wikidata Uris"@en , "core-i18n/fr/geo_coordinates_mappingbased_wkd_uris_fr.tql.bz2" ;[\n]" -2022-11-14 09:05:22,323 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" -2022-11-14 09:05:22,323 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:checksum ;[\n]" -2022-11-14 09:05:22,323 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:isDistributionOf ;[\n]" -2022-11-14 09:05:22,323 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" -2022-11-14 09:05:22,323 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:preview ;[\n]" -2022-11-14 09:05:22,323 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:uncompressedByteSize 182185016 ;[\n]" -2022-11-14 09:05:22,323 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo ;[\n]" -2022-11-14 09:05:22,323 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "Geographic coordinates extracted from Wikipedia originating from mapped infoboxes in the mappings wiki Normalized dataset matching Wikidata resources (sorted)."@en ;[\n]" -2022-11-14 09:05:22,323 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" -2022-11-14 09:05:22,323 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" -2022-11-14 09:05:22,323 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" -2022-11-14 09:05:22,323 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" -2022-11-14 09:05:22,323 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" -2022-11-14 09:05:22,323 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "Geo Coordinates Mappingbased Wikidata Uris"@en ;[\n]" -2022-11-14 09:05:22,323 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:byteSize 8693113 ;[\n]" -2022-11-14 09:05:22,323 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:downloadURL ;[\n]" -2022-11-14 09:05:22,323 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:mediaType dataid-mt:MediaType_n-quads_x-bzip2 .[\n]" -2022-11-14 09:05:22,323 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,323 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,325 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:SingleFile ;[\n]" -2022-11-14 09:05:22,325 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "Raw html tables"@en , "core-i18n/fr/raw_tables_fr.tql.bz2" ;[\n]" -2022-11-14 09:05:22,325 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" -2022-11-14 09:05:22,325 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:checksum ;[\n]" -2022-11-14 09:05:22,325 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:isDistributionOf ;[\n]" -2022-11-14 09:05:22,325 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" -2022-11-14 09:05:22,325 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:preview ;[\n]" -2022-11-14 09:05:22,325 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:uncompressedByteSize 15631635352 ;[\n]" -2022-11-14 09:05:22,325 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo ;[\n]" -2022-11-14 09:05:22,325 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "These are the raw html tables collected during the NIF extraction; to be further processed later."@en ;[\n]" -2022-11-14 09:05:22,325 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" -2022-11-14 09:05:22,325 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" -2022-11-14 09:05:22,325 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" -2022-11-14 09:05:22,325 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" -2022-11-14 09:05:22,325 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" -2022-11-14 09:05:22,325 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "Raw html tables"@en ;[\n]" -2022-11-14 09:05:22,325 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:byteSize 827361358 ;[\n]" -2022-11-14 09:05:22,325 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:downloadURL ;[\n]" -2022-11-14 09:05:22,325 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:mediaType dataid-mt:MediaType_n-quads_x-bzip2 .[\n]" -2022-11-14 09:05:22,325 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,325 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,325 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:SingleFile ;[\n]" -2022-11-14 09:05:22,325 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "core-i18n/fr/instance_types_transitive_wkd_uris_fr.ttl.bz2" , "Instance Types Transitive Wikidata Uris"@en ;[\n]" -2022-11-14 09:05:22,325 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" -2022-11-14 09:05:22,325 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:checksum ;[\n]" -2022-11-14 09:05:22,325 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:isDistributionOf ;[\n]" -2022-11-14 09:05:22,325 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" -2022-11-14 09:05:22,325 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:preview ;[\n]" -2022-11-14 09:05:22,325 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:uncompressedByteSize 961914203 ;[\n]" -2022-11-14 09:05:22,325 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo ;[\n]" -2022-11-14 09:05:22,325 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "Contains transitive rdf:type $class based on the DBpedia ontology. Normalized dataset matching Wikidata resources (sorted)."@en ;[\n]" -2022-11-14 09:05:22,325 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" -2022-11-14 09:05:22,325 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" -2022-11-14 09:05:22,325 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" -2022-11-14 09:05:22,325 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" -2022-11-14 09:05:22,325 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" -2022-11-14 09:05:22,325 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "Instance Types Transitive Wikidata Uris"@en ;[\n]" -2022-11-14 09:05:22,325 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:byteSize 17941033 ;[\n]" -2022-11-14 09:05:22,325 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:downloadURL ;[\n]" -2022-11-14 09:05:22,325 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:mediaType dataid-mt:MediaType_turtle_x-bzip2 .[\n]" -2022-11-14 09:05:22,325 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,325 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,325 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:SingleFile ;[\n]" -2022-11-14 09:05:22,325 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "core-i18n/fr/pages" -2022-11-14 09:05:22,327 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "_articles_fr.xml.bz2" , "Wikipedia XML source dump file"@en ;[\n]" -2022-11-14 09:05:22,327 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" -2022-11-14 09:05:22,327 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:checksum ;[\n]" -2022-11-14 09:05:22,327 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:isDistributionOf ;[\n]" -2022-11-14 09:05:22,327 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" -2022-11-14 09:05:22,327 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:preview ;[\n]" -2022-11-14 09:05:22,327 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:uncompressedByteSize 15721416401 ;[\n]" -2022-11-14 09:05:22,327 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:underAuthorization ;[\n]" -2022-11-14 09:05:22,327 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "The Wikipedia dump file, which is the source for all other extracted datasets."@en ;[\n]" -2022-11-14 09:05:22,327 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion "20161020" ;[\n]" -2022-11-14 09:05:22,327 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2016-10-20"^^xsd:date ;[\n]" -2022-11-14 09:05:22,327 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" -2022-11-14 09:05:22,327 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" -2022-11-14 09:05:22,327 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "Wikipedia XML source dump file"@en ;[\n]" -2022-11-14 09:05:22,327 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:byteSize 3478140894 ;[\n]" -2022-11-14 09:05:22,327 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:downloadURL , ;[\n]" -2022-11-14 09:05:22,327 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:mediaType dataid-mt:MediaType_xml_x-bzip2 .[\n]" -2022-11-14 09:05:22,327 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,327 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,327 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:SingleFile ;[\n]" -2022-11-14 09:05:22,327 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "core-i18n/fr/homepages_fr.ttl.bz2" , "Homepages"@en ;[\n]" -2022-11-14 09:05:22,327 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" -2022-11-14 09:05:22,327 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:checksum ;[\n]" -2022-11-14 09:05:22,327 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:isDistributionOf ;[\n]" -2022-11-14 09:05:22,327 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" -2022-11-14 09:05:22,327 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:preview ;[\n]" -2022-11-14 09:05:22,327 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:uncompressedByteSize 21922608 ;[\n]" -2022-11-14 09:05:22,327 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo ;[\n]" -2022-11-14 09:05:22,327 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "Links to homepages of persons, organizations etc."@en ;[\n]" -2022-11-14 09:05:22,327 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" -2022-11-14 09:05:22,327 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" -2022-11-14 09:05:22,327 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" -2022-11-14 09:05:22,327 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" -2022-11-14 09:05:22,327 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" -2022-11-14 09:05:22,327 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "Homepages"@en ;[\n]" -2022-11-14 09:05:22,328 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:byteSize 2807383 ;[\n]" -2022-11-14 09:05:22,328 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:downloadURL ;[\n]" -2022-11-14 09:05:22,328 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:mediaType dataid-mt:MediaType_turtle_x-bzip2 .[\n]" -2022-11-14 09:05:22,328 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,328 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,328 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:SingleFile ;[\n]" -2022-11-14 09:05:22,328 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "core-i18n/fr/infobox_test_fr.tql.bz2" , "infobox test"@en ;[\n]" -2022-11-14 09:05:22,328 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" -2022-11-14 09:05:22,328 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:checksum ;[\n]" -2022-11-14 09:05:22,328 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:isDistributionOf ;[\n]" -2022-11-14 09:05:22,328 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" -2022-11-14 09:05:22,328 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:preview " -2022-11-14 09:05:22,329 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " ;[\n]" -2022-11-14 09:05:22,329 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:uncompressedByteSize 64 ;[\n]" -2022-11-14 09:05:22,329 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo ;[\n]" -2022-11-14 09:05:22,329 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "DBpedia dataset infobox_test, subset of "@en ;[\n]" -2022-11-14 09:05:22,329 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" -2022-11-14 09:05:22,329 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" -2022-11-14 09:05:22,329 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" -2022-11-14 09:05:22,329 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" -2022-11-14 09:05:22,329 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" -2022-11-14 09:05:22,329 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "infobox test"@en ;[\n]" -2022-11-14 09:05:22,329 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:byteSize 88 ;[\n]" -2022-11-14 09:05:22,329 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:downloadURL ;[\n]" -2022-11-14 09:05:22,329 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:mediaType dataid-mt:MediaType_n-quads_x-bzip2 .[\n]" -2022-11-14 09:05:22,329 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,329 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,329 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:SingleFile ;[\n]" -2022-11-14 09:05:22,329 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "Homepages"@en , "core-i18n/fr/homepages_fr.tql.bz2" ;[\n]" -2022-11-14 09:05:22,329 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" -2022-11-14 09:05:22,329 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:checksum ;[\n]" -2022-11-14 09:05:22,329 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:isDistributionOf ;[\n]" -2022-11-14 09:05:22,329 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" -2022-11-14 09:05:22,329 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:preview ;[\n]" -2022-11-14 09:05:22,329 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:uncompressedByteSize 38935072 ;[\n]" -2022-11-14 09:05:22,329 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo ;[\n]" -2022-11-14 09:05:22,329 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "Links to homepages of persons, organizations etc."@en ;[\n]" -2022-11-14 09:05:22,329 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" -2022-11-14 09:05:22,329 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" -2022-11-14 09:05:22,329 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" -2022-11-14 09:05:22,329 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" -2022-11-14 09:05:22,329 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" -2022-11-14 09:05:22,329 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "Homepages"@en ;[\n]" -2022-11-14 09:05:22,329 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:byteSize 4609744 ;[\n]" -2022-11-14 09:05:22,329 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:downloadURL ;[\n]" -2022-11-14 09:05:22,329 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:mediaType dataid-mt:MediaType_n-quads_x-bzip" -2022-11-14 09:05:22,329 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "2 .[\n]" -2022-11-14 09:05:22,329 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,329 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,329 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:Dataset , dataid-ld:LinkedDataDataset ;[\n]" -2022-11-14 09:05:22,329 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "SKOS Categories Wikidata Uris"@en ;[\n]" -2022-11-14 09:05:22,329 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" -2022-11-14 09:05:22,329 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" -2022-11-14 09:05:22,329 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:previousVersion ;[\n]" -2022-11-14 09:05:22,329 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedDatasetRelation[\n]" -2022-11-14 09:05:22,329 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " ;[\n]" -2022-11-14 09:05:22,329 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:relatedDataset ;[\n]" -2022-11-14 09:05:22,329 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo , ;[\n]" -2022-11-14 09:05:22,329 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "Information which concept is a category and how categories are related using the SKOS Vocabulary. Normalized dataset matching Wikidata resources (sorted)."@en ;[\n]" -2022-11-14 09:05:22,330 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" -2022-11-14 09:05:22,330 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:isPartOf ;[\n]" -2022-11-14 09:05:22,330 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" -2022-11-14 09:05:22,330 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:langu" -2022-11-14 09:05:22,330 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "age ;[\n]" -2022-11-14 09:05:22,330 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" -2022-11-14 09:05:22,330 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" -2022-11-14 09:05:22,330 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" -2022-11-14 09:05:22,330 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "SKOS Categories Wikidata Uris"@en ;[\n]" -2022-11-14 09:05:22,330 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " void:rootResource ;[\n]" -2022-11-14 09:05:22,330 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " void:triples 1114639 ;[\n]" -2022-11-14 09:05:22,330 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:distribution , ;[\n]" -2022-11-14 09:05:22,330 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:keyword "SKOS Categories Wikidata Uris"@en , "DBpedia"@en ;[\n]" -2022-11-14 09:05:22,330 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:landingPage ;[\n]" -2022-11-14 09:05:22,330 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " sd:defaultGraph ;[\n]" -2022-11-14 09:05:22,330 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " foaf:page .[\n]" -2022-11-14 09:05:22,330 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,330 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,330 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid-ld:LinkedDataDataset , dataid:Dataset ;[\n]" -2022-11-14 09:05:22,330 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "Person data English Uris"@en ;[\n]" -2022-11-14 09:05:22,330 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" -2022-11-14 09:05:22,330 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" -2022-11-14 09:05:22,332 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedDatasetRelation[\n]" -2022-11-14 09:05:22,332 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " ;[\n]" -2022-11-14 09:05:22,332 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:relatedDataset ;[\n]" -2022-11-14 09:05:22,332 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo , ;[\n]" -2022-11-14 09:05:22,332 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "Information about persons (date and place of birth etc., extracted from the English and German Wikipedia, represented using the FOAF vocabulary. Normalized dataset matching English DBpedia resources."@en ;[\n]" -2022-11-14 09:05:22,332 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" -2022-11-14 09:05:22,332 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:isPartOf ;[\n]" -2022-11-14 09:05:22,332 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" -2022-11-14 09:05:22,332 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:language ;[\n]" -2022-11-14 09:05:22,332 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" -2022-11-14 09:05:22,332 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" -2022-11-14 09:05:22,332 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" -2022-11-14 09:05:22,332 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "Person data English Uris"@en ;[\n]" -2022-11-14 09:05:22,332 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " void:rootResource ;[\n]" -2022-11-14 09:05:22,332 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " void:triples 2456450 ;[\n]" -2022-11-14 09:05:22,332 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:distribution , ;[\n]" -2022-11-14 09:05:22,332 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:keyword "Person data English Uris"@en , "DBpedia"@en ;[\n]" -2022-11-14 09:05:22,332 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:landingPage ;[\n]" -2022-11-14 09:05:22,332 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " sd:defaultGraph ;[\n]" -2022-11-14 09:05:22,332 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " foaf:page .[\n]" -2022-11-14 09:05:22,332 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,332 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,332 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:Dataset , dataid-ld:LinkedDataDataset ;[\n]" -2022-11-14 09:05:22,332 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "Infobox Property Definitions"@en ;[\n]" -2022-11-14 09:05:22,332 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" -2022-11-14 09:05:22,332 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" -2022-11-14 09:05:22,332 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:previousVersion ;[\n]" -2022-11-14 09:05:22,332 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedDatasetRelation[\n]" -2022-11-14 09:05:22,332 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " ;[\n]" -2022-11-14 09:05:22,332 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:relatedDataset ;[\n]" -2022-11-14 09:05:22,332 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo " -2022-11-14 09:05:22,333 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " , ;[\n]" -2022-11-14 09:05:22,333 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "All properties predicates used in infoboxes."@en ;[\n]" -2022-11-14 09:05:22,333 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" -2022-11-14 09:05:22,333 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:isPartOf ;[\n]" -2022-11-14 09:05:22,333 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" -2022-11-14 09:05:22,333 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:language ;[\n]" -2022-11-14 09:05:22,333 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" -2022-11-14 09:05:22,333 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" -2022-11-14 09:05:22,333 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" -2022-11-14 09:05:22,333 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "Infobox Property Definitions"@en ;[\n]" -2022-11-14 09:05:22,333 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " void:rootResource ;[\n]" -2022-11-14 09:05:22,333 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " void:triples 42372 ;[\n]" -2022-11-14 09:05:22,333 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:distribution , ;[\n]" -2022-11-14 09:05:22,333 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:keyword "Infobox Property Definitions"@en , "DBpedia"@en ;[\n]" -2022-11-14 09:05:22,333 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:landingPage ;[\n]" -2022-11-14 09:05:22,333 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " sd:defaultGraph " -2022-11-14 09:05:22,334 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " ;[\n]" -2022-11-14 09:05:22,334 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " foaf:page .[\n]" -2022-11-14 09:05:22,334 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,334 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,334 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:SingleFile ;[\n]" -2022-11-14 09:05:22,334 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "core-i18n/fr/disambiguations_fr.tql.bz2" , "Disambiguations"@en ;[\n]" -2022-11-14 09:05:22,334 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" -2022-11-14 09:05:22,334 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:checksum ;[\n]" -2022-11-14 09:05:22,334 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:isDistributionOf ;[\n]" -2022-11-14 09:05:22,334 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" -2022-11-14 09:05:22,334 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:preview ;[\n]" -2022-11-14 09:05:22,334 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:uncompressedByteSize 139934355 ;[\n]" -2022-11-14 09:05:22,334 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo ;[\n]" -2022-11-14 09:05:22,334 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "Links extracted from Wikipedia disambiguation pages. Since Wikipedia has no syntax to distinguish disambiguation links from ordinary links, DBpedia has to use heuristics."@en ;[\n]" -2022-11-14 09:05:22,334 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" -2022-11-14 09:05:22,335 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" -2022-11-14 09:05:22,335 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" -2022-11-14 09:05:22,335 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" -2022-11-14 09:05:22,335 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" -2022-11-14 09:05:22,335 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "Disambiguations"@en ;[\n]" -2022-11-14 09:05:22,335 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:byteSize 7783643 ;[\n]" -2022-11-14 09:05:22,335 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:downloadURL ;[\n]" -2022-11-14 09:05:22,335 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:mediaType dataid-mt:MediaType_n-quads_x-bzip2 .[\n]" -2022-11-14 09:05:22,335 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,335 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,335 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:SingleFile ;[\n]" -2022-11-14 09:05:22,335 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "core-i18n/fr/mappingbased_objects_wkd_uris_fr.tql.bz2" , "Mappingbased Objects Wikidata Uris"@en ;[\n]" -2022-11-14 09:05:22,335 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" -2022-11-14 09:05:22,335 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:checksum ;[\n]" -2022-11-14 09:05:22,335 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:isDistributionOf ;[\n]" -2022-11-14 09:05:22,335 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" -2022-11-14 09:05:22,335 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:preview ;[\n]" -2022-11-14 09:05:22,335 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:uncompressedByteSize 1034794760 ;[\n]" -2022-11-14 09:05:22,335 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo ;[\n]" -2022-11-14 09:05:22,335 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "High-quality data extracted from Infoboxes using the mapping-based extraction (Object properties only). The predicates in this dataset are in the 'ontology' namespace. Note that this data is of much higher quality than the Raw Infobox Properties in the 'property' namespace. Normalized dataset matching Wikidata resources (sorted)."@en ;[\n]" -2022-11-14 09:05:22,335 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" -2022-11-14 09:05:22,335 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" -2022-11-14 09:05:22,335 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" -2022-11-14 09:05:22,335 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" -2022-11-14 09:05:22,335 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" -2022-11-14 09:05:22,335 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "Mappingbased Objects Wikidata Uris"@en ;[\n]" -2022-11-14 09:05:22,335 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:byteSize 54051187 ;[\n]" -2022-11-14 09:05:22,335 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:downloadURL " -2022-11-14 09:05:22,336 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " ;[\n]" -2022-11-14 09:05:22,336 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:mediaType dataid-mt:MediaType_n-quads_x-bzip2 .[\n]" -2022-11-14 09:05:22,336 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,336 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,336 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:SingleFile ;[\n]" -2022-11-14 09:05:22,336 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "Long Abstracts English Uris"@en , "core-i18n/fr/long_abstracts_en_uris_fr.tql.bz2" ;[\n]" -2022-11-14 09:05:22,336 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" -2022-11-14 09:05:22,336 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:checksum ;[\n]" -2022-11-14 09:05:22,336 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:isDistributionOf ;[\n]" -2022-11-14 09:05:22,336 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" -2022-11-14 09:05:22,336 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:preview ;[\n]" -2022-11-14 09:05:22,336 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:uncompressedByteSize 631423907 ;[\n]" -2022-11-14 09:05:22,336 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo ;[\n]" -2022-11-14 09:05:22,336 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "Long abstracts (full abstracts) of Wikipedia articles, usually the first section. Normalized dataset matching English DBpedia resources."@en ;[\n]" -2022-11-14 09:05:22,336 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" -2022-11-14 09:05:22,336 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" -2022-11-14 09:05:22,336 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" -2022-11-14 09:05:22,336 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" -2022-11-14 09:05:22,336 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" -2022-11-14 09:05:22,336 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "Long Abstracts English Uris"@en ;[\n]" -2022-11-14 09:05:22,336 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:byteSize 146515998 ;[\n]" -2022-11-14 09:05:22,336 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:downloadURL ;[\n]" -2022-11-14 09:05:22,336 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:mediaType dataid-mt:MediaType_n-quads_x-bzip2 .[\n]" -2022-11-14 09:05:22,336 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,336 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,336 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:Dataset , dataid-ld:LinkedDataDataset ;[\n]" -2022-11-14 09:05:22,336 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "Commons Page Links"@en ;[\n]" -2022-11-14 09:05:22,336 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" -2022-11-14 09:05:22,336 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" -2022-11-14 09:05:22,336 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedDatasetRelation[\n]" -2022-11-14 09:05:22,336 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " ;[\n]" -2022-11-14 09:05:22,336 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:relatedDataset ;[\n]" -2022-11-14 09:05:22,336 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo , ;[\n]" -2022-11-14 09:05:22,336 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "Dataset containing links between a language-locale DBpedia instance and DBpedia Commons."@en ;[\n]" -2022-11-14 09:05:22,336 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" -2022-11-14 09:05:22,336 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:isPartOf ;[\n]" -2022-11-14 09:05:22,336 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" -2022-11-14 09:05:22,336 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:language ;[\n]" -2022-11-14 09:05:22,336 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" -2022-11-14 09:05:22,336 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" -2022-11-14 09:05:22,336 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" -2022-11-14 09:05:22,336 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "Commons Page Links"@en ;[\n]" -2022-11-14 09:05:22,336 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " void:rootResource ;[\n]" -2022-11-14 09:05:22,336 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " void:triples 32 ;[\n]" -2022-11-14 09:05:22,336 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:distribution , ;[\n]" -2022-11-14 09:05:22,336 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:keyword "Commons Page Links"@en , "DBpedia"@en ;[\n]" -2022-11-14 09:05:22,336 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:landingPag" -2022-11-14 09:05:22,338 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "e ;[\n]" -2022-11-14 09:05:22,338 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " sd:defaultGraph ;[\n]" -2022-11-14 09:05:22,338 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " foaf:page .[\n]" -2022-11-14 09:05:22,338 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,338 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,338 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:SingleFile ;[\n]" -2022-11-14 09:05:22,338 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "core-i18n/fr/infobox_properties_mapped_fr.ttl.bz2" , "Infobox Properties Mapped"@en ;[\n]" -2022-11-14 09:05:22,338 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" -2022-11-14 09:05:22,338 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:checksum ;[\n]" -2022-11-14 09:05:22,338 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:isDistributionOf ;[\n]" -2022-11-14 09:05:22,338 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" -2022-11-14 09:05:22,338 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:preview ;[\n]" -2022-11-14 09:05:22,338 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:uncompressedByteSize 1287015006 ;[\n]" -2022-11-14 09:05:22,338 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo ;[\n]" -2022-11-14 09:05:22,338 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "Information that has been extracted from Wikipedia infoboxes. Note that this data is in the less clean 'property' namespace. The Mapping-based Properties in the 'ontology' namespace, should always be preferred over this data. This dataset contains facts that have equivalent mapped facts in the mapping-based datasets. "@en ;[\n]" -2022-11-14 09:05:22,338 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" -2022-11-14 09:05:22,338 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" -2022-11-14 09:05:22,338 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" -2022-11-14 09:05:22,338 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" -2022-11-14 09:05:22,338 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" -2022-11-14 09:05:22,338 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "Infobox Properties Mapped"@en ;[\n]" -2022-11-14 09:05:22,338 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:byteSize 77774749 ;[\n]" -2022-11-14 09:05:22,338 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:downloadURL ;[\n]" -2022-11-14 09:05:22,338 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:mediaType dataid-mt:MediaType_turtle_x-bzip2 .[\n]" -2022-11-14 09:05:22,338 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,338 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,338 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid-ld:LinkedDataDataset , dataid:Dataset ;[\n]" -2022-11-14 09:05:22,338 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "pnd English Uris"@en ;[\n]" -2022-11-14 09:05:22,338 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" -2022-11-14 09:05:22,338 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" -2022-11-14 09:05:22,338 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:prev" -2022-11-14 09:05:22,339 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "iousVersion ;[\n]" -2022-11-14 09:05:22,339 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedDatasetRelation[\n]" -2022-11-14 09:05:22,339 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " ;[\n]" -2022-11-14 09:05:22,339 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:relatedDataset ;[\n]" -2022-11-14 09:05:22,339 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo , ;[\n]" -2022-11-14 09:05:22,339 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "Undescribed Dataset Normalized dataset matching English DBpedia resources."@en ;[\n]" -2022-11-14 09:05:22,339 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" -2022-11-14 09:05:22,339 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:isPartOf ;[\n]" -2022-11-14 09:05:22,339 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" -2022-11-14 09:05:22,339 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:language ;[\n]" -2022-11-14 09:05:22,339 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" -2022-11-14 09:05:22,339 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" -2022-11-14 09:05:22,339 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" -2022-11-14 09:05:22,339 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "pnd English Uris"@en ;[\n]" -2022-11-14 09:05:22,339 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " void:rootResource ;[\n]" -2022-11-14 09:05:22,339 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " void:triples 253 ;[\n]" -2022-11-14 09:05:22,339 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:distribution , ;[\n]" -2022-11-14 09:05:22,340 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:keyword "DBpedia"@en , "pnd English Uris"@en ;[\n]" -2022-11-14 09:05:22,340 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:landingPage ;[\n]" -2022-11-14 09:05:22,340 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " sd:defaultGraph ;[\n]" -2022-11-14 09:05:22,340 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " foaf:page .[\n]" -2022-11-14 09:05:22,340 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,340 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,340 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:SingleFile ;[\n]" -2022-11-14 09:05:22,340 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "core-i18n/fr/infobox_properties_mapped_fr.tql.bz2" , "Infobox Properties Mapped"@en ;[\n]" -2022-11-14 09:05:22,340 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" -2022-11-14 09:05:22,340 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:checksum ;[\n]" -2022-11-14 09:05:22,340 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:isDistributionOf ;[\n]" -2022-11-14 09:05:22,340 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" -2022-11-14 09:05:22,340 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:preview ;[\n]" -2022-11-14 09:05:22,340 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:uncompressedByteSize 2499016999 ;[\n]" -2022-11-14 09:05:22,340 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo ;[\n]" -2022-11-14 09:05:22,340 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "Information that has been extracted from Wikipedia infoboxes. Note that this data is in the less clean 'property' namespace. The Mapping-based Properties in the 'ontology' namespace, should always be preferred over this data. This dataset contains facts that have equivalent mapped facts in the mapping-based datasets. "@en ;[\n]" -2022-11-14 09:05:22,340 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" -2022-11-14 09:05:22,340 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" -2022-11-14 09:05:22,340 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" -2022-11-14 09:05:22,340 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" -2022-11-14 09:05:22,340 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" -2022-11-14 09:05:22,340 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "Infobox Properties Mapped"@en ;[\n]" -2022-11-14 09:05:22,340 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:byteSize 129344145 ;[\n]" -2022-11-14 09:05:22,340 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:downloadURL ;[\n]" -2022-11-14 09:05:22,340 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:mediaType dataid-mt:MediaType_n-quads_x-bzip2 .[\n]" -2022-11-14 09:05:22,340 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,340 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,340 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:SingleF" -2022-11-14 09:05:22,340 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "ile ;[\n]" -2022-11-14 09:05:22,340 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "core-i18n/fr/short_abstracts_fr.tql.bz2" , "Short Abstracts"@en ;[\n]" -2022-11-14 09:05:22,340 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" -2022-11-14 09:05:22,340 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:checksum ;[\n]" -2022-11-14 09:05:22,340 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:isDistributionOf ;[\n]" -2022-11-14 09:05:22,340 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" -2022-11-14 09:05:22,340 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:preview ;[\n]" -2022-11-14 09:05:22,340 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:uncompressedByteSize 796940104 ;[\n]" -2022-11-14 09:05:22,340 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo ;[\n]" -2022-11-14 09:05:22,340 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "Short Abstracts (about 600 characters long) of Wikipedia articles."@en ;[\n]" -2022-11-14 09:05:22,340 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" -2022-11-14 09:05:22,340 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" -2022-11-14 09:05:22,340 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" -2022-11-14 09:05:22,340 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" -2022-11-14 09:05:22,340 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher " -2022-11-14 09:05:22,342 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " ;[\n]" -2022-11-14 09:05:22,342 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "Short Abstracts"@en ;[\n]" -2022-11-14 09:05:22,342 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:byteSize 163922836 ;[\n]" -2022-11-14 09:05:22,342 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:downloadURL ;[\n]" -2022-11-14 09:05:22,342 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:mediaType dataid-mt:MediaType_n-quads_x-bzip2 .[\n]" -2022-11-14 09:05:22,342 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,342 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,342 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid-ld:LinkedDataDataset , dataid:Dataset ;[\n]" -2022-11-14 09:05:22,342 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "Page Links Wikidata Uris"@en ;[\n]" -2022-11-14 09:05:22,342 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" -2022-11-14 09:05:22,342 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" -2022-11-14 09:05:22,342 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:previousVersion ;[\n]" -2022-11-14 09:05:22,342 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedDatasetRelation[\n]" -2022-11-14 09:05:22,342 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " ;[\n]" -2022-11-14 09:05:22,342 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:relatedDataset ;[\n]" -2022-11-14 09:05:22,342 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo , ;[\n]" -2022-11-14 09:05:22,342 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "Dataset containing internal links between DBpedia instances. The dataset was created from the internal links between Wikipedia articles. The dataset might be useful for structural analysis, data mining or for ranking DBpedia instances using Page Rank or similar algorithms. Normalized dataset matching Wikidata resources (sorted)."@en ;[\n]" -2022-11-14 09:05:22,342 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" -2022-11-14 09:05:22,342 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:isPartOf ;[\n]" -2022-11-14 09:05:22,342 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" -2022-11-14 09:05:22,342 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:language ;[\n]" -2022-11-14 09:05:22,342 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" -2022-11-14 09:05:22,342 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" -2022-11-14 09:05:22,342 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" -2022-11-14 09:05:22,342 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "Page Links Wikidata Uris"@en ;[\n]" -2022-11-14 09:05:22,342 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " void:rootResource ;[\n]" -2022-11-14 09:05:22,342 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " void:triples 50110567 ;[\n]" -2022-11-14 09:05:22,342 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:distribution , ;[\n]" -2022-11-14 09:05:22,342 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:keyword "Page Links Wikidata Uris"@en , "DBpedia"@en ;[\n]" -2022-11-14 09:05:22,342 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:landingPage ;[\n]" -2022-11-14 09:05:22,342 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " sd:defaultGraph ;[\n]" -2022-11-14 09:05:22,350 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " foaf:page .[\n]" -2022-11-14 09:05:22,350 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,350 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,350 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:Dataset , dataid-ld:LinkedDataDataset ;[\n]" -2022-11-14 09:05:22,350 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " rdfs:label "Homepages English Uris"@en ;[\n]" -2022-11-14 09:05:22,350 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:associatedAgent ;[\n]" -2022-11-14 09:05:22,350 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:latestVersion ;[\n]" -2022-11-14 09:05:22,350 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:previousVersion ;[\n]" -2022-11-14 09:05:22,350 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedDatasetRelation[\n]" -2022-11-14 09:05:22,350 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " ;[\n]" -2022-11-14 09:05:22,350 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:relatedDataset ;[\n]" -2022-11-14 09:05:22,350 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo , ;[\n]" -2022-11-14 09:05:22,350 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:description "Links to homepages of persons, organizations etc. Normalized dataset matching English DBpedia resources."@en ;[\n]" -2022-11-14 09:05:22,350 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:hasVersion ;[\n]" -2022-11-14 09:05:22,350 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:isPartOf ;[\n]" -2022-11-14 09:05:22,350 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:issued "2017-07-01"^^xsd:date ;[\n]" -2022-11-14 09:05:22,350 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:language ;[\n]" -2022-11-14 09:05:22,350 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:license ;[\n]" -2022-11-14 09:05:22,350 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:modified "2017-07-06"^^xsd:date ;[\n]" -2022-11-14 09:05:22,350 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:publisher ;[\n]" -2022-11-14 09:05:22,350 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:title "Homepages English Uris"@en ;[\n]" -2022-11-14 09:05:22,350 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " void:rootResource ;[\n]" -2022-11-14 09:05:22,350 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " void:triples 123488 ;[\n]" -2022-11-14 09:05:22,350 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:distribution , ;[\n]" -2022-11-14 09:05:22,350 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:keyword "DBpedia"@en , "Homepages English Uris"@en ;[\n]" -2022-11-14 09:05:22,350 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dcat:landingPage ;[\n]" -2022-11-14 09:05:22,350 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " sd:defaultGraph ;[\n]" -2022-11-14 09:05:22,350 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " foaf:page .[\n]" -2022-11-14 09:05:22,350 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,350 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "########### Relations ###########[\n]" -2022-11-14 09:05:22,350 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,350 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,350 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:DatasetRelationship ;[\n]" -2022-11-14 09:05:22,350 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:datasetRelationRole dataid:SourceRole ;[\n]" -2022-11-14 09:05:22,350 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedRelationOf ;[\n]" -2022-11-14 09:05:22,350 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qu" -2022-11-14 09:05:22,352 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "alifiedRelationTo .[\n]" -2022-11-14 09:05:22,352 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,352 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,352 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:DatasetRelationship ;[\n]" -2022-11-14 09:05:22,352 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:datasetRelationRole dataid:SourceRole ;[\n]" -2022-11-14 09:05:22,352 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedRelationOf ;[\n]" -2022-11-14 09:05:22,352 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedRelationTo .[\n]" -2022-11-14 09:05:22,352 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,352 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,352 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:DatasetRelationship ;[\n]" -2022-11-14 09:05:22,352 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:datasetRelationRole dataid:SourceRole ;[\n]" -2022-11-14 09:05:22,352 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedRelationOf ;[\n]" -2022-11-14 09:05:22,352 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedRelationTo .[\n]" -2022-11-14 09:05:22,352 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,352 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,352 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:DatasetRelationship ;[\n]" -2022-11-14 09:05:22,352 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:datasetRelationRole dataid:SourceRole ;[\n]" -2022-11-14 09:05:22,352 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedRelationOf ;[\n]" -2022-11-14 09:05:22,352 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedRelationTo .[\n]" -2022-11-14 09:05:22,352 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,352 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,352 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:DatasetRelationship ;[\n]" -2022-11-14 09:05:22,352 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:datasetRelationRole dataid:SourceRole ;[\n]" -2022-11-14 09:05:22,352 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedRelationOf ;[\n]" -2022-11-14 09:05:22,352 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedRelationTo .[\n]" -2022-11-14 09:05:22,352 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,352 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,352 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:DatasetRelationship ;[\n]" -2022-11-14 09:05:22,352 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:datasetRelationRole dataid:SourceRole ;[\n]" -2022-11-14 09:05:22,352 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedRelationOf ;[\n]" -2022-11-14 09:05:22,352 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedRelationTo .[\n]" -2022-11-14 09:05:22,352 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,352 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,352 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:DatasetRelationship ;[\n]" -2022-11-14 09:05:22,352 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:datasetRelationRole dataid:SourceRole ;[\n]" -2022-11-14 09:05:22,352 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedRelationOf ;[\n]" -2022-11-14 09:05:22,352 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedRelationTo .[\n]" -2022-11-14 09:05:22,352 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,352 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,352 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:DatasetRelationship ;[\n]" -2022-11-14 09:05:22,352 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:datasetRelationRole dataid:SourceRole ;[\n]" -2022-11-14 09:05:22,352 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedRelationOf ;[\n]" -2022-11-14 09:05:22,352 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedRelationTo .[\n]" -2022-11-14 09:05:22,352 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,352 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,352 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:DatasetRelationship ;[\n]" -2022-11-14 09:05:22,352 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:datasetRelationRole dataid:SourceRole ;[\n]" -2022-11-14 09:05:22,352 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedRelationOf ;[\n]" -2022-11-14 09:05:22,352 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedRelationTo .[\n]" -2022-11-14 09:05:22,352 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,352 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,352 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:DatasetRelationship ;[\n]" -2022-11-14 09:05:22,352 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:datasetRelationRole dataid:SourceRole ;[\n]" -2022-11-14 09:05:22,352 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedRelationOf ;[\n]" -2022-11-14 09:05:22,352 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedRelationTo .[\n]" -2022-11-14 09:05:22,352 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,352 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,352 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:DatasetRelationship ;[\n]" -2022-11-14 09:05:22,352 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:datasetRelationRole dataid:SourceRole ;[\n]" -2022-11-14 09:05:22,352 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedRelationOf ;[\n]" -2022-11-14 09:05:22,352 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedRelationTo .[\n]" -2022-11-14 09:05:22,352 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,352 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,352 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:DatasetRelationship ;[\n]" -2022-11-14 09:05:22,352 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:datasetRelationRole dataid:SourceRole ;[\n]" -2022-11-14 09:05:22,352 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedRelationOf ;[\n]" -2022-11-14 09:05:22,352 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedRelationTo .[\n]" -2022-11-14 09:05:22,352 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,352 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,352 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:DatasetRelationship ;[\n]" -2022-11-14 09:05:22,352 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:datasetRelationRole dataid:SourceRole ;[\n]" -2022-11-14 09:05:22,352 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedRelationOf ;[\n]" -2022-11-14 09:05:22,352 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedRelationTo .[\n]" -2022-11-14 09:05:22,352 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,352 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,352 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:DatasetRelationship ;[\n]" -2022-11-14 09:05:22,352 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:datasetRelationRole dataid:SourceRole ;[\n]" -2022-11-14 09:05:22,352 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedRelationOf ;[\n]" -2022-11-14 09:05:22,352 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedRelationTo .[\n]" -2022-11-14 09:05:22,352 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,352 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,352 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:DatasetRelationship ;[\n]" -2022-11-14 09:05:22,352 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:datasetRelationRole dataid:SourceRole ;[\n]" -2022-11-14 09:05:22,352 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedRelationOf ;[\n]" -2022-11-14 09:05:22,352 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedRelationTo .[\n]" -2022-11-14 09:05:22,352 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,352 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,352 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:DatasetRelationship ;[\n]" -2022-11-14 09:05:22,352 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:datasetRelationRole dataid:SourceRole ;[\n]" -2022-11-14 09:05:22,352 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedRelationOf ;[\n]" -2022-11-14 09:05:22,352 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedRelationTo .[\n]" -2022-11-14 09:05:22,352 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,352 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,352 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:DatasetRelationship ;[\n]" -2022-11-14 09:05:22,352 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:datasetRelationRole dataid:SourceRole ;[\n]" -2022-11-14 09:05:22,352 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedRelationOf ;[\n]" -2022-11-14 09:05:22,352 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedRelationTo .[\n]" -2022-11-14 09:05:22,352 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,352 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,352 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:DatasetRelationship ;[\n]" -2022-11-14 09:05:22,352 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:datasetRelationRole dataid:SourceRole ;[\n]" -2022-11-14 09:05:22,352 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedRelationOf ;[\n]" -2022-11-14 09:05:22,352 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedRelationTo .[\n]" -2022-11-14 09:05:22,352 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,352 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,352 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:DatasetRelationship ;[\n]" -2022-11-14 09:05:22,352 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:datasetRelationRole dataid:SourceRole ;[\n]" -2022-11-14 09:05:22,352 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedRelationOf ;[\n]" -2022-11-14 09:05:22,352 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedRelationTo .[\n]" -2022-11-14 09:05:22,352 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,352 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,352 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:DatasetRelationship ;[\n]" -2022-11-14 09:05:22,352 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:datasetRelationRole dataid:SourceRole ;[\n]" -2022-11-14 09:05:22,352 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedRelationOf ;[\n]" -2022-11-14 09:05:22,352 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedRelationTo .[\n]" -2022-11-14 09:05:22,352 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,352 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,352 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:DatasetRelationship ;[\n]" -2022-11-14 09:05:22,352 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:datasetRelationRole dataid:SourceRole ;[\n]" -2022-11-14 09:05:22,352 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedRelationOf ;[\n]" -2022-11-14 09:05:22,352 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedRelationTo .[\n]" -2022-11-14 09:05:22,352 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,352 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,352 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:DatasetRelationship ;[\n]" -2022-11-14 09:05:22,352 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:datasetRelationRole dataid:SourceRole ;[\n]" -2022-11-14 09:05:22,352 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedRelationOf ;[\n]" -2022-11-14 09:05:22,352 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedRelationTo .[\n]" -2022-11-14 09:05:22,352 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,352 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,352 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:DatasetRelationship ;[\n]" -2022-11-14 09:05:22,352 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:datasetRelationRole dataid:SourceRole ;[\n]" -2022-11-14 09:05:22,352 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedRelationOf ;[\n]" -2022-11-14 09:05:22,352 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedRelationTo .[\n]" -2022-11-14 09:05:22,352 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,352 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,352 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:DatasetRelationship ;[\n]" -2022-11-14 09:05:22,352 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:datasetRelationRole dataid:SourceRole ;[\n]" -2022-11-14 09:05:22,352 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedRelationOf ;[\n]" -2022-11-14 09:05:22,352 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedRelationTo .[\n]" -2022-11-14 09:05:22,352 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,352 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,352 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:DatasetRelationship ;[\n]" -2022-11-14 09:05:22,352 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:datasetRelationRole dataid:SourceRole ;[\n]" -2022-11-14 09:05:22,352 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedRelationOf ;[\n]" -2022-11-14 09:05:22,352 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedRelationTo .[\n]" -2022-11-14 09:05:22,352 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,352 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,352 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:DatasetRelationship ;[\n]" -2022-11-14 09:05:22,352 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:datasetRelationRole dataid:SourceRole ;[\n]" -2022-11-14 09:05:22,352 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedRelationOf ;[\n]" -2022-11-14 09:05:22,352 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedRelationTo .[\n]" -2022-11-14 09:05:22,352 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,352 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,352 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:DatasetRelationship ;[\n]" -2022-11-14 09:05:22,352 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:datasetRelationRole dataid:SourceRole ;[\n]" -2022-11-14 09:05:22,352 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedRelationOf ;[\n]" -2022-11-14 09:05:22,352 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedRelationTo .[\n]" -2022-11-14 09:05:22,352 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,352 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,352 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:DatasetRelationship ;[\n]" -2022-11-14 09:05:22,352 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:datasetRelationRole dataid:SourceRole ;[\n]" -2022-11-14 09:05:22,352 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedRelationOf ;[\n]" -2022-11-14 09:05:22,352 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedRelationTo .[\n]" -2022-11-14 09:05:22,352 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,352 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,352 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:DatasetRelationship ;[\n]" -2022-11-14 09:05:22,352 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:datasetRelationRole dataid:SourceRole ;[\n]" -2022-11-14 09:05:22,352 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedRelationOf ;[\n]" -2022-11-14 09:05:22,352 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedRelationTo .[\n]" -2022-11-14 09:05:22,352 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,352 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,352 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:DatasetRelationship ;[\n]" -2022-11-14 09:05:22,352 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:datasetRelationRole dataid:SourceRole ;[\n]" -2022-11-14 09:05:22,352 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedRelationOf ;[\n]" -2022-11-14 09:05:22,352 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedRelationTo .[\n]" -2022-11-14 09:05:22,352 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,352 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,352 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:DatasetRelationship ;[\n]" -2022-11-14 09:05:22,352 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:datasetRelationRole dataid:SourceRole ;[\n]" -2022-11-14 09:05:22,352 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedRelationOf ;[\n]" -2022-11-14 09:05:22,352 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedRelationTo .[\n]" -2022-11-14 09:05:22,352 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,352 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,352 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:DatasetRelationship ;[\n]" -2022-11-14 09:05:22,352 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:datasetRelationRole dataid:SourceRole ;[\n]" -2022-11-14 09:05:22,352 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedRelationOf ;[\n]" -2022-11-14 09:05:22,352 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedRelationTo .[\n]" -2022-11-14 09:05:22,352 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,352 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,352 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:DatasetRelationship ;[\n]" -2022-11-14 09:05:22,352 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:datasetRelationRole dataid:SourceRole ;[\n]" -2022-11-14 09:05:22,352 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedRelationOf ;[\n]" -2022-11-14 09:05:22,352 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedRelationTo .[\n]" -2022-11-14 09:05:22,352 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,352 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,352 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:DatasetRelationship ;[\n]" -2022-11-14 09:05:22,352 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:datasetRelationRole dataid:SourceRole ;[\n]" -2022-11-14 09:05:22,352 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedRelationOf ;[\n]" -2022-11-14 09:05:22,352 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedRelationTo .[\n]" -2022-11-14 09:05:22,352 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,352 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,352 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:DatasetRelationship ;[\n]" -2022-11-14 09:05:22,352 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:datasetRelationRole dataid:SourceRole ;[\n]" -2022-11-14 09:05:22,352 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedRelationOf ;[\n]" -2022-11-14 09:05:22,352 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedRelationTo .[\n]" -2022-11-14 09:05:22,352 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,352 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,352 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:DatasetRelationship ;[\n]" -2022-11-14 09:05:22,352 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:datasetRelationRole dataid:SourceRole ;[\n]" -2022-11-14 09:05:22,352 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedRelationOf ;[\n]" -2022-11-14 09:05:22,352 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedRelationTo .[\n]" -2022-11-14 09:05:22,352 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,352 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,352 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:DatasetRelationship ;[\n]" -2022-11-14 09:05:22,352 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:datasetRelationRole dataid:SourceRole ;[\n]" -2022-11-14 09:05:22,352 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedRelationOf ;[\n]" -2022-11-14 09:05:22,352 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedRelationTo .[\n]" -2022-11-14 09:05:22,352 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,352 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,352 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:DatasetRelationship ;[\n]" -2022-11-14 09:05:22,352 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:datasetRelationRole dataid:SourceRole ;[\n]" -2022-11-14 09:05:22,352 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedRelationOf ;[\n]" -2022-11-14 09:05:22,352 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedRelationTo .[\n]" -2022-11-14 09:05:22,352 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,352 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,352 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:DatasetRelationship ;[\n]" -2022-11-14 09:05:22,352 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:datasetRelationRole dataid:SourceRole ;[\n]" -2022-11-14 09:05:22,352 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " " -2022-11-14 09:05:22,353 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedRelationOf ;[\n]" -2022-11-14 09:05:22,353 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedRelationTo .[\n]" -2022-11-14 09:05:22,353 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,353 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,353 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:DatasetRelationship ;[\n]" -2022-11-14 09:05:22,353 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:datasetRelationRole dataid:SourceRole ;[\n]" -2022-11-14 09:05:22,353 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedRelationOf ;[\n]" -2022-11-14 09:05:22,353 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedRelationTo .[\n]" -2022-11-14 09:05:22,353 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,353 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,353 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:DatasetRelationship ;[\n]" -2022-11-14 09:05:22,353 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:datasetRelationRole dataid:SourceRole ;[\n]" -2022-11-14 09:05:22,353 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedRelationOf ;[\n]" -2022-11-14 09:05:22,353 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedRelationTo .[\n]" -2022-11-14 09:05:22,353 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,353 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,353 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:DatasetRelationship ;[\n]" -2022-11-14 09:05:22,353 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:datasetRelationRole dataid:SourceRole ;[\n]" -2022-11-14 09:05:22,353 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedRelationOf ;[\n]" -2022-11-14 09:05:22,354 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedRelationTo .[\n]" -2022-11-14 09:05:22,354 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,354 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,354 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:DatasetRelationship ;[\n]" -2022-11-14 09:05:22,354 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:datasetRelationRole dataid:SourceRole ;[\n]" -2022-11-14 09:05:22,354 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedRelationOf ;[\n]" -2022-11-14 09:05:22,354 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedRelationTo .[\n]" -2022-11-14 09:05:22,354 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,354 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,354 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:DatasetRelationship ;[\n]" -2022-11-14 09:05:22,354 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:datasetRelationRole dataid:SourceRole ;[\n]" -2022-11-14 09:05:22,354 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedRelationOf ;[\n]" -2022-11-14 09:05:22,354 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedRelationTo .[\n]" -2022-11-14 09:05:22,354 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,354 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,354 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:DatasetRelationship ;[\n]" -2022-11-14 09:05:22,354 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:datasetRelationRole dataid:SourceRole ;[\n]" -2022-11-14 09:05:22,354 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedRelationOf ;[\n]" -2022-11-14 09:05:22,354 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedRelationTo .[\n]" -2022-11-14 09:05:22,354 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,354 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,354 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:DatasetRelationship ;[\n]" -2022-11-14 09:05:22,354 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:datasetRelationRole dataid:SourceRole ;[\n]" -2022-11-14 09:05:22,354 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedRelationOf ;[\n]" -2022-11-14 09:05:22,354 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedRelationTo .[\n]" -2022-11-14 09:05:22,354 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,354 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,354 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:DatasetRelationship ;[\n]" -2022-11-14 09:05:22,354 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:datasetRelationRole dataid:SourceRole ;[\n]" -2022-11-14 09:05:22,354 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedRelationOf ;[\n]" -2022-11-14 09:05:22,354 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedRelationTo .[\n]" -2022-11-14 09:05:22,354 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,354 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,354 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:DatasetRelationship ;[\n]" -2022-11-14 09:05:22,354 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:datasetRelationRole dataid:SourceRole ;[\n]" -2022-11-14 09:05:22,354 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedRelationOf ;[\n]" -2022-11-14 09:05:22,354 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedRelationTo .[\n]" -2022-11-14 09:05:22,354 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,354 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,355 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:DatasetRelationship ;[\n]" -2022-11-14 09:05:22,355 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:datasetRelationRole dataid:SourceRole ;[\n]" -2022-11-14 09:05:22,355 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedRelationOf ;[\n]" -2022-11-14 09:05:22,355 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedRelationTo .[\n]" -2022-11-14 09:05:22,355 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,355 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,355 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:DatasetRelationship ;[\n]" -2022-11-14 09:05:22,355 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:datasetRelationRole dataid:SourceRole ;[\n]" -2022-11-14 09:05:22,355 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedRelationOf ;[\n]" -2022-11-14 09:05:22,355 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedRelationTo .[\n]" -2022-11-14 09:05:22,355 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,355 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,355 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:DatasetRelationship ;[\n]" -2022-11-14 09:05:22,355 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:datasetRelationRole dataid:SourceRole ;[\n]" -2022-11-14 09:05:22,355 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedRelationOf ;[\n]" -2022-11-14 09:05:22,355 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedRelationTo .[\n]" -2022-11-14 09:05:22,355 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,355 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,355 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:DatasetRelationship ;[\n]" -2022-11-14 09:05:22,355 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:datasetRelationRole dataid:SourceRole ;[\n]" -2022-11-14 09:05:22,355 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedRelationOf ;[\n]" -2022-11-14 09:05:22,355 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedRelationTo .[\n]" -2022-11-14 09:05:22,355 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,355 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,355 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:DatasetRelationship ;[\n]" -2022-11-14 09:05:22,355 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:datasetRelationRole dataid:SourceRole ;[\n]" -2022-11-14 09:05:22,355 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedRelationOf ;[\n]" -2022-11-14 09:05:22,355 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedRelationTo .[\n]" -2022-11-14 09:05:22,355 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,355 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,355 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:DatasetRelationship ;[\n]" -2022-11-14 09:05:22,355 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:datasetRelationRole dataid:SourceRole ;[\n]" -2022-11-14 09:05:22,355 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedRelationOf ;[\n]" -2022-11-14 09:05:22,355 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedRelationTo .[\n]" -2022-11-14 09:05:22,355 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,355 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,357 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:DatasetRelationship ;[\n]" -2022-11-14 09:05:22,357 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:datasetRelationRole dataid:SourceRole ;[\n]" -2022-11-14 09:05:22,357 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedRelationOf ;[\n]" -2022-11-14 09:05:22,357 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedRelationTo .[\n]" -2022-11-14 09:05:22,357 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,357 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,357 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:DatasetRelationship ;[\n]" -2022-11-14 09:05:22,357 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:datasetRelationRole dataid:SourceRole ;[\n]" -2022-11-14 09:05:22,357 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedRelationOf ;[\n]" -2022-11-14 09:05:22,357 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedRelationTo .[\n]" -2022-11-14 09:05:22,357 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,357 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,357 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:DatasetRelationship ;[\n]" -2022-11-14 09:05:22,357 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:datasetRelationRole dataid:SourceRole ;[\n]" -2022-11-14 09:05:22,357 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedRelationOf ;[\n]" -2022-11-14 09:05:22,357 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedRelationTo .[\n]" -2022-11-14 09:05:22,357 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,357 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,358 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:DatasetRelationship ;[\n]" -2022-11-14 09:05:22,358 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:datasetRelationRole dataid:SourceRole ;[\n]" -2022-11-14 09:05:22,358 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedRelationOf ;[\n]" -2022-11-14 09:05:22,358 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedRelationTo .[\n]" -2022-11-14 09:05:22,358 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,358 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,358 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:DatasetRelationship ;[\n]" -2022-11-14 09:05:22,358 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:datasetRelationRole dataid:SourceRole ;[\n]" -2022-11-14 09:05:22,358 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedRelationOf ;[\n]" -2022-11-14 09:05:22,358 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedRelationTo .[\n]" -2022-11-14 09:05:22,358 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,358 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,358 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:DatasetRelationship ;[\n]" -2022-11-14 09:05:22,358 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:datasetRelationRole dataid:SourceRole ;[\n]" -2022-11-14 09:05:22,358 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedRelationOf ;[\n]" -2022-11-14 09:05:22,358 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedRelationTo .[\n]" -2022-11-14 09:05:22,358 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,358 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,358 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:DatasetRelationship ;[\n]" -2022-11-14 09:05:22,358 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:datasetRelationRole dataid:SourceRole ;[\n]" -2022-11-14 09:05:22,358 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedRelationOf ;[\n]" -2022-11-14 09:05:22,358 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedRelationTo .[\n]" -2022-11-14 09:05:22,358 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,358 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,358 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:DatasetRelationship ;[\n]" -2022-11-14 09:05:22,358 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:datasetRelationRole dataid:SourceRole ;[\n]" -2022-11-14 09:05:22,358 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedRelationOf ;[\n]" -2022-11-14 09:05:22,358 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedRelationTo .[\n]" -2022-11-14 09:05:22,358 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,358 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,358 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:DatasetRelationship ;[\n]" -2022-11-14 09:05:22,358 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:datasetRelationRole dataid:SourceRole ;[\n]" -2022-11-14 09:05:22,358 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedRelationOf ;[\n]" -2022-11-14 09:05:22,358 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedRelationTo .[\n]" -2022-11-14 09:05:22,358 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,358 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,358 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:DatasetRelation" -2022-11-14 09:05:22,358 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "ship ;[\n]" -2022-11-14 09:05:22,359 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:datasetRelationRole dataid:SourceRole ;[\n]" -2022-11-14 09:05:22,359 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedRelationOf ;[\n]" -2022-11-14 09:05:22,359 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedRelationTo .[\n]" -2022-11-14 09:05:22,359 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,359 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,359 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:DatasetRelationship ;[\n]" -2022-11-14 09:05:22,359 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:datasetRelationRole dataid:SourceRole ;[\n]" -2022-11-14 09:05:22,359 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedRelationOf ;[\n]" -2022-11-14 09:05:22,359 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedRelationTo .[\n]" -2022-11-14 09:05:22,359 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,359 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,359 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:DatasetRelationship ;[\n]" -2022-11-14 09:05:22,359 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:datasetRelationRole dataid:SourceRole ;[\n]" -2022-11-14 09:05:22,359 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedRelationOf ;[\n]" -2022-11-14 09:05:22,359 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedRelationTo .[\n]" -2022-11-14 09:05:22,359 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,359 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,359 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:DatasetRelationship ;[\n]" -2022-11-14 09:05:22,359 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:datasetRelationRole dataid:SourceR" -2022-11-14 09:05:22,360 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "ole ;[\n]" -2022-11-14 09:05:22,360 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedRelationOf ;[\n]" -2022-11-14 09:05:22,360 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedRelationTo .[\n]" -2022-11-14 09:05:22,360 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,360 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,360 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:DatasetRelationship ;[\n]" -2022-11-14 09:05:22,360 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:datasetRelationRole dataid:SourceRole ;[\n]" -2022-11-14 09:05:22,360 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedRelationOf ;[\n]" -2022-11-14 09:05:22,360 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedRelationTo .[\n]" -2022-11-14 09:05:22,360 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,360 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,360 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:DatasetRelationship ;[\n]" -2022-11-14 09:05:22,360 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:datasetRelationRole dataid:SourceRole ;[\n]" -2022-11-14 09:05:22,360 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedRelationOf ;[\n]" -2022-11-14 09:05:22,360 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedRelationTo .[\n]" -2022-11-14 09:05:22,360 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,360 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,360 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:DatasetRelationship ;[\n]" -2022-11-14 09:05:22,360 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:datasetRelationRole dataid:SourceRole ;[\n]" -2022-11-14 09:05:22,360 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qual" -2022-11-14 09:05:22,361 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "ifiedRelationOf ;[\n]" -2022-11-14 09:05:22,361 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedRelationTo .[\n]" -2022-11-14 09:05:22,361 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,361 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,361 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:DatasetRelationship ;[\n]" -2022-11-14 09:05:22,361 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:datasetRelationRole dataid:SourceRole ;[\n]" -2022-11-14 09:05:22,361 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedRelationOf ;[\n]" -2022-11-14 09:05:22,361 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedRelationTo .[\n]" -2022-11-14 09:05:22,361 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,361 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,361 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:DatasetRelationship ;[\n]" -2022-11-14 09:05:22,361 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:datasetRelationRole dataid:SourceRole ;[\n]" -2022-11-14 09:05:22,361 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedRelationOf ;[\n]" -2022-11-14 09:05:22,361 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedRelationTo .[\n]" -2022-11-14 09:05:22,361 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,361 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,361 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:DatasetRelationship ;[\n]" -2022-11-14 09:05:22,361 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:datasetRelationRole dataid:SourceRole ;[\n]" -2022-11-14 09:05:22,361 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedRelationOf ;[\n]" -2022-11-14 09:05:22,361 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedRelationTo .[\n]" -2022-11-14 09:05:22,361 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,361 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,361 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:DatasetRelationship ;[\n]" -2022-11-14 09:05:22,361 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:datasetRelationRole dataid:SourceRole ;[\n]" -2022-11-14 09:05:22,361 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedRelationOf ;[\n]" -2022-11-14 09:05:22,361 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedRelationTo .[\n]" -2022-11-14 09:05:22,361 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,361 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,361 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:DatasetRelationship ;[\n]" -2022-11-14 09:05:22,361 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:datasetRelationRole dataid:SourceRole ;[\n]" -2022-11-14 09:05:22,361 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedRelationOf ;[\n]" -2022-11-14 09:05:22,361 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedRelationTo .[\n]" -2022-11-14 09:05:22,361 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,361 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,361 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:DatasetRelationship ;[\n]" -2022-11-14 09:05:22,361 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:datasetRelationRole dataid:SourceRole ;[\n]" -2022-11-14 09:05:22,361 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedRelationOf ;[\n]" -2022-11-14 09:05:22,361 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedRelationTo .[\n]" -2022-11-14 09:05:22,362 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,362 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,362 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:DatasetRelationship ;[\n]" -2022-11-14 09:05:22,362 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:datasetRelationRole dataid:SourceRole ;[\n]" -2022-11-14 09:05:22,362 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedRelationOf ;[\n]" -2022-11-14 09:05:22,362 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedRelationTo .[\n]" -2022-11-14 09:05:22,362 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,362 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,362 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:DatasetRelationship ;[\n]" -2022-11-14 09:05:22,362 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:datasetRelationRole dataid:SourceRole ;[\n]" -2022-11-14 09:05:22,362 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedRelationOf ;[\n]" -2022-11-14 09:05:22,362 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedRelationTo .[\n]" -2022-11-14 09:05:22,362 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,362 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,362 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:DatasetRelationship ;[\n]" -2022-11-14 09:05:22,362 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:datasetRelationRole dataid:SourceRole ;[\n]" -2022-11-14 09:05:22,362 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedRelationOf ;[\n]" -2022-11-14 09:05:22,362 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedRelationTo .[\n]" -2022-11-14 09:05:22,362 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,362 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,362 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:DatasetRelationship ;[\n]" -2022-11-14 09:05:22,362 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:datasetRelationRole dataid:SourceRole ;[\n]" -2022-11-14 09:05:22,362 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedRelationOf ;[\n]" -2022-11-14 09:05:22,362 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedRelationTo .[\n]" -2022-11-14 09:05:22,362 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,362 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,362 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:DatasetRelationship ;[\n]" -2022-11-14 09:05:22,362 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:datasetRelationRole dataid:SourceRole ;[\n]" -2022-11-14 09:05:22,362 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedRelationOf ;[\n]" -2022-11-14 09:05:22,362 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedRelationTo .[\n]" -2022-11-14 09:05:22,362 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,362 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,362 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:DatasetRelationship ;[\n]" -2022-11-14 09:05:22,362 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:datasetRelationRole dataid:SourceRole ;[\n]" -2022-11-14 09:05:22,362 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedRelationOf ;[\n]" -2022-11-14 09:05:22,362 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedRelationTo .[\n]" -2022-11-14 09:05:22,362 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,362 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,362 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:DatasetRelationship ;[\n]" -2022-11-14 09:05:22,362 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:datasetRelationRole dataid:SourceRole ;[\n]" -2022-11-14 09:05:22,362 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedRelationOf ;[\n]" -2022-11-14 09:05:22,362 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedRelationTo .[\n]" -2022-11-14 09:05:22,362 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,362 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,363 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:DatasetRelationship ;[\n]" -2022-11-14 09:05:22,363 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:datasetRelationRole dataid:SourceRole ;[\n]" -2022-11-14 09:05:22,363 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedRelationOf ;[\n]" -2022-11-14 09:05:22,363 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedRelationTo .[\n]" -2022-11-14 09:05:22,363 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,363 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,363 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:DatasetRelationship ;[\n]" -2022-11-14 09:05:22,363 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:datasetRelationRole dataid:SourceRole ;[\n]" -2022-11-14 09:05:22,363 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedRelationOf ;[\n]" -2022-11-14 09:05:22,363 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedRelationTo .[\n]" -2022-11-14 09:05:22,363 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,363 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,364 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:DatasetRelationship ;[\n]" -2022-11-14 09:05:22,364 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:datasetRelationRole dataid:SourceRole ;[\n]" -2022-11-14 09:05:22,364 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedRelationOf ;[\n]" -2022-11-14 09:05:22,364 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedRelationTo .[\n]" -2022-11-14 09:05:22,364 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,364 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,364 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:DatasetRelationship ;[\n]" -2022-11-14 09:05:22,364 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:datasetRelationRole dataid:SourceRole ;[\n]" -2022-11-14 09:05:22,364 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedRelationOf ;[\n]" -2022-11-14 09:05:22,364 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedRelationTo .[\n]" -2022-11-14 09:05:22,364 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,364 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,364 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:DatasetRelationship ;[\n]" -2022-11-14 09:05:22,364 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:datasetRelationRole dataid:SourceRole ;[\n]" -2022-11-14 09:05:22,364 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedRelationOf ;[\n]" -2022-11-14 09:05:22,364 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedRelationTo .[\n]" -2022-11-14 09:05:22,364 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,364 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,364 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:DatasetRelationship ;[\n]" -2022-11-14 09:05:22,364 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:datasetRelationRole dataid:SourceRole ;[\n]" -2022-11-14 09:05:22,364 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedRelationOf ;[\n]" -2022-11-14 09:05:22,364 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedRelationTo .[\n]" -2022-11-14 09:05:22,364 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,364 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,364 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:DatasetRelationship ;[\n]" -2022-11-14 09:05:22,364 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:datasetRelationRole dataid:SourceRole ;[\n]" -2022-11-14 09:05:22,364 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedRelationOf ;[\n]" -2022-11-14 09:05:22,364 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedRelationTo .[\n]" -2022-11-14 09:05:22,364 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,364 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,364 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:DatasetRelationship ;[\n]" -2022-11-14 09:05:22,364 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:datasetRelationRole dataid:SourceRole ;[\n]" -2022-11-14 09:05:22,364 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedRelationOf ;[\n]" -2022-11-14 09:05:22,364 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedRelationTo .[\n]" -2022-11-14 09:05:22,364 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,364 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,364 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:DatasetRelationship ;[\n]" -2022-11-14 09:05:22,364 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:datasetRelationRole dataid:Source" -2022-11-14 09:05:22,364 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "Role ;[\n]" -2022-11-14 09:05:22,364 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedRelationOf ;[\n]" -2022-11-14 09:05:22,365 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedRelationTo .[\n]" -2022-11-14 09:05:22,365 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,365 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,365 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:DatasetRelationship ;[\n]" -2022-11-14 09:05:22,365 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:datasetRelationRole dataid:SourceRole ;[\n]" -2022-11-14 09:05:22,365 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedRelationOf ;[\n]" -2022-11-14 09:05:22,365 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedRelationTo .[\n]" -2022-11-14 09:05:22,365 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,365 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,365 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:DatasetRelationship ;[\n]" -2022-11-14 09:05:22,365 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:datasetRelationRole dataid:SourceRole ;[\n]" -2022-11-14 09:05:22,365 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedRelationOf ;[\n]" -2022-11-14 09:05:22,365 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedRelationTo .[\n]" -2022-11-14 09:05:22,365 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,365 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,365 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:DatasetRelationship ;[\n]" -2022-11-14 09:05:22,365 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:datasetRelationRole dataid:SourceRole ;[\n]" -2022-11-14 09:05:22,365 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:quali" -2022-11-14 09:05:22,366 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "fiedRelationOf ;[\n]" -2022-11-14 09:05:22,366 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedRelationTo .[\n]" -2022-11-14 09:05:22,366 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,366 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,366 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:DatasetRelationship ;[\n]" -2022-11-14 09:05:22,366 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:datasetRelationRole dataid:SourceRole ;[\n]" -2022-11-14 09:05:22,366 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedRelationOf ;[\n]" -2022-11-14 09:05:22,366 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedRelationTo .[\n]" -2022-11-14 09:05:22,366 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,366 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,366 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:DatasetRelationship ;[\n]" -2022-11-14 09:05:22,366 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:datasetRelationRole dataid:SourceRole ;[\n]" -2022-11-14 09:05:22,366 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedRelationOf ;[\n]" -2022-11-14 09:05:22,366 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedRelationTo .[\n]" -2022-11-14 09:05:22,366 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,366 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,366 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:DatasetRelationship ;[\n]" -2022-11-14 09:05:22,366 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:datasetRelationRole dataid:SourceRole ;[\n]" -2022-11-14 09:05:22,366 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedRelationOf ;[\n]" -2022-11-14 09:05:22,366 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedRelationTo .[\n]" -2022-11-14 09:05:22,366 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,366 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,366 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:DatasetRelationship ;[\n]" -2022-11-14 09:05:22,366 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:datasetRelationRole dataid:SourceRole ;[\n]" -2022-11-14 09:05:22,366 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedRelationOf ;[\n]" -2022-11-14 09:05:22,366 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedRelationTo .[\n]" -2022-11-14 09:05:22,366 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,366 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,366 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:DatasetRelationship ;[\n]" -2022-11-14 09:05:22,366 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:datasetRelationRole dataid:SourceRole ;[\n]" -2022-11-14 09:05:22,366 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedRelationOf ;[\n]" -2022-11-14 09:05:22,366 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:qualifiedRelationTo .[\n]" -2022-11-14 09:05:22,366 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,366 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "########### Checksums ###########[\n]" -2022-11-14 09:05:22,366 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,366 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,366 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a spdx:Checksum ;[\n]" -2022-11-14 09:05:22,366 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:algorithm spdx:checksumAlgorithm_md5 ;[\n]" -2022-11-14 09:05:22,366 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:checksumValue "e65cd9343be6f09bbf7b811e13f6bcfe"^^xsd:hexBinary .[\n]" -2022-11-14 09:05:22,366 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,366 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,366 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a spdx:Checksum ;[\n]" -2022-11-14 09:05:22,366 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:algorithm spdx:checksumAlgorithm_md5 ;[\n]" -2022-11-14 09:05:22,366 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:checksumValue "a2c6854558783acca57b3cf2ce2166bd"^^xsd:hexBinary .[\n]" -2022-11-14 09:05:22,366 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,366 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,366 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a spdx:Checksum ;[\n]" -2022-11-14 09:05:22,366 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:algorithm spdx:checksumAlgorithm_md5 ;[\n]" -2022-11-14 09:05:22,366 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:checksumValue "c295c6cb6626bd2961ff71689baf8b18"^^xsd:hexBinary .[\n]" -2022-11-14 09:05:22,366 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,366 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,366 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a spdx:Checksum ;[\n]" -2022-11-14 09:05:22,366 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:algorithm spdx:checksumAlgorithm_md5 ;[\n]" -2022-11-14 09:05:22,366 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:checksumValue "4134b2dd10b7407f9db2445aa632ed47"^^xsd:hexBinary .[\n]" -2022-11-14 09:05:22,366 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,366 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,366 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a spdx:Checksum ;[\n]" -2022-11-14 09:05:22,366 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:algorithm spdx:checksumAlgorithm_md5 ;[\n]" -2022-11-14 09:05:22,366 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:checksumValue "cc351480d8d0f758b71ba75674458d6f"^^xsd:hexBinary .[\n]" -2022-11-14 09:05:22,366 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,366 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,366 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a spdx:Checksum ;[\n]" -2022-11-14 09:05:22,366 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:algorithm spdx:checksumAlgorithm_md5 ;[\n]" -2022-11-14 09:05:22,366 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:checksumValue "0546ef820cc136e05a825f58b6b" -2022-11-14 09:05:22,367 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "c0714"^^xsd:hexBinary .[\n]" -2022-11-14 09:05:22,367 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,367 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,367 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a spdx:Checksum ;[\n]" -2022-11-14 09:05:22,367 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:algorithm spdx:checksumAlgorithm_md5 ;[\n]" -2022-11-14 09:05:22,367 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:checksumValue "8a0769bd605b42b8aa32d81334a90cea"^^xsd:hexBinary .[\n]" -2022-11-14 09:05:22,367 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,367 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,367 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a spdx:Checksum ;[\n]" -2022-11-14 09:05:22,367 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:algorithm spdx:checksumAlgorithm_md5 ;[\n]" -2022-11-14 09:05:22,367 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:checksumValue "20c4042809657d6ec896f49ca74ff4b6"^^xsd:hexBinary .[\n]" -2022-11-14 09:05:22,367 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,367 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,367 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a spdx:Checksum ;[\n]" -2022-11-14 09:05:22,367 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:algorithm spdx:checksumAlgorithm_md5 ;[\n]" -2022-11-14 09:05:22,367 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:checksumValue "2280c7bfd1ec96fe9faaf10f22f7bffe"^^xsd:hexBinary .[\n]" -2022-11-14 09:05:22,367 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,367 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,367 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a spdx:Checksum ;[\n]" -2022-11-14 09:05:22,367 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:algorithm spdx:checksumAlgorithm_md5 ;[\n]" -2022-11-14 09:05:22,367 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:checksumValue "b45d9ef0deebbbd826916fd5c26de8e8"^^xsd:hexBinary .[\n]" -2022-11-14 09:05:22,367 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,367 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,367 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " " -2022-11-14 09:05:22,367 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a spdx:Checksum ;[\n]" -2022-11-14 09:05:22,367 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:algorithm spdx:checksumAlgorithm_md5 ;[\n]" -2022-11-14 09:05:22,367 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:checksumValue "1d9df9dd77dd3efd8b4fdbbac1032b28"^^xsd:hexBinary .[\n]" -2022-11-14 09:05:22,367 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,367 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,367 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a spdx:Checksum ;[\n]" -2022-11-14 09:05:22,367 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:algorithm spdx:checksumAlgorithm_md5 ;[\n]" -2022-11-14 09:05:22,367 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:checksumValue "464c49c45e765e6fb7fb38e767f559fb"^^xsd:hexBinary .[\n]" -2022-11-14 09:05:22,367 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,367 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,367 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a spdx:Checksum ;[\n]" -2022-11-14 09:05:22,367 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:algorithm spdx:checksumAlgorithm_md5 ;[\n]" -2022-11-14 09:05:22,367 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:checksumValue "ee53aeefc68cd4c0d36807a22654a9b4"^^xsd:hexBinary .[\n]" -2022-11-14 09:05:22,367 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,367 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,367 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a spdx:Checksum ;[\n]" -2022-11-14 09:05:22,367 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:algorithm spdx:checksumAlgorithm_md5 ;[\n]" -2022-11-14 09:05:22,367 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:checksumValue "ee8098fb96e3c52a04ee3b6039fd143d"^^xsd:hexBinary .[\n]" -2022-11-14 09:05:22,367 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,367 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,367 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a spdx:Checksum ;[\n]" -2022-11-14 09:05:22,367 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:algorithm spdx:checksumAlgorithm_md5 ;[\n]" -2022-11-14 09:05:22,367 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:checksumValue "1547271f9812257b4b3919346e506322"^^xsd:hexBinary .[\n]" -2022-11-14 09:05:22,367 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,367 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,368 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a spdx:Checksum ;[\n]" -2022-11-14 09:05:22,368 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:algorithm spdx:checksumAlgorithm_md5 ;[\n]" -2022-11-14 09:05:22,368 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:checksumValue "cf3417afe5aef781f6583c8887c29750"^^xsd:hexBinary .[\n]" -2022-11-14 09:05:22,368 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,368 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,368 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a spdx:Checksum ;[\n]" -2022-11-14 09:05:22,368 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:algorithm spdx:checksumAlgorithm_md5 ;[\n]" -2022-11-14 09:05:22,368 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:checksumValue "12b4ed35bca932540a341ddafaac21ea"^^xsd:hexBinary .[\n]" -2022-11-14 09:05:22,368 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,368 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,368 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a spdx:Checksum ;[\n]" -2022-11-14 09:05:22,368 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:algorithm spdx:checksumAlgorithm_md5 ;[\n]" -2022-11-14 09:05:22,368 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:checksumValue "67fad6b8669b9276dc9142dcc6b14be6"^^xsd:hexBinary .[\n]" -2022-11-14 09:05:22,368 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,368 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,368 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a spdx:Checksum ;[\n]" -2022-11-14 09:05:22,368 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:algorithm spdx:checksumAlgorithm_md5 ;[\n]" -2022-11-14 09:05:22,368 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:checksumValue "e1baacba7d7cd1f3a7afa36fac1da022"^^xsd:hexBinary .[\n]" -2022-11-14 09:05:22,368 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,368 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,368 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a spdx:Checksum ;[\n]" -2022-11-14 09:05:22,368 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:algorithm spdx:checksumAlgorithm_md5 ;[\n]" -2022-11-14 09:05:22,368 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:checksumValue "1928a0dc01e19ae186cc9a6" -2022-11-14 09:05:22,369 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "6ba8df8b5"^^xsd:hexBinary .[\n]" -2022-11-14 09:05:22,369 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,369 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,369 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a spdx:Checksum ;[\n]" -2022-11-14 09:05:22,369 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:algorithm spdx:checksumAlgorithm_md5 ;[\n]" -2022-11-14 09:05:22,369 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:checksumValue "829fd6aaa983ca13804919b57b7c8be3"^^xsd:hexBinary .[\n]" -2022-11-14 09:05:22,369 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,369 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,369 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a spdx:Checksum ;[\n]" -2022-11-14 09:05:22,369 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:algorithm spdx:checksumAlgorithm_md5 ;[\n]" -2022-11-14 09:05:22,369 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:checksumValue "7a3c85c16492575a0f909f05f14c00b0"^^xsd:hexBinary .[\n]" -2022-11-14 09:05:22,369 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,369 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,369 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a spdx:Checksum ;[\n]" -2022-11-14 09:05:22,369 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:algorithm spdx:checksumAlgorithm_md5 ;[\n]" -2022-11-14 09:05:22,369 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:checksumValue "d4f3339e3484ea4a855680c7b4cbe649"^^xsd:hexBinary .[\n]" -2022-11-14 09:05:22,369 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,369 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,369 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a spdx:Checksum ;[\n]" -2022-11-14 09:05:22,369 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:algorithm spdx:checksumAlgorithm_md5 ;[\n]" -2022-11-14 09:05:22,369 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:checksumValue "f11f670517dc3c0e16fc7a22a81e2d9f"^^xsd:hexBinary .[\n]" -2022-11-14 09:05:22,369 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,369 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,370 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a spdx:Checksum ;[\n]" -2022-11-14 09:05:22,370 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:algorithm spdx:checksumAlgorithm_md5 ;[\n]" -2022-11-14 09:05:22,370 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:checksumValue "8ce143c04440dd4d5bd4eb2e76b33008"^^xsd:hexBinary .[\n]" -2022-11-14 09:05:22,370 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,370 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,370 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a spdx:Checksum ;[\n]" -2022-11-14 09:05:22,370 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:algorithm spdx:checksumAlgorithm_md5 ;[\n]" -2022-11-14 09:05:22,370 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:checksumValue "cae43aec70879031f3b619583f4c4103"^^xsd:hexBinary .[\n]" -2022-11-14 09:05:22,370 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,370 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,370 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a spdx:Checksum ;[\n]" -2022-11-14 09:05:22,370 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:algorithm spdx:checksumAlgorithm_md5 ;[\n]" -2022-11-14 09:05:22,370 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:checksumValue "aff85a617cb566d9a65683e49c00b3a3"^^xsd:hexBinary .[\n]" -2022-11-14 09:05:22,370 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,370 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,370 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a spdx:Checksum ;[\n]" -2022-11-14 09:05:22,370 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:algorithm spdx:checksumAlgorithm_md5 ;[\n]" -2022-11-14 09:05:22,370 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:checksumValue "233e71d0590c8484df1841ac7a614344"^^xsd:hexBinary .[\n]" -2022-11-14 09:05:22,370 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,370 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,370 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a spdx:Checksum ;[\n]" -2022-11-14 09:05:22,370 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:algorithm spdx:checksumAlgorithm_md5 ;[\n]" -2022-11-14 09:05:22,370 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:checksumValue "9444fc15c77fada62cd8" -2022-11-14 09:05:22,370 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "29fc19200547"^^xsd:hexBinary .[\n]" -2022-11-14 09:05:22,370 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,370 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,370 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a spdx:Checksum ;[\n]" -2022-11-14 09:05:22,370 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:algorithm spdx:checksumAlgorithm_md5 ;[\n]" -2022-11-14 09:05:22,370 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:checksumValue "39860a740196740468247913b55cd505"^^xsd:hexBinary .[\n]" -2022-11-14 09:05:22,370 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,370 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,370 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a spdx:Checksum ;[\n]" -2022-11-14 09:05:22,370 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:algorithm spdx:checksumAlgorithm_md5 ;[\n]" -2022-11-14 09:05:22,370 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:checksumValue "fbd228e85115d4b417679f429d630626"^^xsd:hexBinary .[\n]" -2022-11-14 09:05:22,370 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,370 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,370 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a spdx:Checksum ;[\n]" -2022-11-14 09:05:22,370 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:algorithm spdx:checksumAlgorithm_md5 ;[\n]" -2022-11-14 09:05:22,370 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:checksumValue "f8a39963d54d8148c6222436db18983e"^^xsd:hexBinary .[\n]" -2022-11-14 09:05:22,370 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,370 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,370 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a spdx:Checksum ;[\n]" -2022-11-14 09:05:22,370 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:algorithm spdx:checksumAlgorithm_md5 ;[\n]" -2022-11-14 09:05:22,370 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:checksumValue "e349b0cf1df7b2287e44d50ca31f9c7b"^^xsd:hexBinary .[\n]" -2022-11-14 09:05:22,370 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,370 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,370 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a spdx:Checksum ;[\n]" -2022-11-14 09:05:22,370 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:algorithm spdx:checksumAlgorithm_md5 ;[\n]" -2022-11-14 09:05:22,370 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:checksumValue "56fca6fa1d2ec7462bf44af0811fdcaa"^^xsd:hexBinary .[\n]" -2022-11-14 09:05:22,370 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,370 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,370 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a spdx:Checksum ;[\n]" -2022-11-14 09:05:22,370 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:algorithm spdx:checksumAlgorithm_md5 ;[\n]" -2022-11-14 09:05:22,370 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:checksumValue "302edfe3355b557b94afe8a1d161a118"^^xsd:hexBinary .[\n]" -2022-11-14 09:05:22,370 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,370 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,370 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a spdx:Checksum ;[\n]" -2022-11-14 09:05:22,370 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:algorithm spdx:checksumAlgorithm_md5 ;[\n]" -2022-11-14 09:05:22,370 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:checksumValue "ed08b7107080e903817a0b922d3c2346"^^xsd:hexBinary .[\n]" -2022-11-14 09:05:22,370 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,370 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,370 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a spdx:Checksum ;[\n]" -2022-11-14 09:05:22,370 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:algorithm spdx:checksumAlgorithm_md5 ;[\n]" -2022-11-14 09:05:22,370 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:checksumValue "d9619b328c7b66c765efa8ea7e48bcb7"^^xsd:hexBinary .[\n]" -2022-11-14 09:05:22,370 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,370 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,370 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a spdx:Checksum ;[\n]" -2022-11-14 09:05:22,370 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:algorithm spdx:checksumAlgorithm_md5 ;[\n]" -2022-11-14 09:05:22,370 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:checksumValue "d9a441ca7d85c2fd7d4cc4895dfa24d6"^^xsd:hexBinary .[\n]" -2022-11-14 09:05:22,370 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,370 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,370 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a spdx:Checksum ;[\n]" -2022-11-14 09:05:22,370 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:algorithm spdx:checksumAlgorithm_md5 ;[\n]" -2022-11-14 09:05:22,370 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:checksumValue "638cbae6f147d3d21687bf84e32ece3d"^^xsd:hexBinary .[\n]" -2022-11-14 09:05:22,370 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,370 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,370 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a spdx:Checksum ;[\n]" -2022-11-14 09:05:22,370 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:algorithm spdx:checksumAlgorithm_md5 ;[\n]" -2022-11-14 09:05:22,370 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:checksumValue "f8917584171c3e52fbc6a4ef79007283"^^xsd:hexBinary .[\n]" -2022-11-14 09:05:22,370 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,370 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,370 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a spdx:Checksum ;[\n]" -2022-11-14 09:05:22,370 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:algorithm spdx:checksumAlgorithm_md5 ;[\n]" -2022-11-14 09:05:22,370 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:checksumValue "9e4050e25e688ebee028071e5b4efb8f"^^xsd:hexBinary .[\n]" -2022-11-14 09:05:22,370 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,370 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,370 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a spdx:Checksum ;[\n]" -2022-11-14 09:05:22,370 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:algorithm spdx:checksumAlgorithm_md5 ;[\n]" -2022-11-14 09:05:22,370 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:checksumValue "262ed98b0b4a402b4b8462410c624aef"^^xsd:hexBinary .[\n]" -2022-11-14 09:05:22,370 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,370 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,371 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a spdx:Checksum ;[\n]" -2022-11-14 09:05:22,371 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:algorithm spdx:checksumAlgorithm_md5 ;[\n]" -2022-11-14 09:05:22,371 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:checksumValue "3a15302337017608a3008f49cb31456a"^^xsd:hexBinary .[\n]" -2022-11-14 09:05:22,372 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,372 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,372 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a spdx:Checksum ;[\n]" -2022-11-14 09:05:22,372 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:algorithm spdx:checksumAlgorithm_md5 ;[\n]" -2022-11-14 09:05:22,372 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:checksumValue "eb8faa8cf104b4ae8f1143f1c76103c9"^^xsd:hexBinary .[\n]" -2022-11-14 09:05:22,372 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,372 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,372 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a spdx:Checksum ;[\n]" -2022-11-14 09:05:22,372 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:algorithm spdx:checksumAlgorithm_md5 ;[\n]" -2022-11-14 09:05:22,372 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:checksumValue "7292022e5b26d854e95cab4d4c93ca8e"^^xsd:hexBinary .[\n]" -2022-11-14 09:05:22,372 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,372 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,372 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a spdx:Checksum ;[\n]" -2022-11-14 09:05:22,372 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:algorithm spdx:checksumAlgorithm_md5 ;[\n]" -2022-11-14 09:05:22,372 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:checksumValue "e72e4735bb0988943489b78b61965347"^^xsd:hexBinary .[\n]" -2022-11-14 09:05:22,372 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,372 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,372 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a spdx:Checksum ;[\n]" -2022-11-14 09:05:22,372 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:algorithm spdx:checksumAlgorithm_md5 ;[\n]" -2022-11-14 09:05:22,372 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:checks" -2022-11-14 09:05:22,373 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "umValue "1816d4407296f6f13e5494ca12f9a1ee"^^xsd:hexBinary .[\n]" -2022-11-14 09:05:22,373 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,373 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,373 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a spdx:Checksum ;[\n]" -2022-11-14 09:05:22,373 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:algorithm spdx:checksumAlgorithm_md5 ;[\n]" -2022-11-14 09:05:22,373 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:checksumValue "d659e60e3175384b3c43cbd13aa4738e"^^xsd:hexBinary .[\n]" -2022-11-14 09:05:22,373 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,373 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,373 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a spdx:Checksum ;[\n]" -2022-11-14 09:05:22,373 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:algorithm spdx:checksumAlgorithm_md5 ;[\n]" -2022-11-14 09:05:22,373 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:checksumValue "aaf60c245ed504b77179dbed5af47fe4"^^xsd:hexBinary .[\n]" -2022-11-14 09:05:22,373 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,373 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,373 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a spdx:Checksum ;[\n]" -2022-11-14 09:05:22,373 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:algorithm spdx:checksumAlgorithm_md5 ;[\n]" -2022-11-14 09:05:22,373 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:checksumValue "786eb6da2abedd1f680f3d064b6fa755"^^xsd:hexBinary .[\n]" -2022-11-14 09:05:22,373 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,373 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,373 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a spdx:Checksum ;[\n]" -2022-11-14 09:05:22,373 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:algorithm spdx:checksumAlgorithm_md5 ;[\n]" -2022-11-14 09:05:22,373 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:checksumValue "0bec230ae212b1fce4e8a9cf81ff6908"^^xsd:hexBinary .[\n]" -2022-11-14 09:05:22,373 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,373 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,373 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a spdx:Checksum ;[\n]" -2022-11-14 09:05:22,373 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:algorithm spdx:checksumAlgorithm_md5 ;[\n]" -2022-11-14 09:05:22,373 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:checksumValue "35a9189c784dc25a33320104367e79b4"^^xsd:hexBinary .[\n]" -2022-11-14 09:05:22,373 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,373 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,373 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a spdx:Checksum ;[\n]" -2022-11-14 09:05:22,373 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:algorithm spdx:checksumAlgorithm_md5 ;[\n]" -2022-11-14 09:05:22,373 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:checksumValue "ced1a155da4fd4eb36f1f46ed8ab4565"^^xsd:hexBinary .[\n]" -2022-11-14 09:05:22,373 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,373 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,373 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a spdx:Checksum ;[\n]" -2022-11-14 09:05:22,373 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:algorithm spdx:checksumAlgorithm_md5 ;[\n]" -2022-11-14 09:05:22,373 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:checksumValue "307f1d49c5b612626eab283f99c66c20"^^xsd:hexBinary .[\n]" -2022-11-14 09:05:22,373 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,373 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,373 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a spdx:Checksum ;[\n]" -2022-11-14 09:05:22,373 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:algorithm spdx:checksumAlgorithm_md5 ;[\n]" -2022-11-14 09:05:22,373 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:checksumValue "c0422548d6a15ee9bda41a6b78619fed"^^xsd:hexBinary .[\n]" -2022-11-14 09:05:22,373 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,373 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,373 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a spdx:Checksum ;[\n]" -2022-11-14 09:05:22,373 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:algorithm spdx:checksumAlgorithm_md5 ;[\n]" -2022-11-14 09:05:22,373 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:checksumValue "0513caf049c2a2ce42ef41576b2" -2022-11-14 09:05:22,374 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "60589"^^xsd:hexBinary .[\n]" -2022-11-14 09:05:22,374 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,374 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,374 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a spdx:Checksum ;[\n]" -2022-11-14 09:05:22,374 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:algorithm spdx:checksumAlgorithm_md5 ;[\n]" -2022-11-14 09:05:22,374 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:checksumValue "963c3f5dc8340897395f8ccd20284566"^^xsd:hexBinary .[\n]" -2022-11-14 09:05:22,374 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,374 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,374 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a spdx:Checksum ;[\n]" -2022-11-14 09:05:22,374 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:algorithm spdx:checksumAlgorithm_md5 ;[\n]" -2022-11-14 09:05:22,374 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:checksumValue "eb489271a7b230085889b89da21cf84f"^^xsd:hexBinary .[\n]" -2022-11-14 09:05:22,374 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,374 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,374 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a spdx:Checksum ;[\n]" -2022-11-14 09:05:22,374 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:algorithm spdx:checksumAlgorithm_md5 ;[\n]" -2022-11-14 09:05:22,374 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:checksumValue "1bf56bcb643a52591e4fa7ba391738dd"^^xsd:hexBinary .[\n]" -2022-11-14 09:05:22,374 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,374 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,374 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a spdx:Checksum ;[\n]" -2022-11-14 09:05:22,374 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:algorithm spdx:checksumAlgorithm_md5 ;[\n]" -2022-11-14 09:05:22,374 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:checksumValue "c67f838a691dfcd33bc94b2b1a1709dd"^^xsd:hexBinary .[\n]" -2022-11-14 09:05:22,374 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,374 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,374 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a spdx:Checksum ;[\n]" -2022-11-14 09:05:22,374 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:algorithm spdx:checksumAlgorithm_md5 ;[\n]" -2022-11-14 09:05:22,374 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:checksumValue "caf8c4ea1c456a63a21abdf9bef024e6"^^xsd:hexBinary .[\n]" -2022-11-14 09:05:22,374 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,374 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,374 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a spdx:Checksum ;[\n]" -2022-11-14 09:05:22,374 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:algorithm spdx:checksumAlgorithm_md5 ;[\n]" -2022-11-14 09:05:22,374 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:checksumValue "29fc0ad1292283de9f1f975caf9e3c6c"^^xsd:hexBinary .[\n]" -2022-11-14 09:05:22,374 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,374 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,374 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a spdx:Checksum ;[\n]" -2022-11-14 09:05:22,374 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:algorithm spdx:checksumAlgorithm_md5 ;[\n]" -2022-11-14 09:05:22,374 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:checksumValue "146df67eadffc83dc4073529850ad0cb"^^xsd:hexBinary .[\n]" -2022-11-14 09:05:22,374 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,374 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,374 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a spdx:Checksum ;[\n]" -2022-11-14 09:05:22,374 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:algorithm spdx:checksumAlgorithm_md5 ;[\n]" -2022-11-14 09:05:22,374 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:checksumValue "faad68db26184d149c4ef9d340cb3886"^^xsd:hexBinary .[\n]" -2022-11-14 09:05:22,374 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,374 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,374 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a spdx:Checksum ;[\n]" -2022-11-14 09:05:22,374 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:algorithm spdx:checksumAlgorithm_md5 ;[\n]" -2022-11-14 09:05:22,374 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:checksumValue "84bd4c4728aac5b441db83e2288691b4"^^xsd:hexBinary .[\n]" -2022-11-14 09:05:22,374 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,374 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,375 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a spdx:Checksum ;[\n]" -2022-11-14 09:05:22,375 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:algorithm spdx:checksumAlgorithm_md5 ;[\n]" -2022-11-14 09:05:22,375 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:checksumValue "0eb49f8b6ecdbe0dcccc054497565256"^^xsd:hexBinary .[\n]" -2022-11-14 09:05:22,375 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,375 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,375 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a spdx:Checksum ;[\n]" -2022-11-14 09:05:22,375 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:algorithm spdx:checksumAlgorithm_md5 ;[\n]" -2022-11-14 09:05:22,375 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:checksumValue "3f5b546ac6fa7eb98eef43bfe515949d"^^xsd:hexBinary .[\n]" -2022-11-14 09:05:22,375 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,375 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,375 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a spdx:Checksum ;[\n]" -2022-11-14 09:05:22,375 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:algorithm spdx:checksumAlgorithm_md5 ;[\n]" -2022-11-14 09:05:22,375 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:checksumValue "5dfd5a82110dd06ec4c23665a34b69a4"^^xsd:hexBinary .[\n]" -2022-11-14 09:05:22,375 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,375 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,375 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a spdx:Checksum ;[\n]" -2022-11-14 09:05:22,375 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:algorithm spdx:checksumAlgorithm_md5 ;[\n]" -2022-11-14 09:05:22,375 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:checksumValue "0bde51ad6099e859e9e65ae89c5dda6b"^^xsd:hexBinary .[\n]" -2022-11-14 09:05:22,375 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,375 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,375 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a spdx:Checksum ;[\n]" -2022-11-14 09:05:22,375 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:algorithm " -2022-11-14 09:05:22,376 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:checksumAlgorithm_md5 ;[\n]" -2022-11-14 09:05:22,376 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:checksumValue "87adc9b99075d28edc82c94c25a43fca"^^xsd:hexBinary .[\n]" -2022-11-14 09:05:22,376 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,376 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,376 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a spdx:Checksum ;[\n]" -2022-11-14 09:05:22,376 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:algorithm spdx:checksumAlgorithm_md5 ;[\n]" -2022-11-14 09:05:22,376 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:checksumValue "708b4d98fe4234d68d14afc8b47f39d2"^^xsd:hexBinary .[\n]" -2022-11-14 09:05:22,376 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,376 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,376 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a spdx:Checksum ;[\n]" -2022-11-14 09:05:22,376 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:algorithm spdx:checksumAlgorithm_md5 ;[\n]" -2022-11-14 09:05:22,376 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:checksumValue "e6e2c0351991cf4681a0e91399fd775a"^^xsd:hexBinary .[\n]" -2022-11-14 09:05:22,376 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,376 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,376 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a spdx:Checksum ;[\n]" -2022-11-14 09:05:22,376 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:algorithm spdx:checksumAlgorithm_md5 ;[\n]" -2022-11-14 09:05:22,376 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:checksumValue "04a8bb552af5fb394958306a1a0e02bf"^^xsd:hexBinary .[\n]" -2022-11-14 09:05:22,376 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,376 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,376 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a spdx:Checksum ;[\n]" -2022-11-14 09:05:22,376 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:algorithm spdx:checksumAlgorithm_md5 ;[\n]" -2022-11-14 09:05:22,376 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:checksumValue "346fe833cd6ba30cf049c3abc184eb64"^^xsd:hexBinary .[\n]" -2022-11-14 09:05:22,376 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,376 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,376 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a spdx:Checksum ;[\n]" -2022-11-14 09:05:22,376 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:algorithm spdx:checksumAlgorithm_md5 ;[\n]" -2022-11-14 09:05:22,376 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:checksumValue "64b220543f8a3166fd8957b332e61b95"^^xsd:hexBinary .[\n]" -2022-11-14 09:05:22,376 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,376 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,376 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a spdx:Checksum ;[\n]" -2022-11-14 09:05:22,376 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:algorithm spdx:checksumAlgorithm_md5 ;[\n]" -2022-11-14 09:05:22,376 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:checksumValue "88e32b6a4cad67de446ece4a0992fe71"^^xsd:hexBinary .[\n]" -2022-11-14 09:05:22,376 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,376 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,376 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a spdx:Checksum ;[\n]" -2022-11-14 09:05:22,376 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:algorithm spdx:checksumAlgorithm_md5 ;[\n]" -2022-11-14 09:05:22,376 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:checksumValue "f8fbd202062bf929be7553dd0c4eb8ed"^^xsd:hexBinary .[\n]" -2022-11-14 09:05:22,376 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,376 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,376 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a spdx:Checksum ;[\n]" -2022-11-14 09:05:22,376 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:algorithm spdx:checksumAlgorithm_md5 ;[\n]" -2022-11-14 09:05:22,376 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:checksumValue "7730960fb3e8d56b377613a6256ef66a"^^xsd:hexBinary .[\n]" -2022-11-14 09:05:22,376 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,376 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,376 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a spdx:Checksum ;[\n]" -2022-11-14 09:05:22,376 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:algorithm spdx:checksumAlgorithm_md5 ;[\n]" -2022-11-14 09:05:22,376 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:checksumValue "72447998e36a6fe41dd3a0" -2022-11-14 09:05:22,377 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "28c03de19d"^^xsd:hexBinary .[\n]" -2022-11-14 09:05:22,377 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,377 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,377 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a spdx:Checksum ;[\n]" -2022-11-14 09:05:22,377 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:algorithm spdx:checksumAlgorithm_md5 ;[\n]" -2022-11-14 09:05:22,377 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:checksumValue "0296eec353ce04f626796d8058dfd0cc"^^xsd:hexBinary .[\n]" -2022-11-14 09:05:22,377 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,377 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,377 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a spdx:Checksum ;[\n]" -2022-11-14 09:05:22,377 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:algorithm spdx:checksumAlgorithm_md5 ;[\n]" -2022-11-14 09:05:22,377 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:checksumValue "0eb36a55d42774a7382c3850b3aecbe3"^^xsd:hexBinary .[\n]" -2022-11-14 09:05:22,377 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,377 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,377 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a spdx:Checksum ;[\n]" -2022-11-14 09:05:22,377 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:algorithm spdx:checksumAlgorithm_md5 ;[\n]" -2022-11-14 09:05:22,377 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:checksumValue "1ab8b9570ca4e77641ca652ba0116661"^^xsd:hexBinary .[\n]" -2022-11-14 09:05:22,377 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,377 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,377 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a spdx:Checksum ;[\n]" -2022-11-14 09:05:22,377 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:algorithm spdx:checksumAlgorithm_md5 ;[\n]" -2022-11-14 09:05:22,377 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:checksumValue "2cd882b88a732465a629f218ee1d2faf"^^xsd:hexBinary .[\n]" -2022-11-14 09:05:22,377 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,377 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,377 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a spdx:Checksum ;[\n]" -2022-11-14 09:05:22,377 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:algorithm spdx:checksumAlgorithm_md5 ;[\n]" -2022-11-14 09:05:22,377 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:checksumValue "0afecd79544efbcabecb0ff22987ad9a"^^xsd:hexBinary .[\n]" -2022-11-14 09:05:22,377 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,377 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,377 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a spdx:Checksum ;[\n]" -2022-11-14 09:05:22,377 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:algorithm spdx:checksumAlgorithm_md5 ;[\n]" -2022-11-14 09:05:22,377 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:checksumValue "3024d1f72cc51fcf6d9ec8945cbe491d"^^xsd:hexBinary .[\n]" -2022-11-14 09:05:22,377 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,377 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,377 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a spdx:Checksum ;[\n]" -2022-11-14 09:05:22,377 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:algorithm spdx:checksumAlgorithm_md5 ;[\n]" -2022-11-14 09:05:22,377 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:checksumValue "8d8084af8b7ca4914cfec8eca941006b"^^xsd:hexBinary .[\n]" -2022-11-14 09:05:22,377 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,377 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,377 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a spdx:Checksum ;[\n]" -2022-11-14 09:05:22,377 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:algorithm spdx:checksumAlgorithm_md5 ;[\n]" -2022-11-14 09:05:22,377 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:checksumValue "81cf8d04970e3ed2f6cfc18c4a49d47d"^^xsd:hexBinary .[\n]" -2022-11-14 09:05:22,377 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,377 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,377 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a spdx:Checksum ;[\n]" -2022-11-14 09:05:22,377 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:algorithm spdx:chec" -2022-11-14 09:05:22,378 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "ksumAlgorithm_md5 ;[\n]" -2022-11-14 09:05:22,378 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:checksumValue "4c6570f4b125a9041b1dc09d50eb4f65"^^xsd:hexBinary .[\n]" -2022-11-14 09:05:22,378 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,378 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,378 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a spdx:Checksum ;[\n]" -2022-11-14 09:05:22,378 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:algorithm spdx:checksumAlgorithm_md5 ;[\n]" -2022-11-14 09:05:22,378 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:checksumValue "88f0593cb1a125d0bf982b6c84b754a8"^^xsd:hexBinary .[\n]" -2022-11-14 09:05:22,378 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,378 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,378 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a spdx:Checksum ;[\n]" -2022-11-14 09:05:22,378 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:algorithm spdx:checksumAlgorithm_md5 ;[\n]" -2022-11-14 09:05:22,378 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:checksumValue "fd0b9f78d5c3294b0f1a372dccabc6a9"^^xsd:hexBinary .[\n]" -2022-11-14 09:05:22,378 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,378 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,378 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a spdx:Checksum ;[\n]" -2022-11-14 09:05:22,378 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:algorithm spdx:checksumAlgorithm_md5 ;[\n]" -2022-11-14 09:05:22,378 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:checksumValue "d480947f411850b6b81ed058e3b8b4fa"^^xsd:hexBinary .[\n]" -2022-11-14 09:05:22,378 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,378 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,378 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a spdx:Checksum ;[\n]" -2022-11-14 09:05:22,378 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:algorithm spdx:checksumAlgorithm_md5 ;[\n]" -2022-11-14 09:05:22,378 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:checksumValue "33c63d3e2a3966eaa450801ad2615119"^^xsd:hexBinary .[\n]" -2022-11-14 09:05:22,378 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,378 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,379 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a spdx:Checksum ;[\n]" -2022-11-14 09:05:22,379 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:algorithm spdx:checksumAlgorithm_md5 ;[\n]" -2022-11-14 09:05:22,379 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:checksumValue "036a99695d197d6c6ab66ff0fea737e7"^^xsd:hexBinary .[\n]" -2022-11-14 09:05:22,379 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,379 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,379 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a spdx:Checksum ;[\n]" -2022-11-14 09:05:22,379 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:algorithm spdx:checksumAlgorithm_md5 ;[\n]" -2022-11-14 09:05:22,379 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:checksumValue "dca91194c74f4757f41bec593c917ab0"^^xsd:hexBinary .[\n]" -2022-11-14 09:05:22,379 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,379 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,379 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a spdx:Checksum ;[\n]" -2022-11-14 09:05:22,379 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:algorithm spdx:checksumAlgorithm_md5 ;[\n]" -2022-11-14 09:05:22,379 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:checksumValue "cb64dee43b068b79e9ccc3c7d90ab975"^^xsd:hexBinary .[\n]" -2022-11-14 09:05:22,379 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,379 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,379 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a spdx:Checksum ;[\n]" -2022-11-14 09:05:22,379 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:algorithm spdx:checksumAlgorithm_md5 ;[\n]" -2022-11-14 09:05:22,379 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:checksumValue "14d3e4165b2b454783b3043271b89c65"^^xsd:hexBinary .[\n]" -2022-11-14 09:05:22,379 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,379 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,379 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a spdx:Checksum ;[\n]" -2022-11-14 09:05:22,379 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:algorithm spdx:checksumAlgorithm_md5 ;[\n]" -2022-11-14 09:05:22,379 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:checksumValue "7b872c15e218745b1ace1cbea76f2461"^^xsd:hexBinary .[\n]" -2022-11-14 09:05:22,379 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,379 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,379 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a spdx:Checksum ;[\n]" -2022-11-14 09:05:22,379 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:algorithm spdx:checksumAlgorithm_md5 ;[\n]" -2022-11-14 09:05:22,379 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:checksumValue "e4b9de8e50b1104745b6c72da8c65bea"^^xsd:hexBinary .[\n]" -2022-11-14 09:05:22,379 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,379 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,379 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a spdx:Checksum ;[\n]" -2022-11-14 09:05:22,379 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:algorithm spdx:checksumAlgorithm_md5 ;[\n]" -2022-11-14 09:05:22,379 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:checksumValue "9578f3aa05db5f8d9208c95abd1cadf8"^^xsd:hexBinary .[\n]" -2022-11-14 09:05:22,379 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,379 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,379 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a spdx:Checksum ;[\n]" -2022-11-14 09:05:22,379 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:algorithm spdx:checksumAlgorithm_md5 ;[\n]" -2022-11-14 09:05:22,379 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:checksumValue "99f0c6411313c866bd5e03c5ee413e76"^^xsd:hexBinary .[\n]" -2022-11-14 09:05:22,379 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,379 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,379 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a spdx:Checksum ;[\n]" -2022-11-14 09:05:22,379 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:algorithm spdx:checksumAlgorithm_md5 ;[\n]" -2022-11-14 09:05:22,379 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:checksumValue "6d1b25b63d49ef2f12bc7b66d0c5e052"^^xsd:hexBinary ." -2022-11-14 09:05:22,380 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,380 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,380 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,380 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a spdx:Checksum ;[\n]" -2022-11-14 09:05:22,380 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:algorithm spdx:checksumAlgorithm_md5 ;[\n]" -2022-11-14 09:05:22,380 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:checksumValue "36fc9a205def42adefd8120b987c2a5f"^^xsd:hexBinary .[\n]" -2022-11-14 09:05:22,380 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,380 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,380 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a spdx:Checksum ;[\n]" -2022-11-14 09:05:22,380 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:algorithm spdx:checksumAlgorithm_md5 ;[\n]" -2022-11-14 09:05:22,380 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:checksumValue "c6391d679f4b49fc1c97b74b48976ced"^^xsd:hexBinary .[\n]" -2022-11-14 09:05:22,380 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,380 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,380 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a spdx:Checksum ;[\n]" -2022-11-14 09:05:22,380 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:algorithm spdx:checksumAlgorithm_md5 ;[\n]" -2022-11-14 09:05:22,380 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:checksumValue "51cbbabe55edb9503e3a82482579d60d"^^xsd:hexBinary .[\n]" -2022-11-14 09:05:22,380 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,380 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,380 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a spdx:Checksum ;[\n]" -2022-11-14 09:05:22,380 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:algorithm spdx:checksumAlgorithm_md5 ;[\n]" -2022-11-14 09:05:22,380 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:checksumValue "99ded2067ac3133e8d7eb8f61b387b9d"^^xsd:hexBinary .[\n]" -2022-11-14 09:05:22,380 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,380 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,380 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a spdx:Checksum ;[\n]" -2022-11-14 09:05:22,380 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:algorithm spdx:checksumAlgorithm_md5 ;[\n]" -2022-11-14 09:05:22,380 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:checksumValue "2af5a58725093788b6bd2cbcbc433461"^^xsd:hexBinary .[\n]" -2022-11-14 09:05:22,380 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,380 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,380 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a spdx:Checksum ;[\n]" -2022-11-14 09:05:22,380 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:algorithm spdx:checksumAlgorithm_md5 ;[\n]" -2022-11-14 09:05:22,380 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:checksumValue "7303aa78b0cf8c0b6d656dbdc3ea4c5d"^^xsd:hexBinary .[\n]" -2022-11-14 09:05:22,380 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,380 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,380 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a spdx:Checksum ;[\n]" -2022-11-14 09:05:22,380 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:algorithm spdx:checksumAlgorithm_md5 ;[\n]" -2022-11-14 09:05:22,380 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:checksumValue "c491b8e0000501d5159570ec9d24d4f9"^^xsd:hexBinary .[\n]" -2022-11-14 09:05:22,380 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,380 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,380 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a spdx:Checksum ;[\n]" -2022-11-14 09:05:22,380 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:algorithm spdx:checksumAlgorithm_md5 ;[\n]" -2022-11-14 09:05:22,380 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:checksumValue "34fb2905ac3c6e88b8800cf91dabf8d5"^^xsd:hexBinary .[\n]" -2022-11-14 09:05:22,380 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,380 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,380 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a spdx:Checksum ;[\n]" -2022-11-14 09:05:22,380 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:algorithm spdx:checksumAlgorithm_md5 ;[\n]" -2022-11-14 09:05:22,380 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:checksumValue "b840843545e9c9c5b1c9ccffa9f0fdfe"^^xsd:hexBinary .[\n]" -2022-11-14 09:05:22,380 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,380 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,381 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a spdx:Checksum ;[\n]" -2022-11-14 09:05:22,381 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:algorithm spdx:checksumAlgorithm_md5 ;[\n]" -2022-11-14 09:05:22,381 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:checksumValue "ee5d801b8ebee0718634f1df7bfdc38e"^^xsd:hexBinary .[\n]" -2022-11-14 09:05:22,381 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,381 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,381 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a spdx:Checksum ;[\n]" -2022-11-14 09:05:22,381 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:algorithm spdx:checksumAlgorithm_md5 ;[\n]" -2022-11-14 09:05:22,381 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:checksumValue "a195d517e895441d8dd45d33d12aa68f"^^xsd:hexBinary .[\n]" -2022-11-14 09:05:22,381 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,381 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,381 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a spdx:Checksum ;[\n]" -2022-11-14 09:05:22,381 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:algorithm spdx:checksumAlgorithm_md5 ;[\n]" -2022-11-14 09:05:22,381 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:checksumValue "c2b223ee349e8160f4d324386f96d9fd"^^xsd:hexBinary .[\n]" -2022-11-14 09:05:22,381 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,381 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,381 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a spdx:Checksum ;[\n]" -2022-11-14 09:05:22,381 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:algorithm spdx:checksumAlgorithm_md5 ;[\n]" -2022-11-14 09:05:22,381 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:checksumValue "33f20de99e607269e3539caaff81c0c4"^^xsd:hexBinary .[\n]" -2022-11-14 09:05:22,381 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,381 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,381 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a spdx:Checksum ;[\n]" -2022-11-14 09:05:22,381 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:algorithm spdx:checksumA" -2022-11-14 09:05:22,381 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "lgorithm_md5 ;[\n]" -2022-11-14 09:05:22,381 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:checksumValue "1a0d0546d79b3bab09df9109ee4af5a0"^^xsd:hexBinary .[\n]" -2022-11-14 09:05:22,381 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,381 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,381 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a spdx:Checksum ;[\n]" -2022-11-14 09:05:22,381 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:algorithm spdx:checksumAlgorithm_md5 ;[\n]" -2022-11-14 09:05:22,381 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:checksumValue "b3a44ac8fec0d0f1ef657f8fe1e728e9"^^xsd:hexBinary .[\n]" -2022-11-14 09:05:22,381 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,381 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,381 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a spdx:Checksum ;[\n]" -2022-11-14 09:05:22,381 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:algorithm spdx:checksumAlgorithm_md5 ;[\n]" -2022-11-14 09:05:22,381 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:checksumValue "3eca8b4c19f3a391388e25007030e5fb"^^xsd:hexBinary .[\n]" -2022-11-14 09:05:22,381 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,381 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,381 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a spdx:Checksum ;[\n]" -2022-11-14 09:05:22,381 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:algorithm spdx:checksumAlgorithm_md5 ;[\n]" -2022-11-14 09:05:22,381 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:checksumValue "b1dc416c99a9688918167b0b14c8302e"^^xsd:hexBinary .[\n]" -2022-11-14 09:05:22,381 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,381 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,381 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a spdx:Checksum ;[\n]" -2022-11-14 09:05:22,381 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:algorithm spdx:checksumAlgorithm_md5 ;[\n]" -2022-11-14 09:05:22,381 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:checksumValue "bf32149e109471e14b98940ba6779344"^^xsd:hexBinary .[\n]" -2022-11-14 09:05:22,381 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,381 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,382 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a spdx:Checksum ;[\n]" -2022-11-14 09:05:22,382 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:algorithm spdx:checksumAlgorithm_md5 ;[\n]" -2022-11-14 09:05:22,382 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:checksumValue "f88bd148592c4f82c739e26b34eb76d5"^^xsd:hexBinary .[\n]" -2022-11-14 09:05:22,382 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,382 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,382 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a spdx:Checksum ;[\n]" -2022-11-14 09:05:22,382 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:algorithm spdx:checksumAlgorithm_md5 ;[\n]" -2022-11-14 09:05:22,382 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:checksumValue "5038dcb50285e47cdbc72b63f8f3f3e4"^^xsd:hexBinary .[\n]" -2022-11-14 09:05:22,382 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,382 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,382 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a spdx:Checksum ;[\n]" -2022-11-14 09:05:22,382 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:algorithm spdx:checksumAlgorithm_md5 ;[\n]" -2022-11-14 09:05:22,382 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:checksumValue "fdd25cb0fcc2ccdd16625bb02631ca8d"^^xsd:hexBinary .[\n]" -2022-11-14 09:05:22,382 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,382 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,382 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a spdx:Checksum ;[\n]" -2022-11-14 09:05:22,382 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:algorithm spdx:checksumAlgorithm_md5 ;[\n]" -2022-11-14 09:05:22,382 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:checksumValue "745b232fc0ab62fe1d9a260cf6d847da"^^xsd:hexBinary .[\n]" -2022-11-14 09:05:22,382 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,382 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,382 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a spdx:Checksum ;[\n]" -2022-11-14 09:05:22,382 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:algorithm spdx:checksumAlgorithm_md5 ;[\n]" -2022-11-14 09:05:22,382 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:checksumValue "94a9bbb8a7eda9dbcc5757213bb7bf09"^^xsd:he" -2022-11-14 09:05:22,383 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "xBinary .[\n]" -2022-11-14 09:05:22,383 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,383 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,383 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a spdx:Checksum ;[\n]" -2022-11-14 09:05:22,383 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:algorithm spdx:checksumAlgorithm_md5 ;[\n]" -2022-11-14 09:05:22,383 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:checksumValue "dd4bc936178fca782c669d8e6f228e48"^^xsd:hexBinary .[\n]" -2022-11-14 09:05:22,383 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,383 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,383 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a spdx:Checksum ;[\n]" -2022-11-14 09:05:22,383 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:algorithm spdx:checksumAlgorithm_md5 ;[\n]" -2022-11-14 09:05:22,383 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:checksumValue "ac23e41a77f40756953199e7a7af4578"^^xsd:hexBinary .[\n]" -2022-11-14 09:05:22,383 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,383 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,383 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a spdx:Checksum ;[\n]" -2022-11-14 09:05:22,383 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:algorithm spdx:checksumAlgorithm_md5 ;[\n]" -2022-11-14 09:05:22,383 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:checksumValue "6e34f3490345da5f2d3f4da71c7e0fb7"^^xsd:hexBinary .[\n]" -2022-11-14 09:05:22,383 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,383 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,383 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a spdx:Checksum ;[\n]" -2022-11-14 09:05:22,383 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:algorithm spdx:checksumAlgorithm_md5 ;[\n]" -2022-11-14 09:05:22,383 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:checksumValue "819ec5a1df9253f7f3fd1ae1c14ac0bd"^^xsd:hexBinary .[\n]" -2022-11-14 09:05:22,383 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,383 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,383 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a spdx:Checksum ;[\n]" -2022-11-14 09:05:22,383 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:algorithm spdx:checksumAlgorithm_md5 ;[\n]" -2022-11-14 09:05:22,383 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:checksumValue "abea80e71cabb509e263f899c2ed1940"^^xsd:hexBinary .[\n]" -2022-11-14 09:05:22,383 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,383 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,383 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a spdx:Checksum ;[\n]" -2022-11-14 09:05:22,383 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:algorithm spdx:checksumAlgorithm_md5 ;[\n]" -2022-11-14 09:05:22,383 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:checksumValue "2bb51107cd435ca83083cdc44927350e"^^xsd:hexBinary .[\n]" -2022-11-14 09:05:22,383 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,383 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,383 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a spdx:Checksum ;[\n]" -2022-11-14 09:05:22,383 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:algorithm spdx:checksumAlgorithm_md5 ;[\n]" -2022-11-14 09:05:22,383 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:checksumValue "8b91c949701fe44d9309be5c254ad3d3"^^xsd:hexBinary .[\n]" -2022-11-14 09:05:22,383 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,383 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,383 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a spdx:Checksum ;[\n]" -2022-11-14 09:05:22,383 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:algorithm spdx:checksumAlgorithm_md5 ;[\n]" -2022-11-14 09:05:22,383 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:checksumValue "bfe8921c3948becf7d148516f62ce232"^^xsd:hexBinary .[\n]" -2022-11-14 09:05:22,383 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,383 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,383 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a spdx:Checksum ;[\n]" -2022-11-14 09:05:22,383 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:algorithm spdx:checksumAlgorithm_md5 ;[\n]" -2022-11-14 09:05:22,383 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:checksumValue "54f3113ec74ed4346fd72cc7dd294657"^^xsd:hexBinary .[\n]" -2022-11-14 09:05:22,383 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,383 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,384 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a spdx:Checksum ;[\n]" -2022-11-14 09:05:22,384 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:algorithm spdx:checksumAlgorithm_md5 ;[\n]" -2022-11-14 09:05:22,384 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:checksumValue "6ffd161db2240f6fa47145c20efea4de"^^xsd:hexBinary .[\n]" -2022-11-14 09:05:22,384 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,384 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,384 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a spdx:Checksum ;[\n]" -2022-11-14 09:05:22,384 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:algorithm spdx:checksumAlgorithm_md5 ;[\n]" -2022-11-14 09:05:22,384 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:checksumValue "2e9e322cab90073ee710d6f3dd56d0fc"^^xsd:hexBinary .[\n]" -2022-11-14 09:05:22,384 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,384 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,384 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a spdx:Checksum ;[\n]" -2022-11-14 09:05:22,384 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:algorithm spdx:checksumAlgorithm_md5 ;[\n]" -2022-11-14 09:05:22,384 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:checksumValue "6a1544f2a6abc3db5029745e4af68661"^^xsd:hexBinary .[\n]" -2022-11-14 09:05:22,384 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,384 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,384 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a spdx:Checksum ;[\n]" -2022-11-14 09:05:22,384 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:algorithm spdx:checksumAlgorithm_md5 ;[\n]" -2022-11-14 09:05:22,384 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:checksumValue "e1c476dfea804605700fb738c45b72dc"^^xsd:hexBinary .[\n]" -2022-11-14 09:05:22,384 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,384 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,384 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a spdx:Checksum ;[\n]" -2022-11-14 09:05:22,384 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " " -2022-11-14 09:05:22,384 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:algorithm spdx:checksumAlgorithm_md5 ;[\n]" -2022-11-14 09:05:22,384 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:checksumValue "ef5cd77099608ef83a26387a4eeece75"^^xsd:hexBinary .[\n]" -2022-11-14 09:05:22,384 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,384 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,384 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a spdx:Checksum ;[\n]" -2022-11-14 09:05:22,384 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:algorithm spdx:checksumAlgorithm_md5 ;[\n]" -2022-11-14 09:05:22,384 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:checksumValue "2cfad96a7a9b21bb9c0aa8393f062677"^^xsd:hexBinary .[\n]" -2022-11-14 09:05:22,384 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,384 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,384 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a spdx:Checksum ;[\n]" -2022-11-14 09:05:22,384 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:algorithm spdx:checksumAlgorithm_md5 ;[\n]" -2022-11-14 09:05:22,384 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:checksumValue "efb9305f309b9c144900567bde3f5614"^^xsd:hexBinary .[\n]" -2022-11-14 09:05:22,384 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,384 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,384 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a spdx:Checksum ;[\n]" -2022-11-14 09:05:22,384 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:algorithm spdx:checksumAlgorithm_md5 ;[\n]" -2022-11-14 09:05:22,384 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:checksumValue "c77ea88bbcbd4c013623180224652e6e"^^xsd:hexBinary .[\n]" -2022-11-14 09:05:22,384 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,384 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,384 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a spdx:Checksum ;[\n]" -2022-11-14 09:05:22,384 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:algorithm spdx:checksumAlgorithm_md5 ;[\n]" -2022-11-14 09:05:22,384 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:checksumValue "0eff0dcec141bb6a50e9f1edaa44f551"^^xsd:hexBinary .[\n]" -2022-11-14 09:05:22,384 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,384 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,385 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a spdx:Checksum ;[\n]" -2022-11-14 09:05:22,385 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:algorithm spdx:checksumAlgorithm_md5 ;[\n]" -2022-11-14 09:05:22,385 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:checksumValue "6884aec89699e1ba722ced317e13a9ae"^^xsd:hexBinary .[\n]" -2022-11-14 09:05:22,385 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,385 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,385 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a spdx:Checksum ;[\n]" -2022-11-14 09:05:22,385 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:algorithm spdx:checksumAlgorithm_md5 ;[\n]" -2022-11-14 09:05:22,385 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:checksumValue "43f34a73cf1a668ef0ca5316990785b8"^^xsd:hexBinary .[\n]" -2022-11-14 09:05:22,385 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,385 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,385 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a spdx:Checksum ;[\n]" -2022-11-14 09:05:22,385 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:algorithm spdx:checksumAlgorithm_md5 ;[\n]" -2022-11-14 09:05:22,385 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:checksumValue "d277c0ba3bc2bdd8cd446ba6c345f535"^^xsd:hexBinary .[\n]" -2022-11-14 09:05:22,385 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,385 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,385 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a spdx:Checksum ;[\n]" -2022-11-14 09:05:22,385 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:algorithm spdx:checksumAlgorithm_md5 ;[\n]" -2022-11-14 09:05:22,385 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:checksumValue "56c710b8fac1373dc455a4ef4dfd2eb4"^^xsd:hexBinary .[\n]" -2022-11-14 09:05:22,385 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,385 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,385 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a spdx:Checksum ;[\n]" -2022-11-14 09:05:22,385 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:algorithm spdx:checksumAlgorithm" -2022-11-14 09:05:22,386 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "_md5 ;[\n]" -2022-11-14 09:05:22,386 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:checksumValue "a1f4a49bc2a8cb90a94e3f1b92028391"^^xsd:hexBinary .[\n]" -2022-11-14 09:05:22,386 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,386 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,386 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a spdx:Checksum ;[\n]" -2022-11-14 09:05:22,386 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:algorithm spdx:checksumAlgorithm_md5 ;[\n]" -2022-11-14 09:05:22,386 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:checksumValue "c85ce934c81c7df9ded1c5e04f88eab3"^^xsd:hexBinary .[\n]" -2022-11-14 09:05:22,386 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,386 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,386 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a spdx:Checksum ;[\n]" -2022-11-14 09:05:22,386 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:algorithm spdx:checksumAlgorithm_md5 ;[\n]" -2022-11-14 09:05:22,386 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:checksumValue "337fcb141abe09285892fb69594a5b1e"^^xsd:hexBinary .[\n]" -2022-11-14 09:05:22,386 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,386 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,386 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a spdx:Checksum ;[\n]" -2022-11-14 09:05:22,386 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:algorithm spdx:checksumAlgorithm_md5 ;[\n]" -2022-11-14 09:05:22,386 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:checksumValue "339d3b6511617692919177c37a27834b"^^xsd:hexBinary .[\n]" -2022-11-14 09:05:22,386 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,386 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,386 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a spdx:Checksum ;[\n]" -2022-11-14 09:05:22,386 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:algorithm spdx:checksumAlgorithm_md5 ;[\n]" -2022-11-14 09:05:22,386 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:checksumValue "f1167391b3eb5b17cc907a5082f9a141"^^xsd:hexBinary .[\n]" -2022-11-14 09:05:22,386 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,386 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,386 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a spdx:Checksum ;[\n]" -2022-11-14 09:05:22,386 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:algorithm spdx:checksumAlgorithm_md5 ;[\n]" -2022-11-14 09:05:22,386 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:checksumValue "22f5913682fea97c5d61ad4593b4d8c4"^^xsd:hexBinary .[\n]" -2022-11-14 09:05:22,386 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,386 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,386 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a spdx:Checksum ;[\n]" -2022-11-14 09:05:22,386 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:algorithm spdx:checksumAlgorithm_md5 ;[\n]" -2022-11-14 09:05:22,386 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:checksumValue "4ab377f4c17e07762a770fbdb4496280"^^xsd:hexBinary .[\n]" -2022-11-14 09:05:22,386 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,386 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,386 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a spdx:Checksum ;[\n]" -2022-11-14 09:05:22,386 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:algorithm spdx:checksumAlgorithm_md5 ;[\n]" -2022-11-14 09:05:22,386 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:checksumValue "d7ecfc76423e10a498aee78c8684eeef"^^xsd:hexBinary .[\n]" -2022-11-14 09:05:22,386 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,386 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,386 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a spdx:Checksum ;[\n]" -2022-11-14 09:05:22,386 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:algorithm spdx:checksumAlgorithm_md5 ;[\n]" -2022-11-14 09:05:22,386 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:checksumValue "f650d17c69a1586706a49e509c1d68e6"^^xsd:hexBinary .[\n]" -2022-11-14 09:05:22,386 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,386 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,386 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a spdx:Checksum ;[\n]" -2022-11-14 09:05:22,386 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:algorithm spdx:checksumAlgorithm_md5 ;[\n]" -2022-11-14 09:05:22,386 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:checksumValue "b61928792004163961ced7c0c609e407"^^xsd:hexBinary .[\n]" -2022-11-14 09:05:22,386 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,386 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,387 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a spdx:Checksum ;[\n]" -2022-11-14 09:05:22,387 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:algorithm spdx:checksumAlgorithm_md5 ;[\n]" -2022-11-14 09:05:22,387 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:checksumValue "9ac411896bb1d83b8822e612c1d71e39"^^xsd:hexBinary .[\n]" -2022-11-14 09:05:22,387 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,387 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,387 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a spdx:Checksum ;[\n]" -2022-11-14 09:05:22,387 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:algorithm spdx:checksumAlgorithm_md5 ;[\n]" -2022-11-14 09:05:22,387 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:checksumValue "968fe64383edc6e03981f5d850afadf5"^^xsd:hexBinary .[\n]" -2022-11-14 09:05:22,387 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,387 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,387 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a spdx:Checksum ;[\n]" -2022-11-14 09:05:22,387 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:algorithm spdx:checksumAlgorithm_md5 ;[\n]" -2022-11-14 09:05:22,387 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:checksumValue "19e4aac29a0a91435ac07cd500beb773"^^xsd:hexBinary .[\n]" -2022-11-14 09:05:22,387 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,387 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,387 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a spdx:Checksum ;[\n]" -2022-11-14 09:05:22,387 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:algorithm spdx:checksumAlgorithm_md5 ;[\n]" -2022-11-14 09:05:22,387 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:checksumValue "89c29d2379d5c6174373aa43171927e8"^^xsd:hexBinary .[\n]" -2022-11-14 09:05:22,387 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,387 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,387 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a spdx:C" -2022-11-14 09:05:22,387 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "hecksum ;[\n]" -2022-11-14 09:05:22,387 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:algorithm spdx:checksumAlgorithm_md5 ;[\n]" -2022-11-14 09:05:22,387 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:checksumValue "1804a2e5611428cf3f158d3b5f4d0063"^^xsd:hexBinary .[\n]" -2022-11-14 09:05:22,387 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,387 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,387 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a spdx:Checksum ;[\n]" -2022-11-14 09:05:22,387 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:algorithm spdx:checksumAlgorithm_md5 ;[\n]" -2022-11-14 09:05:22,387 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:checksumValue "71bbc8cfd7bb7189c5ecab6bfb88ec53"^^xsd:hexBinary .[\n]" -2022-11-14 09:05:22,387 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,387 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,387 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a spdx:Checksum ;[\n]" -2022-11-14 09:05:22,387 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:algorithm spdx:checksumAlgorithm_md5 ;[\n]" -2022-11-14 09:05:22,387 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:checksumValue "279cb8fa480b0fd93ca36925a29722aa"^^xsd:hexBinary .[\n]" -2022-11-14 09:05:22,387 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,387 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,387 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a spdx:Checksum ;[\n]" -2022-11-14 09:05:22,387 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:algorithm spdx:checksumAlgorithm_md5 ;[\n]" -2022-11-14 09:05:22,387 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:checksumValue "8cb60c37e8d90475a608e6c24c3fc027"^^xsd:hexBinary .[\n]" -2022-11-14 09:05:22,387 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,387 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,387 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a spdx:Checksum ;[\n]" -2022-11-14 09:05:22,387 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:algorithm spdx:checksumAlgorithm_md5 ;[\n]" -2022-11-14 09:05:22,387 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:checksumValue "ff62411d75b99a49d6d9193b68f44d40"^^xsd:hexBinary .[\n]" -2022-11-14 09:05:22,387 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,387 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,388 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a spdx:Checksum ;[\n]" -2022-11-14 09:05:22,388 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:algorithm spdx:checksumAlgorithm_md5 ;[\n]" -2022-11-14 09:05:22,388 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:checksumValue "d215748efdfb46a1ca0fc6d8cd729f54"^^xsd:hexBinary .[\n]" -2022-11-14 09:05:22,388 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,388 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,388 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a spdx:Checksum ;[\n]" -2022-11-14 09:05:22,388 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:algorithm spdx:checksumAlgorithm_md5 ;[\n]" -2022-11-14 09:05:22,388 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:checksumValue "e9b37c874f0da55dafa3edecc3fc5197"^^xsd:hexBinary .[\n]" -2022-11-14 09:05:22,388 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,388 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,388 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a spdx:Checksum ;[\n]" -2022-11-14 09:05:22,388 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:algorithm spdx:checksumAlgorithm_md5 ;[\n]" -2022-11-14 09:05:22,388 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:checksumValue "5cca9111e99fec0d2705bb5e5f6dd1bc"^^xsd:hexBinary .[\n]" -2022-11-14 09:05:22,388 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,388 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,388 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a spdx:Checksum ;[\n]" -2022-11-14 09:05:22,388 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:algorithm spdx:checksumAlgorithm_md5 ;[\n]" -2022-11-14 09:05:22,388 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:checksumValue "f2b162d14bf335627aa1b1cc981e9f84"^^xsd:hexBinary .[\n]" -2022-11-14 09:05:22,388 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,388 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,388 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a spdx:Checksum ;[\n]" -2022-11-14 09:05:22,388 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:algorithm spdx:checksumAlgorithm_md5 ;[\n]" -2022-11-14 09:05:22,388 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:checksumValue "47eeec2ef080186a441c70d26ad87d69"^^xsd:hexBinary .[\n]" -2022-11-14 09:05:22,388 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,388 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,388 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a spdx:Checksum ;[\n]" -2022-11-14 09:05:22,388 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:algorithm spdx:checksumAlgorithm_md5 ;[\n]" -2022-11-14 09:05:22,388 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:checksumValue "18f30a003bcd3e110f6fa21a6d850788"^^xsd:hexBinary .[\n]" -2022-11-14 09:05:22,388 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,388 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,388 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a spdx:Checksum ;[\n]" -2022-11-14 09:05:22,388 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:algorithm spdx:checksumAlgorithm_md5 ;[\n]" -2022-11-14 09:05:22,388 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:checksumValue "b689b65af215364dfc7473ce83782dd2"^^xsd:hexBinary .[\n]" -2022-11-14 09:05:22,388 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,388 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,388 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a spdx:Checksum ;[\n]" -2022-11-14 09:05:22,388 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:algorithm spdx:checksumAlgorithm_md5 ;[\n]" -2022-11-14 09:05:22,388 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:checksumValue "94c99348991738838d0f93cbab80c9ba"^^xsd:hexBinary .[\n]" -2022-11-14 09:05:22,388 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,388 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,388 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a spdx:Checksum ;[\n]" -2022-11-14 09:05:22,388 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:algorithm spdx:checksumAlgorithm_md5 ;[\n]" -2022-11-14 09:05:22,388 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:checksumValue "d521c831b23e6c4339afa10fed1dc287"^^xsd:hexBinary .[\n]" -2022-11-14 09:05:22,388 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,388 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,389 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a spdx:Checksum ;[\n]" -2022-11-14 09:05:22,389 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:algorithm spdx:checksumAlgorithm_md5 ;[\n]" -2022-11-14 09:05:22,389 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:checksumValue "ea4f5d5aa5c11b83262350534250c16a"^^xsd:hexBinary .[\n]" -2022-11-14 09:05:22,389 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,389 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,389 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a spdx:Checksum ;[\n]" -2022-11-14 09:05:22,389 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:algorithm spdx:checksumAlgorithm_md5 ;[\n]" -2022-11-14 09:05:22,389 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:checksumValue "85fcd49cd74fcbd3b3d81843fa8a1cca"^^xsd:hexBinary .[\n]" -2022-11-14 09:05:22,389 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,389 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,389 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a spdx:Checksum ;[\n]" -2022-11-14 09:05:22,389 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:algorithm spdx:checksumAlgorithm_md5 ;[\n]" -2022-11-14 09:05:22,389 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:checksumValue "93406c6b7925fc6a8f758f136b270ebb"^^xsd:hexBinary .[\n]" -2022-11-14 09:05:22,389 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,389 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,389 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a spdx:Checksum ;[\n]" -2022-11-14 09:05:22,389 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:algorithm spdx:checksumAlgorithm_md5 ;[\n]" -2022-11-14 09:05:22,389 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:checksumValue "7b791cfd99aeea722fa325cc98ac1663"^^xsd:hexBinary .[\n]" -2022-11-14 09:05:22,389 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,389 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,389 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a spdx:Checksum ;[\n]" -2022-11-14 09:05:22,389 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:algorithm spdx:checksumAlgorithm_md5 ;[\n]" -2022-11-14 09:05:22,389 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:checksumValue "4cc9b44fc603e7e8a6a2ee072cf6e693"^^xsd:hexBinary .[\n]" -2022-11-14 09:05:22,389 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,389 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,398 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a spdx:Checksum ;[\n]" -2022-11-14 09:05:22,398 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:algorithm spdx:checksumAlgorithm_md5 ;[\n]" -2022-11-14 09:05:22,398 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:checksumValue "4f62f2a1cc05fb530c2bf6168a55aa41"^^xsd:hexBinary .[\n]" -2022-11-14 09:05:22,398 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,398 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,398 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a spdx:Checksum ;[\n]" -2022-11-14 09:05:22,398 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:algorithm spdx:checksumAlgorithm_md5 ;[\n]" -2022-11-14 09:05:22,398 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:checksumValue "37c1ab26f67c5a844d5e815e638e1648"^^xsd:hexBinary .[\n]" -2022-11-14 09:05:22,398 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,398 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,398 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a spdx:Checksum ;[\n]" -2022-11-14 09:05:22,398 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:algorithm spdx:checksumAlgorithm_md5 ;[\n]" -2022-11-14 09:05:22,398 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:checksumValue "45e7e81ef577e9e8565e356971bb32e5"^^xsd:hexBinary .[\n]" -2022-11-14 09:05:22,398 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,398 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,398 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a spdx:Checksum ;[\n]" -2022-11-14 09:05:22,398 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:algorithm spdx:checksumAlgorithm_md5 ;[\n]" -2022-11-14 09:05:22,398 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:checksumValue "50f43ff5202301215c95820296d87514"^^xsd:hexBinary .[\n]" -2022-11-14 09:05:22,398 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,398 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,398 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a spdx:Checksum ;[\n]" -2022-11-14 09:05:22,398 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:algorithm spdx:checksumAlgorithm_md5 ;[\n]" -2022-11-14 09:05:22,398 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:checksumValue "7d79fc691990952a2781510d10ba7358"^^xsd:hexBinary .[\n]" -2022-11-14 09:05:22,398 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,398 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,398 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a spdx:Checksum ;[\n]" -2022-11-14 09:05:22,398 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:algorithm spdx:checksumAlgorithm_md5 ;[\n]" -2022-11-14 09:05:22,398 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:checksumValue "67c848d3379f3f5ef74c3be405ef151c"^^xsd:hexBinary .[\n]" -2022-11-14 09:05:22,398 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,398 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,398 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a spdx:Checksum ;[\n]" -2022-11-14 09:05:22,398 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:algorithm spdx:checksumAlgorithm_md5 ;[\n]" -2022-11-14 09:05:22,398 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:checksumValue "e99420ad320d238a30f1cadd22589931"^^xsd:hexBinary .[\n]" -2022-11-14 09:05:22,398 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,398 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,398 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a spdx:Checksum ;[\n]" -2022-11-14 09:05:22,398 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:algorithm spdx:checksumAlgorithm_md5 ;[\n]" -2022-11-14 09:05:22,398 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:checksumValue "4b7b810e57b3ccbe831b3733c0a30c87"^^xsd:hexBinary .[\n]" -2022-11-14 09:05:22,398 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,398 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,398 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a spdx:Checksum ;[\n]" -2022-11-14 09:05:22,398 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:algorithm spdx:checksumAlgorithm_md5 ;[\n]" -2022-11-14 09:05:22,398 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:checksumValue "3cc36abb020455e1f6d5154de81b7bb8"^^xsd:hexBinary .[\n]" -2022-11-14 09:05:22,398 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,398 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,398 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a spdx:Checksum ;[\n]" -2022-11-14 09:05:22,398 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:algorithm spdx:checksumAlgorithm_md5 ;[\n]" -2022-11-14 09:05:22,398 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:checksumValue "ef4e25ecb4d429853296cfb31991acd8"^^xsd:hexBinary .[\n]" -2022-11-14 09:05:22,398 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,398 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,398 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a spdx:Checksum ;[\n]" -2022-11-14 09:05:22,398 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:algorithm spdx:checksumAlgorithm_md5 ;[\n]" -2022-11-14 09:05:22,398 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:checksumValue "1cfc7d59da92f7d38b03c7392fb8c4ee"^^xsd:hexBinary .[\n]" -2022-11-14 09:05:22,398 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,398 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,398 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a spdx:Checksum ;[\n]" -2022-11-14 09:05:22,398 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:algorithm spdx:checksumAlgorithm_md5 ;[\n]" -2022-11-14 09:05:22,398 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:checksumValue "270df7acaeda6be639e68be169c11ac4"^^xsd:hexBinary .[\n]" -2022-11-14 09:05:22,398 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,398 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,398 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a spdx:Checksum ;[\n]" -2022-11-14 09:05:22,398 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:algorithm spdx:checksumAlgorithm_md5 ;[\n]" -2022-11-14 09:05:22,398 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:checksumValue "2d543cc8f93f632ef33955017fe41522"^^xsd:hexBinary .[\n]" -2022-11-14 09:05:22,398 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,398 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,398 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a spdx:Checksum ;[\n]" -2022-11-14 09:05:22,398 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:algorithm spdx:checksumAlgorithm_md5 ;[\n]" -2022-11-14 09:05:22,398 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:checksumValue "d7cec6a63cf05c1eff53939fd3b5339f"^^xsd:hexBinary .[\n]" -2022-11-14 09:05:22,398 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,398 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,398 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a spdx:Checksum ;[\n]" -2022-11-14 09:05:22,398 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:algorithm spdx:checksumAlgorithm_md5 ;[\n]" -2022-11-14 09:05:22,398 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:checksumValue "4d47bf5b5b30a04c430c69ed6dfa5fdf"^^xsd:hexBinary .[\n]" -2022-11-14 09:05:22,398 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,398 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,398 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a spdx:Checksum ;[\n]" -2022-11-14 09:05:22,398 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:algorithm spdx:checksumAlgorithm_md5 ;[\n]" -2022-11-14 09:05:22,398 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " spdx:checksumValue "9c0aa0f2536be1ef8910b433a40165cc"^^xsd:hexBinary .[\n]" -2022-11-14 09:05:22,398 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,398 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "########### Statements ###########[\n]" -2022-11-14 09:05:22,398 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,398 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,398 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:SimpleStatement ;[\n]" -2022-11-14 09:05:22,398 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:statement "DBpedia data can be integrated into other datasets and reused for data enrichment or mashup purposes"@en .[\n]" -2022-11-14 09:05:22,398 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,398 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,398 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:SimpleStatement ;[\n]" -2022-11-14 09:05:22,398 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:statement "DBpedia is a useful resource for interlinking general datasets with encyclopedic knowledge. Users profitting from DBpedia are open data developers, SMEs and researchers in data science and NLP"@en .[\n]" -2022-11-14 09:05:22,398 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,398 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,398 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:SimpleStatement ;[\n]" -2022-11-14 09:05:22,398 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:statement "DBpedia is an open dataset, licensed under CC-BY-SA 3.0."@en .[\n]" -2022-11-14 09:05:22,398 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,398 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,398 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:SimpleStatement ;[\n]" -2022-11-14 09:05:22,398 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:statement "An endpoint for sparql queries: provide valid queries." .[\n]" -2022-11-14 09:05:22,398 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,398 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,398 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:SimpleStatement ;[\n]" -2022-11-14 09:05:22,398 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:statement "DBpedia is an ongoing open-source project. Goal of the project is the extraction of the Wikipedia, as complete as possible. Currently, 126 languages are being extracted. In the future, DBpedia will try to increase its importance as the center of the LOD cloud by adding further external datasets"@en .[\n]" -2022-11-14 09:05:22,398 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,398 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,398 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:SimpleStatement ;[\n]" -2022-11-14 09:05:22,398 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:statement "1.0.0" .[\n]" -2022-11-14 09:05:22,398 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,398 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,398 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:SimpleStatement ;[\n]" -2022-11-14 09:05:22,398 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:statement "DataID - dataset metadata ontology"@en ;[\n]" -2022-11-14 09:05:22,398 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:references .[\n]" -2022-11-14 09:05:22,398 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,398 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,398 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:SimpleStatement ;[\n]" -2022-11-14 09:05:22,398 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:statement "DBpedia is derived from Wikipedia and is distributed under the same licensing terms as Wikipedia itself. As Wikipedia has moved to dual-licensing, we also dual-license DBpedia starting with release 3.4. Data comprising DBpedia release 3.4 and subsequent releases is licensed under the terms of the Creative Commons Attribution-ShareAlike 3.0 license and the GNU Free Documentation License. Data comprising DBpedia releases up to and including release 3.3 is licensed only under the terms of the GNU Free Documentation License."@en .[\n]" -2022-11-14 09:05:22,398 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,398 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,398 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:SimpleStatement ;[\n]" -2022-11-14 09:05:22,398 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:statement "Similar data can be found in datasets like Freebase (https://freebase.com), Wikidata (https://www.wikidata.org), Yago (http://www.mpi-inf.mpg.de/departments/databases-and-information-systems/research/yago-naga/yago//) or OpenCyc (http://opencyc.org)."@en .[\n]" -2022-11-14 09:05:22,398 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,398 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,398 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:SimpleStatement ;[\n]" -2022-11-14 09:05:22,398 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:statement "DataID-LD - dataset metadata ontology with linked data extension"@en ;[\n]" -2022-11-14 09:05:22,398 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:references .[\n]" -2022-11-14 09:05:22,398 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,398 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "########### MediaTypes ###########[\n]" -2022-11-14 09:05:22,398 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,398 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,398 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:MediaType ;[\n]" -2022-11-14 09:05:22,398 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:typeTemplate "application/sparql-results+xml" ;[\n]" -2022-11-14 09:05:22,398 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo .[\n]" -2022-11-14 09:05:22,398 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,398 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "dataid-mt:MediaType_turtle_x-bzip2[\n]" -2022-11-14 09:05:22,398 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:MediaType ;[\n]" -2022-11-14 09:05:22,398 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:innerMediaType dataid:MediaType_turtle ;[\n]" -2022-11-14 09:05:22,398 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:typeExtension ".bz2" ;[\n]" -2022-11-14 09:05:22,398 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:typeTemplate "application/x-bzip2" ;[\n]" -2022-11-14 09:05:22,398 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo .[\n]" -2022-11-14 09:05:22,398 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,398 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "dataid-mt:MediaType_n-quads_x-bzip2[\n]" -2022-11-14 09:05:22,398 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:MediaType ;[\n]" -2022-11-14 09:05:22,398 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:innerMediaType dataid:MediaType_n-quads ;[\n]" -2022-11-14 09:05:22,398 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:typeExtension ".bz2" ;[\n]" -2022-11-14 09:05:22,398 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:typeTemplate "application/x-bzip2" ;[\n]" -2022-11-14 09:05:22,398 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo .[\n]" -2022-11-14 09:05:22,398 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,398 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "dataid:MediaType_n-quads[\n]" -2022-11-14 09:05:22,398 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:MediaType ;[\n]" -2022-11-14 09:05:22,398 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:typeExtension ".nq" ;[\n]" -2022-11-14 09:05:22,398 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:typeTemplate "application/n-quads" ;[\n]" -2022-11-14 09:05:22,398 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo .[\n]" -2022-11-14 09:05:22,398 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,398 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "dataid:MediaType_xml a dataid:MediaType ;[\n]" -2022-11-14 09:05:22,398 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:typeExtension "application/xml" ;[\n]" -2022-11-14 09:05:22,398 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:typeTemplate "application/xml" ;[\n]" -2022-11-14 09:05:22,398 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo .[\n]" -2022-11-14 09:05:22,398 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,398 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "dataid:MediaType_turtle[\n]" -2022-11-14 09:05:22,398 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:MediaType ;[\n]" -2022-11-14 09:05:22,398 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:typeExtension ".ttl" ;[\n]" -2022-11-14 09:05:22,398 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:typeTemplate "text/turtle" ;[\n]" -2022-11-14 09:05:22,398 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo .[\n]" -2022-11-14 09:05:22,398 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "[\n]" -2022-11-14 09:05:22,398 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << "dataid-mt:MediaType_xml_x-bzip2[\n]" -2022-11-14 09:05:22,398 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " a dataid:MediaType ;[\n]" -2022-11-14 09:05:22,398 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:innerMediaType dataid:MediaType_xml ;[\n]" -2022-11-14 09:05:22,398 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:typeExtension ".bz2" ;[\n]" -2022-11-14 09:05:22,398 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dataid:typeTemplate "application/x-bzip2" ;[\n]" -2022-11-14 09:05:22,398 -- DEBUG -- org.apache.http.wire -- http-outgoing-0 << " dc:conformsTo .[\n]" -2022-11-14 09:05:22,399 -- DEBUG -- org.apache.http.impl.conn.PoolingHttpClientConnectionManager -- Connection [id: 0][route: {}->http://downloads.dbpedia.org:80] can be kept alive indefinitely -2022-11-14 09:05:22,399 -- DEBUG -- org.apache.http.impl.conn.PoolingHttpClientConnectionManager -- Connection released: [id: 0][route: {}->http://downloads.dbpedia.org:80][total kept alive: 1; route allocated: 1 of 5; total allocated: 1 of 10] -Info; fr; Main Extraction at 00:01.783s for historic, historic; ------ ----- ----- EXTRACTION MONITOR STATISTICS ----- ----- ----- -EXCEPTIONCOUNT: 0 -SUCCESSFUL: 0 -CRASHED: yes -! COULD NOT COMPARE DATAID ! - ------ ----- ----- ----- ----- ----- ----- ----- ----- ----- ----- -Exception; fr; Main Extraction at 00:01.783s for historic, historic; ------ ----- ----- EXTRACTION MONITOR STATISTICS ----- ----- ----- -SUCCESSFUL: 0 -Exception; fr; Main Extraction at 00:01.783s for historic, historic; ------ ----- ----- EXTRACTION MONITOR STATISTICS ----- ----- ----- -SUCCESSFUL: 0 -CRASHED: yes -EXCEPTIONS: -com.ctc.wstx.exc.WstxParsingException: 1 -DATAID: -! COULD NOT COMPARE DATAID ! - ------ ----- ----- ----- ----- ----- ----- ----- ----- ----- ----- -Info; fr; Main Extraction at 00:01.783s for historic, historic; Extraction finished for language: French (fr) , extracted 0 pages for 2 datasets after 00:01.783s minutes. -CRASHED: yes -EXCEPTIONS: -com.ctc.wstx.exc.WstxParsingException: 1 -DATAID: -! COULD NOT COMPARE DATAID ! - ------ ----- ----- ----- ----- ----- ----- ----- ----- ----- ----- -AFTER -- test Historic extraction -Run completed in 4 seconds, 723 milliseconds. -Total number of tests run: 1 -Suites: completed 2, aborted 0 -Tests: succeeded 1, failed 0, canceled 0, ignored 0, pending 0 -All tests passed. -[INFO] ------------------------------------------------------------------------ -[INFO] BUILD SUCCESS -[INFO] ------------------------------------------------------------------------ -[INFO] Total time: 7.494 s -[INFO] Finished at: 2022-11-14T09:05:22+01:00 -[INFO] ------------------------------------------------------------------------ diff --git a/history/project/build.properties b/history/project/build.properties deleted file mode 100644 index c8fcab543a..0000000000 --- a/history/project/build.properties +++ /dev/null @@ -1 +0,0 @@ -sbt.version=1.6.2 diff --git a/history/sample-xml-dump/frwiki/20220101/frwiki-20220101-extraction-complete b/history/sample-xml-dump/frwiki/20220101/frwiki-20220101-extraction-complete new file mode 100644 index 0000000000..e69de29bb2 diff --git a/history/sample-xml-dump/frwiki/20220101/frwiki-20220101-history-dataset.ttl.bz2 b/history/sample-xml-dump/frwiki/20220101/frwiki-20220101-history-dataset.ttl.bz2 new file mode 100644 index 0000000000000000000000000000000000000000..716cecc7b879391f84ed06e7e74208160551f1e0 GIT binary patch literal 6785 zcma)gcUV*1vu;9w01|4DUZsU1g7l(^fDj@GfzSn%BE3s*QY8pt=tzf9rAiMS=^(vJ z2kD3)U_m|j{l0U~z4xy>&wggl%=^yF+Iu~-{#f^nZRNxfM*O-)nM7(401DETUjQ1T zKmW*L`=38YZ~%Y{zC%pL1fT&}2nHPkF91INZL$Cktus*TekDK!@B^E*-3amk{Jcd) zzf(R;IpgVk>oE|MbqokR{NfKFl|9k8m>4xX7Z?3N^&CZD=O+fK=#WrV_0#BT0w$4# zdcPh}_}M8*DHauv0RVo__nhD?)Y|sh`TSVCGP3pokp=J;04Q+_007WKlqhJS+O}8b zze49%q9L7h_aRcVB!@JF1ppuo0p?s`=_SPUT$++&nk9uq=}wYG>5^&OdsgFxEXrzm zwk$w8ID+goJ?+lanRL7@h+g@A2*3&guw@JUhO`92HfRl^j(+}L@CYiG>=hS(Y5Dob zuYjzFtt&$x{ogG4UnrrPedT6Oms0^`03t5It9C@1`XsOMqYm~;Hrz~|g@lA-dsMFo#T7CP4879p zjSK6IANBqf1E$4)c=xYJZjFm>4Xjs`kAI^ZdPMNzDT-KlvBx*1_QXq>KZ-#UvoVJV zC}qnXw;qdC;+w&Ee^>Z2-+jXY8>abL(ZgS|D!;B%>F1JuSf05f(|h0gQ_il#?X{50 zarxE65+3&(ky<;RUxmBWBl!lNwmu@ZTF+0Q&^SPdPKQG-LvG0y4%n!8mJ#>+1RKi- znm%#S4mVMI3MZmhB!B%Jq%~oK$Oz|(rFQ@%Dj$Jq`Y-QxoD) zFoW6Wr2(!tjDo^magE~wr&b6IBAZc#B~k(ohtGn3GM|LPp}a&2uHEb~Y0-1qXI zf6OQmJpb78w%s@vIwv~iSY9e2yB&K+&%2;>s!1(m&)&U{?l#NoGEv5QT6CfrfsE} z^!RfA?zbSO?3Y!oLa*@pBSS}|L^H#3jXiovzO9Q-WmrBs*lT`>QQ+V25tH-!cHofc zf*LAqiuQiwu`n3|Gu+kLHQc3krp&GKo>I ztWNdmi&EH93BKF$n5SCkqihlORBt}YhXPV2DFSQ^R;EX_IjvnMmj18GhT6#FYd`8Lyq(^TXe~9@Kst@^+dA*F0+QnRm$Bs52`le^8B1c0Em>XM01c<;_} zJJ4}jd2e)a8CV&(@r{0mf!+AJ7lkVP6phfxBnIogV(1LaYaHc?zSJ>-W6q#;*z-Xt z2I0q~bqv-#Z`YH#Xpo^m-fChRV7swTU7dmUi08dVpOqJMQL~jw!QvIkr_n_qY_|c1 z+Blcn8luYWJXuetpQia}DNJipW4GG*Ei0kgajJa8NUFr7`5nqu{T^y?81;5vG4jb+ z9f_>2k&UqQNl#waD8q@@meW46Fx~E@Q!GS!5n%DV@L5_~v`w*i0EqaQ1{DUV$$lXC z{xN0!>WWbZn0t*@ngjkMdh87Vn{{ukjA?m2<(fR{9t6Y_ub4T)h*Kwy)LPmb3YRX5 zXANUe1i@dir9bXmmc!r5yq(jWl0ymVR|*>#eiKQh5NZY&Nh4tomW1P#KwZ`wndw-! zn1*Yrf`XD%gc|FyJBT@%9QQAYTz=y%6X}#i+!hvhl&c&epw95fpHl+_oo%-5o_0l* z76z!$#B6i2NPk6BhbGlXMe6;$k{{!z9z!dNWV87NmkPTqWd%2zDSdg-VfJxYRblNU z`9+u$4?b2+FQR1OP}9_uc(;&OFy;rjM)6&sa!gvT*n}d51qVQphCM1Kh~E#5;6qZ~Pj5ROsq*W6rqu$ja)y15bPFBJElh?i?Dsq&XdG;%mV?59^s{N!sD|6*n3Ol* z_>Gp9;=pEqBGo0iE6Z-OF4r{ds4#RntfBf);qfyG_S!2S@*Q>bv=g}tp0i>abFE$FsRLKE7%dHNH3kEOWgRSoh*Sf4n8~876O{;TCQl`-w#M{!eIel?bKkH%`Eq z5=@=(B8ba2@4g!RXV&}H)_2>>J9mJ+TF-Z)bRmP0-9%)Y~JoCG&m$TxxkGBKG*>K zBP$5l@6kQNwBPq04>B{iur1)uHk!9qg|bd|^W%ob5h{F0 zl?V(JL#JmOfnn%Zg6B9>LQ+VZ<1(vGXM?iU7vTw+D+YV{^#rfll&Fjqu3t76(+=KK zO>fc6`T{P+emZOO>yJq`_(_=^`O~b!cZHk^yO1~&NTIe}E)uUv@{*~S(vnr8`C*ct z-iE}~JtR3dFYdveCNL|QyI&67@*~zfR#kyUmh}0Y87O0bcecW#T=n)UbCn~rOzRo- zQzKn|?~l4g6`_h_vJ@9|h?^ykxO~BY(|+&m9$1GW+ch~lgdAAIpA@mf5o#=C!3HXC zCao{*S{T-4MO#0BZHM@R*$ChqKWX~j&UNC!M5^=6{)ZfhF;cCm9M_fn(u5vN3C48* zE;QU@luGLQSh?O%q9+_}cwC{tTwGKAOXP>)T6YwgByWPJU43lf(Jnu$(*i*g{eU;Y zss0#Pz^QoRBQ^}`-T;Y^Ru}U>e^&_YwXfm%!xi5Q4zX)g z40|S31fOFA%_)LX0&a9DfGeOKKF|r{FItFI*2lW3+`Ag2%ODDOYVx3g5gyMI$oUQ% zr~|UB%yrDZA`gb2A}kI}O+U08G8ak(xH;0>)mNOqVRaar<9S{y3BNi) zGC*~LY@qQxj~MsD5DDr>5fKXDC=>GA3hRm0ZUV0bjQji$++^O9UB>$RCVgpgq&1L9 zEgy7=*}c7V@X-l}=2xoD{y0}EWs^5}*^pyM_n?(K74QS%Pzy09j|vNEJEyw(%CJnn zW^eB^b>4UZ6JG~k2lu2Tf^rCz3t1PEo9rGk-m>A*QGQd2eP{!xrdLO&6u3C6{+ZOe zOH4|^S@|e^yZ*L%Vn!5xZj7vxG?qDMfZzDF^`<-Bu>A+5Eh`#{F#_Uv_iszU6Z@so z`8@)kVlwHCXX?tu$u0c9(si6u!}ms+dXA~N6u==JRGn3lpkgW!7Q(L9^D%0!6E={A zy93}DUtfq3ceV!Q*j7nWlD>t!1y$Kied(9$R{{Z8^j3s4z)r(+WJO%l@nR#-=j0$> zyALAXZYn@p;Eq(oJ#Kz-Eaxm z991{MDGULeO>cfa;R@w0^8mJP&h-b`yvXt;my?(s;pD(=Q>EUS5h3u}!q2 zja%44F~aIF*fIhR9v$DfCNWPd+omCyS6qrK$Sc+0qbn`5IA9Mk(s72=7s-%5e;eky zVQP=%jlcSxbQ)9PIEOlU(nj>2sx+mhA!|CAT9R7Byc;G`&KUFxaLxpN1(-pEbl9=X z`iZNO(3J8q=&56L&=?6kgC1t~Hg9^`-k>R47_gD`7{9fh&Hk|m-G}ZJd~Xo~AO^OE z%0-IbOD1gsCg$xQpumYL{gQ$up$Eu~^%OWus-8?rbM&>wvt5+ZY^NSZS?N@+AxJh- zG_G!H+Cjj(wVI$gl{eeE)l*bSylrY8Z%2U!+bpF`dHXzl&@}4b@a*VDS_&}UedkrC z{b{6jfr3Rvsq(NCAMBP&x)#H>zH9E*Q%>+Q;ll}PayOeHZ~sdQXHo!yn1N>4!BYa;&v{+b&9xc^t^|3I%y zAx-4}gZ{^5NkHo*@m*mWS4ETlc1S>XRlR5j=+fc+T{KEx0@c*uG=|ysCO-gq<@({Z zIWLo#F{s#{rlCaJZIz~2xsm+TomCrbsbMv3VLrbRoY;oTZuNPrfp`g>WAqEV4f@dD zCt(s~%rCLX2lWp$`MXkal!Zq4w9795t_8t#K3bclGNZyp>8zC6={L$|KRgNc3HEOb z6UuEPcv$N0mveVZDrg?l-DD@u!WJW;Rkm%j;ZvyL>h zNd{*91geK13`Mk)Dc&PrR2hmO4U>5~y?TO1FIv7&ufOlX4*tOZZZ{(+Wxf5Z4b&%p z|0Q9Mv*~0!0c?IZ(Wh@NQW%)qIGYXW46Haifj*_>*L zeyu{?xqhkeUGk~;UHi+9pLd=%%FTn{>Z<-2LLuqGRs>l*Y2r8qSy`@!vOl#>K3w4? zx_vn99sELh`3S^r^Mxz-6OtEHB%N^~9ohED&|$)MDk5fA%@(6xik;q)x}QQPRepm} zpiV&hS!k->y9|r=^8Ek~-#=z^!3xl3htq_%jAXH>%8rfwlkJy|OF?kmc<6;*O0FKO z5Nhv@;bW{t4=lO5SSoQ*qC{qHdaKNMg~X1;*YD0zmF^c@L<{~RD9~+1J>XtsfDbX~ zTpJToH+gaE?A7k}U;tM;qa7D*ut6ITTn5<;xzBWz>Tbz@d`euk0APCe`_(&}UpLM7 zzuiTkI*Wya^w(45P)#ed*`OBmR9L>kPOrS@vpFHky1_q`M{OknEyZ{4I#nJvwbUP- zW$Ish)pM3uUHOPRsN8U4ZYi9RC)Cprw3UBhrf^7%qP1ZDv|@w-gB3og3kE7>EdMdo z9t^BT+;OFqANj@Q_Nh4{resj?nl&-b0-s)d+p+*Zpn8*m?*+cec+qV%qL3#92i)c-E3bUK$FicoGTm6DwN1Jd{ml{G-azSb6P_jAI&h~ ztxKr9x!=%ox}?#cuFRGCKXDcknC<${O9oL{VG9S{YV52jQ5IMy~#LS>aRlyu)@-F6y_$3mVi*m=u)(`tO z53t6fk4ClR2sbfcKSHYW*|S4v6IDv+X8pxM{l&`luA!fwMhZel<1Vcs6uDL;LhSbZ zH-|9@0?Nj8mQx)@2!6Ea(2qM&4ML~nC8(#Q3x896LR5}>#V6;-z-{uIibSNg*RZ(I zNKj%3@{=)H5^Lg~ml9Qse+jMH!SKV9CjBLkEmtpzDdrD8t^H7mS_xrS$#p+p#?7Dl z^ic&BR~qn?zKYl0-z%vIvRyFHAfL`XP1w0trwguhKF(Pz7e6JZ9ue2W_PtX29dqZ@ zdjdVX+IXoLz<09||7mkVXFznz8e5IwXC`_K!Sb{TObUP1nH_ZdK6i9xQdyCcGK(|r zg3g@r;((@9GQKR$UuR_z(MUj)HWy00XppQ|^3cg_(aFL7vs1ZKvv;5{(g{ocdqs>i z9$@BwmvakqwzIr7Sy!R8pQ`QV4Nn7 zj?7|>mtA^a{Qt^VzYF7qx>;X2tu`ekOskUF=M}&9Ybh>$3`b2jC1QWK-{crVIuiu( z?{%OcWGxRB1wJ20%H2Eq1Y8{cC(Lw2;B2R;dKksMLZT~tuU9=ZE_-VGv zE@s7Rcky%6tIT^AJPz9YYEkl;4{Fctui+OuU1AlRS|H8mH}gLkg2ZF(v> z8mA47Ci0*rlu$vQl9o$A#3`aO?$13gik4ylCjXkX_Rxg&Mh4@=`p^CNw_$m(z~Etq zqAZwGv&>dIyU)C*B?uG|nmpu`32pM^I)1^>{^*h6*RQLR-@++Yx)X#aa4U9I6VtAv z<8OXrA0cO5PjO7elYeAgS^y1(5fW_`G9o7r<;?`@D_-Kp<#eYmofhsGo9K0>T<^U8tS_2jmd| zumB(vfLuV#apU~`!)`7SJAlz%D0L_QcD}WdanTFeLlQPcgVu28lep^|SeuMPO2Bs+ zMu0>vpb5Z(_G;-_PDb(r2!=E5O~m$)ETNxhnIwACQ*MY1h()yuQ34@Xp1FAbdzxV{ zD8Osd42n^=nR5pR{9J@W&#qKyec49tcOG?o(d3k|D5_Dq@<`XX@A)r`vdkpDr>XEf_-8WnlP6O zt!by>_+->CnVm5#?ZaG6fim4y-P?Gc4X3Juws0v_PX2zUqjr-&i5_ePjTx(hE=g)W zlZj&2-{0SF`RCYC^A(ud@(aWd)1s)-0w;$NvEU#{s~woEBhhedxn%Y!IupnD5x1eL z!w?FLyRPOV#Zl`300T)Gj_9(i%dlMyLN=Gyje0~PV8=P@;4UJ9WQvQVZbU-GU?(^~ zmzNVBmX{YE{%zdP!n060HIA$Uk6W4NjAV!`St4ey0>vIDGFnTd>L;${RrL(z0J_$yQb#EAOS8<^ICz8nCDKh z9aXWedLH%oKV~P&o6mJek5mNiYZ$H<%C%chPv`n68%oU`PVpvq${& zB%-s%+M?x@5)(|N@_{A}kHZn@Fuvq)nmEZ0RJ&O{O)nFOiOPt^%xbHRqC8P_ce|#p zIaEGoy8o9%J8o7DgU2K@ojcCW4;>hOOw9=xsZmE{HCq|v`!>+(D(n4D% z7Fh4rqFRblIqJ`^PFY#;`uN>v;;**sJj-9hFOTy2@L6MQ47l8ye(FxuMrfT_%?syu z{I(ZWqaRv&@(_8r?i)w-F8y^WK=-+dzv#I|?BbJ~jbS}oI2u7sP3>r7(Vo=dy)x`a(g0+rvEU!fT53kay@&<{c7xAmZr#zGG>5dBC zXEuC&1{1#xrTm&z3+`fatb(1NpuCgcQwHjYVRl$Np>S{b{|B(BN92mreb_ly9+a7l zu1i^Z8yoU;)6(y-rC-305){Q%Q6rQ2eL=Iy>50ka#BvE(LWc~Y1I9%J6=_j};W~sa z1kQzY4TN{eC>I`ha2=H^ds8{dX55f;#x#`t+dyjDkX9qDDWX?D-E58fgV{)eTFEdlhdQx1`wdfS^ zCFUWJ9+CbK)daqvZ#Ef|b=z8|;@vz(-s}4M&XkY8va0mGa;xfJFIM=+XDI+MH6#FJ z07yVVY{ej9ZF|?hKqLSM-mMH(7#iH`xz}qj1SJ#!@G`7HpZ$G9{L}KM_jRpZPylce z7MP#SMAh5Z&_6*A%XByP$$4<>%k+Bu5;%+zg43Lj^kX-6NTwxjE!y!z^bgGq)T&_B zniShh?Ky}GfS-bB@xt-BGzHECS0Tq2{UHk4>kd+qu$MKrYh1MMG22)-J{Z5y?I= z#2xK9Sc8>h6HCaKZz1d|GgahM69N?#%n%n{Rl)RvC2I9He2KH$dY9&WmcC^s-oqOH zw`LF*_~zTT5g&i26zZd}h#-i4qDHW2%arz))F;xuS$KTJFy0=UU}q)>(DsnjLwdHB zW8Jwkb=V-vjq7EUx7opJ^K>^zb(ViqKZH-d$o`7Op|3z`MHKlo%vZq< + + + + dbo + http://dbpedia.org/ontology/ + The DBpedia Ontology + + The DBpedia ontology provides the classes and properties used in the DBpedia data set. + + + + DBpedia Maintainers + DBpedia Maintainers and Contributors + 2008-11-17T12:00Z + 4.2-SNAPSHOT + + This ontology is generated from the manually created specifications in the DBpedia Mappings + Wiki. Each release of this ontology corresponds to a new release of the DBpedia data set which + contains instance data extracted from the different language versions of Wikipedia. For + information regarding changes in this ontology, please refer to the DBpedia Mappings Wiki. + + + + + + Place in the Music Chartsموسیقی چارٹس میں جگہ + + نيزہ باز + + paintball leagueپینٹبال انجمنa group of sports teams that compete against each other in Paintballکھیلوں کی ٹیموں کا ایک گروہ جو پینٹ بال(مصنوعي روغني گوليوں سے فوجي انداز کي جنگ لڑنے کي نقل) میں ایک دوسرے سے مقابلہ کرتا ہے۔ + + liga de baloncesto농구 리그basketbal competitieΟμοσπονδία ΚαλαθοσφαίρισηςバスケットボールリーグBasketball-Ligasraith cispheilelega di pallacanestroباسکٹ بال کی انجمنligue de basketballbasketball leaguea group of sports teams that compete against each other in Basketballکھیلوں کی ٹیموں کا ایک گروپ جو باسکٹ بال میں ایک دوسرے سے مقابلہ کرتا ہے + + penalty shoot-outسزا دینے کا عملسزا دینے کا عمل کھیلوں کے میچوں میں فاتح کا تعین کرنے کا ایک طریقہ ہے جو بصورت دیگر نکل دیا جاتا ہے یا برابر ہو جاتا۔ + + کسرتیgymnastجمناسٹ وہ ہوتا ہے جو جمناسٹکس کرتا ہےA gymnast is one who performs gymnastics + + جزیرہisland + + gebeurtenis in de natuurφυσικό γεγονόςNaturereignisevento naturaleقدرتی واقعہévénement naturelnatural eventΤο φυσικό γεγονός χρησιμοποιείται για να περιγράψει ένα συμβάν που πραγματοποιείται φυσικάمادی تقریب کا استعمال قدرتی طور پر رونما ہونے والے واقعے کو بیان کرنے کے لیے کیا جاتا ہے۔ + + city districtشہر کا ضلعDistrict, borough, area or neighbourhood in a city or townکسی شہر یا قصبے میں ضلع کا علاقہ یا محلہ۔ + + provincieεπαρχία英語圏の行政区画ProvinzcúigeصوبہprovinceprovinceAn administrative body governing a territorial unity on the intermediate level, between local and national levelEntité administrative en charge d'une unité territoriale se situant entre le niveau local et national; ex: Province Nord (Nouvelle-Calédonie)Είναι διοικητική δομή του κράτους που διοικεί μια περιοχή που είναι σε έκταση μεγαλύτερη από τοπικό επίπεδο και μικρότερη από εθνικό επίπεδο.ایک انتظامی ادارہ جو مقامی اور قومی سطح کے درمیان انٹرمیڈیٹ سطح پر علاقائی وحدت کا انتظام کرتا ہے۔ + + فرقہ واریتIntercommunality + + top level domainاوپر سطح کی ڈومینtop level domaindomaine de premier niveau + + ہوا کی چکیWindmillہوا کی چکی ایک مشین ہے جو ہوا کی توانائی کو سیل نامی وینز کے ذریعے گردشی توانائی میں تبدیل کرتی ہےA windmill is a machine that converts the energy of wind into rotational energy by means of vanes called sails + + اوپر سطح کی ڈومینtop level domain + + maankraterΣεληνιακός κρατήραςMondkratercráitéar gealaícratera lunarقمری گڑھاcratère lunairelunar crater + + motorsport seasonموٹر کھیل کا موسمmotorsportseizoenMotorsportsaison + + 군인militairστρατιωτικός軍人militärische Personmilitareفوجی شخصmilitairemilitary person + + periodo temporaltidsperiodetijdvakχρονική περίοδοςZeitraumtréimhseوقت کی مدتpériode temporelletime period + + 자동차 엔진automotorκινητήρας αυτοκινήτου内燃機関Fahrzeugmotorinneall gluaisteáinmotore d'automobilemotor de automóvelموٹر گاڑی کا انجنmoteur d'automobileautomobile engine + + NebulaNébuleuseТуманностьآنکھ کا جالا + + ArqueólogoarcheoloogarcheologΑρχαιολόγος考古学者Archäologeseandálaíماہر آثار قدیمہarchéologuearcheologist + + 효소enzymένζυμο酵素Enzymeinsímenzimaخامرہenzymeenzyme + + فٹ بال مقابلہfootball matchدو فٹ بال ٹیموں کے درمیان مقابلہa competition between two football teams + + sangskriversongwriter (tekstdichter)Liedschreiberنغمہ نگارauteur-compositeursongwritera person who writes songs.een persoon die de muziek en/of de tekst voor populaire muzieknummers schrijft.ایک شخص جو گانے لکھتا ہے۔ + + plein正方形Platzcearnógچوکورplacesquare + + universidad대학universiteituniwersytetπανεπιστήμιο大学Universitätollscoiluniversidadeجامع درس گاہuniversitéuniversity + + 해부학anatomische structuuranatomska strukturaανατομική δομή解剖構造anatomischen Strukturcoirpeogstruttura anatomicaجسمانی ساختestrutura anatómicastructure anatomiqueanatomical structure + + serie de televisióntelevisie showtelevizijska oddajaمعلومات تلفازτηλεοπτική σειράテレビ番組Fernsehsendungclár teilifíseٹی وی شوémission de télévisiontelevision show + + academic subjectتعلیمی مضمونGenres of art, e.g. Mathematics, History, Philosophy, Medicineآرٹ کی انواع، جیسے ریاضی، تاریخ، فلسفہ، طب + + popeرومن کیتہولک پادری + + lanceerbasisράμπα φορτώσεωςStartrampeceap lainseálaمیزائل چلانے کی جگہrampe de lancementlaunch pad + + liga de ciclismo사이클 리그wielerrondeΟμοσπονδία ΠοδηλασίαςRad-Ligaسائیکل سوار کی انجمنligue de cyclismecycling leagueکھیلوں کی ٹیموں کا ایک گروپ جو سائیکلنگ میں ایک دوسرے کے خلاف مقابلہ کرتا ہے۔a group of sports teams that compete against each other in Cycling + + country estateملک کی نشستA country seat is a rural patch of land owned by a land owner.یک کنٹری سیٹ زمین کا ایک دیہی پیچ ہے جو زمین کے مالک کی ملکیت ہے + + Nebulaآنکھ کا جالا + + squareچوکور + + ونٹر اسپورٹ پلیئرJoueur de sport d'hiver + + territoriumπεριοχή国土Territoriumماتحت علاقہTerritoireterritoryA territory may refer to a country subdivision, a non-sovereign geographic region.Un territoire peut désigner une subdivision de pays, une région géographique non souveraine.ایک ماتحت علاقہ کسی ملک کی ذیلی تقسیم، ایک غیر خودمختار جغرافیائی خطہ کا حوالہ دے سکتا ہے۔ + + fictional characterخیالی کردار + + TankحوضТанк + + liga de curling컬링 리그curling competitieπρωτάθλημα curlingCurling-Ligasraith curlálaپتھر کنڈلی کھيل کی انجمنligue de curlingcurling leaguea group of sports teams that compete against each other in Curlingکھیلوں کی ٹیموں کا ایک گروپ جو کرلنگ میں ایک دوسرے کے خلاف مقابلہ کرتے ہیں۔ + + Gated communityHofje / gebouw met woongemeenschapbewachte Wohnanlage / Siedlungمسدود برادری + + festival de música음악제muziekfestivalφεστιβάλ μουσικήςMusikfestivalموسیقی میلہfestival de musiquemusic festival + + impuestobelastingφόρος租税Steuercáinمحصولtaxetax + + شریانartery + + renbaanιππόδρομος競馬場RennbahnráschúrsaippodromoracecourseA 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.Ο ιππόδρομος,εναλλακτικός όρος για την πίστα διεξαγωγής αγώνων μεταξύ ίππων,συναντάται σε χώρες όπως η Αγγλία, Αυστραλία, Χονγκ Κονγκ και τα Ηνωμένα Αραβικά Εμιράτα. + + dansertancerzχορευτήςダンサーTänzerdamhsóirballerinoرقص کرنے والاdanceurdancer + + مندرtemple + + 아이스하키 선수ijshockeyspelerπαίκτης χόκεϋEishockeyspielerبرفانی ہاکی کا کھلاڑیjoueur de hockey sur glaceice hockey player + + Sistema de Transporte Públicoopenbaar vervoer systeemμέσα μαζικής μεταφοράςÖffentliches Personenverkehrssystemعوامی راہداری کا نظامSystème de transport publicpublic transit systemΤα μέσα μαζικής μεταφοράς (συντομογραφία ΜΜΜ) είναι τα δημόσια συγκοινωνιακά μέσα, που περιλαμβάνουν τα λεωφορεία, τα τρόλεϊ, τα τραμ, τα τρένα, το μετρό, τα πλοία. Υπάρχουν και τα ταχεία μέσα συγκοινωνίας που περιλαμβάνουν τα αεροπλάνα, υπερταχεία τρένα.Ein System des Öffentlichen Personenverkehrs auf Straße, Schiene oder Wasser.عوامی راہداری کا نظام ایک مشترکہ عوامی نقل و حمل کی سروس ہے جو عام لوگوں کے استعمال کے لیے دستیاب ہے۔عوامی نقل و حمل کے طریقوں میں بسیں ، ٹرالی بسیں ، ٹرام اور ٹرینیں ، 'تیز رفتارراہداری' (میٹرو/زمین دوز برقی ریل/زیر زمین وغیرہ) اور فیری شامل ہیں۔Un système de transport en commun est un service de transport partagé de passagers mis à la disposition du grand public. Les modes de transport public comprennent les bus, les trolleybus, les tramways et les trains, le « transport en commun rapide » (métro, TGV, etc.) et les ferries. Les transports publics interurbains sont dominés par les compagnies aériennes, les autocars et le rail intercité. (http://en.wikipedia.org/wiki/Public_transit).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). + + ریکارڈرز_پر_مبنی_ایک_فائلDatabase + + blood vesselbloedvatvaisseau sanguinخون کی شریان + + ویب صفحات کا مجموعہwebsite + + Stated Resolutionریاستی قراردادA Resolution describes a formal statement adopted by a meeting or convention.ایک قرارداد میٹنگ یا کنونشن کے ذریعہ اختیار کردہ ایک رسمی بیان کی وضاحت کرتی ہے + + COVID-19 pandemicکورونا وائرس2019Ongoing pandemic of coronavirus disease 2019کورونا وائرس کی بیماری 2019 کی جاری وبائی بیماری۔ + + partido de fútbolvoetbal wedstrijdmecz piłki nożnejαγώνας ποδοσφαίρουFußballspielcluiche peileفٹ بال مقابلہfootball matcha competition between two football teamsدو فٹ بال ٹیموں کے درمیان مقابلہ + + سنگلsingleموسیقی میں، سنگل یا ریکارڈ سنگل ریلیز کی ایک قسم ہے، عام طور پر ایل پی یا سی ڈی سے کم ٹریک کی ریکارڈنگ + + card gameتاشcome from http://en.wikipedia.org/wiki/Category:Card_gamesسے آئے http://en.wikipedia.org/wiki/زمرہ: کارڈ گیمز + + فلم کا ہدایت کارMovie directorایک شخص جو فلم بنانے کی نگرانی کرتا ہےa person who oversees making of film. + + + + شہرcitya relatively large and permanent settlement, particularly a large urban settlementایک نسبتا بڑی اور مستقل آبادی ، خاص طور پر ایک بڑی شہری بستی + + muisgenoom locatieマウス遺伝子座Mausgenom Lokationچوہے کے نَسبہ کا مقامMouseGeneLocation + + 전쟁militær konfliktmilitair conflictστρατιωτική σύγκρουσηmilitärischer Konfliktفوجی تنازعہconflit militairemilitary conflict + + فگرسکیٹرfigure skater + + نیشنل فٹ بال لیگ تقریب + + Aangenomen BesluitAngenommen Beschlußریاستی قراردادRésolution adoptéeStated ResolutionA Resolution describes a formal statement adopted by a meeting or convention.ایک قرارداد میٹنگ یا کنونشن کے ذریعہ اختیار کردہ ایک رسمی بیان کی وضاحت کرتی ہےUne résolution décrit une déclaration officielle adoptée par une réunion ou une convention.Een Besluit of Verklaring beschrijft een formeel besluit of formele aanbeveling aangenomen door een vergadering. + + tram路面電車Straßenbahnٹرام گاڑیtramwaystreetcar + + 영화제filmfestivalfilmfestivalfestiwal filmowyφεστιβάλ κινηματογράφου映画祭Filmfestivalféile scannánفلمی میلہfestival du filmfilm festival + + جنگلforestایک قدرتی جگہ جو کم و بیش درختوں کے ساتھ اگتی ہے۔A natural place more or less densely grown with trees + + monoklonaler Antikörpermonoclonal antibodyمونوکلونل دافِع جِسمmonoclonal anticorpsMedikamente welche monoklonale Antikörper sindوہ دوائیں جو ایک مونوکلونل دافِع جِسم ہیں۔‎‎ + + theaterdirecteurTheaterdirektorتھیٹر ہدایت کارdirecteur de théâtreTheatre directorA director in the theatre field who oversees and orchestrates the mounting of a theatre production.تھیٹر کے میدان میں ایک ڈائریکٹر جو تھیٹر پروڈکشن کے بڑھتے ہوئے کام کی نگرانی اور آرکیسٹریٹ کرتا ہے + + آب و تابBlazon + + continentبراعظمبراعظم زمین کا ایک بڑا علاقہ ہے جو زمین کی پرت سے نکلا ہے ، درحقیقت یہ ان سب سے بڑی تقسیم ہے جس کے ساتھ ابھرتی ہوئی زمینیں تقسیم کی گئی ہیں۔ + + political partyسیاسی جماعت + + bebida음료drikdrankαναψυκτικό飲料GetränkdeochbevandaمشروبboissonbeverageA drink, or beverage, is a liquid which is specifically prepared for human consumption.Ein Getränk ist eine zum Trinken zubereitete Flüssigkeit. Getränke werden entweder zum Stillen von Durst und damit zur Wasseraufnahme des Körpers, als Nahrungsmittel oder auch als reine Genussmittel aufgenommen.Ένα πόσιμο υγρό ρόφημα, συνήθως με μηδενική ή ελάχιστη περιεκτικότητα αλκοόλης.یک مشروب مائع ہے جو خاص طور پر انسانی استعمال کے لیے تیار کیا جاتا ہے۔ + + کھلاڑیathlete + + 우주 왕복선ruimteveerδιαστημικό λεωφορείοRaumfährespástointeáilخلائی جہازnavette spatialespace shuttle + + eventتقریب + + جُغرافیائی سیاسیات تنظیمgeopolitical organisation + + مشروبbeverageیک مشروب مائع ہے جو خاص طور پر انسانی استعمال کے لیے تیار کیا جاتا ہے۔A drink, or beverage, is a liquid which is specifically prepared for human consumption. + + werkgeversorganisatieArbeitgeberverbändeملازمین کی تنظیمsyndicat de patronsEmployers' Organisationملازمین کی تنظیم تاجروں کی ایک تنظیم ہے جو مزدور تعلقات کے میدان میں اپنے اعمال کو مربوط کرنے کے لیے مل کر کام کرتی ہے۔An employers' organisation is an organisation of entrepreneurs who work together to coordinate their actions in the field of labour relations + + gevangenisφυλακή刑務所gefängnispríosúnprigioneجیلprisonprison + + light novelجاپانی افسانهA style of Japanese novelجاپانی ناول کا ایک انداز + + 고세균Archaea (oerbacteriën)αρχαία古細菌Archaeenarcheiآثار قدیمہarchéesarchaea + + jugador de balonmanohåndboldspillerhandballerπαίκτης του handballHandballspielerimreoir liathróid láimheہینڈ بال کا کھلاڑیjoueur de handballhandball playerایک کھیل جِس میں دو یا چار کھِلاڑی بَند احاطے میں ربَڑ کی چھوٹی گیند کو ہاتھوں سے دیوار پَر مارتے ہیں + + 남자MandMensмужчинаMężczyznaおとこMannUomoآدمیHommeman + + architectمعمار + + COVID-19 pandemicPandémie COVID-192019冠状病毒病疫情کورونا وائرس2019کورونا وائرس کی بیماری 2019 کی جاری وبائی بیماری۔Ongoing pandemic of coronavirus disease 2019Pandémie actuelle de maladie coronavirus 20192019冠狀病毒病疫情是一次由严重急性呼吸系统综合征冠状病毒导致的2019冠状病毒病所引發的全球大流行疫情 + + فارمولا ون ریسرFormula One racer + + 여자kvindevrouwженщинаkobieta女性Frauendonnaعورتfemmewoman + + religieusθρησκευτικόςreligiösمذہبیreligieuxreligious + + classical music artistاعلی درجےکاموسیقی فنکارلڈوگ وان بیتھوون ، جرمن موسیقار اور پیانو بجانے والے ، اعلی درجے موسیقی کے ایک عظیم فنکار تھے۔ + + chefباورچیa person who cooks professionally for other peopleوہ شخص جو پیشہ ورانہ طور پر دوسرے لوگوں کے لیے کھانا پکاتا ہے۔ + + clerical orderعلما کا حکمخانقاہی حکم مذہبی، مردوں یا عورتوں کا ایک حکم ہے، جو ایک مشترکہ عقیدہ اور خانقاہی اصول کے بارے میں متحد ہو گئے ہیں جس کے وہ پابند ہیں، اور ایک ہی مقامی کمیونٹی، ایک خانقاہ یا مندر کے اندر مستقل طور پر ایک ساتھ رہتے ہیں۔ ہم خیال مذہبیوں کی کئی خانقاہیں مل کر ایک خانقاہی ترتیب بناتی ہیں۔ + + arácnido거미강spinachtigenαραχνοειδέςクモ綱Spinnentieraraicnidaracnidearacnídeosعنکباتarachnidesarachnidحیوانیات میں اِس خاندان کا نام جِس میں مکڑی اور بچھو وغیرہ شامِل ہیں + + conveyor systemنقل و حمل کے نظام + + موسیقی چارٹس میں جگہ + + Theological conceptمذہبی تصورTheological concepts, e.g. The apocalypse, Trinty, Stoicismمذہبی تصورات، جیسے آسمانی کِتاب تثلیث رواقیت + + Distrito부서departementτμήμαDistriktroinnشعبہdépartementdepartment + + بیماری + + سرنگtunnelایک سرنگ پیدل یا گاڑیوں کی سڑک کے لیے، ریل ٹریفک کے لیے، یا نہر کے لیے ہو سکتی ہے۔ کچھ سرنگیں پانی کی کھپت یا ہائیڈرو الیکٹرک اسٹیشنوں کے لیے پانی کی فراہمی کے لیے آبی راستے ہیں یا گٹر ہیں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). + + windrichtingWindrichtungہوا کی سمتdirection cardinaleCardinal directionOne of the four main directions on a compass or any other system to determine a geographical positionUne des 4 principales directions d'un compas ou de tout autre système pour déterminer une position geographiqueجغرافیائی پوزیشن کا تعین کرنے کے لیے کمپاس یا کسی دوسرے نظام پر چار اہم سمتوں میں سے ایک + + Cipherخفیہ پیغام + + ChiefChef + + television showٹی وی شو + + publisherناشرPublishing companyشائع کرنے والے اشاعتی ادارہ + + malerschilderζωγράφος画家Malerرنگ سازpeintrepainter + + کیمیائی مادہ + + modelijnModelinieقطار رائجtype de coutureline of fashionA coherent type of clothing or dressing following a particular fashionایک مربوط قسم کا لباس یا لباس کسی خاص فیشن کے بعدEen samenhangend geheel van kleding in een bepaalde stijl volgens een bepaalde mode. + + مجسمہSculptureمجسمہ تین جہتی فَن کا کام ہے جو سخت مواد کی تشکیل یا امتزاج سے بنایا گیا ہے، عام طور پر پتھر جیسے سنگ مرمر، دھات، شیشہ، یا لکڑی، یا پلاسٹک کے مواد جیسے مٹی، ٹیکسٹائل، پولیمر اور نرم دھات۔ + + مارشل کے فنکارmartial artist + + سرمائی کھیل کھیلنے والاwinter sport Player + + SømandبحارनाविकملاحMarinelaNavigatriceSailor + + solar eclipseسورج گرہنسورج گرہن ایک ایسا واقعہ ہے جس میں چاند سورج اور زمین کے درمیان مداخلت کرتا ہے، جس کی وجہ سے زمین کے کچھ علاقوں کو معمول سے کم روشنی ملتی ہے + + 공원parkπάρκο公園Parkpáircparqueتفریح گاہparcparkA park is an area of open space provided for recreational use. http://en.wikipedia.org/wiki/Parkپارک کھلی جگہ کا ایک علاقہ ہے جو تفریحی استعمال کے لیے فراہم کی جاتی ہے۔ + + sumo wrestlerسومو پہلوان + + 사이클 팀cykelholdwielerploegομάδα ποδηλασίαςRadsportteamfoireann rothaíochtasquadra di ciclismoسائیکلنگ جماعتéquipe cyclistecycling team + + باسکٹ بال کھلاڑیbasketball playerباسکٹ بال کے کھیل میں شامل ایک کھلاڑی + + نائب صدرvice president + + بیچ والی بال پلیئر + + bruto nationaal productακαθάριστο εγχώριο προϊόνBruttoinlandsproduktolltáirgeacht intíreمجموعی ملکی پیداوارgross domestic product + + radio stationریڈیو سٹیشن + + waterbaanWasserbahnmarcaíocht uisceپانی کی سواریwater ride + + legervoertuigMilitärfahrzeugفوجی گاڑیvéhicule militairemilitary vehicle + + ڈھینکلیTreadmillگھوڑوں، گدھوں یا یہاں تک کہ لوگوں کی کشش طاقت سے چلنے والی چکیA mill driven by the tractive power of horses, donkeys or even people + + kunstsoortKunstgattungفنکارانہ صنفgenre artistiqueartistic genreGenres of art, e.g. Pointillist, ModernistGattung nennt man in den Kunstwissenschaften die auf das künstlerische Ausdrucksmedium bezogenen Formen der Kunst.genre d'art, ex: Pointillisme, Modernismeفن کی انواع + + sportseizoenπερίοδος αθλημάτωνSportsaisonکھیلوں کا موسمsports season + + 크리켓 선수cricketspelerπαίκτης του κρίκετクリケット選手Cricketspielerimreoir cruicéidکرکٹ کا کھلاڑیjoueur de cricketcricketer + + پانی کا ضلعی اقتدارتحفظ،سطحی پانی کے انتظام کے لیے وقف سرکاری ایجنسی + + angiospermabedektzadigenανθοφόρο φυτό被子植物bedecktsamige Pflanzemagnoliofitaپھولوں کا پوداangiospermesflowering plant + + prisonجیل + + wineشراب + + SpreadsheetЭлектронная таблицаسپریڈ شیٹtableurمرتب و شمار یا معلومات کو کام میں لانےوالاایک کمپیوٹر پروگرامProgramme informatique qui utilise des statistiques ou des informations + + تماشا گاہtheatreایک تھیٹر یا تھیٹر (ایک پلے ہاؤس بھی) ایک ڈھانچہ ہے جہاں تھیٹر کے کام یا ڈرامے پیش کیے جاتے ہیں یا دیگر پرفارمنس جیسے میوزیکل کنسرٹ تیار کیے جا سکتے ہیں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. + + capítulo de serie de televisión텔레비전 에피소드televisie seizoenεπεισόδιο τηλεόρασηςテレビ放送回Fernsehfolgeeagrán de chlár teilifíseٹی وی کی قسطépisode télévisételevision episodeA television episode is a part of serial television program.ٹیلی ویژن ایپی سوڈ سیریل ٹیلی ویژن پروگرام کا ایک حصہ ہے + + academic conferenceتعلیمی کانفرنس + + سافٹ بال کی انجمنکھیلوں کی ٹیموں کا ایک گروپ جو سافٹ بال میں ایک دوسرے سے مقابلہ کرتا ہے + + baronet準男爵Baronetbaronettoچھوٹا نوابbaronet + + legislatureمقننہ + + ویکسینیشن کے اعدادوشمارVaccination StatisticsCOVID-19 ویکسینیشن کی عالمی پیشرفت سے متعلق اعدادوشمار‎Statistics related to the COVID-19 vaccination world progress‎ + + kantonスイス連邦の州またはフランスの群KantonضِلَعcantoncantonAn administrative (France) or lawcourts (Netherlands) body governing a territorial unity on the municipal level or somewhat aboveDas Wort Kanton dient zur Bezeichnung verschiedener (niederen) Verwaltungsbezirke in Frankreich, Belgien, Kanada und anderen Ländernایک انتظامی (فرانس) یا قانون کی عدالت (نیدرلینڈز) کا ادارہ جو علاقائی وحدت کا انتظام کرتا ہے بلدیاتی سطح پر یا اس سے کچھ اوپر + + ویکسینvaccineوہ دوائیں جو ایک ویکسین ہیں‎Drugs that are a vaccine‎ + + person functionشخص کی تقریب + + bioscoopκινηματογράφοςTheaterسنیماcinémacinema (movie theater)A building for viewing films.فلم دیکھنے کے لیے ایک عمارت۔ + + کیمیائی مادہchemical substance + + Historical settlementتاریخی آبادکاریA place which used to be a city or town or village.وہ جگہ جو پہلے شہر یا قصبہ یا گاؤں ہوا کرتی تھی + + GnetalesGnetophytesグネツム綱Gnetophytaگمٹیلا پوداgnétophytesGnetophytes + + jockeyαναβάτης αλόγου αγώνων騎手Jockey (Pferderennprofi)marcachپیشہ ور گھڑ سوارjockey (coureur à cheval)jockey (horse racer) + + wetenschappelijke theoriewissenschaftliche Theorieسائنسی تصورconcept scientifiqueScientific conceptScientific concepts, e.g. Theory of relativity, Quantum gravityConcepts scientifiques tels que la théorie de la relativité, la gravité quantiqueسائنسی تصورات، جیسے نظریہ اضافیت، کوانٹم کشش ثقل + + storm surgeطوفانی لہر64-72 ناٹس (بیفورٹ اسکیل پر 11) اور بارش اور گرج چمک کے ساتھ ایک پرتشدد موسمی صورتحال + + ٹینس کا باہمی مقابلہtennis tournament + + professionپیشہ + + قصبہtownچند سو سے لے کر کئی ہزار (کبھی کبھار سیکڑوں ہزاروں) تک کی تصفیہ۔ درست معنی ممالک کے درمیان مختلف ہوتے ہیں اور یہ ہمیشہ قانونی تعریف کا معاملہ نہیں ہوتا ہے۔ عام طور پر، ایک قصبہ کو گاؤں سے بڑا لیکن شہر سے چھوٹا سمجھا جاتا ہے، حالانکہ اس اصول میں مستثنیات ہیں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. + + resultados de una competición deportivauitslag van een sport competitieαποτελέσματα αθλητικού διαγωνισμούErgebnisse eines Sportwettbewerbsکھیلوں کے مقابلے کا نتیجہrésultats d'une compétition sportiveresults of a sport competition + + torenπύργοςTurmtúrمینارtourtowerA Tower is a kind of structure (not necessarily a building) that is higher than the restمینار ایک قسم کا ڈھانچہ ہے (ضروری نہیں کہ کوئی عمارت) جو باقی سے اونچی ہو + + Algorithmحساب و شمارایک عین قاعدہ (یا قواعد کا مجموعہ) جس میں وضاحت کی جاتی ہے کہ کسی مسئلے کو کیسے حل کیا جائے + + 단백질proteïneπρωτεΐνηタンパク質Proteinpróitéinproteinaproteínaلحمیاتprotéineprotein + + menselijk genoom locatieτοποθεσία του ανθρώπινου γονιδίουヒト遺伝子座Humangen Lokationانسانی نَسبہ کا مقامPosition de gène chez l'hommeHumanGeneLocation + + speedwayteamklub żużlowySpeedwayteamfoireann luasbhealaighسپیڈ وے ٹیمspeedway team + + organisationتنظیم + + 기독교 총대주교christelijk patriarchpatriarcha chrześcijańskiχριστιανός πατριάρχηςchristlicher Patriarchpatriarca cristianoعیسائی پادریpatriarche chrétienChristian Patriarch + + regeringsvormΕίδη ΔιακυβέρνησηςRegierungsformحکومت کی قسمrégime politiqueGovernment Typea form of governmentحکومت کی ایک شکل + + stadmiasteczkoπόληStadtनगरbaileقصبہvilletowna 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.چند سو سے لے کر کئی ہزار (کبھی کبھار سیکڑوں ہزاروں) تک کی تصفیہ۔ درست معنی ممالک کے درمیان مختلف ہوتے ہیں اور یہ ہمیشہ قانونی تعریف کا معاملہ نہیں ہوتا ہے۔ عام طور پر، ایک قصبہ کو گاؤں سے بڑا لیکن شہر سے چھوٹا سمجھا جاتا ہے، حالانکہ اس اصول میں مستثنیات ہیں + + Romeinse keizerρωμαίος αυτοκράτοραςrömischer Kaiserempereur romainroman emperor + + edificio religioso종교 건물religiøs bygningcultusgebouwθρησκευτικό κτίριο宗教建築religiöses Gebäudeedificio religiosoمذہبی عمارتédifice religieuxreligious building + + فٹ بال کی انجمنکھیلوں کی ٹیموں کا ایک گروپ جو فٹ بال میں ایک دوسرے کے خلاف مقابلہ کرتا ہے۔ + + ministerMinisterوزیرministreminister + + samba schoolبرازیلی رقص سکول + + mixed martial arts eventمخلوط جنگ جو آرٹس تقریب + + motorrijderμοτοσυκλετιστήςMotorradfahrerموٹر سائیکل سوارmotorcycle rider + + 사무 관리 지역kerkelijk bestuurlijk gebiedklerikale Verwaltungsregionعلمی انتظامی علاقہrégion administrative dans une égliseclerical administrative regionAn administrative body governing some territorial unity, in this case a clerical administrative bodyایک علمی انتظامی معاملات میں ایک انتظامی ادارہ جو کچھ علاقائی وحدت کو کنٹرول کرتا ہے + + compañía de autobusesbusmaatschappijεταιρία λεωφορείωνBusunternehmencomhlacht busبس كا تِجارتی اِدارہcompagnie d'autobusbus company + + دستاویز کی قسمدستاویز کی قسم (سرکاری، غیر رسمی وغیرہ + + central eléctricaElektriciteitscentraleσταθμός παραγωγής ενέργειας発電所Kraftwerkstáisiún cumhachtaبجلی گھرcentrale électriquepower station + + تحریری کامwritten workتحریری کام کسی بھی متن کو پڑھنے کے لیے لکھا جاتا ہے (مثال کے طور پر: کتابیں ، اخبار ، مضامین)Written work is any text written to read it (e.g.: books, newspaper, articles) + + lipidچربیچربی اور چکنائی والے مادے ہیں جو بائیو کیمسٹری میں اہم کردار ادا کرتے ہیں + + ingeniero공학자ingenieurμηχανικός技術者Ingenieurinnealtóiringeniereماہر فنیاتingénieurengineer + + caseمعاملہ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.ایک کیس انتظامی یا کاروباری فیصلے کی تیاری کے لیے کیے گئے کام کی کل ہے۔ ایک اصول کے طور پر ، ایک کیس دستاویزات کے ایک سیٹ میں ظاہر ہوتا ہے۔ + + مقابلہ میں کاریں چلانے والےracing driver + + airportہوائی اڈہ + + سیاستدانpolitician + + کار ہنرartworkفن کا کام، فَنی پیس، یا فَنی آبجیکٹ ایک جمالیاتی شے یا فنکارانہ تخلیق ہے۔A work of art, artwork, art piece, or art object is an aesthetic item or artistic creation. + + body of waterاجسامِ آب + + olympic resultاولمپک کا نتیجہ + + naamnazwaόνομα名前Nameainmnomeنامnomname + + sumoworstelaarSumo-Ringerسومو پہلوانlutteur de sumosumo wrestler + + international organisationorganisation internationaleinternationale organisatieبین الاقوامی تنظیمAn international organisation is either a private or a public organisation seeking to accomplish goals across country bordersایک بین الاقوامی تنظیم یا تو ایک نجی یا عوامی تنظیم ہے جو ملک کی سرحدوں سے اہداف حاصل کرنے کی کوشش کرتی ہے۔ + + Turmspringerschoonspringerhigh diverاونچائی سے پانی میں ڈبکی لگانے والا + + formule 1-coureurπιλότος της φόρμουλας έναFormel-1 Rennfahrerفارمولا ون ریسرpilote de formule 1Formula One racer + + conífera침엽수conifeerκωνοφόρο球果植物門Koniferecónaiféarصنوبر کی قِسم کا پوداconifereconiferعروقی (نالی دار)پودے ہیں ، بیج ایک شنک میں موجود ہوتے ہیں۔ وہ لکڑی کے پودے ہیں۔Le conifere sono piante vascolari, con semi contenuti in un cono. Sono piante legnose, perlopiù sono alberi e solo poche sono arbusti.Las coníferas son plantas vasculares, con las semillas contenidas en un cono. Son plantas leñosas. + + administrative regionانتظامی علاقہ(نتظامی علاقہ)انتظامی ادارے کے دائرہ اختیار میں ایک آبادی والی جگہ۔ یہ ادارہ یا تو ایک پورے علاقے یا ایک یا اس سے ملحقہ بستیوں کا انتظام کر سکتا ہے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) + + speedway competitieπρωτάθλημα αυτοκινητοδρόμουSpeedway Ligaتیز راہ کی انجمنligue de speedwayspeedway leagueA group of sports teams that compete against each other in motorcycle speedway racing.کھیلوں کی ٹیموں کا ایک گروپ جو موٹرسائیکل سپیڈ وے ریسنگ میں ایک دوسرے سے مقابلہ کرتا ہے + + instrumentalistμουσικός音楽家MusikerionstraimíسازندہinstrumentisteinstrumentalistΟ μουσικός είναι ένα άτομο το οποίο γράφει, ερμηνεύει, ή κάνει μουσική.Un instrumentiste est quelqu'un qui joue d'un instrument. Tout instrumentiste non-vocal (incluant guitariste, pianiste, saxophoniste, DJ, musicien divers...). Tout artiste solo qui compose et/ou fait partie d'un groupe.Een instrumentalist is een musicus die een muziekinstrument bespeelt. (https://nl.wikipedia.org/wiki/Instrumentalist) + + national collegiate athletic association team seasonقومی کالج ورزش انجمن کاموسم + + boerαγρότης農家Bauerfeirmeoirکسانfermierfarmer + + literary genreادبی صنفGenres of literature, e.g. Satire, Gothicادب کی انواع، جیسے طنزیہ، غیر مہذب + + songگانا + + netball playerنیٹ بال کھلاڑی + + voormalige stad of dorphistorischer Siedlungáit lonnaithe stairiúilتاریخی آبادکاریancien ville ou villageHistorical settlementA place which used to be a city or town or village.وہ جگہ جو پہلے شہر یا قصبہ یا گاؤں ہوا کرتی تھی + + hot springگرم پانی کا قدرتی چشمہ + + πρωτάθλημα βιντεοπαιχνιδιώνVideospiele-Ligasraith físchluichíبصری کھیلوں کی انجمنligue de jeux vidéovideogames leagueA group of sports teams or person that compete against each other in videogames.کھیلوں کی ٹیموں کا ایک گروپ یا شخص جو بصری کھیلوں میں ایک دوسرے سے مقابلہ کرتا ہےΈνα σύνολο ομάδων ή ατόμων που ανταγωνίζονται σε ηλεκτρονικά παιχνίδια. + + cricketveldCricketfeldcampo da cricketکرکٹ کا میدانcricket ground + + DTM racerDTM-coureurDTM Rennfahrerجرمن ٹورنگ کار ماسٹرزریسر + + voormalig kwartier of districthistorischer Kreis / Bezirkceantar stairiúilتاریخی ضلعancien départementHistorical districta place which used to be a district.یک ایسی جگہ جو پہلے ضلع ہوتی تھی۔ + + empresa회사firmabedrijfεταιρία会社Unternehmencomhlachtempresaتِجارتی اِدارہentreprisecompany + + casinoرقص گاہIn modern English, a casino is a facility which houses and accommodates certain types of gambling activities.جدید انگریزی میں ، جوئے بازی کی اڈہ ایک ایسی سہولت ہے جس میں جوئے کی سرگرمیوں کی مخصوص اقسام ہوتی ہیں۔ +. + + locomotiefκινητήριος機関車Lokomotivetraenریل گاڑی کا انجنlocomotivelocomotive + + motorcoureurοδηγός αγώνων μοτοσυκλέταςMotorrad-Rennfahrerموٹر سائیکل دوڑانے والاmotocycle racer + + worstelaarπαλαιστήςレスラーRingercoraíپہلوانlutteurwrestler + + آتش فشاںvolcanoآتش فشاں فی الحال قدرتی جگہ کا ذیلی طبقہ ہے، لیکن اسے پہاڑ بھی سمجھا جا سکتا ہےA volcano is currently subclass of naturalplace, but it might also be considered a mountain. + + golf toernooiGolfturniercomórtas gailftorneo di golfگولف کا باہمی مقابلہtournoi de golfgolf tournament + + verdrag条約Vertragمعاہدہtraitétreaty + + موٹر سائیکل ریسنگ لیگmotorcycle racing leagueکھیلوں کی ٹیموں یا بائیک سواروں کا ایک گروپ جو موٹر سائیکل ریسنگ میں ایک دوسرے سے مقابلہ کرتے ہیںa group of sports teams or bikerider that compete against each other in Motorcycle Racing + + انتخابات + + verkoopεκπτώσεις販売Vertriebdíolacháinفروختventesales + + actor porno성인 배우pornografisch acteuraktor pornograficznyενήλικας (πορνογραφικός) ηθοποιόςポルノ女優pornographischer Schauspieleraisteoir pornagrafaíochtaattore pornoator adulto色情演員بالغ اداکارactor pornoacteur porno/acteur adulteadult (pornographic) actorA pornographic actor or actress or a porn star is a person who performs sex acts in film, normally characterised as a pornographic film.Un actor ou unha actriz porno ou pornográfico/a, é un actor ou actriz de cine porno que actúa en películas de temática pornográfica..&lt;ref&gt;https://gl.wikipedia.org/wiki/Actor_pornogr%C3%A1fico&lt;/ref&gt;ایک فحش اداکار یا اداکارہ یا پورن سٹار وہ شخص ہوتا ہے جو فلم میں جنسی حرکتیں کرتا ہے، عام طور پر اسے فحش فلم کے طور پر دیکھا جاتا ہے۔ + + Wikimedia templateویکی میڈیا کا سانچہWikimedia-Vorlagemodèle de WikimediaDO NOT USE THIS CLASS! This is for internal use only!!اس کلاس کو استعمال نہ کریں! یہ صرف اندرونی استعمال کے لیے ہےNE PAS UTILISER CETTE CLASSE! Usage interne réservé uniquement! + + زمین دوز برقی ریل کا اڈہmetrostation + + Annotationتشریح + + Gridiron voetballerGridiron Footballspielerگرڈیرون فٹ بال کھلاڑیjoueur de football américain gridirongridiron football playerGradiron football, also called North American football, is a family of soccer team games played primarily in the United States and Canada.گریڈیرون فٹ بال ، جسے شمالی امریکی فٹ بال بھی کہا جاتا ہے ، فٹ بال ٹیم کھیلوں کا ایک خاندان ہے جو بنیادی طور پر ریاستہائے متحدہ اور کینیڈا میں کھیلا جاتا ہے + + motor機関 (機械)Motorانجنmoteurengine + + 기독교 교리Christelijke leerΧριστιανικό ΔόγμαChristliche Lehredottrina cristianaعیسائی نظریہdoctrine chrétienneChristian DoctrineTenets of the Christian faith, e.g. Trinity, Nicene Creedعیسائی عقیدے کے اصول، جیسے تثلیث، نیکین عقیدہ + + باسکٹ بال کی جماعتbasketball team + + hollywood cartoonہالی ووڈ کارٹون + + gebiedεμβαδόν面積BereichceantarرقبہaireareaArea 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)کسی چیز کا علاقہMesure d'une surface.Εμβαδόν ή έκταση είναι το μέγεθος μέτρησης των επιφανειών. + + volksliedNationalhymneamhrán náisiúntaقومی ترانہHymne nationalNational anthemPatriotic musical composition which is the offcial national song.محب وطن موسیقی کی ساخت جو سرکاری قومی گانا ہے۔ + + voetbal competitieΟμοσπονδία ΠοδοσφαίρουサッカーリーグFußball Ligasraith sacairفٹ بال کی انجمنligue de footballsoccer leagueA group of sports teams that compete against each other in soccer.کھیلوں کی ٹیموں کا ایک گروپ جو فٹ بال میں ایک دوسرے کے خلاف مقابلہ کرتا ہے۔ + + bateríabatterijBatteriebatteriabateriaبرقی طاقت پیدا کرنے کا آلہpilebatteryبیٹری (قسم) گاڑیوں میں توانائی کے منبع کے طور پر استعمال ہوتی ہے۔. + + wetenschappelijke conferentieнаучная конференцияkonferencja naukowa学術会議wissenschaftliche Konferenzcongresso scientificoнавуковая канферэнцыяتعلیمی_کانفرنسconférence scientifiqueacademic conference + + historical eventتاریخی واقعہan event that is clearly different from strictly personal events and had historical impactایک ایسا واقعہ جو ذاتی واقعات سے واضح طورپرمختلف ہوجونمایاں، تاریخ بدلنےوالااثررکھتا ہے + + Biatleetバイアスロン選手Biathleteبرف پر پھسلنے میں جِسمانی ورزِشوں کا مُقابلہ کا کھلاڑیBiathlèteBiathlete + + opstand反乱Aufstandrévolterebellion + + teamlidΜέλος ομάδαςチームメンバーTeammitgliedٹیم کے رکنcoéquipierTeam memberA member of an athletic team.ایتھلیٹک ٹیم کا رکنΈνα μέλος μιας αθλητικής ομάδας. + + locusθέση γονιδίων遺伝子座Gen Lokationنَسبہ کا مقامposition du gèneGeneLocation + + کام کی ترتیبsequence of worksپچھلے/اگلے کاموں کی ترتیبsequence of works previous/next + + wegkruisingStraßenkreuzungacomhal bóithrecarrefourroad junctionA 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).Un carrefour est un endroit où le trafic automobile allant dans différentes directions, peut se réaliser d'une manière contrôlée conçue pour minimiser les accidents. Dans certains cas, les véhicules peuvent changer de route ou la direction de leur parcours (http://en.wikipedia.org/wiki/Junction_%28road%29).Eine Straßenkreuzung ist eine Stelle, an der sich zwei oder mehrere Straßen kreuzen (http://de.wikipedia.org/wiki/Stra%C3%9Fenkreuzung). + + RosmolenΜύλοςトレッドミルTretmühleڈھینکلیTreadmillA mill driven by the tractive power of horses, donkeys or even peopleگھوڑوں، گدھوں یا یہاں تک کہ لوگوں کی کشش طاقت سے چلنے والی چکی + + موسیقی میلہmusic festival + + پانی کی سواریwater ride + + cerebrohjernehersenenεγκέφαλοςGehirninchinncervelloدماغcerveaubrainΤο βασικό όργανο του νευρικού συστήματος των ζώων, το οποίο καθορίζει ασυνείδητες και συνειδητές λειτουργίες. Ο όρος χρησιμοποιείται πλέον και για τον χαρακτηρισμό των καθοριστικότερων στοιχείων μίας μηχανής ή ενός συνόλου πραγμάτων. + + handball playerہینڈ بال کا کھلاڑیایک کھیل جِس میں دو یا چار کھِلاڑی بَند احاطے میں ربَڑ کی چھوٹی گیند کو ہاتھوں سے دیوار پَر مارتے ہیں + + مانہواmanhuaکامکس اصل میں چین میں تیار کیے گئے تھےComics originally produced in China + + protohistorical periodproto-historisch Zeitalterperiode in de protohistorieقدیم تاریخی زمانہانسانوں کےمطالعہ تحریر کی ایجاد سے پہلےکی مدت + + WTA-toernooiWTA TurnierTorneo di Women's Tennis Associationخواتین کی انجمن کا باہمی مقابلہTournoi de la Women's Tennis AssociationWomen's Tennis Association tournament + + standardمعیاریa common specificationایک عام تفصیل + + prime ministerوزیراعظم + + ondernemerεπιχειρηματίαςUnternehmerduine den lucht gnóimprenditoreکاروباری شخصhomme d'affairesbusinesspersonThe term entrepreneur mainly means someone who holds a senior position, such as an executive.Με τον όρο επιχειρηματίας νοείται κυρίως κάποιος που κατέχει μία ανώτερη θέση, όπως ένα στέλεχος.Le terme entrepreneur désigne principalement une personne qui occupe un poste supérieur, tel qu'un cadre.اصطلاح کاروباری کا بنیادی طور پر مطلب وہ شخص ہے جو اعلی عہدے پر فائز ہو ، جیسے ایگزیکٹو۔ + + historic buildingتاریخی عمارت + + lipide脂質lipidچربیlipidelipidZijn vetten en vetachtige stoffen die in de biochemie een belangrijke rol spelenچربی اور چکنائی والے مادے ہیں جو بائیو کیمسٹری میں اہم کردار ادا کرتے ہیں + + اڈاstationپبلک ٹرانسپورٹ اسٹیشن (مثلاً ریلوے اسٹیشن، میٹرو اسٹیشن، بس اسٹیشن)Public transport station (eg. railway station, metro station, bus station). + + volleybalcoachπροπονητής βόλλεϋVolleyballtrainertraenálaí eitpheileallenatore di pallavoloوالی بال کی تربیت کرنے والاvolleyball coach + + نشریاتی جالbroadcast networkنشریاتی جال ایک تنظیم ہے ، جیسے کارپوریشن یا دیگر ایسوسی ایشن ، جو ریڈیو یا ٹیلی ویژن اسٹیشنوں کے گروپ پر نشر کرنے کے لیے لائیو یا ریکارڈ شدہ مواد ، جیسے فلمیں ، نیوز کاسٹ ، کھیل اور عوامی امور کے پروگرام مہیا کرتی ہے۔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) + + public serviceخدمات عامہیہ ریاستی ڈھانچے کی طرف سے عوام کے لیے فراہم کردہ خدمات ہیں۔ + + theologisch conceptTheologisch Konzeptمذہبی تصورconcept théologiqueTheological conceptTheological concepts, e.g. The apocalypse, Trinty, Stoicismمذہبی تصورات، جیسے آسمانی کِتاب تثلیث رواقیت + + تِجارتی اِدارہcompany + + nederzettingοικισμός居住地Siedlungbardasبستیzone peupléesettlement + + ملکہ حسنbeauty queenخوبصورتی مقابلے کی خطاب یافتہA beauty pageant titleholder + + گانے والوں کا گروہBand + + hoofdstadΚεφάλαιο首都HauptstadtCapitaleدارالحکومتCapitaleCapitalA municipality enjoying primary status in a state, country, province, or other region as its seat of government.ایک بلدیہ جو کسی ریاست، ملک، صوبے، یا دوسرے علاقے میں اپنی حکومت کی نشست کے طور پر بنیادی حیثیت سے لطف اندوز ہوتی ہے۔ + + producentproducent監督ProduzentمبدہProducteurProducera person who manages movies or music recordings.وہ شخص جو فلموں یا میوزک کی ریکارڈنگ کا انتظام کرتا ہے۔ + + جنکگوginkgoچینی درخت پنکھے کے جیسے پتوں والا + + 소프트웨어softwaresoftwareprogramska opremaλογισμικόソフトウェアSoftwarebogearraílogiciárioتحریری پروگراموں کا مجموعہlogicielsoftware + + arenaمیدانایک میدان ایک منسلک علاقہ ہے، اکثر سرکلر یا بیضوی شکل کا، تھیٹر، میوزیکل پرفارمنس، یا کھیلوں کے پروگراموں کی نمائش کے لیے ڈیزائن کیا گیا ہے۔ + + ہسپتال۔ + + όperaoperaόπεραオペラoperceoldrámaoperaموسیقی کے ساتھ نقل یا اداکاریopéraopera + + awardانعام + + lacrosse-spelerπαίκτης χόκεϋ σε χόρτοラクロス選手Lacrossespielerimreoir crosógaíochtaلیکروس کھلاڑیlacrosse player + + certificaat van herkomst voor kwaliteitswijnenΕλεγμένη ονομασία προέλευσης κρασιούkontrollierte Ursprungsbezeichnung für Qualitätsweinevino D.O.C.vin A.O.C.Controlled designation of origin wineA quality assurance label for winesΜια ετικέτα διασφάλισης της ποιότητας των οίνων + + بشپ کے تحت حلقہڈسٹرکٹ یا ایک بشپ کی نگرانی میں دیکھیں۔ + + fortfortfortقلعہFortified place, most of the time to protect traffic routesEndroit fortifié, la plupart du temps pour protéger des routes de trafic.مضبوط جگہ ، زیادہ تر وقت آمد و رفت کے راستوں کی حفاظت کے لیے + + 국가원수presidentprezydentπρόεδρος大統領Präsidentuachtaránصدرprésidentpresident + + coureurοδηγός αγώνωνRennfahrerمقابلہ میں کاریں چلانے والےracing driver + + estructura arquitectural건축 구조bouwselαρχιτεκτονική κατασκευή構造物Bauwerkstruchtúr ailtireachtastruttura architettonicaتعمیراتی ڈھانچےstructure architecturalearchitectural structureΜια αρχιτεκτονική κατασκευή είναι μια ανθρώπινη κατασκευή, επιδαπέδια, ακίνητη κατασκευή (http://en.wikipedia.org/wiki/Architectural_structure).Ein Bauwerk ist eine von Menschen errichtete Konstruktion mit ruhendem Kontakt zum Untergrund. Es ist in der Regel für eine langfristige Nutzungsdauer konzipiert (http://de.wikipedia.org/wiki/Bauwerk).یہ تعمیراتی ڈھانچے مواد سے بنے ہیں۔، آزادانہ ، غیر مستحکم بیرونی تعمیر۔Une structure architecturale est une construction extérieure immobile, autonome et construite par l'homme (http://en.wikipedia.org/wiki/Architectural_structure).An architectural structure is a human-made, free-standing, immobile outdoor construction (http://en.wikipedia.org/wiki/Architectural_structure). + + گولف کا باہمی مقابلہgolf tournament + + tenistatennisserπαίχτης τένιςテニス選手Tennisspielerimreoir leadóigejogador de tennisٹینس کا کھلاڑیjoueur de tennistennis player + + باہمی مقابلہtournament + + steenkolenmijnKohlengrubeکوئلہpuits de charboncoal pitA coal pit is a place where charcoal is or was extractedکوئلے کا گڑھا ایک ایسی جگہ ہے جہاں چارکول ہے یا نکالا جاتا ہے۔Un puits de charbon est un endroit d'où le charbon était - ou est encore - extraitEen mijn is een plaats waar steenkool wordt of werd gewonnen + + بُرج آبWater towerپانی کی فراہمی کے نظام پر دباؤ برقرار رکھنے کے لیے کچھ بلندی کی جگہ پر پانی کی بڑی مقدار کو ذخیرہ کرنے کے لیے ڈیزائن کیا گیا ایک تعمیر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 + + volleyball playerوالی بال کاکھلاڑی + + عجائب گھرmuseum + + politiek conceptpolitische Konzeptسیاسی تصورconcept politiquePolitical conceptPolitical concepts, e.g. Capitalism, DemocracyConcept politiques tels que le capitalisme, la démocratie...سیاسی تصورات، جیسے سرمایہ داری، جمہوریت + + Browser (bladerprogramma)БраузерBrowserٹٹولنے والاNavigateurBrowser + + کھیلوں کی جماعت کا موسمsports team seasonایک خاص سپورٹس ٹیم کے لیے ایک موسم (جیسا کہ پوری لیگ کے موسم کے برعکس جس میں ٹیم ہے۔A season for a particular sports team (as opposed to the season for the entire league that the team is in) + + 디지털 카메라digitale cameraψηφιακή φωτογραφική μηχανήDigitalkameraceamara digiteachڈیجیٹل کیمرہappareil photo numériquedigital cameraΗ ψηφιακή φωτογραφική μηχανή είναι συσκευή η οποία καταγράφει εικόνες με ηλεκτρονικό τρόπο, σε αντίθεση με την συμβατική φωτογραφική μηχανή, η οποία καταγράφει εικόνες με χημικές και μηχανικές διαδικασίες.Un appareil photographique numérique (ou APN) est un appareil photographique qui recueille la lumière sur un capteur photographique électronique, plutôt que sur une pellicule photographique, et qui convertit l'information reçue par ce support pour la coder numériquement.ڈیجیٹل کیمرہ ایک ایسا آلہ ہے جو روایتی کیمرہ کے برعکس الیکٹرانک طور پر تصاویر کھینچتا ہے، جو کیمیائی اور مکینیکل عمل سے تصاویر کھینچتا ہے۔ + + national football league eventقومی فٹ بال انجمن تقریب + + 사건gebeurtenisγεγονόςイベントEreignisócáideventoتقریبévènementevent + + وزیرminister + + cemeteryقبرستانA burial placeایک تدفین کی جگہ + + تاریخی تعمیر + + banda음악 그룹bandμουσικό συγκρότημαバンド_(音楽)Musikgruppebanna ceoilgruppo musicalebandaگانے والوں کا گروہgroupe de musiqueBand + + Christian Patriarchعیسائی پادری + + regentschap (regering)αντιβασιλεία摂政Regentschaftkabupatenregencybagian wilayah administratif dibawah provinsi + + país나라landlanddržavaГосударствоχώραStaattírملکpayscountry + + torero투우사stierenvechtertoreadorταυρομάχος闘牛士Stierkämpfertarbhchomhraiceoirtoreroبیل کا مُقابلہ کرنے والاtorerobullfighter + + high diverاونچائی سے پانی میں ڈبکی لگانے والا + + shipجہاز + + معدنیاتmineralA naturally occurring solid chemical substance.قدرتی طور پر پائے جانے والا ٹھوس کیمیائی مادہ + + schermerξιφομάχοςフェンシング選手Fechterpionsóirتیغ زنfencer + + youtuberاليوتيوبYoutuberयूट्यूबरیوٹیب پر وڈیو لگانے والاyoutuberrayoutubeuseYoutubera person who uploads, produces, or appears in videos on the video-sharing website YouTube..وہ شخص جو ویڈیو شیئرنگ ویب سائٹ یوٹیوب پر ویڈیوز اپ لوڈ کرتا ہے، تیار کرتا ہے یا ان میں ظاہر ہوتا ہے + + وقت وقفہTimeInterval + + paardenraceαγώνας ιππασίαςPferderennenگھوڑا دوڑ میں مقابلہ کرناcourse de chevauxhorse race + + pescadofiskvisrybaψάρι魚類Fischiascpeixeمچھلیpoissonfish + + HumanGeneLocationانسانی نَسبہ کا مقام + + 잡지tijdschriftΠεριοδικό雑誌PublikumszeitschriftirisleabharرسالہmagazinemagazineMagazines, 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.میگزین، میگزین، چمکیلی یا سیریل اشاعتیں ہیں، عام طور پر ایک باقاعدہ شیڈول پر شائع ہوتے ہیں، مختلف مضامین پر مشتمل ہوتے ہیں. انہیں عام طور پر اشتہارات، خریداری کی قیمت، پری پیڈ میگزین سبسکرپشنز، یا تینوں کے ذریعے مالی اعانت فراہم کی جاتی ہے۔.Περιοδικά ή γυαλιστερές φωτογραφίες περιοδικών εκδόσεων δημοσιεύονται σε τακτά χρονικά διαστήματα, περιέχει μια ποικιλία από αντικείμενα.Γενικά χρηματοδοτείται από διαφημίσεις, με τιμή αγοράς, με προπληρωμένες συνδρομές περιοδικών, ή και των τριών.Als Publikumszeitschrift (auch Magazin) bezeichnet man eine Gattung von Zeitschriften, die sich an eine sehr breite Zielgruppe wendet und keine fachlichen Prägungen oder andere spezifische Merkmale voraussetzt. Publikumszeitschriften dienen der Unterhaltung und Information, sie sollen unangestrengt gelesen werden können. + + 은하galaksemelkwegstelselγαλαξίας銀河Galaxieréaltragaláxiaکہکشاںgalaxiegalaksigalaxy + + بادشاہmonarch + + manhwamanhwa韓国の漫画manhwaمنحواmanhwaManhua is het Koreaanse equivalent van het stripverhaalΚορεάτικος όρος για τα κόμικς και τα κινούμενα σχέδια εκτύπωσηςist die in der westlichen Welt verbreitete Bezeichnung für Comics aus Südkorea.مزاحیہ اور پرنٹ کارٹونز کے لیے کورین اصطلاحKorean term for comics and print cartoons + + Miembro de organizaciónorganisatielidΜέλος οργανισμούOrganisationsmitgliedتنظیم کے رکنMembre d'organisationOrganisation memberA member of an organisation.Membre appartenant à une organisation.Μέλος ενός οργανισμού.کسی تنظیم کا ممبر + + قبر کی یادگارgrave stone or grave monumentایک یادگار ایک مقبرے پر کھڑی کی گئی ، یا ایک یادگار پتھرA monument erected on a tomb, or a memorial stone. + + 텔레비전 시즌televisie seizoenτηλεοπτική σεζόνFernsehstaffelٹی وی ڈرامہtelevision season + + 케이스zaakυπόθεσηSachecásمعاملہdossiercaseA 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.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.ایک کیس انتظامی یا کاروباری فیصلے کی تیاری کے لیے کیے گئے کام کی کل ہے۔ ایک اصول کے طور پر ، ایک کیس دستاویزات کے ایک سیٹ میں ظاہر ہوتا ہے۔ + + taxonταξονομική ομάδαタクソンtaxonomische Gruppeنسل یا خاندانgroupe taxonomiquetaxonomic groupa category within a classification system for Speciesپرجاتیوں کے لیے درجہ بندی کے نظام کے اندر ایک زمرہcatégorie dans un système de classification d'espècescategorie binnen een classificatiesysteem voor plant- en diersoorten + + bufete de abogadosadvocatenkantoorεταιρεία δικηγόρων法律事務所Anwaltskanzleignólacht dlíقانونی فرمlaw firmA 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.ایک قانونی فرم ایک کاروباری ادارہ ہے جسے ایک یا زیادہ وکلاء نے قانون کی مشق میں مشغول کرنے کے لیے تشکیل دیا ہے۔ قانونی فرم کی طرف سے فراہم کردہ بنیادی خدمت کلائنٹس (افراد یا کارپوریشنز) کو ان کے قانونی حقوق اور ذمہ داریوں کے بارے میں مشورہ دینا ہے، اور دیوانی یا فوجداری مقدمات، کاروباری لین دین، اور دیگر معاملات میں اپنے مؤکلوں کی نمائندگی کرنا ہے جن میں قانونی مشورہ اور دیگر مدد طلب کی جاتی ہے۔Als Anwaltskanzlei bezeichnet man die Büroräume und das Unternehmen oder den Betrieb eines Rechtsanwalts oder mehrerer Rechtsanwälte. + + motor raceMotorradrennenmotorwedstrijdکار دوڑ + + kanaaltunnelKanaltunneltollán uiscebhealaighآبی گزرگاہ کی سرنگtunnel de voie navigablewaterway tunnel + + اعلی پانی میں ڈبکی لگانے والا + + خامرہenzyme + + oceaanΩκεανός大洋OzeanaigéanoceanoسمندرOcéanOceanنمکین پانی کا ایک جسم جو سیارے کے ہائیڈروسفیئر کا زیادہ تر حصہ بناتا ہے۔A body of saline water that composes much of a planet's hydrosphere.Μάζα αλμυρού νερού που αποτελεί σημαντικό μέρος της υδρόσφαιρας ενός πλανήτη. + + infrastructureinfrastructureبنیادی ڈھانچہ + + aeropuerto공항lufthavnluchthavenаэропортlotniskoαεροδρόμιο空港Flughafenaerfortaeroportoaeroporto機場ہوائی اڈہaeroportoaéroportairport + + automobile engineموٹر گاڑی کا انجن + + ویکی میڈیا کا سانچہWikimedia template!اس کلاس کو استعمال نہ کریں! یہ صرف اندرونی استعمال کے لیے ہےDO NOT USE THIS CLASS! This is for internal use only! + + speedway teamسپیڈ وے ٹیم + + 권투 선수bokserπυγμάχοςボクサーBoxerdornálaípugileboxeadorمکے بازboxeurboxer + + گاؤںvillageایک انسانی بستی یا برادری کا جھنڈ ، عام طور پر ایک چھوٹا قصبہa clustered human settlement or community, usually smaller a town + + helechovarenφτέρηシダ植物門farnraithneachfelcesamambaiaبے پھول کا بڑے پتوں والا پوداfougèresfern + + skaterاسکیٹ کرنے والا + + قاتلmurderer + + personage in NarutoNaruto Charaktercarachtar narutoافسانوی کردارnaruto character + + amateur boxerشوقیہ مکے باز + + futbolista축구 선수fodboldspillervoetballerπαίχτης ποδοσφαίρουサッカー選手Fußballspielerimreoir sacaircalciatoreفٹبال کا کھلاڑیjoueur de footballsoccer player + + single listایک فہرستA list of singlesاِنفرادی فہرست + + پارلیمنٹ کا رکنmember of parliament + + attackحملہحملہ لازمی طور پر فوجی تصادم کا حصہ نہیں ہے۔ + + modeμόδαファッションModefaiseanروشِ لباسmodefashiontype or code of dressing, according to the standards of the time or individual design.وقت یا انفرادی خاکے کے معیار کے مطابق لباس کی قسمEen stijl of code voor kleding, bepaald door de voorkeursstijl van een tijdperk of door individuele ontwerpers. + + Historical countryتاریخی ملکایک ایسی جگہ جو ایک ملک ہوا کرتی تھی۔ + + libraryکتب خانہ + + IslaøeilandwyspaνησίInseloileánilhaجزیرہîleisland + + Pyramidمخروطی مصری مینارa structure whose shape is roughly that of a pyramid in the geometric sense.ایک ڈھانچہ جس کی شکل ہندسی معنوں میں تقریبا ایک اہرام کی ہے۔ + + historical periodتاریخی دورA historical Period should be linked to a Place by way of the property dct:spatial (already defined)یک تاریخی ادوار کو جائیداد کے ذریعے کسی جگہ سے جوڑا جانا چاہیے۔ + + انسانی نَسبہHumanGene + + open zwerm (cluster)Ανοικτό σμήνοςOpen Swarmکھلی بھیڑOpen Swarm + + academic journalتعلیمی جریدہ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.تعلیمی جریدہ زیادہ تر ہم مرتبہ نظرثانی شدہ جریدہ ہے جس میں کسی خاص تعلیمی ادب سے متعلق وظیفہ شائع کیا جاتا ہے۔ تعلیمی جرائد نئی تحقیق کی جانچ پڑتال اور موجودہ تحقیق کی تنقید کے تعارف اور پیشکش کے لیے عوامی جرگہ کے طور پر کام کرتے ہیں۔ مواد عام طور پر مضامین کی شکل اختیار کرتا ہے جو اصل تحقیق، جائزہ مضامین، اور کتاب کے جائزے پیش کرتے ہیں۔ + + lacrosse leagueلیکروس انجمنa group of sports teams that compete against each other in Lacrosse.کھیلوں کی ٹیموں کا ایک گروپ جو لیکروس لیگ میں ایک دوسرے کے خلاف مقابلہ کرتا ہے + + genreصنف + + natuurgebiedφυσική θέσηnatürlicher Ortlugar naturalقدرتی جگہlieu naturelnatural placeΗ φυσική θέση ερμηνεύει όλα τα σημεία που απαντώνται φυσικά στο σύμπανThe natural place encompasses all places occurring naturally in universe.Der natürlicher Ort beinhaltet alle Orte die natürlicherweise im Universum existieren.قدرتی جگہ کائنات میں قدرتی طور پر پائے جانے والے تمام مقامات پر محیط ہے۔ + + letterحرفA letter from the alphabet.حروف تہجی سے ایک حرف + + PandemicPandémie瘟疫عالمی وباءGlobal epidemic of infectious diseaseEpidémie globale de maladie infectieuse也称大流行,是指某种流行病的大范围疾病爆发,其规模涉及多个大陆甚至全球(即全球大流行),并有大量人口患病متعدی بیماری کی عالمی وبا + + grafsteen of grafmonumentGrabdenkmalقبر کی یادگارpierre tombale ou monument funérairegrave stone or grave monumentA monument erected on a tomb, or a memorial stone.ایک یادگار ایک مقبرے پر کھڑی کی گئی ، یا ایک یادگار پتھر + + soap karakterχαρακτήρας σαπουνόπεραςSoapoper Charaktercarachtar i sobaldrámaسلسلہ وار ڈرامے کا کردارpersonnage de feuilletonsoap characterCharacter of soap - radio or television serial frequently characterized by melodrama, ensemble casts, and sentimentality.Personnage de feuilleton mélodramatique ou sentimental pour la radio ou la télévision. + + agglomeratieaglomeracjaσυσσώρευσηBallungsgebietمجموعہaglomeraciónagglomérationagglomeration + + موٹر کھیل میں گاڑی دوڑانے والاmotorsport racer + + 대학 코치school coachπροπονητής κολεγίουCollege-Trainertraenálaí coláisteکھیل سکھانے والاentraîneur universitairecollege coach + + menselijk genανθρώπινο γονίδιοヒト遺伝子Humangengéin duineانسانی نَسبہgène humainHumanGene + + airlineہوائی راستہہوائی جہازوں کے ذریعے سواریاں لے جانے والی تنظیم + + spatial thingجیو: مقامی چیزیں + + سائنسی تصورScientific conceptسائنسی تصورات، جیسے نظریہ اضافیت، کوانٹم کشش ثقل + + localityمحلہ + + religiousمذہبی + + spierμυς筋肉Muskelmatánپٹھوںmusclemuscle + + military unitفوجی یونٹ + + dispositivo electrónicoσυσκευή πληροφορικήςDatengerätمعلوماتی آلاتinformation applianceAn information device such as PDAs or Video game consoles, etc.معلوماتی آلہ جیسے پی ڈی اے یا ویڈیو گیم کنسولز وغیرہ + + psycholoogψυχολόγοςPsychologesíceolaíماہر نفسیاتpsychologuepsychologist + + stroomρέμα河川Bachsruthánruscellocurso d’águaندیruisseaustreama flowing body of water with a current, confined within a bed and stream banksپانی کا بہتا ہوا کرنٹ ، ایک بستر اور ندی کے کناروں میں محدود ہے۔ + + Record OfficeAmtsarchivArchiefinstelling + + director deportivosportbestuurderαθλητικός μάνατζερSportmanagerکھیلوں کا منتظمsports managerAccording 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.فرانسیسی لیبل سب ساکر کے مطابق، ٹرینر شپ کا مطلب ہو سکتا ہے۔ تاہم، یہاں ایک اسپورٹس مینیجر کو اسپورٹنگ کلب کے بورڈ کے رکن سے تعبیر کیا جاتا ہےΣύμφωνα με τη γαλλική ετικέτα Soccer,μπορεί να εννοείται ο προπονητής.Παρ'όλα αυτα,εδώ ένας αθλητικός μάνατζερ μεταφράζεται ως ένα μέλος συμβουλίου ενός αθλητικού κλαμπ. + + surferσέρφερサーファーSurfersurfálaíموج تختہ پر سوار ہونے والاsurfer + + 병원hospitalziekenhuisνοσοκομείοKrankenhausospidéalhospitalہسپتالhôpitalhospital + + ماہر حیاتیاتbiologist + + warmwaterbron温泉heiße Quellefoinse thefonte termalگرم موسم بہارsource d'eau chaudehot spring + + lovwet法 (法学)Gesetzقانونloilaw + + constellationنکشتر + + cocinero요리사kokkokszef kuchniαρχιμάγειρος料理人Kochcócairechefباورچیchefchefa person who cooks professionally for other peopleuna persona que cocina profesionalmente para otrasوہ شخص جو پیشہ ورانہ طور پر دوسرے لوگوں کے لیے کھانا پکاتا ہے۔ + + aristocratاشرافیہ + + یوٹیب پر وڈیو لگانے والاYoutuberوہ شخص جو ویڈیو شیئرنگ ویب سائٹ یوٹیوب پر ویڈیوز اپ لوڈ کرتا ہے، تیار کرتا ہے یا ان میں ظاہر ہوتا ہےa person who uploads, produces, or appears in videos on the video-sharing website YouTube.. + + contestتکرار کرنا + + 철학자filosoofφιλόσοφος哲学者Philosophفلسفیphilosophephilosopher + + ٹرام گاڑیtram + + sequence of worksکام کی ترتیبséquence d'oeuvressequence of works previous/nextپچھلے/اگلے کاموں کی ترتیبséquence d'oeuvres précédent/suivant + + ordenamiento jurídicorechtssysteemσύστημα δικαίουRechtssystemrégime de droitSystem of lawa system of legislation, either national or international + + 생물학 데이터베이스biologische databankΒάση Δεδομένων Βιολογικών ΧαρακτηριστικώνバイオデータベースBiologische Datenbankdatabase biologicoBanco de dados biológicoحیاتیاتی ریکارڈرز_پر_مبنی_ایک_فائلBase de données biologiquesBiological databaseΔιάφορες βάσεις δεδομένων οι οποίες περιέχουν πληροφορίες που ταυτοποιούν τα βασικά βιολογικά χαρακτηριστικά των οργανισμών. Οι πληροφορίες αυτές συγκροτούνται σε σύνολα βιβλιοθηκών των βασικών δομών των κυττάρων των οργανισμών, όπως οι βιλβιοθήκες νουκλεϊνικών οξέων (genomics) και πρωτεϊνών (proteomics). + + hockey clubہاکی کی تنظیم + + writerمصنف + + iglesia교회kirkekerkkościółεκκλησία教会KircheeaglaischiesaigrejaگرجاéglisechurchThis is used for church buildings, not any other meaning of church.یہ چرچ کی عمارتوں کے لیے استعمال ہوتا ہے ، چرچ کا کوئی دوسرا مطلب نہیں۔ + + 터널tunnelτούνελトンネルTunneltollánسرنگtunneltunnelΈνα τούνελ μπορεί να είναι για πεζούς ή για αυτοκινητόδρομους,για σιδηρόδρομους,ή για κανάλια στο νερό.Μερικά τούνελ είναι υδραγωγεία για να παρέχουν νερό προς κατανάλωση ή για υδροηλεκτικούς σταθμούς ή είναι υπόνομοι.Ein Tunnel (auch Tunell) ist eine künstliche Passage, die Berge, Gewässer oder andere Hindernisse (in der Regel als Verkehrsweg) unterquert (http://de.wikipedia.org/wiki/Tunnel).ایک سرنگ پیدل یا گاڑیوں کی سڑک کے لیے، ریل ٹریفک کے لیے، یا نہر کے لیے ہو سکتی ہے۔ کچھ سرنگیں پانی کی کھپت یا ہائیڈرو الیکٹرک اسٹیشنوں کے لیے پانی کی فراہمی کے لیے آبی راستے ہیں یا گٹر ہیںUn tunnel est une galerie souterraine livrant passage à une voie de communication (chemin de fer, canal, route, chemin piétonnier). Sont apparentés aux tunnels par leur mode de construction les grands ouvrages hydrauliques souterrains, tels que les aqueducs, collecteurs et émissaires destinés soit à l'amenée, soit à l'évacuation des eaux des grands centres et certaines conduites établies en liaison avec les barrages et usines hydro-électriques. (http://fr.wikipedia.org/wiki/Tunnel).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). + + roeierκωπηλάτης漕艇選手Rudererrámhaícanottiererower + + Ginkgo bilobaginkgo銀杏属ginkgoginkgo bilobaginkgoجنکگوginkgoginkgoچینی درخت پنکھے کے جیسے پتوں والا + + skierاسکی باز + + countryملک + + valleiΚοιλάδαtalgleannvallevaleوادیvalléevalleya depression with predominant extent in one directionپہاڑیوں یا پہاڑوں کے درمیان زمین کا ایک نچلا علاقہ، عام طور پر اس میں سے دریا یا ندی بہتی ہے + + پن چکیWatermillواٹر مل ایک ایسا ڈھانچہ ہے جو پانی کے پہیے یا ٹربائن کا استعمال مکینیکل عمل کو چلانے کے لیے کرتا ہے جیسے آٹا، لکڑی یا ٹیکسٹائل کی پیداوار، یا دھات کی تشکیل (رولنگ، پیسنا یا تار ڈرائنگ)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) + + ٹیم کے رکنTeam memberایتھلیٹک ٹیم کا رکنA member of an athletic team. + + coachπροπονητήςコーチTrainertraenálaíallenatoreتربیت کرنے والاentraîneurcoach + + کشتی کی تقریبwrestling event + + یوروویژن گانا مقابلہ اندراجEurovision song contest entry + + escritor작가forfatterauteurpisarzσυγγραφέας著作家schriftstellerscríbhneoirمصنفrakstnieksécrivainwriter + + دماغbrain + + Portبندرگاہ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.ساحل یا ساحل پر ایک مقام جس میں ایک یا زیادہ بندرگاہیں ہوں جہاں بحری جہاز لوگوں یا سامان کو زمین پر یا اس سے منتقل کر سکتے ہیں + + Hormoneاعضاء کی خوراکA hormone is any member of a class of signaling molecules produced by glands in multicellular organisms that are transported by the circulatory system to target distant organs to regulate physiology and behaviour.ایک مادہ جو غدود سے نکل کر خون میں شامل ہوتا ہےاورگردش کے نظام کے ذریعے دور دراز کے اعضاء کو نشانہ بناتے ہیں تاکہ جسمانیات اور طرز عمل کو کنٹرول کریں + + ان لائن ہاکی انجمنinline hockey leagueکھیلوں کی ٹیموں کا گروپ جو ان لائن ہاکی میں ایک دوسرے سے مقابلہ کرتے ہیں۔group of sports teams that compete against each other in Inline Hockey. + + actorاداکار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.ایک اداکار یا اداکارہ وہ شخص ہوتا ہے جو ڈرامائی پروڈکشن میں کام کرتا ہے اور جو فلم ، ٹیلی ویژن ، تھیٹر یا ریڈیو میں اس صلاحیت کے ساتھ کام کرتا ہے + + automóvil자동차automobielavtomobilавтомобильsamochódαυτοκίνητο自動車Automobilgluaisteánautomobileautomovelаўтамабільگاڑیautomobileautomobile + + ideologieιδεολογίαイデオロギーIdeologieidé-eolaíochtideologiaنظریہidéologieideologyfor example: Progressivism_in_the_United_States, Classical_liberalismγια παραδειγμα: Προοδευτισμός στις ΗΠΑ, κλασικός φιλελευθερισμόςمثال کے طور پر: ریاستہائے متحدہ میں ترقی پسندی، کلاسیکی لبرل ازم + + Supreme Court of the United States caseFall Oberster Gerichtshof der Vereinigtenریاستہائے متحدہ کی سپریم کورٹ کیسcas juridique de la Cour suprême des États-Unis + + manآدمی + + prehistorical periodتاریخ سے پہلے کے زمانے کا دور + + societal eventمعاشرتی واقعہan event that is clearly different from strictly personal eventsایک ایسا واقعہ جو سختی سے ذاتی واقعات سے واضح طور پر مختلف ہو + + American Leaderامریکی رہنما + + nascar driverنیسکار ڈرائیور + + departmentشعبہ + + standaard規格معیاریstandardstandarda common specificationune spécification communeایک عام تفصیل + + space missionخلائی مہم + + والی بال پلیئر۔ + + حکومت کی قسمGovernment Typeحکومت کی ایک شکلa form of government + + animanga characterانیمنگا کردارAnime/Manga character + + catبلی + + فرانس کا انتظامی ضلعarrondissementایک انتظامی (فرانس) یا قانون کی عدالتیں (نیدرلینڈز) جو کہ علاقائی وحدت پر مقامی اور قومی سطح کے درمیان حکمرانی کرتی ہیںAn administrative (France) or lawcourts (Netherlands) body governing a territorial unity on the intermediate level, between local and national level + + zwermΣμήνος群れschwarmstormoغولSwarm + + teamsportチームスポーツجماعتی کھیلsport d'équipeteam sportA team sport is commonly defined as a sport that is being played by competing teamsایک ٹیم کے کھیل کو عام طور پر ایک کھیل کے طور پر بیان کیا جاتا ہے جو مسابقتی ٹیموں کے ذریعہ کھیلا جاتا ہےUn sport d'équipe est défini communément comme un sport pratiqué par des équipes en compétition + + periodical literatureمتواتر ادبایک شائع شدہ کام ہے جو ایک باقاعدہ شیڈول پر ایک نئے ایڈیشن میں نمودار ہوتا ہے۔ سب سے واقف مثال اخبار ہیں ، جو اکثر روزانہ یا ہفتہ وار شائع ہوتے ہیں۔ یا میگزین عام طور پر ہفتہ وار ، ماہانہ یا سہ ماہی کے طور پر شائع ہوتا ہے۔ دوسری مثالوں میں ایک نیوز لیٹر ، ایک ادبی جریدہ یا سیکھا ہوا جریدہ ، یا ایک سالانہ کتاب ہوگی۔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. + + CommunityCommunautéبرادریکمیونٹی جانداروں، لوگوں، پودوں یا جانوروں کا ایک گروپ ہے جو ایک مشترکہ ماحول میں رہتے ہیں۔A community is a group of living organisms, people, plants or animals that live in a common environment.Une communauté est un groupe d'organismes vivants, de personnes, de plantes ou d'animaux qui vivent dans un environnement commun.Κοινότητα είναι μία ομάδα ζώντων οργανισμών, ανθρώπων, φυτών ή ζώων που ζουν σε ένα κοινό περιβάλλον. + + Cardinal directionہوا کی سمتOne of the four main directions on a compass or any other system to determine a geographical positionجغرافیائی پوزیشن کا تعین کرنے کے لیے کمپاس یا کسی دوسرے نظام پر چار اہم سمتوں میں سے ایک + + 캐나다 축구 팀Canadees footballteamκαναδέζικη ομάδα ποδοσφαίρουkanadische Footballmannschaftsquadra di football canadeseکینیڈین فٹ بال جماعتéquipe canadienne de football américaincanadian football Team + + تصویرimageایک دستاویز جس میں بصری عکس ہو۔A document that contains a visual image + + کھیلوں کا موسمsports season + + emisora de radioradiozenderραδιοφωνικός σταθμόςラジオ放送局Radiosenderstáisiún raidióریڈیو سٹیشنstation de radioradio stationA 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.Ein Radiosender hat genau ein Programm, zum Beispiel der Sender NDR Kultur. Nicht zu verwechseln mit der Rundfunkanstalt NDR, welche mehrere Radiosender hat. + + locomotiveریل گاڑی کا انجن + + خوراکFoodکھانا کوئی بھی کھانے یا پینے کے قابل مادہ ہے جو عام طور پر انسان استعمال کرتے ہیں۔Food is any eatable or drinkable substance that is normally consumed by humans. + + gerente de fútbolvoetbalmanagerπροπονητής ποδοσφαίρουサッカーマネージャーFußballmanagerbainisteoir sacairفٹ بال منتظمentraîneur de footballsoccer manager + + amusement park attractionتفریحی پارک کی کشش + + فراعنہPharaohقدیم بادشاہوں کا ایک لقب + + gedichtποίημαGedichtdánpoesiaنظمpoèmepoem + + 정치인politicuspolitikπολιτικός政治家Politikerpolaiteoirpolíticoسیاستدانpoliticienpolitician + + combinatiepreparaatKombinationspräparatمنشیات کا مجموعہpréparation combinéecombination drugادویات جو کیمیکل کا مجموعہ ہیں۔‎Medikamente die mehrere Wirkstoffe enthalten + + 희극 배우komiekκωμικόςお笑い芸人Komikerfuirseoircomedianteمسخراcomédiencomedian + + بندبند ایک لمبی قدرتی طور پر واقع رکاوٹ یا مصنوعی طور پر تعمیر شدہ ذخیرہ یا دیوار ہے ، جو پانی کی سطح کو کنٹرول کرتی ہے۔ + + professorمعلم + + combination drugمنشیات کا مجموعہDrugs that are a combination of chemicals‎ادویات جو کیمیکل کا مجموعہ ہیں۔‎ + + soccer club seasonفٹ بال کلب کا موسم + + 만화가striptekenaarδημιουργός κόμιξ漫画家Comicautorمزاحیہ تخلیق کارcréateur de bandes dessinéescomics creator + + جرمن ٹورنگ کار ماسٹرزریسر + + monarca군주monarkmonarchμονάρχης君主monarchmonarcaبادشاہmonarquemonarch + + رگvein + + journalistصحافی + + carretera도로carreterawegdrogaδρόμος道路Straßebótharسڑکrouteroad + + tram stationٹرام گاڑی کا اڈاstation de tramwaytramhalte + + Filosofisch themaphilosophisch Konzeptفلسفیانہ تصورconcept philosophiquePhilosophical conceptPhilosophical concepts, e.g. Existentialism, Cogito Ergo Sumفلسفیانہ تصورات، جیسے وجودیت، ٹریوس سمConcepts philosophiques tels que l'Existentialisme, Cogito Ergo Sum + + ڈی بی پیڈین + + playboy playmatePlayboy Playmateپلے بوائے پلے میٹplaymate pour PlayboyPlayboy Playmateپلے میٹ ایک خاتون ماڈل ہے جسے پلے بوائے میگزین کے سینٹر فولڈ/گیٹ فولڈ میں پلے میٹ آف دی منتھ کے طور پر دکھایا گیا ہے + + stateریاست + + ٹینس کا کھلاڑیtennis player + + 장치apparaatσυσκευηデバイスGerätgléasdispositivoآلہappareildevice + + Christian Bishopعیسائی پادري + + deputyنائب + + vulkaanηφαίστειο火山Vulkanbolcánvulcãoآتش فشاںvolcanvolcanoA volcano is currently subclass of naturalplace, but it might also be considered a mountain.آتش فشاں فی الحال قدرتی جگہ کا ذیلی طبقہ ہے، لیکن اسے پہاڑ بھی سمجھا جا سکتا ہےΤο ηφαίστειο είναι υποκατηγορία φυσικών καταστάσεων, αλλά μπορεί επίσης να θεωρηθεί και βουνό. + + chess playerشطرنج کا کھلاڑی + + ولیsaint + + آبی پولوکا کھلاڑیwater polo Player + + 신문krantεφημερίδα新聞Zeitungاخبارjournalnewspaperاخبار ایک باقاعدہ شیڈول اشاعت ہے جس میں موجودہ واقعات، معلوماتی مضامین، متنوع خصوصیات اور اشتہارات کی خبریں ہوتی ہیں۔ یہ عام طور پر نسبتاً سستے، کم درجے کے کاغذ پر پرنٹ کیا جاتا ہے جیسے نیوز پرنٹ۔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.Eine Zeitung ist ein Druckwerk von mäßigem Seitenumfang, das in kurzen periodischen Zeitspannen, mindestens einmal wöchentlich, öffentlich erscheint. Die Zeitung ist, anders als die Zeitschrift, ein der Aktualität verpflichtetes Presseorgan und gliedert sich meist in mehrere inhaltliche Rubriken wie Politik, Lokales, Wirtschaft, Sport, Feuilleton und Immobilien. + + cementeriobegraafplaatsνεκροταφείο墓地FriedhofreiligقبرستانcimetièrecemeteryA burial placeایک تدفین کی جگہΝεκροταφείο (ή Κοιμητήριο) ονομάζεται ο χώρος ο προορισμένος για την ταφή των νεκρών.Un cimetière est un groupement de sépultures monumentales. + + law firmقانونی فرم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.ایک قانونی فرم ایک کاروباری ادارہ ہے جسے ایک یا زیادہ وکلاء نے قانون کی مشق میں مشغول کرنے کے لیے تشکیل دیا ہے۔ قانونی فرم کی طرف سے فراہم کردہ بنیادی خدمت کلائنٹس (افراد یا کارپوریشنز) کو ان کے قانونی حقوق اور ذمہ داریوں کے بارے میں مشورہ دینا ہے، اور دیوانی یا فوجداری مقدمات، کاروباری لین دین، اور دیگر معاملات میں اپنے مؤکلوں کی نمائندگی کرنا ہے جن میں قانونی مشورہ اور دیگر مدد طلب کی جاتی ہے۔ + + jugador de fútbol americano미식 축구 선수American footballspelerπαίκτης αμερικανικού ποδοσφαίρουアメリカンフットボール選手American Footballspielergiocatore di football americanoامریکی فٹ بال کھلاڑیxogador de fútbol americanojoueur de football américainamerican football player + + 학술지wetenschappelijk tijdschriftczasopismo naukoweακαδημαϊκό περιοδικό学術雑誌Wissenschaftliche Fachzeitschriftiris acadúilgiornale accademico學術期刊تعلیمی جریدہrevista académicajournal académiqueacademic journalاتعلیمی جریدہ زیادہ تر ہم مرتبہ نظرثانی شدہ جریدہ ہے جس میں کسی خاص تعلیمی ادب سے متعلق وظیفہ شائع کیا جاتا ہے۔ تعلیمی جرائد نئی تحقیق کی جانچ پڑتال اور موجودہ تحقیق کی تنقید کے تعارف اور پیشکش کے لیے عوامی جرگہ کے طور پر کام کرتے ہیں۔ مواد عام طور پر مضامین کی شکل اختیار کرتا ہے جو اصل تحقیق، جائزہ مضامین، اور کتاب کے جائزے پیش کرتے ہیں۔ + + olympic eventاولمپک کھیلوں کی تقریب + + 탁구 선수tafeltennisserπαίκτης πινγκ-πονγκ卓球選手Tischtennisspielerimreoir leadóg bhoirdٹیبل ٹینس کا کھلاڑیjoueur de ping-pongtable tennis playerAthlete who plays table tennisکھلاڑی جو ٹیبل ٹینس کھیلتا ہےO αθλητής που παίζει πινγκ-πονγκAthlète qui joue du tennis de table + + گہرائی + + نقل و حمل کا راستہroute of transportation + + obra de arte작품kunstværkkunstwerkέργο τέχνης作品Kunstwerksaothar ealaíneopera d'arteکار ہنرœuvre d'artartworkA work of art, artwork, art piece, or art object is an aesthetic item or artistic creation.فن کا کام، فَنی پیس، یا فَنی آبجیکٹ ایک جمالیاتی شے یا فنکارانہ تخلیق ہے۔ + + 배구 선수volleyballersiatkarzπαίχτης βόλεϊVolleyballspielerوالی بال کاکھلاڑیjoueur de volleyballvolleyball player + + handball teamہینڈ بال جماعت + + non-profit organisatieНекоммерческая организацияμη κερδοσκοπική οργάνωσηgemeinnützige Organisationغیر منافع بخش تنظیمorganisation à but non lucratifnon-profit organisation + + zeeθάλασσαMeerfarraigemarسمندرmerseaنمکین پانی کا ایک جسم جو سیارے کے ہائیڈروسفیئر کا زیادہ تر حصہ بناتا ہے۔Masse d'eau salée qui constitue la majeure partie de l'hydrosphère de la planète. + + 성직자geestelijkeΚλήρος聖職者geistlicherecclesiasticoپادریecclésiastiquecleric + + بیس بال کی انجمنbaseball leagueکھیلوں کی ٹیموں کا ایک گروہ جو بیس بال میں ایک دوسرے کے خلاف مقابلہ کرتا ہےa group of sports teams that compete against each other in Baseball + + National anthemقومی ترانہPatriotic musical composition which is the offcial national song.محب وطن موسیقی کی ساخت جو سرکاری قومی گانا ہے۔ + + 뷰티퀸schoonheidskoninginβασίλισσα ομορφιάςミスSchönheitsköniginspéirbheanreginetta di bellezzaملکہ حسنreine de beautébeauty queenA beauty pageant titleholderخوبصورتی مقابلےکی خطاب یافتہΤίτλος που αποδίδεται σε μία γυναίκα, τις περισσότερες φορές μετά από διαγωνισμό. + + escuela학교skoleschoolszkołaσχολείο学校Schulescoilscuolaescolaمدرسهécoleschool + + regioπεριοχή地域Regionréigiúnعلاقہrégionregion + + کھیلوں کی تقریبsports eventمقابلتی جسمانی سرگرمی کا ایک واقعہa event of competitive physical activity + + کھیل کی جماعتsports team + + ανάλαφρο μυθιστόρημαライトノベルLight novelجاپانی افسانهlight novelA style of Japanese novelجاپانی ناول کا ایک انداز + + فوجی تنازعہmilitary conflict + + cycling raceسائیکلنگ دوڑ + + plaats met bijzonder wetenschappelijk belangΤοποθεσία Ειδικού Επιστημονικού Ενδιαφέροντος自然保護協会特別指定地区wissenschaftliche Interessenvertretung für DenkmalschutzLáithreán Sainspéis Eolaíochtaخصوصی سائنسی دلچسپی کی سائٹsite d'intérêt scientifique particulierSite of Special Scientific InterestA 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.خصوصی سائنسی دلچسپی کی سائٹ (SSSI) ایک تحفظ کا عہدہ ہے جو برطانیہ میں ایک محفوظ علاقے کی نشاندہی کرتا ہے۔ SSSIs سائٹ پر مبنی فطرت کے تحفظ سے متعلق قانون سازی کا بنیادی تعمیراتی حصہ ہیں اور برطانیہ میں بیشتر دیگر قانونی نوعیت/ارضیاتی تحفظ کے عہدہ ان پر مبنی ہیں، بشمول نیشنل نیچر ریزرو، رامسر سائٹس، خصوصی تحفظ کے علاقے، اور تحفظ کے خصوصی علاقے + + biljarterSnookerspielerimreoir snúcairسنوکر کے کھلاڑیsnooker playerAn athlete that plays snooker, which is a billard derivateEin Sportler der Snooker spielt, eine bekannte Billardvarianteایک کھلاڑی جو سنوکر کھیلتا ہے، جو بلارڈ ڈیریویٹ ہے۔ + + office holderعہدے دار + + ijshockey competitieπρωτάθλημα χόκεϋEishockey-Ligaبرفانی ہاکی کی انجمنligue d'hockey sur glaceice hockey leaguea group of sports teams that compete against each other in Ice Hockey.کھیلوں کی ٹیموں کا ایک گروپ جو برفانی ہاکی میں ایک دوسرے سے مقابلہ کرتا ہے + + settlementبستی + + función de personafunctie van persoonFunktion einer Personشخص کی تقریبfonction de personneperson function + + 음악가muziekartiestμουσικός音楽家musikalischer Künstlerartista musicalموسیقی کا فنکارmusicienmusical artist + + entomoloogεντομολόγος昆虫学者Entomologefeithideolaíentomologoماہر حشریاتentomologist + + Mathematical conceptریاضیاتی تصورMathematical concepts, e.g. Fibonacci numbers, Imaginary numbers, Symmetryریاضی کے تصورات، جیسے فبونیکی نمبرز، خیالی نمبرز، سمیٹری + + Pilotطیارہ اڑانے والا + + ٹیلی ویژن مرکزtelevision stationایک ٹیلی ویژن اسٹیشن عام طور پر ایک لائن اپ ہوتا ہے۔ مثال کے طور پر ٹیلی ویژن اسٹیشن WABC-TV (یا ABC 7، چینل 7)۔ براڈکاسٹنگ نیٹ ورک ABC کے ساتھ الجھن میں نہ پڑیں، جس میں بہت سے ٹیلی ویژن اسٹیشن ہیں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. + + partido políticopartit políticpolitieke partijpartia politycznaπολιτικό κόμμαpolitische Parteipartido políticoسیاسی جماعتparti politiquepolitical partyfor example: Democratic_Party_(United_States)για παράδειγμα: Δημοκρατικό Κόμμα _United_States) + + presentatorΠαρουσιαστής司会者Moderatorláithreoirپیش کنندہprésentateurpresenterTV or radio show presenterٹی وی یا ریڈیو شو پیش کرنے والا + + buildingعمارتعمارت کو سول انجینئرنگ ڈھانچے سے تعبیر کیا جاتا ہے جیسے مکان ، عبادت گاہ ، فیکٹری وغیرہ جس کی بنیاد ، دیوار ، چھت وغیرہ ہوتی ہے جو انسان اور ان کی خصوصیات کو موسم کے براہ راست سخت اثرات جیسے بارش ، ہوا ، سورج وغیرہ سے محفوظ رکھتی ہے۔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). + + WatermolenΝερόμυλος水車小屋Wassermühlemuileann uiscemulino ad acquaپن چکیMoulin à eauWatermillواٹر مل ایک ایسا ڈھانچہ ہے جو پانی کے پہیے یا ٹربائن کا استعمال مکینیکل عمل کو چلانے کے لیے کرتا ہے جیسے آٹا، لکڑی یا ٹیکسٹائل کی پیداوار، یا دھات کی تشکیل (رولنگ، پیسنا یا تار ڈرائنگ)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) + + reignregentschapRegentschaftrègne + + 데이터베이스databaseβάση δεδομένωνデータベースDatenbankbunachar sonraíBanco de dadosریکارڈرز_پر_مبنی_ایک_فائلBase de donnéesDatabase + + Place in the Music ChartsChartplatzierungenplaats op de muziek hitlijstموسیقی چارٹس میں جگہ + + پس_منظرback sceneنَغمہ سَاز، پیش کرنے والا، اور پس پردہ لوگComposer, producer, and backstage people. + + surferموج تختہ پر سوار ہونے والا + + ligamentبندهن + + 민족etnische groepεθνική ομάδαethniegrúpa eitneachetniaنسلی گروہgroupe ethniqueethnic group + + dienstverbandAmtszeitدورdurée du mandattenure + + کسانfarmer + + Latter Day Saintنارمن فرقے کا عيسائی + + international football league eventInternational Football Liga Veranstaltungبین الاقوامی فٹ بال انجمن کی تقریب + + مکے بازی کھیل کی انجمنboxing leagueکھیلوں کی ٹیموں یا جنگجوؤں کا ایک گروپ جو مکے بازی میں ایک دوسرے کے خلاف مقابلہ کرتے ہیں۔A group of sports teams or fighters that compete against each other in Boxing + + 야구팀honkbal teamομάδα μπέιζμπολ野球チームBaseballmannschaftfoireann daorchluichesquadra di baseballبیس بال کی جماعتéquipe de baseballbaseball teamΈνας αριθμός από άνδρες ή γυναίκες που αποτελούν ένα διακριτό σύνολο με συγκεκριμένους στόχους σχετικά με το άθλημα του μπέιζμπολ. + + 휴일vakantieαργία祝日Feiertaglá saoiregiorno festivoچھٹیjour fériéholidayUn jour férié est un jour de fête civile ou religieuse, ou commémorant un événement.Unter einem Feiertag oder Festtag wird allgemein ein arbeitsfreier Tag mit besonderer Feiertagsruhe verstanden.ام تعطیل سول یا مذہبی جشن کا دن ہے ، یا کسی تقریب کی یاد میں + + insectoinsectέντομο昆虫Insektfeithidکیڑاinsecteinsect + + 광물mineraalορυκτό鉱物mineralmineraleمعدنیاتminéralmineralA naturally occurring solid chemical substance.قدرتی طور پر پائے جانے والا ٹھوس کیمیائی مادہCorpi naturali inorganici, in genere solidi. + + μουσικό έργοmusikalisches Werkopera musicaleموسیقی کا کامœuvre musicalemusical work + + ثانوی سیارهSatelliteایک فلکیاتی شے جو کسی سیارے یا ستارے کے گرد چکر لگاتی ہےAn astronomic object orbiting around a planet or star. Definition partly derived from http://www.ontotext.com/proton/protonext# (and thus WordNet 1.7). + + BestandssysteemФайловая системаDateisystemفائل سسٹمSystème de fichiersFile systemFile classification systemSystème de classification des fichiersفائلوں میں درجہ بندی کا نظام + + soccer club seasonفٹ بال کلب کا موسمFußballverein Saisonvoetbalseizoen + + lunar craterقمری گڑھا + + vervoermiddelμεταφορικό μέσοTransportmittelنقل و حمل کے ذرائعMoyen de transportmean of transportation + + AantekeningΣχόλιο注釈RandglosseتشریحnotaannotationAnnotation + + albumتصویروں اور دستخط کی کتاب + + Archiveمحفوظ شدہ دستاویزاتCollection of documents pertaining to a person or organisation.کسی شخص یا تنظیم سے متعلق دستاویزات کا مجموع + + فٹبال کا کھلاڑی + + werkeenheidArbeitseinheitaonad oibreکام کی اکائیunité de travailunit of workThis 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.Cette classe est destinée à transmettre la notion de quantité de travail à faire. Elle est différente de l'activité en ce qu'elle a une fin définie et qu'elle est mesurée.اس کلاس کا مقصد کام کی مقدار کو سمجھانا ہے۔ یہ سرگرمی سے مختلف ہے کہ اس کا ایک حتمی اختتام ہے اور اسے ناپا جا رہا ہے۔ + + MedicineدوائیThe science and art of healing the human body and identifying the causes of diseaseانسانی جسم کو ٹھیک کرنے اور بیماری کی وجوہات کی نشاندہی کرنے کا سائنس اور فن + + mezquitamoskeemeczetτζαμίモスクMoscheemoscمسجدmosquéemosqueMeczet – miejsce kultu muzułmańskiegoΤο τζαμί είναι ο τόπος λατρείας των Μουσουλμάνων.Is áit adhartha na Moslamach, lucht leanúna an reiligiúin Ioslam, é moscایک مسجد اسلام کے پیروکاروں کے لیے عبادت گاہ ہے۔Une mosquée est un lieu de culte où se rassemblent les musulmans pour les prières communes.A mosque, sometimes spelt mosk, is a place of worship for followers of Islam. + + موضوع کا تصورtopical concept + + National Collegiate Athletic Association atleetNCAAlúthchleasaí sa National Collegiate Athletic Associationقومی اعلی درجے کا مدرسہ کھیل کے متعلق دوستیathlète de la national collegiate athletic associationnational collegiate athletic association athlete + + club mossبغیر پُہولوں کا سدا بہار پودا + + line of fashionقطار رائجA coherent type of clothing or dressing following a particular fashionایک مربوط قسم کا لباس یا لباس کسی خاص فیشن کے بعد + + motorsport rennerοδηγός αγώνωνMotorsport Fahrerموٹر کھیل میں گاڑی دوڑانے والاmotorsport racer + + gengenγονίδιο遺伝子Gengéingeneنَسبہgènegene + + بیل کا مُقابلہ کرنے والا + + árbitroscheidsrechterδιαιτητής審判員schiedsrichterréiteoirarbitroarbitrerefereeAn official who watches a game or match closely to ensure that the rules are adhered to. + + reptielερπετό爬虫類reptilreiptílreptilereptile + + شہر کا منتظمmayor + + streamندیa flowing body of water with a current, confined within a bed and stream banksپانی کا بہتا ہوا کرنٹ ، ایک بستر اور ندی کے کناروں میں محدود ہے۔ + + satellietδορυφόροςSatellitesatailítثانوی سیارهsatelliteSatelliteAn astronomic object orbiting around a planet or star. Definition partly derived from http://www.ontotext.com/proton/protonext# (and thus WordNet 1.7).ایک فلکیاتی شے جو کسی سیارے یا ستارے کے گرد چکر لگاتی ہےΈνα αστρονομικό αντικείμενο που βρίσκεται σε τροχιά γύρω από έναν πλανήτη ή αστέρι. + + Vaccination Statisticsویکسینیشن کے اعدادوشمارstatistiques de vaccinationStatistics related to the COVID-19 vaccination world progress‎COVID-19 ویکسینیشن کی عالمی پیشرفت سے متعلق اعدادوشمار‎Statistiques relatives à la progression mondiale de la vaccination contre le COVID-19‎ + + canadian football Playerکینیڈین فٹ بال کھلاڑی + + ناٹک + + agencia del gobierno정부 기관orgaan openbaar bestuurОрган исполнительной властиκυβερνητική υπηρεσίαBehördeسرکاری محکمہagence gouvernementalegovernment agencyA 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.Eine Behörde ist eine staatliche Einrichtung, die im weitesten Sinne für die Erfüllung von Aufgaben der Verwaltung des Staates und dabei insbesondere für Dienstleistungen des Staates gegenüber seinen Bürgern zuständig ist. Eine Behörde erhält ihren Auftrag aus den Gesetzen des Staates, in dem und für den sie tätig ist.Μια κυβερνητική υπηρεσία είναι μόνιμη ή ημι-μόνιμη οργάνωση στο μηχανισμό της κυβέρνησης, η οποία είναι υπεύθυνη για την εποπτεία και διαχείριση συγκεκριμένων λειτουργιών, όπως η υπηρεσία πληροφοριών.ایک سرکاری ایجنسی حکومت کی مشینری میں ایک مستقل یا نیم مستقل تنظیم ہے جو مخصوص افعال کی نگرانی اور انتظام کے لیے ذمہ دار ہے ، جیسے کہ ایک انٹیلی جنس ایجنسی + + Biatleetバイアスロン選手BiathleteبائیتھلیٹBiathlèteBiathleteایک کھلاڑی جو بائاتھلون(کراس کنٹری سکینگ اور رائفل شارپ شوٹنگ پر مشتمل ایک جامع مقابلہ) میں مقابلہ کرتا ہے + + 국기flagvlagσημαίαFlaggebratachجھنڈاdrapeaubayrakflag + + rally driverrallycoureurοδηγός ράλιRallyefahrerΟ οδηγός ράλι χρησιμοποιείται για να περιγράψει άνδρα που λαμβάνει μέρος σε αγώνες αυτοκινήτων ειδικής κατηγορίας + + aircraftہوائی جہاز + + royaltyشاہی + + Noble familyشریف خاندانFamily deemed to be of noble descentخاندان کو شریف النسل سمجھا جاتا ہے۔ + + cycling competitionسائیکلنگ مقابلہ + + bacteria세균bacterieβακτήρια真正細菌bakteriumbaictéirbatterioجراثیمbactériebacteria + + boogschutterBogenschützeتیر انداز کھلاڑیTireur à l'arcArcher Player + + workکامItem on which time has been spent for its realisation. Actor can be a human on not (machine, insects, nature...)وہ شے جس پر اس کی تکمیل کے لیے وقت صرف کیا گیا ہو۔ اداکار انسان نہیں ہو سکتا (مشین، کیڑے، فطرت + + cricketerکرکٹ کا کھلاڑی + + 카디널kardinaalκαρδινάλιος枢機卿Kardinalcairdinéalcardinalecardealافضلcardinalcardinal + + weekdierμαλάκια軟体動物Weichtiereریڑھ کی ہڈی کے بغیر جانورmollusquemolluscaΤα μαλάκια αποτελούν μια τεράστια συνομοταξία ζώων, την πολυπληθέστερη μετά τα αρθρόποδα, με πάνω από 100.000 είδη. + + old territoryپرانا علاقہ + + Nordic Combinedمشترکہ نورڈکنورڈک کمبائنڈ ایک موسم سرما کا کھیل ہے جس میں ما بین ملک کے کھلاڑی سکینگ اور سکی جمپنگ میں مقابلہ کرتے ہیں۔ + + 경기장stadionστάδιοスタジアムStadionstaidiamمعروف کھیلوں کے لیے مَخصُوص جگہstadestadium + + vinovinwijnκρασίワインWeinfíonvinoشرابvinwine + + nationale voetbalclubnationaler Fußballvereinقومی فٹ بال تنظیمmilli takımnational soccer club + + cabinet of ministerscabinet des ministreskabinet (regeringsploeg)وزراء کی کابینہA cabinet is a body of high-ranking state officials, typically consisting of the top leaders of the executive branch.Un cabinet est une entité composée d'officiels de l'état de haut niveau, formée typiquement des dirigeants supérieurs de l'exécutif.کابینہ اعلی درجے کے ریاستی عہدیداروں کا ایک ادارہ ہے ، عام طور پر ایگزیکٹو برانچ کے اعلی رہنماؤں پر مشتمل ہوتا ہے۔ + + on-site mean of transportationکِسی موقع مقام پر نقل و حمل + + canoeistکشتی بنانے والا + + 박물관museummuzeumμουσείο博物館Museummúsaemmuseuعجائب گھرmuséemuseum + + آوازsoundصوتی لہروں کے ذریعے سماعت کے حسی اعضاء سے محرک ہوا کے دباؤ میں تبدیلی + + sports clubکھیلوں کی تنظیم + + patinador artísticokunstschaatserαθλητής του καλλιτεχνικού πατινάζフィギュアスケート選手Eiskunstläuferscátálaí fíorachpatinador artísticoفگرسکیٹرpatineur artistiquefigure skater + + Nuclear Power plantایٹمی بجلی گھر + + hestpaardウマPferdcapallگھوڑاchevalhorse + + Philosophical conceptفلسفیانہ تصورPhilosophical concepts, e.g. Existentialism, Cogito Ergo Sumفلسفیانہ تصورات، جیسے وجودیت، ٹریوس سم + + mangaκινούμενα σχέδια日本の漫画mangamangaمانگاmangamangaManga are comics created in Japanمنگا جاپان میں تخلیق کردہ کامکس ہیںManga is het Japanse equivalent van het stripverhaal + + universidad단과대학collegeκολέγιο単科大学Collegecoláistefaculdadeمدرسہuniversitécollege + + Historical regionتاریخی علاقہa place which used to be a region.ایک ایسی جگہ جو ایک علاقہ ہوا کرتی تھی + + قسمspeciesدرجہ بندی کے نظام میں ایک زمرہA category in the rating system + + military serviceفوجی خدماتMilitärdienstservice militaire + + nascar coureurοδηγός αγώνων nascarNASCAR Fahrerنیسکار ڈرائیورpilote de la nascarnascar driver + + περιοδικός τύποςPeriodikumمتواتر ادبpublication périodiqueperiodical literatureΠεριοδικός Τύπος (ή αλλιώς περιοδικό ή εφημερίδα) είναι η δημοσίευση άρθρου ή νέων ανά τακτά διαστήματα. Το πιο γνωστό παράδειγμα είναι οι εφημερίδες, που δημοσιεύονται σε καθημερινή ή εβδομαδιαία βάση και το περιοδικό, που τυπικά εκδίδεται σε εβδομαδιαία, μηνιαία ή δίμηνη βάση. Άλλα παραδείγματα μπορεί να είναι τα νέα ενός οργανισμού ή εταιρείας, ένα λογοτεχνικό ή εκπαιδευτικό περιοδικό ή ένα ετήσιο λεύκωμα.Unter Periodikum wird im Bibliothekswesen im Gegensatz zu Monografien ein (in der Regel) regelmäßig erscheinendes Druckwerk bezeichnet. Es handelt sich um den Fachbegriff für Heftreihen, Gazetten, Journale, Magazine, Zeitschriften und Zeitungen.ایک شائع شدہ کام ہے جو ایک باقاعدہ ترتیب کار پر ایک نئے اشاعت میں نمودار ہوتا ہے۔ سب سے واقف مثال اخبار ہیں ، جو اکثر روزانہ یا ہفتہ وار شائع ہوتے ہیں۔ یا رسالہ عام طور پر ہفتہ وار ، ماہانہ یا سہ ماہی کے طور پر شائع ہوتا ہے۔ دوسری مثالوں میں ایک نیوز لیٹر ، ایک ادبی جریدہ یا سیکھا ہوا جریدہ ، یا ایک سالانہ کتاب ہوگی۔Une publication périodique est un titre de presse qui paraît régulièrement.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. + + aderφλέβα静脈Veneféithveiaرگveinevein + + موسیقی کا فنکارmusical artist + + آوازکا اداکارvoice actor + + plantφυτό植物pflanzeplandapiantaپوداplanteplant + + religious organisationمذہبی تنظیمFormal organisation or organised group of believersباضابطہ تنظیم یا مومنین کا منظم گروپ + + película영화filmfilmفيلمfilmταινία映画Filmscannánفلمfilmmovie + + presidentصدر + + concentratiekampKonzentrationslagerحراستی کیمپcamp de concentrationConcentration campcamp in which people are imprisoned or confined, commonly in large groups, without trial. +Includes concentration, extermination, transit, detention, internment, (forced) labor, prisoner-of-war, Gulag; Nazi camps related to the Holocaust + + waterpoloërWasserpolo Spielergiocatore di pallanuotoآبی پولوکا کھلاڑیjoueur de water polowater polo Player + + Περιοχή Χιονοδρομίαςスキー場Skigebietláthair sciálaاسکی کاعلاقہdomaine skiableski area + + guitarraguitargitaarκιθάραギターGitarregiotarستارguitareguitarDescribe la guitarrabeschrijving van de gitaarΠεριγράφει την κιθάραایک تار والا میوزیکل آلہ ، جس میں فنگر فنگر بورڈ ہوتا ہے ، عام طور پر کٹے ہوئے اطراف ، اور چھ یا بارہ تار ، انگلیوں یا پلیکٹرم سے توڑنے یا جھومنے سے بجائے جاتے ہیں۔Décrit la guitareDescribes the guitar + + ماہر فنیاتengineer + + comic stripمزاحیہ خاکے + + spionجاسوسजासूसجاسوسespioiespionnerSpy + + canalنہرa man-made channel for waterپانی کے لیے انسان کا بنایا ہوا چینل + + predikantιεροκήρυκαςPfarrerbiocáireحلقہ کا پادریpasteurvicar + + Nordic CombinedNordischer Kombiniererمشترکہ نورڈکنورڈک کمبائنڈ ایک موسم سرما کا کھیل ہے جس میں ما بین ملک کے کھلاڑی سکینگ اور سکی جمپنگ میں مقابلہ کرتے ہیں۔ + + nadador수영 선수zwemmerKολυμβητής競泳選手Schwimmersnámhaínuotatorenadadorتیراکnageurswimmera trained athlete who participates in swimming meetsایک تربیت یافتہ کھلاڑی جو تیراکی کے مقابلوں میں حصہ لیتا ہےένας εκπαιδευμένος αθλητής που συμμετέχει σε συναντήσεις κολύμβησης + + 총리eerste ministerπρωθυπουργόςPremierministerpríomh-aireوزیراعظمpremier ministreprime minister + + موٹر سائیکلmotorcycle + + polo leagueپولو انجمنA group of sports teams that compete against each other in Polo.کھیلوں کی ٹیموں کا ایک گروہ جو پولو میں ایک دوسرے سے مقابلہ کرتا ہے۔ + + athleticsکھیل کے متعلق + + 운동 선수atleetαθλητήςアスリートAthletlúthchleasaíatletaکھلاڑیathlèteathlete + + farvekleurχρώμαFarbedathcorرنگcouleurcolourColor 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.رنگ یا رنگ بصری ادراکی املاک ہے جو انسانوں میں سرخ ، پیلے ، نیلے اور دیگر نامی زمروں کے مطابق ہے۔ رنگ روشنی کے سپیکٹرم سے حاصل ہوتا ہے (روشنی کی تقسیم بمقابلہ طول موج) آنکھوں میں روشنی کے رسیپٹروں کی سپیکٹرمل حساسیت کے ساتھ تعامل کرتا ہے۔ + + roltrapエスカレーターRolltreppeرواں زینہescalatorescalatorبجلی سے چلنے والی سیڑھی + + فائلfileفائل نام کے ساتھ ایک دستاویزA document with a filename + + 공장fabriekεργοστάσιο工場FabrikmonarchafabbricaکارخانهusinefactoryA 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.Το εργοστάσιο είναι ένα κτίριο μέσα στο οποίο, με τη βοήθεια των μηχανημάτων και τη σημαντικότατη συνεισφορά εργασίας από τους εργάτες, παράγονται σήμερα όλα σχεδόν τα βιομηχανικά είδη, είτε αυτά χρειάζονται πάλι για την παραγωγή (όπως μηχανές κλπ.) είτε είναι καταναλωτικά αγαθά.Une usine est un bâtiment ou un ensemble de bâtiments destinés à la production industrielle.ایک کارخانه (پہلے کارخانه) ایک صنعتی رقبہ ہے ، عام طور پر عمارتوں اور مشینری پر مشتمل ہوتی ہے ، یا زیادہ عام طور پر ایک مرکب جس میں کئی عمارتیں ہوتی ہیں ، جہاں مزدور سامان تیار کرتے ہیں یا مشینیں چلاتے ہیں جو ایک مصنوعات کو دوسری پر پروسیسنگ کرتے ہیں۔ + + transportsysteemFördersystemنقل و حمل کے نظامsystème convoyeurconveyor system + + obra escritaskriftligt værkgeschreven werkgeschriebenes Erzeugnisobair scríofaتحریری کامtravail écritwritten workWritten work is any text written to read it (e.g.: books, newspaper, articles)Un travail écrit est tout texte écrit destiné à être lu (ex. : livres, journaux, articles, document)تحریری کام کسی بھی متن کو پڑھنے کے لیے لکھا جاتا ہے (مثال کے طور پر: کتابیں ، اخبار ، مضامین)Ein geschriebenes Erzeugnis ist jede Art von Text der geschrieben wurde um ihn zu lesen (z.B. Bücher, Zeitungen, Artikel). + + Quoteاقتباس + + wereldkampioen snookerSnookerweltmeistercuradh domhanda sa snúcarسنوکر کا فاتحsnooker world championAn athlete that plays snooker and won the world championship at least onceEin Sportler der Snooker spielt und mindestens einmal die Weltmeisterschaft gewonnen hatکھیلوں کی ٹیموں یا انفرادی کھلاڑیوں کا ایک گروہ جو ایک مخصوص کھیل میں ایک دوسرے کے خلاف مقابلہ کرتے ہیں + + Sidste dages helgenقديس اليوم الأخيرबाद के दिन संतنارمن فرقے کا عيسائیAzken eguneko santuaSaint des derniers joursLatter Day Saint + + embajador대사 (외교관)ambassadeurπρεσβευτής大使BotschafterambasadóirambasciatoreسفیرembaixadorambassadeurambassadorAn 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.ایک غیر ملکی حکومت سے منظور شدہ اعلیٰ ترین عہدے کا سفارتی کارندہUn embaixador é o funcionario diplomático de máis alto nivel acreditado diante de un Estado estranxeiro ou organización internacional.&lt;ref&gt;https://gl.wikipedia.org/wiki/Embaixador&lt;/ref&gt; + + parlamentoparlementκοινοβούλιο議会Parlamentparlaimintمجلس قانون سازparlementparliament + + سازInstrumentتمام آلات موسیقی کو بیان کرتا ہےDescribes all musical instrument + + travellatorحرکت پذیر پیدل چلنے کا راستہRollsteigrolpad + + snooker world rankingسنوکر کی عالمی درجہ بندیSnookerweltranglistewereldranglijst snookerThe official world ranking in snooker for a certain year/seasonایک مخصوص سال/سیزن کے لیے سنوکر میں آفیشل عالمی درجہ بندیDie offizielle Weltrangliste im Snooker eines Jahres / einer Saison + + 경기장τόπος συνάντησηςVeranstaltungsortionadپنڈالlieuvenue + + radioprogrammaραδιοφωνικό πρόγραμμαラジオ番組radio programmclár raidióprogramma radiofonicoprogramme de radiodiffusionradio program + + speedway leagueتیز راہ کی انجمنA group of sports teams that compete against each other in motorcycle speedway racing.کھیلوں کی ٹیموں کا ایک گروپ جو موٹرسائیکل سپیڈ وے ریسنگ میں ایک دوسرے سے مقابلہ کرتا ہے۔ + + موٹر سائیکل سوارmotorcycle rider + + eukaryoteخلوی مادہ + + realeza왕족lid koningshuiskraljevska osebaγαλαζοαίματος王室Königtumشاہیroyautéroyalty + + bioloog生物学者Biologeماہر حیاتیاتbiologistebiologist + + mean of transportationنقل و حمل کے ذرائع + + DesiertowoestijnΈρημος砂漠WüstegaineamhlachdesertoریگستانDésertDesertزمین کا بنجر علاقہ جہاں کم بارش ہوتی ہے۔Barren land where there is less rain. + + Historical districtتاریخی ضلعa place which used to be a district.یک ایسی جگہ جو پہلے ضلع ہوتی تھی۔ + + 농구 팀basketbalteamΚουτί πληροφοριών συλλόγου καλαθοσφαίρισηςバスケットボールチームBasketballmannschaftfoireann cispheilesquadra di pallacanestrotime de basqueteباسکٹ بال کی جماعتéquipe de basketballbasketball team + + scenarioschrijverσεναριογράφοςDrehbuchautorscríbhneoir scáileáinsceneggiatoreقلم کارscénaristescreenwriterΟ σεναριογράφος όχι μόνο γράφει την υπόθεση μιας σειράς άλλα είναι αυτός που επινοεί και τους πρωταγωνιστές του έργου.قلم کار نہ صرف سیریز کا پلاٹ لکھتا ہے بلکہ ڈرامے کے مرکزی کرداروں کو ایجاد کرنے والا بھی ہوتا ہے + + natural eventقدرتی واقعہمادی تقریب کا استعمال قدرتی طور پر رونما ہونے والے واقعے کو بیان کرنے کے لیے کیا جاتا ہے۔ + + advocaat弁護士AnwaltdlíodóirوکیلAvocatLawyera person who is practicing law.ایک شخص جو قانون پر عمل پیرا ہے + + planetaplanetaplaneetplanetplanetaΠλανήτης惑星PlanetpláinéadPlanetaسیارہplanèteplanet + + muscleپٹھوں + + EntityEntityhttp://www.w3.org/ns/prov#Entityhttp://www.w3.org/ns/prov#Entity + + CommunityبرادریA community is a group of living organisms, people, plants or animals that live in a common environment.کمیونٹی جانداروں، لوگوں، پودوں یا جانوروں کا ایک گروپ ہے جو ایک مشترکہ ماحول میں رہتے ہیں۔ + + مزدوروں کا اتحادtrade unionمزدوروں کا اتحاد مزدوروں کی ایک تنظیم ہے جو کام کے بہتر حالات جیسے مشترکہ اہداف کو حاصل کرنے کے لیے اکٹھے ہوئے ہیںA trade union or labor union is an organization of workers who have banded together to achieve common goals such as better working conditions. + + speed skaterEisschnellläuferlangebaanschaatserرفتار سکیٹرایک آئس سکیٹر جو مسابقتی طور پر دوڑتا ہے۔ عام طور پر ایک اوول کورس کے ارد گرد + + سرکاری محکمہgovernment agencyایک سرکاری ایجنسی حکومت کی مشینری میں ایک مستقل یا نیم مستقل تنظیم ہے جو مخصوص افعال کی نگرانی اور انتظام کے لیے ذمہ دار ہے ، جیسے کہ ایک انٹیلی جنس ایجنسی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. + + humoristظریف + + diputadogedeputeerdeαναπληρωτής国会議員Stellvertreterنائبdéputédeputy + + regisseurFilmregisseurstiúrthóir scannáinفلم کا ہدایت کارréalisateur de filmMovie directora person who oversees making of film.ایک شخص جو فلم بنانے کی نگرانی کرتا ہے + + familiafamiliefamilieοικογένεια家族FamilieteaghlachخاندانfamillefamilyA group of people related by common descent, a lineage.Μια ομάδα ανθρώπων που συνδέονται με κοινή καταγωγή, μια γενεαλογία.عام نسل سے متعلق لوگوں کا ایک گروہ ، ایک نسب + + music directorموسیقی کا رہنماA person who is the director of an orchestra or concert band.ایک شخص جو سازینہ یا موسیقی بجانے والوں کا گروہ کا رہنما ہے + + cultivar (cultivated variety)کاشت شدہ مختلف قسم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.کاشتکار ایک پودا یا پودوں کا گروہ ہے جو مطلوبہ خصوصیات کے لیے منتخب کیا جاتا ہے جسے پھیلاؤ کے ذریعے برقرار رکھا جا سکتا ہے۔ ایک پودا جس کی اصل یا انتخاب بنیادی طور پر جان بوجھ کر انسانی سرگرمی کی وجہ سے ہے۔ + + año del vuelo espacialvliegjarenZeitraum Raumflugخلائی پرواز میں سالannée de vols spatiauxyear in spaceflight + + heiligdomβωμός神社schreinsantuarioمزارsanctuaireshrine + + vodkawodkaWodkaتیز روسی شرابvodkavodka + + bevolkingπληθυσμός人口Bevölkerungdaonraآبادیpopulationpopulation + + photographerعکسی تصویر اتارنے والا + + dorpwieśχωριόdorfगाँवsráidbhailedesaگاؤںlugarvillagevillagea clustered human settlement or community, usually smaller a townایک انسانی بستی یا برادری کا جھنڈ ، عام طور پر ایک چھوٹا قصبہNúcleo pequeno de poboación en que se divide unha parroquia, con poucos veciños e de carácter rural. + + schouwburgθέατρο劇場Theateramharclannتماشا گاہthéâtretheatreA 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.ایک تھیٹر یا تھیٹر (ایک پلے ہاؤس بھی) ایک ڈھانچہ ہے جہاں تھیٹر کے کام یا ڈرامے پیش کیے جاتے ہیں یا دیگر پرفارمنس جیسے میوزیکل کنسرٹ تیار کیے جا سکتے ہیں + + prefectureدائرہ اختيارات + + 드라마dramaδράμαドラマDramadrámaناٹکdramedrama + + خلائی پرواز میں سالyear in spaceflight + + wintersporterWintersportspielerسرمائی کھیل کھیلنے والاJoueur de sport d'hiverwinter sport Player + + پرندہbird + + beschermd gebiedπροστατευμένη περιοχή保護地区Schutzgebietمحفوظ علاقہaire protégéeprotected areaThis class should be used for protected nature. For enclosed neighbourhoods there is now class GatedCommunityDeze klasse duidt gebieden aan met de status 'beschermd'. Is dus eigenlijk ook geen klasse, maar zou een attribuut moeten zijnیہ طبقہ 'محفوظ' حیثیت والے علاقوں کو ظاہر کرتا ہے + + cross-country skierکراس کنٹری اسکیئر + + تعمیراتی ڈھانچےarchitectural structureیہ تعمیراتی ڈھانچے مواد سے بنے ہیں۔، آزادانہ ، غیر مستحکم بیرونی تعمیر۔An architectural structure is a human-made, free-standing, immobile outdoor construction (http://en.wikipedia.org/wiki/Architectural_structure). + + life cycle eventدورانیہ حیات وقوعه + + shrineمزار + + hockey teamہاکی کھیل کی جماعت + + آسٹریلوی فٹ بال ٹیمaustralian football Team + + فلمی میلہfilm festival + + حوضTank + + canadian football Playerکینیڈین فٹ بال کھلاڑی + + penalty schietenElfmeterschießenciceanna éiriceسزا دینے کا عملpenalty shoot-outسزا دینے کا عمل کھیلوں کے میچوں میں فاتح کا تعین کرنے کا ایک طریقہ ہے جو بصورت دیگر نکل دیا جاتا ہے یا برابر ہو جاتا۔ + + rocket engineraketmotorRaketmotor + + 운하kanaalκανάλι運河Kanalcanáilcanalecanalنہرcanalcanala man-made channel for waterένα κανάλι για νερό φτιαγμένο από άνθρωπο + + rebbeريبيरेबेerrebeaRabbiRebbe + + مانگاmangaمنگا جاپان میں تخلیق کردہ کامکس ہیںManga are comics created in Japan + + برف کا تودہglacier + + roadسڑک + + EmpleadorarbejdsgiverwerkgeverΕργοδότης雇用者ArbeitgeberfostóirآجرEmployeurEmployera person, business, firm, etc, that employs workers.Arbeitgeber ist, wer die Arbeitsleistung des Arbeitnehmers kraft Arbeitsvertrages fordern kann und das Arbeitsentgelt schuldet.άτομο, επιχείρηση, οργανισμός, κλπ που προσλαμβάνει εργαζόμενους.آجر وہ ہے جو ملازمت کے معاہدے کی وجہ سے ملازم سے کام کا مطالبہ کر سکتا ہے اور جس پر اجرت واجب الادا ہے۔ + + comics characterمُضحِکہ خیزکردار + + 음악 장르genre (muziek)μουσικό είδοςmusik genregenere musicalegénero musicalموسیقی کی صنفgenre musicalmusic genre + + priestپجاری + + pretparkattractieδραστηριότητα λούνα πάρκVergnügungsparkattraktionتفریحی پارک کی کششatracción de parque de atracciónsparc d'attractionsamusement park attraction + + سبز طحالبgreen alga + + añoårjaarrokέτοςJahrbliainanoسالannéeyear + + آلہdevice + + priesterπαπάς司祭priestersagartpreteپجاریprêtrepriest + + national collegiate athletic association athleteقومی اعلی درجے کا مدرسہ کھیل کے متعلق دوستی + + 하원 의원congressistβουλευτήςAbgeordneterمجلس کے شرکاءmembre du Congrèscongressman + + componistKomponistموسیقی بنانے والاcompositeurmusic composera person who creates music.ایک شخص جو موسیقی تخلیق کرتا ہے + + overseas departmentبیرون ملک کے محکمے + + Deporte스포츠sportВид спортаΑθλήματαスポーツSportartspórtesporteکھیلsportsportA sport is commonly defined as an organized, competitive, and skillful physical activity.ایک ساختی سرگرمی ، جو عموما لطف اندوز ہونے کے لیے کی جاتی ہے اور بعض اوقات تعلیمی آلے کے طور پر استعمال ہوتی ہے۔ +. + + achtergrond koorBackround-Chorپس_منظرArrière-scèneback sceneComposer, producer, and backstage people.نَغمہ سَاز، پیش کرنے والا، اور پس پردہ لوگTout compositeur de texte, producteur, arrangeur, ingénieur et personnel d'arrière scène. + + zenuwνεύρο神経Nervnéarógاعصابnerfnerve + + stripverhaal (Amerikaanse wijze)Comicstripمزاحیہ خاکےBande dessinéecomic strip + + Protocolرابطے کا ضابطہ + + escuela de sambasamba schoolσχολή σάμπαSambaschuleescola de sambaبرازیلی رقص سکولécole de sambasamba school + + arachnidعنکباتحیوانیات میں اِس خاندان کا نام جِس میں مکڑی اور بچھو وغیرہ شامِل ہیں + + سجاوٹایک شے ، جیسے تمغہ یا آرڈر ، جو وصول کنندہ کو عزت سے نوازنے کے لیے دیا جاتا ہے۔ + + 호텔hotelhotelξενοδοχείοホテルHotelóstánalbergoسرائےhôtelhotel + + موٹر کار کی دوڑGrand Prix + + Conceptتصور + + modeontwerperσχεδιαστής μόδαςModedesignerdearthóir faisinپوشاک سازstyliste de modefashion designer + + ستار بجانے والاguitarist + + cycling leagueسائیکل سوار کی انجمنکھیلوں کی ٹیموں کا ایک گروپ جو سائیکلنگ میں ایک دوسرے کے خلاف مقابلہ کرتا ہے۔a group of sports teams that compete against each other in Cycling + + Biblioteca도서관bibliotekbibliotheekbibliotekaβιβλιοθήκη図書館Bibliothekleabharlannکتب خانہbibliothèquelibrary + + ریڑھ کی ہڈی کے بغیر جانورmollusca + + manhwaمنحواKorean term for comics and print cartoonsمزاحیہ اور پرنٹ کارٹونز کے لیے کورین اصطلاح + + بیس بال کا موسمbaseball season + + برفانی ہاکی کا کھلاڑیice hockey player + + comicمزاحیہ + + chemical elementکیمیائی عنصر + + orgelόργανοオルガンOrgelعضوOrgueorganاعضاء کی تمام اقسام اور سائزAll types and sizes of organsΌλα τα είδη και τα μεγέθη των οργάνων + + beroepεπάγγελμα専門職Berufgairmپیشہmétierprofession + + Featureجی ایم ایل: خصوصیت + + 모델(foto)modelμοντέλοモデル_(職業)modelmainicínنمائش کرنے والاmannequinmodel + + bindweefselσύνδεσμος靭帯Band (Anatomie)ligamentoبندهنligamentligament + + موٹر سائیکل دوڑانے والاmotocycle racer + + فہرستlistاشیاء کی عمومی فہرستA general list of items. + + natural placeقدرتی جگہقدرتی جگہ کائنات میں قدرتی طور پر پائے جانے والے تمام مقامات پر محیط ہے۔The natural place encompasses all places occurring naturally in universe. + + وزراء کی کابینہcabinet of ministersکابینہ اعلی درجے کے ریاستی عہدیداروں کا ایک ادارہ ہے ، عام طور پر ایگزیکٹو برانچ کے اعلی رہنماؤں پر مشتمل ہوتا ہے۔A cabinet is a body of high-ranking state officials, typically consisting of the top leaders of the executive branch. + + جانورanimal + + amphibianجل تھلیاخشکی اور تری دونوں کا وہ جانور جوخشکی اور پانی دونوں میں رہے + + snooker playerسنوکر کے کھلاڑی + + college coachکھیل سکھانے والا + + songwriterنغمہ نگارa person who writes songs.ایک شخص جو گانے لکھتا ہے۔ + + CipherGeheimschriftخفیہ_پیغامШифр + + Concentration campحراستی کیمپcamp in which people are imprisoned or confined, commonly in large groups, without trial. +Includes concentration, extermination, transit, detention, internment, (forced) labor, prisoner-of-war, Gulag; Nazi camps related to the Holocaustکیمپ جس میں لوگوں کو قید یا قید کیا جاتا ہے، عام طور پر بڑے گروہوں میں، بغیر کسی مقدمے کے۔ +ارتکاز، قتل، نقل و حمل، حراست، نظربند، (زبردستی) مزدوری، جنگی قیدی، گلاگ شامل ہیں۔ ہولوکاسٹ سے متعلق نازی کیمپ + + BobsleighAthleteبوبسلیگ کھلاڑیbobsleeërBobsportler + + actividad활동aktivitetactiviteitaktywnośćΔραστηριότητα活動Aktivitätgníomhaíochtattivitàatividade活動سرگرمیactividadeactivitéactivity + + متحرک فلمmoving imageایک بصری دستاویز جس کا مقصد متحرک ہونا ہےA visual document that is intended to be animated; equivalent to http://purl.org/dc/dcmitype/MovingImage + + گمٹیلا پوداGnetophytes + + stadswijkStadtviertelشہر کا ضلعquartiercity districtDistrict, borough, area or neighbourhood in a city or townکسی شہر یا قصبے میں ضلع کا علاقہ یا محلہ۔ + + مینارtowerمینار ایک قسم کا ڈھانچہ ہے (ضروری نہیں کہ کوئی عمارت) جو باقی سے اونچی ہو۔A Tower is a kind of structure (not necessarily a building) that is higher than the rest + + speedway riderتیز راہ سوار + + wijnmakerijοινοποιείοワイナリーWeinkellereifíonlanncasa vinicolaشراب خانہétablissement vinicolewinery + + national football league eventNFL Game dayقومی فٹ بال انجمن تقریب + + currencyسکہ رائج الوقت + + platenlabelδισκογραφικήPlattenlabellipéad ceoillabel discographiquerecord label + + metrostationστάση μετρόU-Bahn Stationزمین دوز برقی ریل کا اڈہstation de métrosubway stationΗ στάση μετρό χρησιμοποιείται συνήθως για μια τοποθεσία ή σημείο όπου σταματάει το μεταφορικό μέσο μετρό + + mythological figureافسانوی شکل + + 성우stemacteur声優Synchronsprecherآوازکا اداکارacteur de doublagevoice actor + + Juegos Olímpicos올림픽Olympische Spelenολυμπιακοί αγώνες近代オリンピックOlympiadeNa Cluichí OilimpeachaاولمپکسJeux Olympiquesolympics + + ٹرام گاڑی کا اڈاtram station + + aanval, aanslag攻撃Angriff, Anschlagحملہattaque, attentatattackحملہ لازمی طور پر فوجی تصادم کا حصہ نہیں ہے۔ + + ancient area of jurisdiction of a person (feudal) or of a governmental bodyکسی شخص (جاگیردار) یا سرکاری ادارے کے دائرہ اختیار کا قدیم علاقہgebied dat vroeger onder het gezag viel van een heer of vrouwe of een instelling van kerk of staatMostly for feudal forms of authority, but can also serve for historical forms of centralised authorityزیادہ تر اختیارات کی جاگیردارانہ شکلوں کے لیے ، لیکن مرکزی اختیار کی تاریخی شکلوں کے لیے بھی کام کر سکتا ہے + + katkatKatzeبلیchatcat + + چھوٹا نوابbaronet + + snooker world rankingسنوکر کی عالمی درجہ بندیایک مخصوص سال/سیزن کے لیے سنوکر میں آفیشل عالمی درجہ بندی + + بینکbankایک تِجارتی اِدارہ جس کی اہم خدمات بینکنگ یا مالیاتی خدمات ہیںa company which main services are banking or financial services. + + تیغ زنfencer + + 캐나다 풋볼 리그canadian football competitieκαναδική ένωση ποδοσφαίρουカナディアン・フットボール・リーグKanadische Footballligalega di football canadeseکینیڈین فٹ بال لیگligue de football canadienliga de fútbol canadienseA group of sports teams that compete against each other in canadian football league.کھیلوں کی ٹیموں کا ایک گروپ جو کینیڈین فٹ بال لیگ میں ایک دوسرے کے خلاف مقابلہ کرتے ہیں۔.ένα σύνολο αθλητικών ομάδων που ανταγωνίζονται μεταξύ τους στην Καναδική ένωση ποδοσφαίρου + + periode in de prehistorieπροϊστορική περίοδοprähistorisch Zeitaltertréimhse réamhstaireتاریخ سے پہلے کے زمانے کا دورère préhistoriqueprehistorical period + + cerveceríabrouwerijζυθοποιίαブルワリーBrauereibirrificioکَشید گاہbrasseriebreweryΖυθοποιία ονομάζεται η βιομηχανία παρασκευής μπύρας. + + soccer league seasonانجمن فٹ بال موسم + + باغgardenباغ ایک منصوبہ بند جگہ ہے ، عام طور پر باہر ، ڈسپلے ، کاشت ، اور پودوں اور فطرت کی دیگر اقسام سے لطف اندوز ہونے کے لیے + (http://en.wikipedia.org/wiki/Garden)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) + + alimento음식madvoedseljedzenieφαγητό食品LebensmittelbiacomidaخوراکnourritureFoodFood is any eatable or drinkable substance that is normally consumed by humans.Φαγητό είναι οποιαδήποτε φαγώσιμη ή πόσιμη ουσία που καταναλώνεται κανονικά από ανθρώπους.Lebensmittel umfasst als Oberbegriff sowohl Getränke als auch die Nahrungsmittel und Genussmittel.کھانا کوئی بھی کھانے یا پینے کے قابل مادہ ہے جو عام طور پر انسان استعمال کرتے ہیں۔ + + hot springگرم موسم بہار + + تفریح گاہparkA park is an area of open space provided for recreational use. http://en.wikipedia.org/wiki/Parkپارک کھلی جگہ کا ایک علاقہ ہے جو تفریحی استعمال کے لیے فراہم کی جاتی ہے۔ + + 노래sangliedτραγούδιliedamhráncanzoneگاناchansonsong + + ارضیاتی دورانیہgeological period + + adult (pornographic) actorبالغ اداکارA pornographic actor or actress or a porn star is a person who performs sex acts in film, normally characterised as a pornographic film.ایک فحش اداکار یا اداکارہ یا پورن سٹار وہ شخص ہوتا ہے جو فلم میں جنسی حرکتیں کرتا ہے، عام طور پر اسے فحش فلم کے طور پر دیکھا جاتا ہے۔ + + screenwriterقلم کارقلم کار نہ صرف سیریز کا پلاٹ لکھتا ہے بلکہ ڈرامے کے مرکزی کرداروں کو ایجاد کرنے والا بھی ہوتا ہے + + 브로드캐스트 네트워크omroeporganisatiesieć emisyjnaδίκτυο ραδιοφωνικής μετάδοσηςネットワーク_(放送)Sendergruppelíonra craolacháinemittenteبراڈکاسٹ نیٹ ورکchaîne de télévision généralistebroadcast networkA 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)براڈکاسٹ نیٹ ورک ایک تنظیم ہے ، جیسے کارپوریشن یا دیگر ایسوسی ایشن ، جو ریڈیو یا ٹیلی ویژن اسٹیشنوں کے گروپ پر نشر کرنے کے لیے لائیو یا ریکارڈ شدہ مواد ، جیسے فلمیں ، نیوز کاسٹ ، کھیل اور عوامی امور کے پروگرام مہیا کرتی ہے۔ +)Ένα δίκτυο μετάδοσης είναι μια οργάνωση, όπως μια εταιρεία ή άλλη ένωση, που παρέχει ζωντανό ή μαγνητοσκοπημένο περιεχόμενο, όπως ταινίες, δελτία ειδήσεων, αθλητικά, και τα προγράμματα δημοσίων υποθέσεων για την εκπομπή πάνω από μια ομάδα ραδιοφωνικών ή τηλεοπτικών σταθμών + + wiskundig conceptmathematisches Konzeptریاضیاتی تصورconcept mathématiqueMathematical conceptMathematical concepts, e.g. Fibonacci numbers, Imaginary numbers, Symmetryریاضی کے تصورات، جیسے فبونیکی نمبرز، خیالی نمبرز، سمیٹریConcepts mathématiques tels que les nombres de Fibonacci, les nombres imaginaires, la symétrie + + sportclubSportvereinکھیلوں کی تنظیمclub de sportsports club + + populationآبادی + + obra de teatrotoneelstukπαιχνίδι戯曲Theaterstückdrámaتماشہpièce de théâtreplayA 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.Ένα παιχνίδι είναι μια μορφή της λογοτεχνίας, γραμμένο από έναν συγγραφέα, που συνήθως αποτελείται από σενάριο του διαλόγου μεταξύ των χαρακτήρων, που προορίζεται για την θεατρική παράσταση και όχι μόνο ανάγνωση.ڈرامہ ادب کی ایک شکل ہے جسے ڈرامہ نگار نے لکھا ہے، عام طور پر کرداروں کے درمیان تحریری مکالمے پر مشتمل ہوتا ہے، جس کا مقصد صرف پڑھنے کے بجائے تھیٹر کی کارکردگی کے لیے ہوتا ہے۔ + + hoofdstad van regioHauptstadt der Regionعلاقے کا دارالحکومتCapitale régionaleCapital of regionseat of a first order administration division.فرسٹ آرڈر ایڈمنسٹریشن ڈویژن کی نشست۔ + + motorrace competitieMotorradrennen Ligaموٹر سائیکل ریسنگ لیگligue de courses motocyclistemotorcycle racing leaguea group of sports teams or bikerider that compete against each other in Motorcycle Racingکھیلوں کی ٹیموں یا بائیک سواروں کا ایک گروپ جو موٹر سائیکل ریسنگ میں ایک دوسرے سے مقابلہ کرتے ہیں + + بالنگ_ٹیموں_کی_انجمنbowling leagueکھیلوں کی ٹیموں یا کھلاڑیوں کا ایک گروہ جو بولنگ میں ایک دوسرے کے خلاف مقابلہ کرتے ہیں۔a group of sports teams or players that compete against each other in Bowling + + album앨범albumalbumalbum (wydawnictwo muzyczne)albumアルバムAlbumalbamalbumálbum照片集تصویروں اور دستخط کی کتابálbumalbumalbum + + sculptorمجسمہ ساز + + colourرنگ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.رنگ یا رنگ بصری ادراکی املاک ہے جو انسانوں میں سرخ ، پیلے ، نیلے اور دیگر نامی زمروں کے مطابق ہے۔ رنگ روشنی کے سپیکٹرم سے حاصل ہوتا ہے (روشنی کی تقسیم بمقابلہ طول موج) آنکھوں میں روشنی کے رسیپٹروں کی سپیکٹرمل حساسیت کے ساتھ تعامل کرتا ہے۔ + + 코미디 그룹cabaretgroepお笑いグループKomikergruppeمزاحیہ گروہComedy Group + + atleet陸上競技選手Athletlúthchleasaígiocatore di atletica leggeraپھُرتیلاکھلاڑیathletics player + + چینی درخت پنکھے کے جیسے پتوں والا + + خلیجbay + + multi volume publicationکثیر حجم کی اشاعت + + والی بال کی تربیت کرنے والاvolleyball coach + + bestandΑρχείοファイルDateicomhadفائلfichierfileA document with a filenameفائل نام کے ساتھ ایک دستاویزΈνα σύνολο από στοιχεία ή πόρους που μπορούν να χρησιμοποιηθούν για επεξεργασία και παραγωγή πληροφορίας + + vergaderingσυνάντηση会議TreffencruinniúملاقاتréunionmeetingA regular or irregular meeting of people as an event to keep record ofریکارڈ رکھنے کے لیے ایک تقریب کے طور پر لوگوں کی باقاعدہ یا بے قاعدہ ملاقات + + speed skaterرفتار سکیٹرایک آئس سکیٹر جو مسابقتی طور پر دوڑتا ہے۔ عام طور پر ایک اوول کورس کے ارد گرد + + نَسبہ کا مقامGeneLocation + + results of a sport competitionکھیلوں کے مقابلے کا نتیجہ + + beeldhouwwerkΓλυπτική彫刻SkulptursculturaمجسمہsculptureSculptureSculpture 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.Γλυπτική είναι τρισδιάστατο έργο τέχνης το οποίο δημιουργήθηκε από τη διαμόρφωση ή συνδυάζοντας σκληρά υλικά, τυπικώς πέτρα όπως μάρμαρο, μέταλλο, γυαλί, ή ξύλο, ή πλαστικά υλικά όπως άργιλος, υφάσματα, πολυμερή και μαλακότερα μέταλλα.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.مجسمہ تین جہتی فَن کا کام ہے جو سخت مواد کی تشکیل یا امتزاج سے بنایا گیا ہے، عام طور پر پتھر جیسے سنگ مرمر، دھات، شیشہ، یا لکڑی، یا پلاسٹک کے مواد جیسے مٹی، ٹیکسٹائل، پولیمر اور نرم دھات۔ + + kernenergiecentraleΠυρηνικός Σταθμός Παραγωγής ΕνέργειαςKernkraftwerkstáisiún núicléachایٹمی بجلی گھرcentrale nucléaireNuclear Power plant + + ہڈیbone + + deelgemeenteTeilgemeindeذیلی بلدیہparroquiaboroughAn administrative body governing a territorial unity on the lowest level, administering part of a municipalityایک انتظامی ادارہ جو ایک علاقائی اتحاد کو نچلی سطح پر چلاتا ہے، بلدیہ کے حصے کا انتظام کرتا ہے + + cycling teamسائیکلنگ جماعت + + crustaceanخول دارجانور + + auto racing leagueگاڑیوں کی ریسوں کی انجمنa group of sports teams or individual athletes that compete against each other in auto racingکھیلوں کی ٹیموں یا انفرادی کھلاڑیوں کا ایک گروپ جو آٹو ریسنگ میں ایک دوسرے کے خلاف مقابلہ کرتے ہیں + + ٹرین کی بوگیtrain carriage + + conventionمجلس + + proosdijκοσμητείαDekanatعمید کا عہدہdeaneryThe intermediate level of a clerical administrative body between parish and dioceseگرجا گھر کا حلقہ اور بشپ کے دائرہ اختیار کا حلقہ کے مابین علمی انتظامی ادارے کی انٹرمیڈیٹ سطح۔ + + RevisionRévisionhttp://www.w3.org/ns/prov#Revisionhttp://www.w3.org/ns/prov#Revision + + برطانوی بادشاہیBritish royalty + + collection of valuablesقیمتی اشیاء کا مجموعہCollection of valuables is a collection considered to be a work in itself)قیمتی اشیاء کا مجموعہ ایک ایسا مجموعہ ہے جو اپنے آپ میں ایک کام سمجھا جاتا ہے۔ + + compañía aerea항공사flyselskabluchtvaartmaatschappijlinia lotniczaαεροπορική εταιρεία航空会社Fluggesellschaftaerlínecompagnia aerea航空公司ہوائی راستہcompañía aéreacompagnie aérienneairlineہوائی جہازوں کے ذریعے سواریاں لے جانے والی تنظیم + + volleybal competitieΟμοσπονδία ΠετοσφαίρισηςVolleyball-Ligaوالی بال کی انجمنligue de volleyballvolleyball leagueA group of sports teams that compete against each other in volleyball.کھیلوں کی ٹیموں کا ایک گروپ جو والی بال میں ایک دوسرے سے مقابلہ کرتے ہیں + + mediaμέσα ενημέρωσης媒体Medienmeáinمواصلاتmédiamediastorage and transmission channels or tools used to store and deliver information or dataذخیرہ اور منتقلی چینلز یااوزار جو معلومات یا ڈیٹا کو ذخیرہ کرنے اور پہنچانے کے لیے استعمال ہوتے ہیں۔canaux d'enregistrement et de transmission ou outils utilisés pour enregistrer et fournir des informations ou des données + + basketball leagueباسکٹ بال کی انجمنa group of sports teams that compete against each other in Basketballکھیلوں کی ٹیموں کا ایک گروپ جو باسکٹ بال میں ایک دوسرے سے مقابلہ کرتا ہے + + غولSwarm + + kaapcapecapخشکی کا وہ حصہ جو سمندر کے اندر تک چلا گیا ہو + + grand prixγκραν πριグランプリgrosser PreisGrand Prixgran premioموٹر کار کی دوڑgrand prixGrand Prix + + bergpasΠέρασμα βουνούBergpassdesfiladeiroدرہcol de montagnemountain passa path that allows the crossing of a mountain chain. It is usually a saddle point in between two areas of higher elevationایک راستہ جو پہاڑی سلسلہ کو عبور کرنے کی اجازت دیتا ہے۔ یہ عام طور پر اونچی اونچائی کے دو علاقوں کے درمیان ایک سیڈل پوائنٹ ہوتا ہے + + arbejdewerkδημιουργία仕事WerkobairobraکامœuvreworkItem on which time has been spent for its realisation. Actor can be a human on not (machine, insects, nature...)Elément sur lequel on a passé du temps pour le réaliser. L'acteur peut être humain (homme) ou pas (machine, insectes, nature, ...)وہ شے جس پر اس کی تکمیل کے لیے وقت صرف کیا گیا ہو۔ اداکار انسان نہیں ہو سکتا (مشین، کیڑے، فطرت + + classical music compositionروایتی موسیقی کی ترکیبکلاسیکی موسیقی کی تشکیل کمپیوٹر پر خصوصی پروگراموں کی مدد سے کی جاسکتی ہے جو ایک مخصوص الگورتھم استعمال کرتے ہیں۔ + + gletsjerπαγετώνας氷河Gletscheroighearshruthghiacciaiogeleiraبرف کا تودہglacierglacierΠαγετώνες ονομάζονται μεγάλες μάζες πάγου συνήθως κινούμενες λόγω συμπίεσης του χιονιού. + + olympicsاولمپکس + + 로켓raketπύραυλοςロケットRaketeroicéadfuséerocket + + single listایک فہرستliste de singlesA list of singlesاِنفرادی فہرستListe de singles (disques 45 tours) + + کاروباری شخصbusinesspersonاصطلاح کاروباری کا بنیادی طور پر مطلب وہ شخص ہے جو اعلی عہدے پر فائز ہو ، جیسے ایگزیکٹو۔The term entrepreneur mainly means someone who holds a senior position, such as an executive. + + سفیرambassadorایک غیر ملکی حکومت سے منظور شدہ اعلیٰ ترین عہدے کا سفارتی کارندہ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. + + دیا گیا نامfirst name + + blazoen (wapenschild)οικόσημο紋章記述Wappenآب و تابBlasonBlazon + + aristócrataaristocraat貴種Aristokratuaslathaíاشرافیہaristocratearistocrat + + pájarofuglvogelπτηνό鳥類Vogeléanuccelloپرندہoiseaubird + + maatschappelijke gebeurtenisgesellschatliches Ereignisمعاشرتی واقعہévènement collectifsocietal eventan event that is clearly different from strictly personal eventsایک ایسا واقعہ جو سختی سے ذاتی واقعات سے واضح طور پر مختلف ہو + + چڑیا گھرzoo + + DBpedianDBpédienڈی بی پیڈین + + Outbreakہنگامہ + + soccer managerفٹ بال منتظم + + vaccinImpfstoffویکسینvaccinvaccineDrugs that are a vaccine‎وہ دوائیں جو ایک ویکسین ہیں‎Medikamente welche Impfstoffe sind + + newspaperاخبار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.اخبار ایک باقاعدہ شیڈول اشاعت ہے جس میں موجودہ واقعات، معلوماتی مضامین، متنوع خصوصیات اور اشتہارات کی خبریں ہوتی ہیں۔ یہ عام طور پر نسبتاً سستے، کم درجے کے کاغذ پر پرنٹ کیا جاتا ہے جیسے نیوز پرنٹ۔ + + golfspillergolfspelerπαίκτης γκολφGolfspielerimreoir gailfگالف کا کھلاڑیgolfeurgolf player + + liga de bolos볼링 리그bowling competitieπρωτάθλημα μπόουλινγκボーリングリーグBowling-Ligasraith babhlálalega di bowlingبالنگ_ٹیموں_کی_انجمنligue de bowlingbowling leaguea group of sports teams or players that compete against each other in BowlingΜία διοργάνωση ομάδες ανθρώπων ή μεμονομένα άτομα συναγωνίζονται στο άθλημα του μπόουλινγκ, συνήθως με ένα έπαθλο στους πρωταθλητές.کھیلوں کی ٹیموں یا کھلاڑیوں کا ایک گروہ جو بولنگ میں ایک دوسرے کے خلاف مقابلہ کرتے ہیں۔ + + 성인heiligeΠληροφορίες Αγίου聖人Heiligenaomhولیsaintsaint + + historische periodeιστορική περίοδοςhistorische Periodetréimhse sa stairتاریخی دورpériode historiquehistorical periodA historical Period should be linked to a Place by way of the property dct:spatial (already defined)Une période historique doit être liée à un lieu au moyen de la propriété dct:spatial (déjà définie)یک تاریخی ادوار کو جائیداد کے ذریعے کسی جگہ سے جوڑا جانا چاہیے۔ + + مچھلیfish + + مکے بازboxer + + زیر زمین جریدہunderground journalایک زیر زمین جریدہ ہے، اگرچہ وقت گزرنے کے ساتھ ساتھ ہمیشہ قانون کے ذریعہ اشاعتیں ممنوع رہی ہیں، دوسری عالمی جنگ کے دوران جرمنوں کے زیر قبضہ ممالک کا ایک رجحان۔ زیر زمین پریس میں تحریر کا مقصد نازی قبضے کے خلاف مزاحمت کے جذبے کو مضبوط کرنا ہے۔ زیر زمین جرائد کی تقسیم بہت خفیہ ہونی چاہیے تھی اور اس لیے اس کا انحصار غیر قانونی ڈسٹری بیوشن سرکٹس اور قابضین کی طرف سے ظلم و ستم کے خطرات پر تھا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. + + خلائی اڈہ + + جاگیرManorاسٹیٹ اور/یا (زمینوں کا جھرمٹ) جو جاگیردار کے دائرہ اختیار میں ہیں۔ لہٰذا یہ خود فزیکل اسٹیٹ کے لیے شارٹ ہینڈ اظہار بھی ہے: ایک جاگیر دیہی علاقوں میں آس پاس کے میدانوں کے ساتھ ایک شاندار گھر ہےEstate and/or (cluster of) lands that are under the jurisdiction of a feudal lord. Hence it is also the shorthand expression for the physical estate itself: a manor is a stately house in the countryside with the surrounding grounds + + 스쿼시 선수squasherSquashspielergiocatore di squashjoueur de squashsquash player + + pokerspelerπαίχτης του πόκερPokerspielerimreoir pócairپوکر کھلاڑیjoueur de pokerpoker player + + schoolمدرسه + + højdehoogteυψόμετρο高度HöheairdeبلندیaltitudealtitudealtitudeΤο υψόμετρο είναι η κάθετη απόσταση ενός αντικειμένου σε σχέση με ένα καθορισμένο επίπεδο αναφοράς. Συνήθως το υψόμετρο μετριέται ως η κάθετη απόσταση (υψομετρική διαφορά) ενός τόπου από το επίπεδο της θάλασσας (Μέση Στάθμη Θάλασσας), ενώ για πιο ακριβείς μετρήσεις χρησιμοποιείται το γεωειδές.A altitude é a distancia vertical dun obxecto respecto dun punto de orixe dado, considerado como o nivel cero, para o que se adoita tomar o nivel absoluto do mar.&lt;ref&gt;https://gl.wikipedia.org/wiki/Altitude&lt;/ref&gt; + + train carriageٹرین کی بوگیtreinwagon + + artikel記事Artikleجریدے کا نشر پارہarticlearticle + + 일본의 애니메이션animeάνιμεアニメanimeanimeanimeانیمےanimeAnimationAnimeGeanimeerd Japans stripverhaalΣτυλ κινουμένων σχεδίων με καταγωγή την Ιαπωνίαحرکت پذیری کا ایک انداز جاپان میں شروع ہوا۔Designación coa que se coñece a animación xaponesaStyle d'animation né au JaponA style of animation originating in Japan + + bogllibreবইboekкнигаksiążkaβιβλίοBuchleabharlibroکتابlivrebook + + Biomoleculeحیاتیاتی مرکباتequivalent to http://ccdb.ucsd.edu/NIF/BIRNLex-OBO-UBO.owl#birnlex_22.ایسے پیچدہ نامیاتی مالیکیولز جو زندگی کی بنیاد ہیں یعنی وہ زندہ اجسام کو تعمیر کرنے ، ان کو نشوونما کرنے اور برقرار رکھنے کے لیے ضروری ہوتے ہیں + + nobleعظیم + + snooker world championسنوکر کا فاتحکھیلوں کی ٹیموں یا انفرادی کھلاڑیوں کا ایک گروہ جو ایک مخصوص کھیل میں ایک دوسرے کے خلاف مقابلہ کرتے ہیں۔ + + ساحل_سمندرbeachپانی کے جسم کا ساحل ، خاص طور پر جب ریت بھرا یا کنکریThe shore of a body of water, especially when sandy or pebbly + + idioma언어sprogtaalγλώσσα言語Spracheteangaزبانlingualangagelanguage + + comedianمسخرا + + restaurantrestauracjaεστιατόριοレストランRestaurantbialannrestaurantrestaurant + + geologische periodeγεωλογική περίοδοςgeologische Periodeارضیاتی دورانیہpériode géologiqueAgeological period + + old territoryancien territoirealten Länderپرانا علاقہ + + 귀중품의 컬렉션verzameling van kostbaarhedenKunst- und Wertsachenversammlungقیمتی اشیاء کا مجموعہcollection d'objetscollection of valuablesCollection of valuables is a collection considered to be a work in itself)Een verzameling van kostbaarheden, die als een werk beschouwd wordt ).قیمتی اشیاء کا مجموعہ ایک ایسا مجموعہ ہے جو اپنے آپ میں ایک کام سمجھا جاتا ہے۔ + + 교구bisdomεπισκοπή教区Diözesedeoiseبشپ کے تحت حلقہdiocèsedioceseDistrict or see under the supervision of a bishop.ڈسٹرکٹ یا ایک بشپ کی نگرانی میں دیکھیں۔ + + congressmanمجلس کے شرکاء + + Organisation memberتنظیم کے رکنA member of an organisation.کسی تنظیم کا ممبر + + Academic Personتعلیمی + + سلسلہ وار ڈرامے کا کردار + + juegospilspelΠληροφορίες παιχνιδιούゲームSpielcluichejogoکھیلjeugamea structured activity, usually undertaken for enjoyment and sometimes used as an educational toolایک ساختی سرگرمی ، جو عموما لطف اندوز ہونے کے لیے کی جاتی ہے اور بعض اوقات تعلیمی آلے کے طور پر استعمال ہوتی ہے۔ + + legislaturawetgevend orgaanνομοθετικό σώμα立法府Legislativereachtasمقننہpouvoir législatiflegislature + + horse raceگھوڑا دوڑ میں مقابلہ کرنا + + filmgenreείδος ταινίαςFilmgenreseánra scannáinفلم کی صنفgenre de filmmovie genre + + actor영화인skuespilleracteuraktorηθοποιός俳優Schauspieleraisteoirattoreator演員اداکارaktierisactoraktoreacteuractorΜια ηθοποιός ή ένας ηθοποιός είναι ένα άτομο που παίζει σε μια δραματική παραγωγή και που εργάζεται στο χώρο του κινηματογράφου, της τηλεόρασης, του θεάτρου, ή το ραδιόφωνο.Un attore o un attrice è una persona che recita in una produzione teatrale, televisiva, cinematografica o radiofonica.ایک اداکار یا اداکارہ وہ شخص ہوتا ہے جو ڈرامائی پروڈکشن میں کام کرتا ہے اور جو فلم ، ٹیلی ویژن ، تھیٹر یا ریڈیو میں اس صلاحیت کے ساتھ کام کرتا ہےUn actor, se é home, ou unha actriz, se é muller, é unha persoa que representa un papel nunha obra teatral, cinematográfica, radiofónica ou televisiva.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. + + egyptoloogαιγυπτιολόγοςエジプト学者ÄgyptologeÉigipteolaíماہر مصریاتégyptologueegyptologist + + چوہے کے نَسبہ کا مقامMouseGeneLocation + + 양서류amfibieαμφίβιο両生類Amphibieamfaibiachanfibioanfíbioجل تھلیاanfibioamphibienamphibianخشکی اور تری دونوں کا وہ جانور جوخشکی اور پانی دونوں میں رہے + + golf competitieένωση γκολφGolfligasraith gailfliga de golfeگالف کی انجمنligue de golfgolf leagueGolfplayer that compete against each other in Golfگالف پلیئر جو گالف میں ایک دوسرے کے خلاف مقابلہ کرتے ہیں۔ + + pyramideピラミッドPyramidepirimidمخروطی مصری مینارPyramidePyramida structure whose shape is roughly that of a pyramid in the geometric sense.ایک ڈھانچہ جس کی شکل ہندسی معنوں میں تقریبا ایک اہرام کی ہے۔ + + career stationKarrierestationCarrierestapپیشہ تعینات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یہ کلاس کسی شخص کی زندگی میں کیریئر کا مرحلہ ہے ، جیسے ایک فٹ بال کھلاڑی ، جس نے کسی مخصوص کلب میں حاصل کردہ ٹائم اسپین ، میچز اور اہداف کے بارے میں معلومات رکھتے ہیں۔ + + 초고층 건물wolkenkrabberουρανοξύστης超高層建築物Hochhausilstórachفلک بوس عمارتgratte-cielskyscraper + + grupogruppegroepομάδα集団GruppegrúpagruppoگروہgroupegroupAn (informal) group of people.un groupe (informel) de personnes.Μια συνήθως άτυπη ομάδα ανθρώπων.لوگوں کا ایک غیر رسمی گروہ + + Star сlusterستارہ غول + + Outbreakہنگامہ + + orden clericalkloosterordeκληρική τάξηklerikaler Ordenord rialtaordine clericaleعلما کا حکمordre religieuxclerical orderEen 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 één en dezelfde plaatselijke gemeenschap, een klooster of een tempel. Meerdere kloosters van gelijkgezinde religieuzen vormen samen een kloosterorde.خانقاہی حکم مذہبی، مردوں یا عورتوں کا ایک حکم ہے، جو ایک مشترکہ عقیدہ اور خانقاہی اصول کے بارے میں متحد ہو گئے ہیں جس کے وہ پابند ہیں، اور ایک ہی مقامی کمیونٹی، ایک خانقاہ یا مندر کے اندر مستقل طور پر ایک ساتھ رہتے ہیں۔ ہم خیال مذہبیوں کی کئی خانقاہیں مل کر ایک خانقاہی ترتیب بناتی ہیں۔ + + بیڈمنٹن کا کھلاڑیbadminton player + + softball leagueسافٹ بال انجمنA group of sports teams that compete against each other in softball.کھیلوں کی ٹیموں کا ایک گروپ جو سافٹ بال میں ایک دوسرے سے مقابلہ کرتا ہے + + بیس بال لیگکھیلوں کی ٹیموں کا ایک گروہ جو بیس بال میں ایک دوسرے کے خلاف مقابلہ کرتا ہے۔. + + jockey (horse racer)پیشہ ور گھڑ سوار + + RoosmolenWindkraftپَوَن چکّی کی طرح کی کّلéolienneWind motorA 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.ہوا سے چلنے والی ٹربائن جو خود کو ہوا کی سمت اور ہوا کی طاقت کے مطابق ڈھال لیتی ہے۔ ونڈ مل کے ساتھ عام فیکٹر کے طور پر ہوا کے باوجود، اپنی ذات میں ایک طبقہ سمجھا جاتا ہے + + life cycle eventدورانیہ حیات وقوعهLebenszyklus Ereigniswordingsgebeurtenis + + boroughذیلی بلدیہAn administrative body governing a territorial unity on the lowest level, administering part of a municipalityایک انتظامی ادارہ جو ایک علاقائی اتحاد کو نچلی سطح پر چلاتا ہے، بلدیہ کے حصے کا انتظام کرتا ہے + + pilotطيارपायलटطیارہ اڑانے والاpilotuapilotePilot + + دورtenure + + خلا بازastronaut + + non-profit organisationغیر منافع بخش تنظیم + + hospitalہسپتال + + geneesmiddelφάρμακο薬物Drogedrugaنشے کی دواmédicamentdrug + + power stationبجلی گھر + + cantonضِلَعAn administrative (France) or lawcourts (Netherlands) body governing a territorial unity on the municipal level or somewhat aboveایک انتظامی (فرانس) یا قانون کی عدالت (نیدرلینڈز) کا ادارہ جو علاقائی وحدت کا انتظام کرتا ہے بلدیاتی سطح پر یا اس سے کچھ اوپر + + toernooiτουρνουάTurniercomórtastorneoباہمی مقابلہtournoitournament + + trentogtreinτρένο列車Zugtraeintrenoریل گاڑیtraintrain + + religious buildingمذہبی عمارتAn establishment or her location where a group of people (a congregation) comes to perform acts of religious study, honor, or devotion.ایک اسٹیبلشمنٹ یا اس کا مقام جہاں لوگوں کا ایک گروپ (ایک جماعت) مذہبی مطالعہ، عزت، یا عقیدت کے اعمال انجام دینے آتا ہے۔ + + Verwijzingαναφορά参考文献ReferenzRéférenceReferenceReference to a work (book, movie, website) providing info about the subjectRéférence à un travail (livre, film, site web), fournissant des informations sur le sujetVerwijzing naar een plaats in een boek of film + + Molinos de vientovindmølleWindmolenΑνεμόμυλος風車Windmühlemuileann gaoithemulino a ventoہوا کی چکیmoulin à ventWindmillA windmill is a machine that converts the energy of wind into rotational energy by means of vanes called sailsہوا کی چکی ایک مشین ہے جو ہوا کی توانائی کو سیل نامی وینز کے ذریعے گردشی توانائی میں تبدیل کرتی ہےLe moulin à vent est un dispositif qui transforme l’énergie éolienne (énergie cinétique du vent) en mouvement rotatif au moyen d’ailes ajustables. + + cycadکرف نخلی + + salesفروخت + + liga deportiva스포츠 리그sport competitieΑθλητική ΟμοσπονδίαスポーツリーグSportligaکھیلوں کی انجمنligue sportivesports leagueA group of sports teams or individual athletes that compete against each other in a specific sport.کھیلوں کی ٹیموں یا انفرادی کھلاڑیوں کا ایک گروہ جو ایک مخصوص کھیل میں ایک دوسرے کے خلاف مقابلہ کرتے ہیں۔ + + american football Teamامریکن فٹ بال ٹیم + + juego de mesa보드 게임brætspilbordspelεπιτραπέζιο παιχνίδιボードゲームBrettspielgioco da tavoloبورڈ کھیلjeu de sociétéboard gamecome from http://en.wikipedia.org/wiki/Category:Board_gamesUn gioco da tavolo è un gioco che richiede una ben definita superficie di gioco, che viene detta di solito tabellone o plancia.ایک بورڈ گیم ایک ایسا کھیل ہے جس کے لیے ایک اچھی طرح سے متعین کردہ سطح کی ضرورت ہوتی ہے ، جسے عام طور پر ایک بورڈ کہا جاتا ہے۔ + + 배드민턴 선수badmintonspelerπαίχτης του μπάντμιντονバドミントン選手Badmintonspielerimreoir badmantaingiocatore di badmintonjogador de badmintonبیڈمنٹن کا کھلاڑیjoueur de badmintonbadminton player + + coachتربیت کرنے والا + + 통화muntsoortВалютаνόμισμαWährungairgeadraВалютаسکہ رائج الوقتdevisecurrency + + 프로그래밍 언어programmeringssprogprogrammeertaalγλώσσα προγραμματισμούProgrammierspracheteanga ríomhchlárúcháinlinguaggio di programmazionelinguagem de programaçãoپروگرامنگ زبانlangage de programmationprogramming languageایسی زبانیں جو کمپیوٹر کو ہدایات دینے میں معاون ہیں + + 체스 선수schakerszachistaπαίκτης σκάκιチェスプレーヤーSchachspielerimreoir fichillegiocatore di scacchiشطرنج کا کھلاڑیjoueur d'échecschess player + + بنیادی ڈھانچہinfrastructure + + موسیقی کی صنفmusic genre + + rugbyspelerπαίκτης rugbyRugbyspielerimreoir rugbaíjoueur de rugbyrugby player + + Spyجاسوس + + 다트 선수darterπαίκτης βελάκιωνDartspielerنيزہ بازjoueur de fléchettesdarts player + + personapersonpersoonOsebaشخصանձosobaΠληροφορίες προσώπου人_(法律)Personduinepersonapessoaشخصpertsonapersonneperson + + ruimtelijk objectObjektraumمقامی تھنگobjet spatialspatial thing + + arquitecto건축가architectαρχιτέκτονας建築士Architektuaslathaíarchitettoمعمارarchitectearchitect + + novelافسانهA book of long narrative in literary proseادبی نثر میں طویل داستان کی کتاب>http://en.wikipedia.org/wiki/Novel</ref> + + globulaire zwerm (cluster)Σφαιρωτό σμήνοςKugelschwarmکروی غولGlobular Swarm + + håndboldligahandbal competitieΟμοσπονδία ΧειροσφαίρισηςHandball-Ligaہینڈ بال کی انجمنligue de handballhandball leaguea group of sports teams that compete against each other in Handballکھیلوں کی ٹیموں کا ایک گروپ جو ہینڈ بال میں ایک دوسرے کے خلاف مقابلہ کرتا ہے + + playتماشہ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.ڈرامہ ادب کی ایک شکل ہے جسے ڈرامہ نگار نے لکھا ہے، عام طور پر کرداروں کے درمیان تحریری مکالمے پر مشتمل ہوتا ہے، جس کا مقصد صرف پڑھنے کے بجائے تھیٹر کی کارکردگی کے لیے ہوتا ہے۔ + + hundhondσκύλοςイヌHundmadraکتاchiendog + + politieke functiepolitische Funktionسیاسی تقریبfonction politiquepolitical function + + electrical substationposte électriquetransformatorhuisjeبرقی ذیلی مرکزبرقی ذیلی مرکز وولٹیج کو زیادہ سے کم، یا برعکس میں تبدیل کرتے ہیں۔Substations transform voltage from high to low, or the reverse.poste de transformation abaisseur ou élévateur de tension. + + infrastrukturinfrastructureΥποδομήインフラストラクチャーInfrastrukturبنیادی ڈھانچہinfrastructureinfrastructure + + 환초atolατόλη環礁Atollatolloاڈلatollatollمرجانی چٹانوں سے بنا ہواجزیرہ + + historianمورخ + + levensloopgebeurtenisπροσωπικό συμβάνEreignis im persönlichen Lebenذاتی تقریبévènement dans la vie privéepersonal eventan event that occurs in someone's personal lifeایک واقعہ جو کسی کی ذاتی زندگی میں پیش آتا ہے۔ένα συμβάν που αφορά την προσωπική ζωή κάποιου + + motorfietsμοτοσυκλέταMotorradgluaisrotharmotociclettaموٹر سائیکلmotomotorcycle + + Archer Playerتیر انداز کھلاڑی + + haven港湾HafencaladhبندرگاہPortPorta location on a coast or shore containing one or more harbors where ships can dock and transfer people or cargo to or from land.ساحل یا ساحل پر ایک مقام جس میں ایک یا زیادہ بندرگاہیں ہوں جہاں بحری جہاز لوگوں یا سامان کو زمین پر یا اس سے منتقل کر سکتے ہیں + + giocatore di netballnetball playerkorfbalspelerنیٹ بال کھلاڑی + + وادیvalleyپہاڑیوں یا پہاڑوں کے درمیان زمین کا ایک نچلا علاقہ، عام طور پر اس میں سے دریا یا ندی بہتی ہےa depression with predominant extent in one direction + + کھیل ہاکی ٹیموں کی انجمنfield hockey leagueکھیلوں کی ٹیموں کا ایک گروپ جو ہاکی کے میدان میں ایک دوسرے کے خلاف مقابلہ کرتا ہے۔a group of sports teams that compete against each other in Field Hockey + + statistischστατιστικήstatistischstaitisticشماریاتstatistiquestatistic + + ski jumperہوا میں چھلانگ لگانے والا + + ski areaاسکی کاعلاقہ + + lawقانون + + mammalتھن والے جانور + + organización religiosakerkelijke organisatieReligionsorganisationمذہبی تنظیمorganisation religieusereligious organisationFormal organisation or organised group of believersباضابطہ تنظیم یا مومنین کا منظم گروپOrganisation formelle ou groupe organisé de croyants + + تحریری پروگراموں کا مجموعہsoftware + + prefectuurνομαρχίαPräfekturدائرہ اختياراتpréfectureprefecture + + misión espacial우주 임무ruimtemissieδιαστημική αποστολήWeltraummissionmisean spáísخلائی مہمmission spatialespace mission + + spoorlijnσιδηρόδρομοςEisenbahnlinielíne iarnróidlígne de chemin de ferrailway lineA 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.Une ligne de chemin de fer est un service de transport par train qui achemine des passagers ou du fret fourni par une organisation. A ne pas confondre avec le réseau ferré qui est la structure formée par les rails. Wikipedia ne fait pas vraiement la différence entre les deux, il n'y a donc qu'une boîte d'information en même temps pour les lignes et le réseau.O σιδηρόδρομος είναι μια υπηρεσία μεταφοράς επιβατών ή εμπορευμάτων με τρένα που παρέχονται από έναν οργανισμό. Δεν πρέπει να συγχέεται με τη σιδηροδρομική γραμμή, τη δομή που αποτελείται από τις ράγες. Στη Βικιπαίδεια δε γίνεται σαφής διαφοροποίηση μεταξύ των δύο, έτσι υπάρχει ένα κουτί πληροφοριών που περιγράφει ράγες και γραμμέςEine Eisenbahnlinie im Verkehrswesen ist die regelmäßige Bedienung einer bestimmten Eisenbahnstrecke durch öffentliche Verkehrsmittel. + + lydgeluidήχοςLiedfuaimآوازaudiosoundAn audio document intended to be listened to; equivalent to http://purl.org/dc/dcmitype/SoundUn document sonore à écouter; équivalent à http://purl.org/dc/dcmitype/SoundΜεταβολή στην πίεση του ατμοσφαιρικού αέρα που διεγείρει το αισθητήριο όργανο της ακοής μέσω ηχητικών κυμάτωνصوتی لہروں کے ذریعے سماعت کے حسی اعضاء سے محرک ہوا کے دباؤ میں تبدیلی + + mountainپہاڑ + + personal eventذاتی تقریبan event that occurs in someone's personal lifeایک واقعہ جو کسی کی ذاتی زندگی میں پیش آتا ہے۔ + + Prueba ciclista사이클 대회cykelløbwielercompetitieδιαγωνισμός ποδηλασίαςRadrennengara ciclisticaسائیکلنگ مقابلہcourse cyclistecycling competition + + naruto characterافسانوی کردار + + rueΟδόςストリートStraßesráidstraatstreetA 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. + + klostermonestirkloosterklasztorμοναστήρι僧院KlostermainistirخانقاہmonastèremonasteryUn monestir és un tipus d'edificació per a la reclusió dels religiosos, que hi viuen en comú. Originàriament un monestir era la cel·la d'un sol monjo, dit en aquest cas ermità o anacoreta.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.Klasztor – budynek lub zespół budynków, w którym mieszkają wspólnoty religijne zakonników albo zakonnic.Μονή υποδηλώνει το κτίριο ή συγκρότημα κτιρίων, που αποτελείται από τις εγχώρια τρίμηνα και στο χώρο εργασίας (ες) των μοναχών, αν οι μοναχοί ή μοναχές, και αν ζουν στην κοινότητα ή μεμονωμένα (ερημίτες). Η μονή περιλαμβάνει γενικά ένα χώρο που προορίζεται για την προσευχή που μπορεί να είναι ένα παρεκκλήσι, εκκλησία ή ναό, και μπορεί επίσης να χρησιμεύσει ως μια ρητορική.Is pobal manaigh ina gcónaí faoi móideanna reiligiúnach í mainistir.خانقاہ عمارت، یا عمارتوں کے کمپلیکس کی نشاندہی کرتی ہے، جس میں خانقاہوں کے گھریلو کوارٹرز اور کام کی جگہیں شامل ہیں، چاہے وہ راہب ہوں یا راہبائیں، اور چاہے وہ برادری میں رہ رہے ہوں یا اکیلے (حرمت والے)۔ خانقاہ میں عام طور پر نماز کے لیے مخصوص جگہ شامل ہوتی ہے جو ایک چیپل، گرجا گھر یا مندر ہو سکتا ہے، اور ایک تقریر کے طور پر بھی کام کر سکتا ہے۔Le monastère est un ensemble de bâtiments où habite une communauté religieuse de moines ou de moniales..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. + + spoorwegtunnelσιδηροδρομική σήραγγαEisenbahntunneltollán iarnróidrailway tunnel + + regionعلاقہ + + juego de cartaskortspilkaartspelKartenspielتاشjeu de cartescard gamecome from http://en.wikipedia.org/wiki/Category:Card_games + + فٹ بال لیگ کے موسمfootball league season + + sports leagueکھیلوں کی انجمنA group of sports teams or individual athletes that compete against each other in a specific sport.کھیلوں کی ٹیموں یا انفرادی کھلاڑیوں کا ایک گروہ جو ایک مخصوص کھیل میں ایک دوسرے کے خلاف مقابلہ کرتے ہیں۔ + + senadorsenatorγερουσιαστής上院議員Senatorseanadóirسینیٹ کا رُکنsénateursenator + + 원소chemisch elementχημικό στοιχείο元素chemisches Elementelemento chimicoکیمیائی عنصرélément chimiquechemical element + + comics creatorمزاحیہ تخلیق کار + + diplomaδίπλωμα卒業証明書Diplomdioplómaسندdiplômediploma + + voornaamimięόνομαVornamecéadainmدیا گیا نامprénomgiven name + + 동맥slagadertętnicaαρτηρία動脈Arterieartairearteriaشریانartèreartery + + baaiBuchtbaíaخلیجbaiebay + + مجموعی ملکی پیداوارgross domestic product + + hockeybondπρωτάθλημα χόκεϊ επί χόρτουFeldhockey-Ligaکھیل ہاکی ٹیموں کا گروہligue d'hockey sur gazonfield hockey leagueکھیلوں کی ٹیموں کا ایک گروپ جو ہاکی کے میدان میں ایک دوسرے کے خلاف مقابلہ کرتا ہے۔a group of sports teams that compete against each other in Field Hockeyένα γκρουπ αθλητικών ομάδων που διαγωνίζονται η μια εναντίον της άλλης στο χόκεϊ επί χόρτου + + archipiélagoarchipelαρχιπέλαγος多島海Archipelarquipélagoجزیرہ نماarchipelarchipelago + + judgeقاضی + + RobotRobotRobotРобота + + mineکانA mine is a place where mineral resources are or were extractedکان ایک ایسی جگہ ہے جہاں معدنی وسائل ہیں یا نکالے گئے ہیں۔ + + competitieδιαγωνισμόςWettbewerbcomórtasمقابلہcompétitioncompetition + + بیس بال کی جماعتbaseball team + + tennis toernooiΤουρνουά ΤένιςテニストーナメントTennisturniercomórtas leadóigetorneo di tennisٹینس کا باہمی مقابلہtournoi de tennistennis tournament + + Christian Doctrineعیسائی نظریہTenets of the Christian faith, e.g. Trinity, Nicene Creedعیسائی عقیدے کے اصول، جیسے تثلیث، نیکین عقیدہ + + sinagogasynagogesynagogaσυναγωγήシナゴーグSynagogesionagógیہودیوں کی عبادت گاہsynagoguesynagogueA synagogue, sometimes spelt synagog, is a Jewish or Samaritan house of prayer.Une synagogue est un lieu de culte juif.یہودیوں کی عبادت گاہ، ایک یہودی یا سامری نماز کا گھر ہے۔ + + proyectoprojectσχέδιοプロジェクトProjekttionscadalمنصوبہprojetprojectA project is a temporary endeavor undertaken to achieve defined objectives.Ein Projekt ist ein zeitlich begrenztes Unternehmen, das unternommen wird, um definierte Ziele zu erreichen.ایک پروجیکٹ ایک عارضی کوشش ہے جو متعین مقاصد کے حصول کے لیے کی جاتی ہے۔ + + ٹینس کی انجمنtennis leagueکھیلوں کی ٹیموں کا ایک گروپ یا شخص جو ٹینس میں ایک دوسرے کے خلاف مقابلہ کرتے ہیںA group of sports teams or person that compete against each other in tennis. + + 축구 대회 시즌Football League seizoenαγωνιστική περίοδος πρωταθλήματος ποδοσφαίρουFootball Liga Saisonséasúr srath péileفٹ بال لیگ کے موسمfootball league season + + 카메라cameraφωτογραφική μηχανήカメラKameraceamarafotocameraتصویر کھینچنے کا آلہappareil photographiquecameraUna fotocamera (in lingua italiana nota tradizionalmente come macchina fotografica) è uno strumento utilizzato per la ripresa fotografica e per ottenere immagini di oggetti reali stampabili su supporti materiali cartacei o archiviabili su supporti elettronici.Φωτογραφική μηχανή ονομάζεται η συσκευή που χρησιμοποιείται για τη λήψη φωτογραφιών.Οι ευρύτερα χρησιμοποιούμενες σήμερα φωτογραφικές μηχανές, ερασιτεχνικής ή επαγγελματικής χρήσης, διακρίνονται σε δύο βασικές κατηγορίες: τις συμπαγείς και στις μονοοπτικές ρεφλέξ. Διακρινόμενες, ανάλογα με την τεχνολογία τους,είναι οι κλασικές φωτογραφικές μηχανές με φιλμ και οι ψηφιακές φωτογραφικές μηχανές.ایک کیمرہ (اطالوی میں روایتی طور پر کیمرے کے نام سے جانا جاتا ہے) ایک ایسا آلہ ہے جو فوٹو گرافی کی شوٹنگ اور حقیقی اشیاء کی تصاویر حاصل کرنے کے لیے استعمال کیا جاتا ہے جو کاغذ پر چھپ سکتی ہیں یا الیکٹرانک میڈیا پر محفوظ کی جا سکتی ہیں۔ + + juezrechterδικαστής裁判官richterbreitheamhgiudiceقاضیjugejudge + + قسم + + کروی غولGlobular Swarm + + deityدیوتا + + barcoschipstatekπλοίοSchiffárthachجہازnavireship + + prijsnagradanagrodaβραβείοAuszeichnunggradampremioانعامrécompenseaward + + cuerpo celeste천체hemellichaamουράνιο σώμα天体Himmelskörperrinn neimhecorpo celesteجرم فلکیcorps celestecelestial body + + cardinalافضل + + cementeriobegraafplaatsνεκροταφείο墓地FriedhofreiligقبرستانcimetièrecemeteryA burial placeایک تدفین کی جگہΝεκροταφείο (ή Κοιμητήριο) ονομάζεται ο χώρος ο προορισμένος για την ταφή των νεκρών.Un cimetière est un groupement de sépultures monumentales. + + یادگارmemorialایک قسم کا ڈھانچہ (ایک مجسمہ یا آرٹ آبجیکٹ) کسی شخص یا اہم واقعہ کی یاد میں بنایا گیا ، ضروری نہیں کہ تباہ کن نوعیت کا ہو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. + + نَسبہgene + + voormalige gemeenteehemalige Gemeindeسابق بلدیہcommune historiqueone-time municipalityA municipality that has ceased to exist, and most of the time got incorporated (wholesale or partly) into another municipalityایک بلدیہ جس کا وجود ختم ہو گیا ہے، اور زیادہ تر وقت کسی دوسری بلدیہ میں (تھوک یا جزوی طور پر) شامل ہو گیا ہے + + warmwaterbron温泉heiße Quellefoinse thefonte termalگرم پانی کا قدرتی چشمہhot spring + + نشے کی دواdrug + + ArtificialSatelliteمصنوعی سیارہخلائی پرواز کے تناظر میں ، مصنوعی سیارہ ایک مصنوعی شے ہے جسے جان بوجھ کر مدار میں رکھا گیا ہےIn the context of spaceflight, an artificial satellite is an artificial object which has been intentionally placed into orbit. + + JewishLeaderیہودی رہنما + + آسٹریلوی فٹ بال کی انجمنaustralian football leagueکھیلوں کی ٹیموں کا ایک گروپ جو آسٹریلین فٹ بال میں ایک دوسرے کے خلاف مقابلہ کرتا ہےA group of sports teams that compete against each other in australian football. + + martial artistKampfkünstlerمارشل کے فنکارΠολεμικός Καλλιτέχνης + + cricket teamکرکٹ جماعت + + Hollywood cartoonκινούμενα σχέδια του HollywoodHollywood Cartoonہالی ووڈ کارٹونhollywood cartoon + + aardbeving地震Erdbebenزلزلہtremblement de terreearthquakethe result of a sudden release of energy in the Earth's crust that creates seismic wavesیہ زمین کی پرت میں اچانک توانائی کے اخراج کا نتیجہ ہے جو زلزلے کی لہروں کو پیدا کرتا ہے + + canoeistکشتی بنانے والا + + بیس بال کا کھلاڑیbaseball player + + 뮤지컬musicalμουσικόςミュージカルMusicalموسیقی کاmusiquemusical + + poemنظم + + archeologistماہر آثار قدیمہ + + archbishopپادریوں کا سردار + + 비치발리볼 선수beachvolleybal spelerπαίκτης του beach volleyビーチバレー選手Beachvolleyballspielergiocatore di beach volleyساحل سمندروالی بال کاکھلاڑیjoueur de volleyball de plagebeach volleyball playerΈνα άτομο (άνδρας ή γυναίκα) που ασχολείται με το άθλημα του μπίτς βόλλεϋ. + + ستارہstar + + national collegiate athletic association team seasonNCAA Team SaisonNCAA team seizoenقومی کالج ورزش انجمن کاموسم + + نامعلومUnknown + + شخصperson + + coal pitکوئلہA coal pit is a place where charcoal is or was extractedکوئلے کا گڑھا ایک ایسی جگہ ہے جہاں چارکول ہے یا نکالا جاتا ہے۔ + + plantپودا + + 항성sterαστέρι恒星Sternréaltastellaستارہétoilestar + + inlinehockey competitieπρωτάθλημα χόκεϋ inlineInlinehockey Ligasraith haca inlíneان لائن ہاکی انجمنinline hockey leaguegroup of sports teams that compete against each other in Inline Hockey.کھیلوں کی ٹیموں کا گروپ جو ان لائن ہاکی میں ایک دوسرے سے مقابلہ کرتے ہیں۔ + + پلbridgeایک پل ایک ایسا ڈھانچہ ہے جو جسمانی رکاوٹوں جیسے پانی ، وادی یا سڑک کی راہ میں رکاوٹ کو عبور کرنے کے مقصد سے بنایا گیا ہے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). + + Eurovisie Songfestival actΔιαγωνισμός τραγουδιού της EurovisionVorentscheid Eurovision song contestiontráil i gComórtas Amhránaíochta na hEoraifíseیوروویژن گانا مقابلہ اندراجconcours Eurovision de la chansonEurovision song contest entry + + micro-regionچھوٹاعلاقہA microregion is a - mainy statistical - region in Brazil, at an administrative level between a meso-region and a communityمائیکرو ریجن برازیل میں ایک - بنیادی شماریاتی - خطہ ہے، انتظامی سطح پر ایک میسو ریجن اور کمیونٹی کے درمیان + + parochieενορία小教区Gemeindeparóisteپادری کا علاقہparoisseparishعلما کے انتظامی ادارے کی سب سے چھوٹی اکائیThe smallest unit of a clerical administrative bodyΕίναι η μικρότερη μονάδα στην διοικητική ιερατική δομή. + + HeerlijkheidGrundherrschaftجاگیرSeigneurieManorEstate and/or (cluster of) lands that are under the jurisdiction of a feudal lord. Hence it is also the shorthand expression for the physical estate itself: a manor is a stately house in the countryside with the surrounding grounds + + 아마추어 권투 선수amateur boxerερασιτέχνης μποξέρアマチュアボクサーAmateurboxerdornálaí amaitéarachpugile amatorialeشوقیہ مکے بازboxeador afeccionadoboxeur amateuramateur boxer + + Brauner Zwergbrown dwarfbruine dwergبھورا بونا + + atollاڈلمرجانی چٹانوں سے بنا ہواجزیرہ + + natural regionقدرتی علاقہقدرتی رقبہ کا استعمال کسی جغرافیائی علاقے کی حد کو بیان کرنے کے لیے کیا جاتا ہے جس میں بشریات کی مداخلت کم از کم موجود نہیں ہوتی + + ماتحت علاقہterritoryایک ماتحت علاقہ کسی ملک کی ذیلی تقسیم، ایک غیر خودمختار جغرافیائی خطہ کا حوالہ دے سکتا ہے۔A territory may refer to a country subdivision, a non-sovereign geographic region. + + دستاویزکوئی بھی دستاویز۔ + + altitudeبلندی + + huesobotοστόKnochencnámhossoossoہڈیosboneΗ βασική μονάδα του συστήματος στήριξης των σπονδυλωτών οργανισμών. + + فوجی ہوائی جہازmilitary aircraft + + بورڈ کھیلboard gameایک بورڈ گیم ایک ایسا کھیل ہے جس کے لیے ایک اچھی طرح سے متعین کردہ سطح کی ضرورت ہوتی ہے ، جسے عام طور پر ایک بورڈ کہا جاتا ہے۔come from http://en.wikipedia.org/wiki/Category:Board_games + + شناخت کنندہidentifier + + شراب کا علاقہwine region + + polysaccharidePolysaccharidepolysacharideکثِیر شَکریZijn koolhydraten die zijn opgebouwd uit tien of meer monosacharide-eenhedenیہ کاربوہائیڈریٹس ہیں جو دس یا اس سے زیادہ سادَہ شَکَّر یونٹوں سے بنی ہیں۔ + + ciudad도시bystadmiastoπόληStadtशहरcathaircittàcidadeشہرcidadevillecitya relatively large and permanent settlement, particularly a large urban settlementun asentamiento permanente y relativamente grande, especialmente un gran asentamiento urbanoActualmente considérase como unha entidade urbana con alta densidade de poboación na que predominan fundamentalmente a industria e os servizos.ایک نسبتا بڑی اور مستقل آبادی ، خاص طور پر ایک بڑی شہری بستی + + economista경제학자econoomοικονομολόγος経済学者Ökonomeacnamaíماہر معاشیاتéconomisteeconomistAn economist is a professional in the social science discipline of economics.Le terme d’économiste désigne une personne experte en science économique.Un economista es un profesional de las ciencias sociales experto en economía teórica o aplicada.ایک ماہر معاشیات معاشیات کے سماجی سائنس کے شعبے میں پیشہ ور ہوتا ہے + + fungus + + polysaccharideکثِیر شَکرییہ کاربوہائیڈریٹس ہیں جو دس یا اس سے زیادہ سادَہ شَکَّر یونٹوں سے بنی ہیں۔ + + Nobel Prizeاعلی انعام + + 컨벤션congresσυνέδριοKonventionمجلسcongrèsconvention + + horseگھوڑا + + documenttypeτύπος εγγράφουDokumentenartcineál cáipéiseدستاویز کی قسمtype de documentDocument Typetype of document (official, informal etc.)documenttypeدستاویز کی قسم (سرکاری، غیر رسمی وغیرہ + + speedway riderSpeedway Fahrerspeedway rijderتیز راہ سوار + + gymnastturnerγυμναστής体操選手TurnergleacaíکسرتیgymnastegymnastA gymnast is one who performs gymnasticsUn gymnaste est une personne qui pratique la gymnastiqueΈνας γυμναστής είναι ένας που εκτελεί γυμναστικές ασκήσειςجمناسٹ وہ ہوتا ہے جو جمناسٹکس کرتا ہے + + کھیلوں کی انجمنsports leagueکھیلوں کی ٹیموں یا انفرادی کھلاڑیوں کا ایک گروہ جو ایک مخصوص کھیل میں ایک دوسرے کے خلاف مقابلہ کرتے ہیںA group of sports teams or individual athletes that compete against each other in a specific sport. + + گالف کا میدانgolf courseزمین کا ایک علاقہ جس میں گولف کے لیے 9 یا 18 سوراخ ہوتے ہیں جن میں سے ہر ایک میں ٹی ، فیئر وے ، اور سبز اور اکثر ایک یا زیادہ قدرتی یا مصنوعی خطرات شامل ہیں۔ - جسے گولف لنکس بھی کہا جاتا ہے۔In a golf course, holes often carry hazards, defined as special areas to which additional rules of the game apply. + + نسلی گروہethnic group + + موبائل فونmobile phone + + درہmountain passایک راستہ جو پہاڑی سلسلہ کو عبور کرنے کی اجازت دیتا ہے۔ یہ عام طور پر اونچی اونچائی کے دو علاقوں کے درمیان ایک سیڈل پوائنٹ ہوتا ہےa path that allows the crossing of a mountain chain. It is usually a saddle point in between two areas of higher elevation + + criminalمجرم + + 쇼핑몰winkelcentrumεμπορικό κέντροショッピングモールEinkaufszentrumionad siopadóireachtashoppingخریداری کرنے کے لیے مختص جگہcentre commercialshopping mall + + periodistajournalistδημοσιογράφοςジャーナリストJournalistiriseoirgiornalistaصحافیjournalistejournalist + + مخلوط مارشل آرٹس کی انجمنmixed martial arts leagueکھیلوں کی ٹیموں کا ایک گروپ جو مخلوط مارشل آرٹس میں ایک دوسرے سے مقابلہ کرتا ہے۔a group of sports teams that compete against each other in Mixed Martial Arts + + ٹی وی مزبانtelevision host + + space shuttleخلائی جہاز + + ہلکی شرابbeer + + projectمنصوبہA project is a temporary endeavor undertaken to achieve defined objectives.ایک پروجیکٹ ایک عارضی کوشش ہے جو متعین مقاصد کے حصول کے لیے کی جاتی ہے۔ + + HormoneHormonehormoonاعضاء کی خوراکA hormone is any member of a class of signaling molecules produced by glands in multicellular organisms that are transported by the circulatory system to target distant organs to regulate physiology and behaviour.Une hormone fait partie d'une classe de molécules de signalisation produites par les glandes d'organismes multicellulaires qui sont transportées par le système circulatoire pour cibler des organes distants afin de réguler la physiologie et le comportement.Hormonen zijn signaalstoffen die door endocriene klieren via de bloedbaan aan doelcellen of -organen worden afgegeven en fysiologische processen en gedrag regulerenایک مادہ جو غدود سے نکل کر خون میں شامل ہوتا ہےاورگردش کے نظام کے ذریعے دور دراز کے اعضاء کو نشانہ بناتے ہیں تاکہ جسمانیات اور طرز عمل کو کنٹرول کریں + + Legal Caseقانونی مقدمہ + + ریگستانزمین کا بنجر علاقہ جہاں کم بارش ہوتی ہے۔ + + sportfaciliteitαθλητικές εγκαταστάσειςSportanlageکھیل کی سہولتinstallation sportivesport facility + + بوبسلیگ کھلاڑیBobsleighAthlete + + agente에이전트agentagentπράκτοραςエージェントAgentgníomhaireagenteنمائندہaxenteagentagentΑνάλογα με την κλάση foaf:Agent, ένας πράκτορας είναι μια οντότητα που ενεργεί. Αυτό προορίζεται να είναι μια υπερκλάση της κλάσης Άτόμο και Οργανισμός.ایک ایجنٹ ایک ایسا ادارہ ہے جو کام کرتا ہے۔ اس کا مقصد شخص اور تنظیم کا فوق درجہ ہونا ہے۔Análogo a foaf:Agent, un axente é unha entidade que actúa. Destínase a ser a super clase de Persoa e Organización.Equivaut à foaf:Agent, un agent est une entité qui agit. C'est supposé être la super classe de Person et de Organisation.Analogous to a foaf:Agent, an agent is an entity that acts. This is intended to be the super class of Person and Organisation. + + mølleMolenΜύλος粉砕機MühlemuileannmulinoچکیMoulinMilla unit operation designed to break a solid material into smaller piecesایک یونٹ آپریشن جو ٹھوس مواد کو چھوٹے ٹکڑوں میں توڑنے کے لیے ڈیزائن کیا گیا ہے۔ + + کارخانهfactoryایک کارخانه (پہلے کارخانه) ایک صنعتی رقبہ ہے ، عام طور پر عمارتوں اور مشینری پر مشتمل ہوتی ہے ، یا زیادہ عام طور پر ایک مرکب جس میں کئی عمارتیں ہوتی ہیں ، جہاں مزدور سامان تیار کرتے ہیں یا مشینیں چلاتے ہیں جو ایک مصنوعات کو دوسری پر پروسیسنگ کرتے ہیں۔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. + + سرائےhotel + + malerischilderijobrazΈργο Ζωγραφικής絵画GemäldepictiúrنقاشیpeinturePaintingDescribes a painting to assign picture entries in wikipedia to artists. + + ہتھیارweapon + + ماہر حشریاتentomologist + + provinceصوبہAn administrative body governing a territorial unity on the intermediate level, between local and national levelایک انتظامی ادارہ جو مقامی اور قومی سطح کے درمیان انٹرمیڈیٹ سطح پر علاقائی وحدت کا انتظام کرتا ہے۔ + + Sailorملاح + + resultados de Juegos Olímpicosresultaat op de Olympische Spelenαποτελέσματα Ολυμπιακών αγώνωνolympisches Ergebnisاولمپک کا نتیجہrésultat de Jeux Olympiquesolympic result + + سازندہinstrumentalist + + sport teamlidμέλος αθλητικής ομάδαςSport Team Mitgliedکھیلوں کی جماعت کا رکنmembre d'équipe sportiveSports team memberlid van een athletisch teamA member of an athletic team.ایتھلیٹک ٹیم کا رکنΜέλος αθλητικής ομάδας. + + خلوی مادہeukaryote + + Oceanسمندرنمکین پانی کا ایک جسم جو سیارے کے ہائیڈروسفیئر کا زیادہ تر حصہ بناتا ہے۔ + + unidad militar군대militaire eenheidΣτρατιωτική ΜονάδαMilitäreinheitunidade militarفوجی یونٹunité militairemilitary unit + + staatsapparaatδημόσιες υπηρεσίεςöffentlicher Dienstخدمات عامہservice publicpublic serviceΕίναι οι υπηρεσίες που προσφέρονται από δομές του κράτουςیہ ریاستی ڈھانچے کی طرف سے عوام کے لیے فراہم کردہ خدمات ہیں۔ + + mediaمواصلاتstorage and transmission channels or tools used to store and deliver information or dataذخیرہ اور منتقلی چینلز یااوزار جو معلومات یا ڈیٹا کو ذخیرہ کرنے اور پہنچانے کے لیے استعمال ہوتے ہیں۔ + + 만화애니 등장인물ani-manga figuurχαρακτήρας ανιμάνγκαキャラクターManga-Charaktercarachtar animangapersonaggio animangaانیمنگا کردارpersonaxe de animangapersonnage d'animangaanimanga characterAnime/Manga characterΧαρακτήρας από Άνιμε/Μάνγκα + + voetbal toernooiτουρνουά ποδοσφαίρουサッカートーナメントFußballturniercomórtas sacaircampeonato de futebolفٹ بال باہمی مقابلہfutbol turnuvasısoccer tournoment + + curlerگھنگریالا بنانے کا آلہ + + Political conceptسیاسی تصورPolitical concepts, e.g. Capitalism, Democracyسیاسی تصورات، جیسے سرمایہ داری، جمہوریت + + 질병sygdomziekteασθένεια病気Krankheitgalarmalattiaبیماریmaladiedisease + + literair genreLiteraturgattungادبی صنفgenre littéraireliterary genreGenres of literature, e.g. Satire, Gothicادب کی انواع، جیسے طنزیہ، غیر مہذب + + uvadruifσταφύλιブドウWeintraubefíonchaoruvaانگورraisingrape + + chancellorمشیر + + unit of workکام کی اکائی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.اس کلاس کا مقصد کام کی مقدار کو سمجھانا ہے۔ یہ سرگرمی سے مختلف ہے کہ اس کا ایک حتمی اختتام ہے اور اسے ناپا جا رہا ہے۔ + + diplomaسند + + Cuerpo de agua수역watervlakteύδατα水域Gewässerdistesa d'acquaextensão d’águaاجسامِ آبétendue d'eaubody of waterΣυγκεντρωμένες, συνήθως μεγάλες ποσότητες νερού (π.χ. ωκεανοί) που βρίσκονται στη Γη ή σε οποιονδήποτε άλλο πλανήτη. Ο όρος χρησιμοποιείται και για υδάτινους σχηματισμούς όπου υπάρχει κίνηση του νερού, όπως ποταμοί, ρεύματα ή κανάλια.مرکوز ، عام طور پر پانی کی بڑی مقدار (جیسے سمندر) جو زمین یا کسی دوسرے سیارے پر پائے جاتے ہیں۔ یہ اصطلاح آبی شکلوں کے لیے بھی استعمال ہوتی ہے جہاں پانی کی نقل و حرکت ہوتی ہے ، جیسے دریا ، نہریں یا نہریں + + craterدہانه + + wrestlerپہلوان + + historische gebeurtenishistorisches Ereignisتاریخی واقعہévènement historiquehistorical eventan event that is clearly different from strictly personal events and had historical impactایک ایسا واقعہ جو ذاتی واقعات سے واضح طورپرمختلف ہوجونمایاں، تاریخ بدلنےوالااثررکھتا ہے + + رنگ سازpainter + + قسم + + politician spouseسیاستدان میاں بیوی + + پادری کا علاقہparishThe smallest unit of a clerical administrative bodyعلما کے انتظامی ادارے کی سب سے چھوٹی اکائی + + racecircuitπίστα αγώνωνサーキットのコースRennstreckerásraoncircuit de courserace track + + historisch gebouwιστορικό κτίριο歴史的建造物historisches Gebäudefoirgneamh stairiúilتاریخی عمارتbâtiment historiquehistoric building + + مونوکلونل دافِع جِسمmonoclonal antibodyوہ دوائیں جو ایک مونوکلونل دافِع جِسم ہیں۔‎Drugs that are a monoclonal antibody‎ + + nerveاعصاب + + رسالہmagazineمیگزین، میگزین، چمکیلی یا سیریل اشاعتیں ہیں، عام طور پر ایک باقاعدہ شیڈول پر شائع ہوتے ہیں، مختلف مضامین پر مشتمل ہوتے ہیں. انہیں عام طور پر اشتہارات، خریداری کی قیمت، پری پیڈ میگزین سبسکرپشنز، یا تینوں کے ذریعے مالی اعانت فراہم کی جاتی ہے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. + + ڈیجیٹل کیمرہڈیجیٹل کیمرہ ایک ایسا آلہ ہے جو روایتی کیمرہ کے برعکس الیکٹرانک طور پر تصاویر کھینچتا ہے، جو کیمیائی اور مکینیکل عمل سے تصاویر کھینچتا ہے۔ + + musicalموسیقی کا + + cricket groundکرکٹ کا میدان + + national football league seasonقومی فٹ بال لیگ کا موسم + + monumentμνημείοモニュメントDenkmalséadchomharthaیادگارmonumentmonumentA type of structure (a statue or an art object) created to commemorate a person or important event, not necessarily of a catastrophic nature.ایک قسم کا ڈھانچہ (ایک مجسمہ یا آرٹ آبجیکٹ) کسی شخص یا اہم واقعہ کی یاد میں بنایا گیا ، ضروری نہیں کہ تباہ کن نوعیت کا ہو۔ + + 예술가kunstnerkunstenaarхудожникartystaκαλλιτέχνης芸術家Künstlerealaíontóirartistaмастакفنکارartisteartist + + گلوکارSingerایک شخص جو گاتا ہے + + یوکاریوٹ + + paardentrainerεκπαιδευτής αλόγων調教師Pferdetrainerگھوڑا سدھانے والاentraineur de chevauxhorse trainer + + american football leagueامریکن فٹ بال لیگA group of sports teams that compete against each other in american football.کھیلوں کی ٹیموں کا ایک گروپ جو امریکی فٹ بال میں ایک دوسرے کے خلاف مقابلہ کرتے ہیں۔. + + آبی گزرگاہ کی سرنگwaterway tunnel + + پتھر کنڈلی کھيل کی انجمنcurling leaguea group of sports teams that compete against each other in Curlingکھیلوں کی ٹیموں کا ایک گروپ جو کرلنگ میں ایک دوسرے کے خلاف مقابلہ کرتے ہیں۔ + + kanovaarderカヌー選手Kanutecanúálaícanoistaکشتی بنانے والاcanoeist + + organización geopolítica지정학적 조직geopolitieke organisatieγεωπολιτική οργάνωσηgeopolitische Organisationجُغرافیائی سیاسیات تنظیمorganisation géopolitiquegeopolitical organisation + + نائب وزیر اعظمvice prime minister + + چوہے کا نَسبہMouseGene + + تِجارتی اِدارہcompany + + raceدوڑ + + bruto nationaal product per hoofd van de bevolkingακαθάριστο εγχώριο προϊόν κατά κεφαλήνBruttoinlandsprodukt pro Kopfolltáirgeacht intíre per capitaمجموعی گھریلو پیداوار فی کسproduit intérieur brut par habitantgross domestic product per capitaفی کس جی ڈی پی قومی حدود کے اندر پیدا ہونے والی مارکیٹنگ اشیاء اور خدمات کے مجموعے کی پیمائش کرتا ہے ، جو اس علاقے میں رہنے والے ہر شخص کے لیے اوسط ہے + + skyscraperفلک بوس عمارت + + بین الاقوامی فٹ بال انجمن کی تقریبinternational football league event + + گٹار بجانے والا + + verkiezingen diagramεκλογικό διάγραμμαWahldiagramانتخابات کا خاکہElection Diagram + + موسیقی بنانے والاmusic composerایک شخص جو موسیقی تخلیق کرتا ہےa person who creates music. + + citaat引用ZitatاقتباسCitationQuote + + بلدیہmunicipalityایک انتظامی ادارہ جو نچلی سطح پر علاقائی اتحاد کو کنٹرول کرتا ہے، ایک یا چند مزید بستیوں کا انتظام کرتا ہےAn administrative body governing a territorial unity on the lower level, administering one or a few more settlements + + برف پر پھسلنے میں جِسمانی ورزِشوں کا مُقابلہ کا کھلاڑیBiathlete + + ٹی وی کی قسطtelevision episodeٹیلی ویژن ایپی سوڈ سیریل ٹیلی ویژن پروگرام کا ایک حصہ ہےA television episode is a part of serial television program. + + 미식 축구 팀Amerikaans football teamομάδα αμερικανικού ποδοσφαίρουアメリカン・フットボール・チームAmerican-Football-Teamsquadra di football americanoامریکن فٹ بال ٹیمequipo de fútbol americanoéquipe américaine de football américainamerican football Team + + still imageStandbildimage fixestilstaand beeldA visual document that is not intended to be animated; equivalent to http://purl.org/dc/dcmitype/StillImage + + gridiron football playerگرڈیرون فٹ بال کھلاڑیGradiron football, also called North American football, is a family of soccer team games played primarily in the United States and Canada.گریڈیرون فٹ بال ، جسے شمالی امریکی فٹ بال بھی کہا جاتا ہے ، فٹ بال ٹیم کھیلوں کا ایک خاندان ہے جو بنیادی طور پر ریاستہائے متحدہ اور کینیڈا میں کھیلا جاتا ہے + + Gaelische sporterΓαελικός παίκτης παιχνιδιώνgälischen Sportspielerimreoir sa Chumann Lúthchleas Gaelگیلک_کھیل_کا_کھلاڑیjoueur de sports gaéliquesGaelic games player + + معاہدہtreaty + + romanromanνουβέλα小説Romanúrscéalnovellaافسانهromannovelادبی نثر میں طویل داستان کی کتاب>http://en.wikipedia.org/wiki/Novel</ref>A book of long narrative in literary proseΈνα βιβλίο με μεγάλη αφήγηση σε λογοτεχνική πρόζαLe roman est un genre littéraire, caractérisé pour l'essentiel par une narration fictionnelle plus ou moins longue. + + schaatserπαγοδρόμοςスケート選手Schlittschuhläuferscátálaípattinatoreاسکیٹ کرنے والاskater + + 컬링 선수curlingspelerμπικουτίカーリング選手Curlingspielerکرلنگ کا کھیل کھیلنے والاcurler + + رقص کرنے والا + + gebied onder overheidsbestuurstaatliche Verwaltungsregionحکومتی انتظامی علاقہrégion administrative d'étatgovernmental administrative regionAn administrative body governing some territorial unity, in this case a governmental administrative bodyایک انتظامی ادارہ جو کچھ علاقائی وحدت کو کنٹرول کرتا ہے ، اس صورت میں ایک سرکاری انتظامی ادارہ ہے۔ + + capeخشکی کا وہ حصہ جو سمندر کے اندر تک چلا گیا ہو + + havetuinκήπος庭園GartengáirdíngiardinoباغjardingardenA 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)باغ ایک منصوبہ بند جگہ ہے ، عام طور پر باہر ، ڈسپلے ، کاشت ، اور پودوں اور فطرت کی دیگر اقسام سے لطف اندوز ہونے کے لیے + (http://en.wikipedia.org/wiki/Garden) + + عالمی ثقافتی ورثہWorld Heritage Siteیونیسکو کی عالمی ثقافتی ورثہ سائٹ ایک ایسی جگہ ہے (جیسے جنگل، پہاڑ، جھیل، صحرا، یادگار، عمارت، کمپلیکس، یا شہر) جو اس فہرست میں شامل ہے جسے یونیسکو کی عالمی ثقافتی ورثہ کمیٹی کے زیر انتظام بین الاقوامی عالمی ثقافتی ورثہ پروگرام کے ذریعے برقرار رکھا جاتا ہے۔ 21 ریاستی پارٹیوں پر مشتمل ہے جنہیں ان کی جنرل اسمبلی چار سال کی مدت کے لیے منتخب کرتی ہے۔ عالمی ثقافتی ورثہ کی جگہ ثقافتی یا جسمانی اہمیت کی حامل جگہ ہے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. + + artiest klassieke muziekκαλλιτέχνης κλασικής μουσικήςKünstler der klassischen Musikceoltóir clasaiceachاعلی درجےکاموسیقی فنکارartiste de musique classiqueclassical music artistΟ Λούντβιχ βαν Μπετόβεν,Γερμανός συνθέτης και πιανίστας,ήταν ένας σπουδαίος καλλιτέχνης της κλασικής μουσικής.لڈوگ وان بیتھوون ، جرمن موسیقار اور پیانو بجانے والے ، کلاسیکی موسیقی کے ایک عظیم فنکار تھے۔ + + eucarionte진핵생물eukaryootευκαρυωτικό真核生物Eukaryoteneocarótخلوی مادہeucaryoteeukaryote + + professorprofesorκαθηγητής教授Professorollamhمعلمprofesseurprofessor + + vice presidentαντιπρόεδροςVizepräsidentleasuachtaránنائب صدرvice présidentvice president + + liga de béisbol야구 리그honkbal competitieπρωτάθλημα μπέιζμπολ野球リーグBaseball-Ligasraith daorchluichelega di baseballبیس بال کی انجمنligue de baseballbaseball leaguea group of sports teams that compete against each other in Baseball.ένα σύνολο από ομάδες μπέιζμπολ οι οποίες συναγωνίζονται μεταξύ τους.کھیلوں کی ٹیموں کا ایک گروہ جو بیس بال میں ایک دوسرے کے خلاف مقابلہ کرتا ہے۔. + + voormalige provinciehistorischer Provinzcúige stairiúilتاریخی صوبہAncienne provinceHistorical provinceA place which used to be a province.یک ایسی جگہ جو ایک صوبہ ہوا کرتی تھی۔ + + institución educativa교육 기관uddannelsesinstitutiononderwijsinstellingεκπαιδευτικό ίδρυμαBildungseinrichtungتعلیمی ادارےétablissement d'enseignementeducational institution + + ٹیبل ٹینس کا کھلاڑیtable tennis playerکھلاڑی جو ٹیبل ٹینس کھیلتا ہےAthlete who plays table tennis + + gameکھیلa structured activity, usually undertaken for enjoyment and sometimes used as an educational toolایک ساختی سرگرمی ، جو عموما لطف اندوز ہونے کے لیے کی جاتی ہے اور بعض اوقات تعلیمی آلے کے طور پر استعمال ہوتی ہے۔ + + سالyear + + estación espacial우주 정거장ruimtestationδιαστημικός σταθμόςRaumstationstáisiún spáisخلائی اڈہstation spatialespace station + + تیز روسی شرابvodka + + constelación별자리samenstelαστερισμός星座SternbildréaltbhuíoncostellazioneنکشترconstellationtakımyıldızıconstellationUna costellazione è ognuna delle 88 parti in cui la sfera celeste è convenzionalmente suddivisa allo scopo di mappare le stelle. + + skiërσκιέρスキーヤーskifahrersciálaísciatoreاسکی بازskieurskier + + گیلک گیم پلیئر + + partner van een politicusσύζυγος πολιτικούEhepartner eines Politikerسیاستدان میاں بیویpolitician spouse + + underground journalزیر زمین جریدہUnderground ZeitschriftverzetsbladAn 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.ایک زیر زمین جریدہ ہے، اگرچہ وقت گزرنے کے ساتھ ساتھ ہمیشہ قانون کے ذریعہ اشاعتیں ممنوع رہی ہیں، دوسری عالمی جنگ کے دوران جرمنوں کے زیر قبضہ ممالک کا ایک رجحان۔ زیر زمین پریس میں تحریر کا مقصد نازی قبضے کے خلاف مزاحمت کے جذبے کو مضبوط کرنا ہے۔ زیر زمین جرائد کی تقسیم بہت خفیہ ہونی چاہیے تھی اور اس لیے اس کا انحصار غیر قانونی ڈسٹری بیوشن سرکٹس اور قابضین کی طرف سے ظلم و ستم کے خطرات پر تھا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. + + خواتین کی انجمن کا باہمی مقابلہWomen's Tennis Association tournament + + paintball competitieκύπελλο paintballPaintball-Ligaپینٹبال انجمنligue de paintballpaintball leaguea group of sports teams that compete against each other in Paintballένα γκρουπ αθλητικών ομάδων που ανταγωνίζονται στο paintballکھیلوں کی ٹیموں کا ایک گروہ جو پینٹ بال(مصنوعي روغني گوليوں سے فوجي انداز کي جنگ لڑنے کي نقل) میں ایک دوسرے سے مقابلہ کرتا ہے۔ + + 석송강wolfsklauwΜούσκλιαヒカゲノカズラ綱Bärlappبغیر پُہولوں کا سدا بہار پوداlycopodiopsidaclub moss + + compositie klassieke muziekσύνθεση κλασικής μουσικήςKomposition klassischer Musikcomposizione di musica classicaروایتی موسیقی کی ترکیبcomposition de musique classiqueclassical music compositionΗ σύνθεση κλασικής μουσικής μπορεί να πραγματοποιηθεί και με τη βοήθεια ειδικών προγραμμάτων στον υπολογιστή που χρησιμοποιούν συγκεκριμένο αλγόριθμο.کلاسیکی موسیقی کی تشکیل کمپیوٹر پر خصوصی پروگراموں کی مدد سے کی جاسکتی ہے جو ایک مخصوص الگورتھم استعمال کرتے ہیں۔ + + hockey clubHockeyvereinhockeyclubہاکی کی تنظیم + + playastrandplatjastrand砂浜Strandpraiaساحل_سمندرplagebeachThe shore of a body of water, especially when sandy or pebbly.Ribera del mar o de un río grande, formada de arenales en superficie casi plana.پانی کے جسم کا ساحل ، خاص طور پر جب ریت بھرا یا کنکری + + موسیقی کے ریکارڈوں کی فہرستtrack listمیوزک ٹریکس کی فہرست، جیسے سی ڈی پرA list of music tracks, like on a CD + + پوشاک سازfashion designerلباس کی نئ وضع قطع ایجاد کرنے والا + + lacrosse bondπρωτάθλημα χόκεϋ σε χόρτοラクロスリーグLacrosse-Ligaلیکروس انجمنligue de crosselacrosse leaguea group of sports teams that compete against each other in Lacrosse.کھیلوں کی ٹیموں کا ایک گروپ جو لیکروس لیگ میں ایک دوسرے کے خلاف مقابلہ کرتا ہے + + engineانجن + + طبی خصوصیتmedical specialty + + educational institutionتعلیمی ادارے + + seriemoordenaarκατά συρροήν δολοφόνοςSerienmörderسلسلہ وار قاتلtueur en sérieserial killer + + soccer clubفٹ بال تنظیم + + جامع درس گاہuniversity + + identificatorBezeichnerشناخت کنندہidentifiantidentifier + + lieutenantفوجی افسر + + monasteryخانقاہ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.خانقاہ عمارت، یا عمارتوں کے کمپلیکس کی نشاندہی کرتی ہے، جس میں خانقاہوں کے گھریلو کوارٹرز اور کام کی جگہیں شامل ہیں، چاہے وہ راہب ہوں یا راہبائیں، اور چاہے وہ برادری میں رہ رہے ہوں یا اکیلے (حرمت والے)۔ خانقاہ میں عام طور پر نماز کے لیے مخصوص جگہ شامل ہوتی ہے جو ایک چیپل، گرجا گھر یا مندر ہو سکتا ہے، اور ایک تقریر کے طور پر بھی کام کر سکتا ہے۔ + + synagogueیہودیوں کی عبادت گاہA synagogue, sometimes spelt synagog, is a Jewish or Samaritan house of prayer.یہودیوں کی عبادت گاہ، ایک یہودی یا سامری نماز کا گھر ہے۔ + + Olympisch evenementολυμπικακό γεγονόςolympische Veranstaltungاولمپک کھیلوں کی تقریبévénement olympiqueolympic event + + 음반artiest discografieδισκογραφία καλλιτέχνηディスコグラフィKünstler Diskografiedioscagrafaíocht an ealaíontóradiscografia dell'artistaفنکارکاریکارڈ نامہdiscogafía de artistaartist discography + + فائل سسٹمFile systemفائلوں میں درجہ بندی کا نظامFile classification system + + demografieδημογραφία人口動態DemografiedéimeagrafaicآبادیاتیdémographiedemographicsPopulation 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")کسی جگہ کی آبادی۔ ان خصوصیات کا استعمال کرتا ہے: آبادی کی کل، سال (جب ماپا جاتا ہے، آبادی کا سال)، درجہ (اس جگہ کا ترتیب اس کے بہن بھائیوں کے درمیان ایک ہی سطح پر)، نام (علاقہ آبادی کے لحاظ سے ماپا جاتا ہے، جیسے: "مقام"، "میونسپلٹی" یا "کمیٹیٹ" + + aartsbisschopErzbischofپادریوں کا سردارarchevêquearchbishop + + موٹر کھیل کا موسمmotorsport season + + modelنمائش کرنے والا + + Playwrightڈرامہ نگارA person who writes dramatic literature or drama.وہ شخص جو ڈرامائی ادب یا ڈرامہ لکھتا ہے۔ + + Formule 1-r‎aceφόρμουλα ένας αγώναςFormel-1 Rennenفارمولا ون ریسنگformula one racing + + sportevenementSportereignisevento esportivoکھیلوں کی تقریبévènement sportifsports eventa event of competitive physical activityمقابلتی جسمانی سرگرمی کا ایک واقعہ + + lingüistalinguïstlingwistaγλωσσολόγος言語学者Sprachwissenschaftlerteangeolaíماہر لسانیاتlinguistelinguist + + ستارguitarایک تار والا میوزیکل آلہ ، جس میں فنگر فنگر بورڈ ہوتا ہے ، عام طور پر کٹے ہوئے اطراف ، اور چھ یا بارہ تار ، انگلیوں یا پلیکٹرم سے توڑنے یا جھومنے سے بجائے جاتے ہیں۔Describes the guitar + + governmental administrative regionحکومتی انتظامی علاقہAn administrative body governing some territorial unity, in this case a governmental administrative bodyایک انتظامی ادارہ جو کچھ علاقائی وحدت کو کنٹرول کرتا ہے ، اس صورت میں ایک سرکاری انتظامی ادارہ ہے۔ + + beeldhouwerγλύπτης彫刻家Bildhauerdealbhóirمجسمہ سازsculpteursculptor + + RelationshipRelationОтношение + + lacrosse playerلیکروس کھلاڑی + + 교황pauspapieżπάπας教皇Papstpápaرومن کیتہولک پادریpapepope + + ملازمین کی تنظیمملازمین کی تنظیم تاجروں کی ایک تنظیم ہے جو مزدور تعلقات کے میدان میں اپنے اعمال کو مربوط کرنے کے لیے مل کر کام کرتی ہے۔ + + 화합물chemisch componentχημική ένωση化合物chemische Verbindungcomhdhúileachcomposto chimicocomposto químicoکیمیائی مرکبproduit chimiquechemical compound + + cerveza맥주ølbierpiwoμπύραビールBierbeoirbirraہلکی شرابbièrebeer + + stijlperiodeKunst Zeitstilفنکارانہ انداز کی مدتpériode de style artistiqueperiod of artistic style + + حیاتیاتی ریکارڈرز_پر_مبنی_ایک_فائلBiological database + + نمائندہagentایک ایجنٹ ایک ایسا ادارہ ہے جو کام کرتا ہے۔ اس کا مقصد شخص اور تنظیم کا فوق درجہ ہونا ہے۔Analogous to a foaf:Agent, an agent is an entity that acts. This is intended to be the super class of Person and Organisation. + + linguistماہر لسانیات + + overzees departementÜbersee-Departementبیرون ملک کے محکمےdépartement outre meroverseas department + + poetشاعر + + archipelagoجزیرہ نما + + Australian football teamποδοσφαιρική ομάδα αυστραλίαςオーストラリアンフットボールチームAustralian Football Teamsquadra di football australianoآسٹریلوی فٹ بال ٹیمÉquipe de Football Australienaustralian football Team + + فارمولا ون ریسنگformula one racing + + dijk堤防digaبندlevéedikeبند ایک لمبی قدرتی طور پر واقع رکاوٹ یا مصنوعی طور پر تعمیر شدہ ذخیرہ یا دیوار ہے ، جو پانی کی سطح کو کنٹرول کرتی ہے۔A dike is an elongated naturally occurring ridge or artificially constructed fill or wall, which regulates water levels + + IntercommunalityInterkommunalitätintercommunalitéفرقہ واریت + + Star сlusterستارہ غولЗвездное скопление + + adelijk geslachtAdelsfamilieشریف خاندانFamille nobleNoble familyFamily deemed to be of noble descentFamille réputée d'ascendance nobleخاندان کو شریف النسل سمجھا جاتا ہے۔ + + 세계유산werelderfgoedΜνημείο Παγκόσμιας Πολιτιστικής Κληρονομιάς (Πληροφορίες ΠΠΚ)世界遺産WeltkulturerbeLáithreán Oidhreachta Domhandaعالمی ثقافتی ورثہsite du patrimoine mondialWorld Heritage SiteA 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.یونیسکو کی عالمی ثقافتی ورثہ سائٹ ایک ایسی جگہ ہے (جیسے جنگل، پہاڑ، جھیل، صحرا، یادگار، عمارت، کمپلیکس، یا شہر) جو اس فہرست میں شامل ہے جسے یونیسکو کی عالمی ثقافتی ورثہ کمیٹی کے زیر انتظام بین الاقوامی عالمی ثقافتی ورثہ پروگرام کے ذریعے برقرار رکھا جاتا ہے۔ 21 ریاستی پارٹیوں پر مشتمل ہے جنہیں ان کی جنرل اسمبلی چار سال کی مدت کے لیے منتخب کرتی ہے۔ عالمی ثقافتی ورثہ کی جگہ ثقافتی یا جسمانی اہمیت کی حامل جگہ ہے + + historieta만화stripverhaalκινούμενα σχέδια漫画Comicgreannánfumettoمزاحیہbande dessinéecomic + + career stationپیشہ تعینات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یہ کلاس کسی شخص کی زندگی میں کیریئر کا مرحلہ ہے ، جیسے ایک فٹ بال کھلاڑی ، جس نے کسی مخصوص کلب میں حاصل کردہ ٹائم اسپین ، میچز اور اہداف کے بارے میں معلومات رکھتے ہیں۔ + + ski jumperSkispringerskispringerہوا میں چھلانگ لگانے والا + + کَشید گاہbrewery + + چکیMillایک یونٹ آپریشن جو ٹھوس مواد کو چھوٹے ٹکڑوں میں توڑنے کے لیے ڈیزائن کیا گیا ہے۔a unit operation designed to break a solid material into smaller pieces + + arrondissementフランスの群arrondissementفرانس کا انتظامی ضلعarrondissementarrondissementAn administrative (France) or lawcourts (Netherlands) body governing a territorial unity on the intermediate level, between local and national levelایک انتظامی (فرانس) یا قانون کی عدالتیں (نیدرلینڈز) جو کہ علاقائی وحدت پر مقامی اور قومی سطح کے درمیان حکمرانی کرتی ہیںDas Wort Arrondissement dient zur Bezeichnung verschiedener Verwaltungsbezirke in Frankreich, Belgien, Kanada und anderen Ländern + + statisticشماریات + + liga de fútbol americano미식 축구 대회Amerikaanse voetbal competitieaμερικανικό πρωτάθλημα ποδοσφαίρουアメリカン・フットボール・リーグAmerican-Football-Ligalega di football americanoliga de futebol americanoامریکن فٹ بال لیگliga de fútbol americanoamerican football leagueamerican football leagueA group of sports teams that compete against each other in american football.کھیلوں کی ٹیموں کا ایک گروپ جو امریکی فٹ بال میں ایک دوسرے کے خلاف مقابلہ کرتے ہیں۔.Ένα σύνολο αθλητικών ομάδων που ανταγωνίζονται μεταξύ τους στο αμερικάνικο ποδόσφαιρο.A National Football League (en galego: Liga Nacional de Fútbol Americano), mellor coñecida polas súas siglas en inglés, NFL, é a maior liga de fútbol americano profesional dos Estados Unidos e está considerada como a máis grande e prestixiosa propiedade deportiva nese país.&lt;ref&gt;https://gl.wikipedia.org/wiki/National_Football_League&lt;/ref&gt; + + sportteamομαδικά αθλήματαスポーツチームSportmannschaftکھیل کی جماعتéquipe sportivesports team + + liga de fútbol australiana오스트레일리안 풋볼 리그australian football competitieαυστραλιανό πρωτάθλημα ποδοσφαίρουオーストラリアン・フットボール・リーグAustralian Football Leaguelega di football australianoliga de futebol australianoآسٹریلوی فٹ بال کی انجمنaustralian football leagueaustralian football leagueA group of sports teams that compete against each other in australian football.کھیلوں کی ٹیموں کا ایک گروپ جو آسٹریلین فٹ بال میں ایک دوسرے کے خلاف مقابلہ کرتا ہےΜια ομάδα αθλητικών ομάδων που ανταγωνίζονται μεταξύ τους σε αυστραλιανό ποδόσφαιρο. + + protected areaمحفوظ علاقہThis class should be used for protected nature. For enclosed neighbourhoods there is now class GatedCommunityیہ طبقہ 'محفوظ' حیثیت والے علاقوں کو ظاہر کرتا ہے + + 브로드캐스트 네트워크omroeporganisatiesieć emisyjnaδίκτυο ραδιοφωνικής μετάδοσηςネットワーク_(放送)Sendergruppelíonra craolacháinemittenteنشریاتی جالchaîne de télévision généralistebroadcast networkA 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)نشریاتی جال ایک تنظیم ہے ، جیسے کارپوریشن یا دیگر ایسوسی ایشن ، جو ریڈیو یا ٹیلی ویژن اسٹیشنوں کے گروپ پر نشر کرنے کے لیے لائیو یا ریکارڈ شدہ مواد ، جیسے فلمیں ، نیوز کاسٹ ، کھیل اور عوامی امور کے پروگرام مہیا کرتی ہے۔Ένα δίκτυο μετάδοσης είναι μια οργάνωση, όπως μια εταιρεία ή άλλη ένωση, που παρέχει ζωντανό ή μαγνητοσκοπημένο περιεχόμενο, όπως ταινίες, δελτία ειδήσεων, αθλητικά, και τα προγράμματα δημοσίων υποθέσεων για την εκπομπή πάνω από μια ομάδα ραδιοφωνικών ή τηλεοπτικών σταθμών + + Premio NobelNobelprijsΒραβείο Νόμπελノーベル賞NobelpreisDuais NobelPremio Nobelاعلی انعامPrix NobelNobel Prize + + کائیmoss + + بس كا تِجارتی اِدارہbus company + + hockeyploegHokejska ekipaομάδα χόκεϊHockeymannschaftہاکی کھیل کی جماعتéquipe de hockeyhockey team + + 연쇄 살인자moordenaarδολοφόνος殺人Mörderdúnmharfóirassasinoقاتلassassinmurderer + + deaneryعمید کا عہدہگرجا گھر کا حلقہ اور بشپ کے دائرہ اختیار کا حلقہ کے مابین علمی انتظامی ادارے کی انٹرمیڈیٹ سطح۔ + + condecoración장식onderscheidingδιακόσμηση勲章Auszeichnungonorificenzaسجاوٹdécorationdecorationایک شے ، جیسے تمغہ یا آرڈر ، جو وصول کنندہ کو عزت سے نوازنے کے لیے دیا جاتا ہے۔An object, such as a medal or an order, that is awarded to honor the recipient ostentatiously.Per onorificenza si intende un segno di onore che viene concesso da un'autorità in riconoscimento di particolari atti benemeriti.Une distinction honorifique en reconnaissance d'un service civil ou militaire . + + worstelevenementαγώνας πάληςWrestling-Veranstaltungکشتی کی تقریبmatch de catchwrestling event + + municipiogemeenteδήμος基礎自治体GemeindeبلدیہcommunemunicipalityAn administrative body governing a territorial unity on the lower level, administering one or a few more settlementsایک انتظامی ادارہ جو نچلی سطح پر علاقائی اتحاد کو کنٹرول کرتا ہے، ایک یا چند مزید بستیوں کا انتظام کرتا ہےΔήμος ονομάζεται μία οντότητα της δημόσιας διοίκησης, η οποία στα περισσότερα κράτη αποτελεί τη βασική αυτοδιοικητική μονάδα και κατά κανόνα περιλαμβάνει μια πόλη ή κωμόπολη και τα γύρω χωριά της.Un Municipio es el ente local definido en el artículo 140 de la Constitución española y la entidad básica de la organización territorial del Estado según el artículo 1 de la Ley 7/1985, de 2 de abril, Reguladora de las Bases del Régimen Local. Tiene personalidad jurídica y plena capacidad para el cumplimiento de sus fines. La delimitación territorial de Municipio está recogida del REgistro Central de Cartografía del IGN + + artist discographyفنکارکاریکارڈ نامہ + + 다리broসেতুbrugmostγέφυραBrückedroicheadponteponteپلpontbridgeA 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).ایک پل ایک ایسا ڈھانچہ ہے جو جسمانی رکاوٹوں جیسے پانی ، وادی یا سڑک کی راہ میں رکاوٹ کو عبور کرنے کے مقصد سے بنایا گیا ہے + + districtπεριοχή地区Bezirkceantarkecamatanضلعarrondissementdistrictbagian wilayah administratif dibawah kabupatenضلع کے تحت انتظامی علاقے کا حصہ + + bergΒουνόBergsliabhmontanhaپہاڑmontagnemountain + + achtbaanτρενάκι σε λούνα παρκAchterbahnrollchóstóirmontagne russeroller coaster + + cykelløbwielerwedstrijdαγώνας ποδηλασίαςRadrennencorsa ciclisticaسائیکلنگ دوڑcourse cyclistecycling race + + lijst van nummersλίστα κομματιώνTitellisteموسیقی کے ریکارڈوں کی فہرستliste de pistestrack listA list of music tracks, like on a CDمیوزک ٹریکس کی فہرست، جیسے سی ڈی پرUne liste de pistes audio comme sur un CDEen lijst van nummers als op een CD album + + programming languageپروگرامنگ زبانایسی زبانیں جو کمپیوٹر کو ہدایات دینے میں معاون ہیں + + canadian football leagueکینیڈین فٹ بال لیگA group of sports teams that compete against each other in canadian football league.کھیلوں کی ٹیموں کا ایک گروپ جو کینیڈین فٹ بال لیگ میں ایک دوسرے کے خلاف مقابلہ کرتے ہیں۔. + + archivoArchiefarchiwumαρχείοアーカイブArchivمحفوظ شدہ دستاویزاتarchiveArchiveVerzameling van documenten rondom een persoon of organisatie.Η συλλογή των εγγράφων που σχετίζονται με ένα πρόσωπο ή οργανισμό.کسی شخص یا تنظیم سے متعلق دستاویزات کا مجموعCollection de documents appartenant à une personne ou une organisation.Collection of documents pertaining to a person or organisation. + + låssluisκλειδαριάSchleuseglasتالاécluselock + + 동굴grotσπηλιά洞窟Höhlepluaisgrottacavernaغارgrottecave + + cartoonکارٹون + + یک خلوی یا چند خلوی مادہ + + håndboldholdhandbal teamομάδα χειροσφαίρισηςHandballmannschaftfoireann liathróid láimhesquadra di pallamanoہینڈ بال جماعتéquipe de handballhandball team + + زلزلہیہ زمین کی پرت میں اچانک توانائی کے اخراج کا نتیجہ ہے جو زلزلے کی لہروں کو پیدا کرتا ہے + + Conceptتصور + + 과학자বিজ্ঞানীwetenschapperΕπιστήμονας科学者Wissenschaftlereolaíسائنسدانscientifiquescientist + + historic placeتاریخی مقام + + سپریڈ شیٹمرتب و شمار یا معلومات کو کام میں لانےوالاایک کمپیوٹر پروگرام + + languageزبان + + komiekχιουμορίστας喜劇作家または喜劇俳優Humoristظریفhumoristehumorist + + 웹사이트websiteΙστότοποςウェブサイトWebseitesuíomh idirlínویب صفحات کا مجموعہsitio website webwebsite + + مسدود برادریGated community + + lymfeλέμφοςリンパLymphelimfeسفید رنگ کے خلیوں پر مشتمل ایک بے رنگ سیالlymphelymph + + روشِ لباسfashionوقت یا انفرادی خاکے کے معیار کے مطابق لباس کی قسمtype or code of dressing, according to the standards of the time or individual design. + + celestial bodyجرم فلکی + + خریداری کرنے کے لیے مختص جگہshopping mall + + tv-regisseurTVディレクターTV-Regisseurٹی وی کا ہدایت کارréalisateur de télévisionTelevision directora person who directs the activities involved in making a television program.ایک شخص جو ٹیلی ویژن پروگرام بنانے میں شامل سرگرمیوں کی ہدایت کرتا ہے + + proyecto de investigaciónonderzoeksprojectερευνητικό έργοForschungsprojekttionscadal taighdeprojet de rechercheresearch projectA research project is a scientific investigation, usually using scientific methods, to achieve defined objectives.Ένα ερευνητικό έργο είναι μια επιστημονική έρευνα, συνήθως με τη χρήση επιστημονικών μεθόδων, για την επίτευξη των καθορισμένων στόχων. + + ماہر معاشیاتایک ماہر معاشیات معاشیات کے سماجی سائنس کے شعبے میں پیشہ ور ہوتا ہے + + عورتwoman + + جسمانی ساختanatomical structure + + streekτόπος地域Gegendceantarمحلہlocalitélocality + + animal동물zvieradyrdierživalζώο動物Tierainmhíanimaleanimalجانورanimalanimalanimal + + 진료과medisch specialismeιατρική ειδικότητα診療科طبی خصوصیتspecializzazione medicaspécialité médicalemedical specialty + + clerical administrative regionعلمی انتظامی علاقہAn administrative body governing some territorial unity, in this case a clerical administrative bodyایک علمی انتظامی معاملات میں ایک انتظامی ادارہ جو کچھ علاقائی وحدت کو کنٹرول کرتا ہے + + continente대륙continentήπειρος大陸Kontinentilchríochcontinenteبراعظمcontinentcontinentبراعظم زمین کا ایک بڑا علاقہ ہے جو زمین کی پرت سے نکلا ہے ، درحقیقت یہ ان سب سے بڑی تقسیم ہے جس کے ساتھ ابھرتی ہوئی زمینیں تقسیم کی گئی ہیں۔Un continente è una grande area di terra emersa della crosta terrestre, è anzi la più vasta delle ripartizioni con le quali si suddividono le terre emerse.Un continente es una gran área de tierra emergida de la costra terrestre. + + zangerΤραγουδιστής歌手SängeramhránaíگلوکارchanteurSingera person who sings.Tout chanteur(euse) (incluant soliste et choriste, interprète, chanteur-instrumentaliste, etc). Tout artiste solo qui compose et/ou fait partie d'un groupe.ένα άτομο που τραγουδά.ایک شخص جو گاتا ہے + + حرکت پذیر پیدل چلنے کا راستہtravellator + + honkbalseizoenσεζόν του μπέιζμπολBaseballsaisonséasúr daorchluicheبیس بال کا موسمsaison de baseballbaseball season + + بصری کھیلوں کی انجمنvideogames leagueکھیلوں کی ٹیموں کا ایک گروپ یا شخص جو بصری کھیلوں میں ایک دوسرے سے مقابلہ کرتا ہےA group of sports teams or person that compete against each other in videogames. + + کھیل کی سہولتsport facility + + سائنسدانscientist + + Politimandضابط شرطةपुलिस अधिकारीپولیس افسرPolizia ofizialaOfficier de policePolice Officer + + حیاتیاتی ریکارڈرز_پر_مبنی_ایک_فائلمختلف ڈیٹا بیس جس میں وہ معلومات ہوتی ہیں جو حیاتیات کی بنیادی حیاتیاتی خصوصیات کی نشاندہی کرتی ہیں۔ یہ معلومات حیاتیات کے بنیادی سیل ڈھانچے ، جیسے جینومکس اور پروٹومکس لائبریریوں کی لائبریریوں میں محفوظ ہے۔ + + cricketteamομάδα κρίκετクリケットチームCricketmannschaftfoireann cuircéidsquadra di cricketکرکٹ جماعتéquipe de cricketcricket team + + lid van een verzetsorganisatieMitglied einer Widerstandorganisationمزاحمتی تحریک کے رکنMembre d'une organisation de résistanceMember of a Resistance Movement + + legervliegtuigMilitärmaschineفوجی ہوائی جہازavion militairemilitary aircraft + + arenaarèneمیدان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)Une aréna désigne une enceinte pouvant accueillir des spectacles, des concerts ou des événements sportifs.(https://fr.wikipedia.org/wiki/Arena) + + Member of a Resistance Movementمزاحمتی تحریک کے رکن + + voetbalseizoenπερίοδος κυπέλλου ποδοσφαίρουFußball-Liga Saisonانجمن فٹ بال موسمfutbol ligi sezonusoccer league season + + criminal범죄인crimineelεγκληματίας犯罪Verbrechercoirpeachdelinquentecriminosoمجرمcriminelcriminal + + جنینیات کا علم + + گاڑیautomobile + + Disneyfiguurχαρακτήρες της ντίσνευDisneyfigurcarachtar Disneyڈزنی کے کردارpersonnage de Disneydisney characterامریکی فلم اور اینی میٹیڈ فلمیں بنانے والی کمپنی کے بنائے ہوے کارٹون کردار + + گیلک_کھیل_کا_کھلاڑیGaelic games player + + ٹٹولنے والاBrowser + + cheeseپنیرA milk product prepared for human consumptionایک دودھ کی مصنوعات جو انسانی استعمال کے لیے تیار کی جاتی ہے۔ + + حاکم + + chemical compoundکیمیائی مرکب + + 성씨achternaamnazwiskoεπώνυμοNachnamesloinneعرفیتnom de famillesurnameخاندانی نام + + organعضواعضاء کی تمام اقسام اور سائز + + کھلی بھیڑOpen Swarm + + ПротоколProtokollرابطے کا ضابطہProtocoleProtocol + + mamíferopattedyrzoogdierssakθηλαστικό ζώο哺乳類säugetiermamachmammiferomamíferoتھن والے جانورmammifèremammal + + flag + + geneeskunde医学MedizinدوائیmédecineMedicineThe science and art of healing the human body and identifying the causes of diseaseانسانی جسم کو ٹھیک کرنے اور بیماری کی وجوہات کی نشاندہی کرنے کا سائنس اور فن + + طیارہ اڑانے والا + + elección선거verkiezingεκλογή選挙WahltoghchánelezioneانتخاباتélectionElection + + mobiele telefoonсотовый телефонtelefon komórkowyMobiltelefon (Handy)telefono cellulareсотавы тэлефонموبائل فونtéléphone mobilemobile phone + + kraterκρατήραςクレーターKratercráitéarcraterecrateraدہانهcratèrecrater + + cinema (movie theater)سنیماA building for viewing films.فلم دیکھنے کے لیے ایک عمارت۔. + + liga de boxeo권투 리그box competitieπρωτάθλημα πυγμαχίαςボクシングリーグBox-Ligasraith dornálaíochtalega di pugilatoمکے بازی کھیل کی انجمنligue de boxeboxing leagueA group of sports teams or fighters that compete against each other in Boxingکھیلوں کی ٹیموں یا جنگجوؤں کا ایک گروپ جو مکے بازی میں ایک دوسرے کے خلاف مقابلہ کرتے ہیں۔Μία διοργάνωση στην οποία μεμονωμένοι πυγμάχοι είτε ομάδες πυγμάχων συναγωνίζονται μεταξύ τους με σκοπό την νίκη. + + coniferصنوبر کی قِسم کا پوداعروقی (نالی دار)پودے ہیں ، بیج ایک شنک میں موجود ہوتے ہیں۔ وہ لکڑی کے پودے ہیں۔ + + محصولtax + + district water boardwaterschapBezirkwasserwirtschaftsamtپانی کا ضلعی اقتدارتحفظ ،سطحی پانی کے انتظام کے لیے وقف سرکاری ایجنسیConservancy, governmental agency dedicated to surface water management + + radio-controlled racing leagueRC-Renn Ligaligue de courses radio-télécommandéradio bestuurbare race competitieA group of sports teams or person that compete against each other in radio-controlled racing. + + horse trainerگھوڑا سدھانے والا + + FaraoفراعنہफिरौनFaraoiapharaonPharaohقدیم بادشاہوں کا ایک لقب + + Site of Special Scientific Interestخصوصی سائنسی دلچسپی کی سائٹخصوصی سائنسی دلچسپی کی سائٹ (SSSI) ایک تحفظ کا عہدہ ہے جو برطانیہ میں ایک محفوظ علاقے کی نشاندہی کرتا ہے۔ SSSIs سائٹ پر مبنی فطرت کے تحفظ سے متعلق قانون سازی کا بنیادی تعمیراتی حصہ ہیں اور برطانیہ میں بیشتر دیگر قانونی نوعیت/ارضیاتی تحفظ کے عہدہ ان پر مبنی ہیں، بشمول نیشنل نیچر ریزرو، رامسر سائٹس، خصوصی تحفظ کے علاقے، اور تحفظ کے خصوصی علاقے + + ماہر مصریات + + نقاشیPainting + + کیڑاinsect + + trainریل گاڑی + + canadian football Teamکینیڈین فٹ بال جماعت + + psychologistماہر نفسیات + + pretenderالزاعمदावेदारدکھاوا کرنے والاitxurakeriaprétendantePretender + + hongosschimmelμύκητας菌類Pilzfungasfungiپھُپھُوندی + + کسی شخص (جاگیردار) یا سرکاری ادارے کے دائرہ اختیار کا قدیم علاقہancient area of jurisdiction of a person (feudal) or of a governmental bodyزیادہ تر اختیارات کی جاگیردارانہ شکلوں کے لیے ، لیکن مرکزی اختیار کی تاریخی شکلوں کے لیے بھی کام کر سکتا ہےMostly for feudal forms of authority, but can also serve for historical forms of centralised authority + + voormalig landhistorischer Landtír stairiúilتاریخی ملکancien paysHistorical countryایک ایسی جگہ جو ایک ملک ہوا کرتی تھی۔ + + avión비행기flyavionvliegtuigsamolotαεροσκάφος航空機Flugzeugaerárthachaereo飛機ہوائی جہازaviónavionaircraft + + listelijstλίστα一覧ListeliostaفہرستlistelistEen geordende verzameling objecten.Μια γενική λίστα από αντικείμενα.اشیاء کی عمومی فہرستune liste d'éléments.A general list of items. + + Producerمبدہa person who manages movies or music recordings.وہ شخص جو فلموں یا میوزک کی ریکارڈنگ کا انتظام کرتا ہے۔ + + staatπολιτείαStaatریاستétatstate + + personage (fictie)πλασματικός χαρακτήραςキャラクターfiktiver Charaktercarachtar ficseanúilخیالی کردارpersonnage de fictionfictional character + + protohistorical periodقدیم تاریخی زمانہانسانوں کےمطالعہ تحریر کی ایجاد سے پہلےکی مدت + + blazoen (wapenschild)οικόσημο紋章記述WappenبلیزنBlasonBlazon + + Police Officerپولیس افسر + + mossenβρύο蘚類Laubmosscaonachmuschioکائیmoussesmoss + + mosqueمسجدA mosque, sometimes spelt mosk, is a place of worship for followers of Islam.ایک مسجد اسلام کے پیروکاروں کے لیے عبادت گاہ ہے۔ + + tennis competitieΟμοσπονδία ΑντισφαίρισηςテニスリーグTennisligasraith leadóigeٹینس کی انجمنligue de tennistennis leagueA group of sports teams or person that compete against each other in tennis.کھیلوں کی ٹیموں کا ایک گروپ یا شخص جو ٹینس میں ایک دوسرے کے خلاف مقابلہ کرتے ہیں + + 생체 분자Biomolecuulβιομόριο生体物質Biomolekülbiomolecolaحیاتیاتی مرکباتbiomoléculeBiomoleculeequivalent to http://ccdb.ucsd.edu/NIF/BIRNLex-OBO-UBO.owl#birnlex_22.Een molecuul wat van nature voorkomt in een organisme en gevormd kan worden door organismen.Κάθε μόριο που παράγεται σε έναν ζωντανό οργανισμό. Συνήθως μεγαλομοριακές ενώσεις που χρησιμεύουν στην δομή και στο μεταβολισμό του κυττάρου. Πρωτεΐνες, νουκλεϊνικά οξέα, υδατάνθρακες και λιπίδια.ایسے پیچدہ نامیاتی مالیکیولز جو زندگی کی بنیاد ہیں یعنی وہ زندہ اجسام کو تعمیر کرنے ، ان کو نشوونما کرنے اور برقرار رکھنے کے لیے ضروری ہوتے ہیں + + طبیبmedician + + sports managerکھیلوں کا منتظم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.فرانسیسی لیبل سب ساکر کے مطابق، ٹرینر شپ کا مطلب ہو سکتا ہے۔ تاہم، یہاں ایک اسپورٹس مینیجر کو اسپورٹنگ کلب کے بورڈ کے رکن سے تعبیر کیا جاتا ہے۔ + + archaeaآثار قدیمہ + + estaciónstationстанцияΣταθμόςBahnhofstáisiúnestaçãoاڈاgarestationPublic transport station (eg. railway station, metro station, bus station).پبلک ٹرانسپورٹ اسٹیشن (مثلاً ریلوے اسٹیشن، میٹرو اسٹیشن، بس اسٹیشن)Остановка общественного транспорта (например: железнодорожная станция, станция метро, автостанция). + + rivierποτάμιFlussabhainnriorivièrerivera large natural stream + + lockتالا + + AlgoritmeАлгоритмAlgorithmusحساب و شمارAlgorithmeAlgorithmایک عین قاعدہ (یا قواعد کا مجموعہ) جس میں وضاحت کی جاتی ہے کہ کسی مسئلے کو کیسے حل کیا جائے + + ٹی وی کا ہدایت کارTelevision directorایک شخص جو ٹیلی ویژن پروگرام بنانے میں شامل سرگرمیوں کی ہدایت کرتا ہےa person who directs the activities involved in making a television program. + + organización조직organisationorganisatieorganizacijaОрганизацияοργάνωση組織Organisationorganizaçãoتنظیمorganisationorganisation + + articleجریدے کا نشر پارہ + + billedeafbeelding画像BildíomháتصویرimageimageA document that contains a visual imageایک دستاویز جس میں بصری عکس ہو۔ + + 만화애니 등장인물stripfiguur (Amerikaans)χαρακτήρας κινούμενων σχεδίωνコミックスのキャラクターComic Charakterpersonagem de quadrinhosمُضحِکہ خیزکردارpersonnage de bandes dessinéescomics character + + athletics playerپھُرتیلاکھلاڑی + + senatorسینیٹ کا رُکن + + آبادیاتیکسی جگہ کی آبادی۔ ان خصوصیات کا استعمال کرتا ہے: آبادی کی کل، سال (جب ماپا جاتا ہے، آبادی کا سال)، درجہ (اس جگہ کا ترتیب اس کے بہن بھائیوں کے درمیان ایک ہی سطح پر)، نام (علاقہ آبادی کے لحاظ سے ماپا جاتا ہے، جیسے: "مقام"، "میونسپلٹی" یا "کمیٹیٹ" + + فگر سکیٹر + + مجلس قانون سازparliament + + tempelναόςtempelteampalltempioمندرtempletemple + + handball leagueہینڈ بال کی انجمنa group of sports teams that compete against each other in Handballکھیلوں کی ٹیموں کا ایک گروپ جو ہینڈ بال میں ایک دوسرے کے خلاف مقابلہ کرتا ہے۔ + + ملاقاتmeetingریکارڈ رکھنے کے لیے ایک تقریب کے طور پر لوگوں کی باقاعدہ یا بے قاعدہ ملاقاتA regular or irregular meeting of people as an event to keep record of + + queso치즈ostkaasτυρίチーズKäsecáisformaggioپنیرfromagecheeseA milk product prepared for human consumptionایک دودھ کی مصنوعات جو انسانی استعمال کے لیے تیار کی جاتی ہے۔Producto lácteo preparado para el consumo humano + + paardrijderιππέαςReitermarcachگھڑ سوارcavalierhorse rider + + lugarstedllocplaatsمكانmiejsceπεριοχή立地Ortáitlugarجگہlekualieuplaceغیر متحرک چیزیں یا مقامات۔uma localização + + rest areaaire de reposrustplaatsRasthofA rest area is part of a Road, meant to stop and rest. More often than not, there is a filling stationUne aire de repos fait partie d'une route, destinée à s'arrêter et à se reposer. Le plus souvent, il y a une station-service + + Comedy Groupمزاحیہ گروہ + + Sports team memberکھیلوں کی جماعت کا رکنA member of an athletic team.ایتھلیٹک ٹیم کا رکن + + 발생학embryologieεμβρυολογία発生学Embryologiesutheolaíochtجنینیات کا علمembryologieembryology + + ناشَرbroadcasterبراڈکاسٹر ایک ایسی تنظیم ہے جو ریڈیو یا ٹیلی ویژن پروگراموں کی پیداوار اور/یا ان کی ترسیل کے لیے ذمہ دار ہے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) + + airlineہوائی راستہہوائی جہازوں کے ذریعے سواریاں لے جانے والی تنظیم + + Onbekendάγνωστος無知unbekanntanaithnidنامعلومInconnuBilinmeyenUnknown + + editor출판사uitgeverεκδότης出版社HerausgeberfoilsitheoirناشرéditeurpublisherPublishing companyشائع کرنے والے اشاعتی ادارہ + + cross-country skierlanglauferSkilangläuferکراس کنٹری اسکیئر + + planetسیارہ + + storm surgeطوفانی لہرSturmflutstormvloedEen stormvloed is de grootschalige overstroming van een kustgebied onder invloed van de op elkaar inwerkende krachten van wind, getij en water64-72 ناٹس (بیفورٹ اسکیل پر 11) اور بارش اور گرج چمک کے ساتھ ایک پرتشدد موسمی صورتحال + + پھولوں کا پوداflowering plant + + Akademisk personشخص أكاديميअकादमिक व्यक्तिتعلیمیPertsona AkademikoaPersonne académiqueAcademic Person + + meerdelige publicatiemehrbändige Publikationکثیر حجم کی اشاعتpublication en plusieurs volumesmulti volume publication + + toneelschrijverDramatikerdrámadóirڈرامہ نگارDramaturgePlaywrightA person who writes dramatic literature or drama.وہ شخص جو ڈرامائی ادب یا ڈرامہ لکھتا ہے۔ + + انتخابات کا خاکہ + + Historical provinceتاریخی صوبہA place which used to be a province.یک ایسی جگہ جو ایک صوبہ ہوا کرتی تھی۔ + + route of transportationTransportwegVía de transporteنقل و حمل کا راستہ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).نقل و حمل کا ایک راستہ (مکمل راستہ) ایک عام سڑک ، شاہراہ ، راستہ یا راستے پر پانی سے ایک جگہ سے دوسری جگہ پر جانے کا حوالہ دے سکتا ہےUnter Transportwegen (Verkehrswegen) versteht man Verkehrswege, auf denen Güter oder Personen transportiert werden. Dabei unterscheidet man zwischen Transportwegen zu Luft, zu Wasser und zu Lande, die dann für die unterschiedliche Verkehrsarten genutzt werden (http://de.wikipedia.org/wiki/Transportweg). + + دفتر کی مدتterm of office + + Pretenderدکھاوا کرنے والا + + sport seizoenπερίοδος αθλητικής ομάδαςSport Team Saisonکھیلوں کی جماعت کا موسمsports team seasonA season for a particular sports team (as opposed to the season for the entire league that the team is in)μία περίοδος για μία αθλητική ομάδαایک خاص سپورٹس ٹیم کے لیے ایک موسم(جیسا کہ پوری لیگ کے موسم کے برعکس جس میں ٹیم ہے۔ + + formule 1-teamομάδα φόρμουλα 1Formel-1 Teamscuderia formula 1فارمولا ون ٹیمformula 1 team + + وقت کی مدتtime period + + رواں زینہبجلی سے چلنے والی سیڑھی + + گالف کی انجمنgolf leagueگالف پلیئر جو گالف میں ایک دوسرے کے خلاف مقابلہ کرتے ہیں۔Golfplayer that compete against each other in Golf + + بھورا بوناbrown dwarf + + asteroidکشودرگرہ + + on-site mean of transportationVorortbeförderungsmittelstationair vervoermiddelکِسی موقع مقام پر نقل و حمل + + CVΒιογραφικό σημείωμα職務経歴書Lebenslaufcurriculum vitaeResumeA Resume describes a persons work experience and skill set.Un curriculum vitae (CV) résume l'expérience d'une personne dans le travail ainsi que ses compétences.Een CV (curriculum vitae) beschrijft iemands werkervaring en vaardigheden. + + kunstmatige satellietτεχνητός δορυφόρος人工衛星künstlicher Satellitsatailít shaorgaمصنوعی سیارہsatellite artificielArtificialSatelliteΣτο πλαίσιο των διαστημικών πτήσεων, ένας τεχνητός δορυφόρος είναι ένα τεχνητό αντικείμενο το οποίο εκ προθέσεως έχει τοποθετηθεί σε τροχιά.Satellit (Raumfahrt), ein künstlicher Raumflugkörper, der einen Himmelskörper auf einer festen Umlaufbahn umrundetخلائی پرواز کے تناظر میں ، مصنوعی سیارہ ایک مصنوعی شے ہے جسے جان بوجھ کر مدار میں رکھا گیا ہےUn satellite artificiel est un objet placé intentionellement en orbite.In the context of spaceflight, an artificial satellite is an artificial object which has been intentionally placed into orbit. + + alga verdegroenwierenπράσινο φύκος緑藻Grünalgeسبز طحالبalgue vertegreen alga + + skioordθέρετρο σκιSkigebietbaile sciálaپھسلن کھیل کا میدانstation de skiski resortΤο θέρετρο σκι χρησιμοποιείται για να περιγράψει έναν τόπο διακοπών με τις απαραίτητες εγκαταστάσεις διαμονής και εξάσκησης του χειμερινού αθλήματος της χιονοδρομίαςپھسلن کھیل میدان کا استعمال چھٹیوں کے مقام کو بیان کرنے کے لیے کیا جاتا ہے جس میں قیام اور اسکیئنگ کے موسم سرما کے کھیل کی مشق کے لیے ضروری سہولیات موجود ہیں + + کہکشاںgalaxy + + génerogenreύφοςジャンルGenreseánraصنفgenregenre + + 화학 물질chemische substantieχημική ουσία化学物質chemische Substanzceimiceánsostanza chimicasubstância químicaکیمیائی مادہsubstance chimiquechemical substance + + عوامی راہداری کا نظامpublic transit systemعوامی راہداری کا نظام ایک مشترکہ عوامی نقل و حمل کی سروس ہے جو عام لوگوں کے استعمال کے لیے دستیاب ہے۔عوامی نقل و حمل کے طریقوں میں بسیں ، ٹرالی بسیں ، ٹرام اور ٹرینیں ، 'تیز رفتارراہداری' (میٹرو/زمین دوز برقی ریل/زیر زمین وغیرہ) اور فیری شامل ہیں۔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). + + والی بال کی انجمنvolleyball leagueکھیلوں کی ٹیموں کا ایک گروپ جو والی بال میں ایک دوسرے سے مقابلہ کرتے ہیںA group of sports teams that compete against each other in volleyball. + + atletismoatletiekαθλητικά陸上競技Leichtathletiklúthchleasaíochtکھیل کے متعلقathlétismeathletics + + برفانی ہاکی کی انجمنice hockey leagueکھیلوں کی ٹیموں کا ایک گروپ جو برفانی ہاکی میں ایک دوسرے سے مقابلہ کرتا ہےa group of sports teams that compete against each other in Ice Hockey. + + بین الاقوامی تنظیمinternational organisationایک بین الاقوامی تنظیم یا تو ایک نجی یا عوامی تنظیم ہے جو ملک کی سرحدوں سے اہداف حاصل کرنے کی کوشش کرتی ہے۔An international organisation is either a private or a public organisation seeking to accomplish goals across country borders + + gedenktekenμνημείο記念碑DenkmalیادگارmémorialmemorialA monument erected to commemorate a person, an event and/or group. In the case of a person, this might be a grave or tomb.ایک قسم کا ڈھانچہ (ایک مجسمہ یا آرٹ آبجیکٹ) کسی شخص یا اہم واقعہ کی یاد میں بنایا گیا ، ضروری نہیں کہ تباہ کن نوعیت کا ہو + + placeجگہغیر متحرک چیزیں یا مقامات۔ + + فوجی گاڑیmilitary vehicle + + 야구 선수honkballerπαίκτης μπέιζμπολ野球選手Baseballspielerimreoir daorchluichegiocatore di baseballjogador de basebolبیس بال کا کھلاڑیjoueur de baseballbaseball playerΟ αθλητής (άνδρας ή γυναίκα) που συμμετέχει σε μία ομάδα μπέιζμπολ. + + national soccer clubقومی فٹ بال تنظیم + + گروہgroupلوگوں کا ایک غیر رسمی گروہAn (informal) group of people. + + آبادی والی جگہpopulated placeجیسا کہ امریکہ نے بیان کیا ہے۔ ارضیاتی سروے ، ایک آبادی والی جگہ وہ جگہ یا علاقہ ہے جہاں گروہ یا بکھرے ہوئے عمارتیں اور مستقل انسانی آبادی (شہر ، بستی ، قصبہ یا گاؤں) ہو۔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). + + competitionمقابلہ + + medicusγιατρός生命医科学研究者または医師Medizinermedicoطبیبmedician + + ڈزنی کے کردارامریکی فلم اور اینی میٹیڈ فلمیں بنانے والی کمپنی کے بنائے ہوے کارٹون کردار + + wegtunnelΟδική σήραγγαStraßentunneltollán bóthairtunnel routierroad tunnel + + natuurlijke regioφυσική περιοχήNaturraumقدرتی علاقہrégion naturellenatural regionH φυσική περιοχή χρησιμοποιείται για να περιγράψει την έκταση μιας γεωγραφικής περιοχής στην οποία η ανθρωπογενής παρέμβαση είναι ανύπαρκτη μέχρι ελάχιστηقدرتی رقبہ کا استعمال کسی جغرافیائی علاقے کی حد کو بیان کرنے کے لیے کیا جاتا ہے جس میں بشریات کی مداخلت کم از کم موجود نہیں ہوتی + + national football league seasonقومی فٹ بال لیگ کا موسمNFL Saison + + zoodierentuinζωολογικός κήπος動物園Zooچڑیا گھرzoozoo + + 재배 품종cultuurgewasκαλλιεργούμενη ποικιλίαSorte ( kultivierte Sorte )saothrógکاشت شدہ مختلف قسمcultivar (cultivated variety)کاشتکار ایک پودا یا پودوں کا گروہ ہے جو مطلوبہ خصوصیات کے لیے منتخب کیا جاتا ہے جسے پھیلاؤ کے ذریعے برقرار رکھا جا سکتا ہے۔ ایک پودا جس کی اصل یا انتخاب بنیادی طور پر جان بوجھ کر انسانی سرگرمی کی وجہ سے ہے۔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.Een plantensoort die voor menselijk gebruik wordt geteeld en uit wilde planten is veredeld + + 성 (건축)kasteelκάστροburgcaisleáncastelloقلعہchâteaucastleCastles often are, but need not be a military structure. They can serve for status, pleasure and hunt as well.قلعے اکثر ہوتے ہیں، لیکن فوجی ڈھانچہ ہونے کی ضرورت نہیں ہے۔ وہ حیثیت، خوشی اور شکار کے لیے بھی خدمت کر سکتے ہیں۔ + + american football coachامریکن فٹ بال کوچ + + agglomerationمجموعہ + + Playboy Playmateپلے بوائے پلے میٹپلے میٹ ایک خاتون ماڈل ہے جسے پلے بوائے میگزین کے سینٹر فولڈ/گیٹ فولڈ میں پلے میٹ آف دی منتھ کے طور پر دکھایا گیا ہے + + vicepremierαντιπρωθυπουργόςنائب وزیر اعظمvice premier ministrevice prime minister + + Instrumento악기muziekinstrumentGlasbiloΜουσικό Όργανο楽器musikinstrumentuirlisstrumento musicaleسازinstrument de musiqueInstrumentDescribes all musical instrumentتمام آلات موسیقی کو بیان کرتا ہے + + architectural structureتعمیراتی ڈھانچہAn architectural structure is a human-made, free-standing, immobile outdoor construction (http://en.wikipedia.org/wiki/Architectural_structure).یہ تعمیراتی ڈھانچے مواد سے بنے ہیں۔، آزادانہ ، غیر مستحکم بیرونی تعمیر۔ + + burgemeesterδήμαρχος首長Bürgermeisterشہر کا منتظمmairemayor + + fotograafφωτογράφος写真家Fotograffotografoعکسی تصویر اتارنے والاphotographephotographer + + cricket leagueکرکٹ انجمنa group of sports teams that compete against each other in Cricketکھیلوں کی ٹیموں کا ایک گروپ جو کرکٹ میں ایک دوسرے کے خلاف مقابلہ کرتے ہیں۔ + + especiesartersoortείδος種_(分類学)Speziespeiceasقسمespècesspeciesدرجہ بندی کے نظام میں ایک زمرہA category in the rating system + + philosopherفلسفی + + bancobankΤράπεζα銀行Bankbancabancoبینکbanquebanka company which main services are banking or financial services.ایک تِجارتی اِدارہ جس کی اہم خدمات بینکنگ یا مالیاتی خدمات ہیں + + clericپادری + + CapitalدارالحکومتA municipality enjoying primary status in a state, country, province, or other region as its seat of government.ایک بلدیہ جو کسی ریاست، ملک، صوبے، یا دوسرے علاقے میں اپنی حکومت کی نشست کے طور پر بنیادی حیثیت سے لطف اندوز ہوتی ہے۔ + + golfbaanγήπεδο γκολφGolfplatzcúrsa gailfcampo da golfگالف کا میدانterrain de golfgolf courseIn a golf course, holes often carry hazards, defined as special areas to which additional rules of the game apply.Dans un parcours de golf, les trous comportent souvent des dangers, définis comme des zones spéciales auxquelles s'appliquent des règles de jeu supplémentaires.Σε ένα γήπεδο γκολφ οι τρύπες συχνά κρύβουν κινδύνους, που ορίζονται ως ειδικές περιοχές για τις οποίες ισχύουν επιπρόσθετοι κανόνες διεξαγωγής του παιχνιδιού.زمین کا ایک علاقہ جس میں گولف کے لیے 9 یا 18 سوراخ ہوتے ہیں جن میں سے ہر ایک میں ٹی ، فیئر وے ، اور سبز اور اکثر ایک یا زیادہ قدرتی یا مصنوعی خطرات شامل ہیں۔ - جسے گولف لنکس بھی کہا جاتا ہے۔ + + lakeجھیل + + damφράγμαダムDammdambadigaڈیمbarragedamڈیم ایک ایسا ڈھانچہ ہے جو پانی کے قدرتی بہاؤ کو روکتا، ری ڈائریکٹ یا سست کر دیتا ہے۔Ένα φράγμα είναι μια κατασκευή που εμποδίζει, ανακατευθύνει ή επιβραδύνει την φυσική ροή υδάτων.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. + + نامname + + تھیٹر ہدایت کارTheatre directorتھیٹر کے میدان میں ایک ڈائریکٹر جو تھیٹر پروڈکشن کے بڑھتے ہوئے کام کی نگرانی اور آرکیسٹریٹ کرتا ہےA director in the theatre field who oversees and orchestrates the mounting of a theatre production. + + canal de televisióntelevisie zenderτηλεοπτικός σταθμόςテレビジョン放送局Fernsehsenderstáisiún teilifísecanale televisivoٹیلی ویژن مرکزchaînes de télévisiontelevision stationA 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.ایک ٹیلی ویژن اسٹیشن عام طور پر ایک لائن اپ ہوتا ہے۔ مثال کے طور پر ٹیلی ویژن اسٹیشن WABC-TV (یا ABC 7، چینل 7)۔ براڈکاسٹنگ نیٹ ورک ABC کے ساتھ الجھن میں نہ پڑیں، جس میں بہت سے ٹیلی ویژن اسٹیشن ہیںΈνας τηλεοπτικός σταθμός έχει μια παράταξη.Για παράδειγμα ο τηλεοπτικός σταθμός WABC-TV (or ABC 7, Channel 7).Δεν πρέπει να συγχέεται με το τηλεοπτικό δίκτυο ABC,που έχει πολλούς τηλεοπτικούς σταθμούς.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. + + country estateLandgutbuitenplaatsملک کی نشستA country seat is a rural patch of land owned by a land owner.Een buitenplaats is een landgoed.یک کنٹری سیٹ زمین کا ایک دیہی پیچ ہے جو زمین کے مالک کی ملکیت ہے + + رقبہareaکسی چیز کا علاقہ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) + + موسیقی کے ساتھ نقل یا اداکاریopera + + فوجی ڈھانچہmilitary structureایک فوجی ڈھانچہ جیسے قلعہ اور دیوار وغیرہA military structure such as a Castle, Fortress, Wall, etc. + + raceαγώναςレースRennenrásدوڑcourserace + + شراب خانہwinery + + موسیقی کا کامmusical work + + party service bedrijf仕出し業者Partyserviceکھانا دینے والاtraiteurCaterer + + befolket stedbebouwde omgevingتجمع سكانيπυκνοκατοικημένη περιοχήbewohnter Ortآبادی والی جگہlieu habitépopulated placeAs 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).Selon la définition du United States Geological Survey, un lieu peuplé est un lieu ou une zone avec des bâtiments regroupés ou dispersés et une population humaine permanente (agglomération, colonie, ville ou village) référencée par des coordonnées géographiques (http://en.wikipedia. org/wiki/Populated_place).جیسا کہ امریکہ نے بیان کیا ہے۔ ارضیاتی سروے ، ایک آبادی والی جگہ وہ جگہ یا علاقہ ہے جہاں گروہ یا بکھرے ہوئے عمارتیں اور مستقل انسانی آبادی (شہر ، بستی ، قصبہ یا گاؤں) ہو۔Πυκνοκατοικημένη περιοχή, είναι η περιοχή ή το μέρος με μεγάλο αριθμό κτιρίων και μεγάλο μόνιμο πληθυσμό, σε σύγκριση με την γεωγραφική περιοχή που καταλαμβάνει (μεγαλούπολη, πόλη ή χωριό). + + کتا + + Pandemicعالمی وباءGlobal epidemic of infectious diseaseمتعدی بیماری کی عالمی وبا + + ciclista사이클 선수cyklistwielrennerποδηλάτης自転車選手Radfahrerrothaíciclistaسائیکل سوارcyclistecyclist + + حلقہ کا پادریvicar + + rugby competitieπρωτάθλημα rugbyRugby-Ligasraith rugbaíligue de rugbyrugby leagueA group of sports teams that compete against each other in rugby. + + Amerikaanse football coachπροπονητής ράγκμπυAmerican-Football-Trainerallenatore di football americanoامریکن فٹ بال کوچadestrador de fútbol americanoentraineur de football américainamerican football coach + + equipo de fútbolfodboldklubclub de futbolvoetbalclubklub piłkarskiομάδα ποδοσφαίρουFußballvereinclub sacairفٹ بال تنظیمclub de footballsoccer club + + military personفوجی شخص + + historicusιστορικός歴史学者Historikerstaraístoricoمورخhistorienhistorian + + asteroide소행성asteroïdeαστεροειδής小惑星Asteroidastaróideachasteroideasteróideکشودرگرہastéroïdeasteroid + + cameraتصویر کھینچنے کا آلہایک کیمرہ (اطالوی میں روایتی طور پر کیمرے کے نام سے جانا جاتا ہے) ایک ایسا آلہ ہے جو فوٹو گرافی کی شوٹنگ اور حقیقی اشیاء کی تصاویر حاصل کرنے کے لیے استعمال کیا جاتا ہے جو کاغذ پر چھپ سکتی ہیں یا الیکٹرانک میڈیا پر محفوظ کی جا سکتی ہیں۔ + + guitaristgitaristκιθαρίσταςギター演奏者Gitarristgiotáraíchitarristaستار بجانے والاguitaristeguitarist + + 무기våbenwapenόπλο武器Waffearmہتھیارarmeweapon + + hockey teamہاکی کھیل کی جماعت + + مجموعی گھریلو پیداوار فی کسgross domestic product per capitaفی کس جی ڈی پی قومی حدود کے اندر پیدا ہونے والی مارکیٹنگ اشیاء اور خدمات کے مجموعے کی پیمائش کرتا ہے ، جو اس علاقے میں رہنے والے ہر شخص کے لیے اوسط ہے + + Catererکھانا دینے والا + + گاڑیوں کے مقابلے کا کھیلmotorsport racer + + Australian rules football playerآسٹریلوی رولز فٹ بال پلیئر + + بصری کھیلvideo gameبصری کھیل ایک الیکٹرانک گیم ہے جس میں ویڈیو ڈیوائس پر بصری تاثرات پیدا کرنے کے لیے صارف کے انٹرفیس کے ساتھ تعامل شامل ہوتا ہےA video game is an electronic game that involves interaction with a user interface to generate visual feedback on a video device. + + 호수meerозероjezioroλίμνη호수Seelochlagoجھیلlaclake + + luitenantυπολοχαγός中尉Leutnantleifteananttenenteفوجی افسرlieutenantlieutenant + + churchگرجاThis is used for church buildings, not any other meaning of church.یہ چرچ کی عمارتوں کے لیے استعمال ہوتا ہے ، چرچ کا کوئی دوسرا مطلب نہیں۔ + + mijn (delfstoffen))کانMine (Bergwerk)minemineA mine is a place where mineral resources are or were extractedکان ایک ایسی جگہ ہے جہاں معدنی وسائل ہیں یا نکالے گئے ہیں۔Une mine est un endroit où des ressources minérales sont, ou ont été extraites.Een mijn is een plaats waar delfstoffen worden of werden gewonnen + + برقی طاقت پیدا کرنے کا آلہbatteryبیٹری (قسم) گاڑیوں میں توانائی کے منبع کے طور پر استعمال ہوتی ہےThe battery (type) used as energy source in vehicles. + + Hormoneاعضاء کی خوراکA hormone is any member of a class of signaling molecules produced by glands in multicellular organisms that are transported by the circulatory system to target distant organs to regulate physiology and behaviour.ایک مادہ جو غدود سے نکل کر خون میں شامل ہوتا ہےاورگردش کے نظام کے ذریعے دور دراز کے اعضاء کو نشانہ بناتے ہیں تاکہ جسمانیات اور طرز عمل کو کنٹرول کریں + + letterγράμμα文字BuchstabelitirحرفlettreletterEin Buchstabe des Alphabets.حروف تہجی سے ایک حرفA letter from the alphabet.Ene lettre de l'alphabet. + + thematisches Konzeptcoincheap i mbéal an phobailموضوع کا تصورConcept thématiquetopical concept + + artistic genreفنکارانہ صنففن کی انواعGenres of art, e.g. Pointillist, Modernist + + معلوماتی آلاتinformation applianceمعلوماتی آلہ جیسے پی ڈی اے یا ویڈیو گیم کنسولز وغیرہAn information device such as PDAs or Video game consoles, etc. + + cyclistسائیکل سوار + + academische hoofdstudierichtingdyscyplina naukowaakademisches Fachتعلیمی مضمونdisciplina académicasujet académiqueacademic subjectGenres of art, e.g. Mathematics, History, Philosophy, MedicineUnha disciplina académica é unha rama do coñecemento que unha comunidade de especialistas desenvolve con metodoloxías de investigación. + + stadiumمعروف کھیلوں کے لیے مَخصُوص جگہ + + نظریہideologyمثال کے طور پر: ریاستہائے متحدہ میں ترقی پسندی، کلاسیکی لبرل ازمfor example: Progressivism_in_the_United_States, Classical_liberalism + + edeleευγενής高貴なAdligerعظیمnoblenoble + + vuurtorenΦάρος灯台Leuchtturmteach solaisروشنی کا مینارpharelighthouse + + microregioμικρο-περιφέρειαMikroregionmicrorregiaoچھوٹاعلاقہmicro-régionmicro-regionA microregion is a - mainy statistical - region in Brazil, at an administrative level between a meso-region and a communityمائیکرو ریجن برازیل میں ایک - بنیادی شماریاتی - خطہ ہے، انتظامی سطح پر ایک میسو ریجن اور کمیونٹی کے درمیانUne microrégion est - principalement du point de vue statistique - une région du Brésil, qui se trouve à un niveau administratif entre la mésorégion et la communautéΗ μικρο-περιφέρεια χρησιμοποιείται για να περιγράψει, κυρίως στατιστικά, μια περιοχή στη Βραζιλία σε διοικητικό επίπεδο μεταξύ μίας μεσο-περιφέρειας και μίας κοινότητα + + parlementslidΜέλος κοινοβουλίουParlamentsmitgliedmembro do parlamentoرکن پارلیمنٹmembre du Parlementmember of parliament + + route stophalteHaltestelleétapedesignated place where vehicles stop for passengers to board or alightBetriebsstelle im öffentlichen Verkehr, an denen Fahrgäste ein- und aussteigenune étape ou un arrêt sur une route + + period of artistic styleفنکارانہ انداز کی مدت + + Amerikansk lederامریکی رہنماAmerikako liderrachef américainAmerican Leader + + american football playerامریکی فٹ بال کھلاڑی + + فلمfilm + + wijnstreekワイン産地Weinregionشراب کا علاقہrégion viticolewine region + + zonsverduisteringέκλειψη ηλίουSonnenfinsternisurú na gréineeclissi solareسورج گرہنéclipse de soleilsolar eclipseΈκλειψη ηλίου ονομάζεται το φαινόμενο κατά το οποίο η Σελήνη παρεμβάλλεται ανάμεσα στον Ήλιο και τη Γη, με αποτέλεσμα ορισμένες περιοχές της Γης να δέχονται λιγότερο φως από ό,τι συνήθως.سورج گرہن ایک ایسا واقعہ ہے جس میں چاند سورج اور زمین کے درمیان مداخلت کرتا ہے، جس کی وجہ سے زمین کے کچھ علاقوں کو معمول سے کم روشنی ملتی ہے + + movie genreفلم کی صنف + + skovbosWaldجنگلforêtforestA natural place more or less densely grown with treesایک قدرتی جگہ جو کم و بیش درختوں کے ساتھ اگتی ہے۔ + + 이집트 신godheidbóstwoθεότηταGottheitdiaدیوتاdeity + + proteinلحمیات + + پیش کنندہpresenterٹی وی یا ریڈیو شو پیش کرنے والاTV or radio show presenter + + treinstationσιδηροδρομικός σταθμός鉄道駅Bahnhofstáisiún traenachstazione ferroviariagaretrain station + + AnimeانیمےA style of animation originating in Japanحرکت پذیری کا ایک انداز جاپان میں شروع ہوا۔ + + dichterποιητής詩人Dichterfileشاعرpoètepoet + + 기독교 주교Christelijk bisschopbiskup chrześcijańskiΠληροφορίες Επισκόπουchristlicher BischofEaspag Críostaívescovo cristianoعیسائی پادريévêque chrétienChristian Bishop + + polo competitieΟμοσπονδία ΥδατοσφαίρισηςPolo-Ligasraith pólóپولو انجمنligue de polopolo leagueA group of sports teams that compete against each other in Polo.کھیلوں کی ٹیموں کا ایک گروہ جو پولو میں ایک دوسرے سے مقابلہ کرتا ہے۔ + + 자동차 경주 대회auto race competitieπρωτάθλημα αγώνων αυτοκινήτων自動車競技リーグAuto Racing Leaguesraith rásaíochta charannalega automobilisticaگاڑیوں کی ریسوں کی انجمنla ligue de course automobileauto racing leaguea group of sports teams or individual athletes that compete against each other in auto racingμια ομάδα αθλητικών ομάδων ή μεμονωμένων αθλητών που ανταγωνίζονται μεταξύ τους σε αγώνες αυτοκινήτωνکھیلوں کی ٹیموں یا انفرادی کھلاڑیوں کا ایک گروپ جو آٹو ریسنگ میں ایک دوسرے کے خلاف مقابلہ کرتے ہیں + + plaats van geschiedkundig belangιστορικός χώροςhistorischer Ortáit stairiúilتاریخی مقامsite historiquehistoric place + + ski resortپھسلن کھیل کا میدانپھسلن کھیل میدان کا استعمال چھٹیوں کے مقام کو بیان کرنے کے لیے کیا جاتا ہے جس میں قیام اور اسکیئنگ کے موسم سرما کے کھیل کی مشق کے لیے ضروری سہولیات موجود ہیں۔ + + poker playerپوکر کھلاڑی + + بے پھول کا بڑے پتوں والا پوداfern + + dybdediepteβάθος深度Tiefeگہرائیprofondeurdepth + + 영국 왕족Britse royaltyBritanska kraljevska osebaΒρετανική μοναρχίαイギリス王室Britisches Königshausreali britanniciبرطانوی بادشاہیroyauté BritanniqueBritish royalty + + political functionسیاسی تقریب + + سلسلہ وار قاتلserial killer + + ٹی وی ڈرامہtelevision season + + Lawyerوکیلa person who is practicing law.ایک شخص جو قانون پر عمل پیرا ہے + + نسل یا خاندانtaxonomic groupپرجاتیوں کے لیے درجہ بندی کے نظام کے اندر ایک زمرہa category within a classification system for Species + + artistفنکار + + televisie presentatorπαρουσιαστής τηλεοπτικής εκπομπήςテレビ番組司会者Fernsehmoderatorláithreoir teilifísepresentatore televisivoٹی وی مزبانanimateur de télévisiontelevision host + + manhuamanhua中国の漫画manhuaمانہواmanhuamanhuaManhua is het Chinese equivalent van het stripverhaalΚόμικς που παράγονται αρχικά στην ΚίναAußerhalb Chinas wird der Begriff für Comics aus China verwendet.کامکس اصل میں چین میں تیار کیے گئے تھےBandes dessinées produites initialement en ChineComics originally produced in China + + ڈیمڈیم ایک ایسا ڈھانچہ ہے جو پانی کے قدرتی بہاؤ کو روکتا، ری ڈائریکٹ یا سست کر دیتا ہے۔ + + گالف کا کھلاڑیgolf player + + جماعتی کھیلteam sportایک ٹیم کے کھیل کو عام طور پر ایک کھیل کے طور پر بیان کیا جاتا ہے جو مسابقتی ٹیموں کے ذریعہ کھیلا جاتا ہےA team sport is commonly defined as a sport that is being played by competing teams + + پہاڑی سلسلہmountain rangeپہاڑوں کی ایک زنجیر جو پہاڑوں سے متصل ہے یا دوسرے پہاڑوں سے راستوں یا وادیوں سے الگ ہےa chain of mountains bordered by highlands or separated from other mountains by passes or valleys. + + holidayچھٹیام تعطیل سول یا مذہبی جشن کا دن ہے ، یا کسی تقریب کی یاد میں + + ریاستہائے متحدہ کی سپریم کورٹ کیس + + Watertorenπύργος νερούWasserturmSerbatoio idrico a torreبُرج آبChâteau d'eauWater towerμια κατασκευή σχεδιασμένη για αποθήκευση μεγάλων ποσοτήτων νερού σε μέρος με κάποια ανύψωση, ώστε να διατηρήσει πίεση στο σύστημα παροχής νερού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پانی کی فراہمی کے نظام پر دباؤ برقرار رکھنے کے لیے کچھ بلندی کی جگہ پر پانی کی بڑی مقدار کو ذخیرہ کرنے کے لیے ڈیزائن کیا گیا ایک تعمیرune construction destinée à entreposer l'eau, et placée en général sur un sommet géographique pour permettre de la distribuer sous pression + + mythologisch figuurμυθικό πλάσμαmythologische Gestaltfigura mitologicaافسانوی شکلpersonnage mythologiquemythological figure + + voormalige regiohistorischer Regionréigiún stairiúilتاریخی علاقہAncienne régionHistorical regiona place which used to be a region.Lieu qui était autrefois une région.ایک ایسی جگہ جو ایک علاقہ ہوا کرتی تھی + + lighthouseروشنی کا مینار + + edificio건축물bygninggebouwstavbaκτίριο建築物GebäudefoirgneamhedificioعمارتbâtimentbuildingBuilding 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).Ein Gebäude, umgangssprachlich auch oft als Haus bezeichnet, ist ein Bauwerk, das Räume umschließt, betreten werden kann und zum Schutz von Menschen, Tieren oder Sachen dient (http://de.wikipedia.org/wiki/Geb%C3%A4ude).عمارت کو سول انجینئرنگ ڈھانچے سے تعبیر کیا جاتا ہے جیسے مکان ، عبادت گاہ ، فیکٹری وغیرہ جس کی بنیاد ، دیوار ، چھت وغیرہ ہوتی ہے جو انسان اور ان کی خصوصیات کو موسم کے براہ راست سخت اثرات جیسے بارش ، ہوا ، سورج وغیرہ سے محفوظ رکھتی ہے۔ + + astronauta우주인ruimtevaarderαστροναύτης宇宙飛行士Astronautspásaireastronautaastronautaخلا بازastronauteastronaut + + soccer tournomentفٹ بال باہمی مقابلہ + + Mixed Kampfkunst Ligasraith ealaíona comhraic meascthaمخلوط مارشل آرٹس کی انجمنligue d'arts martiaux mixtesmixed martial arts leaguea group of sports teams that compete against each other in Mixed Martial Artsکھیلوں کی ٹیموں کا ایک گروپ جو مخلوط مارشل آرٹس میں ایک دوسرے سے مقابلہ کرتا ہے۔ + + moving imageمتحرک فلمBewegtbilderbewegend beeldA visual document that is intended to be animated; equivalent to http://purl.org/dc/dcmitype/MovingImageایک بصری دستاویز جس کا مقصد متحرک ہونا ہے + + ambtstermijnAmtsdauerدفتر کی مدتmandatterm of office + + Jødisk lederزعيم يهوديयहूदी नेताیہودی رہنماBuruzagi juduachef juifJewishLeader + + آجرآجر وہ ہے جو ملازمت کے معاہدے کی وجہ سے ملازم سے کام کا مطالبہ کر سکتا ہے اور جس پر اجرت واجب الادا ہے۔ + + ancient area of jurisdiction of a person (feudal) or of a governmental bodygebied dat vroeger onder het gezag viel van een heer of vrouwe of een instelling van kerk of staatکسی شخص (جاگیردار) یا سرکاری ادارے کے دائرہ اختیار کا قدیم علاقہMostly for feudal forms of authority, but can also serve for historical forms of centralised authorityزیادہ تر اختیارات کی جاگیردارانہ شکلوں کے لیے ، لیکن مرکزی اختیار کی تاریخی شکلوں کے لیے بھی کام کر سکتا ہے + + فوجی خدماتmilitary service + + launch padمیزائل چلانے کی جگہ + + 관리 지역bestuurlijk gebiedδιοικητική περιφέρεια行政区画Verwaltungsregionréigiún riaracháinregione amministrativa行政區انتظامی علاقہrexión administrativarégion administrativeadministrative regionA PopulatedPlace under the jurisdiction of an administrative body. This body may administer either a whole region or one or more adjacent Settlements (town administration)(نتظامی علاقہ)انتظامی ادارے کے دائرہ اختیار میں ایک آبادی والی جگہ۔ یہ ادارہ یا تو ایک پورے علاقے یا ایک یا اس سے ملحقہ بستیوں کا انتظام کر سکتا ہے + + districtضلعضلع کے تحت انتظامی علاقے کا حصہ + + برقی ذیلی مرکزبرقی ذیلی مرکزوولٹیج کو زیادہ سے کم، یا برعکس میں تبدیل کرتے ہیں۔ + + motor raceکار دوڑ + + horse riderگھڑ سوار + + 보디빌더bodybuilderBodybuilderculturistaتن سازculturistebodybuilder + + 싱글singlesingleシングルSinglesingilسنگلsinglesingleIn music, a single or record single is a type of release, typically a recording of fewer tracks than an LP or a CD.En musique, un single ou encore un disque 45 tours est un format de diffusion; c'est typiquement un enregistrement de quelques pistes dont le nombre est plus petit que pour un LP (un disque 33 tours) ou un CD.موسیقی میں، سنگل یا ریکارڈ سنگل ریلیز کی ایک قسم ہے، عام طور پر ایل پی یا سی ڈی سے کم ٹریک کی ریکارڈنگ + + softball competitieπρωτάθλημα σόφτμπολSoftball Ligasraith bogliathróideسافٹ بال انجمنligue de softballsoftball leagueA group of sports teams that compete against each other in softball.کھیلوں کی ٹیموں کا ایک گروپ جو سافٹ بال میں ایک دوسرے سے مقابلہ کرتا ہےΟμάδες που ανταγωνίζονται στο αγώνισμα του σόφτμπολ. + + casino카지노casinoκαζίνοカジノKasinocasinòرقص گاہcasinocasinoIn modern English, a casino is a facility which houses and accommodates certain types of gambling activities.جدید انگریزی میں ، جوئے بازی کی اڈہ ایک ایسی سہولت ہے جس میں جوئے کی سرگرمیوں کی مخصوص اقسام ہوتی ہیں۔ +.To καζίνο είναι ένας χώρος στον οποίο μπορούμε να παίξουμε τυχερά παιχνίδια ποντάροντας χρήματα.Un casino est un lieu proposant des jeux d'argent et de hasard ou jeux de casino. + + cartoondessin animéکارٹون + + کتابbook + + wedstrijdδιαγωνισμόςコンテストWettbewerbcomórtasتکرار کرناconcourscontest + + 우주선ruimtevaartuigδιαστημόπλοιο宇宙機Raumfahrzeugspásárthachخلائی جہازvaisseau spatialspacecraft + + beach volleyball playerساحل سمندروالی بال کاکھلاڑی + + غار + + جراثیمbacteria + + سابق بلدیہone-time municipalityایک بلدیہ جس کا وجود ختم ہو گیا ہے، اور زیادہ تر وقت کسی دوسری بلدیہ میں (تھوک یا جزوی طور پر) شامل ہو گیا ہےA municipality that has ceased to exist, and most of the time got incorporated (wholesale or partly) into another municipality + + تن سازbodybuilder + + پَوَن چکّی کی طرح کی کّلWind motorہوا سے چلنے والی ٹربائن جو خود کو ہوا کی سمت اور ہوا کی طاقت کے مطابق ڈھال لیتی ہے۔ ونڈ مل کے ساتھ عام فیکٹر کے طور پر ہوا کے باوجود، اپنی ذات میں ایک طبقہ سمجھا جاتا ہے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. + + radiopresentatorοικοδεσπότης ραδιοφώνουRadiomoderatorláithreoir raidióprésentateur radioradio host + + Mixed Kampfkunst Veranstaltungimeacht ealaíona comhraic meascthaمخلوط جنگ جو آرٹس تقریبévènement d'arts martiaux mixtesmixed martial arts event + + venueپنڈال + + videojuego비디오 게임computerspilvideospelβιντεοπαιχνίδιテレビゲームVideospielfíschluichevideojogoبصری کھیلjeux vidéovideo gameA video game is an electronic game that involves interaction with a user interface to generate visual feedback on a video device.بصری کھیل ایک الیکٹرانک گیم ہے جس میں ویڈیو ڈیوائس پر بصری تاثرات پیدا کرنے کے لیے صارف کے انٹرفیس کے ساتھ تعامل شامل ہوتا ہے + + gouverneurκυβερνήτης知事Gouverneurgobharnóirحاکمgouverneurgovernor + + surnameعرفیتخاندانی نام + + vakbondΚουτί πληροφοριών ένωσηςGewerkschaftceardchumannمزدوروں کا اتحادsyndicat professionneltrade unionA trade union or labor union is an organization of workers who have banded together to achieve common goals such as better working conditions.مزدوروں کا اتحاد مزدوروں کی ایک تنظیم ہے جو کام کے بہتر حالات جیسے مشترکہ اہداف کو حاصل کرنے کے لیے اکٹھے ہوئے ہیں + + cargo público공직자ambtsdragerκάτοχος δημόσιου αξιώματοςAmtsinhaberعہدے دارtitulaireoffice holder + + typeτύποςTypcineálقسمrégime de classificationtypea category within a classification systemدرجہ بندی کے نظام میں ایک زمرہcategorie binnen een classificatiesysteem + + 군사 건축물militair bouwwerkΣτρατιωτική Δομήmilitärisches Bauwerkفوجی ڈھانچہstructure militairemilitary structureA military structure such as a Castle, Fortress, Wall, etc.Une structure miltaire telle qu'un château, une forteresse, des remparts, etc.ایک فوجی ڈھانچہ جیسے قلعہ اور دیوار وغیرہ + + dokumentdocumentέγγραφοドキュメントDokumentcáipéisdocumentoدستاویزdocumentdocumentکوئی بھی دستاویز۔Any document + + خاندانfamilyعام نسل سے متعلق لوگوں کا ایک گروہ ، ایک نسبA group of people related by common descent, a lineage. + + خون کی شریانblood vessel + + انگورgrape + + سرگرمیactivity + + قلعہcastleCastles often are, but need not be a military structure. They can serve for status, pleasure and hunt as well.قلعے اکثر ہوتے ہیں، لیکن فوجی ڈھانچہ ہونے کی ضرورت نہیں ہے۔ وہ حیثیت، خوشی اور شکار کے لیے بھی خدمت کر سکتے ہیں + + liga de cricket크리켓 대회cricket competitieκύπελλο κρικετクリケットリーグCricket-Ligasraith cruicéidکرکٹ انجمنligue de cricketcricket leaguea group of sports teams that compete against each other in Cricketکھیلوں کی ٹیموں کا ایک گروپ جو کرکٹ میں ایک دوسرے کے خلاف مقابلہ کرتے ہیں۔ + + rugby clubομάδα ράγκμπιRugby-Clubclub rugbaíclub de rugbyrugby club + + بوبسلیگ ایتھلیٹ + + collegeمدرسہ + + swimmerتیراکa trained athlete who participates in swimming meetsایک تربیت یافتہ کھلاڑی جو تیراکی کے مقابلوں میں حصہ لیتا ہے + + 산맥bergketenΟροσειράBergkettecadeia montanhosaپہاڑی سلسلہchaîne de montagnemountain rangea chain of mountains bordered by highlands or separated from other mountains by passes or valleys.پہاڑوں کی ایک زنجیر جو پہاڑوں سے متصل ہے یا دوسرے پہاڑوں سے راستوں یا وادیوں سے الگ ہے۔. + + فارمولا ون ٹیمformula 1 team + + 오스트레일리아식 풋볼 선수Australian football-spelerαυστραλιανοί κανόνες ποδοσφαιριστήオージーフットボール選手Australian Rules Football-Spielergiocatore di football australianoآسٹریلوی رولز فٹ بال پلیئرAustralian rules football player + + Basquetbolista농구 선수basketbal spelerπαίκτης καλαθοσφαίρισηςバスケットボール選手Basketballspielerimreoir cispheilegiocatore di pallacanestroباسکٹ بال کھلاڑیjoueur de basketballbasketball playerΈνας αθλητής (άνδρας ή γυναίκα) που ασχολείται με το άθλημα της καλαθοσφαίρισης. + + canciller재상kanselierκαγκελάριος宰相Kanzlerseansailéircancellierechancelerمشیرchancelierchancellor + + rechtzaakνομική υπόθεσηRechtsfallcaso jurídicoقانونی مقدمہcas juridiqueLegal Case + + Capital of regionعلاقے کا دارالحکومتفرسٹ آرڈر ایڈمنسٹریشن ڈویژن کی نشست۔seat of a first order administration division. + + 갑각류schaaldierαστρακόδερμο甲殻類Krebstiercrústachخول دارجانورcrustacéscrustacean + + 방송omroepالشبكةεκφωνητής放送事業者RundfunkveranstaltercraoltóiremittenteناشَرdiffuseurbroadcasterΟ ραδιοτηλεοπτικός φορέας είναι ένας οργανισμός που είναι υπεύθυνος για την παραγωγή ραδιοφωνικών ή τηλεοπτικών προγραμμάτων και / ή τη διαβίβασή τουςEin Rundfunkveranstalter (oder auch Sendeunternehmen) betreibt Hörfunk- oder Fernsehprogramme. (http://de.wikipedia.org/wiki/Rundfunkveranstalter - 28/03/2011)براڈکاسٹر ایک ایسی تنظیم ہے جو ریڈیو یا ٹیلی ویژن پروگراموں کی پیداوار اور/یا ان کی ترسیل کے لیے ذمہ دار ہےUn radiodiffuseur est une organisation responsable de la production de programmes de radio ou de télévision et/ou de leur transmission. (http://en.wikipedia.org/wiki/Broadcaster - 28/03/2011)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) + + dirigentDirigentموسیقی کا رہنماchef d'orchestremusic directorA person who is the director of an orchestra or concert band.ایک شخص جو سازینہ یا موسیقی بجانے والوں کا گروہ کا رہنما ہے + + 소철류cycadeeënφοινικόθαμνοςソテツ門Palmfarncíocáidcicadáceaکرف نخلیcycadophytescycad + + بیول :منظم شدہ مجموعہ + + political party of leaderpolitische Partei des VorsitzendenThe Political party of leader. + + distance laps + + speakernumber of office holder + + britishOpen + + other occupation + + ONS ID (Office national des statistiques) Algeria + + city typetype stadτύπος + + shuttle + + eye colourAugenfarbe + + rankingclassementRangliste + + sub-classisonderklassea subdivision within a Species classis + + long distance piste numbernuméro de piste noire longue distance + + year of electrificationгодина електрификацијеJahr der ElektrifizierungYear station was electrified, if not previously at date of opening.Година када је станица електрифицирана, уколико није била при отварању. + + last seasonΠροηγούμενη Περίοδος + + minimum temperature (K)geringste Temperatur (K)ελάχιστη θερμοκρασία (K) + + wpt itmWPT ITM + + illustratorIllustratorillustratorillustrateurIllustrator (where used throughout and a major feature) + + Hochzeitstag der Elterndata do casamento dos paisdate de marriage des parentsParents Wedding Dateдатум венчања родитеља + + other mediaandere Medien + + number of district + + fastest driverschnellster Fahrerταχύτερος οδηγός + + date actαπόφαση_διάνοιξης + + MedlinePlusMedlinePlus + + external ornament + + minorityMinderheit + + referenceReferenzStructured reference providing info about the subject + + massifMassiv + + British Comedy AwardsBritish Comedy AwardsΒρετανικά Βραβεία Κωμωδίας + + altitudhoogteυψόμετρο標高Höhealtitudealtitudeапсолутна висина + + ORPHAORPHAORPHAORPHA + + first launch rocket + + source confluence country + + state of origin point + + MBA IdMusicBrainz is an open music encyclopedia that collects music metadata and makes it available to the public. + + title language + + launch + + other serving linesandere verbindingenandere VerbindungenConnecting services that serve the station such as bus, etc. + + largest metro + + first ownererster Besitzerpremier propriétaireprimer dueño + + soort種_(分類学)Speziesespècespecies + + management region + + local phone prefixlokale Vorwahl + + bicycle informationinformation vélosFahrradinformationenInformation on station's bicycle facilities.Information concernant les facilités de la gare pour les vélos. + + grid referencecoördinaten + + wins at Senior Euro + + Dutch COROP code + + historical regionrégion historiquehistorische Region + + number of staffPersonalbestandαριθμός προσωπικούaantal medewerkers + + gym apparatusFitnessgerät + + national tournament bronze + + original nameursprünglicher Namenoorspronkelijke naamThe original name of the entity, e.g. film, settlement, etc. + + senatorSenatorsenador + + former call sign + + ept final table + + missionMissionαποστολή + + The URL at which this file can be downloadedURL de téléchargement du fichier + + cca state + + surface gravity (g) + + attorney generalGeneralstaatsanwaltprocureur-generaalPublic attorneyde procureur-generaal + + gnis code + + maiden flight rocket + + race trackRennstreckecircuit + + load limit (g)Belastungsgrenze (g)Load limit of the bridge. + + school code + + number of bombsAnzahl der Bombenαριθμός των βομβών + + number of all indegrees in dbpedia (same ourdegrees are counting repeatedly)počet indegree odkazů v dbpedii (stejné započítané opakovaně) + + maximum preparation time (s)temps de préparation maximum (s)Maximum preparation time of a recipe / FoodTemps de préparation maximum pour une recette / Aliments + + TheologyTheologieΘεολογία + + jurisdictionZuständigkeitJurisdiction 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.Die Zuständigkeit oder Kompetenz legt im öffentlichen Recht fest, welche Behörde bzw. welches Gericht im Einzelfall rechtlich zu hoheitlichem Handeln ermächtigt und verpflichtet ist. + + number of locationsAnzahl der Standortenombre de sites + + gross domestic product nominal per capita + + service end date + + population percentage male + + digital sub channel + + percentageProzentpercentage + + first air dateSendebeginnThe date on which regular broadcasts began. + + non professional career + + maximum boat length (μ)μέγιστο_μήκος_πλοίου (μ) + + guestGastεπισκέπτης + + nummerαριθμός番号Anzahlnumber + + mass (g)Masse (g)μάζα (g) + + broadcast repeaterrépéteur de diffusionεπαναληπτική αναμετάδοσηA repeater is an electronic device that receives a signal and retransmits it at a higher level and/or higher power, or onto the other side of an obstruction, so that the signal can cover longer distances (http://en.wikipedia.org/wiki/Repeater).Un répéteur est un équipement électronique qui reçoit un signal et le retransmet avec un niveau supérieur et/ou à une puissance plus grande, ou après un obstacle de sorte à ce que le signal puisse couvrir des distances plus grandes (https://fr.wikipedia.org/wiki/Répéteur). + + participantparticipantdeelnemerTeilnehmer + + Fackelträgertorch bearer + + copilotecopiloteCopilot + + formaatformatformatFormatformáidformatformat (object)Format of the resource (as object). Use dct:format for literal, format for object + + motherMutter + + second commanderzweiter Kommandant + + number of districtsAnzahl der Bezirkejumlah kecamatan + + chiefchef + + amateur titleAmateurtitelаматерска титула + + localization of the island + + spokespersonSprecherporta-voz + + royal anthem + + subject of playThe overall subject matter dealt with by the play. + + observatoryobservatoireObservatoriumαστεροσκοπείοεπιστημονικά ιδρύματα που παρατηρούν και μελετάνε ουράνια σώματα και φαινόμενα. + + historical namehistorischer Name + + target airport + + duration (s)durée (s)Dauer (s)duur (s)The duration of the item (movie, audio recording, event, etc.) in ISO 8601 date formatDurée d'un élément (film, enregistrement audio, événement, etc.) au format de date ISO 8601 + + sport countrySportnationThe country, for which the athlete is participating in championshipsDas Land, für das der Sportler an Wettkämpfen teilnimmt + + Temporary Placement in the Music Chartsvorläufige Chartplatzierung + + numberOfRedirectedResourcenombre de ressources redirigéesnumber of redirected resource to another onenombre de ressources qui redirigent vers d'autres ressourcespočet redirectů - zdrojů přesměrovaných na jiný zdroj + + aircraft patrolπεριπολία αεροσκάφους + + music fusion genre + + networkSendergruppeδίκτυο + + ICD9ICD9ICD9 + + shoot + + geneReviewsName + + eparchyепархияmetropoleisCompare with bishopric + + bronzen medaille dragerχάλκινο μετάλλιοBronzemedaillengewinnermedalha de bronzemédaille de bronzebronze medalist + + derived wordabgeleitetes Wort + + ウエスト (μ)Taillenumfang (μ)размер талия (μ)waist size (μ)димензије струка (μ) + + code bookGesetzbuchwetboekcode book or statute book referred to in this legal case + + followed bygefolgt vonsuivi parsiguido de + + onderschriftυπότιτλοςUntertitellegendasubtitle + + Dorlands suffix + + schoolσχολείοschulescuolaécoleschoolschool a person goes or went toσχολείο στο οποίο πηγαίνει ή πήγε κάποιος + + child organisationdochterorganisatie + + vægt (g)gewicht (g)βάρος (g)体重 (g)Gewicht (g)peso (g)poids (g)weight (g)тежина (g) + + membershipMitgliedschaftlidmaatschap + + last launch dateletzter Starttermin + + australia open mixed + + flag Link + + monarchMonarchmonarch + + FAA Location Identifier + + area quote + + ouderElternteilparentparent + + actieve jaren eind jaarενεργά χρόνια τέλος του χρόνου引退年فعال سال آخر سالactive years end yearпоследња година активних година + + bioclimateBioklima + + is handicapped accessibleaccessible aux handicapésist rollstuhlgerechtTrue if the station is handicapped accessible.Vrai si la station est accessible aux handicapés. + + Alps subgroupυποομάδα των άλπεωνsottogruppo alpinoАлпска подгрупаthe Alps subgroup to which the mountain belongs, according to the SOIUSA classification + + constructionconstructionκατασκευήKonstruktion + + notable workoeuvre majeure代表作bekende werkenNotable work created by the subject (eg Writer, Artist, Engineer) or about the subject (eg ConcentrationCamp) + + supplemental draft year + + spur of + + volcanic activityactivité volcaniquevulkanische Aktivitätвулканска активност + + administratieve gemeenschapδιοικητική συλλογικότηταVerwaltungsgemeinschaftانتظامی اجتماعیتcollectivité administrativeadministrative collectivityадминистративна заједница + + ModernaModerna莫德纳Moderna, Inc is an American pharmaceutical and biotechnology company based in Cambridge, Massachusetts.Moderna, Inc et une compagnie américaine pharmaceutique et de biotechnologie basée à Cambridge, Massachusetts.莫德纳,是一家总部位于美国马萨诸塞州剑桥市的跨国制药、生物技术公司,专注于癌症免疫治疗,包括基于mRNA的药物发现、药物研发和疫苗技术 + + chief editorChefredakteurhoofdredacteur + + collectivity minority + + education placelieu d'enseignementBildungsstätte + + veinVeneвена + + SUDOC idSystème universitaire de documentation id (French collaborative library catalog). +http://www.idref.fr/$1 + + συγγενής親戚Verwandterparenterelative + + failed launches + + power type + + udgivetrelease datumdata wydaniaημερομηνία κυκλοφορίαςdate de sortierelease dateRelease date of a Work or another product (eg Aircraft or other MeansOfTransportationDate de sortie d'un travail ou d'un autre produit (un avion, d'autres moyens de transport... + + military unit sizethe size of the military unit + + autorauteurавторautorσυγγραφέας作者autorúdarمصنفauteurauthor + + moodStimmung + + ncaa team + + fateSchicksal + + organisationorganisationOrganisation + + IOBDB IDLortel Archives Internet Off-Broadway database "show id" from lortel.org. + + memorial ID numbercode gedenktekenIdentifier for monuments of the Memorial typeCode oorlogsmonument of ander gedenkteken + + museumTypesoort museumThis property has been added because 'buildingType' is much more about the place, whereas 'museumType' is about the way the place is being (or:was) usedNieuw 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 + + US salesUS-Verkäufeпродаја у САДNumber of things (eg vehicles) sold in the US + + subdivisionssous-divisions + + has junction withσύνδεση + + order in office + + registryRegisterregistreA registry recording entires with associated codes.Ein Register welches Einträge mit Kennungen versieht. + + word before the countryреч пре државе + + subtribusonderstam + + junior team + + opponentsGegner"opponent in a military conflict, an organisation, country, or group of countries. " + + reeksσειράSeriesérieseries + + newspaperZeitung + + list itemlijst itemsαντικείμενο λίστας + + DiseasesDBDiseasesDBDiseasesDBDiseasesDB + + spacewalk endEnde Weltraumspaziergang + + mentorMentormentorA wise and trusted counselor or teacherCelui qui sert de guide, de conseiller à quelqu’un. + + approximate calories (J)ungefähre Kalorien (J)κατά προσέγγιση θερμίδες (J)приближно калорија (J)Approximate calories per serving.Kατά προσέγγιση θερμίδες ανά μερίδα. + + number builtAnzahl gebautaantal gebouwd + + opening dateημερομηνία ανοίγματοςdate d'ouvertureEröffnungsdatum + + draft position + + date useέναρξη_χρήσης + + Daily Vaccinations Per MillionVaccinationStatistics: people vaccinated percent. + + bystadmiastoπόληStadtcathairvillecity + + rural municipalityLandgemeinde + + reviewévaluationRezension + + circulationoplageκυκλοφορίαciorclaíocht + + total population referencereferencia do total da populacao + + venerated inпоштован уvereerd in + + productionProduktion + + Human Development Index (HDI)Index für menschliche Entwicklung (HDI)Índice de Desenvolvimento Humano (IDH)a composite statistic used to rank countries by level of "human development" + + acceleració (s)acceleratie (s)przyspieszenie (s)επιτάχυνση (s)Beschleunigung (s)luasghéarú (s)accélération (s)acceleration (s)убрзање (s)variation de la vitesse + + has abstractخلاصہ + + inwonersaantalσυνολικός_πληθυσμόςEinwohnerzahlpopulação totalpopulation totalepopulation total + + number of platform levelsNumber of levels of platforms at the station. + + media typetype de médiaMedientypmediatypePrint / On-line (then binding types etc. if relevant)Imprimer / En-ligne (puis types associés etc. si nécessaire) + + generation units + + Gemini Award + + engine powerpuissance du moteurmotorvermogenPower to be expressed in Watts (kiloWatt, megaWatt)La puissance est exprimée en watts (kiloWatt, megaWatt) + + former broadcast networkehemalige Sendergruppeancienne chaîne de télévision généralisteA former parent broadcast network to which the broadcaster once belonged.Eine ehemalige Sendergruppe zu dem der Rundfunkveranstalter gehört hat. + + output historyhistorique de sortieExistence of multiple output dates.Indique qu'il existe plusieurs dates de sortie. Valeur oui / non. + + Gray subjectRefers to the famous 1918 edition of Gray's Anatomy. + + plantPflanzeφυτό植物 + + sister station + + seizoenχρόνιαJahreyearsсезона + + number of stationsnombre de stationsAnzahl der StationenNumber of stations or stops.Nombre de stations, gares ou arrêts. + + MeSH IDMeSH ID + + آسٹریلیا اوپن ڈبل + + Link from a Wikipage to a Wikipage in a different language about the same or a related subject.Reserved for DBpedia. + + mandate of a prefect of a romanian settlement + + serving size (g)Default serving size (eg "100 g" for the standard 100 g serving size). approximateCalories apply to this serving size + + boxing styleBoxstil + + oppervlakte (m2)έκταση (m2)Fläche (m2)área (m2)رقبہ (m2)superficie (m2)area (m2)област (m2)The area of the thing in square meters. + + type of tennis surfacetype de surface (tennis)tipo de surperficie(tennistype speelgrondThere 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. + + wsop wristbandWSOP наруквицаНаруквица коју осваја шампион WSOP-a. + + international phone prefixinternationale Vorwahl + + nameName + + human development index rank + + share of audienceAnteil der Zuschauer/Zuhörer + + wine regionWeinregionрегион вина + + broadcast station classαναμετάδοση ραδιοφωνικού σταθμού + + honoursEhrungenδιακρίσειςeerbewijzenHonours bestowed upon a Person, Organization, RaceHorse, etc + + gesticht doorzałożony przezgegründet vona bhunaighfondé parfounded byIdentifies the founder of the described entity. This can be a person or a organisation for instance. + + kindOfLanguage + + Contains a WikiText representation of this thing + + previous namefrüheren Namenvorige naam + + first mentionerste Erwähnung + + año de censoέτος απογραφήςZensusjahrannée de recensementcensus year + + percentage of a place's female population that is literate, degree of analphabetismpourcentage de la population féminine alphabétisée d'un lieu, degré d'analphabétismepercentage van de vrouwelijke bevolking dat geletterd is + + nfl season + + fibahof + + identification symbol + + opening yearopeningsjaarEröffnungsjahr + + cemeterykerkhofcimetièreFriedhof + + main islandHauptinsel + + millsCodeNLWindmotorenmillsCodeNLWindmotoren + + depiction description (caption)This property can be used to map image captions from Infoboxes + + number of seats in the land parlement + + collaborationσυνεργασίαZusammenarbeit + + iso code of a community + + election date leaderWahldatum des VorsitzendenThe date that leader was elected. + + population metro + + causalties + + designerσχεδιαστής + + taste or flavourGeschmack oder Aromasmaak + + minority floor leadernumber of office holder + + start xct + + conservation statusétat de conservation保全状況 + + blood groupgroupe sanguinομάδα αίματοςBlutgruppe + + current record + + project keywordA key word of the project. + + lowest placelieu le plus bas + + analog channelAnalogkanalαναλογικό κανάλιаналогни канал + + gold medal double + + regeringspartijκόμμα_αρχηγούRegierungsparteipartido do liderleader party + + number of houses present)Anzahl der vorhandenen Häuseraantal huizen aanwezigCount of the houses in the Protected AreaAantal huizen in afgegrensd gebied + + WoRMSWoRMSWoRMSWorld Register of Marine SpeciesRegistre mondial des espèces marines + + видимая звёздная величинаφαινόμενο μέγεθοςscheinbare Helligkeitapparent magnitudeпривидна звездана величина + + single rankingsEinzelrangliste + + trainer club + + literary genregenre littéraireliterair genreliterarische GattungA 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.Un genre littéraire est une catégorie de composition littéraire. Les genres peuvent être déterminés par la technique littéraire employée, le ton, le contenu, ou même (comme dans le cas des fictions) la longueur. + + dochterابنةκόρηTochterfilledaughter + + cloth size + + lymph + + complexioncor da pele + + eMedicine topiceMedicine topicDifferent from eMedicineSubject, which see + + information name + + mouth region + + world tournament bronzeброј бронзаних медаља са светских турнира + + start career + + primogenitor, first forebearstamvader + + size_vμέγεθος + + free prog score + + numberOfTriplesnombre de tripletsnumber of triples in DBpedianombre de triplets dans DBpedia + + bevolkingsdichtheid (/sqkm)πυκνότητα_πληθυσμού (/sqkm)Bevölkerungsdichte (/sqkm)घनत्व (/sqkm)population density (/sqkm) + + kanaalκανάλιKanalcanalchannel + + OCLCOnline Computer Library Center number + + first driver country + + infant mortalitymortalité infantileSäuglingssterblichkeitmortalidade infantil + + parking informationParkplatzinformationenInformation on station's parking facilities. + + Is a minor revisionEst une révision mineurThis property is used by DBpedia HistoryProprieté utilisée dans le cadre de DBpedia Historique + + siler medalistSilbermedaillengewinnermedalha de pratazilveren medaille drager + + Average size of the revision per monthTaille moyenne des révisions par moisused for DBpedia History > Subject must be a blank node containing a dc:date and a rdfs:valueutilisé par DBpedia Historique > Le sujet de cette relation doit être un noeud blanc contenant une dc:date et une rdfs:value + + apprehendedgefasst + + free danse score + + radio stationstation de radioradiozender + + Messier nameName for Messier objects + + حساب کی ضرورت + + lchf draft team + + block alloyκράμα μετάλλου + + general council + + home stadiumHeimstadion + + world team cupсветско клупско првенство + + lower age + + caused byπροκαλείται απόcasus + + sixth form studentsSchüler der Oberstufe + + sourceQuelleπηγή + + assets ($)Aktiva ($)περιουσιακά στοιχεία ($)اثاثے ($)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.Περιουσιακά στοιχεία και υποχρεώσεις αποτελούν μέρος του ισολογισμού μιας εταιρείας.Σε χρηματοοικονομική λογιστική,τα περιουσιακά στοιχεία είναι οι οικονομικοί πόροι. Οτιδήποτε ενσώματο ή άυλο, που είναι ικανό να ανήκει ή να ελέγχεται για να παράγει αξία και που κατέχεται για να έχει θετική οικονομική αξία θεωρείται ένα περιουσιακό στοιχείο.اثاثے اور واجبات کمپنی کی بیلنس شیٹ کا حصہ ہیں۔ مالیاتی اکاؤنٹنگ میں، اثاثے اقتصادی وسائل ہیں۔ کوئی بھی ٹھوس یا غیر محسوس چیز جو قدر پیدا کرنے کے لیے ملکیت یا کنٹرول کرنے کے قابل ہو اور جس کی مثبت اقتصادی قدر ہو اسے اثاثہ سمجھا جاتا ہے۔ + + type of electrificationArt der ElektrifizierungElectrification system (e.g. Third rail, Overhead catenary). + + service numberThe service number held by the individual during military service. + + statisticstatistisch + + a municipality's present nameheutiger Name einer Gemeindehuidige gemeentenaam + + fourth commander + + project objectiveProjektzielA defined objective of the project. + + محکمہ کا کوڈdepartementcode + + bouwstijlархитектурный стильαρχιτεκτονικό στυλstyle architecturalarchitectural styleархитектонски стил + + number of seatsnombre de placesAnzahl der Sitzeaantal plaatsen + + protestant percentage + + dissolution datedate de dissolutionontbindingsdatum + + nmberOfResourceWithTypenumber of resource in DBpedia with Class type (= Class entity) + + original start pointursprünglicher Ausgangspunktπρωταρχική_αρχή + + target space station station + + polesPolepôle + + founderGründerΙδρυτήςEin Gründer oder Gründungsmitglied einer Organisation, Religion oder eines Ortes. + + kolor włosówHaarfarbedath na gruaigecor do cabelohair color + + region link + + ending theme + + number of restaurantsnombre de restaurantsAnzahl der Restaurantsαριθμός εστιατορίων + + emblem + + tieUnentschieden + + available smart cardbenutzbare Chipkarteδιαθέσιμη έξυπνη κάρταSmartcard for fare payment system for public transit systems that are or will be available at the station.Chipkarte für automatische Bezahlsysteme im Personenverkehr die an diesem Bahnhof benutzt werden kann.Έξυπνη κάρτα για το σύστημα πληρωμής των ναύλων για τα δημόσια συστήματα μεταφορών που είναι ή θα είναι διαθέσιμα στο σταθμό. + + vice principalзаменик директора + + مردہ لڑائی کی جگہ + + feature + + colour hex codecode hexa de couleurFarben Hex CodeA colour represented by its hex code (e.g.: #FF0000 or #40E0D0)Une couleur représentée par son code hexadécimal (exemple : #FF0000 ou #40E0D0) + + prefecturePräfektur + + génerogenregatunekείδοςジャンルGenregenregenreThe genre of the thing (music group, film, etc.)Genre de chose (groupe musical, film, etc.) + + source confluencelugar de nacimientoπηγές + + wheelbase (μ)Radstand (μ)међуосовинско растојање (μ) + + formation datedate de formationformatie datumΙδρύθηκεsame as OntologyProperty:FoundingDate?est-ce la même chose que OntologyProperty:FoundingDate ? + + course (μ) + + jaar van creatieέτος δημιουργίαςEntstehungsjahrannée de créationyear of creation + + citesA document cited by this work. Like OntologyProperty:dct:references, but as a datatype property. + + named by language + + norwegian landskap + + notable studentσημαντικοί_φοιτητές + + mouth elevation (μ)ύψος_εκβολών (μ) + + presidentπρόεδροςPräsidentpresidenteprésidentpresident + + story editor + + former choreographerchoréographe précédentehemaliger Choreograph + + related functionssoortgelijke functiesThis property is to accommodate the list field that contains a list of related personFunctions a person holds or has heldDeze property is voor de lijst van persoonfuncties die een persoon (bv. een politicus) bekleedt of heeft bekleed + + pcc secretary + + sports function + + numberOfClassesWithResourcenombre de classes avec ressourcenumber of class in DBpedia with at least single resource (class entity)nombre de classes de DBpedia ayant au moins une ressource unique (entité de classe) + + model start date + + affairمعاملہ + + particular sign + + name in Minnanyu Chinesenaam in Minnanyu Chinees + + MeSH name + + coaching record + + daylight saving time zoneSommerzeitzone + + damHirschkalb + + subsequent infrastructurespätere Infrastrukturvolgende infrastructuur + + number of gravesAnzahl der Gräberaantal graven + + photographerphotographeFotograf + + population percentage under 12 years + + commissioner date + + numberOfUniqeResourcesnumber of unique resource without redirecting + + programme formatThe programming format describes the overall content broadcast on a radio or television station. + + UN/LOCODEUN/LOCODEUN/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.UN/LOCODE је код Уједињених нација за трговинске и транспортне локације. Као што су луке, железнички и путни терминали, аеродроми, поште и гранични прелази. + + volume quote + + Different usage of an airportUnterschiedliche Nutzung eines Flughafensοι χρήσεις ενός αεροδρομίου + + product shape + + skuespilleremet in de hoofdrolηθοποιοίacteurstarring + + NRHP Reference Number + + century breaksCentury Breaksnumber of breaks with 100 points and moreAnzahl Breaks mit 100 Punkten oder mehr, wird nicht übersetzt + + subsidiarytreinadorfiliale + + accessرسائی + + free prog competition + + bishopricархиерейско наместничествоA bishopric (diocese or episcopal see) is a district under the supervision of a bishop. It is divided into parishes. Compare with eparchy + + influencedbeeinflussta influencéεπηρέασεThe subject influenced the object. inverseOf influencedBy. Subject and object can be Persons or Works (eg ProgrammingLanguage) + + picture formatformat d'imageBildformat + + showSendungspectacle + + playsslaghand + + oppervlakte land (m2)έκταση_στεριάς_περιοχής (m2)زمین کا علاقہ (m2)area land (m2)површина земљишта (m2) + + منسلک سازینه + + most winsdie meisten Siege + + active years end year manager + + main interest + + portfolioPortfolio + + GARDNameGARDNameGARDNameGARDName + + musiciansmusiciensMusikerμουσικοί + + student + + number of speakersaantal sprekersAnzahl Sprecher + + ادئیگی کی تاریخ + + locatielokalizacjaτοποθεσία所在地StandortlocalizaçãoemplacementlocationThe location of the thing. + + explorerexplorateurErforscherkaşif + + blazonWappenblasonемблемаCoat of arms (heraldic image) or emblem + + snow park number + + dist_ly + + number of starsnombre d'étoilesAnzahl der Sterne + + setup time (s) + + match point + + vice leader partystellvertretender Parteivorsitzendepartido do vicelider + + parliamentParlament + + league championLiga-Meisterşampiyon + + throwing side + + last launchletzter Start + + Character size of wiki pageTaille des caractères des pages wikiNeeds to be removed, left at the moment to not break DBpedia LiveA supprimer, laisser encore pour ne pas casser DBpedia Live + + hip size (μ)Hüftumfang (μ)heupomvang (μ)ヒップ (μ) + + authority title of a romanian settlementرومانیہ کی تصفیہ کا اقتدار کا موضوع + + collectioncollectionSammlungσυλλογή + + water percentage of a placeWasseranteil von einem Ortпроценат воде неког места + + last raceletztes Rennenτελευταίος αγώνας + + serving temperatureServing temperature for the food (e.g.: hot, cold, warm or room temperature). + + idioma originaloorspronkelijke taalOriginalsprachelangue originaleoriginal languageThe original language of the work. + + recommissioning date + + librettolibretto + + unicodeUnicodeunicodeτο διεθνές πρότυπο Unicode στοχεύει στην κωδικοποίηση όλων των συστημάτων γραφής που χρησιμοποιούνται στον πλανήτη. + + world openсветско отворено првенство + + amateur tie + + medicationmédicationMedikation + + makeup artisttruccatorethe person who is responsible for the actors makeup + + name in latinlateinische Namelatijnse naam + + pole driver team + + differential diagnosisdiagnostic différentielDifferentialdiagnose + + agglomerationагломерација + + visitors per yearгодишњи број посетилацаbezoekers per jaarBesucher pro Jahr + + branch tova versυποκατάστημα + + ofs code of a settlementIdentifier used by the Swiss Federal Institute for Statistics + + brain info numberαριθμός νοητικής πληροφόρησης + + organorgelName and/or description of the organNaam en/of beschrijving van het orgel + + bloc de la taula periòdicaблок периодической таблицыblok układu okresowegoBlock des Periodensystemselement blockA block of the periodic table of elements is a set of adjacent groups.La taula periòdica dels elements es pot dividir en blocs d'elements segons l'orbital que estiguen ocupant els electrons més externsAls Block im Periodensystem werden chemische Elemente nach den energiereichsten Atomorbitalen ihrer Elektronenhülle zusammengefasst.совокупность химических элементов со сходным расположением валентных электронов в атоме. + + Alps sectionτμήμα των άλπεωνАлпска секцијаsezione alpinathe Alps section to which the mountain belongs, according to the SOIUSA classification + + relationBeziehungσχέσηrelatie + + Aantal onthoudingenΑριθμός αποχών μετά από ψηφοφορίαAnzahl der Enthaltungen nach der AbstimmungstaonadhپرہیزabstentionsNumber of abstentions from the votean líon daoine a staon ó vótáilووٹ سے پرہیز کرنے والوں کی تعداد + + city since + + scale factorfacteur d'échelleScale factor (ex: for images) to zoom out (value > 1) or reduce (0 < value < 1) the proportions. Decimal numbers use dot séparator; ex : 0.75Facteur d'échelle (par exemple pour des images) pour aggrandir (valeur > 1) ou réduire (0 < valeur < 1 les proportions. Pour les nombres décimaux, utiliser un point comme séparateur; ex : 0.75 + + Laurence Olivier Award + + cargo gas (g) + + CMP EVA duration (s) + + cargo water (g) + + function end date + + foundation placeGründungsort + + supertribusbovenstam + + fecha de fineinddatumEnddatumdate de finend dateThe end date of the event. + + marchMarschmarcha + + شروع + + used in warim Krieg eingesetztкоришћено у ратуwars that were typical for the usage of a weapon + + wins at JLPGAпобеде на JLPGA + + Link to the Wikipage edit URLReserved for DBpedia. + + number of deathsTotenzahlAantal doden + + Number of revision per monthNombre de révisions par moisused for DBpedia History > Subject must be a blank node containing a dc:date and a rdfs:valueutilisé par DBpedia Historique > Le sujet de cette relation doit être un noeud blanc contenant une dc:date et une rdfs:value + + ICAO Location IdentifierΙΚΑΟ + + مجموعی آبادی کا سال + + last publication dateletztes VeröffentlichungsdatumDate of the last publication. + + automobile modelAutomobilmodellμοντέλο αυτοκινήτου + + Dutch PPN codeDutch PPN code is a library cataloguing code for collection items (books, journals and the like).Dutch PPN code is in de Nederlandse bibliotheekwereld een cataloguscode (PICA) voor items in de collectie. + + distributing label + + third placedritter Platz + + number of participating nationsAnzahl der teilnehmenden Nationen + + car number + + perimeter (μ)omtrek (μ) + + champion in singlekampioen enkelspelchampion en simpleCampeón en simplewinner of a competition in the single session, to distinguish from the double session (as in tennis) + + victims (string)die Opfer (string)жртви (string)Type, description, or name(s) of victims of a ConcentrationCamp, Criminal, SerialKiller, or some other atrocity + + lowestχαμηλότερο + + aircraft userFlugzeugnutzerχρήστης αεροσκάφουςusuario del avión + + active years start year managerفعال سال شروع سال Mgr + + number of lanesAnzahl der Fahrstreifennombre de voies + + animatorανιμέιτορаниматор + + ideologieιδεολογίαIdeologieideologiaideology + + epochmoment in time used as a referrence point for some time-vaying astronomical quantity + + The extension of this fileExtension de ce fichier + + virtual channelвиртуелни каналεικονικό κανάλι + + aircraft bomberавион бомбардерβομβαρδιστικό αεροσκάφος + + election majoritynumber of votes the office holder attained + + national ranking + + NNDB id + + chair label + + order date + + stemtypeStimmlagetype de voixvoice typeтип гласаvoice type of a singer or an actortype de voix pour un chanteur ou un acteur + + varietalsRebsorten + + former partnerpartenaire précédentehemaliger Partner + + locus supplementary data + + escalafon + + end pointEndpunktσημείο_τέλους + + motivemotifMotivThe motive of the crime(s) this individual is known for.Motif du ou des crimes pour lesquels cette personne est connue. + + fieldFeld + + regionrégionRegion + + fastest lapταχύτερος γύροςschnellste Runde + + enshrined deity祭神 + + related mean of transportation + + pole driver + + land percentage of a place + + lowest region + + sheading + + modelModellmodèle + + originally used forursprünglich verwendet füroorspronkelijk gebruikOriginal use of ArchitecturalStructure or ConcentrationCamp, if it is currently being used as anything other than its original purpose. + + Wikipage redirectReserved for DBpedia. + + Dutch PPN codeDutch 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.Dutch Winkel ID is een code toegekend door Lydia Winkel in haar boek over De Ondergrondse Pers 1940-1945. + + Has KML data associated with it (usually because of KML overlays) + + last flight start date + + aircraft interceptorαναχαίτιση αεροσκάφουςавион пресретач + + borderGrenzeσύνορα + + bed countaantal beddenAnzahl Bettenαριθμός κρεβατιών + + service module + + speed limit (kmh)Tempolimit (kmh) + + best wsop rank + + restore dateημερομηνία ανακαίνισης + + PfizerPfizer辉瑞American multinational pharmaceutical corporation the COVID-19 vaccine Pfizer–BioNTech COVID-19 vaccineCorporation pharmaceutique multinationale américaine, vaccin contre le COVID-19, vaccin Pfizer–BioNTech COVID-19辉瑞是源自美国的跨国制药、生物技术公司,营运总部位于纽约,研发总部位于康涅狄格州的格罗顿市 + + unesco + + batting sideSchlagarm + + vastest lakeλίμνη + + team nameTeamnameόνομα ομάδας + + red ski piste number + + classesclassesKlasseτάξεις + + schrijverσεναριογράφοςschriftstellerscrittoreauteurписац + + big pool record + + mean radius (μ)durchschnittlicher Radius (μ)μέση ακτίνα (μ) + + country top level (tld)domínio de topo (tld)domaine de premier niveau (tld) + + size logo + + number of doctoral studentsAnzahl der Doktoranden + + best ranking finishbeste Platzierung im Ranglistenturnier + + staatstanνομόςStaatstate + + volksliedгимнύμνοςHymnehinohymneanthemхимнаOfficial song (anthem) of a PopulatedPlace, SportsTeam, School or otherChant officiel (hymne) d'un lieu habité, d'une équipe sportive, d'une école ou autre + + nationNation + + ICAO codeICAO designation for airline companies + + doctoral advisorDoktorvaterδιδακτορικός_σύμβουλος + + third driver country + + building end dateΗμερομηνία λήξης κατασκευήςdate de fin de constructionBuilding end date of an ArchitecturalStructure, man-made Lake, etc. For older structures this can be just a year or century, for newer structures an exact date is preferredDate de fin de construction d'une structure architecturale, d'un lac artificiel, etc. Pour les structures plus anciennes cela peut être simplement une année ou un siècle, pour les structures plus récentes il est préférable de donner la date exacte + + number of postgraduate students + + impact factorImpact FactorThe impact factor, often abbreviated IF, is a measure reflecting the average number of citations to articles published in science and social science journals.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öffentlichten Artikel zitieren. Je höher der Impact Factor, desto angesehener ist eine Fachzeitschrift. + + licenseeLizenzinhaberIdentify which company or entity holds the licence (mostly string are used in Wikipedia, therefore range is xsd:sting). + + discontinued + + AstrazencaAstrazenca阿斯利康制药AstraZeneca plc is a British-Swedish multinational pharmaceutical and biotechnology company with its headquarters at the Cambridge Biomedical Campus in Cambridge, England.AstraZeneca plc est une multinationale pharmaceutique et biotechnologique anglo-suédoise dont le siège social est situé au Cambridge Biomedical Campus à Cambridge, en Angleterre.阿斯利康制药公司,是一家由瑞典阿斯特公司(Astra AB)和英国捷利康公司(Zeneca Group PLC)于1999年4月6日合并而成的大型英瑞合资生物制药企业 + + kaartχάρτηςLandkartemapacartemapA map of the place.Χάρτης μιας περιοχής.Eine Landkarte des Ortes. + + land + + major islandgroße Inselmaior ilha + + green long distance piste number + + tessituratessiture + + champion in double femalechampion en double femmesCampeón en doble mujereswinner of a competition in the female double session (as in tennis) + + undrafted year + + region servedwerkgebied + + monument code (municipal)monumentcode gemeentelijke monumentenCode assigned to (Dutch) monuments at the municipal level, deemed to be of local valueCode toegewezen aan monumenten die op gemeenteniveau onder bescherming geplaatst zijn + + Link to the Wikipage revision URLReserved for DBpedia. + + vorige evenementVorveranstaltungevento anteriorévénement précédentprevious event + + capital countryHauptstadt Land + + athleticsLeichtathletikαθλητισμός + + important stationimportant nœud d'échangeswichtiger VerkehrsknotenpunktDestinations, depots, junctions, major stops, hubs... + + racesRennenαγώνας + + administrative statusانتظامی درجہadministrativer Statusадминистративни статус + + roland garros mixed + + انعام + + numberOfOutdegreenumber of all outdegrees in DBpedia (same ourdegrees are counting repeatedly). This number is equal to number of all links (every link is OutDegree link) + + oomاخو الامθείοςおじさんOnkeluncle + + affiliationιστολόγιοlidmaatschapприпадност + + college hof + + NORDNORDNORDNORD + + national years代表年 + + picture descriptionBildbeschreibung + + team point + + ascentAufstiegανάβασηAscent of a celestial body, aircraft, etc. For person who ascended a mountain, use firstAscent + + securitySicherheitασφάλειαSafety precautions that are used in the building.Sicherheitsmaßnahmen, die für das Gebäude getroffen wurden.Μέτρα ασφαλείας για την προστασία ενός κτιρίου. + + winter temperature (K)Wintertemperatur (K)зимска температура (K) + + opening theme + + main artistartiste principalName of the main artist in the group.Nom de l'artiste principal lorsque plusieurs artistes sont associés. + + diocesediocèseDiözesebisdomA religious administrative body above the parish levelStructure administrative religieuse au-dessus du niveau paroissial + + amateur koброј аматерских нокаута + + vice chancellorпотканцеларVizekanzler + + wins at NWIDEпобеде на NWIDE + + principal engineerπρώτος_μηχανικός + + roleRolleρόλοςrôle + + player season + + treatmenttraitementBehandlung + + damsire + + docked time (s) + + mvp + + Link to the Wikipage history URLReserved for DBpedia. + + element aboveélément supérieurэлемент снизуhoger elementelement placed above current element in D.I.Mendeleev's tableélément placé au-dessus de l'élément courant dans le tableau périodique des éléments de D.I.MendeleevЭлемент снизу под текущим элементом в таблице Д.И.Менделеева + + building start yearannée du début de constructionbouw start jaarέτος έναρξης κατασκευής + + handisport + + similarähnlichπαρόμοιοςpodobny + + size thumbnail + + population year + + owning organisationοργανισμός + + capital regionHauptstadtregion + + stationscodeκωδικός πρακτορείουStationsabkürzungایجنسی اسٹیشن کوڈagency station codeкод станицеAgency station code (used on tickets/reservations, etc.).Κωδικός πρακτορείου (χρησιμοποιείται σε εισιτήρια/κρατήσεις,κτλ.).ایجنسی اسٹیشن کوڈ (ٹکٹ/مخصوص کرنے کا عمل وغیرہ پر استعمال کیا جاتا ہے)۔ + + active years end date managerفعال سال کی آخری تاریخ Mgr + + constituency districtWhalbezirkcirconscription électorale + + amateur fightаматерских борби + + participates/participated innimmt Teil anneemt deel aan + + Dewey Decimal ClassificationThe Dewey Decimal Classification is a proprietary system of library classification developed by Melvil Dewey in 1876. + + can baggage checkedGepäckkontrolle möglichسامان کی جانچ پڑتال کر سکتے ہیںWhether bags can be checked. + + discipleélèveA person who learns from another, especially one who then teaches others..Celui qui apprend d’un maître quelque science ou quelque art libéral. + + iconographic attributesStandard iconographic elements used when depicting a Saint: pontifical, episcopal, insignia, martyrdom instruments + + Delta size of a revision with last oneDelta de revision avec la précédante + + beatified datedate de béatificationzalig verklaard datum + + area rankповршина рангعلاقے کا درجہ + + administrative collectivityانتظامی اجتماعیت + + third teamdritte Mannschaftτρίτη ομάδα + + internationallyinternational + + Olivier Award + + Alps groupομάδα των άλπεωνgruppo alpinoалпска групаthe Alps group to which the mountain belongs, according to the SOIUSA classification + + eventévénementVeranstaltungevento + + vehicles per dayброј возила по дануFahrzeuge pro Tag + + huurderενοικιαστήςMieterlocatairetenant + + DeathsDécès死亡Permanent, irreversible cessation of all biological functions that sustain a living organismArrêt permanent et irreversible de toutes les fonctions biologiques qui maintiennent en vie un organisme是相對於生命體存在存活的生命現象,指维持一个生物生命存活的所有功能生物学功能的永久终止 + + regime + + Tony Award + + historical maphistorische Karteιστορικός χάρτης + + seaMeermer + + current memberaktuelles Mitglied + + lunar orbit time (s)Mondumlaufzeit (s) + + pictures Commons categoryWikimedia CommonsCategory for pictures of this resource + + language regulator or academytaal instituut + + gross domestic product (GDP)BruttoinlandsproduktThe nominal gross domestic product of a country (not per capita).Das nominale Bruttoinlandsprodukt eines Landes (nicht pro Einwohner). + + blazon link + + project coordinatorProjektkoordinatorrégisseurThe coordinating organisation of the project.Organisation coordinatrice du project. + + radioradioRadioραδιόφωνοTo ραδιόφωνο είναι η συσκευή που λειτουργεί ως "ραδιοδέκτης - μετατροπέας" όπου λαμβάνοντας τις ραδιοφωνικές εκπομπές των ραδιοφωνικών σταθμών τις μετατρέπει σε ήχο. + + eerste publicatiedatumdata pierwszego wydaniaDatum der Erstausgabedate de la première publicationfirst publication dateDate of the first publication.Datum der ersten Veröffentlichung des Periodikums. + + length of a coastLänge einer Küste + + population urbanStadtbevölkerung + + production end date + + original end pointπρωταρχικό_σημείο_τέλους + + zodiac signsigno zodiacalзодияZodiac Sign. Applies to persons, planets, etcЗодиакален знак. Приложимо за хора, планети и пр + + first flight start date + + dead in fight date + + kind of coordinate + + military branchThe service branch (Army, Navy, etc.) a person is part of. + + significant buildingbedeutendes Gebäude + + olympic games bronzebrons op de Olympische Spelen + + using country + + LCCNThe 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. + + ضابطہ + + stylestilstileestilo + + number of intercommunality + + cantidad de medallas de oro ganadasaantal gewonnen gouden medaillesAnzahl der Goldmedaillennomber de médailles d'or gagnéesnumber of gold medals won + + running matecompañero de candidatura + + VaccineVaccin疫苗 + + population percentage female + + CO2 emission (g/km) + + gravegrafGrab + + closedfermégeschlossengesloten + + ist + + colonial nameKolonialname + + wha draft yearWHA година драфта + + quebecer title + + Blazon caption + + route junctionWegabzweigungA junction or cross to another route.Eine Abzweigung oder Kreuzung zu einem anderen Verkehrsweg. + + provost + + Number Of MunicipalitiesAnzahl der GemeindenAantal gemeentennumero de municipios + + manager years end year + + start date and timedatum en tijd van beginThe start date and time of the event. + + projectProjektprojet + + abbreviationمخفف + + total tracksthe total number of tracks contained in the album + + superbowl win + + conservation status system + + family memberFamilienmitgliedfamilielid + + number of participating male athletesAnzahl der teilnehmenden männlichen Athletennombre d'athlètes masculins participant + + vehicleвозилоόχημαVehikelvehicle that uses a specific automobile platformόχημα που χρησιμοποιεί μια συγκεκριμένη πλατφόρμα αυτοκινήτων + + philosophicalSchool + + DoseDose剂量Dose means quantity (in units of energy/mass) in the fields of nutrition, medicine, and toxicology. Dosage is the rate of application of a dose, although in common and imprecise usage, the words are sometimes used synonymously.Dose signifie quantité (en unités d'énergie/masse) dans les domaines de la nutrition, la médecine et la toxicologie. Le dosage est le taux d'application d'une dose, bien que dans l'utilisation habituelle et imprécise qui en est faite, les mots sont quelques fois synonymes. + + backgroundHintergrundφόντο + + norwegian centercentre norvégien + + formation yearannée de formationformatie jaarequivalent / sub property of OntologyProperty:foundingYear?est-ce un équivalent ou une sous-propriété de OntologyProperty:foundingYear? + + demolition yearannée de démolitionsloop jaarThe year the building was demolished.Année où le bâtiment a été démoli. + + SeitenverhältnisAspect Ratioλόγοςپہلو کا تناسب(ٹیلی وژن) تناسب نظر / عکس کی چوڑائی کا بلندی سے تناسب + + zdbzdbIdentifier for serial titles. More precise than issnzdb је серијски број који се користи за индетификацију. Прецизнији је од issn. + + percentage of alcoholAnteil von Alkoholalcoholpercentagepercentage of alcohol present in a beverage + + purchasing power parity rank + + worldmondeWeltсвет + + red long distance piste number + + government mountain + + subregion + + national tournament gold + + unitary authorityунитарна власт + + nom de naixementgeboortenaamimię i nazwisko przy urodzeniuόνομα_γέννησηςGeburtsnamebirth name + + Cesar Award + + bloedgroepομάδα αίματος血液型Blutgruppetipo sanguíneogroupe sanguinblood type + + followsfolgtvient aprèssigue + + term periodχρονική περίοδος + + omschrijvingπεριγραφήBeschreibungdescriptiondescriptionShort description of a persondescription courte d'une personne + + EINECS number + + mouth place + + reporting markA 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. + + first pro matcherstes Profispiel + + naam leiderόνομα_αρχηγούशासक का नामprésidentleader name + + share date + + conflictconflitKonflikt + + mill dissapeared code NLverdwenen molen code NL + + tag + + subdivision link + + music composerkomponistcomponistμουσική + + number of lawyersAnzahl RechtsanwälteNumber of lawyers or attorneys in the company. + + prospect team + + criteriaκριτήριοKriteriencritério + + home townHeimatort + + season numberThe season number to which the TelevisionEpisode belongs. + + is route stopest un arrêtindicate a place is a stop on a road.indique qu'un lieu est un arrêt sur une route. + + scaleMaßstab + + capture datedate de capture + + width quote + + provincieδήμοςVerwaltungsbezirkانتظامی ضلعadministrative districtуправни округ + + national affiliationafiliacao nacional + + demographicsDemografie + + geologyGeologieγεωλογίαgéologie + + maximum temperature (K)Maximaltemperatur (K)μέγιστη θερμοκρασία (K) + + best lapbeste Runde + + promotedyükselenler + + namesNamen + + final flightletzter Flugdate of final flight + + other winsSonstige Siege + + lethal when given to micedodelijk voor muizen + + subprefecture + + is close toà côté delieu proche d'un autre.place close to another place + + usesкористи + + τατουάζTätowierungtatuagemtatouagetattoo + + launches + + fansgroup + + populationpopulationall the inhabitants of a particular place; ex: 14200nombre total d'habitants du lieu; ex: 14200 + + warsKriegeратовиπολέμους + + end date and timedatum en tijd van eindeThe end date and time of the event. + + successoropvolgerNachfolger後任者 + + previous demographicsfrühere Demografie + + start occupation + + Votes against the resolutionStimmen gegen die ResolutionAantal stemmen tegen + + number of seasonsnombre de saisonsAnzahl der Staffeln + + neighbour constellationsNachbarsternbilder + + right tributaryrechter Nebenflussδεξιοί_παραπόταμοι + + prefixPräfix + + country with first spaceflight + + region typeregio-type + + specialistSpezialist + + perpetratordaderTäterauteur + + molar massMolare MasseMolaire massa + + gold medal mixed + + delivery dateleverdatum + + purchasing power parity year + + championshipsgewonnene Title + + distance to Cardiff (μ)απόσταση από το Cardiff (μ) + + first broadcastErstausstrahlung + + referent bourgmestre + + numero de jugadoresαριθμός παιχτώνAnzahl der Spielernombre de joueursnumber of players + + leagueligueLigaπρωτάθλημα + + okato codeCode used to indentify populated places in Russia + + produced byhergestellt durch + + touristic site + + frazioni + + بحث کی تاریخ + + VIAF IdVIAF IdVIAF codeVirtual International Authority File ID (operated by Online Computer Library Center, OCLC). Property range set to Agent because of corporate authors + + monument code (national)monumentcode rijksmonumentenCode assigned to (Dutch) monuments at the national level, deemed to be of national valueCode toegewezen aan (Nederlandse) monumenten, vallend onder bescherming op rijksniveau + + crewCrew + + bandbandeμπάντα + + number of the previous tracknuméro de la piste précédentenumber of the previous track of the recorded work.numéro de la piste précédente du support. + + blue long distance piste number + + total discsthe total number of discs contained in the album + + friendFreundφίλος + + شکست + + head + + mission duration (s)Missionsdauer (s) + + european championshipEuropameisterschaft + + NDL idNational Diet Library of Japan identificator. http://id.ndl.go.jp/auth/ndlna/$1 + + model end year + + command structureKommandostruktur + + main characterpersonnage principal + + coach season + + masters wins + + grup de la taula periòdicaгруппа периодической системыgrupa układu okresowegoGruppe des Periodensystemsgrúpa an tábla pheiriadaighelement groupUn grup d'elements equival a una columna de la taula periòdica.последовательность атомов по возрастанию заряда ядра, обладающих однотипным электронным строением.grupa jest pionową kolumną w układzie okresowym pierwiastków chemicznych.Unter einer Gruppe des Periodensystems versteht man in der Chemie jede Spalte des Periodensystems.Séard atá i gceist le grúpa sa choimhthéacs seo ná colún ceartingearach i dtábla peiriadach na ndúl ceimiceach.In chemistry, a group (also known as a family) is a column of elements in the periodic table of the chemical elements. + + wing area (m2)Flügelfläche (m2)површина крила (m2) + + linked space + + statsborgerskabburgerschapυπηκοότηταStaatsangehörigkeitcitoyennetécitizenship + + route start locationOrt des WeganfangsThe start location of the route.Der Startort des Verkehrswegs. + + olympic oath sworn by athlete + + depth quote + + final lost double + + wins at japan + + handHand + + EC numberEC番号 + + tamaño de la imagen (px)afbeeldingsgrootte (px)μέγεθος εικόνας (px1)イメージサイズ (px2)Bildgröße (px)taille de l'image (px)image size (px)the image size expressed in pixelstaille de l'image en pixels + + jockeyJockey + + Link from a Wikipage to an external pageReserved for DBpedia. + + whole areagesamter Bereich + + next missionnächste Missionmision siguiente + + its calculation needsвычисление требуетحساب کی ضرورت + + Fatality RateNumber of deaths from pandemic compared to the total number of people diagnosed. + + compilercompilateurFor compilation albums: the person or entity responsible for selecting the album's track listing.Pour les albums qui sont des compilations, personne ou entité responsable du choix des pistes de l'album. + + domaindomeindomaineドメイン_(分類学) + + kind of rockArt von Gestein + + IATA codeIATA designation for airline companies + + number of classroomsαριθμός αιθουσώνnombre de salles de classe + + cara Astrona AεξώφυλλοSingletaobh aایک طرفa sideстрана + + namenomназвание + + aktive Jahreفعال سالannées d'activitéactive yearsактивне годинеAlso called "floruit". Use this if the active years are in one field that can't be split. Else use activeYearsStartYear and activeYearsEndYearAppelé aussi "floruit". Utillisez ceci si les années d'activité sont dans un même domaine non fractionnable. Sinon utilisez activeYearsStartYear et activeYearsEndYear + + echtgenootσύζυγος配偶者Ehepartnerspousethe person they are married toΤο άτομο με το οποίο κάποιος είναι παντρεμένος + + track numberTitelnummerνούμερο τραγουδιού + + disbanded + + crew sizetaille de l'équipageBesatzungsstärke + + LCCThe Library of Congress Classification (LCC) is a system of library classification developed by the Library of Congress. + + battlebatailleveldslagSchlacht + + number of linesAnzahl der Liniennombre de lignesNumber of lines in the transit system.Nombre de lignes dans le système de transport. + + glycemic indexIndicates a Food's effect on a person's blood glucose (blood sugar) level. Typically ranges between 50 and 100, where 100 represents the standard, an equivalent amount of pure glucose + + مصنف + + right ascension + + body discoveredLeiche entdecktανακάλυψη σώματος遺体発見 + + elevator countAufzüge + + agencyایجنسیAgenturделатност + + fuel systemKraftstoffsystem + + lah hof + + north-west placelieu au nord-ouestindique un autre lieu situé au nord-ouest.indicates another place situated north-west. + + Digital Library code NLDBNL code NLidentifier in Dutch digital library (dbnl)ID in Digitale Bibliotheek voor de Nederlandse Letteren (dbnl) + + launch vehicle + + aircraft attackFlugzeugangriffнапад из ваздухаεπίθεση αεροσκάφους + + page length (characters) of wiki pageReserved for DBpedia. + + institutionInstitutioninstitutie + + clubομάδαクラブVereinclub + + service end year + + prime ministerminister-presidentPremierminister + + DefunctناکارہIf the company is defunct or not. Use end_date if a date is givenاگر کمپنی ناکارہ ہے یا نہیں۔ اگر تاریخ دی گئی ہو تو اختتامی_تاریخ استعمال کریں۔ + + albedoalbedoалбедоreflection coefficientσυντελεστής ανάκλασης + + retirement datepensioendatum + + ISO 3166-1 codedefines codes for the names of countries, dependent territories, and special areas of geographical interest + + bust-waist-hip Sizeразмер бюст-талия-ханш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 + + previous entity + + featuresχαρακτηριστικόkenmerk + + fuel typeτύπος καυσίμουKraftstofftyp + + old nameancien nomπαλιό όνομαalter Name + + painterpeintreMalerζωγράφος + + BRIN codeBrin codeThe code used by the Dutch Ministry of Education to identify a school (as an organisation) + + number of graduate studentsZahl der Studenten + + military unitMilitäreinheitFor persons who are not notable as commanding officers, the unit (company, battalion, regiment, etc.) in which they served. + + commanderBefehlshabercommandant + + sound recordingSound recording somehow related to the subject + + number of lifts索道数Number of lifts. + + PandemicPandémie瘟疫Global epidemic of infectious diseaseEpidémie globale de maladie infectieuse也称大流行,是指某种流行病的大范围疾病爆发,其规模涉及多个大陆甚至全球(即全球大流行),并有大量人口患病 + + jeugdclubユースクラブJugendclubyouth clubомладински клуб + + flooding datedate d'innondation + + AFI Awardاے ایف آئی انعام + + musical artist + + کل علاقے کی درجہ بندی + + per capita income ($)Pro-Kopf-Einkommen ($)renda per capita ($) + + jaartemperatuur (K)ετήσια θερμοκρασία (K)Jahrestemperatur (K)température annuelle (K)annual temperature (K)годишња температура (K) + + capacity factor + + verblijfplaatsmiejsce zamieszkaniaκατοικία居住地ResidenzresidencePlace of residence of a person. + + principal areaHauptbereich + + elevation quote + + maximum ELO rating + + measurementsMessungenmedidas + + price ($)Preis ($)The price of something, eg a journal. For "total money earned by an Athlete" use gross + + military functionmilitärische Funktion + + sister college + + first gameerstes Spiel + + building start datedate de début de constructionΗμερομηνία έναρξης κατασκευήςBuilding start date of an ArchitecturalStructure, man-made Lake, etc. For older structures this can be just a year or century, for newer structures an exact date is preferredDate de début de construction d'une structure architecturale, d'un lac artificiel, etc. Pour des structures plus anciennes cela peut être simplement l'année ou le siècle, pour les structures plus récentes il est préférable de donner la date exacte + + assemblyMontageσυνέλευση + + resultFolgeαποτέλεσμα + + علم کتاب داری کی اعشاریہ درجہ بندیعلم کتاب داری کی اعشاریہ درجہ بندی لائبریری کی درجہ بندی کا ایک ملکیتی نظام ہے جسے میلویل ڈیوی نے 1876 میں تیار کیا تھا۔ + + length of a frontier + + deanDekanπρύτανηςdecaan + + Average size of the revision per yearTaille moyenne des révisions par annéeused for DBpedia History > Subject must be a blank node containing a dc:date and a rdfs:valueutilisé par DBpedia Historique > Le sujet de cette relation doit être un noeud blanc contenant une dc:date et une rdfs:value + + original maximum boat beam (μ) + + tribusStämmestam + + phone prefix label of a settlement + + old provinceancienne provincealte Provinz + + DrugBankDrugBank + + atomic weightMais adamhach choibhneastathe ratio of the average mass of atoms of an element (from a single given sample or source) to 1⁄12 of the mass of an atom of carbon-12Maiseanna adamh, a chuirtear síos i dtéarmaí aonaid maise adamhaí u. + + pro bowl pick + + other language of a settlementautre langue de la colonieanderen Sprache einer Siedlung + + Radius_ly + + bezoekersaantalαριθμός επισκεπτώνBesucherzahlnombre de visiteursnumber of visitors + + displacement (g)Deplacement (g)A ship's displacement is its mass at any given time. + + designation of runway + + mouth countryχώρες_λεκάνης + + orbital period (s)Umlaufzeit (s)Περίοδος περιφοράς (s) + + FCFC + + wingspan (μ)Spannweite (μ)распон крила (μ) + + مقامی حکومت کی انجمن + + Alps major sectorглавни Алпски секторσημαντικότερος τομέας των άλπεωνgrande settore alpinothe Alps major sector to which the mountain belongs, according to the SOIUSA classification + + law country + + number of officialsZahl der Beamten + + call signindicativo de chamadaتعارفی نشان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.Indicativo de chamada (também chamado de call-sign, call letters ou simplesmente call) é uma designação única de uma estação de transmissão de rádio. Também é conhecido, de forma errônea, como prefixo.تعارفی نشان (جسے کال کا نام یا کال لیٹر بھی کہا جاتا ہے، یا مختصراً کال کے طور پر جانا جاتا ہے) ٹرانسمیٹنگ اسٹیشن کے لیے ایک منفرد عہدہ ہے۔ + + colleagueColleague 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). + + service start year + + international phone prefix label + + approved rating of the Entertainment Software Self-Regulation Body in Germanyzugelassene Bewertung der Unterhaltungssoftware Selbstkontrolle in Deutschlandодобрени рејтинг од стране регулаторног тела за забавни софтвер у Немачкој + + last flight end date + + left child + + manager clubClubmanager監督チーム + + last family memberletztes Familienmitgliedlaatste drager familienaam + + aircraft electronicηλεκτρονικό αεροσκάφος + + number of neighbourhood + + us open singleUS Open појединачно + + overall recordGesamtbilanz + + ptakπτηνάVogeléanoiseaubirdBirds are uniformly vertebrate animals, the vast majority of which can fly with their wings.Les oiseaux sont uniformément des animaux vertébrés, dont la grande majorité peut voler avec leurs ailes.Τα πτηνά είναι ζώα ομοιόθερμα σπονδυλωτά, που στη συντριπτική πλειονότητα τους μπορούν να πετούν με τις πτέρυγες ή φτερούγες τους. + + rebuilder + + resting placeRuhestätte埋葬地 + + geologic periodpériode géologique + + largest citygrößte Stadt + + secondLeadervice-voorzitter + + twin cityPartnerstadttweeling stad + + document numberDokumentnummerdocumentnummerIdentification a document within a particular registry + + filling stationstation service + + hairs + + flowerfleurBlumeλουλούδι + + production start dateProduktionsbeginn + + rankrangPlatzierungRank of something among other things of the same kind, eg Constellations by Area; MusicalAlbums by popularity, etcRang d'un élément parmi d'autres éléments du même type, par ex. les constellations par zone; les albums de musique par popularité, etc... + + number of countiesAnzahl der Landkreisenúmero de condados + + bandlidμέλος μπάνταςBandmitgliedmembre de groupe de musiqueband memberA member of the band.Un membre du groupe de musique.Ένα μέλος της μπάντας. + + common namenom d'usagegewöhnlicher NameThe 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.Nom habituel d'une entité. Souvent on utilise foaf:name pour tous les noms qu'une personne peut avoir; cette propriété précise le nom qui est habituellement utilisé. + + merger date + + beïnvloed doorεπιρροέςbeeinflusst durchinfluencé parinfluenced byThe subject was influenced by the object. inverseOf influenced. Subject and object can be Persons or Works (eg ProgrammingLanguage) + + wins in Europeпобеде у ЕвропиSiege in Europa + + pga wins + + fare zonezone de tarificationTarifzoneThe fare zone in which station is located.Zone de tarification à laquelle appartient la gare.Die Tarifzone zu der die Station gehört. + + municipality codeGemeindecodegemeente-code + + arteryArterieαρτηρίαader + + solubilityLöslichkeitoplosbaarheid + + suppredded dateoppressie datumдата на забранатаDate when the Church forbade the veneration of this saint. +(I hope that's what it means, I don't know why the original author didn't document it) + + railway rolling stockOperierende Schienenfahrzeuge + + code istatIndexing code used for Italian municipalities + + extinction year!!! Do NOT use this property for non Species related dates!!! - Year this species went extinct. + + ceilingplafonddienstplafondMaximum distance to the earth surface, to be expressed in kilometersDistance maximale jusqu'à la surface de la terre, exprimé en kilomètres + + Staatsformgovernment typestaatsvormtipo de governobroadly, the type of structure of its government + + date of abandonment + + scoreScore or points of something (eg a SportCompetitionResult) + + amateur year + + most steadyen istikrarlı + + launch dateStarttermin + + country with first astronaut + + feast day, holidayFesttagfeestdagA day of celebration associated with the entity. Applies to Saint, School etc + + function start date + + number of soresAnzahl an Geschäften + + previous editorπρώην συντάκτης + + hra state + + government elevation (μ) + + visitors totalGesamtbesucherукупан број посетилацаεπιβατική κίνηση + + country originLand Herkunft + + + + name in Mindongyu Chinesenaam in Mindongyu Chinees + + military serviceservice militaire + + other channel + + wsop itmWSOP ITM + + beltway city + + management mountain + + vice principal label + + number of islandsAnzahl der Inselnαριθμός νησιώνaantal eilanden + + reference for geographic dataReferenz für geographische Datengeometrie + + έχει περίληψηabstractخلاصہhas abstractапстрактReserved for DBpedia.Προορίζεται για την DBpedia. + + solvent with bad solubilityLösungsmittel mit schlechter Löslichkeitslecht oplosbaar in + + floor area (m2)vloeroppervlak (m2)περιοχή ορόφων (m2) + + service start date + + apskritisлитвански округ + + nobel laureatesNobelpreisträger + + naam bevolkingsgroepτοπονύμιο_πληθυσμούVolksbezeichnungxentiliciodémonymedemonym + + commandantKommandant + + ncbhof + + short prog score + + kind of criminal + + map caption + + first launchpremier lancementerster Start + + average annual gross power generation (J)اوسط سالانہ پیداوار (J)اوسط سالانہ مجموعی بجلی کی پیداوار + + maximum inclination + + lyricsστίχοιparolier歌詞Creator of the text of a MusicalWork, eg Musical, Opera or Song + + vaccination + + maximum discharge (m³/s) + + previous work dateannée de sortie oeuvre précédenteYear when previous work was releasedAnnée de sortie de l'oeuvre précédente + + allegianceυποταγήверност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. + + term of officeAmtszeit + + ISO region codeISO-LändercodeISO regiocode + + von Klitzing electromagnetic constant (RK)von Klitzing elektromagnetisch Konstant (RK) + + county seatprovincie zetel + + able to grindپیسنے کے قابلmahlenfähigmaalvaardig + + number of vineyardsnombre de vignoblesAnzahl von Weinbergen + + rotation period (s) + + active years end dateενεργή ημερομηνία λήξης χρόνουactieve jaren einddatumдатум завршетка активних година + + career prize money ($)prijzengeld loopbaan ($) + + number of items in collectionAnzahl der Elemente in der Sammlungaantal titels/itemsIndication as to the size of the collection of this libraryAanduiding van omvang van de collectie van deze bibliotheek + + sign name of a hungarian settlement + + musical keyTonartμουσικό κλειδίtoonsoort + + onderscheidingδιακρίσεις受賞AuszeichnungانعامrécompenseawardAward won by a Person, Musical or other Work, RaceHorse, Building, etc + + ethnic groupgroupe ethniqueethnieetnia + + production companyProduktionsfirmaproductiebedrijfthe company that produced the work e.g. Film, MusicalWork, Software + + movieFilm + + continental tournament silver + + airdateημερομηνία αέραдатум емитовањаرہائی کی تاریخ + + Wikidata IRI slitis used to denote splitting of a Wikidata IRI to one or more IRIs + + date of acquirementAnschaffungszeitpunktημερομηνία απόκτησηςحصول کی تاریخ + + current team memberA current member of an athletic team. + + wins at LETпобеде на LET + + Crewéquipageπλήρωμαcrew + + rectorRektor + + active years start yearενεργός χρόνος έτος λειτουργίαςactieve jaren start jaarпочетна година активних година + + protein (g)Amount of proteins per servingSize of a Food + + (political) officeυπηρεσία(politisches) Amt + + thumbnail localization + + number of suites + + drains from + + temperature (K)Temperatur (K)θερμοκρασία (K)température (K) + + informationInformationen + + number of newly introduced sportsnumbre de sports nouvellement ajoutésnumero de deportes nuevamente añadidos + + government country + + original titletitre originalOriginaltiteloorspronkelijke titelThe original title of the work, most of the time in the original language as wellTitre original de l'oeuvre, le plus souvent aussi dans la langue d'origine + + mute character in playName of a mute character in play. + + FilmPolski.pl idid de FilmPolski.pl + + campus typeجامعہ کی قسم + + developerontwikkelaarEntwicklerdéveloppeurDeveloper of a Work (Artwork, Book, Software) or Building (Hotel, Skyscraper) + + blue ski piste numbernuméro de piste de ski bleue + + gene location startlocus startpunt遺伝子座のスタート座標the start of the gene coordinates + + capital coordinatesHauptstadt Koordinaten + + circumcised + + CAS supplemental + + ministerMinisterministre + + canonized datedate de canonisationheiligverklaring datum + + licence letter of a german settlement + + wins at pro tournamentsпобеде на професионалним турнирима + + canonized bycanonisé parheilig verklaard door + + providesbietet + + highest state + + numberOfResourcenumber of all resource in DBpedia (including disambiguation pages and rediretcs) + + latest release version + + lowest positionposition la plus basse + + aircraft trainer + + riverFlussποτάμιrivière + + fuel type + + consecrationconsécrationWeihewijding + + ESPN id + + notable wine + + retiredσυνταξιούχος + + political majoritypolitische Mehrheit + + διαχειριστήςVerwalterمنتظمadministrateuradministratorуправник + + location citylocatie stadvilleCity the thing is located. + + Number Of Capital Deputiesnumero de deputados distritais + + area of catchment quoteآب گیری اقتباس کا علاقہ + + south-east placelieu au sud-estindique un autre lieu situé au sud-est.indicates another place situated south-east. + + premiere yearYear the play was first performed. + + employerArbeitgeber雇用者θέσεις_εργασίας + + main buildingHauptgebäude本殿 + + has inside placea un lieu intérieurindique un autre lieu situé à l'intérieur.indicates another place situated inside. + + bowl recordρεκόρ μπόουλινγκ + + conviction penaltyStrafe + + album duration (s)Album Länge (s)трајање албума (s) + + højde (μ)hoogte (μ)višina (μ)ύψος (μ)身長 (μ)Höhe (μ)altura (μ)hauteur (μ)height (μ) + + 진료과medisch specialismeιατρική ειδικότητα診療科medizinisches Fachgebietspecializzazione medicaspécialité médicalemedical specialty + + flag border + + president general council + + ingredientingrédientZutatMain ingredient used to prepare a specific Food or Beverage. For strings use ingredientName, for objects use ingredient.Ingrédient principal utilisé pour préparer une alimentation spécifique ou une boisson. Pour les chaînes de caractères, utiliser ingredientName, pour les objets utiliser ingredient. + + aircraft helicopter cargoφορτίο ελικοφόρου αεροσκάφουςтеретни хеликоптер + + spacecraftRaumfahrzeugδιαστημόπλοιοvéhicule spatial + + absorbed byopgegaan in + + ڈینس سکور + + refseq mRNArefseq mRNA + + απόσταση από την πρωτεύουσα (μ)entfernung zur hauptstadt (μ)distanza alla capitale (μ)distância até a capital (μ)distance to capital (μ) + + original maximum boat length (μ) + + previous missionfrührere Mission + + management position + + governing bodybestuursorgaanVerwaltungsgremiumBody that owns/operates the Place. + + Polish Film AwardPolnischer FilmpreisPolska Nagroda Filmowa (Orzeł) + + فعال سال کی شروعات کی تاریخactive years start date + + MeSH number + + entourageGefolge + + key personSchlüsselperson + + Source WebsiteVaccinationStatistics: source website. + + declination + + ithf date + + Lieutenancy area + + locomotivelocomotief + + forcesforcesStreitkräfte + + voiceStimmeгласVoice artist used in a TelevisionShow, Movie, or to sound the voice of a FictionalCharacter + + government region + + previous population + + authority mandate + + Number of votes in favour of the resolutionAnzahl der Stimmen für die ResolutionAantal stemmen voor + + connotationKonnotationA meaning of a word or phrase that is suggested or implied, as opposed to a denotation, or literal meaning. + + rulingEntscheidungrelevante regelgevingRuling referred to in this legal case + + contract award + + budget yearHaushaltsjahr + + red coordinate in the RGB space + + min + + legal arrondissement + + hall of fameRuhmeshalle + + language codeSprachcodekod językowy + + eurobabe index ideurobabeindex idcódigo no eurobabeindex + + lowest point + + lchf draft year + + mill code BEmolen code BEmills code from the Belgian database on millsunieke code voor molens in database www.molenechos.org + + amateur no contest + + height attack + + number of run + + endowment ($) + + current leagueaktuelle Liga + + code on List of HonourCode EhrenlisteCode Erelijst van Gevallenen + + total cargo (g) + + manager years start year + + tv.com id + + green ski piste number + + youth wingомладинско крилоala jovem + + statistic valueStatistikwert + + actual Campeón del mundohuidig wereldkampioenaktueller Weltmeisterchampion du monde actuelcurrent world champion + + cuenca hidrográfica (m2)waterscheiding (m2)λεκάνη_απορροής (m2)Wasserscheide (m2)watershed (m2) + + career stationKarrierestationcarrièrestapthis 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. + + address in roadسڑک میں واقع ہےA building, organisation or other thing that is located in the road. + + government position + + credit + + componistkompozytorσυνθέτηςKomponistcompositeurcomposer + + opening filmEröffnungsfilm + + trainingAusbildungπροπόνηση + + date of christeningdoopdatum + + innervates + + cantidad de medallas de plata ganadasaantal gewonnen zilveren medaillesAnzahl der Silbermedaillennomber de médailles d'argent gagnéesnumber of silver medals won + + draftEntwurf + + closing seasonkapanış sezonu + + builderBaumeisterbouwerοικοδόμος + + top speed (kmh)Höchstgeschwindigkeit (kmh) + + olympic gamesolympische SpieleOlympische Spelen + + assistant principalκύριος βοηθός + + vorig werkπροηγούμενη δημιουργίαfrüheren Arbeitenoeuvre précédenteprevious work + + añojaarέτοςJahrannoannéeyearгодина + + start year of insertion + + procedureVerfahrenprocedureThe name designating a formal collection of steps to be taken to complete the caseDe naam die verwijst naar de formele definitie van een verzameling stappen die in de juiste volgorde leiden tot de afronding van de zaak + + portrayer + + human development index (HDI) categorycategoria do indice de desenvolvimento humano (IDH) + + فعال سال + + regencyRegentschaftkabupaten + + so named sinceso genannt seitzo genoemd sinds + + main islandsHauptinseln + + periapsis (μ)Periapsisdistanz (μ) + + cladecladon + + european union entrance datedata de entrada na uniao europeia + + amateur teamаматерски тим + + industryIndustrieindustrie + + distance to Douglas (μ)απόσταση από το Douglas (μ) + + Penalties Team A + + diplomaDiplom + + final lost single + + floraFlora + + signatureUnterschrift + + judgeRichterrechterleading judge + + ownsin bezit vanUsed as if meaning: has property rights over + + name in the Wade-Giles transscription of Chinesenaam in het Wade-Giles transscriptie van het Chinees + + killed bygetötet von + + pole driver country + + coronation datedate de couronnementkroningsdatum + + COSPAR idDescribed at http://en.wikipedia.org/wiki/International_Designator + + visitors per dayброј посетилаца по дануBesucher pro Tag + + alternatieve titelalternativer Titelautre titrealternative titleалтернативни насловThe alternative title attributed to a workAutre titre attribué à une oeuvre + + legend thumbnail localization + + mandate of the president of the general council + + gross ($)indtjening ($)ακαθάριστα ($) + + broadcast translatorαναμετάδοση μεταφραστή + + main branchvoornaamste tak + + Date Last Updatedآخری تازہ کاری کی تاریخDatum der letzten Aktualisierungdatum laatste bewerking + + the previous municipality from which this one has been created or enlargedsamengevoegde gemeente + + distance to nearest city (μ)distance à la ville la plus proche (μ)vzdálenost k nejbližšímu městu (μ) + + world tournament silverброј сребрних медаља са светских турнира + + associateσυνεργάτης + + DfEDepartment for Education (UK) number of a school in England or Wales + + surface of runway + + inscriptionText of an inscription on the object + + geboortejaarέτος γέννησης生年Geburtsjahrbirth year + + maximum apparent magnitudemaximale scheinbare Helligkeitmaximale schijnbare magnitude + + resting dateBestattungsdatum埋葬年月日 + + number of SoccerPlayers born in Placepočet fotbalistů narozen na daném místě + + junior years end year + + council of a liechtenstein settlement + + debut teamπρώτη ομάδα + + numberOfClassesnombre de classesnumber of defined Classesnombre de classes définies + + head label + + number of canton + + continent rankRang KontinentPlace of the building in the list of the highest buildings in the continentDer Platz des Gebäudes in der Liste der höchsten Gebäude des Kontinents + + musical band + + politic government departmentministerio do politico + + HGNCidHGNCid + + mouth mountain + + linked toverknüpft + + highest regionhoogste regio + + length quote + + hopman cup + + tuition ($)Schulgeld ($) + + number of pagesnombre de pagesaantal pagina'sAnzahl der SeitenThe books number of pages.Nombre de pages des livres. + + has outside placea un lieu extérieurindique un autre lieu situé autour à l'extérieur.indicates another place situated around outside. + + south placelieu au sudindique un autre lieu situé au sud.indicates another place situated south. + + postcodeταχυδρομικός κώδικαςPostleitzahlcódigo postalzip codeПоштански код + + individualised PND numberPersonennamendateiPND (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. + + asia championship + + opening seasonaçılış sezonu + + notable featuresnotlar + + military governmentMilitärregierung + + iso code of a province + + discharge (m³/s)εκροή (m³/s)uitstoot (m³/s) + + spoken ingesprochen ingesproken in + + suborbital flights + + stat name + + junior years start year + + variant or variationVariante oder Variationваријантаvariantvariant or variation of something, for example the variant of a car + + networth ($) + + wiki page uses templatepage wiki transcluant un modèleWikiseite verwendet TemplateDO NOT USE THIS PROPERTY! For internal use only.NE PAS UTILISER CETTE PROPRIETE! Réservé à l'usage interne uniquement. + + fossilfossiel + + state of origin + + number of orbitsAnzahl der Bahnen + + sterfdatumημερομηνία_θανάτου没年月日Sterbedatumdate de décèsdeath date + + extraction datetimeDate a page was extracted '''''' + + aircraft recon + + province link + + bar pass rateποσοστό επιτυχίας + + track width (μ)spoorbreedte (μ)Width of the track, e.g., the track width differing in Russia from (Western and Middle) European track width + + ko + + template nameTemplatenameDO NOT USE THIS PROPERTY! For internal use only. + + associate editorσυνεργαζόμενος συντάκτηςرفیقه مدیر + + managing editor + + name in Hangul-written Koreannaam in Hangul-geschreven Koreaans + + number of undergraduate studentsZahl der Studenten + + Severe CasesNumber of severe cases in a pandemic + + strengthStärkeδύναμη + + otherSportsExperienceスポーツ歴 + + circuit name + + rank of an agreement + + official school colouroffizielle SchulfarbeThe official colour of the EducationalInstitution represented by the colour name (e.g.: red or green). + + RKDartists idRijksbureau voor Kunsthistorische Documentatie (RKD) artists database id. +http://rkd.nl/explore/artists/$1 + + zusأختαδελφήシスターSchwestersister + + current partnerpartenaire actuelaktueller Partner + + official namenom officieloffizieller Name + + paísestatlandkrajχώραLandtírpaíspayscountryThe country where the thing is located. + + west placelieu à l'ouestindique un autre lieu situé à l'ouest.indicates another place situated west. + + solvent with mediocre solubilityLösungsmittel mit mittelmäßiger Löslichkeitmatig oplosbaar in + + usopen winsпобеде на US Open-у + + subprefecture + + fastest driver countryschnellster Fahrer Land + + executive headteacher + + KFZ-Kennzeichenvehicle codeкод возилаvoertuig codeRegion related vehicle code on the vehicle plates. + + age rangeAltersgruppeεύρος ηλικίαςопсег годинаAge range of students admitted in a School, MilitaryUnit, etc + + relation time + + dubberthe person who dubs another person e.g. an actor or a fictional character in movies + + نقصان کی رقم + + hotelhotêl + + nfl team + + faunaFaunafauna + + FC runs + + person functionAmtpersoon functie + + fuel capacity (μ³)χωρητικότητα καυσίμου (μ³)Kraftstoffkapazität (μ³) + + plaats van overlijdenτόπος_θανάτου死没地Sterbeortموت کی جگہlieu de décèsdeath placeThe place where the person died.وہ جگہ جہاں شخص کی موت ہوئی۔ + + laying down + + Number Of State Deputiesnumero de deputados estaduais + + name in Simplified Chinesenaam in het Vereenvoudigd Chinees + + Location Identifier + + nearest citynächstgelegene Stadtdichtstbijzijnde stadπόλη + + summer temperature (K) + + mouth positionfoce (di un fiume)lugar de desembocadura + + Active Casesفعال کیسزوبائی مرض میں فعال کیسوں کی تعداد + + automobile platformAutomobilplattformπλατφόρμα αυτοκινήτων + + brandstofκαύσιμαTreibstoffcarburantfuel + + leiderηγέτηςFührerliderleader + + active years start date manager + + number of rocket stagesAnzahl von Raketenstufennumber of stages, not including boosters + + testaverage + + نشان نجوم + + aircraft helicopter transportμεταφορές που πραγματοποιούνται με ελικοφόρο αεροσκάφοςтранспортни хеликоптер + + sovereign countrysouveräner Staat + + damage amountschadebedragنقصان کی رقم + + descubridorΑνακαλύφθηκε απόEntdeckerdécouvreurdiscoverer + + magazineMagazinπεριοδικό + + bad guyBösewicht + + first flighterster Flug + + awardNameAward a person has received (literal). Compare to award (ObjectProperty) + + criminal chargeStrafantrag + + teaching staff + + carbohydrate (g)Amount of carbohydrates per servingSize of a Food + + supplemental draft round + + beatified byzalig verklaard doorbéatifié par + + date of acquirementAnschaffungszeitpunktημερομηνία απόκτησηςحصول کی تاریخ + + monument code for the Monuments Inventory Projectmonumentcode voor het Monumenten Inventarisatie ProjectThe Dutch MIP project was meant to take stock of all kinds of monumentsCode voor alle soorten monumenten gebezigd door het MI-project + + gini coefficientGini-Koeffizientcoeficiente de Giniis a measure of the inequality of a distribution. It is commonly used as a measure of inequality of income or wealth. + + percentage of a place's male population that is literate, degree of analphabetismpourcentage de la population masculine alphabétisée d'un lieu, degré d'analphabétismepercentage van de mannelijke bevolking dat geletterd is + + spacewalk beginBeginn Weltraumspaziergang + + first drivererster Fahrer + + commandBefehl + + cinematographyKinematografiecineamatagrafaíochtcinematografie + + local authority + + geolocDepartment + + oil systemÖlsystem + + partnerσυνέταιροςPartnerpartenairepartner + + National Topographic System map number + + freeLabel + + percentage of area waterποσοστό_υδάτωνpercentage wateroppervlak + + Golden Raspberry Award + + source confluence state + + total populationGesamtbevölkerung + + latest preview version + + Text used to link from a Wikipage to another WikipageReserved for DBpedia. + + National Olympic CommitteeNationales Olympisches Komiteenationaal Olympisch commité + + manufactoryFabrik + + number of licensednombre de licenciésnombre de personnes ayant une license pour pratiquer cette activité + + SAT scoremost recent average SAT scores + + Wiki page out degreeReserved for DBpedia. + + fips code + + seasonSaisonσαιζόν + + magenta coordinate in the CMYK space + + film runtime (s)Filmlaufzeit (s) + + head alloy + + north-east placelieu au nord-estindique un autre lieu situé au nord-est.indicates another place situated north-east. + + Computing Media + + capital district + + following eventévènement suivant + + congressional district + + agglomeration population totalمجموعی آبادی کل + + spouse nameName des Ehepartnersόνομα συζύγου + + detractorKritiker + + name in JapaneseName auf japanischnaam in het Japans + + seiyu + + distance traveled (μ)Zurückgelegte Entfernung (μ)afgelegde afstand (μ) + + آب گیری اقتباس کا علاقہ + + RID IdAn 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. + + wins at challenges + + total travellers + + foot + + Active Casesفعال کیسزوبائی مرض میں فعال کیسوں کی تعداد + + podiumsPodestplätze + + seating capacitySitzplatzkapazitätzitplaatsen + + distance to London (μ)απόσταση από το Λονδίνο (μ) + + creator (agent)UrheberδημιουργόςmakerCreator/author of a work. For literal (string) use dc:creator; for object (URL) use creator + + leeftijdηλικίαAlterعمرageageстарост + + ایجنسی اسٹیشن کوڈایجنسی اسٹیشن کوڈ (ٹکٹ/مخصوص کرنے کا عمل وغیرہ پر استعمال کیا جاتا ہے)۔ + + number of pixels (millions)nombre de pixels (millions)Anzahl der Pixel (Millionen) + + galicianSpeakersPercentageporcentaxe de galegofalantesPercentage of Galician speakers.porcentaxe de galegofalantes. + + amgIdAMG ID + + number of vehiclesAnzahl der Fahrzeugenombre de véhiculesNumber of vehicles used in the transit system.Nombre de véhicules dans le système de transition. + + data założeniaημερομηνία ίδρυσης創立日Gründungsdatumdáta bunaithefounding date + + effectiveRadiatedPower (W) + + owning companyBesitzerfirma + + logroprestatieκατόρθωμαLeistunghaut fait, accomplissementachievementдостигнуће + + player statusSpielerstatus + + group commemoratedgroep mensen herdachtDesignates the category of people commemorated by a monumentAanduiding van de categorie mensen die door dit monument worden herdacht + + buildingGebäudegebouwκτίριο + + serviceDienst + + phylumfiloEmbranchement phylogénétique門_(分類学)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 systématique, l'embranchement (ou phylum) est le deuxième niveau de classification classique des espèces vivantes. + + brandμάρκα + + comic + + political mandatepolitisches Mandat + + latest release datedate de dernière version + + crewséquipagesBesatzungen + + Registered at Stock Exchangebeurs waaraan genoteerd + + crestWappenherb + + total mass (g)Gesamtmasse (g) + + government place + + notify dateBenachrichtigungsdatum + + keukenκουζίναKüchecuisinecuisineNational cuisine of a Food or Restaurant + + demographics as ofindicadores demograficos em + + coached team + + editor titleτίτλος συντάκτη + + rijkβασίλειο界_(分類学)reichregnorègne (biologie)kingdomIn 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.Le règne (du latin « regnum ») est, dans les taxinomies classiques, le plus haut niveau de classification des êtres vivants, en raison de leurs caractères communs. + + committeeAusschuss + + unit cost ($)Stückkosten ($) + + ATC suffixATC κατάληξηsuffix ATC + + leaderFunction + + management elevation (μ) + + biust (μ)Μέγεθος προτομής (μ)バスト (μ)размер бюст (μ)bust size (μ) + + workArbeit + + league manager + + musicTypesoort muziekwerkType is too general. We should be able to distinguish types of music from types of architectureType is te algemeen. We moeten soorten muziek van soorten gebouwen kunnen onderscheiden + + Link from a Wikipage to another WikipageReserved for DBpedia. + + carcinogenKarzinogenkankerverwekkend + + average class sizedurchschnittliche Klassengrößeμέσο μέγεθος τάξης + + height against + + affairمعاملہафера + + passengers per yearpassagers par anpassagiers per jaarPassagiere pro JahrNumber of passengers per year.Nombre de passagers par an. + + set designerBühnenbildnerscenografothe person who is responsible for the film set design + + road end directionHimmelsrichtung des WegendesEnd of the route. The opposite of OntologyProperty:routeStartDirection.Himmelsrichtung des Endes des Verkehrsweges. Der Gegensatz zur OntologyProperty:routeStartDirection. + + durchschnittliche Tiefe (μ)average depth (μ)μέσο βάθος (μ)profondeur moyenne (μ)Source of the value can be declare by . + + lounge + + Alps SOIUSA codeκώδικας SOIUSA των άλπεωνcodice SOIUSAалпски SOIUSA кодthe Alps SOIUSA code corresponding to the mountain, according to the SOIUSA classification + + yellow coordinate in the CMYK space + + volumesтомовиdelen + + monument code (provinciall)monumentcode provinciale monumentenCode assigned to (Dutch) monuments at the provincial level, mostly for monuments in the countryside, or for waterworksCode voor monumentenbescherming, in Nederland op provinciaal niveau. Meestal gebruikt voor agrarische monumenten of waterwerken + + branch ofδιακλάδωση_του + + συνώνυμοシノニムSynonymsynonymesynonym + + perifocusperifocus + + piercingPiercingpiercing + + contestconcoursWettbewerb + + handednesshabilidade com a maoan attribute of humans defined by their unequal distribution of fine motor skill between the left and right hands. + + اوسط سالانہ پیداوار (J)اوسط سالانہ مجموعی بجلی کی پیداوار + + roland garros double + + number of all resource / entities of a classcelkový počet zdrojů / entit v dané tříde + + dry cargo (g)Trockenfracht (g)droge last (g) + + state of origin year + + divisionverdeling + + آخری تازہ کاری کی تاریخ + + visitor percentage changeпромена процента посетилацаprozentuale Veränderung der BesucherzahlPercentage increase or decrease. + + mythologyMythologiemitologiaμυθολογία + + پہلو کا تناسب(ٹیلی وژن) تناسب نظر / عکس کی چوڑائی کا بلندی سے تناسب + + past member + + IFTA Award + + associated musical artistσυνεργάτης-μουσικός καλλιτέχνης + + legerστρατόςArmeeفوجarméearmyAn army is the ground force of the nationUne armée est la force terrestre de la nationΈνας στρατός αποτελεί τις επίγειες ένοπλες δυνάμεις ενός έθνους + + BBRBBRBBRBBRFor NBA players, the text between the last slash and .html in the URL of the player's basketball-reference.com profile (linked at http://www.basketball-reference.com/players/). + + relegated teamsAbsteigerdüşenler + + khl draft year + + Gaudí AwardPremis GaudíAwards of the Catalan Academy of Cinema + + meeting buildingTagungsgebäude + + last appearance + + number of lapsAnzahl der Runden + + patronPatronpatrono + + race length (μ)Rennlänge (μ) + + ήπειροςKontinentcontinentecontinentcontinentlinks a country to the continent it belongsrelie un pays au continent auquel il appartientμεγάλες περιοχές ξηράς που περιστοιχίζονται από ωκεανούς + + geolocdual + + victory percentage as managerпроценат победа на месту менаџера + + beestζώο動物Tieranimalanimalживотиња + + National tournament + + date budget + + area of a land (m2) + + highest altitude最高地点標高 + + start yearStartjahr + + race horseRennpferd + + highest positionHöchststand + + flagSize + + current rankaktueller Ranglistenplatz + + armώμος + + type of municipalityGemeindetyptype gemeente + + numberOfPropertiesnombre de propriétésnumber of defined properties in DBpedia ontologynombre de propriétés défines dans l'ontologie DBpedia + + this seasonbu sezon + + austrian land tag + + penis lengthlongeur du pénis + + world tournament goldброј златних медаља са светских турнира + + neighbour regionNachbarregion + + individualised GND numberGemeinsame NormdateiGND (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. + + sexφύλοGeschlechtsexe + + legal formrechtsvormRechtsformThere 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.Die Rechtsform definiert die juristischen Rahmenbedingungen einer Organisation bzw. Unternehmens. + + ISO 639-1 codeISO 639-1 codekod ISO 639-1 + + Source NameVaccinationStatistics: Source Authority name. + + per capital income rank + + scientific namewissenschaftlicher Namewetenschappelijke naam + + secretarySekretärinsecretarissecretario + + satelliteSatellitδορυφόρος + + lineligneligne d'un arrêt sur une route.line of a stop on a route. + + legislatureGesetzgeber + + number of SoccerPlayers in entity of SoccerClubpočet fotbalových hráčů ve fotbalovém týmu + + route previous stoparrêt précédentprevious stop on a route.arrêt précédent sur une route. + + quote + + type of grain (wheat etc.)Getreideart (Weizen usw.)graansoort + + purposeZweckdoelobjectif + + lihf hof + + lieutenantLeutnantlieutenant + + mayor article + + lowest state + + toegangsdatumημερομηνία πρόσβασηςZugriffsdatumرسائی کی تاریخdate d'accèsaccess dateдатум приступа + + head teacherSchulleiter + + pluviometryRegenmessung + + super-orderbovenorde + + end year of sales + + frequency of publicationfrequentie van publicatieErscheinungsweiseThe frequency of periodical publication (eg. Weekly, Bimonthly).Die Häufigkeit der Erscheinungen des Periodikums (z.B. wöchentlich, monatlich). + + toll ($)Maut ($) + + tower heighthauteur de la tourTurmhöhehoogte van de toren + + current teamaktuelle Mannschaft所属チーム + + source position + + thumbnailReserved for DBpedia. + + meeting city + + production start yearproductie beginjaar + + debutWorkFirst work of a person (may be notableWork or not) + + pronunciationAussprache + + first placepremière placeerster Platz + + unknown outcomesнепознати исходиnumber of launches with unknown outcomes (or in progress)број лансирања са непознатим исходом или број лансирања који су у току + + expeditionexpéditionExpedition + + number of islandsAnzahl der Inseln + + aircraft helicopter utility + + number of tracksnombre de voiesAnzahl der GleiseNumber of tracks of a railway or railway station.Nombre de voies d'un chemin de fer ou d'une gare. + + postcodeταχυδρομικός κώδικαςPostleitzahlcódigo postalcode postalpostal codeA 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. + + reservationsReservierungenAre reservations required for the establishment or event? + + Partition coefficientVerteilungskoeffizientVerdelingscoëfficiënt + + chemical formulaformule chimique + + BPN IdDutch project with material for 40,000 digitized biographies, including former colonies of the Netherlands. + + coat of arms imagebild wappenimage of the coat of arms (heraldic symbol) + + family headFamilienoberhaupthoofd van de familie + + codeκωδικόςCodeضابطہcodeSuperproperty for any designation (string, integer as string) that is meant to identify an entity within the context of a system + + selection point + + slogansloganSloganДевиз + + museumμουσείοmuseum博物館 + + Emmy AwardEmmy Award + + inflowZuflussεισροή + + second teamzweites Teamδεύτερη ομάδα + + maiden flightJungfernflugdate of maiden flight + + CODENCODEN 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. + + provinciehrabstwoΕπαρχίαBezirkcontaecountyThe county where the thing is located. + + start pointpoint de départStartpunktσημείο_αρχής + + number of entities of Person class who graduated from the universitypočet entit třídy Osoba s vystudovanou konkrétní univerzitou + + end yearStartjahr + + wimbledon singleвимблдон појединачно + + first olympic eventpremière épreuve olympique + + lchf draft year + + depths + + INSEE codeINSEE-codenumerical indexing code used by the French National Institute for Statistics and Economic Studies (INSEE) to identify various entities + + ATC codeATC codeκώδικας ATCاے ٹی سی کوڈ + + champion in single femalechampion en simple femmesCampeón en simple mujereswinner of a competition in the single female session, to distinguish from the double session (as in tennis) + + last air dateSendeschlussThe date on which the broadcaster made its last broadcast. + + państwoΧώραpaís de localizaçãoCountry the thing is located. + + templeTempel + + diseasesDbdiseasesDbdiseasesDb + + number of all MuscialArtist playing the stylepočet hudebních umělců hrající konkrétní styl + + creator of dishThe person that creates (invents) the food (eg. Caesar Cardini is the creator of the Caesar salad). + + significant projectbedeutendes Projektistotne osiągnięcieA siginificant artifact constructed by the person. + + licentieάδειαLizenzlicencelicense + + aircraft helicopter observationπαρατήρηση ελικοφόρου αεροσκάφουςосматрање хеликоптером + + انتظامی درجہadministrative status + + requirementAnforderung + + delegationdélégation + + skin colorcouleur de peau + + BNF IdAuthority data of people listed in the general catalogue of the National Library of France + + type of municipalityArt der Gemeindetype gemeente + + kindطفلπαιδί子供Kindenfantchild + + is peer reviewedIn academia peer review is often used to determine an academic papers suitability for publication. + + net income ($)Nettoergebnis ($) + + imposed danse score + + organisatieεταιρεία会社Firmacompagniecompany + + volcanic typeVulkantypтип вулкана + + roland garros single + + intercommunality + + PersonsFirstDosesCumulNumber of persons received first vaccine doses + + route directionHimmelsrichtung des VerkehrswegesThe general direction of the route (eg. North-South).Himmelsrichtung des Verkehrsweges (z.B. North-South). + + third commander + + architectual bureauArchitekturbüroαρχιτεκτονική κατασκευήعمارتی دفتر + + vehicle types in fleetFahrzeugtypen der FlottePoints out means of transport contained in the companies vehicle fleet. + + wine yearWeinjahrгодина флаширања вина + + альма-матерσπουδέςécolealma materстудијеschools that they attendedécoles fréquentées + + vice leadervicelider + + delegate mayorمندوب ناظم + + shoe numberpointureschoenmaatnúmero do sapato + + state of origin team + + watereauWasserвода + + life expectancyLebenserwartungexpectativa de vida + + draft team + + film colour typespecifies the colour type of the film i.e. 'colour' or 'b/w' + + pseudonympseudoniemPseudonympseudonyme + + afdelingAbteilungشعبہeskualdeadépartementdepartment + + es parte dejest częściąist ein Teil vonfait partie deis part of + + old districtancienne régionAltstadt + + clusterbirlik + + salary ($)μισθός ($)Gehalt ($)給料 ($) + + διεύθυνση στον δρόμοAdresse in Straßeسڑک میں واقع ہےaddress in roadАдреса на путуA building, organisation or other thing that is located in the road.Ένα κτήριο, οργανισμός ή κάτι άλλο που βρίσκεται στον δρόμο. + + SATCATSATCATSATCATSATCATsatellite catalogue number, omit leading zeroes (e.g. 25544) + + اثاثے ($)اثاثے اور واجبات کمپنی کی بیلنس شیٹ کا حصہ ہیں۔ مالیاتی اکاؤنٹنگ میں، اثاثے اقتصادی وسائل ہیں۔ کوئی بھی ٹھوس یا غیر محسوس چیز جو قدر پیدا کرنے کے لیے ملکیت یا کنٹرول کرنے کے قابل ہو اور جس کی مثبت اقتصادی قدر ہو اسے اثاثہ سمجھا جاتا ہے۔ + + rebuild dateherbouw datum + + rocketRaketefuséeρουκέτα + + name in Pinyin Chinesenaam in het Pinyin Chinees + + reference for general dataReferenz für allgemeine Daten + + lunar roverMondfahrzeug + + Bioavailability"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)." + + home arenaHeimarena + + jaar van overlijdenέτος θανάτου没年Sterbejahrdeath year + + date unveileddatum onthullingتاریخ کی نقاب کشائیDesignates the unveiling dateDuidt de datum van onthulling aanنقاب کشائی کی تاریخ مقرر کرتا ہے۔ + + geneReviewsId + + aliasпсевдонимψευδώνυμο別名aliasaliasалијас + + former coachEx-Trainer + + gross domestic product rank + + numero de miembrosαριθμός μελώνAnzahl der Mitgliedernúmero de membrosnombre de membresnumber of members + + Alps supergroupAlps υπερομάδαsupergruppo alpinoАлпска супергрупаthe Alps supergroup to which the mountain belongs, according to the SOIUSA classification + + red list ID NLrode lijst ID NLred list code for treatened species NL (different from IUCN)rode lijst ID van bedreigde soorten in Nederland + + number of turnsnombre de virages + + european affiliationafiliacao europeia + + last flightletzter Flug + + rocket functionpurpose of the rocket + + artistic function + + dissolved + + fat (g)Amount of fat per servingSize of a Food + + latest preview date + + present municipalityaktuelle Gemeindeligt nu in gemeente + + boilerchaudièreKesselδοχείο βράσης + + heiligeάγιοςHeiligersantosaint + + operating systemλειτουργικό σύστημαBetriebssystembesturingssysteem + + medical diagnosisdiagnostic médicalmedizinische Diagnose + + olympic games silverzilver op de Olympische Spelen + + narratornarrateurErzähler + + lower earth orbit payload (g)Payload mass in a typical Low Earth orbit + + programming languageprogrammeringssprogProgrammiersprachelangage de programmation + + bronze medal mixedBronzemedaille gemischt + + number of matches or caps + + maximum areamaximale Fläche + + faculty sizenumber of faculty members + + second driverzweiter Fahrerδεύτερος οδηγόςsecondo pilota + + arrest date + + lloc d'enterramentbegraafplaatsmiejsce pochówkuτόπος θαψίματοςOrt der Bestattungplace of burialThe place where the person has been buried.Ο τόπος όπου το πρόσωπο έχει θαφτεί.De plaats waar een persoon is begraven. + + current productionThe current production running in the theatre. + + flying hours (s)Flugstunden (s) + + chromosomχρωμόσωμα染色体Chromosomcrómasómchromosomechromosome + + map descriptionkaart omschrijving + + Primite + + redacteurredaktorσυντάκτηςHerausgebereagarthóireditor + + SymbolsymbolesymboolSymbolHUGO Gene Symbol + + siedzibaαρχηγείοHauptsitzceanncheathrúsiègeheadquarter + + non-fiction subjectnon-fictie onderwerpThe subject of a non-fiction book (e.g.: History, Biography, Cookbook, Climate change, ...). + + number of spansAnzahl der BögenNumber of spans or arches. + + iso code of a placeISO-Code eines Ortes + + versionVersionversie + + ship draft (μ)Schiffsentwurf (μ)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. + + رسائی کی تاریخ + + world tournamentWeltturnierсветски турнир + + A Person's role in an eventRol van een persoon in een gebeurtenisrôle d'une personne dans un événement + + foundationGründung + + campus size (m2)جامعہ کا ناپ (m2) + + piston stroke (μ) + + end year of insertion + + broerشقيقαδελφόςBruderfrèrebrother + + فوج + + PDB IDPDB IDgene entry for 3D structural data as per the PDB (Protein Data Bank) database + + gross domestic product per people + + gross domestic product purchasing power parity per capita + + surface area (m2)Oberfläche (m2)έκταση (m2) + + airdateرہائی کی تاریخ + + connects referenced toverbindt referentieobject metconnects a referenced resource to another resource. This property is important to connect non-extracted resources to extracted onescreëert een verwijzing van het gerefereerde objct naar een ander object. Speciaal van belang voor het verbinden van niet-geëxtraheerde resources met de gebruikelijke resources + + original danse competititon + + روزانہ ویکسین خامویکسینیشن کے اعدادوشمار: روزانہ ویکسینیشن (خام ڈیٹا)۔ + + significant designbedeutendes Design + + parenthesesparenthèseshaakjes + + DorlandsIDDorlandsIDDorlandsID + + governorate + + status manager + + sourceTextSource of something (eg an image) as text. Use dct:source if the source is described using a resource + + religious orderreligieuze orde + + Genome DBGenome DBthe edition of the database used (i.e. hg19) + + cultivarName of the cultivar (cultivated variety) + + pertescasualtiesVerlusteverliezenNumber of casualties of a MilitaryConflict or natural disaster such as an Earthquake + + branch fromvient deπαράρτημα από + + commissionerKommissaropdrachtgever + + kookpunt (K)σημείο βρασμού (K)沸点 (K)Siedepunkt (K)point d'ébullition (K)boiling point (K) + + victory as manager + + dramaDrama + + blockBlockblok + + ceeb + + wpt titleWPT титула + + agglomeration population totalمجموعی آبادی کلукупна популација агломерације + + number of rocketsAnzahl der Raketen + + bronze medal singleBronzemedaille Einzel + + settlement attached + + little pool record + + military rankmilitärischer RangThe highest rank achieved by a person. + + purchasing power parity + + racket catching + + width of runway (μ)滑走路の全幅 (μ) + + تاریخ کا معاہدہ + + player in teamSpieler im Teamπαίχτης σε ομάδαA person playing for a sports team. inverseOf teamΆτομο που παίζει για αθλητική ομάδα. + + second + + زوال + + number of filmsAnzahl der Filmeαριθμός ταινιών + + youth yearsJugendjahreомладинске годинеユース年 + + backhandRückhand + + voltage of electrification (V)Voltzahl der Elektrifizierung (V)Voltage of the electrification system. + + abbey church blessingAbteikirche weiheопатијски црквени благословابی چرچ کی برکت + + logologoλογότυποlogo + + garrisonGarnison + + population as ofbevolking vanafpopulation en date deχρονιά_απογραφής + + winning teamSiegerteam + + NUTS codeNUTS-code: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. + + trainerεκπαιδευτήςTrainerentraîneurtrainer + + approachنقطہ نظرapproche + + landing dateLandedatum + + coachTrainerπροπονητής + + derivative + + Total VaccinationsVaccinationStatistics: Total vaccinations per date and country. + + reopening dateWiedereröffnungdatumDate of reopening the architectural structure. + + fecha de descubrimientoΗμερομηνία ανακάλυψηςentdecktdescobridordate de découvertediscovery date + + جامع کا علقهجامع کا علقه کا مطلب ہے کوئی بھی شہری جامع کا علقه جو جامع کے طلباء کو رہائشی، تدریسی اور تحقیقی سہولیات فراہم کرتا ہے۔ + + metropolitan boroughstadswijk + + date membership establisheddatum vaststellen ledental + + no contest + + number of goals scoredAnzahl der erzielten Torenumero di goal segnati + + coast line (μ)Küste (μ) + + track length (μ)Streckenlänge (μ)Length of the track. Wikipedians usually do not differentiate between track length and line lenght. + + number of visitors as ofThe year in which number of visitors occurred. + + artist functionfonction artistiqueArtist function: vocal, group, instrumentalist, compositor...Fonction de l'artiste : chanteur, groupe, instrumentiste, compositeur... + + People VaccinatedVaccinationStatistics: Number of people vaccinated. + + premiere placeThe theatre and/or city the play was first performed in. + + completion dateημερομηνία ολοκλήρωσηςFertigstellungstermindatum van oplevering + + cable carDrahtseilbahnطَنابی گاڑی + + arrondissementarrondissementarrondissementδιαμέρισμα + + promotorακαδημαϊκοί_σύμβουλοιconseiller académiqueacademic advisorакадемски саветник + + Dorlands prefix + + route type abbreviationThe route type abbreviation (eg.: I for Interstate, M for Motorway or NJ for New Jersey Route). + + ward of a liechtenstein settlement + + summer appearances + + minority leadernumber of office holder + + free flight time (s) + + data de naixementজন্মদিনgeboortedatumdata urodzeniaημερομηνία_γέννησης生年月日Geburtsdatumdáta breithedate de naissancebirth date + + eruptionéruptionAusbruch + + per capita income as ofrenda per capita em + + has natural busttem busto natural + + circuit length (μ)longueur de circuit (μ) + + cantidad de medallas de bronce ganadasaantal gewonnen bronzen medaillesAnzahl der gewonnenen Bronzemedaillennomber de médailles de bronze gagnéesnumber of bronze medals won + + United States National Bridge IDID националног моста у Сједињеним Америчким Државама + + draft year + + list of singlesliste de singlesset of singlessuite de disques 45tours + + end career + + sportSportάθλημαsport + + id + + average depth quoteاوسط گہرائی اقتباسSource of the value. + + other activityautre activitéandere Aktivität + + landing siteLandeplatz + + capital elevation (μ) + + Identifier for Duch National ArchiveCode Nationaal Archief + + crown dependency + + end occupation + + prominence (μ) + + género (biología)geslacht属_(分類学)Gattunggenre (biologie)genusA rank in the classification of organisms, below family and above species; a taxon at that rankRang taxinomique (ou taxonomique) qui regroupe un ensemble d'espèces ayant en commun plusieurs caractères similaires. + + state delegate + + chairman title + + split from partyAbspaltung von Partei + + number soldNumber of things (eg vehicles) sold + + engineeringenieurIngenieurμηχανικός + + officer in charge + + featuringfeaturingName of the second artist, apart the main artist, reserved preferently for singles, promotional singles and songs.Nom du second artiste, autre que l'artiste principal. À réserver de préférence aux singles, singles promotionnels et chansons. + + cylinder count + + debutντεμπούτοDebütデビュー + + national tournament silver + + call sign meaningتعارفی علامت کا مطلبThe out written call sign.باہر لکھا ہوا کال سائن۔ + + race resultResult of one racer in a sport competition + + main article for Wikipedia categoryHauptartikel fuer KategorieA property for linking Wikipedia categories to its main articles, derived from top templates of some category pages. + + EntrezGeneEntrezGene + + peopleNameName for the people inhabiting a place, eg Ankara->Ankariotes, Bulgaria->Bulgarians + + aircraft gunFlugabwehrkanoneΠολυβόλο + + date extendedεπέκταση + + ratio + + wins at ALPGпобеде на ALPG + + play role + + active years end date managerفعال سال کی آخری تاریخ Mgr + + PersonsFullDosesCumulNumber of persons received full vaccine doses + + enemyFeind + + ra + + minimum elevation (μ)βάση (μ)minimum elevation above the sea level + + inclination + + sharing out population + + other functionautre fonctionandere Funktion + + max + + black ski piste numbernuméro de piste de ski noire + + khl draft year + + translated motto + + Confirmed CasesNumber of confirmed cases in a pandemic + + vervolg werkεπόμενη δημιουργίαnachfolgende Arbeitenoeuvre suivantesubsequent work + + restrictionBeschränkungThe use of a thing is restricted in a way.Die Verwendung von etwas ist beschränkt. + + merged settlement + + associated rocketσυνδεόμενος πύραυλος + + shore length (μ)Uferlänge (μ)μήκος_όχθης (μ) + + altitud (μ)hoogte (μ)υψόμετρο (μ)Höhe (μ)ऊँचाई (μ)altitude (μ)altitude (μ)elevation (μ)average elevation above the sea levelaltitude média acima do nível do mar + + source country + + agglomeration demographicsдемографија агломерацијеجمع آبادیات + + work area (m2)радни простор (m2)Arbeitsplätze (m2) + + relicsреликвиPhysical remains or personal effects of a saint or venerated person, preserved in a religious building + + number of arrondissement + + gnl + + wimbledon mixedвимблдон микс дубл + + source region + + secondary/other fuel type + + number of academic staffAnzahl der wissenschaftlichen Mitarbeiterαριθμός ακαδημαϊκού προσωπικού + + colorChartdistribution des couleurs + + climateclimaklimaklimaat + + wins at majors + + gross domestic product (GDP) per capitaBruttoinlandsprodukt pro EinwohnerThe nominal gross domestic product of a country per capita.Das nominale Bruttoinlandsprodukt eines Landes pro Einwohner. + + numero de pruebas deportivasαριθμός αθλητικών γεγονότωνAnzahl der Sportveranstaltungennumbre d'épreuves sportivesnumber of sports events + + relatedverbundengerelateerd + + chief executive officerGeschäftsführer + + other appearances + + president regional council + + distance to Dublin (μ)απόσταση από το Δουβλίνο (μ) + + specialitySpezialität + + specializationSpezialisierungPoints out the subject or thing someone or something is specialized in (for).Verweist of den Gegenstand (auch fig.) auf welchen jemand oder etwas spezialisiert ist. + + lethal when given to chickensdodelijk voor kippen + + population urban density (/sqkm) + + name in Traditional Chinesenaam in het Traditioneel Chinees + + sub-ordersous-ordreonderorde + + title datetitel datumdata do titulo + + closing yearSluitingsjaarSchließungsjahr + + opleiding教育Bildungéducationeducation + + focusFokusPoints out the subject or thing someone or something is focused on.Verweist of den Gegenstand (auch fig.) auf welchen jemand oder etwas fokussiert ist. + + publication dateVeröffentlichungsdatumpublicatiedatum + + closing film + + number of SoccerPlayers in Country Reprecelkový počet fotbalový hráčů v reprezentaci + + champion in mixed doublekampioen gemengd dubbelspelchampion en double mixteCampeón en doble mixtowinner of a competition in the mixed double session (as in tennis) + + length of runway (μ)Start- und Landebahnlänge (μ) + + north placelieu au nordindique un autre lieu situé au nord.indicates another place situated north. + + phone prefixTelefonvorwahlDon't use this, use areaCode + + highesthöchsterThe highest mountain of a mountain range.Der höchste Berg eines Gebirges. + + governmentRegierunggouvernement + + zoonابنυιός息子Sohnson + + updatedажуриранThe last update date of a resourceдатум последње измене + + active years start year managerفعال سال شروع سال + + largest settlementgrößte Siedlunggrootste plaats + + spaceRaum + + associated actσυνδεδεμένη πράξη + + Alps main partκύριο μέρος των άλπεωνgrande parte alpinaглавни део Алпаthe Alps main part to which the mountain belongs, according to the SOIUSA classification + + taaljęzykγλώσσαSpracheteangalíngualingualanguelanguageUse dc:language for literal, language for object + + boardεπιβιβάζομαιbestuur取締役会 + + source confluence elevation (μ) + + interestInteresseενδιαφέρον + + south-west placelieu au sud-ouestindique un autre lieu situé au sud-ouest.indicates another place situated south-west. + + chorus character in playThe name of the (Greek) chorus character in play. + + ship launched + + ground + + heisman + + gold medal single + + type seriesBaureihe + + source confluence position + + production yearsProduktionsjahreannées de production + + installed capacity (W) + + last launch rocket + + medical causemédical causemedizinische Ursacheαιτία Ιατρικός + + city rankRang StadtPlace of the building in the list of the highest buildings in the cityDer Platz des Gebäudes in der Liste der höchsten Gebäude der Stadt + + lunar moduleMondfähremodule lunaire + + cost ($)Kosten ($)kosten ($)κόστος ($)Cost of building an ArchitecturalStructure, Ship, etc + + fastest driver teamομάδα ταχύτερου οδηγούschnellster Fahrer Team + + episode numberThe episode number of the TelevisionEpisode. + + custodianAufsichtsperson + + parliamentary groupFraktion + + People Fully VaccinatedVaccinationStatistics: Number of people fully vaccinated. + + foresterDistrict + + partijπάρτυ政党Parteiparty + + party numbernúmero do partido + + number of use of a propertypočet použití property + + datumημερομηνίαDatumdatedate + + special trial + + other partyandere Partei + + afdb idAFDB IDcódigo no afdbafdb idAFDB ID + + escape velocity (kmh) + + other information of a settlementandere Informationen einer Siedlung + + memberMitgliedlid van + + imposed danse competition + + choreograafχορογράφοςChoreographchoréographechoreographer + + maximum depth quoteSource of the value. + + appearances in leagueεμφανίσεις στο πρωτάθλημαброј наступа у лиги + + cause of deathcausa de mortTodesursacheprzyczyna śmierci + + licence number + + crew membermembre d'équipageBesatzungsmitglied + + joint community + + capitalhoofdstadπρωτεύουσαHauptstadtराजधानीcapitalcapitalecapital + + ogenμάτιαAugenyeuxeyesThe eye is called the sensory organ of sight in living organisms.Μάτι ονομάζεται το αισθητήριο όργανο της όρασης των ζωντανών οργανισμών.L'œil est appelé l'organe sensoriel de la vue des organismes vivants. + + is part of anatomical structurees parte de una estructura anatómicaist ein Teil von anatomischer Struktur + + deaneryDekanatproosdijDioceses and parishes should know which deaneries there are + + e-teatr.pl id + + type of surfacetype de surfacetipo de surperficietyp povrchu + + source district + + presenterModeratorπαρουσιαστής + + national team year + + area date + + number of representativesZahl der Vertreter + + note on resting place + + frozengefrorenπαγωμένη + + successful launcheserfolgreiche Starts + + DosesFirstPremières dosesNumber of first vaccine doses.Nombre de premières doses. + + gradesβαθμοί + + BIBSYS Ididentifiant BIBSYSBIBSYS 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. + + compañía discográficaplatenlabelδισκογραφικήlabel discographiquerecord label + + project end dateProjektendeThe end date of the project. + + registry numberRegistrierungsnummerregisternummerIdentification of the registry a document is in + + JSTORJSTOR number (short for Journal Storage) is a United States-based online system number for archiving academic journals. + + homeportport macierzysty + + nfl code + + number of wineries + + austrian land tag mandate + + fed cup + + stat value + + number of doorsTürenanzahl + + not soluble inniet oplosbaar in + + land registry code + + coemperor + + passengers used systembenutztes System der PassagiereSystem the passengers are using (from which the passenger statistics are). + + is a city stateist ein Stadtstaat + + satellites deployed + + complexityComplexity of preparing a Food (recipe) + + homagepage d'accueilHuldigungeerbetoon + + date of an agreementتاریخ کا معاہدہ + + incomeEinkommen + + route activityactivité de routedetails of the activity for a road.détail de l'activité sur une route. + + number of parking lots for trucksaantal parkeerplaatsen vrachtwagens + + ratingWertungcijfer + + territoryGebietterritorioterritoire + + bronze medal doubledouble médaille de bronzeBronzemedaille Doppel + + TERYT codekod TERYTindexing code used by the Polish National Official Register of the Territorial Division of the Country (TERYT) to identify various entities + + ensembleensemble + + The IUPAC International Chemical IdentifierInternationale chemische Bezeichnung der IUPACIUPAC internationale chemische identifier + + dissolution year + + education system + + distance to Belfast (μ) + + تعارفی علامت کا مطلبباہر لکھا ہوا کال سائن۔ + + star rating + + formulaFormelformuleformule + + year of world champion titleгодина освајања светског шампионатаjaar van wereldkampioen titelannée d'obtention du titre de champion du mondecan be one or several yearsможе бити једна или више годинаil peut s'agir d'une ou de plusieurs années + + model start year + + recent winnerletzter Gewinner + + number of live albumsnombre d'albums liveAnzahl von Live-Albenthe number of live albums released by the musical artistnombre d'albums enregistrés en public et réalisés par l'artiste de musique + + major shrinebedeutender Schreinschrijn + + main organ + + ایک طرف + + timeshift channel + + salesVertriebπώλησηventeThis property holds an intermediate node of the type Sales. + + ίδρυσηEstablishmentEtablissement + + meaningBedeutung + + noteAnmerkung + + third + + cara bstrona bB-Seitetaobh bb side + + subdivision name of the island + + project start dateProjektstartThe start date of the project. + + recorded inopgenomen inηχογράφησηenregistré à + + número de empleadosaantal medewerkersαριθμός εργαζομένωνAnzahl der Mitarbeiternombre d'employésnumber of employees + + area of searchSuchgebietΠεριοχή Αναζήτησης + + national selectionnationale Auswahl + + date of approval by upper parliamentdatum aangenomen door Eerste Kamer, Hogerhuis, Senaat enz.Date of approval by upper parliament (House of Lords, Sénat, Eerste Kamer etc.). + + majority leadernumber of office holder + + opname datumηχογράφησηStichtagdate d'enregistrementrecord date + + number of parking lots for carsaantal parkeerplaatsen personenauto's + + political seats + + special effectsSpezialeffektethe person who is responsible for the film special effects + + πυκνότητα (μ3)密度 (μ3)Dichte (μ3)densità (μ3)densidade (μ3)densité (μ3)density (μ3) + + IATA Location IdentifierΙΑΤΑ + + grinding capabilitymaal capaciteitgrinding capability for Mills + + wins at LAGTпобеде на LAGT + + compression ratiotaux de compressionKompressionsverhältnis + + egafd idegafd idcódigo no egafd + + minimum inclination + + river mouthFlussmündungriviermondingεκβολές + + parent organisationmoederorganisatie + + patron saint + + size (B)μέγεθος αρχείου (B)Dateigröße (B)taille de fichier (B)size of a file or softwareμέγεθος ενός ηλεκτρονικού αρχείου + + best rank double + + maximum elevation (μ)κορυφή (μ)maximum elevation above the sea level + + numberOfPropertiesUsednombre de propriétés utiliséesnumber of all properties used as predicate in DBpedianombre total de propriétés utilisées comme prédicat dans DBpedia + + tournament recordTurnierrekord + + resolutionAuflösungανάλυσηrésolutionNative Resolution + + hof + + official languagelangue officielleAmtssprache + + saturation coordinate in the HSV colour space + + supply + + ordeδιαταγή目_(分類学)Ordnungordre (taxonomie)order (taxonomy) + + mill span (μ)vlucht (μ)Εκπέτασμα (μ) + + third driverdritter Fahrer + + اوسط گہرائی اقتباس + + orogenyorogenèse + + housemaisonσπίτι + + diseaseKrankheitPoints to a disease pertaining to the subject at hand.Verweist auf eine Krankheit. + + event datedate de l'événementVeranstaltungstermin + + last winletzter Siegτελευταία νίκη + + intérpreteartiestwykonawcaκαλλιτέχνηςInterpretفنکارinterprèteperformerThe performer or creator of the musical work.موسیقی کے کام کا اداکار یا تخلیق کار۔Celui qui interprète ou qui a créé l'oeuvre musicale. + + denominationReligious denomination of a church, religious school, etc. Examples: Haredi_Judaism, Sunni_Islam, Seventh-day_Adventist_Church, Non-Denominational, Multi-denominational, Non-denominational_Christianity + + grandsire + + gini coefficient rankingposição no ranking do coeficiente de Gini + + rangebereikMaximum distance without refueling + + promotionFörderung + + last championletzter Siegerson şampiyon + + pole position + + cylinder bore (μ) + + laterality + + sceneSzene + + wilayaвилајет + + Ländervorwahlcountry codecode du paysCountry code for telephone numbers.Code du pays dans la numérotation téléphonique. + + right child + + name in Hanja-written (traditional) Koreannaam in Hanja-geschreven Koreaans + + illiteracyAnalphabetismusanalfabetismo + + managerManagerπροπονητής + + جمع آبادیات + + adjacent settlement of a switzerland settlementСуседно насеље у Швајцарскојملحقہ بستی + + asset under management ($)κεφάλαιο υπό διαχείριση ($) + + selectionAuswahlwhen (or in which project) the person was selected to train as an astronaut + + operatorBetreiberexploitantOrganisation or City who is the operator of an ArchitecturalStructure, PublicTransitSystem, ConcentrationCamp, etc. Not to confuse with builder, owner or maintainer. +Domain is unrestricted since Organization is Agent but City is Place. Range is unrestricted since anything can be operated. + + fatherpèreVater + + clubs record goalscorer + + junior season + + oorsprongπροέλευσηHerkunftorigemorigineorigin + + AggregationAgrégatAggregatie + + actieve jaren startdatumενεργά χρόνια ημερομηνία έναρξηςفعال سال کی شروعات کی تاریخdate de début d'activitéactive years start dateдатум почетка активних година + + percentage of fatFettgehaltvetgehaltehow much fat (as a percentage) does this food contain. Mostly applies to Cheese + + number of parking spacesnombre de places de parkingAnzahl der Parkplätze + + drugs.comdrugs.comexternal link to drug articles in the drugs.com websiteVerweist auf den drugs.com Artikel über ein Medikament. + + branchriviertakδιακλαδώσεις + + date of latest election + + NLA IdNLA Trove’s People and Organisation view allows the discovery of biographical and other contextual information about people and organisations. Search also available via VIAF. + + last election dateThe last election date for the house. + + draft round + + Total Pandemic CasesTotal number of cases in a pandemic + + associateStarσυγγενικός αστέραςçevreleyen + + previous population total + + dist_pc + + bestandsnaamόνομα αρχείουdateinamenom de fichierfilename + + id number + + danse scoreڈینس سکور + + former teamvoormalig team + + ISNI IdISNI is a method for uniquely identifying the public identities of contributors to media content such as books, TV programmes, and newspaper articles. + + wins at other tournamentsпобеде на осталим турнирима + + number of volumesnombre de volumes + + raceRennen + + AstrazencaCumulativeDoses阿斯利康制药公司,是一家由瑞典阿斯特公司(Astra AB)和英国捷利康公司(Zeneca Group PLC)于1999年4月6日合并而成的大型英瑞合资生物制药企业 + + date constructionBauzeitέναρξη_κατασκευής + + draft pick + + estatusstatusStatusstatutstatus + + dress codeThe recommended dress code for an establishment or event. + + precursorVorläufer + + national championshipnationale Meisterschaft + + regional languageRegionalsprache + + free score competition + + SIL codeSIL-codekod SIL + + Council area + + wielkość absolutnaαπόλυτο μέγεθοςabsolute Helligkeitdearbhmhéidmagnitude absolueabsolute magnitudeапсолутна магнитуда + + solventLösungsmittel + + uitgeverεκδότηςHerausgeberéditeurpublisherPublisher of a work. For literal (string) use dc:publisher; for object (URL) use publisherEditeur d'une oeuvre. Pour le littéral (string) utilisez dc:publisher; pour l'objet (URL) utilisez l'éditeur + + population metro density (/sqkm)bevolkingsdichtheid (/sqkm) + + number of sportsnumbre de sportsnumero de deportes + + area metro (m2)περιοχή μετρό (m2)метрополска област (m2) + + wins at LPGAпобеде на LPGA + + farvekleurχρώμαFarbecouleurcolourA colour represented by its entity. + + daira + + alongsideδίπλαуз + + country with first satellite launched + + commentcommentaireKommentarσχόλιο + + agglomerationPopulationYearгодина популације агломерацијеمجموعی آبادی کا سال + + type coordinateScale 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èle:Infobox_Subdivision_administrative for examples, and https://fr.wikipedia.org/wiki/Modèle:GeoTemplate/Utilisation#La_mention_Type:... for a complete list + + project reference IDThe reference identification of the project. + + highway systemthe highway system that a route is part of + + ISBNISBNThe International Standard Book Number (ISBN) is a unique numeric commercial book identifier based upon the 9-digit Standard Book Numbering (SBN) code. + + management place + + visitor statistics as ofстатистика посетилаца одYear visitor information was gathered. + + school number + + mean temperature (K)Durchschnittstemperatur (K)μέση θερμοκρασία (K) + + ICD1ICD1ICD1 + + επέτειοςJubiläumanniversaireanniversaryгодишњица + + director de cineinstruktørregisseurдиректорσκηνοθέτηςregisseurréalisateurfilm directorA film director is a person who directs the making of a film.Un réalisateur (au féminin, réalisatrice) est une personne qui dirige la fabrication d'une œuvre audiovisuelle, généralement pour le cinéma ou la télévision. + + revenue ($)Einnahmen ($)έσοδα ($)chiffre d'affaire ($) + + television seriesFernsehserieτηλεοπτικές σειρές + + number of the next tracknuméro de la piste suivantenumber of the next track in the recorded work.numéro de la piste suivante du support. + + creative director + + Komplikationencomplicationsεπιπλοκέςcomplications + + sublimation point (K) + + wins at pgaпобеде на PGA + + passengers per daypassagers par jourPassagiere pro TagNumber of passengers per day.Nombre de passagers par jour. + + UniProtUniProt + + superintendentLeiteropzichter + + wine producedпроизводи вино + + de facto language + + computing platformsome sort of hardware architecture or software framework, that allows this software to run + + date of liberationdatum bevrijding + + ATC prefixATC πρόθεμαpréfix ATC + + clothing sizeKonfektionsgröße + + last positionτελευταία θέση + + number of contries inside en continent + + area of catchment (m2)Einzugsgebiet (m2)λίμνη (m2)подручје слива (m2) + + chancellorKanzler + + has taxontaxon + + año de fundaciónoprichtingsjaarέτος ίδρυσηςGründungsjahrfounding year + + Number Of CantonsAantal kantons + + number of people attendingZahl der Teilnehmernúmero de participantesnombre de participants + + european parliament groupgrupo parlamentar europeu + + eruption dateannée de la dernière éruptionJahr des letzten Ausbruchsjaar uitbarsting + + NRHP typeType of historic place as defined by the US National Park Service. For instance National Historic Landmark, National Monument or National Battlefield. + + wsop win yearгодина освајања WSOP-а + + title doubleDoppeltitel + + title singleEinzeltitel + + number of Person class (entities) in DBpediapočet entit třídy Osoba v DBpedii + + goals in leagueTore in der Ligadoelpunten in de competitieリーグ得点 + + subdivision + + abbey church blessing charge + + managementManagementmanagement + + mayor function of a switzerland settlement + + producesproduziert + + route next stoparrêt suivantnext stop on a route.arrêt suivant sur une route. + + hybridPlants from which another plant (or cultivar) has been developed from + + انتظامی ضلع + + Swimming styleSchwimmstilZwemslag + + processor (CPU)procesor (CPU)CPUprocesseur(CPU)CPUCPU of an InformationAppliance or VideoGame (which unfortunately is currently under Software)Processeur d'un équipement d'information ou d'un jeu vidéo (qui malheureusement est actuellement en charge du logiciel) + + الحاق + + bourgmestrebourgmestre + + NIS codeIndexing code used by the Belgium National Statistical Institute to identify populated places. + + date of approval by lower parliamentdatum aangenomen door Tweede Kamer, Lagerhuis, Bondsdag enz.Date of approval by lower parliament (House of Commons, Chambre des Députés, Bundestag, Tweede Kamer etc.). + + music subgenreMusik Subgenre + + πανεπιστήμιο大学Universitätuniversityуниверзитетuniversity a person goes or went to.To πανεπιστήμιο είναι εκπαιδευτικό ίδρυμα ανώτατης εκπαίδευσης και επιστημονικής έρευνας που παρέχει πτυχίο πιστοποίησης ακαδημαϊκής εκπαίδευσης. + + worst defeathöchste Niederlageнајтежи пораз + + next eventnächste Veranstaltungvolgende evenementεπόμενο γεγονός + + most successful playermejor jugadorthe best player in a certain sport competition. E.g, in a football competition, the player that scored more goals.el mejor jugador de una cierta competición deportiva. Por ejemplo, en una competición de fútbol, aquel jugador que ha marcado más goles. + + distributing company + + chaplainKaplan + + lead team + + number of studio albumsnombre d'albums studioZahl der Studio-Albenthe number of studio albums released by the musical artistnombre d'albums que l'artiste musical a réalisés en studio + + combattantfighterKämpfer + + Alps subsectionAlps υποδιαίρεση των άλπεωνsottosezione alpinaАлпска подсекцијаthe Alps subsection to which the mountain belongs, according to the SOIUSA classification + + feat + + end reign + + tanteعمةθεία叔母Tanteaunt + + police nameThe police detachment serving a UK place, eg Wakefield -> "West Yorkshire Police" + + countryLand蔵書数 + + جامعہ کی قسم + + career points + + boiler pressurepression de la chaudièreKesseldruckπίεση δοχείου βράσης + + number of professionalsAnzahl von Fachleutennombre de professionnelsnumero de profesionalesnumber of people who earns his living from a specified activity. + + απόφοιτοι πανεπιστημίουAlumnianciens élèvesalumniалумни + + volcano idid вулкана + + NGC nameName for NGC objects + + تاریخ کی نقاب کشائینقاب کشائی کی تاریخ مقرر کرتا ہے۔ + + allcinema idallcinema idallcinema idallcinema id + + ORCID IdAuthority data on researchers, academics, etc. The ID range has been defined as a subset of the forthcoming ISNI range. + + religious head + + employer's celebration + + nationaliteitεθνικότητα国籍Nationalitätnacionalidadenationaliténationality + + fees ($)Gebühren ($)δίδακτρα ($) + + number of albumsnombre d'albumsAnzahl der Albenthe total number of albums released by the musical artistnombre total d'albums que cet artiste musical a réalisés + + certificationcertification + + waterway through tunnelпловни пут кроз тунелWasserweg durch TunnelWaterway that goes through the tunnel. + + subsequent work dateannée de sortie oeuvre suivanteYear when subsequent work is releasedAnnée de sortie de l'oeuvre suivante + + course area (m2)コース面積 (m2)The area of courses in square meters. + + RefSeq + + statistic year + + project budget funding ($)The part of the project budget that is funded by the Organistaions given in the "FundedBy" property. + + teamομάδαチームTeaméquipeteam + + highest point of the islandhöchste Erhebung der Insel + + aircraft transportαερομεταφορές + + aantal kamersαριθμός δωματίωνAnzahl der Zimmernombre de piècesnumber of rooms + + defeatήτταNiederlageشکست + + زمین کا علاقہ (m2) + + mayorMandate + + system of lawRechtssystemrechtssysteemA referral to the relevant system of law + + appearanceErscheinungsbild + + station visit duration (s) + + ISO 639-3 codeISO 639-3 codekod ISO 639-3 + + SMILESThe 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. + + parent mountain peak + + Film Fare Award + + first launch dateerster Starttermin + + bateríabatterijBatteriebatteriabateriapilebatteryPoints out the battery used with/in a thing. + + green coordinate in the RGB space + + Suspected CasesNumber of suspected cases in a pandemic + + election dateWahltermin + + Ceremonial County + + Golden Globe Award + + number of all MuscialArtist playing the instrumentpočet hudebních umělců hrající na konkrétní nástroj + + usurperузурпатор + + train carriagewagon + + lethal when given to ratsdodelijk voor ratten + + διωνυμικός学名Doppelbenennungbinomialbinomialused to name species with a name consisting of two words.sert à nommer les espèces avec un nom composé de deux mots. + + bowling sideWerfarm + + principalдиректор (на училище)Principal of an educational institution (school)Директор на училище + + competition titleSterbeort + + rail gauge (μ)Spurweite Eisenbahn (μ) + + personPersonάτομο + + foal date + + number of passengersnombre de passagersaantal passagiers + + us open doubleUS Open дубл + + argue dateδημοφιλής ημερομηνίαبحث کی تاریخ + + page numberSeitenzahlpagina van verwijzingPage # where the referenced resource is to be found in the source document + + wins at championships + + defeat as team managerNiederlage als Trainer + + vice presidentvice présidentпотпредседникVizepräsident + + licence number label + + project participantProjektteilnehmerA participating organisation of the project. + + political leaderpolitischer Führer + + source confluence region + + date completedολοκλήρωσηمکمل تاریخ + + فن کاسرپرستایک بااثر، دولت مند شخص جس نے کسی فنکار، کاریگر، عالم یا بزرگ کی حمایت کی۔ + + configurationconfiguratieKonfigurationconfiguration + + sport governing body + + provinceProvinzεπαρχίαprovincie + + علاقے کا درجہ + + ICD10ICD10 + + ChemSpider Ididentifier in a free chemical database, owned by the Royal Society of Chemistry + + oppervlakte (m2)έκταση περιοχής (m2)Fläche (m2)superficie (m2)area total (m2)укупна површина (m2) + + route endWegendeEnd of the route. This is where the route ends and, for U.S. roads, is either at the northern terminus or eastern terminus.Ende des Verkehrswegs. + + highest mountainhöchster Berg + + notable commander + + iss dockings + + International Standard Identifier for Libraries and Related Organizations (ISIL) + + official opened by + + Symptomesymptomsσύμπτωμαsymptômes + + beroepεπάγγελμαBerufprofessionprofession + + redline (kmh) + + OMIM idOMIM idOMIM id + + cargo fuel (g) + + regional councilGemeinderat + + orientationorientationOrientierung + + number of countriesαριθμός χωρώνnúmero de países + + program cost ($) + + currency codeWährungscodecód airgeadraISO 4217 currency designators. + + συμμαχίαAllianzallianceallianceсавез + + ModernaCumulativeDoses莫德纳,是一家总部位于美国马萨诸塞州剑桥市的跨国制药、生物技术公司,专注于癌症免疫治疗,包括基于mRNA的药物发现、药物研发和疫苗技术 + + general managerHauptgeschäftsführer + + length reference + + mandate of the president council of the regional council + + cyclist genre + + percentage of a place's population that is literate, degree of analphabetismpercentage van de bevolking dat geletterd is + + temple year + + Amsterdam CodeАмстердам кодAmsterdamse code + + episodeFolge + + mgiidmgiidMouse Genomic Informatics ID + + amateur defeatаматерских пораза + + cover artistcover artistCover artist + + italic titletitre en italiqueControls whether the title of the article is shown in italics.Indique si le titre de l'article doit être en italique. Valeur oui / non + + broadcast areacouverture de diffusionEmpfangsgebietπεριοχή αναμετάδοσης + + mediaMedien + + agglomeration areaجمع کا علاقہ + + label of a website + + heritage registerinventaire du patrimoineregistered 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.inscrit à un inventaires dédiés à la conservation du patrimoine, naturel ou culturel, existants dans le monde. + + final publication datelaatste publicatiedatumDatum der finalen AusgabeDate of the final publication.Datum der allerletzten Veröffentlichung des Periodikums. + + release locationUsually used with releaseDate, particularly for Films. Often there can be several pairs so our modeling is not precise here... + + budget ($)budget ($)προϋπολογισμός ($)Etat ($)budget ($) + + regioregionπεριοχήRegionregionThe regin where the thing is located or is connected to. + + former band memberehemaliges Bandmitgliedvoormalig bandlidA former member of the band. + + Goya Award + + silver medal doubleSilbermedaille Doppel + + number of officesAnzahl Bürosαριθμός γραφείωνNumber of the company's offices.Αριθμός γραφείων εταιρείας. + + hue coordinate in the HSV colour space + + INNDCIInternational Nonproprietary Name given to a pharmaceutical substance + + route startpoint de départWeganfangStart of the route. This is where the route begins and, for U.S. roads, is either at the southern terminus or western terminus.point de départ d'une route.Anfang des Verkehrswegs. + + musicFormatmusikFormateformat de la musiqueThe format of the album: EP, Single etc.Format de l'album: EP, 45tours (single), etc. + + vlag (afbeelding)σημαίαFlaggebandieragöndere çekmekflag (image)Wikimedia Commons file name representing the subject's flag + + long distance piste kilometre (μ) + + numberOfPredicatesnombre de prédicatsnumber of predicates in DBpedia (including properties without rdf:type of rdf:Property)nombre de prédicats dans DBpedia (y compris les propriétés sans rdf:type de rdf:Property) + + fightKampf + + mukthar of a lebanon settlement + + lead year + + number of entities of Settlement class in countrypočet entit třídy Sídlo v dané zemi + + ethnicityεθνότηταethnische zugehörigkeitetniaΜία ορισμένη κοινωνική κατηγορία ανθρώπων που έχουν κοινή καταγωγή ή εμπειρίες. + + podiumPodest + + subject termonderwerpsaanduidingThe subject as a term, possibly a term from a formal classification + + définitiondefinitiontanımlar + + wins at AUS + + qatar classic + + bluecoordinate in the RGB space + + valutawalutaνομισματική μονάδαWährungairgeadramoedadevisecurrencyυπολογίζει ή εκφράζει οικονομικές αξίες + + doctoral studentDoktorandδιδακτορικοί_φοιτητέςdoctoraalstudent + + population placea place were members of an ethnic group are living + + squad numberThe number that an athlete wears in a team sport. + + command module + + number of ministriesZahl der Ministeriennumero de ministerios + + ELO rating + + association of local governmentvereniging van lokale overhedenσυνεργασία της τοπικής αυτοδιοίκησηςمقامی حکومت کی انجمن + + management country + + reigning poperegerende paus + + adresадресδιεύθυνσηAdresseadresseaddressадресаAddress of something as literal. Usually Building, but we also use it for the address of a Region's or Settlement's government + + titre original non latinThe original non latin title of the workTitre original non latin de l'oeuvre + + seniunija + + medalistMedaillengewinnermedalhista + + distributorallumeur + + offered classes + + highest building in year + + disciplineDisziplin + + code Stock Exchangebeurscode + + afbeeldingрисунокεικόναbildfiguraimagepictureA picture of something or someone.Image de quelque chose ou quelqu'un. + + lunar EVA time (s) + + combatantKombattant + + number of studentsnombre d'étudiantsZahl der Studierendenαριθμός φοιτητών + + number of reactorsAnzahl der Reaktorennombre de réacteursaantal reactoren + + contractorεργολάβοςAuftragnehmeraannemer + + former channel + + capital position + + sterrenbeeldgwiazdozbiórSternbildconstellationTakımyıldızconstellation + + KategoriecategorieκατηγορίαKategoriecatégoriecategory + + creation christian bishop + + molecular weightMolekulargewichtmolgewicht + + approachنقطہ نظرapproche + + apc president + + ناکارہاگر کمپنی ناکارہ ہے یا نہیں۔ اگر تاریخ دی گئی ہو تو اختتامی_تاریخ استعمال کریں۔ + + total population rankingposição no ranking do total da populacao + + breederZüchterκτηνοτρόφος + + victorySiegпобеда + + NCINCINCINCI + + legislative period nameName in der LegislaturperiodeThe term of the on-going session (e.g.: "40th Canadian Parliament"). + + billed + + patron (art)mécèneفن کاسرپرستAn influential, wealthy person who supported an artist, craftsman, a scholar or a noble. + +. See alsoCelui qui encourage par ses libéralités les sciences, les lettres et les arts. + + model end date + + gross domestic product as ofproduto interno bruto em + + number of villagesAnzahl der Dörferjumlah desa/kelurahan + + artificial snow area + + full score + + structural systemTragsystembouwmethodeκατασκευαστικό σύστημα + + reopenedwieder eröffnet + + op basis vanna podstawieβασισμένο σεbasierend aufbunaithe arbasé surbased on + + staffPersonalπροσωπικό + + sister newspaper + + is part of (literal)ist TeilName of another thing that this thing is part of. Use for infobox "part of" properties given as text; for objects use isPartOf + + PubChemPubChemPubChem + + eMedicine subjecteMedicine onderwerp + + Wiki page in degreeReserved for DBpedia. + + highest rankhöchster Ranglistenplatz + + ULAN idUnion 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). +http://vocab.getty.edu/ulan/$1 + + source state + + author of prefaceAutor des Vorwortsschrijver voorwoord + + endEnde + + Number of votes given to candidateAnzahl der Stimmen für Kandidaten + + wins at ASIA + + equity ($)Gerechtigkeit ($) + + number of seats in parliamentAnzahl der Sitze im Parlamentaantal zetels in parlementnumber of seats in House of Commons-like parliamentsaantal zetels in Tweede-Kamer-achtig parlement + + skillsFähigkeitencompétencesbekwaamheden + + comparablevergleichbarsimilar, unrelated rockets + + diameter (μ)διάμετρος (μ)Durchmesser (μ)diamètre (μ)diameter (μ) + + BAFTA AwardBAFTA Awardβραβείο BAFTA + + statistic label + + route end locationOrt des WegendesThe end location of the route.End-Ort des Verkehrswegs. + + positieΘέσηポジションPositionposition + + maximum boat beam (μ)μέγιστο_πλάτος_πλοίου (μ) + + orbital flights + + team sizeTeamgröße + + Music Bandorchestre + + familyFamilietaalfamilierodzina + + code on indexIndexcode + + opponent敵対者Gegner + + vice prime ministerVizeministerpräsidentзаменик премијераvice premier + + solvent with good solubilityLösungsmittel mit guter Löslichkeitgoed oplosbaar in + + settlement code + + funded byιδρύθηκε απόgefördert durchA organisation financing the research project. + + klasseτάξηKlasseclasseclass + + avifauna population + + landing vehicle + + conocido porbekend omznany z powoduγνωστός_γιαbekannt fürconnu pourknown forWork, historic event, etc that the subject is known for. Applies to Person, Organization, ConcentrationCamp, etcOeuvre, événement historique, etc pour lequel le sujet est connu. S'applique aux personnes, organisations, camps de concentration, etc + + hub airport + + grounds for termination of activitiesreden van opheffing + + distance to Charing Cross (μ) + + albumαπό το άλμπουμAlbumalbumalbumалбум + + start wqs + + british wins + + ept itm + + reference for cultural data + + extinction dateontbindingsdatum!!! Do NOT use this property for non Species related dates!!! - Date when an Organization (eg PoliticalParty, Company) or Species ceased to exist + + team coachedTeam gecoacht + + aircraft helicopter attackHubschrauberangriffεπίθεση ελικοφόρων αεροσκαφώνваздушни напад хеликоптером + + treeBaumδέντρο + + seniority + + number of person in one occupationpočet lidí v konkrétním zaměstnání + + second driver country + + materialMaterialmatériel + + umbrella titleoverkoepelende titel + + ISO 639-2 codeISO 639-2 codekod ISO 639-2 + + twin countryPartnerland + + diepte (μ)βάθος (μ)Tiefe (μ)profondeur (μ)depth (μ)Is a measure of the distance between a reference height and a point underneath. The exact meaning for a place is unclear. If possible, use or to be unambiguous. + + gini coefficient as ofcoeficiente de Gini em + + Establishedetabliert + + lengte (μ)μήκος (μ)Länge (μ)longueur (μ)length (μ) + + عمر + + has channel + + Relates an entity to the populated place in which it is located. + + maximum area quote + + number of teamsnombre d'équipesAnzahl der Teamsnumero di squadre + + maximum absolute magnitudemaximale absolute Helligkeitmaximale absolute magnitude + + largest win + + second placezweiter Platz + + solicitor generalGeneralstaatsanwaltadvocaat-generaalhigh-ranking solicitorde advocaat-generaal + + rank of an area + + sport specialtysport specialiteitthe sport specialty the athlete practices, e.g. 'Ring' for a men's artistic gymnastics athlete + + status year + + number of participating athletesAnzahl der teilnehmenden Athletennombre d'athlètes participant + + number of volunteersnombre de bénévolesAnzahl der Freiwilligenαριθμός εθελοντών + + eraεποχή + + game artistゲームデザイナー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. + + demeمحلّہ + + setting of playThe places and time where the play takes place. + + railway platformsBahnsteigeperronsαποβάθραInformation on the type of platform(s) at the station. + + سامان کی جانچ پڑتال کر سکتے ہیں + + legal articlewetsartikelarticle in code book or statute book referred to in this legal case + + equipmentAusrüstungεξοπλισμόςuitrusting + + position in which a surface occurs in a text + + notesAnmerkungenσημειώσειςnotesadditional notes that better describe the entity.συμπληρωματικές σημειώσεις που περιγράφουν καλύτερα την οντότητα. + + spur type + + national team match point + + catholic percentagepourcentage catholique + + size mapGröße der Karte + + Grammy AwardGrammy Award + + academic disciplinewissenschaftliche Disziplinакадемска дисциплинаتعلیمی نظم و ضبط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.ایک قرارداد میٹنگ یا کنونشن کے ذریعہ اختیار کردہ ایک رسمی بیان کی وضاحت کرتی ہے + + death ageموت کی عمرηλικία θανάτουSterbealter + + Recovery CasesNumber of recovered cases in a pandemic + + numberOfDisambiguatesnumber of disambiguation pages in DBpedia + + iucn categoryIUCN categorie + + trading nameHandelsname + + boosterπροωθητής + + first ascentErstbesteigung + + FDA UNII codecódigo FDA UNIIFDA Unique Ingredient Identifier (UNII) code for a DBpedia Drug + + IUPAC nameIUPAC名 + + Wikipage revision IDReserved for DBpedia. + + next entity + + nerveNerv + + first winnererster Gewinnerπρώτος νικητής + + techniquetechnischτεχνικήtécnica + + communeKommunecommune + + intercommunality shape + + outflowAbflussεκροή + + wapenWaffearmeweaponоружје + + number of resource / entities for concrete type of subjectpočet zdrojů / entint pro konkrétní typ subjectu + + cousurper + + current team manager + + classificationcatégoriecategorieAny string representing a class or category this thing is assigned to.Toute chaîne de caractères représentant une classe ou une catégorie à laquelle cette chose est assignée. + + movementBewegungbewegingmouvement artistiqueartistic movement or school with which artist is associated + + ship beam (μ)The beam of a ship is its width at the widest point. + + currently used forhuidig gebruikusage actueluso actualCurrent use of the architectural structure, if it is currently being used as anything other than its original purpose. + + frequency (Hz)Frequenz (Hz)συχνότητα (Hz)fréquence (Hz) + + suppliesπαροχές + + topicThema + + start reign + + named afterbenannt nach + + Method of discoveryVerfahren zur Entdeckung + + heirErbe + + highest pointυψηλότερο σημείοhöchste Erhebung + + ski piste kilometre (μ)Skipiste km (μ) + + عمارتی دفتر + + CampeónwinnaarπρωταθλητήςMeisterchampionchampionwinner of a competitionνικητής ενός διαγωνισμού + + launch padStartrampe + + Game Engineゲームエンジン + + number of étoiles Michelinnombre d'étoiles Michelin + + body styleτύπος σώματος + + first publishererster Herausgeberoorspronkelijke uitgever + + total launches + + first flight end date + + highest breakHöchstes Break + + Orthologous Geneオーソロガス遺伝子 + + season manager + + political functionpolitische Funktion + + organisation memberOrganisationsmitgliedIdentify the members of an organisation. + + broer of zus兄弟Geschwisterfrère ou soeursibling + + brain info typeτύπος νοητικής πληροφόρησης + + routeRoute + + UTC offsetUTC офсет + + dueñoeigenaarwłaścicielιδιοκτήτηςEigentümerúinéirpropriétaireownerUsed as if meaning: owned by, has as its owner + + wavelength (μ)Wellenlänge (μ)таласна дужина (μ)longueur d'onde (μ) + + best rank single + + StadiumStadionστάδιο + + exhibitionexpositionNotes about an exhibition the object has been toNotes relatives à l'exposition dont l'objet a fait partie + + on chromosomechromosoom nummerthe number corresponding to the chromosome on which the gene is located + + Bundeslandfederal stateprovincie + + certification datedatum certificatie + + in cemeteryop kerkhof + + variant or variationVariante oder Variationvariant of variatievariant or variation, for example all variations of a color + + pro team + + function end yearlaatste jaar functie + + minimum system requirementsMindestsystemanforderungen + + source elevation (μ) + + firstPopularVote + + station structurestation structuurType of station structure (underground, at-grade, or elevated). + + regional prefectureregionale Präfektur + + competitionWettbewerbcompetitioncompetición + + conviction date + + MusicBrainz artist idMusicBrainz artist idMusicBrainz artist idMusicBrainz artist idMusicBrainz artist. Applies to artists + + number of piers in waterAnzahl der Pfeiler in WasserNumber of piers standing in a river or other water in normal conditions. + + αστρολογικό ζώδιοSternzeichensigno astrológicoنشان نجومastrological sign + + resting place position + + geolocDepartment + + TradeMarkMarcaMarque commerciale + + first raceerstes Rennen + + binomial authority(学名命名者) + + same namegleicher Name + + row numberZeilennummernuméro de ligneregelnummer van verwijzingRow number where the referenced resource is to be found in the source fileNuméro de ligne où la ressource référencée doit se trouver dans le fichier source + + EKATTE codeIndexing code used by the Bulgarian National Statistical Institute to identify populated placesЕдинен класификатор на административно-териториалните и териториалните единици + + editingBearbeitungeagarthóireacht + + DeathsNumber of deaths caused by pandemic + + vapor pressure (hPa)dampdruk (hPa) + + existenceExistenzείναιΤο είναι αντικατοπτρίζει αυτό που υπάρχει. + + regent ofSubject has served as the regent of another monarch + + orbital eccentricityexcentricité orbitale + + committee in legislatureAusschuss in der LegislativeCommittee in the legislature (eg.: Committee on Economic and Monetary Affairs of the European Parliament). + + reference for politic dataReferenz für politische Daten + + siren number + + timetijdZeitχρόνοςΧρόνος χαρακτηρίζεται η ακριβής μέτρηση μιας διαδικασίας από το παρελθόν στο μέλλον. + + rebuilding yearherbouw jaar + + melting point (K)Schmelzpunkt (K)point de fusion (K)融点 (K) + + minimum area quote + + champion in single malechampion en simple hommeCampeón en simple hombreswinner of a competition in the single male session, to distinguish from the double session (as in tennis) + + roof heightHöhe Dach + + country rankRang LandPlace of the building in the list of the highest buildings in the countryDer Platz des Gebäudes in der Liste der höchsten Gebäude des Landes + + cable carDrahtseilbahnطَنابی گاڑی + + registrationenregistrementAnmeldung + + Number of unique contributorsNombre de contributeurs uniquesused for DBpedia Historyutilisé par DBpedia Historique + + اے ٹی سی کوڈ + + number of competitorsAnzahl der Wettbewerber + + AOAOAOAO + + partTeil + + layout + + averageμέσος όροςDurchschnitt + + roadweg + + coach club + + team title + + اکیڈمی ایوارڈموشن تصویر پروڈکشن اور کارکردگی میں کامیابیوں کے لئے اکیڈمی آف موشن تصویر آرٹس اور سائنسز کے ذریعہ ایک سالانہ اعزاز + + neighboring municipalityNachbargemeindeaangrenzende gemeentemunicipío adjacente + + títulotitelΤίτλοςタイトルTiteldenominazionetitle + + orbitsBahnen + + ChEMBLChEMBL is a manually curated chemical database of bioactive molecules with drug-like properties. + + Allocine IDID AllocineID of a film on AllocineID d'un film sur Allocine + + taoiseachtaoiseachhead of government of Ireland + + first winerster Sieg + + open access contentfrei zugänglicher InhaltenAvailability of open access content.Verfügbarkeit von frei zugänglichem Inhalten. + + parent companyMuttergesellschaft + + chief place + + powerMacht + + Number of revision per yearNombre de révisions par annéeused for DBpedia History > Subject must be a blank node containing a dc:date and a rdfs:valueutilisé par DBpedia Historique > Le sujet de cette relation doit être un noeud blanc contenant une dc:date et une rdfs:value + + abbey church blessingابی چرچ کی برکت + + flash pointvlampuntlowest temperature at which a substance can vaporize and start burning + + australia open doubleآسٹریلیا اوپن ڈبل + + رفیقه مدیر + + distance to Edinburgh (μ)απόσταση από το Εδιμβούργο (μ) + + upper ageгорња старосна граница + + former namefrüherer Nameπροηγούμενο όνομα + + National Film AwardNationaler Filmpreis + + subsystemTeilsystem + + DosesSecondSecondes dosesNumber of second vaccine doses.Nombre de secondes doses de vaccin. + + output + + ACT scoreACT σκορACT резултатاے سی تی سکورmost recent average ACT scoresποιό πρόσφατες μέσες βαθμολογίες ACT + + caseFall + + coalitionKoalitionσυνασπισμόςΠαλαιότερα ο συνασπισμός χρησιμοποιούνταν ως στρατιωτικός όρος που υποδήλωνε την όμορη παράταξη πολεμιστών κατά την οποία ο κάθε στρατιώτης προφύλασσε τον διπλανό του με την ασπίδα του. + + spikeschmetternκαρφίsmaç + + area water (m2)oppervlakte water (m2)έκταση_υδάτων_περιοχής (m2)водена површина (m2) + + subsystem link + + ski tow + + old team coached + + burgemeesterδήμαρχοςBürgermeistermairemayor + + String designation of the WrittenWork describing the resourceAanduiding beschrijvend document + + manufacturerHerstellerκατασκευαστής + + year of reported revenue + + Nagroda Akademii FilmowejΒραβείο ακαδημίαςAcademy AwardDuais an Acadaimhاکیڈمی ایوارڈAcademy Awardоскарموشن تصویر پروڈکشن اور کارکردگی میں کامیابیوں کے لئے اکیڈمی آف موشن تصویر آرٹس اور سائنسز کے ذریعہ ایک سالانہ اعزاز + + launch siteStartplatz + + Computing input + + manager season + + monument protection statusmonumentStatusThe 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.Aanduiding van het soort beschermingsregime. Bijv. 'rijksmonument' in Nederland of 'Monument Historique' in Belgie of Frankrijk + + associated bandσυνεργαζόμενο συγκρότημαمنسلک سازینه + + floor countverdiepingenαριθμός ορόφων + + colour hex code of away jersey or its partsFarben Hex Code des Auswärtstrikots oder Teile diesesA colour represented by its hex code (e.g.: #FF0000 or #40E0D0). + + us open mixedUS Open микс дубл + + UCI codecodice UCIOfficial UCI code for cycling teams + + politicianPolitikerThe politician exercising this function.Der Politiker welcher dieses Amt hält (hielt). + + LCCN IdLibrary of Congress Control Number + + dynastyDynastiedynastie + + athletics disciplinediscipline athlétiqueLeichtathletikdisziplin + + lieutenancy + + total time person has spent in space (s)temps total passé dans l'espace par la personne (s)Gesamtzeit welche die Person im Weltraum verbracht hat (s) + + valvetrainVentilsteuerungdistribution (moteur) + + religieθρησκεία宗教Religionreligiãoreligionreligion + + agglomeration populationпопулација агломерације + + Dutch artwork codecode RKD + + mount + + biome生物群系 + + NAACP Image Award + + aircraft fighterборбени авионμαχητικό αεροσκάφος + + IBDB IDThe Internet Broadway Database ID (IBDB ID) from ibdb.com. + + Screen Actors Guild Award + + ingredient name (literal)Main ingredient used to prepare a specific Food or Beverage. For strings use ingredientName, for objects use ingredient. + + tipotypeτύποςTypप्रकारtypetype + + line length (μ)Linienlänge (μ)Length of the line. Wikipedians usually do not differentiate between track length and line lenght. + + birth signSternzeichen + + goals in national teamTore in der Nationalmannschaftinterland doelpunten代表得点 + + gas chamberschambres à gazNumber or description of gas chambers of a ConcentrationCampNombre ou description des chambres à gaz d'un camp de concentration + + فعال سال آخر سال + + موت کی جگہوہ جگہ جہاں شخص کی موت ہوئی۔ + + GARDNumGARDNumGARDNumGARDNum + + number of pads + + share source + + wha draftWHA драфт + + other branchzijtak + + session numbernúmero da sessão + + KEGGBioinformatics resource for deciphering the genome. + + islandInselνησιά + + has input + + final lostFinale verloren + + oversight + + country with first satellite + + number of dependency + + music byMusik von + + alternative texttexte alternatifReplacement text if the image cannot be displayed; used for screen readers; describes the image (max 120 chars recommended).Alternative textuelle de l'image ; remplace l'image pour les lecteurs d'écrans ; description succincte de l'image (un maximum de 120 caractères est recommandé). + + event descriptiondescription de l'événementbeschrijving gebeurtenisThis is to describe the event that hapened here (in case there is no event resource to be linked to)Sert à décrire l'événement qui s'est passé ici (dans le cas où il n'y a pas de ressource liée d'événement) + + khl draft team + + Gray pageRefers to the famous 1918 edition of Gray's Anatomy. + + galicianSpeakersDatedata da enquisa sociolingüísticaThe last inquiry date about linguistics uses.data da última enquisa sociolingüística. + + رومانیہ کی تصفیہ کا اقتدار کا موضوع + + tournament of championsTurnier der Meister + + governorGouverneurκυβερνήτηςgouverneur + + race winsSiege + + champion in double malechampion en double hommesCampeón en doble hombreswinner of a competition in the male double session (as in tennis) + + media itemMultimediaelementA media file (such as audio, video or images) associated with the subject + + victim (resource)das Opfer (resource)жртва (resource)Specific (eg notable) person, or specific class of people (eg Romani) that are victim of a ConcentrationCamp, Criminal, SerialKiller, or some other atrocity + + gold medalistGoldmedaillengewinnermedalha de ourogouden medaille drager + + original danse score + + ski liftSkilift + + doubles rankingsDoppelrangliste + + incumbentAmtsinhaberplaatsbekleder + + Ordination + + mayor title of a hungarian settlement + + streekπεριοχήBezirkजिलाdistritodistrict + + Olympischer Eidolympic oath sworn bylecteur du serment olympique + + publicly accessibleöffentlich zugänglichdescribes in what way this site is accessible for public + + manager title + + CAS numbernuméro CASCAS番号Chemical Abstracts Service number. Applicable to ChemicalCompound or Biomolecule (eg Protein) + + crossesδιασχίζει + + orbital inclinationBahnneigung + + vertalerμεταφραστήςÜbersetzertraducteurtranslatorTranslator(s), if original not in English + + beroep職業Beschäftigungactivitéoccupation + + ملحقہ بستی + + lloc de naixementgeboorteplaatsmiejsce urodzeniaτόπος_γέννησης出生地Geburtsortáit bhreithelieu de naissancebirth placewhere the person was born + + flag caption + + municipalityGemeindeplaatsmunicipalité + + locality of a switzerland settlement + + appearances in national teamεμφανίσεις στην εθνική ομάδαброј наступа у националном тиму + + webcastwebcastwebcastThe URL to the webcast of the Thing. + + آبادیاتی + + Wikipage disambiguatesReserved for DBpedia. + + rank in final medal count + + startStart + + thumbnail caption + + operating income ($)Betriebsergebnis ($) + + IMDB idIMDB idimdb idIMDb idInternational Movie Database ID. Applies to Films, Actors, etc + + missionsMissionenαποστολές + + sharing out year + + source confluence mountain + + head cityville dirigeanteciudad a la cabezaадминистративни центар (град)city where stand the administrative powerville où siège le pouvoir administratif + + επιφάνεια απόReserved for DBpedia. + + sub-familyUnterfamilieonderfamilie + + aircraft helicopter multiroleMehrzweck-Hubschrauberελικοφόρο αεροσκάφος πολλαπλών ρόλωνвишенаменски хеликоптер + + facility ididentificativo dell'impianto + + outskirts + + organ systemthe organ system that a anatomical structure belongs to + + dec + + lunar surface time (s) + + number of clubsAnzahl der Clubsnombre de clubsnumero de clubs + + majority floor leadernumber of office holder + + lowest mountainχαμηλώτερο βουνόmontagne la plus basse + + δραστηριότηταAktivitätسرگرمیactivitéactivityактивност + + Number Of Federal DeputiesAnzahl der Bundesabgeordnetennumero de deputados federais + + mouth state + + People Vaccinated Per HundredVaccinationStatistics: total vaccination percent. + + novelRoman + + Wikipage page IDReserved for DBpedia. + + Gene Location遺伝子座 + + retired rocket + + naamsvariantalternativer Nameautre nomalternative nameалтернативни називAlternative naming of anything not being a Person (for which case foaf:nick should be used).Autre manière de nommer quelque chose qui n'est pas une personne (pour cette dernière, utilisez foaf:nick). + + catererhoreca + + aircraft helicopterHubschrauberхеликоптерελικοφόρο αεροσκάφος + + first appearance + + blazon ratio + + catch + + livingPlace + + colour hex code of home jersey or its partsFarben Hex Code des Heimtrikots oder Teile diesesA colour represented by its hex code (e.g.: #FF0000 or #40E0D0). + + sous-chefchefKochchef cuisinierchef + + australia open single + + seasonSaisonsezon + + top scorerTorschützenkönigen golcü + + reign name + + origo + + neighbourhood of a hungarian settlement + + federationVerband + + Total Vaccinations Per HundredVaccinationStatistics: vaccinations per hundred. + + gini coefficient categorycategoria do coeficiente de Gini + + maintained bygewartet von + + station EVA duration (s) + + source mountain + + parliament type + + mir dockings + + BelieversGläubige + + horse riding discipline + + Member of ParliamentAbgeordnete + + human development index as ofÍndice de desenvolvimento humano em + + publicationVeröffentlichungpublication + + winter appearancesзимски наступи + + premiere dateDate the play was first performed. + + city link + + SELIBR IdAuthority data from the National Library of Sweden + + administrative centercentre administratifVerwaltungszentrumадминистративни центар + + bouwjaarέτος κατασκευήςBaujahryear of constructionгодина изградњеThe year in which construction of the Place was finished.Година када је изградња нечега завршена.Το έτος στο οποίο ολοκληρώθηκε η κατασκευή ενός μέρους. + + landeshauptmann + + area urban (m2)Stadtgebiet (m2)αστική περιοχή (m2)урбана површина (m2) + + curatorconservateurKuratorconservator + + familierodzinaοικογένεια科_(分類学)familiefamillefamily + + executive producerAusführender Produzent + + transmissionGetriebeμετάδοση + + personNamenom de personne + + number of participating female athletesZahl der teilnehmenden Sportlerinnenαριθμός συμμετεχόντων γυναικών αθλητριώνnombre d'athlètes participant féminins + + منتظمδιαχειριστής + + road start directionHimmelsrichtung des WegstartsEnd of the route. For U.S. roads, this should be either "South" or "West" per the standards set by the U.S. Roads project.Himmelsrichtung des Anfangs des Verkehrsweges. + + final lost team + + DeathsNumber of deaths caused by pandemic + + meeting roadzusammentreffende StraßeA road that crosses another road at the junction.Eine Straße die an der Kreuzung eine andere Straße kreuzt. + + sport disciplineSportdisziplindiscipline sportivetak van sportthe sport discipline the athlete practices, e.g. Diving, or that a board member of a sporting club is focussing at + + wins at KLPGAпобеде на KLPGA + + film versionverfilmd als + + able to grindپیسنے کے قابلmahlenfähigmaalvaardig + + highest placehöchster Platz + + canonized placelieu de canonisationheiligverklaring plaats + + settlementSiedlungluogo abitato (insediamento) + + number of entrancesAnzahl der Eingängeαριθμός εισόδωνaantal ingangen + + most successfullam erfolgreichstenen başarılı + + sexual orientationsexuelle Orientierungorientação sexual + + senior + + value coordinate in the HSV colour space + + international affiliationafiliacao internacional + + تعارفی نشانتعارفی نشان (جسے کال کا نام یا کال لیٹر بھی کہا جاتا ہے، یا مختصراً کال کے طور پر جانا جاتا ہے) ٹرانسمیٹنگ اسٹیشن کے لیے ایک منفرد عہدہ ہے۔ + + Penalties Team B + + character in playName of a character in play. + + number of trailsコース数Number of trails in ski area. + + size blazon + + area of water (m2)површина воде (m2) + + torque output (Nm) + + name in ancient Greekgriechische Nameoudgriekse naam + + number of episodesAnzahl der Episodenαριθμός επειδοδίων + + cannon number + + πανεπιστημιούποληCampusجامع کا علقهcampuscampusCampus means any urban complex that offers residential, teaching and research facilities to the students of a university.Tout complexe urbain qui offre des installations résidentielles, d'enseignement et de recherche aux étudiants d'une université.Πανεπιστημιούπολη εννοείται κάθε πολεοδομικό συγκρότημα που προσφέρει οικιστικές, διδακτικές και ερευνητικές διευκολύνσεις στους φοιτητές ενός πανεπιστημίου.جامع کا علقه کا مطلب ہے کوئی بھی شہری جامع کا علقه جو جامع کے طلباء کو رہائشی، تدریسی اور تحقیقی سہولیات فراہم کرتا ہے۔ + + engine typetype de moteur + + mouth district + + prefectPräfekt + + source place + + bgafd idbgafd idcódigo no bgafd + + limitlimite + + silver medal singleSilbermedaille Einzel + + wimbledon doubleвимблдон дубл + + governor general + + population rural + + fecha de iniciostartdatumStartdatumdate de débutstart dateThe start date of the event. + + former highschoolehemalige Highschool + + continental tournamenttournoi continental + + Drugdrogue药物 + + silver medal mixedSilbermedaille gemischt + + cantonKantonkantoncanton + + political party in legislaturepolitische Partei in der LegislativePolitical party in the legislature (eg.: European People's Party in the European Parliament). + + Ariel AwardAriel AwardARIEL награда + + amateur victoryaматерских победа + + refseq proteinrefseq protein + + wha draft teamWHA тим који је драфтовао играча + + person that first ascented a mountainPerson , die zuerst einen Berg bestiegen hat + + total area rankingσυνολική περιοχήукупна површина рангکل علاقے کی درجہ بندی + + olympic games winsoverwinningen op de Olympische Spelen + + main domain + + кратенкаafkortingskrótσυντομογραφίαAbkürzunggiorrúchánمخففabréviationabbreviationскраћеница + + year of first ascentJahr der Erstbesteigungjaar van de eerste beklimming + + route numberRoutennummerThe number of the route. + + secondPopularVote + + frequently updatedmise à jour fréquentehäufig aktualisiert + + national teamNationalmannschaftnationaal team代表国 + + film number + + co executive producer + + chaîneKetteαλυσίδαThe (business) chain this instance is associated with.Chaîne (commerciale) à laquelle cette instance est associée. + + V_hb + + serving railway linespoorlijnenangebundene EisenbahnlinieRailway services that serve the station. + + current cityville actuelleaktuelle Stadt + + continental tournament bronze + + architectархитекторarchitektαρχιτέκτοναςArchitektailtirearchitettoarchitectearchitectархитекта + + flag bearerFahnenträger + + apoapsis (μ)Apoapsisdistanz (μ)απόαψης (μ)апоапсис (μ) + + ancho (μ)breedte (μ)πλάτος (μ)Breite (μ)width (μ)ширина (μ) + + minimum discharge (m³/s) + + capital place + + deputyStellvertreter + + date when the island has been discoveredDatum als die Insel entdeckt wurdedatum waarop het eiland is ontdekt + + lunar landing site + + is part of military conflictist Teil des militärischen Konflikts + + school board + + componentKomponentecomposant + + rebuilding date + + الشبكةτηλεοπτικό κανάλιSendergruppechaîne de télévision généralistebroadcast networkThe parent broadcast network to which the broadcaster belongs.Die Sendergruppe zu dem der Rundfunkveranstalter gehört. + + decommissioning datefecha de baja de servicio + + military commandMilitärkommandoFor persons who are notable as commanding officers, the units they commanded. Dates should be given if multiple notable commands were held. + + number of settlementZahl der Siedlungen + + singleOfsingle extraitsingle produced from an albumsingle extrait d'un album + + full competition + + introduction dateEinführungsdatum + + minimum preparation time (s)Minimum preparation time of a recipe / Food + + population density rural (/sqkm) + + longNamevolledige naam + + destinationZielπροορισμός + + team managerTeam-Manager + + market capitalisation ($)Marktkapitalisierung ($) + + appointer + + top floor heightHöhe der höchsten Etage + + year of elevation into the nobilityJahr der Erhebung in den Adelsstandjaar van verheffing in de adelstand + + ethnic groups in year + + firstLeaderπρώτος ηγέτης + + battle honours + + clip up number + + رقبہ (m2) + + chairpersonVorsitzendervoorzitter + + first publication yearJahr der Erstausgabeπρώτο έτος δημοσίευσηςYear of the first publication.Jahr der ersten Veröffentlichung des Periodikums.Έτος της πρώτης δημοσίευσης. + + kolor oczuχρώμα ματιούAugenfarbedath súilecor dos olhoscouleur des yeuxeye color + + partial failed launchestotal number of launches resulting in partial failure + + dead in fight placeمردہ لڑائی کی جگہ + + jutsu + + name dayονομαστική εορτήimieniny + + mill code NLmolen code NL + + schoenmaatSchuhgrößenúmero do sapatopointureshoe size + + gene location endlocus eindpunt遺伝子座のエンド座標the end of the gene + + champion in doublekampioen dubbelchampion en doubleCampeón en doblewinner of a competition in the double session (as in tennis) + + biggest citygrößte Stadt + + gamesspilSpieleαγώνες + + continental tournament gold + + locationNameLocation of the thing as string. Use "location" if the location is a resource + + sire + + valueWertvaleurвредност + + rivalRivale + + zegesνίκεςSiegewinsпобеде + + fuel consumptionκατανάλωση καυσίμουKraftstoffverbrauchbrandstofverbruik + + long distance piste number + + mascotMaskottchenmascotemascottesomething, especially a person or animal, used to symbolize a sports team, company, organization or other group.Animal, poupée, objets divers servant de porte-bonheur ou d’emblème. + + project budget total ($)Gesamtprojektbudget ($)The total budget of the research project. + + període de la taula periòdicaпериод периодической таблицыokres układu okresowegoPeriode des Periodensystemspeiriad an tábla pheiriadaighelement periodIn 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 la taula periòdica dels elements, un període és una filera de la taulaUnter einer Periode des Periodensystems versteht man in der Chemie jede Zeile des Periodensystems der Elemente.строка периодической системы химических элементов, последовательность атомов по возрастанию заряда ядра и заполнению электронами внешней электронной оболочки. + + left tributarylinker Nebenflussαριστεροί_παραπόταμοι + + shoots + + όνομα χρώματος色名Farbennamenom de couleurcolour nameA colour represented by a string holding its name (e.g.: red or green).Ένα χρώμα που αναπαρίσταται από μια ακολουθία χαρακτήρων που αντιπροσωπεύει το όνομά του (π.χ.: κόκκινο ή πράσινο). + + start year of sales + + introducedeingeführt + + autonomyAutonomieαυτονομία + + Modus the game can be played in + + population quote + + initally used foranfänglich verwendetusage initialuso inicialInitial use of the architectural structure. + + most down point of a norwegian settlement + + dayTagημέραjour + + filmfilmταινίαfilmfilmfilm + + Golden Calf Award + + trusteeTreuhänder + + PfizerCumulativeDoses辉瑞是源自美国的跨国制药、生物技术公司,营运总部位于纽约,研发总部位于康涅狄格州的格罗顿市 + + موت کی عمر + + other nameanderer Name + + selection yearAuswahljahr + + olympic games goldgoud op de Olympische Spelen + + commissioning datefecha de entrada en servicio + + minimum areaMindestfläche + + playing time (s)Spielzeit (s)speeltijd (s) + + super-familysuperfamilie + + function start year + + gallery itemGalerieelementA file contained in a gallery + + capital mountain + + decoration + + volume (μ³)όγκος (μ³)Volumen (μ³)volume (μ³)volume (μ³)запремина (μ³) + + stellar classificationspectraalklasse + + Wikipage modification datetimeReserved for DBpedia '''''' + + growing grape + + instrumentInstrumentόργανοinstrument + + lowest altitude最低地点標高 + + place of worshiplieu de culteKultstättegebedsplaatsA religious administrative body needs to know which places of worship itUne structure administrative religieuse doit connaître ses lieux de culteEen kerkelijke organisatie houdt bij welke gebedshuizen ze heeft + + trainer yearstrainersjaren + + production end yearproductie eindjaardernière année de production + + acting headteacherδιευθυντής σχολείουвд шефа наставе + + τύπος μύλουmill typemolen-type + + Peabody Award + + koledżκολλέγιοCollegehaute écolecollege + + bridge carriesγέφυρα μεταφοράςType of vehicles the bridge carries. + + archipelαρχιπέλαγοςArchipelarchipelagoархипелаг + + kind of criminal action + + primary fuel type + + short prog competition + + Daily Vaccinations Rawروزانہ ویکسین خامVaccinationStatistics: Daily vaccinations (raw data).ویکسینیشن کے اعدادوشمار: روزانہ ویکسینیشن (خام ڈیٹا)۔ + + other + + mayor councillor + + located in arealandstreek + + ski piste numberSkipistennummer + + date of burialDatum der Beerdigungdatum begrafenis + + ICDOICDO + + number of entities of Person class born in the placepočet entit třídy Osoba narozených na konkrétním místě + + number of launchesAnzahl von Starts + + construction materialυλικό κατασκευήςbouwmateriaalBaumaterialConstruction material (eg. concrete, steel, iron, stone, brick, wood). + + displacement (μ³)cilindrada (μ³) + + project typeProjekttypThe 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. + + buildingTypeΤύπος κτιρίουsoort gebouwType is too general. We should be able to distinguish types of music from types of architectureType is te algemeen. We moeten soorten muziek van soorten gebouwen kunnen onderscheidenΟ τύπος είναι πολύ γενικό.Θα πρέπει να είναι σε θέση να διακρίνουν τα είδη της μουσικής από τους τύπους της αρχιτεκτονικής + + reign + + date disappearance of a populated place + + other worksautres oeuvresTells about existence of other works.Indique l'existence d'autres oeuvres antérieures/postérieures. + + City district code + + mountain rangeGebirgebergketen + + final publication yearJahr der finalen AusgabeYear of the final publication.Jahr der allerletzten Veröffentlichung des Periodikums. + + جوہری عددکسی عنصر کے ایٹموں کی اوسط کمیت کا تناسب (ایک دیے گئے نمونے یا ماخذ سے) کاربن 12 کے ایٹم کے بڑے پیمانے پر + + east placelieu à l'estindique un autre lieu situé à l'est.indicates another place situated east. + + costume designercostumistathe person who is responsible for the film costume design + + religious head label + + distance (μ)distance (μ)Entfernung (μ) + + last pro matchdernier match professionnelerstes Profispiel + + black coordinate in the CMYK space + + a municipality's new nameneuer Name einer Gemeindenieuwe gemeentenaam + + mottoσύνθημαMottolemadevisemotto + + Footednesshabilidade com o pé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. + + death causedoodsoorzaakTodesursacheαιτία_θανάτου + + patentPatentpatente + + polePol + + academic disciplineتعلیمی نظم و ضبط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.ایک قرارداد میٹنگ یا کنونشن کے ذریعہ اختیار کردہ ایک رسمی بیان کی وضاحت کرتی ہے + + oldcodeancien code + + decayαποσύνθεση + + predecessorvoorgangerVorgänger前任者 + + NSSDC ID + + iafd idiafd idcódigo no iafd + + showJudge + + duur (s)διάρκεια (s)Laufzeit (s)durée (s)runtime (s) + + huso horariozona horàriatijdzonestrefa czasowaζώνη_ώρας1Zeitzonefuso horariofuseau horairetime zone + + ranking winsSiege in Ranglistenturnieren + + performerKünstler + + closing dateημερομηνία κλεισίματοςdate de fermeture + + boroughBezirkδήμοςstadsdeel + + agglomeration areaجمع کا علاقہBallungsraumобласт агломерације + + highschoolGymnasium + + cyanic coordinate in the CMYK space + + agencyایجنسی + + wins at sunпобеде на SUN + + power output (W)puissance de sortie (W)Ausgangsleistung (W) + + building end yearbouw eindjaarέτος λήξης κατασκευής + + Indicates an annotation associated with this document + + maximale Tiefe (μ)μέγιστο_βάθος (μ)maximum depth (μ)profondeur maximale (μ)Source of the value can be declare by . + + rank of a population + + event periodVeranstaltungsdauerperiodepériode + + notableIdea + + unique reference number (URN)DfE unique reference number of a school in England or Wales + + فنکارموسیقی کے کام کا اداکار یا تخلیق کار۔ + + comitat of a settlement + + stylistic originstilistische Herkunftorigens estilísticas + + atoomnummerliczba atomowaOrdnungszahluimhir adamhachجوہری عددatomic numberhet atoomnummer of atoomgetal (symbool: Z) geeft het aantal protonen in de kern van een atoom aan.liczba określająca, ile protonów znajduje się w jądrze danego atomudie Anzahl der Protonen im Atomkern eines chemischen Elements, deshalb auch Protonenzahl.Is eard is uimhir adamhach (Z) adaimh ann ná líon na bprótón i núicléas an adaimh sinکسی عنصر کے ایٹموں کی اوسط کمیت کا تناسب (ایک دیے گئے نمونے یا ماخذ سے) کاربن 12 کے ایٹم کے بڑے پیمانے پرthe ratio of the average mass of atoms of an element (from a single given sample or source) to 1⁄12 of the mass of an atom of carbon-12 + + leadershipFührung + + penalty score + + sentenceSatz + + spacestationraumstationspace station that has been visited during a space missionRaumstation, die während einer Raummission besucht wurde + + netnummerместный телефонный кодκωδικός_περιοχήςVorwahlदूरभाष कोडindicatif régionalarea codeпозивни бројArea code for telephone numbers. Use this not phonePrefix + + cooling systemsystème de refroidissementKühlsystem + + freelibre + + pastor + + merged withzusammengeschlossen + + SIMC codeShould be a datatype property + + designer company + + μηχανήMotormotormoteurengine + + AFI Awardβραβείο AFIAFI наградаاے ایف آئی انعام + + endangered sincegefährdet seitem perigo desde + + prove code + + announcedFrom + + watercourseWasserlaufводоток + + ISSNISSNissnISSNISSNissnInternational Standard Serial Number (ISSN) + + Dutch RKD codeCode Rijksbureau voor Kunsthistorische Documentatie + + lethal when given to rabbitsdodelijk voor konijnen + + height above average terrain (μ) + + یونانی لفظ سے ماخُوذ + + producentпродюсерproducentπαραγωγόςProduzentproducteurproducerThe producer of the creative work.Producteur de l'oeuvre créative. + + railway line using tunnelTunnel benutzende EisenbahnlinieRailway line that is using the tunnel. + + piscicultural population + + createdcrééerstellt + + ChEBIChEBIA unique identifier for the drug in the Chemical Entities of Biological Interest (ChEBI) ontologyIdentifiant unique de la drogue dans l'ontologie des Chemical Entities of Biological Interest (ChEBI) + + relief + + digital channelDigitalkanalΨηφιακό κανάλιΈνα ψηφιακό κανάλι επιτρέπει την μετάδοση δεδομένων σε ψηφιακή μορφή. + + tipo de aviónτύπος αεροσκάφουςFlugzeugtypaircraft typeтип летелице + + abstentionsپرہیزan líon daoine a staon ó vótáilووٹ سے پرہیز کرنے والوں کی تعداد + + leader titleτίτλος_αρχηγούशासक पद + + jure language + + urban areaStadtgebietурбано подручје + + prospect league + + beatified placelieu béatifiézalig verklaard plaats + + maiden voyage + + type of yeastHefeartegistsoort + + nomineeKandidat + + ept title + + monthμήναςMonat + + architectural movementArchitekturbewegungархитектонски покрет + + destruction datedate de destructionsloopdatumημερομηνία καταστροφής + + olympic oath sworn by judge + + reopening yearheropening jaarYear of reopening the architectural structure. + + impact factor as ofImpact Factor ist vonCensus year of the imapct factor.Erhebungsjahr des Impact Factors. + + number of members as ofnumero de membros em + + chairmanVorsitzenderπρόεδρος + + ncaa season + + danse competition + + linguistics tradition + + note on place of burial + + name in Yue Chinesenaam in het Kantonees Chinees + + productπροϊόνProduktproduitproduct + + + + toegangπρόσβασηZugriffرسائیaccèsaccessприступ + + American Comedy Awardαμερικάνικο βραβείο κωμωδίαςамеричка награда за комедију + + demolition datedate de démolitionημερομηνία κατεδάφισηςانہدام کی تاریخThe date the building was demolished.Date à laquelle l'immeuble a été démoli.جس تاریخ کو عمارت گرائی گئی۔ + + lunar sample mass (g) + + affiliateالحاق + + authorityBehördeautoriteitαρχή + + UN numberUN Nummernuméro ONUfour-digit numbers that identify hazardous substances, and articles in the framework of international transport + + OdorGeruch + + drains to + + number of MuscialArtist class (entities) in DBpediapočet entit třídy MuscialArtist v DBpedii + + film audio typespecifies the audio type of the film i.e. 'sound' or 'silent' + + longtypecan be used to include more informations e.g. the name of the artist that a tribute album is in honor of + + source confluence place + + parishGemeinde + + campus size (m2)جامعہ کا ناپ (m2) + + genderφύλοGeschlechtgeslacht + + apofocusapofocus + + head chefKüchenchefchef-kok + + area rural (m2)αγροτική περιοχή (m2)рурална област (m2) + + related placessoortgelijke plaatsenThis property is to accommodate the list field that contains a list of, e.g., monuments in the same townDeze property is voor de lijst van monumenten die horen bij het monument van de infobox + + best year wsop + + wpt final tableWPT финале + + clase (biología)klasse綱_(分類学)classe (biologie)classisthe living thing class (from the Latin "classis"), according to the biological taxonomyTroisième niveau de la classification classique (c’est-à-dire n’utilisant pas la notion de distance génétique) des espèces vivantes (voir systématique). + + decide date + + quotationZitatcitationcitaA 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.Une citation est la reproduction d'un court extrait d'un propos ou d'un écrit antérieur dans la rédaction d'un texte ou dans une forme d'expression orale.En su acepción más amplia, una cita es un recurso retórico que consiste en reproducir un fragmento de una expresión humana respetando su formulación original. + + previous infrastructurevorherige Infrastrukturvorige infrastructuur + + draft league + + سرگرمی + + hair colourcouleur des cheveuxHaarfarbe + + school patron + + co producerCo-Produzent + + type of storageArt der Lagerunglagering + + tvShowFernsehsendung + + barangays + + manager years監督年 + + mainspan (μ)portée principale (μ)κύρια καμάρα (μ) + + number of crewαριθμός πληρώματοςaantal bemanningsleden + + average speed (kmh)vitesse moyenne (kmh)Durchschnittsgeschwindigkeit (kmh)μέση ταχύτητα (kmh)The average speed of a thing.Vitesse moyenne du déplacement d'un objet.Η μέση ταχύτητα ενός πράγματος. + + current statusaktueller Statushuidige status + + is part of wine regionist ein Teil der Weinregion + + subgenusUntergattungondergeslachtA rank in the classification of organisms, below genus ; a taxon at that rank + + discharge average (m³/s) + + capacityKapazitätcapacitéNumber of people who can be served by a Train or other service; or participate in a SoccerClub, CricketTeam, etc + + aita codeAITA код + + date closedτερματισμός_λειτουργίας + + number of holesnombre de trous + + اے سی تی سکور + + mill code NLmolen code NLmills code from the central Dutch database on millsunieke code voor molens in www.molendatabase.nl + + romanianNewLeu + + + milliampere + + + megawattHour + + + azerbaijaniManat + + + latvianLats + + + rod + + + newtonMetre + + + cubicDecimetre + + + nicaraguanCórdoba + + + calorie + + + libyanDinar + + + georgianLari + + + imperialBarrelOil + + + standardAtmosphere + + + guatemalanQuetzal + + + gram + + + papuaNewGuineanKina + + + cubicInch + + + hectare + + + indianRupee + + + pond + + + gigawattHour + + + kilogramPerCubicMetre + + + squareMile + + + hungarianForint + + + mauritanianOuguiya + + + lebanesePound + + + bermudianDollar + + + russianRouble + + + guyanaDollar + + + northKoreanWon + + + FlowRate + + + egyptianPound + + + cambodianRiel + + + footPerMinute + + + newZealandDollar + + + volt + + + bit + + + cubanPeso + + + bosniaAndHerzegovinaConvertibleMarks + + + iraqiDinar + + + xsd:gMonthDay + + + thaiBaht + + + squareKilometre + + + Area + + + icelandKrona + + + megametre + + + poundPerSquareInch + + + furlong + + + Voltage + + + kilolitre + + + usDollar + + + Volume + + + perCent + + + kilogram + + + maldivianRufiyaa + + + gramPerMillilitre + + + ugandaShilling + + + arubanGuilder + + + milePerHour + + + ounce + + + gigametre + + + millihertz + + + microvolt + + + saudiRiyal + + + xsd:string + + + kiloampere + + + xsd:double + + + dominicanPeso + + + kuwaitiDinar + + + decimetre + + + cubicMile + + + australianDollar + + + poundSterling + + + lightYear + + + fathom + + + poundal + + + kilopond + + + Length + + + kilometrePerSecond + + + kilovolt + + + imperialGallon + + + engineConfiguration + + + PopulationDensity + + + stone + + + erg + + + minute + + + southAfricanRand + + + xsd:integer + + + turkishLira + + + hand + + + mongolianTögrög + + + ghanaianCedi + + + macedonianDenar + + + kilonewton + + + metrePerSecond + + + fuelType + + + brazilianReal + + + brakeHorsepower + + + bangladeshiTaka + + + belizeDollar + + + decibar + + + centimetre + + + haitiGourde + + + samoanTala + + + Mass + + + Force + + + centilitre + + + megabit + + + cubicMetrePerSecond + + + armenianDram + + + venezuelanBolívar + + + chileanPeso + + + xsd:time + + + philippinePeso + + + croatianKuna + + + trinidadAndTobagoDollar + + + hectometre + + + tajikistaniSomoni + + + giganewton + + + gigahertz + + + cubicHectometre + + + megabyte + + + namibianDollar + + + kyrgyzstaniSom + + + singaporeDollar + + + gigalitre + + + japaneseYen + + + inch + + + pascal + + + megavolt + + + Speed + + + squareFoot + + + kilohertz + + + estonianKroon + + + millibar + + + serbianDinar + + + gibraltarPound + + + nautialMile + + + renminbi + + + bahrainiDinar + + + kilogramPerLitre + + + footPound + + + millilitre + + + footPerSecond + + + megalitre + + + acre + + + nigerianNaira + + + barbadosDollar + + + gramPerKilometre + + + Energy + + + unitedArabEmiratesDirham + + + swaziLilangeni + + + kilopascal + + + perMil + + + gigawatt + + + nanonewton + + + kilobit + + + djiboutianFranc + + + uzbekistanSom + + + hectopascal + + + foot + + + polishZłoty + + + Density + + + algerianDinar + + + xsd:gDay + + + norwegianKrone + + + canadianDollar + + + kilometre + + + turkmenistaniManat + + + degreeCelsius + + + danishKrone + + + xsd:gYearMonth + + + decametre + + + hour + + + metre + + + belarussianRuble + + + euro + + + seychellesRupee + + + swedishKrona + + + myanmaKyat + + + centralAfricanCfaFranc + + + terawattHour + + + rdf:langString + + + ampere + + + ElectricCurrent + + + Ratio + + + cubicMetrePerYear + + + mozambicanMetical + + + angolanKwanza + + + squareNauticalMile + + + nanometre + + + costaRicanColon + + + newton + + + cubicYard + + + FuelEfficiency + + + kazakhstaniTenge + + + pakistaniRupee + + + congoleseFranc + + + megapond + + + millisecond + + + hectolitre + + + mile + + + omaniRial + + + mauritianRupee + + + cubicDecametre + + + second + + + saintHelenaPound + + + xsd:boolean + + + moldovanLeu + + + millivolt + + + kilometrePerHour + + + cubicKilometre + + + kilowatt + + + lithuanianLitas + + + southKoreanWon + + + newtonCentimetre + + + caymanIslandsDollar + + + malagasyAriary + + + Currency + + + somaliShilling + + + bahamianDollar + + + joule + + + albanianLek + + + kenyanShilling + + + usBarrel + + + zimbabweanDollar + + + kilowattHour + + + tonneForce + + + xsd:anyURI + + + carat + + + microampere + + + megapascal + + + decilitre + + + gigabyte + + + kilometresPerLitre + + + swissFranc + + + usGallon + + + squareInch + + + microlitre + + + vanuatuVatu + + + xsd:nonPositiveInteger + + + rwandaFranc + + + hertz + + + knot + + + nanosecond + + + kilocalorie + + + kelvin + + + comorianFranc + + + xsd:gMonth + + + newtonMillimetre + + + gramForce + + + macanesePataca + + + terabyte + + + cubicFeetPerYear + + + cubicMetre + + + eastCaribbeanDollar + + + uruguayanPeso + + + sãoToméAndPríncipeDobra + + + guineaFranc + + + millinewton + + + bar + + + lesothoLoti + + + watt + + + indonesianRupiah + + + argentinePeso + + + kilogramForce + + + zambianKwacha + + + yard + + + yemeniRial + + + jamaicanDollar + + + degreeFahrenheit + + + wattHour + + + sudanesePound + + + liberianDollar + + + bhutaneseNgultrum + + + grain + + + poundFoot + + + sierraLeoneanLeone + + + milliwattHour + + + kilolightYear + + + bulgarianLev + + + israeliNewSheqel + + + bolivianBoliviano + + + capeVerdeEscudo + + + burundianFranc + + + squareYard + + + gramPerCubicCentimetre + + + squareDecimetre + + + horsepower + + + xsd:negativeInteger + + + Power + + + jordanianDinar + + + squareCentimetre + + + newTaiwanDollar + + + litre + + + millipascal + + + pferdestaerke + + + colombianPeso + + + inchPound + + + netherlandsAntilleanGuilder + + + czechKoruna + + + syrianPound + + + squareDecametre + + + tunisianDinar + + + inhabitantsPerSquareMile + + + fijiDollar + + + astronomicalUnit + + + cubicCentimetre + + + iranianRial + + + cfpFranc + + + inhabitantsPerSquareKilometre + + + Torque + + + valvetrain + + + kilobyte + + + millicalorie + + + meganewton + + + falklandIslandsPound + + + xsd:nonNegativeInteger + + + Temperature + + + moroccanDirham + + + terahertz + + + squareHectometre + + + micrometre + + + milligramForce + + + tanzanianShilling + + + botswanaPula + + + xsd:positiveInteger + + + xsd:dateTime + + + ukrainianHryvnia + + + paraguayanGuarani + + + laoKip + + + cubicFoot + + + kilojoule + + + megawatt + + + surinamDollar + + + chain + + + byte + + + squareMetre + + + xsd:float + + + cubicFeetPerSecond + + + megacalorie + + + milligram + + + honduranLempira + + + xsd:date + + + squareMillimetre + + + Pressure + + + gambianDalasi + + + xsd:gYear + + + slovakKoruna + + + malaysianRinggit + + + pound + + + mexicanPeso + + + day + + + tonganPaanga + + + sriLankanRupee + + + nepaleseRupee + + + afghanAfghani + + + cubicMillimetre + + + megahertz + + + ethiopianBirr + + + Time + + + panamanianBalboa + + + westAfricanCfaFranc + + + bruneiDollar + + + LinearMassDensity + + + imperialBarrel + + + millipond + + + degreeRankine + + + tonne + + + millimetre + + + Frequency + + + qatariRial + + + hongKongDollar + + + peruvianNuevoSol + + + malawianKwacha + + + solomonIslandsDollar + + + usBarrelOil + + + InformationUnit + + + milliwatt + + + eritreanNakfa + + + microsecond + + + mass (kg)Masse (kg)μάζα (kg) + + + + + lengte (mm)μήκος (mm)Länge (mm)longueur (mm)length (mm) + + + + + average speed (km/s)vitesse moyenne (km/s)Durchschnittsgeschwindigkeit (km/s)μέση ταχύτητα (km/s) + The average speed of a thing.Vitesse moyenne du déplacement d'un objet.Η μέση ταχύτητα ενός πράγματος. + + + + discharge (m³/s)εκροή (m³/s)uitstoot (m³/s) + + + + + wheelbase (mm)Radstand (mm)међуосовинско растојање (mm) + + + + + duur (m)διάρκεια (m)Laufzeit (m)durée (m)runtime (m) + + + + + oppervlakte (km2)έκταση (km2)Fläche (km2)área (km2)رقبہ (km2)superficie (km2)area (km2)област (km2) + The area of the thing in square meters. + + + + højde (mm)hoogte (mm)višina (mm)ύψος (mm)身長 (mm)Höhe (mm)altura (mm)hauteur (mm)height (mm) + + + + + total mass (kg)Gesamtmasse (kg) + + + + + diameter (mm)διάμετρος (mm)Durchmesser (mm)diamètre (mm)diameter (mm) + + + + + fuel capacity (l)χωρητικότητα καυσίμου (l)Kraftstoffkapazität (l) + + + + + area urban (km2)Stadtgebiet (km2)αστική περιοχή (km2)урбана површина (km2) + + + + + lunar sample mass (kg) + + + + + course (km) + + + + + volume (km3)όγκος (km3)Volumen (km3)volume (km3)volume (km3)запремина (km3) + + + + + campus size (km2)جامعہ کا ناپ (km2) + + + + + melting point (K)Schmelzpunkt (K)point de fusion (K)融点 (K) + + + + + volume (μ³)όγκος (μ³)Volumen (μ³)volume (μ³)volume (μ³)запремина (μ³) + + + + + maximum boat length (μ)μέγιστο_μήκος_πλοίου (μ) + + + + + ancho (mm)breedte (mm)πλάτος (mm)Breite (mm)width (mm)ширина (mm) + + + + + diameter (μ)διάμετρος (μ)Durchmesser (μ)diamètre (μ)diameter (μ) + + + + + kookpunt (K)σημείο βρασμού (K)沸点 (K)Siedepunkt (K)point d'ébullition (K)boiling point (K) + + + + + cargo water (kg) + + + + + shore length (km)Uferlänge (km)μήκος_όχθης (km) + + + + + ancho (mm)breedte (mm)πλάτος (mm)Breite (mm)width (mm)ширина (mm) + + + + + power output (kW)puissance de sortie (kW)Ausgangsleistung (kW) + + + + + CO2 emission (g/km) + + + + + mass (kg)Masse (kg)μάζα (kg) + + + + + højde (mm)hoogte (mm)višina (mm)ύψος (mm)身長 (mm)Höhe (mm)altura (mm)hauteur (mm)height (mm) + + + + + højde (mm)hoogte (mm)višina (mm)ύψος (mm)身長 (mm)Höhe (mm)altura (mm)hauteur (mm)height (mm) + + + + + maximum temperature (K)Maximaltemperatur (K)μέγιστη θερμοκρασία (K) + + + + + original maximum boat length (μ) + + + + + periapsis (km)Periapsisdistanz (km) + + + + + mass (kg)Masse (kg)μάζα (kg) + + + + + vægt (kg)gewicht (kg)βάρος (kg)体重 (kg)Gewicht (kg)peso (kg)poids (kg)weight (kg)тежина (kg) + + + + + mean temperature (K)Durchschnittstemperatur (K)μέση θερμοκρασία (K) + + + + + volume (km3)όγκος (km3)Volumen (km3)volume (km3)volume (km3)запремина (km3) + + + + + floor area (m2)vloeroppervlak (m2)περιοχή ορόφων (m2) + + + + + højde (mm)hoogte (mm)višina (mm)ύψος (mm)身長 (mm)Höhe (mm)altura (mm)hauteur (mm)height (mm) + + + + + docked time (μ) + + + + + area metro (km2)περιοχή μετρό (km2)метрополска област (km2) + + + + + apoapsis (km)Apoapsisdistanz (km)απόαψης (km)апоапсис (km) + + + + + mass (kg)Masse (kg)μάζα (kg) + + + + + diameter (mm)διάμετρος (mm)Durchmesser (mm)diamètre (mm)diameter (mm) + + + + + mass (kg)Masse (kg)μάζα (kg) + + + + + surface area (km2)Oberfläche (km2)έκταση (km2) + + + + + original maximum boat length (μ) + + + + + distance (km)distance (km)Entfernung (km) + + + + + station visit duration (ω) + + + + + cargo fuel (kg) + + + + + diameter (mm)διάμετρος (mm)Durchmesser (mm)diamètre (mm)diameter (mm) + + + + + area metro (km2)περιοχή μετρό (km2)метрополска област (km2) + + + + + vægt (kg)gewicht (kg)βάρος (kg)体重 (kg)Gewicht (kg)peso (kg)poids (kg)weight (kg)тежина (kg) + + + + + vægt (kg)gewicht (kg)βάρος (kg)体重 (kg)Gewicht (kg)peso (kg)poids (kg)weight (kg)тежина (kg) + + + + + minimum discharge (m³/s) + + + + + oppervlakte (km2)έκταση περιοχής (km2)Fläche (km2)superficie (km2)area total (km2)укупна површина (km2) + + + + + periapsis (km)Periapsisdistanz (km) + + + + + kookpunt (K)σημείο βρασμού (K)沸点 (K)Siedepunkt (K)point d'ébullition (K)boiling point (K) + + + + + displacement (cc)cilindrada (cc) + + + + + surface area (km2)Oberfläche (km2)έκταση (km2) + + + + + ancho (mm)breedte (mm)πλάτος (mm)Breite (mm)width (mm)ширина (mm) + + + + + ancho (mm)breedte (mm)πλάτος (mm)Breite (mm)width (mm)ширина (mm) + + + + + apoapsis (km)Apoapsisdistanz (km)απόαψης (km)апоапсис (km) + + + + + cuenca hidrográfica (km2)waterscheiding (km2)λεκάνη_απορροής (km2)Wasserscheide (km2)watershed (km2) + + + + + average speed (km/s)vitesse moyenne (km/s)Durchschnittsgeschwindigkeit (km/s)μέση ταχύτητα (km/s) + The average speed of a thing.Vitesse moyenne du déplacement d'un objet.Η μέση ταχύτητα ενός πράγματος. + + + + mass (kg)Masse (kg)μάζα (kg) + + + + + vægt (kg)gewicht (kg)βάρος (kg)体重 (kg)Gewicht (kg)peso (kg)poids (kg)weight (kg)тежина (kg) + + + + + maximum boat length (μ)μέγιστο_μήκος_πλοίου (μ) + + + + + mean temperature (K)Durchschnittstemperatur (K)μέση θερμοκρασία (K) + + + + + lengte (mm)μήκος (mm)Länge (mm)longueur (mm)length (mm) + + + + + area metro (km2)περιοχή μετρό (km2)метрополска област (km2) + + + + + total time person has spent in space (m)temps total passé dans l'espace par la personne (m)Gesamtzeit welche die Person im Weltraum verbracht hat (m) + + + + + discharge average (m³/s) + + + + + size (MB)μέγεθος αρχείου (MB)Dateigröße (MB)taille de fichier (MB) + size of a file or softwareμέγεθος ενός ηλεκτρονικού αρχείου + + + + diameter (μ)διάμετρος (μ)Durchmesser (μ)diamètre (μ)diameter (μ) + + + + + ancho (mm)breedte (mm)πλάτος (mm)Breite (mm)width (mm)ширина (mm) + + + + + mass (kg)Masse (kg)μάζα (kg) + + + + + CMP EVA duration (ω) + + + + + mean temperature (K)Durchschnittstemperatur (K)μέση θερμοκρασία (K) + + + + + vægt (kg)gewicht (kg)βάρος (kg)体重 (kg)Gewicht (kg)peso (kg)poids (kg)weight (kg)тежина (kg) + + + + + volume (km3)όγκος (km3)Volumen (km3)volume (km3)volume (km3)запремина (km3) + + + + + population metro density (/sqkm)bevolkingsdichtheid (/sqkm) + + + + + ancho (mm)breedte (mm)πλάτος (mm)Breite (mm)width (mm)ширина (mm) + + + + + lengte (mm)μήκος (mm)Länge (mm)longueur (mm)length (mm) + + + + + ancho (mm)breedte (mm)πλάτος (mm)Breite (mm)width (mm)ширина (mm) + + + + + station EVA duration (ω) + + + + + mass (kg)Masse (kg)μάζα (kg) + + + + + melting point (K)Schmelzpunkt (K)point de fusion (K)融点 (K) + + + + + distance traveled (km)Zurückgelegte Entfernung (km)afgelegde afstand (km) + + + + + cylinder bore (mm) + + + + + bevolkingsdichtheid (/sqkm)πυκνότητα_πληθυσμού (/sqkm)Bevölkerungsdichte (/sqkm)घनत्व (/sqkm)population density (/sqkm) + + + + + distance (km)distance (km)Entfernung (km) + + + + + diameter (μ)διάμετρος (μ)Durchmesser (μ)diamètre (μ)diameter (μ) + + + + + højde (mm)hoogte (mm)višina (mm)ύψος (mm)身長 (mm)Höhe (mm)altura (mm)hauteur (mm)height (mm) + + + + + maximum discharge (m³/s) + + + + + periapsis (km)Periapsisdistanz (km) + + + + + maximum temperature (K)Maximaltemperatur (K)μέγιστη θερμοκρασία (K) + + + + + periapsis (km)Periapsisdistanz (km) + + + + + apoapsis (km)Apoapsisdistanz (km)απόαψης (km)апоапсис (km) + + + + + total cargo (kg) + + + + + total time person has spent in space (μ)temps total passé dans l'espace par la personne (μ)Gesamtzeit welche die Person im Weltraum verbracht hat (μ) + + + + + top speed (kmh)Höchstgeschwindigkeit (kmh) + + + + + free flight time (μ) + + + + + lengte (mm)μήκος (mm)Länge (mm)longueur (mm)length (mm) + + + + + maximum discharge (m³/s) + + + + + total time person has spent in space (μ)temps total passé dans l'espace par la personne (μ)Gesamtzeit welche die Person im Weltraum verbracht hat (μ) + + + + + oppervlakte (km2)έκταση περιοχής (km2)Fläche (km2)superficie (km2)area total (km2)укупна површина (km2) + + + + + discharge (m³/s)εκροή (m³/s)uitstoot (m³/s) + + + + + lengte (mm)μήκος (mm)Länge (mm)longueur (mm)length (mm) + + + + + torque output (Nm) + + + + + piston stroke (mm) + + + + + station visit duration (ω) + + + + + lengte (mm)μήκος (mm)Länge (mm)longueur (mm)length (mm) + + + + + temperature (K)Temperatur (K)θερμοκρασία (K)température (K) + + + + + mass (kg)Masse (kg)μάζα (kg) + + + + + lunar surface time (ω) + + + + + kookpunt (K)σημείο βρασμού (K)沸点 (K)Siedepunkt (K)point d'ébullition (K)boiling point (K) + + + + + mass (kg)Masse (kg)μάζα (kg) + + + + + maximum boat beam (μ)μέγιστο_πλάτος_πλοίου (μ) + + + + + πυκνότητα (μ3)密度 (μ3)Dichte (μ3)densità (μ3)densidade (μ3)densité (μ3)density (μ3) + + + + + fuel capacity (l)χωρητικότητα καυσίμου (l)Kraftstoffkapazität (l) + + + + + maximum temperature (K)Maximaltemperatur (K)μέγιστη θερμοκρασία (K) + + + + + mass (kg)Masse (kg)μάζα (kg) + + + + + vægt (kg)gewicht (kg)βάρος (kg)体重 (kg)Gewicht (kg)peso (kg)poids (kg)weight (kg)тежина (kg) + + + + + bevolkingsdichtheid (/sqkm)πυκνότητα_πληθυσμού (/sqkm)Bevölkerungsdichte (/sqkm)घनत्व (/sqkm)population density (/sqkm) + + + + + orbital period (μ)Umlaufzeit (μ)Περίοδος περιφοράς (μ) + + + + + højde (mm)hoogte (mm)višina (mm)ύψος (mm)身長 (mm)Höhe (mm)altura (mm)hauteur (mm)height (mm) + + + + + acceleració (s)acceleratie (s)przyspieszenie (s)επιτάχυνση (s)Beschleunigung (s)luasghéarú (s)accélération (s)acceleration (s)убрзање (s) + variation de la vitesse + + + + mean radius (km)durchschnittlicher Radius (km)μέση ακτίνα (km) + + + + + mass (kg)Masse (kg)μάζα (kg) + + + + + højde (mm)hoogte (mm)višina (mm)ύψος (mm)身長 (mm)Höhe (mm)altura (mm)hauteur (mm)height (mm) + + + + + melting point (K)Schmelzpunkt (K)point de fusion (K)融点 (K) + + + + + kookpunt (K)σημείο βρασμού (K)沸点 (K)Siedepunkt (K)point d'ébullition (K)boiling point (K) + + + + + vægt (kg)gewicht (kg)βάρος (kg)体重 (kg)Gewicht (kg)peso (kg)poids (kg)weight (kg)тежина (kg) + + + + + højde (mm)hoogte (mm)višina (mm)ύψος (mm)身長 (mm)Höhe (mm)altura (mm)hauteur (mm)height (mm) + + + + + lunar orbit time (ω)Mondumlaufzeit (ω) + + + + + πυκνότητα (μ3)密度 (μ3)Dichte (μ3)densità (μ3)densidade (μ3)densité (μ3)density (μ3) + + + + + bevolkingsdichtheid (/sqkm)πυκνότητα_πληθυσμού (/sqkm)Bevölkerungsdichte (/sqkm)घनत्व (/sqkm)population density (/sqkm) + + + + + diameter (μ)διάμετρος (μ)Durchmesser (μ)diamètre (μ)diameter (μ) + + + + + duur (m)διάρκεια (m)Laufzeit (m)durée (m)runtime (m) + + + + + mass (kg)Masse (kg)μάζα (kg) + + + + + discharge average (m³/s) + + + + + højde (mm)hoogte (mm)višina (mm)ύψος (mm)身長 (mm)Höhe (mm)altura (mm)hauteur (mm)height (mm) + + + + + lunar EVA time (ω) + + + + + maximum boat beam (μ)μέγιστο_πλάτος_πλοίου (μ) + + + + + mean radius (km)durchschnittlicher Radius (km)μέση ακτίνα (km) + + + + + mean radius (km)durchschnittlicher Radius (km)μέση ακτίνα (km) + + + + + minimum temperature (K)geringste Temperatur (K)ελάχιστη θερμοκρασία (K) + + + + + højde (mm)hoogte (mm)višina (mm)ύψος (mm)身長 (mm)Höhe (mm)altura (mm)hauteur (mm)height (mm) + + + + + cargo gas (kg) + + + + + lengte (mm)μήκος (mm)Länge (mm)longueur (mm)length (mm) + + + + + population urban density (/sqkm) + + + + + ancho (mm)breedte (mm)πλάτος (mm)Breite (mm)width (mm)ширина (mm) + + + + + højde (mm)hoogte (mm)višina (mm)ύψος (mm)身長 (mm)Höhe (mm)altura (mm)hauteur (mm)height (mm) + + + + + mean radius (km)durchschnittlicher Radius (km)μέση ακτίνα (km) + + + + + volume (μ³)όγκος (μ³)Volumen (μ³)volume (μ³)volume (μ³)запремина (μ³) + + + + + CMP EVA duration (ω) + + + + + population urban density (/sqkm) + + + + + πυκνότητα (μ3)密度 (μ3)Dichte (μ3)densità (μ3)densidade (μ3)densité (μ3)density (μ3) + + + + + orbital period (μ)Umlaufzeit (μ)Περίοδος περιφοράς (μ) + + + + + cylinder bore (mm) + + + + + population metro density (/sqkm)bevolkingsdichtheid (/sqkm) + + + + + ancho (mm)breedte (mm)πλάτος (mm)Breite (mm)width (mm)ширина (mm) + + + + + lengte (mm)μήκος (mm)Länge (mm)longueur (mm)length (mm) + + + + + melting point (K)Schmelzpunkt (K)point de fusion (K)融点 (K) + + + + + diameter (μ)διάμετρος (μ)Durchmesser (μ)diamètre (μ)diameter (μ) + + + + + campus size (km2)جامعہ کا ناپ (km2) + + + + + minimum temperature (K)geringste Temperatur (K)ελάχιστη θερμοκρασία (K) + + + + + ancho (mm)breedte (mm)πλάτος (mm)Breite (mm)width (mm)ширина (mm) + + + + + top speed (kmh)Höchstgeschwindigkeit (kmh) + + + + + area urban (km2)Stadtgebiet (km2)αστική περιοχή (km2)урбана површина (km2) + + + + + original maximum boat beam (μ) + + + + + area of catchment (km2)Einzugsgebiet (km2)λίμνη (km2)подручје слива (km2) + + + + + ancho (mm)breedte (mm)πλάτος (mm)Breite (mm)width (mm)ширина (mm) + + + + + torque output (Nm) + + + + + mission duration (μ)Missionsdauer (μ) + + + + + diameter (μ)διάμετρος (μ)Durchmesser (μ)diamètre (μ)diameter (μ) + + + + + bevolkingsdichtheid (/sqkm)πυκνότητα_πληθυσμού (/sqkm)Bevölkerungsdichte (/sqkm)घनत्व (/sqkm)population density (/sqkm) + + + + + mean temperature (K)Durchschnittstemperatur (K)μέση θερμοκρασία (K) + + + + + lower earth orbit payload (kg) + Payload mass in a typical Low Earth orbit + + + + vægt (kg)gewicht (kg)βάρος (kg)体重 (kg)Gewicht (kg)peso (kg)poids (kg)weight (kg)тежина (kg) + + + + + mass (kg)Masse (kg)μάζα (kg) + + + + + lunar EVA time (ω) + + + + + vægt (kg)gewicht (kg)βάρος (kg)体重 (kg)Gewicht (kg)peso (kg)poids (kg)weight (kg)тежина (kg) + + + + + diameter (km)διάμετρος (km)Durchmesser (km)diamètre (km)diameter (km) + + + + + højde (mm)hoogte (mm)višina (mm)ύψος (mm)身長 (mm)Höhe (mm)altura (mm)hauteur (mm)height (mm) + + + + + orbital period (μ)Umlaufzeit (μ)Περίοδος περιφοράς (μ) + + + + + πυκνότητα (μ3)密度 (μ3)Dichte (μ3)densità (μ3)densidade (μ3)densité (μ3)density (μ3) + + + + + lengte (mm)μήκος (mm)Länge (mm)longueur (mm)length (mm) + + + + + temperature (K)Temperatur (K)θερμοκρασία (K)température (K) + + + + + melting point (K)Schmelzpunkt (K)point de fusion (K)融点 (K) + + + + + maximum temperature (K)Maximaltemperatur (K)μέγιστη θερμοκρασία (K) + + + + + lengte (mm)μήκος (mm)Länge (mm)longueur (mm)length (mm) + + + + + cuenca hidrográfica (km2)waterscheiding (km2)λεκάνη_απορροής (km2)Wasserscheide (km2)watershed (km2) + + + + + size (MB)μέγεθος αρχείου (MB)Dateigröße (MB)taille de fichier (MB) + size of a file or softwareμέγεθος ενός ηλεκτρονικού αρχείου + + + + minimum discharge (m³/s) + + + + + area metro (km2)περιοχή μετρό (km2)метрополска област (km2) + + + + + displacement (cc)cilindrada (cc) + + + + + mass (kg)Masse (kg)μάζα (kg) + + + + + temperature (K)Temperatur (K)θερμοκρασία (K)température (K) + + + + + vægt (kg)gewicht (kg)βάρος (kg)体重 (kg)Gewicht (kg)peso (kg)poids (kg)weight (kg)тежина (kg) + + + + + piston stroke (mm) + + + + + course (km) + + + + + lengte (km)μήκος (km)Länge (km)longueur (km)length (km) + + + + + surface area (km2)Oberfläche (km2)έκταση (km2) + + + + + vægt (kg)gewicht (kg)βάρος (kg)体重 (kg)Gewicht (kg)peso (kg)poids (kg)weight (kg)тежина (kg) + + + + + diameter (mm)διάμετρος (mm)Durchmesser (mm)diamètre (mm)diameter (mm) + + + + + kookpunt (K)σημείο βρασμού (K)沸点 (K)Siedepunkt (K)point d'ébullition (K)boiling point (K) + + + + + CO2 emission (g/km) + + + + + acceleració (s)acceleratie (s)przyspieszenie (s)επιτάχυνση (s)Beschleunigung (s)luasghéarú (s)accélération (s)acceleration (s)убрзање (s) + variation de la vitesse + + + + ancho (mm)breedte (mm)πλάτος (mm)Breite (mm)width (mm)ширина (mm) + + + + + average speed (km/s)vitesse moyenne (km/s)Durchschnittsgeschwindigkeit (km/s)μέση ταχύτητα (km/s) + The average speed of a thing.Vitesse moyenne du déplacement d'un objet.Η μέση ταχύτητα ενός πράγματος. + + + + højde (mm)hoogte (mm)višina (mm)ύψος (mm)身長 (mm)Höhe (mm)altura (mm)hauteur (mm)height (mm) + + + + + apoapsis (km)Apoapsisdistanz (km)απόαψης (km)апоапсис (km) + + + + + average speed (km/s)vitesse moyenne (km/s)Durchschnittsgeschwindigkeit (km/s)μέση ταχύτητα (km/s) + The average speed of a thing.Vitesse moyenne du déplacement d'un objet.Η μέση ταχύτητα ενός πράγματος. + + + + wheelbase (mm)Radstand (mm)међуосовинско растојање (mm) + + + + + mission duration (μ)Missionsdauer (μ) + + + + + vægt (kg)gewicht (kg)βάρος (kg)体重 (kg)Gewicht (kg)peso (kg)poids (kg)weight (kg)тежина (kg) + + + + + diameter (μ)διάμετρος (μ)Durchmesser (μ)diamètre (μ)diameter (μ) + + + + + vægt (kg)gewicht (kg)βάρος (kg)体重 (kg)Gewicht (kg)peso (kg)poids (kg)weight (kg)тежина (kg) + + + + + højde (mm)hoogte (mm)višina (mm)ύψος (mm)身長 (mm)Höhe (mm)altura (mm)hauteur (mm)height (mm) + + + + + ancho (mm)breedte (mm)πλάτος (mm)Breite (mm)width (mm)ширина (mm) + + + + + lunar sample mass (kg) + + + + + diameter (km)διάμετρος (km)Durchmesser (km)diamètre (km)diameter (km) + + + + + periapsis (km)Periapsisdistanz (km) + + + + + lengte (mm)μήκος (mm)Länge (mm)longueur (mm)length (mm) + + + + + original maximum boat beam (μ) + + + + + power output (kW)puissance de sortie (kW)Ausgangsleistung (kW) + + + + + total time person has spent in space (m)temps total passé dans l'espace par la personne (m)Gesamtzeit welche die Person im Weltraum verbracht hat (m) + + + + + vægt (kg)gewicht (kg)βάρος (kg)体重 (kg)Gewicht (kg)peso (kg)poids (kg)weight (kg)тежина (kg) + + + + + lengte (mm)μήκος (mm)Länge (mm)longueur (mm)length (mm) + + + + + surface area (km2)Oberfläche (km2)έκταση (km2) + + + + + πυκνότητα (μ3)密度 (μ3)Dichte (μ3)densità (μ3)densidade (μ3)densité (μ3)density (μ3) + + + + + mass (kg)Masse (kg)μάζα (kg) + + + + + distance (km)distance (km)Entfernung (km) + + + + + diameter (μ)διάμετρος (μ)Durchmesser (μ)diamètre (μ)diameter (μ) + + + + + højde (cm)hoogte (cm)višina (cm)ύψος (cm)身長 (cm)Höhe (cm)altura (cm)hauteur (cm)height (cm) + + + + + shore length (km)Uferlänge (km)μήκος_όχθης (km) + + + + + lengte (mm)μήκος (mm)Länge (mm)longueur (mm)length (mm) + + + + + oppervlakte (km2)έκταση (km2)Fläche (km2)área (km2)رقبہ (km2)superficie (km2)area (km2)област (km2) + The area of the thing in square meters. + + + + minimum temperature (K)geringste Temperatur (K)ελάχιστη θερμοκρασία (K) + + + + + lunar orbit time (ω)Mondumlaufzeit (ω) + + + + + floor area (m2)vloeroppervlak (m2)περιοχή ορόφων (m2) + + + + + lunar surface time (ω) + + + + + mass (kg)Masse (kg)μάζα (kg) + + + + + volume (μ³)όγκος (μ³)Volumen (μ³)volume (μ³)volume (μ³)запремина (μ³) + + + + + distance (km)distance (km)Entfernung (km) + + + + + volume (μ³)όγκος (μ³)Volumen (μ³)volume (μ³)volume (μ³)запремина (μ³) + + + + + πυκνότητα (μ3)密度 (μ3)Dichte (μ3)densità (μ3)densidade (μ3)densité (μ3)density (μ3) + + + + + temperature (K)Temperatur (K)θερμοκρασία (K)température (K) + + + + + area of catchment (km2)Einzugsgebiet (km2)λίμνη (km2)подручје слива (km2) + + + + + dry cargo (kg)Trockenfracht (kg)droge last (kg) + + + + + station EVA duration (ω) + + + + + vægt (kg)gewicht (kg)βάρος (kg)体重 (kg)Gewicht (kg)peso (kg)poids (kg)weight (kg)тежина (kg) + + + + + volume (km3)όγκος (km3)Volumen (km3)volume (km3)volume (km3)запремина (km3) + + + + + orbital period (μ)Umlaufzeit (μ)Περίοδος περιφοράς (μ) + + + + + apoapsis (km)Apoapsisdistanz (km)απόαψης (km)апоапсис (km) + + + + + ancho (mm)breedte (mm)πλάτος (mm)Breite (mm)width (mm)ширина (mm) + + + + + højde (cm)hoogte (cm)višina (cm)ύψος (cm)身長 (cm)Höhe (cm)altura (cm)hauteur (cm)height (cm) + + + + + minimum temperature (K)geringste Temperatur (K)ελάχιστη θερμοκρασία (K) + + + + + diameter (μ)διάμετρος (μ)Durchmesser (μ)diamètre (μ)diameter (μ) + + + + + distance traveled (km)Zurückgelegte Entfernung (km)afgelegde afstand (km) + + + + + diameter (μ)διάμετρος (μ)Durchmesser (μ)diamètre (μ)diameter (μ) + + + + + lengte (mm)μήκος (mm)Länge (mm)longueur (mm)length (mm) + + + + + vægt (kg)gewicht (kg)βάρος (kg)体重 (kg)Gewicht (kg)peso (kg)poids (kg)weight (kg)тежина (kg) + + + + + πυκνότητα (μ3)密度 (μ3)Dichte (μ3)densità (μ3)densidade (μ3)densité (μ3)density (μ3) + + + + + \ No newline at end of file diff --git a/ontology.xml b/ontology.xml new file mode 100644 index 0000000000..c8b3d98948 --- /dev/null +++ b/ontology.xml @@ -0,0 +1,38377 @@ +OntologyClass:Academic20013556574472022-04-24T07:13:09Z{{Class +| labels = + {{label|en|Academic Person}} + {{label|eu|Pertsona Akademikoa}} + {{label|da|Akademisk person}} + {{label|fr|Personne académique}} + {{label|hi|अकादमिक व्यक्ति}} + {{label|ar|شخص أكاديمي}} + {{label|ur|تعلیمی}} +| rdfs:subClassOf = Person +}}OntologyClass:AcademicConference20011553548382021-07-09T06:50:25Z{{Class +| labels = +{{label|en|academic conference}} +{{label|nl|wetenschappelijke conferentie}} +{{label|de|wissenschaftliche Konferenz}} +{{label|be|навуковая канферэнцыя}} +{{label|fr|conférence scientifique}} +{{label|it|congresso scientifico}} +{{label|pl|konferencja naukowa}} +{{label|ru|научная конференция}} +{{label|ja|学術会議}} + +{{label |ur | تعلیمی_کانفرنس }} + + + +| rdfs:subClassOf = SocietalEvent +| owl:equivalentClass = wikidata:Q2020153 +}}OntologyClass:AcademicJournal2003738574502022-04-24T08:32:14Z{{Class +| labels = +{{label|en|academic journal}} +{{label|ga|iris acadúil}} +{{label|el|ακαδημαϊκό περιοδικό}} +{{label|de|Wissenschaftliche Fachzeitschrift}} +{{label|gl|revista académica}} +{{label|ko|학술지}} +{{label|ja|学術雑誌}} +{{label|nl|wetenschappelijk tijdschrift}} +{{label|fr|journal académique}} +{{label|it|giornale accademico}} +{{label|pl|czasopismo naukowe}} +{{label|zh|學術期刊}} +{{label|ur| تعلیمی جریدہ }} + + + + + + +| rdfs:subClassOf = PeriodicalLiterature +| comments = + + +{{comment|ur|اتعلیمی جریدہ زیادہ تر ہم مرتبہ نظرثانی شدہ جریدہ ہے جس میں کسی خاص تعلیمی ادب سے متعلق وظیفہ شائع کیا جاتا ہے۔ تعلیمی جرائد نئی تحقیق کی جانچ پڑتال اور موجودہ تحقیق کی تنقید کے تعارف اور پیشکش کے لیے عوامی جرگہ کے طور پر کام کرتے ہیں۔ مواد عام طور پر مضامین کی شکل اختیار کرتا ہے جو اصل تحقیق، جائزہ مضامین، اور کتاب کے جائزے پیش کرتے ہیں۔}} + +}} +{{comment|en|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.}} +{{comment|el| Ένα ακαδημαϊκό περιοδικό είναι ως επί το πλείστον περιοδικό για κριτικές οι οποίες σχετίζονται με έναν συγκεκριμένο ακαδημαϊκό τομέα. Τα ακαδημαϊκά περιοδικά χρησιμεύουν ως φόρουμ για την εισαγωγή και παρουσίαση του ελέγχου των νέων ερευνών και της κριτικής της υπάρχουσας έρευνας. Το περιεχόμενο έχει συνήθως την μορφή άρθρων παρουσίασης νέας έρευνας, ανασκόπησης υπάρχων άρθρων και κριτικές βιβλίων. }} +{{comment|de|Wissenschaftliche Fachzeitschriften sind regelmäßig verlegte Fachzeitschriften über Spezialthemen aus den verschiedensten wissenschaftlichen Disziplinen. Sie stellen neue Methoden, Techniken und aktuelle Trends aus den Wissenschaften dar.}} +{{comment|gl| Unha revista académica é unha publicación periódica revisada por expertos na que se publican artigos dunha disciplina académica. }} +{{comment|pl| Czasopismo naukowe – rodzaj czasopisma, w którym są drukowane publikacje naukowe podlegające recenzji naukowej. Współcześnie szacuje się, że na świecie jest wydawanych ponad 54 tys. czasopism naukowych, w których pojawia się ponad milion artykułów rocznie.}} + +| owl:equivalentClass = wikidata:Q737498 +}}OntologyClass:AcademicSubject2009708549242021-09-07T11:44:37Z{{Class +|labels= +{{label|en|academic subject}} +{{label|de|akademisches Fach}} +{{label|fr|sujet académique}} +{{label|gl|disciplina académica}} +{{label|nl|academische hoofdstudierichting}} +{{label|ur|تعلیمی مضمون}} +{{label|pl|dyscyplina naukowa}} +| comments = {{comment|en|Genres of art, e.g. Mathematics, History, Philosophy, Medicine}} +{{comment|gl|Unha disciplina académica é unha rama do coñecemento que unha comunidade de especialistas desenvolve con metodoloxías de investigación. }} +| rdfs:subClassOf = TopicalConcept +| owl:equivalentClass = wikidata:Q11862829 +}}OntologyClass:Activity2002150551702021-09-10T16:35:30Z{{Class +|labels= + {{label|en|activity}} +{{label|ga|gníomhaíocht}} + {{label|es|actividad}} + {{label|da|aktivitet}} + {{label|de|Aktivität}} + {{label|el|Δραστηριότητα}} + {{label|gl|actividade}} + {{label|pt|atividade}} + {{label|ja|活動}} + {{label|nl|activiteit}} + {{label|fr|activité}} + {{label|it|attività}} + {{label|pl|aktywność}} + {{label|zh|活動}} + {{label|ko|활동}} +{{label|ur|سرگرمی}} +| owl:disjointWith = Person +| owl:equivalentClass = d0:Activity, wikidata:Q1914636 +| rdfs:subClassOf = owl:Thing +}}OntologyClass:Actor200289551572021-09-10T10:46:12Z{{Class +| labels = +{{label|en|actor}} +{{label|ur|اداکار}} +{{label|ga|aisteoir}} +{{label|el|ηθοποιός}} +{{label|es|actor}} +{{label|eu|aktore}} +{{label|it|attore}} +{{label|da|skuespiller}} +{{label|de|Schauspieler}} +{{label|fr|acteur}} +{{label|gl|actor}} +{{label|lv|aktieris}} +{{label|pl|aktor}} +{{label|pt|ator}} +{{label|ko|영화인}} +{{label|ja|俳優}} +{{label|nl|acteur}} +{{label|zh|演員}} +| comments = +{{comment|en|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.}} +{{comment|ur|ایک اداکار یا اداکارہ وہ شخص ہوتا ہے جو ڈرامائی پروڈکشن میں کام کرتا ہے اور جو فلم ، ٹیلی ویژن ، تھیٹر یا ریڈیو میں اس صلاحیت کے ساتھ کام کرتا ہے}} +{{comment|el|Μια ηθοποιός ή ένας ηθοποιός είναι ένα άτομο που παίζει σε μια δραματική παραγωγή και που εργάζεται στο χώρο του κινηματογράφου, της τηλεόρασης, του θεάτρου, ή το ραδιόφωνο.}} +{{comment|gl|Un actor, se é home, ou unha actriz, se é muller, é unha persoa que representa un papel nunha obra teatral, cinematográfica, radiofónica ou televisiva.}} +{{comment|it|Un attore o un attrice è una persona che recita in una produzione teatrale, televisiva, cinematografica o radiofonica.}} +| rdfs:subClassOf = Artist +| owl:equivalentClass = wikidata:Q33999 +}}OntologyClass:AdministrativeRegion200301549392021-09-09T08:43:59Z{{Class +| labels = +{{label|en|administrative region}} +{{label|ga|réigiún riaracháin}} +{{label|de|Verwaltungsregion}} +{{label|el|διοικητική περιφέρεια}} +{{label|fr|région administrative}} +{{label|gl|rexión administrativa}} +{{label|ja|行政区画}} +{{label|nl|bestuurlijk gebied}} +{{label|it|regione amministrativa}} +{{label|zh|行政區}} +{{label|ko|관리 지역}} +{{label|ur|انتظامی علاقہ}} +| comments = +{{comment|en|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)}} +{{comment|ur|(نتظامی علاقہ)انتظامی ادارے کے دائرہ اختیار میں ایک آبادی والی جگہ۔ یہ ادارہ یا تو ایک پورے علاقے یا ایک یا اس سے ملحقہ بستیوں کا انتظام کر سکتا ہے }} +| rdfs:subClassOf = Region +| owl:equivalentClass = schema:AdministrativeArea, wikidata:Q3455524 +}}OntologyClass:AdultActor200290577072022-04-26T11:27:12Z{{Class +| labels = +{{label|en|adult (pornographic) actor}} +{{label|ga|aisteoir pornagrafaíochta}} +{{label|it|attore porno}} +{{label|fr|acteur porno/acteur adulte}} +{{label|el|ενήλικας (πορνογραφικός) ηθοποιός}} +{{label|es|actor porno}} +{{label|de|pornographischer Schauspieler}} +{{label|gl|actor porno}} +{{label|pt|ator adulto}} +{{label|ja|ポルノ女優}} +{{label|ur|بالغ اداکار}} + +{{label|nl|pornografisch acteur}} +{{label|pl|aktor pornograficzny}} +{{label|zh|色情演員}} +{{label|ko|성인 배우}} +| comments = +{{comment|en|A pornographic actor or actress or a porn star is a person who performs sex acts in film, normally characterised as a pornographic film.}} +{{comment|gl|Un actor ou unha actriz porno ou pornográfico/a, é un actor ou actriz de cine porno que actúa en películas de temática pornográfica..&lt;ref&gt;https://gl.wikipedia.org/wiki/Actor_pornogr%C3%A1fico&lt;/ref&gt;}} +{{comment|ur|ایک فحش اداکار یا اداکارہ یا پورن سٹار وہ شخص ہوتا ہے جو فلم میں جنسی حرکتیں کرتا ہے، عام طور پر اسے فحش فلم کے طور پر دیکھا جاتا ہے۔}} +| owl:equivalentClass = wikidata:Q488111 +| rdfs:subClassOf = Actor +}}OntologyClass:Agent2005042577132022-04-26T11:32:59Z{{Class +| labels = + {{label|en|agent}} + {{label|ga|gníomhaire}} + {{label|da|agent}} + {{label|de|Agent}} + {{label|el|πράκτορας}} + {{label|gl|axente}} + {{label|ja|エージェント}} + {{label|nl|agent}} + {{label|it|agente}} + {{label|fr|agent}} + {{label|es|agente}} + {{label|ko|에이전트}} + {{label|ur|نمائندہ}} +| comments = +{{comment|ur|ایک ایجنٹ ایک ایسا ادارہ ہے جو کام کرتا ہے۔ اس کا مقصد شخص اور تنظیم کا فوق درجہ ہونا ہے۔}} +{{comment|en|Analogous to a foaf:Agent, an agent is an entity that acts. This is intended to be the super class of Person and Organisation.}} +{{comment|fr|Equivaut à foaf:Agent, un agent est une entité qui agit. C'est supposé être la super classe de Person et de Organisation.}} +{{comment|el|Ανάλογα με την κλάση foaf:Agent, ένας πράκτορας είναι μια οντότητα που ενεργεί. Αυτό προορίζεται να είναι μια υπερκλάση της κλάσης Άτόμο και Οργανισμός.}} +{{comment|gl|Análogo a foaf:Agent, un axente é unha entidade que actúa. Destínase a ser a super clase de Persoa e Organización.}} +| owl:disjointWith = Place +| owl:equivalentClass = dul:Agent, wikidata:Q24229398 +| rdfs:subClassOf = owl:Thing +}}OntologyClass:Agglomeration2007932555062021-09-13T09:39:55Z{{Class +| labels= +{{label|en|agglomeration}} +{{label|ur|مجموعہ}} +{{label|fr|agglomération}} +{{label|de|Ballungsgebiet}} +{{label|el|συσσώρευση}} +{{label|gl|aglomeración}} +{{label|nl|agglomeratie}} +{{label|pl|aglomeracja}} +| rdfs:subClassOf = PopulatedPlace +}}OntologyClass:Aircraft200291577182022-04-26T11:37:17Z{{Class +| labels = +{{label|en|aircraft}} +{{label|ga|aerárthach}} +{{label|da|fly}} +{{label|de|Flugzeug}} +{{label|el|αεροσκάφος}} +{{label|fr|avion}} +{{label|gl|avión}} +{{label|ko|비행기}} +{{label|ja|航空機}} +{{label|nl|vliegtuig}} +{{label|zh|飛機}} +{{label|it|aereo}} +{{label|es|avión}} +{{label|ro|avion}} +{{label|ur|ہوائی جہاز}} +{{label|pl|samolot}} +| rdfs:subClassOf = MeanOfTransportation, schema:Product +| owl:equivalentClass = wikidata:Q11436 +}}OntologyClass:Airline200292551592021-09-10T11:11:37Z{{Class +| labels = +{{label|en|airline}} +{{label|ga|aerlíne}} +{{label|es|compañía aerea}} +{{label|fr|compagnie aérienne}} +{{label|el|αεροπορική εταιρεία}} +{{label|pl|linia lotnicza}} +{{label|da|flyselskab}} +{{label|de|Fluggesellschaft}} +{{label|gl|compañía aérea}} +{{label|ur|ہوائی راستہ}} +{{label|ko|항공사}} +{{label|ja|航空会社}} +{{label|nl|luchtvaartmaatschappij}} +{{label|zh|航空公司}} +{{label|it|compagnia aerea}} +|comments= +{{comment|ur|ہوائی جہازوں کے ذریعے سواریاں لے جانے والی تنظیم}} +| rdfs:subClassOf = PublicTransitSystem +| owl:equivalentClass = wikidata:Q46970 +}}OntologyClass:Airport200293555052021-09-13T09:39:00Z{{Class +| labels = +{{label|en|airport}} +{{label|ur|ہوائی اڈہ}} +{{label|ru|аэропорт}} +{{label|ga|aerfort}} +{{label|es|aeropuerto}} +{{label|el|αεροδρόμιο}} +{{label|da|lufthavn}} +{{label|de|Flughafen}} +{{label|fr|aéroport}} +{{label|gl|aeroporto}} +{{label|pl|lotnisko}} +{{label|pt|aeroporto}} +{{label|ko|공항}} +{{label|ja|空港}} +{{label|nl|luchthaven}} +{{label|zh|機場}} +{{label|it|aeroporto}} +| rdfs:subClassOf = Infrastructure +| owl:equivalentClass = schema:Airport,wikidata:Q1248784 +}}OntologyClass:Album200294577292022-04-26T11:48:32Z{{Class +| labels = +{{label|en|album}} +{{label|ga|albam}} +{{label|da|album}} +{{label|de|Album}} +{{label|fr|album}} +{{label|el|album}} +{{label|gl|álbum}} +{{label|ko|앨범 }} +{{label|ja|アルバム}} +{{label|nl|album}} +{{label|pt|álbum}} +{{label|zh|照片集}} +{{label|es|album}} +{{label|ur|تصویروں اور دستخط کی کتاب}} +{{label|it|album}} +{{label|pl|album (wydawnictwo muzyczne)}} +| rdfs:subClassOf = MusicalWork +| owl:equivalentClass = schema:MusicAlbum , wikidata:Q482994 +}}OntologyClass:Algorithm20012178552852021-09-11T11:14:38Z{{Class +| labels = +{{label|en|Algorithm}} +{{label|fr|Algorithme}} +{{label|de|Algorithmus}} +{{label|nl|Algoritme}} +{{label|ur|حساب و شمار}} +{{label|ru|Алгоритм}} +|comments= +{{comment|ur|ایک عین قاعدہ (یا قواعد کا مجموعہ) جس میں وضاحت کی جاتی ہے کہ کسی مسئلے کو کیسے حل کیا جائے}} +| owl:equivalentClass = wikidata:Q8366 +}}OntologyClass:Altitude2007920555042021-09-13T09:37:54Z{{Class +| labels = +{{label|en|altitude}} +{{label|ur|بلندی}} +{{label|ga|airde}} +{{label|fr|altitude}} +{{label|da|højde}} +{{label|de|Höhe}} +{{label|el|υψόμετρο}} +{{label|gl|altitude}} +{{label|nl|hoogte}} +{{label|ja|高度}} +| comments = +{{comment|el|Το υψόμετρο είναι η κάθετη απόσταση ενός αντικειμένου σε σχέση με ένα καθορισμένο επίπεδο αναφοράς. Συνήθως το υψόμετρο μετριέται ως η κάθετη απόσταση (υψομετρική διαφορά) ενός τόπου από το επίπεδο της θάλασσας (Μέση Στάθμη Θάλασσας), ενώ για πιο ακριβείς μετρήσεις χρησιμοποιείται το γεωειδές.}} +{{comment|gl|A altitude é a distancia vertical dun obxecto respecto dun punto de orixe dado, considerado como o nivel cero, para o que se adoita tomar o nivel absoluto do mar.&lt;ref&gt;https://gl.wikipedia.org/wiki/Altitude&lt;/ref&gt;}} +| owl:equivalentClass = wikidata:Q190200 +}}OntologyClass:AmateurBoxer2006215577382022-04-26T12:05:52Z{{Class +| labels = {{label|en|amateur boxer}} +{{label|ga|dornálaí amaitéarach}} +{{label|de|Amateurboxer}} +{{label|el|ερασιτέχνης μποξέρ}} +{{label|fr|boxeur amateur}} +{{label|gl|boxeador afeccionado}} +{{label|it|pugile amatoriale}} +{{label|ja|アマチュアボクサー}} +{{label|nl|amateur boxer}} +{{label|ur|شوقیہ مکے باز}} +{{label|ko|아마추어 권투 선수}} +| rdfs:subClassOf = Boxer +}}OntologyClass:Ambassador2002379577442022-04-26T12:10:51Z{{Class +| labels = +{{label|en|ambassador}} +{{label|ga|ambasadóir}} +{{label|el|πρεσβευτής}} +{{label|fr|ambassadeur}} +{{label|de|Botschafter}} +{{label|gl|embaixador}} +{{label|it|ambasciatore}} +{{label|ja|大使}} +{{label|nl|ambassadeur}} +{{label|ko| 대사 (외교관)}} +{{label|es|embajador}} +{{label|ur|سفیر}} +| rdfs:subClassOf = Politician +| comments = +{{comment|en|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.}} +{{comment|ur|ایک غیر ملکی حکومت سے منظور شدہ اعلیٰ ترین عہدے کا سفارتی کارندہ}} +{{comment|gl|Un embaixador é o funcionario diplomático de máis alto nivel acreditado diante de un Estado estranxeiro ou organización internacional.&lt;ref&gt;https://gl.wikipedia.org/wiki/Embaixador&lt;/ref&gt;}} +| owl:equivalentClass = wikidata:Q121998 +}}OntologyClass:AmericanFootballCoach2007988554882021-09-13T09:19:20Z{{Class +| labels = +{{label|en|american football coach}} +{{label|de|American-Football-Trainer}} +{{label|gl|adestrador de fútbol americano}} +{{label|nl|Amerikaanse football coach}} +{{label|el|προπονητής ράγκμπυ}} +{{label|it|allenatore di football americano}} +{{label|fr|entraineur de football américain}} +{{label|ur|امریکن فٹ بال کوچ}} +| rdfs:subClassOf = Coach +}}OntologyClass:AmericanFootballLeague2002283555192021-09-15T04:47:32Z{{Class +| labels = +{{label|en|american football league}} +{{label|de|American-Football-Liga}} +{{label|el|aμερικανικό πρωτάθλημα ποδοσφαίρου}} +{{label|es|liga de fútbol americano}} +{{label|fr|american football league}} +{{label|gl|liga de fútbol americano}} +{{label|pt|liga de futebol americano}} +{{label|ja|アメリカン・フットボール・リーグ}} +{{label|nl|Amerikaanse voetbal competitie}} +{{label|it|lega di football americano}} +{{label|ko| 미식 축구 대회}} +{{label|ur| امریکن فٹ بال لیگ}} +| comments = +{{comment|en|A group of sports teams that compete against each other in american football.}} +{{comment|ur|کھیلوں کی ٹیموں کا ایک گروپ جو امریکی فٹ بال میں ایک دوسرے کے خلاف مقابلہ کرتے ہیں۔.}} +{{comment|el|Ένα σύνολο αθλητικών ομάδων που ανταγωνίζονται μεταξύ τους στο αμερικάνικο ποδόσφαιρο.}} +{{comment|gl|A National Football League (en galego: Liga Nacional de Fútbol Americano), mellor coñecida polas súas siglas en inglés, NFL, é a maior liga de fútbol americano profesional dos Estados Unidos e está considerada como a máis grande e prestixiosa propiedade deportiva nese país.&lt;ref&gt;https://gl.wikipedia.org/wiki/National_Football_League&lt;/ref&gt;}} +| rdfs:subClassOf = SportsLeague +}}OntologyClass:AmericanFootballPlayer200369552932021-09-11T11:27:34Z{{Class +| labels = +{{label|en|american football player}} +{{label|el|παίκτης αμερικανικού ποδοσφαίρου}} +{{label|fr|joueur de football américain}} +{{label|gl|xogador de fútbol americano}} +{{label|ja|アメリカンフットボール選手}} +{{label|nl|American footballspeler}} +{{label|de|American Footballspieler}} +{{label|ur|امریکی فٹ بال کھلاڑی}} +{{label|ko|미식 축구 선수}} +{{label|es|jugador de fútbol americano}} +{{label|it|giocatore di football americano}} +| rdfs:subClassOf = GridironFootballPlayer +| owl:equivalentClass = wikidata:Q14128148 +}}OntologyClass:AmericanFootballTeam200370554912021-09-13T09:22:11Z{{Class +| labels = +{{label|it|squadra di football americano}} +{{label|en|american football Team}} +{{label|de|American-Football-Team}} +{{label|gl|equipo de fútbol americano}} +{{label|nl|Amerikaans football team}} +{{label|el|ομάδα αμερικανικού ποδοσφαίρου}} +{{label|fr|équipe américaine de football américain}} +{{label|ja|アメリカン・フットボール・チーム}} +{{label|ko|미식 축구 팀}} +{{label|ur|امریکن فٹ بال ٹیم}} +| rdfs:subClassOf = SportsTeam +}}OntologyClass:AmericanLeader20013578577502022-04-26T12:19:12Z{{Class +| labels = + {{label|en|American Leader}} + {{label|eu|Amerikako liderra}} + {{label|da|Amerikansk leder}} + {{label|fr|chef américain}} + {{label|ur|امریکی رہنما}} +| rdfs:subClassOf = Person +}}OntologyClass:Amphibian200295577552022-04-26T12:25:57Z{{Class +| labels = +{{label|en|amphibian}} +{{label|ga|amfaibiach}} +{{label|de|Amphibie}} +{{label|el|αμφίβιο}} +{{label|fr|amphibien}} +{{label|gl|anfibio}} +{{label|pt|anfíbio}} +{{label|ja|両生類}} +{{label|nl|amfibie}} +{{label|it|anfibio}} +{{label|ko|양서류}} +{{label|ur|جل تھلیا}} + +|comments= +{{comment|ur|خشکی اور تری دونوں کا وہ جانور جوخشکی اور پانی دونوں میں رہے}} +| rdfs:subClassOf = Animal +}}OntologyClass:AmusementParkAttraction2008003568782022-03-02T17:06:42Z{{Class +| labels = +{{label|en|amusement park attraction}} +{{label|nl|pretparkattractie}} +{{label|de|Vergnügungsparkattraktion}} +{{label|el|δραστηριότητα λούνα πάρκ}} +{{label|ur|تفریحی پارک کی کشش}} +{{label|gl|atracción de parque de atraccións}} +{{label|fr|parc d'attractions}} +| rdfs:subClassOf = ArchitecturalStructure +}}OntologyClass:AnatomicalStructure200296551792021-09-10T17:02:12Z{{Class +| labels = + {{label|en|anatomical structure}} +{{label|ga|coirpeog}} + {{label|de|anatomischen Struktur}} + {{label|el|ανατομική δομή}} + {{label|nl|anatomische structuur}} + {{label|fr|structure anatomique}} + {{label|gl|estrutura anatómica}} + {{label|sl|anatomska struktura}} + {{label|ko|해부학}} + {{label|ja|解剖構造}} + {{label|it|struttura anatomica}} + {{label|ur|جسمانی ساخت}} +| rdfs:subClassOf = owl:Thing +| owl:equivalentClass = wikidata:Q4936952 +}}OntologyClass:Animal200297550632021-09-09T14:26:21Z{{Class +| labels = +{{label|it|animale}} +{{label|en|animal}} +{{label|ga|ainmhí}} +{{label|el|ζώο}} +{{label|da|dyr}} +{{label|de|Tier}} +{{label|fr|animal}} +{{label|gl|animal}} +{{label|sl|žival}} +{{label|ko|동물}} +{{label|ja|動物}} +{{label|nl|dier}} +{{label|es|animal}} +{{label|pt|animal}} +{{label|sk|zviera}} +{{label|ur|جانور}} +| rdfs:subClassOf = Eukaryote +| owl:equivalentClass = wikidata:Q729 +}}OntologyClass:AnimangaCharacter2006205552992021-09-11T11:47:31Z{{Class +| labels = {{label|en|animanga character}} +{{label|ga|carachtar animanga}} + {{label|el|χαρακτήρας ανιμάνγκα}} + {{label|nl|ani-manga figuur}} +{{label|it|personaggio animanga}} +{{label|de|Manga-Charakter}} +{{label|gl|personaxe de animanga}} +{{label|ja|キャラクター}} +{{label|ko|만화애니 등장인물}} +{{label|fr|personnage d'animanga}} +{{label|ur|انیمنگا کردار}} +| comments = {{comment|en|Anime/Manga character}} + {{comment|el|Χαρακτήρας από Άνιμε/Μάνγκα}} +| rdfs:subClassOf = ComicsCharacter +}}OntologyClass:Anime2005814578832022-05-05T08:42:06Z{{Class +| labels = +{{label|en|Anime}} +{{label|fr|Animation}} +{{label|nl|anime}} +{{label|de|anime}} +{{label|el|άνιμε}} +{{label|it|anime}} +{{label|ga|anime}} +{{label|gl|anime}} +{{label|ja|アニメ}} +{{label|ur|انیمے}} +{{label|ko|일본의 애니메이션}} +| comments = +{{comment|en|A style of animation originating in Japan}} +{{comment|fr|Style d'animation né au Japon}} +{{comment|nl|Geanimeerd Japans stripverhaal}} +{{comment|ur|حرکت پذیری کا ایک انداز جاپان میں شروع ہوا۔}} +{{comment|el|Στυλ κινουμένων σχεδίων με καταγωγή την Ιαπωνία}} +{{comment|gl|Designación coa que se coñece a animación xaponesa}} +| rdfs:subClassOf = Cartoon +| owl:equivalentClass = wikidata:Q1107 +}} + + +<ref name="anime">http://en.wikipedia.org/wiki/Anime</ref> +==References== +<references/>OntologyClass:Annotation20011279555232021-09-15T05:03:47Z{{Class +| labels = +{{label|en|Annotation}} +{{label|el|Σχόλιο}} +{{label|gl|nota}} +{{label|nl|Aantekening}} +{{label|de|Randglosse}} +{{label|ja|注釈}} +{{label|fr|annotation}} +{{label|ur|تشریح}} +| rdfs:subClassOf = WrittenWork +| owl:equivalentClass = schema:Comment, bibo:Note +}}OntologyClass:Arachnid200298553032021-09-11T12:01:44Z{{Class +| labels = +{{label|en|arachnid}} +{{label|ga|araicnid}} +{{label|de|Spinnentier}} +{{label|nl|spinachtigen}} +{{label|el|αραχνοειδές}} +{{label|fr|arachnides}} +{{label|pt|aracnídeos}} +{{label|ja|クモ綱}} +{{label|it|aracnide}} +{{label|ko|거미강}} +{{label|ur|عنکبات}} +{{label|es|arácnido}} +|comments= +{{comment|ur|حیوانیات میں اِس خاندان کا نام جِس میں مکڑی اور بچھو وغیرہ شامِل ہیں}} + +| rdfs:subClassOf = Animal +}}OntologyClass:Archaea200299578872022-05-05T08:53:47Z{{Class +| labels = +{{label|en|archaea}} +{{label|nl|Archaea (oerbacteriën)}} +{{label|de|Archaeen}} +{{label|el|αρχαία}} +{{label|fr|archées}} +{{label|ja|古細菌}} +{{label|ko|고세균}} +{{label|it|archei}} +{{label|ur|آثار قدیمہ}} +| rdfs:subClassOf = Species +}}OntologyClass:Archbishop20011940578902022-05-05T10:30:31Z{{Class +| labels = +{{label|en|archbishop}} +{{label|de|Erzbischof}} +{{label|nl|aartsbisschop}} +{{label|fr|archevêque}} +{{label|ur|پادریوں کا سردار}} +| rdfs:subClassOf = ChristianBishop +}}OntologyClass:Archeologist2008019553042021-09-11T12:03:35Z{{Class +| labels = +{{label|en|archeologist}} +{{label|de|Archäologe}} +{{label|el|Αρχαιολόγος}} +{{label|es|Arqueólogo}} +{{label|fr|archéologue}} +{{label|ga|seandálaí}} +{{label|nl|archeoloog}} +{{label|pl|archeolog}} +{{label|ja|考古学者}} +{{label|ur|ماہر آثار قدیمہ}} +| rdfs:subClassOf = Person +| owl:equivalentClass = wikidata:Q3621491 +}}OntologyClass:ArcherPlayer20011161578992022-05-05T10:58:56Z{{Class +| labels = + {{label|en|Archer Player}} + {{label|fr|Tireur à l'arc}} + {{label|ur|تیر انداز کھلاڑی}} + {{label|de|Bogenschütze}} + {{label|nl|boogschutter}} +| rdfs:subClassOf = Athlete +}}OntologyClass:Archipelago2009326555292021-09-15T05:11:49Z{{Class +| labels = +{{label|en|archipelago}} +{{label|fr|archipel}} +{{label|de|Archipel}} +{{label|el|αρχιπέλαγος}} +{{label|nl|archipel}} +{{label|es|archipiélago}} +{{label|pt|arquipélago}} +{{label|ja|多島海}} +{{label|ur| +جزیرہ نما}} +| rdfs:subClassOf = NaturalPlace +| owl:equivalentClass = wikidata:Q33837 +}}OntologyClass:Architect200300553062021-09-11T12:04:49Z{{Class +| labels = +{{label|en|architect}} +{{label|ga|uaslathaí}} +{{label|el|αρχιτέκτονας}} +{{label|de|Architekt}} +{{label|fr|architecte}} +{{label|es|arquitecto}} +{{label|ko|건축가}} +{{label|ja|建築士}} +{{label|nl|architect}} +{{label|it|architetto}} +{{label|ur|معمار}} +| rdfs:subClassOf = Person +| owl:equivalentClass = wikidata:Q42973 +}}OntologyClass:ArchitecturalStructure2003253575102022-04-24T11:07:49Zhttp://mappings.dbpedia.org/index.php/OntologyClass:ArchitecturalStructure +{{Class +| labels = +{{label|en|architectural structure}} +{{label|fr|structure architecturale}} +{{label|ga|struchtúr ailtireachta}} +{{label|el|αρχιτεκτονική κατασκευή}} +{{label|nl|bouwsel}} +{{label|de|Bauwerk}} +{{label|ja|構造物}} +{{label|it|struttura architettonica}} +{{label|es|estructura arquitectural}} +{{label|ko|건축 구조}} +{{label|ur| تعمیراتی ڈھانچے}} +| comments = +{{comment|ur|یہ تعمیراتی ڈھانچے مواد سے بنے ہیں۔، آزادانہ ، غیر مستحکم بیرونی تعمیر۔}} +{{comment|en|An architectural structure is a human-made, free-standing, immobile outdoor construction (http://en.wikipedia.org/wiki/Architectural_structure).}} +{{comment|fr|Une structure architecturale est une construction extérieure immobile, autonome et construite par l'homme (http://en.wikipedia.org/wiki/Architectural_structure).}} +{{comment|el|Μια αρχιτεκτονική κατασκευή είναι μια ανθρώπινη κατασκευή, επιδαπέδια, ακίνητη κατασκευή (http://en.wikipedia.org/wiki/Architectural_structure).}} +{{comment|de|Ein Bauwerk ist eine von Menschen errichtete Konstruktion mit ruhendem Kontakt zum Untergrund. Es ist in der Regel für eine langfristige Nutzungsdauer konzipiert (http://de.wikipedia.org/wiki/Bauwerk).}} +| rdfs:subClassOf = owl:Thing +}}OntologyClass:Archive2008406579072022-05-05T11:14:45Z{{Class +| labels = +{{label|en|Archive}} +{{label|de|Archiv}} +{{label|el|αρχείο}} +{{label|nl|Archief}} +{{label|es|archivo}} +{{label|pl|archiwum}} +{{label|ja|アーカイブ}} +{{label|fr|archive}} +{{label|ur|محفوظ شدہ دستاویزات}} + +| rdfs:subClassOf = CollectionOfValuables + +| comments = +{{comment|en|Collection of documents pertaining to a person or organisation.}} +{{comment|ur|کسی شخص یا تنظیم سے متعلق دستاویزات کا مجموع}} +{{comment|fr|Collection de documents appartenant à une personne ou une organisation.}} +{{comment|el|Η συλλογή των εγγράφων που σχετίζονται με ένα πρόσωπο ή οργανισμό.}} +{{comment|nl|Verzameling van documenten rondom een persoon of organisatie.}} +| owl:equivalentClass = wikidata:Q166118 +}}OntologyClass:Area2007910553082021-09-11T12:07:20Z{{Class +| labels = +{{label|en|area}} +{{label|ga|ceantar}} +{{label|nl|gebied}} +{{label|de|Bereich}} +{{label|el|εμβαδόν}} +{{label|ja|面積}} +{{label|fr|aire}} +{{label|ur|رقبہ}} +| comments = +{{comment|en|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)}} +{{comment|ur|کسی چیز کا علاقہ}} +{{comment|fr|Mesure d'une surface.}} +{{comment|el|Εμβαδόν ή έκταση είναι το μέγεθος μέτρησης των επιφανειών.}} +}}OntologyClass:Arena2002753566862022-02-28T10:37:30Z{{Class +| labels = +{{label|en|arena}} +{{label|fr|arène}} +{{label|ur|میدان}} + +| rdfs:subClassOf = ArchitecturalStructure, schema:StadiumOrArena +|owl:equivalentClass = +| comments = +{{comment|en|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)}} +{{comment|fr|Une aréna désigne une enceinte pouvant accueillir des spectacles, des concerts ou des événements sportifs.(https://fr.wikipedia.org/wiki/Arena)}} +}}OntologyClass:Aristocrat2007548555332021-09-15T05:16:50Z{{Class +| labels = +{{label|en|aristocrat}} +{{label|fr|aristocrate}} +{{label|ga|uaslathaí}} +{{label|de|Aristokrat}} +{{label|nl|aristocraat}} +{{label|es|aristócrata}} +{{label|ur|اشرافیہ}} + +{{label|ja|貴種}} + +| rdfs:subClassOf = Person}}OntologyClass:Arrondissement20010271553332021-09-11T18:17:56Z{{Class +| labels = +{{label|en|arrondissement}} +{{label|de|arrondissement}} +{{label|fr|arrondissement}} +{{label|nl|arrondissement}} +{{label|ja|フランスの群}} +{{label|ur|فرانس کا انتظامی ضلع}} +| comments = +{{comment|en|An administrative (France) or lawcourts (Netherlands) body governing a territorial unity on the intermediate level, between local and national level}} +{{comment|ur|ایک انتظامی (فرانس) یا قانون کی عدالتیں (نیدرلینڈز) جو کہ علاقائی وحدت پر مقامی اور قومی سطح کے درمیان حکمرانی کرتی ہیں}} +{{comment|de|Das Wort Arrondissement dient zur Bezeichnung verschiedener Verwaltungsbezirke in Frankreich, Belgien, Kanada und anderen Ländern}} +| rdfs:subClassOf = GovernmentalAdministrativeRegion +| owl:equivalentClass = +}}OntologyClass:Artery200302556162021-09-15T10:08:12Z{{Class +| labels = +{{label|it|arteria}} +{{label|ur|شریان}} +{{label|en|artery}} +{{label|ga|artaire}} +{{label|el|αρτηρία}} +{{label|de|Arterie}} +{{label|fr|artère}} +{{label|ja|動脈}} +{{label|nl|slagader}} +{{label|ko|동맥}} +{{label|pl|tętnica}} +| rdfs:subClassOf = AnatomicalStructure +| owl:equivalentClass = wikidata:Q9655 +}}OntologyClass:Article20010287579182022-05-05T11:31:33Z{{Class +| labels = +{{label|en|article}} +{{label|de|Artikle}} +{{label|nl|artikel}} +{{label|fr|article}} +{{label|ja|記事}} +{{label|ur|جریدے کا نشر پارہ}} +| rdfs:subClassOf = WrittenWork +| owl:equivalentClass = bibo:Article +}}OntologyClass:ArtificialSatellite2009370553372021-09-11T18:25:13Z{{Class +| labels = {{label|en|ArtificialSatellite}} + {{label|ga|satailít shaorga}} + {{label|nl|kunstmatige satelliet}} + {{label|de|künstlicher Satellit}} + {{label|el|τεχνητός δορυφόρος}} + {{label|ja|人工衛星}} + {{label|fr|satellite artificiel}} + {{label|ur|مصنوعی سیارہ}} +| comments = {{comment|en|In the context of spaceflight, an artificial satellite is an artificial object which has been intentionally placed into orbit.}} +{{comment|ur|خلائی پرواز کے تناظر میں ، مصنوعی سیارہ ایک مصنوعی شے ہے جسے جان بوجھ کر مدار میں رکھا گیا ہے}} + + {{comment|de|Satellit (Raumfahrt), ein künstlicher Raumflugkörper, der einen Himmelskörper auf einer festen Umlaufbahn umrundet}} + {{comment|el|Στο πλαίσιο των διαστημικών πτήσεων, ένας τεχνητός δορυφόρος είναι ένα τεχνητό αντικείμενο το οποίο εκ προθέσεως έχει τοποθετηθεί σε τροχιά.}} + {{comment|fr|Un satellite artificiel est un objet placé intentionellement en orbite.}} +| rdfs:subClassOf = Satellite +<!-- | owl:equivalentClass = http://www.ontotext.com/proton/protonext#ArtificialSatellite --> +}}OntologyClass:Artist200303549692021-09-09T11:05:16Z{{Class +| labels = +{{label|en|artist}} +{{label|ga|ealaíontóir}} +{{label|ru|художник}} +{{label|pl|artysta}} +{{label|fr|artiste}} +{{label|da|kunstner}} +{{label|de|Künstler}} +{{label|el|καλλιτέχνης}} +{{label|ko|예술가}} +{{label|ja|芸術家}} +{{label|nl|kunstenaar}} +{{label|be|мастак}} +{{label|it|artista}} +{{label|ur|فنکار}} +| rdfs:subClassOf = Person +| owl:equivalentClass = wikidata:Q483501 +}}OntologyClass:ArtistDiscography2006083579292022-05-05T12:34:12Z{{Class +| labels = +{{label|it|discografia dell'artista}} +{{label|en|artist discography}} +{{label|ga|dioscagrafaíocht an ealaíontóra}} +{{label|nl|artiest discografie}} +{{label|de|Künstler Diskografie}} +{{label|ur|فنکارکاریکارڈ نامہ}} +{{label|el|δισκογραφία καλλιτέχνη}} +{{label|fr|discographie de l'artiste}} +{{label|ko|음반}} +{{label|ja|ディスコグラフィ}} +{{label|fr|discogafía de artista}} +| rdfs:subClassOf = MusicalWork +}}OntologyClass:ArtisticGenre2009707553432021-09-11T18:36:05Z{{Class +|labels= +{{label|en|artistic genre}} +{{label|de|Kunstgattung}} +{{label|nl|kunstsoort}} +{{label|fr|genre artistique}} +{{label|ur|فنکارانہ صنف}} +| comments = {{comment|en|Genres of art, e.g. Pointillist, Modernist}} + {{comment|de|Gattung nennt man in den Kunstwissenschaften die auf das künstlerische Ausdrucksmedium bezogenen Formen der Kunst.}} + {{comment|fr|genre d'art, ex: Pointillisme, Modernisme}} +{{comment|ur|فن کی انواع }} +| rdfs:subClassOf = Genre +| rdfs:comment = Please note, that the two comments (English and German) depart from different definitions +}}OntologyClass:Artwork2005199564422022-02-17T04:38:59Z{{Class +|labels = + {{label|en|artwork}} +{{label|ga|saothar ealaíne}} +{{label|ur|کار ہنر}} + {{label|da|kunstværk}} + {{label|de|Kunstwerk}} + {{label|nl|kunstwerk}} + {{label|el|έργο τέχνης}} + {{label|it|opera d'arte}} + {{label|ja|作品}} + {{label|fr|œuvre d'art}} + {{label|es|obra de arte}} + {{label|ko|작품}} +| comments = +{{comment|en|A work of art, artwork, art piece, or art object is an aesthetic item or artistic creation.}} +{{comment|ur|فن کا کام، فَنی پیس، یا فَنی آبجیکٹ ایک جمالیاتی شے یا فنکارانہ تخلیق ہے۔}} +| rdfs:subClassOf = Work +}}OntologyClass:Asteroid2004232555372021-09-15T05:21:36Z{{Class +| labels = +{{label|it|asteroide}} +{{label|de|Asteroid}} +{{label|en|asteroid}} +{{label|ga|astaróideach}} +{{label|el|αστεροειδής}} +{{label|pt|asteróide}} +{{label|es|asteroide}} +{{label|fr|astéroïde}} +{{label|ja|小惑星}} +{{label|ur|کشودرگرہ}} +{{label|nl|asteroïde}} +{{label|ko|소행성}} +| rdfs:subClassOf = CelestialBody +| rdfs:seeAlso = Planet +| owl:equivalentClass = wikidata:Q3863 +}}OntologyClass:Astronaut200304553502021-09-11T18:44:38Z{{Class + + +| labels = {{label|it|astronauta}} +{{label|nl|ruimtevaarder}} +{{label|ja|宇宙飛行士}} +{{label|ko|우주인}} +{{label|el|αστροναύτης}} +{{label|es|astronauta}} +{{label|ur|خلا باز}} +{{label|pt|astronauta}} +{{label|fr|astronaute}} +{{label|de|Astronaut}} +{{label|en|astronaut}} +{{label|ga|spásaire}} + +| rdfs:subClassOf = Person +| specificProperties = {{SpecificProperty | ontologyProperty = timeInSpace | unit = minute }} +| owl:equivalentClass = wikidata:Q11631 +}}OntologyClass:Athlete200305550752021-09-09T15:02:51Z{{Class +| labels = +{{label|en|athlete}} +{{label|ga|lúthchleasaí}} +{{label|nl|atleet}} +{{label|de|Athlet}} +{{label|el|αθλητής}} +{{label|fr|athlète}} +{{label|ja|アスリート}} +{{label|it|atleta}} +{{label|ko|운동 선수}} +{{label|ur|کھلاڑی}} +| rdfs:subClassOf = Person +}}OntologyClass:Athletics2007844579362022-05-05T12:42:10Z{{Class +| labels = +{{label|en|athletics}} +{{label|ga|lúthchleasaíocht}} +{{label|es|atletismo}} +{{label|nl|atletiek}} +{{label|fr|athlétisme}} +{{label|de|Leichtathletik}} +{{label|el|αθλητικά}} +{{label|ja|陸上競技}} +{{label|ur|کھیل کے متعلق}} +| rdfs:subClassOf = Sport +}}OntologyClass:AthleticsPlayer2009554554052021-09-12T06:19:10Z{{Class +| labels = + {{label|en|athletics player}} +{{label|ga|lúthchleasaí}} + {{label|nl|atleet}} + {{label|de|Athlet}} + {{label|it|giocatore di atletica leggera}} + {{label|ja|陸上競技選手}} +{{label|ur|پھُرتیلاکھلاڑی}} +| rdfs:subClassOf = Athlete +}}OntologyClass:Atoll2002575579662022-05-06T02:17:40Z{{Class +| labels = +{{label|en|atoll}} +{{label|de|Atoll}} +{{label|el|ατόλη}} +{{label|fr|atoll}} +{{label|ja|環礁}} +{{label|nl|atol}} +{{label|ko|환초}} +{{label|it|atollo}} +{{label|ur|اڈل}} + +|comments= +{{comment|ur|مرجانی چٹانوں سے بنا ہواجزیرہ}} +| rdfs:subClassOf = Island +}}OntologyClass:Attack20011148555422021-09-15T05:28:14Z{{Class +| labels = +{{label|en|attack}} +{{label|de|Angriff, Anschlag}} +{{label|fr|attaque, attentat}} +{{label|nl|aanval, aanslag}} +{{label|ur|حملہ}} + +{{label|ja|攻撃}} +| comments = +{{comment|en|An Attack is not necessarily part of a Military Conflict}} +{{comment|en|حملہ لازمی طور پر فوجی تصادم کا حصہ نہیں ہے۔}} + +| rdfs:subClassOf = SocietalEvent +}}OntologyClass:AustralianFootballLeague2002281554012021-09-12T05:51:20Z{{Class +| labels = +{{label|it|lega di football australiano}} +{{label|en|australian football league}} +{{label|de|Australian Football League}} +{{label|es|liga de fútbol australiana}} +{{label|el|αυστραλιανό πρωτάθλημα ποδοσφαίρου}} +{{label|fr|australian football league}} +{{label|pt|liga de futebol australiano}} +{{label|ja|オーストラリアン・フットボール・リーグ}} +{{label|ko|오스트레일리안 풋볼 리그}} +{{label|nl|australian football competitie}} +{{label|ur|آسٹریلوی فٹ بال کی انجمن}} +| comments = +{{comment|en|A group of sports teams that compete against each other in australian football.}} +{{comment|ur|کھیلوں کی ٹیموں کا ایک گروپ جو آسٹریلین فٹ بال میں ایک دوسرے کے خلاف مقابلہ کرتا ہے}} +{{comment|el|Μια ομάδα αθλητικών ομάδων που ανταγωνίζονται μεταξύ τους σε αυστραλιανό ποδόσφαιρο.}} +| rdfs:subClassOf = SportsLeague +}}OntologyClass:AustralianFootballTeam2008001556242021-09-15T10:21:40Z{{Class +| labels = +{{label|el|ποδοσφαιρική ομάδα αυστραλίας}} +{{label|it|squadra di football australiano}} +{{label|en|australian football Team}} +{{label|ur|آسٹریلوی فٹ بال ٹیم}} +{{label|nl|Australian football team}} +{{label|de|Australian Football Team}} +{{label|fr|Équipe de Football Australien}} +{{label|ja|オーストラリアンフットボールチーム}} +| rdfs:subClassOf = SportsTeam +}}OntologyClass:AustralianRulesFootballPlayer2004156555442021-09-15T05:30:14Z{{Class +| labels = + {{label|en|Australian rules football player}} + {{label|nl|Australian football-speler}} + {{label|de|Australian Rules Football-Spieler}} + {{label|el|αυστραλιανοί κανόνες ποδοσφαιριστή}} + {{label|ja|オージーフットボール選手}} + {{label|ko|오스트레일리아식 풋볼 선수}} + {{label|it|giocatore di football australiano}} + {{label|ur|آسٹریلوی رولز فٹ بال پلیئر}} + +| rdfs:subClassOf = Athlete +| owl:equivalentClass = wikidata:Q13414980 +}}OntologyClass:AutoRacingLeague2002162554022021-09-12T05:59:55Z{{Class +| rdfs:label@en = auto racing league +| rdfs:label@ga = sraith rásaíochta charanna +| rdfs:label@el = πρωτάθλημα αγώνων αυτοκινήτων +| rdfs:label@fr = la ligue de course automobile +| rdfs:label@ja =自動車競技リーグ +| rdfs:label@nl = auto race competitie +| rdfs:label@de = Auto Racing League +| rdfs:label@ko =자동차 경주 대회 +| labels = {{label|it|lega automobilistica}} +{{label|ur|گاڑیوں کی ریسوں کی انجمن}} + +|comments= +{{comment|ur|کھیلوں کی ٹیموں یا انفرادی کھلاڑیوں کا ایک گروپ جو آٹو ریسنگ میں ایک دوسرے کے خلاف مقابلہ کرتے ہیں}} + +| rdfs:comment@en = a group of sports teams or individual athletes that compete against each other in auto racing +| rdfs:comment@el = μια ομάδα αθλητικών ομάδων ή μεμονωμένων αθλητών που ανταγωνίζονται μεταξύ τους σε αγώνες αυτοκινήτων +| rdfs:subClassOf = SportsLeague +}}OntologyClass:Automobile200306556262021-09-15T10:23:35Z +{{Class +| labels = +{{label|it|automobile}} +{{label|en|automobile}} +{{label|ur|گاڑی}} +{{label|ga|gluaisteán}} +{{label|be|аўтамабіль}} +{{label|ru|автомобиль}} +{{label|pl|samochód}} +{{label|de|Automobil}} +{{label|el|αυτοκίνητο}} +{{label|fr|automobile}} +{{label|pt|automovel}} +{{label|sl|avtomobil}} +{{label|es|automóvil}} +{{label|ja|自動車}} +{{label|nl|automobiel}} +{{label|ko|자동차}} +| rdfs:subClassOf = MeanOfTransportation, schema:Product +| owl:equivalentClass = +| specificProperties = {{SpecificProperty | ontologyProperty = fuelCapacity | unit = litre }} + {{SpecificProperty | ontologyProperty = wheelbase | unit = millimetre }} +}}OntologyClass:AutomobileEngine200307579562022-05-06T01:56:45Z{{Class +| labels = +{{label|it|motore d'automobile}} +{{label|en|automobile engine}} +{{label|ga|inneall gluaisteáin}} +{{label|de|Fahrzeugmotor}} +{{label|el|κινητήρας αυτοκινήτου}} +{{label|fr|moteur d'automobile}} +{{label|ko|자동차 엔진 }} +{{label|pt|motor de automóvel}} +{{label|ja|内燃機関}} +{{label|nl|automotor}} +{{label|ur|موٹر گاڑی کا انجن}} + +| rdfs:subClassOf = Engine +}}OntologyClass:Award200308552142021-09-10T18:10:56Z{{Class +| labels = +{{label|it|premio}} +{{label|de|Auszeichnung}} +{{label|en|award}} +{{label|ga|gradam}} +{{label|el|βραβείο}} +{{label|fr|récompense}} +{{label|nl|prijs}} +{{label|pl|nagroda}} +{{label|sl|nagrada}} +{{label|ko|상}} +{{label|ja|賞}} +{{label|ur|انعام}} +| rdfs:subClassOf = owl:Thing +| owl:equivalentClass = wikidata:Q618779 +}}OntologyClass:BackScene2007754577872022-05-01T11:10:36Z{{Class +| labels = + {{label|en|back scene}} + {{label|de|Backround-Chor}} + {{label|nl|achtergrond koor}} + {{label|fr|Arrière-scène}} + {{label|ur|پس_منظر}} +| comments = + {{comment|en|Composer, producer, and backstage people.}} +{{comment|ur| نَغمہ سَاز، پیش کرنے والا، اور پس پردہ لوگ}} + {{comment|fr|Tout compositeur de texte, producteur, arrangeur, ingénieur et personnel d'arrière scène.}} +| rdfs:subClassOf = MusicalArtist +}}OntologyClass:Bacteria200309587392022-05-16T18:51:59Z{{Class +| labels = +{{label|it|batterio}} +{{label|en|bacteria}} +{{label|ga|baictéir}} +{{label|el|βακτήρια}} +{{label|de|bakterium}} +{{label|es|bacteria}} +{{label|fr|bactérie}} +{{label|ja|真正細菌}} +{{label|nl|bacterie}} +{{label|ur|جراثیم}} + +{{label|ko|세균}} +| rdfs:subClassOf = Species +}}OntologyClass:BadmintonPlayer200310554072021-09-12T06:25:16Z{{Class +| labels = + {{label|it|giocatore di badminton}} + {{label|en|badminton player}} +{{label|ga|imreoir badmantain}} + {{label|de|Badmintonspieler}} + {{label|el|παίχτης του μπάντμιντον}} + {{label|fr|joueur de badminton}} + {{label|nl|badmintonspeler}} + {{label|pt|jogador de badminton}} + {{label|ko|배드민턴 선수}} +{{label|ur|بیڈمنٹن کا کھلاڑی}} + {{label|ja|バドミントン選手}} + +| rdfs:subClassOf = Athlete +}}OntologyClass:Band200311573462022-03-31T11:28:03Z{{Class +| labels = + {{label|en|Band}} + {{label|ga|banna ceoil}} + {{label|nl|band}} + {{label|de|Musikgruppe}} + {{label|fr|groupe de musique}} + {{label|el|μουσικό συγκρότημα}} + {{label|pt|banda}} + {{label|es|banda}} + {{label|ko|음악 그룹}} + {{label|ja|バンド_(音楽)}} + {{label|it|gruppo musicale}} + {{label|ur|گانے والوں کا گروہ}} +| rdfs:subClassOf = Group, schema:MusicGroup, dul:SocialPerson +| owl:equivalentClass = wikidata:Q215380 +}}OntologyClass:Bank20010290577972022-05-01T12:24:45Z{{Class +| labels = + {{label|en|bank}} + {{label|nl|bank}} + {{label|de|Bank}} + {{label|fr|banque}} + {{label|el|Τράπεζα}} + {{label|pt|banco}} + {{label|es|banco}} + {{label|it|banca}} +{{label|ur|بینک +}} + {{label|ja|銀行}} + +| rdfs:subClassOf = Company +| owl:equivalentClass = schema:BankOrCreditUnion +| comments = {{comment|en|a company which main services are banking or financial services.}} +{{comment|ur|ایک تِجارتی اِدارہ جس کی اہم خدمات بینکنگ یا مالیاتی خدمات ہیں}} +}}OntologyClass:Baronet2008886554092021-09-12T06:27:45Z{{Class +| labels = +{{label|en|baronet}} +{{label|nl|baronet}} +{{label|de|Baronet}} +{{label|it|baronetto}} +{{label|ja|準男爵}} +{{label|ur|چھوٹا نواب}} + +| rdfs:subClassOf = BritishRoyalty +}}OntologyClass:BaseballLeague2002163561052021-11-05T11:12:55Z{{Class +| labels = +{{label|en|baseball league}} +{{label|ga|sraith daorchluiche}} +{{label|es|liga de béisbol}} +{{label|de|Baseball-Liga}} +{{label|el|πρωτάθλημα μπέιζμπολ}} +{{label|fr|ligue de baseball}} +{{label|ja|野球リーグ}} +{{label|it|lega di baseball}} +{{label|nl|honkbal competitie}} +{{label|ko|야구 리그}} +{{label|ur|بیس بال کی انجمن}} +| rdfs:subClassOf = SportsLeague +| comments = +{{comment|en|a group of sports teams that compete against each other in Baseball.}} +{{comment|el|ένα σύνολο από ομάδες μπέιζμπολ οι οποίες συναγωνίζονται μεταξύ τους.}} +{{comment|ur|کھیلوں کی ٹیموں کا ایک گروہ جو بیس بال میں ایک دوسرے کے خلاف مقابلہ کرتا ہے۔.}} +| owl:equivalentClass = wikidata:Q6631808 +}}OntologyClass:BaseballPlayer200312555542021-09-15T06:32:51Z{{Class +| labels= +{{label|en|baseball player}} +{{label|ga|imreoir daorchluiche}} +{{label|de|Baseballspieler}} +{{label|el|παίκτης μπέιζμπολ}} +{{label|fr|joueur de baseball}} +{{label|it|giocatore di baseball}} +{{label|ja|野球選手}} +{{label|ko|야구 선수}} +{{label|pt|jogador de basebol}} +{{label|ur|بیس بال کا کھلاڑی}} + +{{label|nl|honkballer}} +| rdfs:subClassOf = Athlete + +| comments = +{{comment|el|Ο αθλητής (άνδρας ή γυναίκα) που συμμετέχει σε μία ομάδα μπέιζμπολ.}} +| owl:equivalentClass = wikidata:Q10871364 +}}OntologyClass:BaseballSeason2008297554112021-09-12T06:30:57Z{{Class +| labels = +{{label|en|baseball season}} +{{label|ga|séasúr daorchluiche}} +{{label|nl|honkbalseizoen}} +{{label|de|Baseballsaison}} +{{label|fr|saison de baseball}} +{{label|el|σεζόν του μπέιζμπολ}} +{{label|ur|بیس بال کا موسم}} +| rdfs:subClassOf = SportsTeamSeason +}}OntologyClass:BaseballTeam2005760578082022-05-01T15:02:35Z{{Class +| labels = +{{label|en|baseball team}} +{{label|ga|foireann daorchluiche}} +{{label|de|Baseballmannschaft}} +{{label|el|ομάδα μπέιζμπολ}} +{{label|fr|équipe de baseball}} +{{label|en|baseball team}} +{{label|it|squadra di baseball}} +{{label|ja|野球チーム}} +{{label|nl|honkbal team}} +{{label|ko|야구팀}} +{{label|ur|بیس بال کی جماعت}} +| rdfs:subClassOf = SportsTeam +| comments = +{{comment|el| Ένας αριθμός από άνδρες ή γυναίκες που αποτελούν ένα διακριτό σύνολο με συγκεκριμένους στόχους σχετικά με το άθλημα του μπέιζμπολ.}} + +}}OntologyClass:BasketballLeague2002164583482022-05-14T05:56:25Z{{Class +| rdfs:label@en = basketball league + +| rdfs:label@ga = sraith cispheile +| rdfs:label@de = Basketball-Liga +| rdfs:label@es = liga de baloncesto +| rdfs:label@el = Ομοσπονδία Καλαθοσφαίρισης +| rdfs:label@fr = ligue de basketball +| rdfs:label@ja = バスケットボールリーグ +| rdfs:label@nl = basketbal competitie +| rdfs:label@ko = 농구 리그 +| labels = {{label|it|lega di pallacanestro}} +| rdfs:comment@en = a group of sports teams that compete against each other in Basketball +| comments = {{comment|ur|کھیلوں کی ٹیموں کا ایک گروپ جو باسکٹ بال میں ایک دوسرے سے مقابلہ کرتا ہے}} + +| rdfs:subClassOf = SportsLeague +|labels = + + +{{label|ur|باسکٹ بال کی انجمن}} +}}OntologyClass:BasketballPlayer200313578182022-05-01T15:22:32Z{{Class +| labels = +{{label|en|basketball player}} +{{label|ga|imreoir cispheile}} +{{label|de|Basketballspieler}} +{{label|el|παίκτης καλαθοσφαίρισης}} +{{label|es|Basquetbolista}} +{{label|fr|joueur de basketball}} +{{label|ja|バスケットボール選手}} +{{label|it|giocatore di pallacanestro}} +{{label|ko|농구 선수}} +{{label|nl|basketbal speler}} +{{label|ur|باسکٹ بال کھلاڑی}} +| rdfs:subClassOf = Athlete +|comments = +{{comment|el|Ένας αθλητής (άνδρας ή γυναίκα) που ασχολείται με το άθλημα της καλαθοσφαίρισης.}} +| owl:equivalentClass = wikidata:Q3665646 +}}OntologyClass:BasketballTeam2002750550432021-09-09T13:36:20Z{{Class +| labels = +{{label|it|squadra di pallacanestro}} +{{label|el|Κουτί πληροφοριών συλλόγου καλαθοσφαίρισης}} +{{label|nl|basketbalteam}} +{{label|en|basketball team}} +{{label|ga|foireann cispheile}} +{{label|fr|équipe de basketball}} +{{label|pt|time de basquete}} +{{label|de|Basketballmannschaft}} +{{label|ja|バスケットボールチーム}} +{{label|ko| 농구 팀 }} +{{label|ur|باسکٹ بال کی جماعت}} +| rdfs:subClassOf = SportsTeam +}}OntologyClass:Battery20011978578222022-05-01T15:32:01Z{{Class +| labels = {{label|it|batteria}} +{{label|nl|batterij}} +{{label|es|batería}} +{{label|pt|bateria}} + +{{label|ur|برقی طاقت پیدا کرنے کا آلہ}} + +{{label|fr|pile}} +{{label|de|Batterie}} +{{label|en|battery}} +| comments = +{{comment|en|The battery (type) used as energy source in vehicles.}} +{{comment|en|بیٹری (قسم) گاڑیوں میں توانائی کے منبع کے طور پر استعمال ہوتی ہے۔.}} + +| rdfs:domain = MeanOfTransportation +| rdfs:subClassOf = Device +| owl:equivalentClass = wikidata:Q267298 +}}OntologyClass:Bay20011293553612021-09-11T19:15:46Z{{Class +|labels = +{{label|en|bay}} +{{label|de|Bucht}} +{{label|fr|baie}} +{{label|nl|baai}} +{{label|pt|baía}} +{{label|ja|湾}} +{{label|ur|خلیج}} + +| rdfs:subClassOf = BodyOfWater +}}OntologyClass:Beach20010445550452021-09-09T13:44:57Z{{Class +|labels = + {{label|en|beach}} + {{label|nl|strand}} + {{label|da|strand}} + {{label|de|Strand}} + {{label|es|playa}} + {{label|fr|plage}} + {{label|ca|platja}} + {{label|pt|praia}} + {{label|ja|砂浜}} + {{label|ur|ساحل_سمندر}} + +|comments = +{{comment|en|The shore of a body of water, especially when sandy or pebbly.}} +{{comment|es|Ribera del mar o de un río grande, formada de arenales en superficie casi plana.}} +{{comment|ur|پانی کے جسم کا ساحل ، خاص طور پر جب ریت بھرا یا کنکری}} +| rdfs:subClassOf = NaturalPlace +}}OntologyClass:BeachVolleyballPlayer2006114578272022-05-01T17:57:29Z{{Class +| labels = +{{label|en|beach volleyball player}} +{{label|nl|beachvolleybal speler}} +{{label|de|Beachvolleyballspieler}} +{{label|el|παίκτης του beach volley}} +{{label|it|giocatore di beach volley}} +{{label|ja|ビーチバレー選手}} +{{label|ur|ساحل سمندروالی بال کاکھلاڑی}} + +{{label|ko|비치발리볼 선수}} +{{label|fr|joueur de volleyball de plage}} +| rdfs:subClassOf = VolleyballPlayer +|comments = +{{comment|el|Ένα άτομο (άνδρας ή γυναίκα) που ασχολείται με το άθλημα του μπίτς βόλλεϋ.}} +}}OntologyClass:BeautyQueen2006179566512022-02-28T09:18:51Z{{Class +| labels = +{{label|en|beauty queen}} +{{label|fr|reine de beauté}} +{{label|ga|spéirbhean}} +{{label|nl|schoonheidskoningin}} +{{label|de|Schönheitskönigin}} +{{label|el|βασίλισσα ομορφιάς}} +{{label|it|reginetta di bellezza}} +{{label|ja|ミス}} +{{label|ko|뷰티퀸}} +{{label|ur|ملکہ حسن}} +| rdfs:subClassOf = Person +| comments = +{{comment|en|A beauty pageant titleholder}} +{{comment|ur| خوبصورتی مقابلےکی خطاب یافتہ}} +{{comment|el|Τίτλος που αποδίδεται σε μία γυναίκα, τις περισσότερες φορές μετά από διαγωνισμό.}} +}}OntologyClass:Beer2006641550492021-09-09T13:58:06Z{{Class +|labels= + {{label|en|beer}} +{{label|ga|beoir}} + {{label|da|øl}} + {{label|de|Bier}} + {{label|el|μπύρα}} + {{label|it|birra}} + {{label|nl|bier}} + {{label|fr|bière}} + {{label|es|cerveza}} + {{label|ja|ビール}} + {{label|ko|맥주}} + {{label|pl|piwo}} + {{label|ur|ہلکی شراب}} +| rdfs:subClassOf = Beverage +| owl:equivalentClass = wikidata:Q44 +}}OntologyClass:Beverage200314550512021-09-09T14:01:58Z{{Class +| labels = +{{label|en|beverage}} +{{label|ga|deoch}} +{{label|da|drik}} +{{label|de|Getränk}} +{{label|el|αναψυκτικό}} +{{label|es|bebida}} +{{label|fr|boisson}} +{{label|it|bevanda}} +{{label|ja|飲料}} +{{label|ko|음료}} +{{label|nl|drank}} +{{label|ur|مشروب}} +| rdfs:subClassOf = Food +| comments = +{{comment|en|A drink, or beverage, is a liquid which is specifically prepared for human consumption.}} +{{comment|de|Ein Getränk ist eine zum Trinken zubereitete Flüssigkeit. Getränke werden entweder zum Stillen von Durst und damit zur Wasseraufnahme des Körpers, als Nahrungsmittel oder auch als reine Genussmittel aufgenommen.}} +{{comment|el| Ένα πόσιμο υγρό ρόφημα, συνήθως με μηδενική ή ελάχιστη περιεκτικότητα αλκοόλης.}} +{{comment|ur|یک مشروب مائع ہے جو خاص طور پر انسانی استعمال کے لیے تیار کیا جاتا ہے۔}} +}}OntologyClass:Biathlete20011159578342022-05-01T18:33:03Z{{Class +| labels = +{{label|en|Biathlete}} +{{label|ur|برف پر پھسلنے میں جِسمانی ورزِشوں کا مُقابلہ کا کھلاڑی}} +{{label|nl|Biatleet}} +{{label|de|Biathlete}} +{{label|fr|Biathlète}} +{{label|ja|バイアスロン選手}} +| rdfs:subClassOf = WinterSportPlayer +}}OntologyClass:BiologicalDatabase2003134578362022-05-01T18:40:48Z{{Class +| labels = +{{label|en|Biological database}} +{{label|de|Biologische Datenbank}} +{{label|el|Βάση Δεδομένων Βιολογικών Χαρακτηριστικών}} +{{label|fr|Base de données biologiques}} +{{label|ja|バイオデータベース}} +{{label|it|database biologico}} +{{label|pt|Banco de dados biológico}} +{{label|nl|biologische databank}} +{{label|ko|생물학 데이터베이스}} +{{label|ur|حیاتیاتی ریکارڈرز_پر_مبنی_ایک_فائل}} + +| rdfs:subClassOf = Database +| comments = +{{comment|el|Διάφορες βάσεις δεδομένων οι οποίες περιέχουν πληροφορίες που ταυτοποιούν τα βασικά βιολογικά χαρακτηριστικά των οργανισμών. Οι πληροφορίες αυτές συγκροτούνται σε σύνολα βιβλιοθηκών των βασικών δομών των κυττάρων των οργανισμών, όπως οι βιλβιοθήκες νουκλεϊνικών οξέων (genomics) και πρωτεϊνών (proteomics).}} +}}OntologyClass:Biologist20011117555612021-09-15T08:07:27Z{{Class +| labels = +{{label|en|biologist}} +{{label|de|Biologe}} +{{label|nl|bioloog}} +{{label|ur|ماہر حیاتیات}} + + +{{label|ja|生物学者}} +{{label|fr|biologiste}} +| rdfs:subClassOf = Scientist +}}OntologyClass:Biomolecule2005026551492021-09-10T09:49:36Z{{Class +| labels = + {{label|en|Biomolecule}} + {{label|nl|Biomolecuul}} + {{label|de|Biomolekül}} + {{label|el|βιομόριο}} + {{label|fr|biomolécule}} + {{label|it|biomolecola}} + {{label|ja|生体物質}} + {{label|ko|생체 분자}} + {{label|ur|حیاتیاتی مرکبات}} +| comments = + {{comment|en|equivalent to [http://ccdb.ucsd.edu/NIF/BIRNLex-OBO-UBO.owl#birnlex_22].}} + {{comment|nl|Een molecuul wat van nature voorkomt in een organisme en gevormd kan worden door organismen.}} + {{comment|el|Κάθε μόριο που παράγεται σε έναν ζωντανό οργανισμό. Συνήθως μεγαλομοριακές ενώσεις που χρησιμεύουν στην δομή και στο μεταβολισμό του κυττάρου. Πρωτεΐνες, νουκλεϊνικά οξέα, υδατάνθρακες και λιπίδια.}} + {{comment|ur| ایسے پیچدہ نامیاتی مالیکیولز جو زندگی کی بنیاد ہیں یعنی وہ زندہ اجسام کو تعمیر کرنے ، ان کو نشوونما کرنے اور برقرار رکھنے کے لیے ضروری ہوتے ہیں}} +| rdfs:subClassOf = owl:Thing +| owl:equivalentClass = wikidata:Q206229 +}}OntologyClass:Bird200315550612021-09-09T14:23:56Z{{Class +| labels = +{{label|en|bird}} +{{label|ga|éan}} +{{label|el|πτηνό}} +{{label|da|fugl}} +{{label|de|Vogel}} +{{label|fr|oiseau}} +{{label|ko|새}} +{{label|ja|鳥類}} +{{label|nl|vogel}} +{{label|it|uccello}} +{{label|es|pájaro}} +{{label|ur|پرندہ}} +| rdfs:subClassOf = Animal}}OntologyClass:Blazon2006781558182021-09-17T20:25:55Z{{Class +| labels = + {{label|en|Blazon}} +{{label|ur|آب و تاب}} + + {{label|fr|Blason}} + {{label|nl|blazoen (wapenschild)}} + {{label|el|οικόσημο}} + {{label|de|Wappen}} + {{label|ja|紋章記述}} + +| rdfs:subClassOf = owl:Thing +}}OntologyClass:BloodVessel20011521553822021-09-11T19:38:46Z{{Class +| labels = +{{label|en|blood vessel}} +{{label|nl|bloedvat}} +{{label|fr|vaisseau sanguin}} +{{label|ur|خون کی شریان}} + +| rdfs:comment = Blood vessel to be distinguished from Vein +| rdfs:subClassOf = AnatomicalStructure +}}OntologyClass:BoardGame2006547551662021-09-10T16:27:57Z{{Class +| labels = +{{label|da|brætspil}} +{{label|de|Brettspiel}} +{{label|en|board game}} +{{label|el|επιτραπέζιο παιχνίδι}} +{{label|nl|bordspel}} +{{label|fr|jeu de société}} +{{label|it|gioco da tavolo}} +{{label|ja|ボードゲーム}} +{{label|ko|보드 게임}} +{{label|es|juego de mesa}} +{{label|ur|بورڈ کھیل}} +| rdfs:subClassOf = Game +| owl:equivalentClass = wikidata:Q131436 +|comments = +{{comment|en|come from http://en.wikipedia.org/wiki/Category:Board_games}} +{{comment|it|Un gioco da tavolo è un gioco che richiede una ben definita superficie di gioco, che viene detta di solito tabellone o plancia.<ref>https://it.wikipedia.org/wiki/Gioco_da_tavolo</ref>}} +{{comment|ur|ایک بورڈ گیم ایک ایسا کھیل ہے جس کے لیے ایک اچھی طرح سے متعین کردہ سطح کی ضرورت ہوتی ہے ، جسے عام طور پر ایک بورڈ کہا جاتا ہے۔}} +}} + +== References == +<references />OntologyClass:BobsleighAthlete20011134561132021-11-05T11:38:45Z{{Class +| labels = +{{label|en|BobsleighAthlete}} +{{label|ur|بوبسلیگ کھلاڑی}} + +{{label|nl|bobsleeër}} +{{label|de|Bobsportler}} +| rdfs:subClassOf = WinterSportPlayer +}}OntologyClass:BodyOfWater200316553632021-09-11T19:19:19Z{{Class +|labels = +{{label|en|body of water}} +{{label|nl|watervlakte}} +{{label|de|Gewässer}} +{{label|el|ύδατα}} +{{label|es|Cuerpo de agua}} +{{label|fr|étendue d'eau}} +{{label|it|distesa d'acqua}} +{{label|pt|extensão d’água}} +{{label|ja|水域}} +{{label|ko|수역}} +{{label|ur|اجسامِ آب}} + +|comments = +{{comment|el|Συγκεντρωμένες, συνήθως μεγάλες ποσότητες νερού (π.χ. ωκεανοί) που βρίσκονται στη Γη ή σε οποιονδήποτε άλλο πλανήτη. Ο όρος χρησιμοποιείται και για υδάτινους σχηματισμούς όπου υπάρχει κίνηση του νερού, όπως ποταμοί, ρεύματα ή κανάλια.}} +{{comment|ur|مرکوز ، عام طور پر پانی کی بڑی مقدار (جیسے سمندر) جو زمین یا کسی دوسرے سیارے پر پائے جاتے ہیں۔ یہ اصطلاح آبی شکلوں کے لیے بھی استعمال ہوتی ہے جہاں پانی کی نقل و حرکت ہوتی ہے ، جیسے دریا ، نہریں یا نہریں}} + +| rdfs:subClassOf = NaturalPlace +| owl:equivalentClass = schema:BodyOfWater +}}OntologyClass:Bodybuilder2007327551722021-09-10T16:40:25Z{{Class +| labels = +{{label|en|bodybuilder}} +{{label|de|Bodybuilder}} +{{label|it|culturista}} +{{label|nl|bodybuilder}} +{{label|ko|보디빌더}} +{{label|fr|culturiste}} +{{label|ur|تن ساز}} +| rdfs:subClassOf = Athlete +| owl:equivalentClass = wikidata:Q15982795 +}}OntologyClass:Bone200317555672021-09-15T08:12:25Z{{Class +| labels = +{{label|en|bone}} +{{label|ga|cnámh}} +{{label|de|Knochen}} +{{label|el|οστό}} +{{label|fr|os}} +{{label|it|osso}} +{{label|ur|ہڈی}} + +{{label|ja|骨}} +{{label|pt|osso}} +{{label|nl|bot}} +{{label|es|hueso}} +{{label|ko|뼈}} +| rdfs:subClassOf = AnatomicalStructure +| comments = +{{comment|el|Η βασική μονάδα του συστήματος στήριξης των σπονδυλωτών οργανισμών.}} +| owl:equivalentClass = wikidata:Q265868 +}}OntologyClass:Book200318568122022-02-28T22:27:26Z{{Class +| labels = +{{label|en|book}} +{{label|bn|বই}} +{{label|ca|llibre}} +{{label|da|bog}} +{{label|de|Buch}} +{{label|el|βιβλίο}} +{{label|fr|livre}} +{{label|ga|leabhar}} +{{label|it|libro}} +{{label|ja|本}} +{{label|ko|책}} +{{label|nl|boek}} +{{label|pl|książka}} +{{label|ru|книга}} +{{label|ur|کتاب}} + +| rdfs:subClassOf = WrittenWork +| owl:equivalentClass = schema:Book, bibo:Book, wikidata:Q571 +}} + +{{DatatypeProperty +| labels = +{{label|en|name}} +{{label|fr|nom}} +{{label|ru|название}} +| comments = +| rdfs:range = xsd:string +}}OntologyClass:BowlingLeague2002165551752021-09-10T16:54:12Z{{Class +| labels = +{{label|en|bowling league}} +{{label|ga|sraith babhlála}} +{{label|de|Bowling-Liga}} +{{label|es|liga de bolos}} +{{label|el|πρωτάθλημα μπόουλινγκ}} +{{label|fr|ligue de bowling}} +{{label|it|lega di bowling}} +{{label|ja|ボーリングリーグ}} +{{label|nl|bowling competitie}} +{{label|ko|볼링 리그 }} +{{label|ur|بالنگ_ٹیموں_کی_انجمن}} +| rdfs:subClassOf = SportsLeague +|comments = +{{comment|en|a group of sports teams or players that compete against each other in Bowling}} +{{comment|el|Μία διοργάνωση ομάδες ανθρώπων ή μεμονομένα άτομα συναγωνίζονται στο άθλημα του μπόουλινγκ, συνήθως με ένα έπαθλο στους πρωταθλητές.}} +{{comment|ur|کھیلوں کی ٹیموں یا کھلاڑیوں کا ایک گروہ جو بولنگ میں ایک دوسرے کے خلاف مقابلہ کرتے ہیں۔}} +}}OntologyClass:Boxer200319558242021-09-17T20:43:43Z{{Class +| labels = + {{label|it|pugile}} + {{label|en|boxer}} +{{label|ga|dornálaí}} + {{label|de|Boxer}} + {{label|el|πυγμάχος}} + {{label|fr|boxeur}} + {{label|pt|boxeador}} + {{label|ko|권투 선수}} + {{label|ja|ボクサー}} + {{label|nl|bokser}} +{{label|ur|مکے باز}} +| rdfs:subClassOf = Athlete +}}OntologyClass:BoxingLeague2002166558682021-09-17T21:58:06Z{{Class +| labels = +{{label|en|boxing league}} +{{label|ga|sraith dornálaíochta}} +{{label|de|Box-Liga}} +{{label|es|liga de boxeo}} +{{label|el|πρωτάθλημα πυγμαχίας}} +{{label|fr|ligue de boxe}} +{{label|ja|ボクシングリーグ}} +{{label|it|lega di pugilato}} +{{label|nl|box competitie}} +{{label|ko|권투 리그}} +{{label|ur|مکے بازی کھیل کی انجمن}} + +| rdfs:subClassOf = SportsLeague +| comments = +{{comment|en|A group of sports teams or fighters that compete against each other in Boxing}} +{{comment|ur|کھیلوں کی ٹیموں یا جنگجوؤں کا ایک گروپ جو مکے بازی میں ایک دوسرے کے خلاف مقابلہ کرتے ہیں۔}} +{{comment|el| Μία διοργάνωση στην οποία μεμονωμένοι πυγμάχοι είτε ομάδες πυγμάχων συναγωνίζονται μεταξύ τους με σκοπό την νίκη.}} +}}OntologyClass:Brain200320578542022-05-02T12:19:10Z{{Class +| labels = +{{label|en|brain}} +{{label|ga|inchinn}} +{{label|da|hjerne}} +{{label|de|Gehirn}} +{{label|el|εγκέφαλος}} +{{label|es|cerebro}} +{{label|it|cervello}} +{{label|fr|cerveau}} +{{label|nl|hersenen}} +{{label|ja|脳}} +{{label|ko|뇌}} +{{label|ur|دماغ}} +| rdfs:subClassOf = AnatomicalStructure +| comments = +{{comment|el|Το βασικό όργανο του νευρικού συστήματος των ζώων, το οποίο καθορίζει ασυνείδητες και συνειδητές λειτουργίες. Ο όρος χρησιμοποιείται πλέον και για τον χαρακτηρισμό των καθοριστικότερων στοιχείων μίας μηχανής ή ενός συνόλου πραγμάτων.}} +}}OntologyClass:Brewery2008718558272021-09-17T20:51:22Z{{Class +| labels = +{{label|de|Brauerei}} +{{label|es|cervecería}} +{{label|en|brewery}} +{{label|fr|brasserie}} +{{label|el|ζυθοποιία}} +{{label|ur|کَشید گاہ}} +{{label|it|birrificio}} +{{label|nl|brouwerij}} +{{label|ja|ブルワリー}} + +| comments = +{{comment|el| Ζυθοποιία ονομάζεται η βιομηχανία παρασκευής μπύρας. }} +| rdfs:subClassOf = Company +}}OntologyClass:Bridge200321553692021-09-11T19:24:58Z{{Class +| labels = +{{label|it|ponte}} +{{label|en|bridge}} +{{label|ga|droichead}} +{{label|el|γέφυρα}} +{{label|da|bro}} +{{label|de|Brücke}} +{{label|sl|most}} +{{label|fr|pont}} +{{label|pt|ponte}} +{{label|ko|다리}} +{{label|bn|সেতু}} +{{label|ja|橋}} +{{label|nl|brug}} +{{label|ur|پل}} + +| rdfs:subClassOf = RouteOfTransportation +| comments = +{{comment|en|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).}} +{{comment|ur|ایک پل ایک ایسا ڈھانچہ ہے جو جسمانی رکاوٹوں جیسے پانی ، وادی یا سڑک کی راہ میں رکاوٹ کو عبور کرنے کے مقصد سے بنایا گیا ہے}} +| owl:equivalentClass = wikidata:Q12280 +}}OntologyClass:BritishRoyalty200322551882021-09-10T17:25:22Z{{Class +| labels = +{{label|it|reali britannici}} +{{label|en|British royalty}} +{{label|de|Britisches Königshaus}} +{{label|el|Βρετανική μοναρχία}} +{{label|nl|Britse royalty}} +{{label|fr|royauté Britannique}} +{{label|sl|Britanska kraljevska oseba}} +{{label|ja|イギリス王室}} +{{label|ko|영국 왕족 }} +{{label|ur|برطانوی بادشاہی}} +| rdfs:subClassOf = Royalty +}}OntologyClass:BroadcastNetwork2003014558292021-09-17T20:57:12Z{{Class +| labels = +{{label|en|broadcast network}} +{{label|el|δίκτυο ραδιοφωνικής μετάδοσης}} +{{label|de|Sendergruppe}} +{{label|fr|chaîne de télévision généraliste}} +{{label|ur|نشریاتی جال}} +{{label|ga|líonra craolacháin}} +{{label|ja|ネットワーク_(放送)}} +{{label|nl|omroeporganisatie}} +{{label|pl|sieć emisyjna}} +{{label|ko| 브로드캐스트 네트워크}} +{{label|it|emittente}} +| rdfs:subClassOf = Broadcaster +| comments = +{{comment|en|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)}} +{{comment|ur|نشریاتی جال ایک تنظیم ہے ، جیسے کارپوریشن یا دیگر ایسوسی ایشن ، جو ریڈیو یا ٹیلی ویژن اسٹیشنوں کے گروپ پر نشر کرنے کے لیے لائیو یا ریکارڈ شدہ مواد ، جیسے فلمیں ، نیوز کاسٹ ، کھیل اور عوامی امور کے پروگرام مہیا کرتی ہے۔ +}} +{{comment|el|Ένα δίκτυο μετάδοσης είναι μια οργάνωση, όπως μια εταιρεία ή άλλη ένωση, που παρέχει ζωντανό ή μαγνητοσκοπημένο περιεχόμενο, όπως ταινίες, δελτία ειδήσεων, αθλητικά, και τα προγράμματα δημοσίων υποθέσεων για την εκπομπή πάνω από μια ομάδα ραδιοφωνικών ή τηλεοπτικών σταθμών}} +| owl:equivalentClass = wikidata:Q141683 +}}OntologyClass:Broadcaster2003013570222022-03-09T13:17:20Z{{Class +| labels = +{{label|ar|الشبكة}} +{{label|en|broadcaster}} +{{label|ga|craoltóir}} +{{label|fr|diffuseur}} +{{label|el|εκφωνητής}} +{{label|nl|omroep}} +{{label|de|Rundfunkveranstalter}} +{{label|ja|放送事業者}} +{{label|ko|방송}} +{{label|it|emittente}} +{{label|ur|ناشَر}} +| rdfs:subClassOf = Organisation +| comments = + {{comment|en|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)}} + {{comment|fr|Un radiodiffuseur est une organisation responsable de la production de programmes de radio ou de télévision et/ou de leur transmission. (http://en.wikipedia.org/wiki/Broadcaster - 28/03/2011)}} + {{comment|ur|براڈکاسٹر ایک ایسی تنظیم ہے جو ریڈیو یا ٹیلی ویژن پروگراموں کی پیداوار اور/یا ان کی ترسیل کے لیے ذمہ دار ہے}} + {{comment|el|Ο ραδιοτηλεοπτικός φορέας είναι ένας οργανισμός που είναι υπεύθυνος για την παραγωγή ραδιοφωνικών ή τηλεοπτικών προγραμμάτων και / ή τη διαβίβασή τους}} + {{comment|de|Ein Rundfunkveranstalter (oder auch Sendeunternehmen) betreibt Hörfunk- oder Fernsehprogramme. (http://de.wikipedia.org/wiki/Rundfunkveranstalter - 28/03/2011)}} +| owl:equivalentClass = wikidata:Q15265344 +}}OntologyClass:BrownDwarf2009179552062021-09-10T18:03:26Z{{Class +| labels = +{{label|de|Brauner Zwerg}} +{{label|en|brown dwarf}} +{{label|nl|bruine dwerg}} +{{label|ur|بھورا بونا}} +| rdfs:subClassOf = Star +| owl:equivalentClass = wikidata:Q101600 +}}OntologyClass:Browser20012208566672022-02-28T09:48:32Z{{Class +| labels = +{{label|en|Browser}} +{{label|de|Browser}} +{{label|fr|Navigateur}} +{{label|ur|ٹٹولنے والا}} + +{{label|nl|Browser (bladerprogramma)}} +{{label|ru|Браузер}} +}}OntologyClass:Building200324553412021-09-11T18:31:57Z{{Class +| labels = +{{label|en|building}} +{{label|ga|foirgneamh}} +{{label|nl|gebouw}} +{{label|da|bygning}} +{{label|de|Gebäude}} +{{label|fr|bâtiment}} +{{label|es|edificio}} +{{label|el|κτίριο}} +{{label|sl|stavba}} +{{label|ja|建築物}} +{{label|it|edificio}} +{{label|ko|건축물}} +{{label|ur|عمارت}} +| comments = +{{comment|en|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).}} +{{comment|de|Ein Gebäude, umgangssprachlich auch oft als Haus bezeichnet, ist ein Bauwerk, das Räume umschließt, betreten werden kann und zum Schutz von Menschen, Tieren oder Sachen dient (http://de.wikipedia.org/wiki/Geb%C3%A4ude).}} +{{comment|ur|عمارت کو سول انجینئرنگ ڈھانچے سے تعبیر کیا جاتا ہے جیسے مکان ، عبادت گاہ ، فیکٹری وغیرہ جس کی بنیاد ، دیوار ، چھت وغیرہ ہوتی ہے جو انسان اور ان کی خصوصیات کو موسم کے براہ راست سخت اثرات جیسے بارش ، ہوا ، سورج وغیرہ سے محفوظ رکھتی ہے۔ }} +| rdfs:subClassOf = ArchitecturalStructure +| owl:disjointWith = Person +| specificProperties = {{SpecificProperty | ontologyProperty = floorArea | unit = squareMetre }} +| owl:equivalentClass = wikidata:Q41176 +}}OntologyClass:BullFighter2004727551922021-09-10T17:31:01Z{{Class +| labels = + {{label|it|torero}} + {{label|en|bullfighter}} + {{label|de|Stierkämpfer}} + {{label|el|ταυρομάχος}} + {{label|es|torero}} + {{label|fr|torero}} + {{label|ja|闘牛士}} + {{label|nl|stierenvechter}} + {{label|ko|투우사}} + {{label|ga|tarbhchomhraiceoir}} + {{label|pl|toreador}} + {{label|ur|بیل کا مُقابلہ کرنے والا}} + +| rdfs:subClassOf = Athlete +}}OntologyClass:BusCompany2007966587502022-05-16T19:08:05Z{{Class +| labels = +{{label|en|bus company}} +{{label|ga|comhlacht bus}} +{{label|es|compañía de autobuses}} +{{label|fr|compagnie d'autobus}} +{{label|ur|بس كا تِجارتی اِدارہ}} + +{{label|nl|busmaatschappij}} +{{label|el|εταιρία λεωφορείων}} +{{label|de|Busunternehmen}} +| rdfs:subClassOf = PublicTransitSystem +}}OntologyClass:BusinessPerson2008197567052022-02-28T13:20:22Z{{Class +| labels = +{{label|en|businessperson}} +{{label|fr|homme d'affaires}} +{{label|ga|duine den lucht gnó}} +{{label|de|Unternehmer}} +{{label|el|επιχειρηματίας}} +{{label|it|imprenditore}} +{{label|nl|ondernemer}} +{{label|ur|کاروباری شخص}} +| comments = +{{comment|en|The term entrepreneur mainly means someone who holds a senior position, such as an executive.}} +{{comment|el|Με τον όρο επιχειρηματίας νοείται κυρίως κάποιος που κατέχει μία ανώτερη θέση, όπως ένα στέλεχος.}} +{{comment|fr|Le terme entrepreneur désigne principalement une personne qui occupe un poste supérieur, tel qu'un cadre.}} +{{comment|ur|اصطلاح کاروباری کا بنیادی طور پر مطلب وہ شخص ہے جو اعلی عہدے پر فائز ہو ، جیسے ایگزیکٹو۔}} +| rdfs:subClassOf = Person +}}OntologyClass:Camera2006550551952021-09-10T17:37:32Z{{Class +| labels = + {{label|en|camera}} +{{label|ga|ceamara}} +{{label|de|Kamera}} + {{label|el|φωτογραφική μηχανή}} + {{label|fr|appareil photographique}} + {{label|it|fotocamera}} +{{label|nl|camera}} + {{label|ja|カメラ}} + {{label|ko|카메라}} + {{label|ur|تصویر کھینچنے کا آلہ}} +| rdfs:subClassOf = Device +|comments = +{{comment|it|Una fotocamera (in lingua italiana nota tradizionalmente come macchina fotografica) è uno strumento utilizzato per la ripresa fotografica e per ottenere immagini di oggetti reali stampabili su supporti materiali cartacei o archiviabili su supporti elettronici.<ref>http://it.wikipedia.org/wiki/Fotocamera</ref>}} +{{comment|el|Φωτογραφική μηχανή ονομάζεται η συσκευή που χρησιμοποιείται για τη λήψη φωτογραφιών.Οι ευρύτερα χρησιμοποιούμενες σήμερα φωτογραφικές μηχανές, ερασιτεχνικής ή επαγγελματικής χρήσης, διακρίνονται σε δύο βασικές κατηγορίες: τις συμπαγείς και στις μονοοπτικές ρεφλέξ. Διακρινόμενες, ανάλογα με την τεχνολογία τους,είναι οι κλασικές φωτογραφικές μηχανές με φιλμ και οι ψηφιακές φωτογραφικές μηχανές.}} +{{comment|ur|ایک کیمرہ (اطالوی میں روایتی طور پر کیمرے کے نام سے جانا جاتا ہے) ایک ایسا آلہ ہے جو فوٹو گرافی کی شوٹنگ اور حقیقی اشیاء کی تصاویر حاصل کرنے کے لیے استعمال کیا جاتا ہے جو کاغذ پر چھپ سکتی ہیں یا الیکٹرانک میڈیا پر محفوظ کی جا سکتی ہیں۔}} +}} + +== References == +<references />OntologyClass:CanadianFootballLeague2002282555772021-09-15T08:24:43Z{{Class +| labels = +{{label|it|lega di football canadese}} +{{label|en|canadian football league}} +{{label|de|Kanadische Footballliga}} +{{label|en|liga de fútbol canadiense}} +{{label|ur| +کینیڈین فٹ بال لیگ}} +{{label|el|καναδική ένωση ποδοσφαίρου}} +{{label|fr|ligue de football canadien}} +{{label|ja|カナディアン・フットボール・リーグ}} +{{label|nl|canadian football competitie}} +{{label|ko|캐나다 풋볼 리그}} +| comments = +{{comment|en|A group of sports teams that compete against each other in canadian football league.}} +{{comment|ur|کھیلوں کی ٹیموں کا ایک گروپ جو کینیڈین فٹ بال لیگ میں ایک دوسرے کے خلاف مقابلہ کرتے ہیں۔.}} +{{comment|el|ένα σύνολο αθλητικών ομάδων που ανταγωνίζονται μεταξύ τους στην Καναδική ένωση ποδοσφαίρου }} +| rdfs:subClassOf = SportsLeague +}}OntologyClass:CanadianFootballPlayer2002285583982022-05-14T14:12:43Z{{Class +| labels = +{{label|en|canadian football Player}} +{{label|ur|کینیڈین فٹ بال کھلاڑی}} + + + +| rdfs:subClassOf = GridironFootballPlayer + + +}}OntologyClass:CanadianFootballTeam2002291584262022-05-14T16:06:27Z{{Class +| labels = +{{label|it|squadra di football canadese}} +{{label|en|canadian football Team}} +{{label|nl|Canadees footballteam}} +{{label|de|kanadische Footballmannschaft}} +{{label|el|καναδέζικη ομάδα ποδοσφαίρου}} +{{label|fr|équipe canadienne de football américain}} +{{label|ko|캐나다 축구 팀}} +{{label|ur|کینیڈین فٹ بال جماعت}} +| rdfs:subClassOf = SportsTeam +}}OntologyClass:Canal200325555792021-09-15T08:25:58Z{{Class +| labels = +{{label|it|canale}} +{{label|en|canal}} +{{label|ga|canáil}} +{{label|el|κανάλι}} +{{label|fr|canal}} +{{label|de|Kanal}} +{{label|pt|canal}} +{{label|ja|運河}} +{{label|ur| +نہر}} +{{label|nl|kanaal}} +{{label|ko|운하}} +| comments = +{{comment|en|a man-made channel for water}} +{{comment|el|ένα κανάλι για νερό φτιαγμένο από άνθρωπο}} +| rdfs:subClassOf = Stream +| owl:equivalentClass = schema:Canal +| specificProperties = {{SpecificProperty | ontologyProperty = originalMaximumBoatBeam | unit = metre }} + {{SpecificProperty | ontologyProperty = originalMaximumBoatLength | unit = metre }} + {{SpecificProperty | ontologyProperty = maximumBoatBeam | unit = metre }} + {{SpecificProperty | ontologyProperty = maximumBoatLength | unit = metre }} +}}OntologyClass:Canoeist2008272574872022-04-24T10:28:36Z{{Class +| labels = +{{label|en|canoeist}} +{{label|ga|canúálaí}} +{{label|de|Kanute}} +{{label|it|canoista}} +{{label|nl|kanovaarder}} +{{label|ja|カヌー選手}} +{{label|ur| کشتی بنانے والا }} +| rdfs:subClassOf = Athlete +}}OntologyClass:Canton20011551552222021-09-10T18:37:15Z{{Class +| labels = +{{label|en|canton}} +{{label|de|Kanton}} +{{label|fr|canton}} +{{label|nl|kanton}} +{{label|ja|スイス連邦の州またはフランスの群}} +{{label|ur|ضِلَع}} +| comments = +{{comment|en|An administrative (France) or lawcourts (Netherlands) body governing a territorial unity on the municipal level or somewhat above}} +{{comment|de|Das Wort Kanton dient zur Bezeichnung verschiedener (niederen) Verwaltungsbezirke in Frankreich, Belgien, Kanada und anderen Ländern}} +{{comment|ur|ایک انتظامی (فرانس) یا قانون کی عدالت (نیدرلینڈز) کا ادارہ جو علاقائی وحدت کا انتظام کرتا ہے بلدیاتی سطح پر یا اس سے کچھ اوپر}} +| rdfs:subClassOf = GovernmentalAdministrativeRegion +| owl:equivalentClass = +}}OntologyClass:Cape20011730584602022-05-14T17:45:45Z{{Class +| labels = +{{label|en|cape}} +{{label|fr|cap}} +{{label|ur|خشکی کا وہ حصہ جو سمندر کے اندر تک چلا گیا ہو}} +| rdfs:label@nl = kaap +| rdfs:subClassOf = NaturalPlace +}}OntologyClass:Capital2009434574892022-04-24T10:34:49Z{{Class +| labels = {{label|en|Capital}} +{{label|el|Κεφάλαιο}} +{{label|fr|Capitale}} +{{label|it|Capitale}} +{{label|nl|hoofdstad}} +{{label|de|Hauptstadt}} +{{label|ja|首都}} +{{label|ur| دارالحکومت}} + +| comments = {{comment|en|A municipality enjoying primary status in a state, country, province, or other region as its seat of government.}} + +{{comment|ur|ایک بلدیہ جو کسی ریاست، ملک، صوبے، یا دوسرے علاقے میں اپنی حکومت کی نشست کے طور پر بنیادی حیثیت سے لطف اندوز ہوتی ہے۔ }} +| rdfs:subClassOf = City +}}OntologyClass:CapitalOfRegion2009441552292021-09-10T18:49:19Z{{Class +| labels = {{label|en|Capital of region}} +{{label|fr|Capitale régionale}} +{{label|de|Hauptstadt der Region}} +{{label|nl|hoofdstad van regio}} +{{label|ur|علاقے کا دارالحکومت}} +| comments = {{comment|en|seat of a first order administration division.}} +{{comment|ur|فرسٹ آرڈر ایڈمنسٹریشن ڈویژن کی نشست۔}} +| rdfs:subClassOf = City +}}OntologyClass:CardGame20010383555872021-09-15T08:31:37Z{{Class +| labels = +{{label|en|card game}} +{{label|nl|kaartspel}} +{{label|da|kortspil}} +{{label|de|Kartenspiel}} +{{label|es|juego de cartas}} +{{label|fr|jeu de cartes}} +{{label|ur|تاش}} + +|comments = +{{comment|en|come from http://en.wikipedia.org/wiki/Category:Card_games}} +| rdfs:subClassOf = Game +| owl:equivalentClass = wikidata:Q142714 +}} + + +== References == +<references />OntologyClass:Cardinal200326574952022-04-24T10:42:48Z{{Class +| labels = +{{label|it|cardinale}} +{{label|en|cardinal}} +{{label|ga|cairdinéal}} +{{label|de|Kardinal}} +{{label|fr|cardinal}} +{{label|pt|cardeal}} +{{label|el|καρδινάλιος}} +{{label|nl|kardinaal}} +{{label|ko|카디널}} +{{label|ja|枢機卿}} +{{label|ur| افضل}} + +| rdfs:subClassOf = Cleric +}}OntologyClass:CardinalDirection20010300552622021-09-10T21:09:35Z{{Class +|labels = + {{label|en|Cardinal direction}} + {{label|nl|windrichting}} + {{label|de|Windrichtung}} + {{label|fr|direction cardinale}} + {{label|ur|ہوا کی سمت}} +| comments = +{{comment|en|One of the four main directions on a compass or any other system to determine a geographical position}} +{{comment|fr|Une des 4 principales directions d'un compas ou de tout autre système pour déterminer une position geographique}} +{{comment|ur|جغرافیائی پوزیشن کا تعین کرنے کے لیے کمپاس یا کسی دوسرے نظام پر چار اہم سمتوں میں سے ایک}} +| rdfs:subClassOf = TopicalConcept +}}OntologyClass:CareerStation20013875576542022-04-25T09:00:45Z{{Class +| labels = + {{label|en|career station}} + + {{label|de|Karrierestation}} + + {{label|nl|Carrierestap}} + + {{label|ur|پیشہ تعینات}} +| comments = + {{comment|en|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}} + {{comment|ur|یہ کلاس کسی شخص کی زندگی میں کیریئر کا مرحلہ ہے ، جیسے ایک فٹ بال کھلاڑی ، جس نے کسی مخصوص کلب میں حاصل کردہ ٹائم اسپین ، میچز اور اہداف کے بارے میں معلومات رکھتے ہیں۔}} +| rdfs:subClassOf = TimePeriod +}}OntologyClass:Cartoon2005812575002022-04-24T10:51:36Z{{Class +| labels = +{{label|en|cartoon}} +{{label|fr|dessin animé}} +{{label|ur|کارٹون}} + +| rdfs:subClassOf = work +| owl:equivalentClass = wikidata:Q627603 +}}OntologyClass:Case2006467553102021-09-11T17:19:15Z{{Class +| labels = +{{label|en|case}} +{{label|ga|cás}} +{{label|el|υπόθεση}} +{{label|de|Sache}} +{{label|fr|dossier}} +{{label|nl|zaak}} +{{label|ko|케이스}} +{{label|ur|معاملہ}} +| comments = +{{comment|en|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.}} +{{comment|de|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.}} +{{comment|ur|ایک کیس انتظامی یا کاروباری فیصلے کی تیاری کے لیے کیے گئے کام کی کل ہے۔ ایک اصول کے طور پر ، ایک کیس دستاویزات کے ایک سیٹ میں ظاہر ہوتا ہے۔}} +| rdfs:subClassOf = UnitOfWork +}}OntologyClass:Casino2007451576592022-04-25T09:17:44Z{{Class +| labels = +{{label|en|casino}} +{{label|es|casino}} +{{label|de|Kasino}} +{{label|el|καζίνο}} +{{label|it|casinò}} +{{label|fr|casino}} +{{label|ur|رقص گاہ}} +{{label|nl|casino}} +{{label|ko|카지노}} +{{label|ja|カジノ}} +| rdfs:subClassOf = Building +| comments = +{{comment|en|In modern English, a casino is a facility which houses and accommodates certain types of gambling activities.}} +{{comment|ur|جدید انگریزی میں ، جوئے بازی کی اڈہ ایک ایسی سہولت ہے جس میں جوئے کی سرگرمیوں کی مخصوص اقسام ہوتی ہیں۔ +.}} +{{comment|el|To καζίνο είναι ένας χώρος στον οποίο μπορούμε να παίξουμε τυχερά παιχνίδια ποντάροντας χρήματα.}} +{{comment|fr|Un casino est un lieu proposant des jeux d'argent et de hasard ou jeux de casino.}} +| owl:equivalentClass = wikidata:Q133215 +}}OntologyClass:Castle2006238575042022-04-24T10:59:51Z{{Class +| labels = {{label|en|castle}} +{{label|ga|caisleán}} +{{label|el|κάστρο}} +{{label|fr| château}} +{{label|de| burg}} +{{label|it|castello}} +{{label|nl|kasteel}} +{{label|ko|성 (건축) }} +{{label|ja|城}} +{{label|ur|قلعہ}} +| comments = {{comment|en|Castles often are, but need not be a military structure. They can serve for status, pleasure and hunt as well.}} + + {{comment|ur|قلعے اکثر ہوتے ہیں، لیکن فوجی ڈھانچہ ہونے کی ضرورت نہیں ہے۔ وہ حیثیت، خوشی اور شکار کے لیے بھی خدمت کر سکتے ہیں۔}} +| rdfs:subClassOf = Building +| owl:equivalentClass = wikidata:Q23413 +}}OntologyClass:Cat20011431553152021-09-11T17:27:29Z{{Class +| labels = +{{label|en|cat}} +{{label|fr|chat}} +{{label|da|kat}} +{{label|de|Katze}} +{{label|nl|kat}} +{{label|ja|猫}} +{{label|ur|بلی}} +| rdfs:subClassOf = Mammal +| owl:disjointWith = <!--Dog--> <!-- due to a bug cannot declare 2-way disjointness, this is declared in class Dog and transitively applies to cat--> +| owl:equivalentClass = wikidata:Q146 +}}OntologyClass:Caterer20011141576612022-04-25T09:22:41Z{{Class +| labels = +{{label|en|Caterer}} +{{label|nl|party service bedrijf}} +{{label|de|Partyservice}} +{{label|ur|کھانا دینے والا}} + +{{label|fr|traiteur}} +{{label|ja|仕出し業者}} +| rdfs:subClassOf = Company +}}OntologyClass:Cave200327575122022-04-24T11:13:22Z{{Class +| labels = +{{label|en|cave}} +{{label|ga|pluais}} +{{label|el|σπηλιά}} +{{label|fr|grotte}} +{{label|de|Höhle}} +{{label|ja|洞窟}} +{{label|it|grotta}} +{{label|ko|동굴}} +{{label|pt|caverna}} +{{label|ur|غار}} +| rdfs:label@nl = grot +| rdfs:subClassOf = NaturalPlace +| owl:equivalentClass = wikidata:Q35509 +}}OntologyClass:CelestialBody2004733579212022-05-05T12:00:46Z{{Class +| labels = +{{label|en|celestial body}} +{{label|ga|rinn neimhe}} +{{label|de|Himmelskörper}} +{{label|el|ουράνιο σώμα}} +{{label|es|cuerpo celeste}} +{{label|fr|corps celeste}} +{{label|nl|hemellichaam}} +{{label|ja|天体}} +{{label|ko|천체}} +{{label|it|corpo celeste}} +{{label|ur|جرم فلکی}} +| rdfs:subClassOf = Place +}}OntologyClass:Cemetery2008093555972021-09-15T08:52:02Z{{Class +| labels = +{{label|en|cemetery}} +{{label|ga|reilig}} +{{label|de|Friedhof}} +{{label|el|νεκροταφείο}} +{{label|fr|cimetière}} +{{label|es|cementerio}} +{{label|ur|قبرستان}} + +{{label|nl|begraafplaats}} +{{label|ja|墓地}} + +| comments = +{{comment|en|A burial place}} +{{comment|ur|ایک تدفین کی جگہ}} +{{comment|el|Νεκροταφείο (ή Κοιμητήριο) ονομάζεται ο χώρος ο προορισμένος για την ταφή των νεκρών.}} +{{comment|fr|Un cimetière est un groupement de sépultures monumentales.<ref>https://fr.wikipedia.org/wiki/Cimetière</ref>}} + +| rdfs:subClassOf = Place +| owl:equivalentClass = wikidata:Q39614 +}} + +== References == + +<references/>OntologyClass:Chancellor200329575152022-04-24T11:25:24Z{{Class +| labels = +{{label|en|chancellor}} +{{label|ga|seansailéir}} +{{label|el|καγκελάριος}} +{{label|es|canciller}} +{{label|fr|chancelier}} +{{label|pt|chanceler}} +{{label|de|Kanzler}} +{{label|nl|kanselier}} +{{label|ko|재상}} +{{label|it|cancelliere}} +{{label|ja|宰相}} +{{label|ur|مشیر}} + +| rdfs:subClassOf = Politician +| owl:equivalentClass = wikidata:Q373085 +}}OntologyClass:ChartsPlacements2009173553192021-09-11T17:39:38Z{{Class +| labels = +{{label|en|Place in the Music Charts}} +{{label|de| Chartplatzierungen}} +{{label|nl|plaats op de muziek hitlijst}} +{{label|ur|موسیقی چارٹس میں جگہ}} +}}OntologyClass:Cheese2006737555992021-09-15T08:55:21Z{{Class +| labels = +{{label|en|cheese}} +{{label|ga|cáis}} +{{label|da|ost}} +{{label|de|Käse}} +{{label|el|τυρί}} +{{label|fr|fromage}} +{{label|it|formaggio}} +{{label|nl|kaas}} +{{label|ur|پنیر}} + +{{label|es|queso}} +{{label|ko|치즈}} +{{label|ja|チーズ}} +| rdfs:subClassOf = Food +| comments = +{{comment|en|A milk product prepared for human consumption}} +{{comment|ur|ایک دودھ کی مصنوعات جو انسانی استعمال کے لیے تیار کی جاتی ہے۔ +}} +{{comment|es|Producto lácteo preparado para el consumo humano}} +}}OntologyClass:Chef2006217575192022-04-24T11:33:19Z{{Class +| labels = +{{label|da|kok}} +{{label|de|Koch}} +{{label|en|chef}} +{{label|fr|chef}} +{{label|el|αρχιμάγειρος}} +{{label|it|chef}} +{{label|nl|kok}} +{{label|es|cocinero}} +{{label|ga|cócaire}} +{{label|pl|szef kuchni}} +{{label|ko|요리사}} +{{label|ja|料理人}} +{{label|ur|باورچی}} + +| comments = +{{comment|en|a person who cooks professionally for other people}} +{{comment|es|una persona que cocina profesionalmente para otras}} +{{comment|ur|وہ شخص جو پیشہ ورانہ طور پر دوسرے لوگوں کے لیے کھانا پکاتا ہے۔}} + +| rdfs:subClassOf = Person +}}OntologyClass:ChemicalCompound200330553212021-09-11T17:43:13Z{{Class +| labels = +{{label|it|composto chimico}} +{{label|en|chemical compound}} +{{label|ga|comhdhúileach}} +{{label|de|chemische Verbindung}} +{{label|el|χημική ένωση}} +{{label|fr|produit chimique}} +{{label|pt|composto químico}} +{{label|ja|化合物}} +{{label|nl|chemisch component}} +{{label|ko|화합물}} +{{label|ur|کیمیائی مرکب}} +| rdfs:subClassOf = ChemicalSubstance +| owl:equivalentClass = wikidata:Q11173 +}}OntologyClass:ChemicalElement2004230576662022-04-25T10:42:35Z{{Class +| labels = +{{label|en|chemical element}} +{{label|de|chemisches Element}} +{{label|fr|élément chimique}} +{{label|el|χημικό στοιχείο}} +{{label|ur|کیمیائی عنصر}} +{{label|ja|元素}} +{{label|it|elemento chimico}} +{{label|nl|chemisch element}} +{{label|ko|원소}} +| rdfs:subClassOf = ChemicalSubstance +}}OntologyClass:ChemicalSubstance2004229549712021-09-09T11:10:37Z{{Class +| labels = + {{label|en|chemical substance}} +{{label|ga|ceimiceán}} + {{label|de|chemische Substanz}} + {{label|fr|substance chimique}} + {{label|el|χημική ουσία}} + {{label|ja|化学物質}} + {{label|it|sostanza chimica}} + {{label|nl|chemische substantie}} +{{label|ur|کیمیائی مادہ}} + {{label|pt|substância química}} + {{label|ko| 화학 물질 }} +| specificProperties = {{SpecificProperty | ontologyProperty = density | unit = kilogramPerCubicMetre }} + {{SpecificProperty | ontologyProperty = meltingPoint | unit = kelvin }} + {{SpecificProperty | ontologyProperty = boilingPoint | unit = kelvin }} +| owl:equivalentClass = dul:ChemicalObject +}}OntologyClass:ChessPlayer2004314553232021-09-11T17:47:59Z{{Class +| labels = +{{label|en|chess player}} +{{label|ga|imreoir fichille}} +{{label|de|Schachspieler}} +{{label|el|παίκτης σκάκι}} +{{label|fr|joueur d'échecs}} +{{label|pl|szachista}} +{{label|it|giocatore di scacchi}} +{{label|nl|schaker}} +{{label|ko| 체스 선수}} +{{label|ja|チェスプレーヤー}} +{{label|ur|شطرنج کا کھلاڑی}} +| rdfs:subClassOf = Athlete +}}OntologyClass:Chief20014259590822022-10-09T19:18:10Z{{Class +| labels = + {{label|en|Chief}} + {{label|fr|Chef}} +| rdfs:subClassOf = Person +| rdfs:subClassOf = Politician +| owl:equivalentClass = wikidata:Q1259323 +}}OntologyClass:ChristianBishop200331578912022-05-05T10:33:38Z{{Class +| labels = +{{label|en|Christian Bishop}} +{{label|ga|Easpag Críostaí}} +{{label|de|christlicher Bischof}} +{{label|nl|Christelijk bisschop}} +{{label|el|Πληροφορίες Επισκόπου}} +{{label|fr|évêque chrétien}} +{{label|pl|biskup chrześcijański}} +{{label|it|vescovo cristiano}} +{{label|ko| 기독교 주교 }} +{{label|ur| عیسائی پادري}} +| rdfs:subClassOf = Cleric +}}OntologyClass:ChristianDoctrine2006160575212022-04-24T11:41:50Z{{Class +| labels = +{{label|en|Christian Doctrine}} +{{label|de|Christliche Lehre}} +{{label|el|Χριστιανικό Δόγμα}} +{{label|fr|doctrine chrétienne}} +{{label|it|dottrina cristiana}} +{{label|nl|Christelijke leer}} +{{label|ur|عیسائی نظریہ}} +{{label|ko|기독교 교리 }} +| comments = {{comment|en|Tenets of the Christian faith, e.g. Trinity, Nicene Creed}} +{{comment|ur|عیسائی عقیدے کے اصول، جیسے تثلیث، نیکین عقیدہ}} +| rdfs:subClassOf = TheologicalConcept +}}OntologyClass:ChristianPatriarch2005641576082022-04-24T17:33:45Z{{Class +| labels = +{{label|en|Christian Patriarch}} +{{label|de|christlicher Patriarch}} +{{label|el|χριστιανός πατριάρχης}} +{{label|fr|patriarche chrétien}} +{{label|pl|patriarcha chrześcijański}} +{{label|it|patriarca cristiano}} +{{label|nl|christelijk patriarch}} +{{label|ko|기독교 총대주교}} +{{label|ur|عیسائی پادری}} +| rdfs:subClassOf = Cleric +}}OntologyClass:Church2004810576712022-04-25T10:55:01Z{{Class + +| labels = +{{label|en|church}} +{{label|ga|eaglais}} +{{label|fr|église}} +{{label|es|iglesia}} +{{label|el|εκκλησία}} +{{label|da|kirke}} +{{label|ur|گرجا}} + +{{label|de|Kirche}} +{{label|it|chiesa}} +{{label|pt|igreja}} +{{label|nl|kerk}} +{{label|ja|教会}} +{{label|ko|교회}} +{{label|pl|kościół}} +| rdfs:subClassOf = ReligiousBuilding +| owl:equivalentClass = wikidata:Q16970 +| comments = +{{comment|en|This is used for church buildings, not any other meaning of church.}} + +{{comment|ur|یہ چرچ کی عمارتوں کے لیے استعمال ہوتا ہے ، چرچ کا کوئی دوسرا مطلب نہیں۔}} +}}OntologyClass:CidocCrm:E4 Period2006767479232015-05-25T14:38:10Z{{Class +|rdfs:label@en = E4 Period +|rdfs:label@nl = E4 Periode +|rdfs:label@ga = An Tréimhse E4 +}}OntologyClass:Cinema20011982553312021-09-11T18:16:16Z{{Class +| labels = +{{label|en|cinema (movie theater)}} +{{label|nl|bioscoop}} +{{label|fr|cinéma}} +{{label|el|κινηματογράφος}} +{{label|de|Theater}} +{{label|ur|سنیما}} +| rdfs:subClassOf = Venue +| comments = +{{comment|en|A building for viewing films.}} +{{comment|ur|فلم دیکھنے کے لیے ایک عمارت۔}} +| owl:equivalentClass = wikidata:Q41253 +}}OntologyClass:Cipher20012194576792022-04-25T11:11:29Z{{Class +| labels = +{{label|en|Cipher}} +{{label|nl|Geheimschrift}} +{{label|ur|خفیہ_پیغام}} + +{{label|ru|Шифр}} + +| rdfs:subClassOf = +| owl:equivalentClass = +}}OntologyClass:City200332552392021-09-10T19:02:44Z{{Class +| labels = +{{label|it|città}} +{{label|da|by}} +{{label|de|Stadt}} +{{label|en|city}} +{{label|el|πόλη}} +{{label|fr|ville}} +{{label|ga|cathair}} +{{label|gl|cidade}} +{{label|pt|cidade}} +{{label|ko|도시}} +{{label|ja|市}} +{{label|nl|stad}} +{{label|es|ciudad}} +{{label|pl|miasto}} +{{label|hi|शहर}} +{{label|ur|شہر}} +| comments = +{{comment|en|a relatively large and permanent settlement, particularly a large urban settlement}} +{{comment|es|un asentamiento permanente y relativamente grande, especialmente un gran asentamiento urbano}} +{{comment|gl|Actualmente considérase como unha entidade urbana con alta densidade de poboación na que predominan fundamentalmente a industria e os servizos.}} +{{comment|ur|ایک نسبتا بڑی اور مستقل آبادی ، خاص طور پر ایک بڑی شہری بستی}} +| rdfs:subClassOf = Settlement +| owl:equivalentClass = schema:City, wikidata:Q515 +}}OntologyClass:CityDistrict2006490553452021-09-11T18:40:38Z{{Class +| labels = +{{label|de|Stadtviertel}} +{{label|en|city district}} +{{label|fr|quartier}} +{{label|nl|stadswijk}} +{{label|ur|شہر کا ضلع}} +| comments = +{{comment|en|District, borough, area or neighbourhood in a city or town}} +{{comment|ur|کسی شہر یا قصبے میں ضلع کا علاقہ یا محلہ۔}} +| rdfs:subClassOf = Settlement +| owl:equivalentClass = +}}OntologyClass:ClassicalMusicArtist2007994549302021-09-09T08:03:18Z{{Class +| labels = +{{label|en|classical music artist}} +{{label|ga|ceoltóir clasaiceach}} +{{label|de|Künstler der klassischen Musik}} +{{label|el|καλλιτέχνης κλασικής μουσικής}} +{{label|fr|artiste de musique classique}} +{{label|nl|artiest klassieke muziek}} +{{label|ur|اعلی درجےکاموسیقی فنکار}} +| comments = +{{comment|el|Ο Λούντβιχ βαν Μπετόβεν,Γερμανός συνθέτης και πιανίστας,ήταν ένας σπουδαίος καλλιτέχνης της κλασικής μουσικής.}} +{{comment|ur|لڈوگ وان بیتھوون ، جرمن موسیقار اور پیانو بجانے والے ، کلاسیکی موسیقی کے ایک عظیم فنکار تھے۔}} +| rdfs:subClassOf = MusicalArtist +}}OntologyClass:ClassicalMusicComposition2008220575262022-04-24T11:59:29Z{{Class +| labels = +{{label|en|classical music composition}} +{{label|de|Komposition klassischer Musik}} +{{label|el|σύνθεση κλασικής μουσικής}} +{{label|fr|composition de musique classique}} +{{label|it|composizione di musica classica}} +{{label|nl|compositie klassieke muziek}} +{{label|ur| روایتی موسیقی کی ترکیب }} +| comments = +{{comment|el|Η σύνθεση κλασικής μουσικής μπορεί να πραγματοποιηθεί και με τη βοήθεια ειδικών προγραμμάτων στον υπολογιστή που χρησιμοποιούν συγκεκριμένο αλγόριθμο.}} +{{comment|ur|کلاسیکی موسیقی کی تشکیل کمپیوٹر پر خصوصی پروگراموں کی مدد سے کی جاسکتی ہے جو ایک مخصوص الگورتھم استعمال کرتے ہیں۔}} +| rdfs:subClassOf = MusicalWork +}} +aOntologyClass:Cleric200333553282021-09-11T18:02:04Z{{Class +| labels = +{{label|en|cleric}} +{{label|fr|ecclésiastique}} +{{label|el|Κλήρος}} +{{label|nl|geestelijke}} +{{label|ja|聖職者}} +{{label|de|geistlicher}} +{{label|ko|성직자}} +{{label|it|ecclesiastico}} +{{label|ur|پادری}} +| rdfs:subClassOf = Person +}}OntologyClass:ClericalAdministrativeRegion2006476580472022-05-10T15:31:23Z{{Class +| labels = +{{label|en|clerical administrative region}} +{{label|de|klerikale Verwaltungsregion}} +{{label|fr|région administrative dans une église}} +{{label|nl|kerkelijk bestuurlijk gebied}} +{{label|ko|사무 관리 지역 }} +{{label|ur|علمی انتظامی علاقہ }} +| comments = +{{comment|en|An administrative body governing some territorial unity, in this case a clerical administrative body}} +{{comment|ur| ایک علمی انتظامی معاملات میں ایک انتظامی ادارہ جو کچھ علاقائی وحدت کو کنٹرول کرتا ہے}} +| rdfs:subClassOf = AdministrativeRegion +| owl:equivalentClass = +}}OntologyClass:ClericalOrder2006030575282022-04-24T12:08:49Z{{Class +| labels = +{{label|en|clerical order}} +{{label|ga|ord rialta}} +{{label|es|orden clerical}} +{{label|de|klerikaler Orden}} +{{label|el|κληρική τάξη}} +{{label|nl|kloosterorde}} +{{label|it|ordine clericale}} +{{label|fr|ordre religieux}} +{{label|ur|علما کا حکم}} +| comments = +{{comment|nl|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 één en dezelfde plaatselijke gemeenschap, een klooster of een tempel. Meerdere kloosters van gelijkgezinde religieuzen vormen samen een kloosterorde.}} +{{comment|ur|خانقاہی حکم مذہبی، مردوں یا عورتوں کا ایک حکم ہے، جو ایک مشترکہ عقیدہ اور خانقاہی اصول کے بارے میں متحد ہو گئے ہیں جس کے وہ پابند ہیں، اور ایک ہی مقامی کمیونٹی، ایک خانقاہ یا مندر کے اندر مستقل طور پر ایک ساتھ رہتے ہیں۔ ہم خیال مذہبیوں کی کئی خانقاہیں مل کر ایک خانقاہی ترتیب بناتی ہیں۔}} +| rdfs:subClassOf = ReligiousOrganisation +}}OntologyClass:ClubMoss200334553602021-09-11T19:15:44Z{{Class +| labels = +{{label|en|club moss}} +{{label|nl|wolfsklauw}} +{{label|de|Bärlapp}} +{{label|el|Μούσκλια}} +{{label|fr|lycopodiopsida}} +{{label|ja|ヒカゲノカズラ綱}} +{{label|ko|석송강}} +{{label|ur|بغیر پُہولوں کا سدا بہار پودا}} +| rdfs:subClassOf = Plant +}}OntologyClass:Coach2007987549462021-09-09T09:13:40Z{{Class +| labels = +{{label|en|coach}} +{{label|ga|traenálaí}} +{{label|de|Trainer}} +{{label|el|προπονητής}} +{{label|fr|entraîneur}} +{{label|it|allenatore}} +{{label|nl|coach}} +{{label|ja|コーチ}} +{{label|ur|تربیت کرنے والا}} + +| rdfs:subClassOf = Person +}}OntologyClass:CoalPit20010254575402022-04-24T12:32:48Z{{Class +| labels = + {{label|en|coal pit }} + {{label|fr|puits de charbon}} + {{label|nl|steenkolenmijn}} + {{label|de|Kohlengrube}} +{{label|ur|کوئلہ}} +| comments = + {{comment|en|A coal pit is a place where charcoal is or was extracted}} + {{comment|ur|کوئلے کا گڑھا ایک ایسی جگہ ہے جہاں چارکول ہے یا نکالا جاتا ہے۔}} + {{comment|fr|Un puits de charbon est un endroit d'où le charbon était - ou est encore - extrait}} + {{comment|nl|Een mijn is een plaats waar steenkool wordt of werd gewonnen}} +| rdfs:subClassOf = Mine +}}OntologyClass:CollectionOfValuables2006575576142022-04-24T17:49:05Z{{Class +|labels = + {{label|en|collection of valuables}} + {{label|de|Kunst- und Wertsachenversammlung}} + {{label|nl|verzameling van kostbaarheden}} + {{label|fr|collection d'objets}} + {{label|ko|귀중품의 컬렉션 }} + {{label|ur|قیمتی اشیاء کا مجموعہ }} +| comments = +{{comment|en|Collection of valuables is a collection considered to be a work in itself)}} +{{comment|nl|Een verzameling van kostbaarheden, die als een werk beschouwd wordt ). }} +{{comment|ur|قیمتی اشیاء کا مجموعہ ایک ایسا مجموعہ ہے جو اپنے آپ میں ایک کام سمجھا جاتا ہے۔}} +| rdfs:subClassOf = Work +}}OntologyClass:College200335549542021-09-09T09:36:24Z{{Class +| labels = +{{label|en|college}} +{{label|ga|coláiste}} +{{label|es|universidad}} +{{label|nl|college}} +{{label|de|College}} +{{label|fr|université}} +{{label|el|κολέγιο}} +{{label|ja|単科大学}} +{{label|ko|단과대학}} +{{label|pt|faculdade}} +{{label|ur|مدرسہ}} +| rdfs:subClassOf = EducationalInstitution, schema:CollegeOrUniversity +| owl:equivalentClass = +}}OntologyClass:CollegeCoach200336575432022-04-24T14:23:54Z{{Class +| labels = +{{label|en|college coach}} +{{label|ga|traenálaí coláiste}} +{{label|de|College-Trainer}} +{{label|el|προπονητής κολεγίου}} +{{label|fr|entraîneur universitaire}} +{{label|ko|대학 코치 }} +{{label|nl|school coach}} +{{label|ur|کھیل سکھانے والا}} +| rdfs:subClassOf = Coach +}}OntologyClass:Colour2002190553722021-09-11T19:28:23Z{{Class +| labels = + {{label|en|colour}} +{{label|ga|dath}} + {{label|da|farve}} + {{label|de|Farbe}} + {{label|el|χρώμα}} + {{label|fr|couleur}} + {{label|ko|색}} + {{label|nl|kleur}} + {{label|ja|色}} + {{label|pt|cor}} + {{label|ur|رنگ}} +| comments = +{{comment|en|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.}} +{{comment|ur|رنگ یا رنگ بصری ادراکی املاک ہے جو انسانوں میں سرخ ، پیلے ، نیلے اور دیگر نامی زمروں کے مطابق ہے۔ رنگ روشنی کے سپیکٹرم سے حاصل ہوتا ہے (روشنی کی تقسیم بمقابلہ طول موج) آنکھوں میں روشنی کے رسیپٹروں کی سپیکٹرمل حساسیت کے ساتھ تعامل کرتا ہے۔}} +| rdfs:subClassOf = owl:Thing +}}OntologyClass:CombinationDrug20011919576872022-04-25T11:29:18Z{{Class +| labels = +{{label|de|Kombinationspräparat}} +{{label|en|combination drug}} +{{label|nl|combinatiepreparaat}} +{{label|fr|préparation combinée}} +{{label|ur|منشیات کا مجموعہ}} +| comments = +{{comment|ur|ادویات جو کیمیکل کا مجموعہ ہیں۔‎}} +{{comment|en|Drugs that are a combination of chemicals‎}} +{{comment|en|Medikamente die mehrere Wirkstoffe enthalten}} +| rdfs:subClassOf = Drug +}}OntologyClass:Comedian200337575482022-04-24T14:29:47Z{{Class +| labels = +{{label|en|comedian}} +{{label|ga|fuirseoir}} +{{label|nl|komiek}} +{{label|de|Komiker}} +{{label|fr|comédien}} +{{label|el|κωμικός}} +{{label|pt|comediante}} +{{label|ja|お笑い芸人}} +{{label|ko|희극 배우}} +{{label|ur|مسخرا}} +| rdfs:subClassOf = Artist +}}OntologyClass:ComedyGroup2006475553792021-09-11T19:36:38Z{{Class +| labels = +{{label|en|Comedy Group}} +{{label|nl|cabaretgroep}} +{{label|ko|코미디 그룹}} +{{label|de|Komikergruppe}} +{{label|ja|お笑いグループ}} +{{label|ur| مزاحیہ گروہ }} +| rdfs:subClassOf = Group +}}OntologyClass:Comic2005813549742021-09-09T11:13:19Z{{Class +| labels = +{{label|en|comic}} +{{label|ga|greannán}} +{{label|de|Comic}} +{{label|el|κινούμενα σχέδια}} +{{label|it|fumetto}} +{{label|nl|stripverhaal}} +{{label|ja|漫画}} +{{label|fr|bande dessinée}} +{{label|es|historieta}} +{{label|ko|만화}} +{{label|ur|مزاحیہ}} +| rdfs:subClassOf = WrittenWork +| owl:equivalentClass = wikidata:Q245068 +}}OntologyClass:ComicStrip2008710575512022-04-24T14:35:09Z{{Class +| labels = + {{label|en|comic strip}} + {{label|fr|Bande dessinée}} + {{label|nl|stripverhaal (Amerikaanse wijze)}} + {{label|de|Comicstrip}} +{{label|ur|مزاحیہ خاکے}} +| rdfs:subClassOf = Comic +}}OntologyClass:ComicsCharacter200338553002021-09-11T11:52:47Z{{Class +| labels = +{{label|en|comics character}} +{{label|nl|stripfiguur (Amerikaans)}} +{{label|de|Comic Charakter}} +{{label|el|χαρακτήρας κινούμενων σχεδίων}} +{{label|fr|personnage de bandes dessinées}} +{{label|ja|コミックスのキャラクター}} +{{label|ur|مُضحِکہ خیزکردار}} +{{label|ko|만화애니 등장인물}} +{{label|pt|personagem de quadrinhos}} +| rdfs:subClassOf = FictionalCharacter +}}OntologyClass:ComicsCreator200339576892022-04-25T11:32:37Z{{Class +| labels = +{{label|en|comics creator}} +{{label|de|Comicautor}} +{{label|nl|striptekenaar}} +{{label|fr|créateur de bandes dessinées}} +{{label|el|δημιουργός κόμιξ}} +{{label|ko|만화가}} +{{label|ur|مزاحیہ تخلیق کار}} +{{label|ja|漫画家}} +| rdfs:subClassOf = Artist +}}OntologyClass:Community2007077575562022-04-24T14:42:59Z{{Class +| labels = +{{label|en|Community}} +{{label|fr|Communauté}} +{{label|ur|برادری}} + +| rdfs:subClassOf = PopulatedPlace +| comments = +{{comment|ur|کمیونٹی جانداروں، لوگوں، پودوں یا جانوروں کا ایک گروپ ہے جو ایک مشترکہ ماحول میں رہتے ہیں۔}} + + +{{comment|en| A community is a group of living organisms, people, plants or animals that live in a common environment. }} +{{comment|fr| Une communauté est un groupe d'organismes vivants, de personnes, de plantes ou d'animaux qui vivent dans un environnement commun. }} +{{comment|el| Κοινότητα είναι μία ομάδα ζώντων οργανισμών, ανθρώπων, φυτών ή ζώων που ζουν σε ένα κοινό περιβάλλον. }} +}}OntologyClass:Company200340551632021-09-10T11:51:36Z{{Class +| labels = +{{label|en|company}} +{{label|ga|comhlacht}} +{{label|es|compañía}} +{{label|da|firma}} +{{label|de|Unternehmen}} +{{label|fr|entreprise}} +{{label|es|empresa}} +{{label|el|εταιρία}} +{{label|pt|empresa}} +{{label|ko|회사}} +{{label|ja|会社}} +{{label|nl|bedrijf}} +{{label|ur|تِجارتی اِدارہ}} +| rdfs:subClassOf = Organisation +| owl:equivalentClass = wikidata:Q4830453 +}}OntologyClass:Competition2008061549852021-09-09T11:37:33Z{{Class +| labels = +{{label|en|competition}} +{{label|ga|comórtas}} +{{label|de|Wettbewerb}} +{{label|el|διαγωνισμός}} +{{label|nl|competitie}} +{{label|fr|compétition}} +{{label|ur|مقابلہ}} +| rdfs:subClassOf = Event +}}OntologyClass:ConcentrationCamp20010248561262021-11-06T09:10:02Z{{Class +| labels = +{{label|en|Concentration camp}} +{{label|ur|حراستی کیمپ}} +{{label|de|Konzentrationslager}} +{{label|nl|concentratiekamp}} +{{label|fr|camp de concentration}} +| rdfs:subClassOf = Place +| rdfs:comment@en = camp in which people are imprisoned or confined, commonly in large groups, without trial. +Includes concentration, extermination, transit, detention, internment, (forced) labor, prisoner-of-war, Gulag; Nazi camps related to the Holocaust +}}OntologyClass:Congressman200341553832021-09-11T19:41:20Z{{Class +| labels = +{{label|en|congressman}} +{{label|nl|congressist}} +{{label|de|Abgeordneter}} +{{label|el|βουλευτής}} +{{label|fr|membre du Congrès}} +{{label|ko|하원 의원}} +{{label|ur|مجلس کے شرکاء}} + +| rdfs:subClassOf = Politician +}}OntologyClass:Conifer200342549952021-09-09T11:52:48Z{{Class +| labels = +{{label|en|conifer}} +{{label|ga|cónaiféar}} +{{label|de|Konifere}} +{{label|el|κωνοφόρο}} +{{label|fr|conifères}} +{{label|fr|conifere}} +{{label|ja|球果植物門}} +{{label|nl|conifeer}} +{{label|es|conífera}} +{{label|ko|침엽수}} +{{label|ur|صنوبر کی قِسم کا پودا}} +| rdfs:subClassOf = Plant +|comments = +{{comment|ur| عروقی (نالی دار)پودے ہیں ، بیج ایک شنک میں موجود ہوتے ہیں۔ وہ لکڑی کے پودے ہیں۔}} +{{comment|it|Le conifere sono piante vascolari, con semi contenuti in un cono. Sono piante legnose, perlopiù sono alberi e solo poche sono arbusti. +<ref>http://it.wikipedia.org/wiki/Pinophyta</ref>}} +{{comment|es|Las coníferas son plantas vasculares, con las semillas contenidas en un cono. Son plantas leñosas.}} +}} +== References == +<references />OntologyClass:Constellation2004549561282021-11-06T09:12:30Z{{Class +| rdfs:subClassOf = CelestialBody +| labels = +{{label|en|constellation}} +{{label|ur|نکشتر}} +{{label|ga|réaltbhuíon}} +{{label|es|constelación}} +{{label|de|Sternbild}} +{{label|el|αστερισμός}} +{{label|fr|constellation}} +{{label|it|costellazione}} +{{label|tr|takımyıldızı}} +{{label|nl|samenstel}} +{{label|ja|星座}} +{{label|ko|별자리}} +|comments = +{{comment|it|Una costellazione è ognuna delle 88 parti in cui la sfera celeste è convenzionalmente suddivisa allo scopo di mappare le stelle.<ref>http://it.wikipedia.org/wiki/Costellazione</ref>}} +| owl:equivalentClass = wikidata:Q8928 +}} +== References == +<references />OntologyClass:Contest2008060576262022-04-24T18:12:48Z{{Class +| labels = +{{label|en|contest}} +{{label|ga|comórtas}} +{{label|nl|wedstrijd}} +{{label|de|Wettbewerb}} +{{label|el|διαγωνισμός}} +{{label|ja|コンテスト}} +{{label|fr|concours}} +{{label|ur|تکرار کرنا}} +| rdfs:subClassOf = Competition +| owl:equivalentClass = wikidata:Q476300 +}}OntologyClass:Continent200343550112021-09-09T12:15:00Z{{Class +| labels = +{{label|en|continent}} +{{label|ga|ilchríoch}} +{{label|de|Kontinent}} +{{label|el|ήπειρος}} +{{label|fr|continent}} +{{label|it|continente}} +{{label|es|continente}} +{{label|ko|대륙}} +{{label|ja|大陸}} +{{label|nl|continent}} +{{label|ur|براعظم}} +| rdfs:subClassOf = PopulatedPlace +| owl:equivalentClass = schema:Continent +|comments = +{{comment|ur|براعظم زمین کا ایک بڑا علاقہ ہے جو زمین کی پرت سے نکلا ہے ، درحقیقت یہ ان سب سے بڑی تقسیم ہے جس کے ساتھ ابھرتی ہوئی زمینیں تقسیم کی گئی ہیں۔}} +{{comment|it|Un continente è una grande area di terra emersa della crosta terrestre, è anzi la più vasta delle ripartizioni con le quali si suddividono le terre emerse.<ref>http://it.wikipedia.org/wiki/Continente</ref>}} +{{comment|es|Un continente es una gran área de tierra emergida de la costra terrestre.}} +}} +== References == +<references />OntologyClass:ControlledDesignationOfOriginWine2005831507132016-04-13T14:31:10Z{{Class +| labels = +{{label|en|Controlled designation of origin wine}} +{{label|de|kontrollierte Ursprungsbezeichnung für Qualitätsweine}} +{{label|nl|certificaat van herkomst voor kwaliteitswijnen}} +{{label|el|Ελεγμένη ονομασία προέλευσης κρασιού}} +{{label|fr|vin A.O.C.}} +{{label|it|vino D.O.C.}} +| comments = +{{comment|en|A quality assurance label for wines}} +{{comment|el|Μια ετικέτα διασφάλισης της ποιότητας των οίνων}} +| rdfs:subClassOf = Wine +}}OntologyClass:Convention200344553862021-09-11T19:46:51Z{{Class +| labels = +{{label|en|convention}} +{{label|nl|congres}} +{{label|de|Konvention}} +{{label|el|συνέδριο}} +{{label|fr|congrès}} +{{label|ko|컨벤션}} +{{label|ur|مجلس}} +| rdfs:subClassOf = SocietalEvent +}}OntologyClass:ConveyorSystem20011096550162021-09-09T12:25:24Z{{Class +| labels = +{{label|en|conveyor system}} +{{label|de|Fördersystem}} +{{label|fr|système convoyeur}} +{{label|nl|transportsysteem}} +{{label|ur|نقل و حمل کے نظام}} +| specificProperties = +{{SpecificProperty | ontologyProperty = diameter | unit = metre }} +{{SpecificProperty | ontologyProperty = mass | unit = kilogram }} +{{SpecificProperty | ontologyProperty = length | unit = millimetre }} +{{SpecificProperty | ontologyProperty = height | unit = millimetre }} +{{SpecificProperty | ontologyProperty = weight | unit = kilogram }} +{{SpecificProperty | ontologyProperty = width | unit = millimetre }} +| owl:disjointWith = Person +| rdfs:subClassOf = On-SiteTransportation +}}OntologyClass:Country200345552642021-09-11T05:54:14Z{{Class +| labels = +{{label|en|country}} +{{label|ga|tír}} +{{label|nl|land}} +{{label|sl|država}} +{{label|el|χώρα}} +{{label|da|land}} +{{label|de|Staat}} +{{label|fr|pays}} +{{label|es|país}} +{{label|ru|Государство}} +{{label|ko|나라}} +{{label|ja|国}} +{{label|ur|ملک}} +| rdfs:subClassOf = PopulatedPlace +| owl:equivalentClass = schema:Country, wikidata:Q6256 +}}OntologyClass:CountrySeat2009253576292022-04-24T18:20:49Z{{Class +| labels = +{{label|en|country estate}} +{{label|de|Landgut}} +{{label|nl|buitenplaats}} +{{label|ur|ملک کی نشست}} +| comments = +{{comment|en|A country seat is a rural patch of land owned by a land owner.}} +{{comment|nl|Een buitenplaats is een landgoed.}} +{{comment|ur|یک کنٹری سیٹ زمین کا ایک دیہی پیچ ہے جو زمین کے مالک کی ملکیت ہے}} + +| rdfs:subClassOf = Place +}}OntologyClass:Covid1920013108569732022-03-09T10:33:31Z{{Class +| labels = + {{label|en|COVID-19 pandemic}} + {{label|fr|Pandémie COVID-19}} + {{label|zh|2019冠状病毒病疫情}} + {{label|ur|کورونا وائرس2019}} +| comments = + {{comment|ur|کورونا وائرس کی بیماری 2019 کی جاری وبائی بیماری۔}} + {{comment|en|Ongoing pandemic of coronavirus disease 2019}} + {{comment|fr|Pandémie actuelle de maladie coronavirus 2019}} + {{comment|zh|2019冠狀病毒病疫情是一次由严重急性呼吸系统综合征冠状病毒导致的2019冠状病毒病所引發的全球大流行疫情}} +| rdfs:subClassOf = owl:Thing +| rdfs:domain = owl:Thing +| rdfs:range = Covid19 +| owl:equivalentClass = wikidata:Q84263196 + +}}OntologyClass:Crater2008694562692022-02-16T08:45:58Z{{Class +| labels = +{{label|en|crater}} +{{label|ur|دہانه}} +{{label|ga|cráitéar}} +{{label|de|Krater}} +{{label|el|κρατήρας}} +{{label|fr|cratère}} +{{label|it|cratere}} +{{label|nl|krater}} +{{label|pt|cratera}} +{{label|ja|クレーター}} + +| rdfs:subClassOf = NaturalPlace +}}OntologyClass:CricketGround2008402553902021-09-11T20:16:28Z{{Class +| labels = +{{label|en|cricket ground}} +{{label|de|Cricketfeld}} +{{label|nl|cricketveld}} +{{label|it|campo da cricket}} +{{label|ur|کرکٹ کا میدان}} +| rdfs:subClassOf = SportFacility +}}OntologyClass:CricketLeague2002167550322021-09-09T12:56:48Z{{Class +| labels = +{{label|en|cricket league}} +{{label|ga|sraith cruicéid}} +{{label|de|Cricket-Liga}} +{{label|es|liga de cricket}} +{{label|el|κύπελλο κρικετ}} +{{label|fr|ligue de cricket}} +{{label|nl|cricket competitie}} +{{label|ko|크리켓 대회 }} +{{label|ja|クリケットリーグ }} +{{label|ur|کرکٹ انجمن}} +| comments = +{{comment|en|a group of sports teams that compete against each other in Cricket}} +{{comment|ur|کھیلوں کی ٹیموں کا ایک گروپ جو کرکٹ میں ایک دوسرے کے خلاف مقابلہ کرتے ہیں۔}} +| rdfs:subClassOf = SportsLeague +}}OntologyClass:CricketTeam2008249584192022-05-14T15:35:50Z{{Class +| labels = +{{label|en|cricket team}} +{{label|fr|équipe de cricket}} +{{label|ga|foireann cuircéid}} +{{label|el|ομάδα κρίκετ}} +{{label|de|Cricketmannschaft}} +{{label|it|squadra di cricket}} +{{label|nl|cricketteam}} +{{label|ja|クリケットチーム}} +{{label|ur|کرکٹ جماعت}} +| rdfs:subClassOf = SportsTeam +}}OntologyClass:Cricketer200346576352022-04-24T18:32:48Z{{Class +| labels = + {{label|en|cricketer}} +{{label|ga|imreoir cruicéid}} + {{label|de|Cricketspieler}} + {{label|el|παίκτης του κρίκετ}} + {{label|fr|joueur de cricket}} + {{label|nl|cricketspeler}} + {{label|ko|크리켓 선수}} + {{label|ja|クリケット選手}} + {{label|ur| کرکٹ کا کھلاڑی}} +| rdfs:subClassOf = Athlete +}}OntologyClass:Criminal200347550342021-09-09T13:01:14Z{{Class +| labels = + +{{label|en|criminal}} +{{label|ga|coirpeach}} +{{label|de|Verbrecher}} +{{label|it|delinquente}} +{{label|pt|criminoso}} +{{label|fr|criminel}} +{{label|nl|crimineel}} +{{label|el|εγκληματίας}} +{{label|es|criminal}} +{{label|ko|범죄인}} +{{label|ja|犯罪}} +{{label|ur|مجرم}} +| rdfs:subClassOf =Person +| owl:equivalentClass = wikidata:Q2159907 + + +}}OntologyClass:CrossCountrySkier20011179575742022-04-24T15:43:37Z{{Class +| labels = +{{label|en|cross-country skier}} +{{label|nl|langlaufer}} +{{label|de|Skilangläufer}} +{{label|ur|کراس کنٹری اسکیئر}} +| rdfs:subClassOf = WinterSportPlayer +}}OntologyClass:Crustacean200348553962021-09-11T20:29:02Z{{Class +| labels = +{{label|en|crustacean}} +{{label|ga|crústach}} +{{label|de|Krebstier}} +{{label|el|αστρακόδερμο}} +{{label|fr|crustacés}} +{{label|ja|甲殻類}} +{{label|nl|schaaldier}} +{{label|ko|갑각류}} +{{label|ur|خول دارجانور}} +| rdfs:subClassOf = Animal +}}OntologyClass:CultivatedVariety2006251576982022-04-25T11:51:43Z{{Class +| labels = +{{label|en|cultivar (cultivated variety)}} +{{label|nl|cultuurgewas}} +{{label|ga|saothróg}} +{{label|de|Sorte ( kultivierte Sorte )}} +{{label|el|καλλιεργούμενη ποικιλία}} +{{label|ko|재배 품종 }} +{{label|ur|کاشت شدہ مختلف قسم}} +| comments = +{{comment|ur|کاشتکار ایک پودا یا پودوں کا گروہ ہے جو مطلوبہ خصوصیات کے لیے منتخب کیا جاتا ہے جسے پھیلاؤ کے ذریعے برقرار رکھا جا سکتا ہے۔ ایک پودا جس کی اصل یا انتخاب بنیادی طور پر جان بوجھ کر انسانی سرگرمی کی وجہ سے ہے۔}} +{{comment|en|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.}} +{{comment|nl|Een plantensoort die voor menselijk gebruik wordt geteeld en uit wilde planten is veredeld}} +| rdfs:subClassOf = Plant +| owl:equivalentClass = wikidata:Q4886 +}}OntologyClass:Curler2006223575802022-04-24T15:57:13Z{{Class +| labels = +{{label|en|curler}} +{{label|de|Curlingspieler}} +{{label|el|μπικουτί}} +{{label|nl|curlingspeler}} +{{label|ko|컬링 선수}} +{{label|ja|カーリング選手}} +{{label|ur|کرلنگ کا کھیل کھیلنے والا}} +| rdfs:subClassOf = WinterSportPlayer +}}OntologyClass:CurlingLeague2002168553982021-09-11T20:51:27Z{{Class +| labels = +{{label|en|curling league}} +{{label|ga|sraith curlála}} +{{label|de|Curling-Liga}} +{{label|es|liga de curling}} +{{label|el|πρωτάθλημα curling}} +{{label|fr|ligue de curling}} +{{label|nl|curling competitie}} +{{label|ur|پتھر کنڈلی کھيل کی انجمن}} +{{label|ko|컬링 리그 }} +| comments = +{{comment|en|a group of sports teams that compete against each other in Curling}} +{{comment|ur|کھیلوں کی ٹیموں کا ایک گروپ جو کرلنگ میں ایک دوسرے کے خلاف مقابلہ کرتے ہیں۔}} +| rdfs:subClassOf = SportsLeague +}}OntologyClass:Currency200349550412021-09-09T13:18:08Z{{Class +| labels = +{{label|be|Валюта}} +{{label|de|Währung}} +{{label|en|currency}} +{{label|ga|airgeadra}} +{{label|el|νόμισμα}} +{{label|fr|devise}} +{{label|ko|통화}} +{{label|nl|muntsoort}} +{{label|ru|Валюта}} +{{label|ur|سکہ رائج الوقت}} + +| rdfs:subClassOf = owl:Thing +}}OntologyClass:Cycad200350575822022-04-24T16:08:17Z{{Class +| labels = +{{label|en|cycad}} +{{label|ga|cíocáid}} +{{label|nl|cycadeeën}} +{{label|de|Palmfarn}} +{{label|el|φοινικόθαμνος}} +{{label|fr|cycadophytes}} +{{label|pt|cicadácea}} +{{label|ja|ソテツ門}} +{{label|kr|소철류}} +{{label|ur|کرف نخلی}} +| rdfs:subClassOf = Plant +}}OntologyClass:CyclingCompetition2005842566692022-02-28T09:51:32Z{{Class +| labels = +{{label|en|cycling competition}} +{{label|da|cykelløb}} +{{label|de|Radrennen}} +{{label|el|διαγωνισμός ποδηλασίας}} +{{label|es|Prueba ciclista}} +{{label|fr|course cycliste}} +{{label|it|gara ciclistica}} +{{label|nl|wielercompetitie}} +{{label|ko|사이클 대회}} +{{label|ur|سائیکلنگ مقابلہ}} +| rdfs:subClassOf = SportsEvent +}}OntologyClass:CyclingLeague2002169584342022-05-14T16:47:04Z{{Class +| labels = +{{label|en|cycling league}} +{{label|es|liga de ciclismo}} +{{label|de|Rad-Liga}} +{{label|el|Ομοσπονδία Ποδηλασίας}} +{{label|fr|ligue de cyclisme}} +{{label|nl|wielerronde}} +{{label|ko|사이클 리그}} +{{label|ur|سائیکل سوار کی انجمن}} +| comments = +{{comment|ur|کھیلوں کی ٹیموں کا ایک گروپ جو سائیکلنگ میں ایک دوسرے کے خلاف مقابلہ کرتا ہے۔}} +{{comment|en|a group of sports teams that compete against each other in Cycling}} +| rdfs:subClassOf = SportsLeague +}}OntologyClass:CyclingRace2008128575852022-04-24T16:15:50Z{{Class +| labels = +{{label|en|cycling race}} +{{label|fr|course cycliste}} +{{label|da|cykelløb}} +{{label|de|Radrennen}} +{{label|el|αγώνας ποδηλασίας}} +{{label|it|corsa ciclistica}} +{{label|nl|wielerwedstrijd}} +{{label|ur|سائیکلنگ دوڑ}} +| rdfs:subClassOf = Race +| owl:equivalentClass = wikidata:Q15091377 +}}OntologyClass:CyclingTeam2007356584302022-05-14T16:39:40Z{{Class +| labels = +{{label|en|cycling team}} +{{label|fr|équipe cycliste}} +{{label|ga|foireann rothaíochta}} +{{label|nl|wielerploeg}} +{{label|da|cykelhold}} +{{label|de|Radsportteam}} +{{label|el|ομάδα ποδηλασίας}} +{{label|it|squadra di ciclismo}} +{{label|ko|사이클 팀 }} +{{label|ur|سائیکلنگ جماعت}} +| comments = +| rdfs:subClassOf = SportsTeam +}}OntologyClass:Cyclist200351551852021-09-10T17:16:25Z{{Class +| labels = + {{label|en|cyclist}} +{{label|ga|rothaí}} + {{label|da|cyklist}} + {{label|de|Radfahrer}} + {{label|el|ποδηλάτης}} + {{label|fr|cycliste}} + {{label|pt|ciclista}} + {{label|es|ciclista}} + {{label|nl|wielrenner}} + {{label|ko|사이클 선수}} + {{label|ja|自転車選手}} + {{label|ur|سائیکل سوار}} +| rdfs:subClassOf = Athlete +}}OntologyClass:D0:Activity2009394582202022-05-13T08:59:53Z{{Class +| labels = +{{label|en|activity}} +{{label|da|aktivitet}} +{{label|de|Aktivität}} +{{label|it|attività}} +{{label|fr|activité}} +{{label|ga|gníomhaíocht}} +{{label|nl|activiteit}} +{{label|pl|aktywność}} +{{label|ur|سرگرمی}} +| comments = +{{comment|en|Any action or task, planned or executed by an agent intentionally causing and participating in it. E.g. swimming, shopping, communicating, etc.}} +{{comment|ur|کوئی بھی عمل یا کام، جس کی منصوبہ بندی کی گئی ہو یا کسی ایجنٹ کے ذریعہ جان بوجھ کر اس میں حصہ لے کر انجام دیا گیا ہو۔ جیسے تیراکی، خریداری، بات چیت، وغیرہ}} +| owl:equivalentClass = wikidata:Q1914636 +}}OntologyClass:D0:سرگرمی20014013582192022-05-13T08:59:49Z{{Class +| labels = +{{label|ur|سرگرمی}} +| comments = +{{comment|ur|کوئی بھی عمل یا کام، جس کی منصوبہ بندی کی گئی ہو یا کسی ایجنٹ کے ذریعہ جان بوجھ کر اس میں حصہ لے کر انجام دیا گیا ہو۔ جیسے تیراکی، خریداری، بات چیت، وغیرہ}} +| owl:equivalentClass = wikidata:Q1914636 +}}OntologyClass:DBpedian20012284566942022-02-28T10:59:48Z{{Class +| labels = +{{label|en|DBpedian}} +{{label|fr|DBpédien}} +{{label|ur|ڈی بی پیڈین}} +| rdfs:subClassOf = Person +}}OntologyClass:DTMRacer20011168551942021-09-10T17:33:58Z{{Class +| labels = +{{label|en|DTM racer}} +{{label|nl|DTM-coureur}} +{{label|de|DTM Rennfahrer}} +{{label|ur|جرمن ٹورنگ کار ماسٹرزریسر}} + + +| rdfs:subClassOf = RacingDriver +}}OntologyClass:Dam2008353582212022-05-13T09:04:32Z{{Class +| labels = +{{label|en|dam}} +{{label|ga|damba}} +{{label|de|Damm}} +{{label|el|φράγμα}} +{{label|nl|dam}} +{{label|fr|barrage}} +{{label|it|diga}} +{{label|ja|ダム}} +{{label|ur|ڈیم}} +| rdfs:subClassOf = Infrastructure +| comments = +{{comment|ur|ڈیم ایک ایسا ڈھانچہ ہے جو پانی کے قدرتی بہاؤ کو روکتا، ری ڈائریکٹ یا سست کر دیتا ہے۔}} +{{comment|el|Ένα φράγμα είναι μια κατασκευή που εμποδίζει, ανακατευθύνει ή επιβραδύνει την φυσική ροή υδάτων.}} +{{comment|en|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.}} +| owl:equivalentClass = wikidata:Q12323 +}}OntologyClass:Dancer2007990554202021-09-12T17:53:28Z{{Class +| labels = +{{label|en|dancer}} +{{label|ga|damhsóir}} +{{label|fr|danceur}} +{{label|de|Tänzer}} +{{label|el|χορευτής}} +{{label|it|ballerino}} +{{label|nl|danser}} +{{label|ja|ダンサー}} +{{label|pl|tancerz}} +{{label|ur|رقص کرنے والا}} +| rdfs:subClassOf = Artist +}}OntologyClass:DartsPlayer2006211573642022-03-31T12:23:22Z{{Class +| labels = + {{label|en|darts player}} + {{label|fr|joueur de fléchettes}} + {{label|de|Dartspieler}} + {{label|el|παίκτης βελάκιων}} + {{label|nl|darter}} + {{label|ko|다트 선수}} + {{label|ur|نيزہ باز}} +| rdfs:subClassOf = Athlete +}}OntologyClass:Database2003133550572021-09-09T14:20:06Z{{Class +| labels = + {{label|en|Database}} + {{label|ga|bunachar sonraí}} + {{label|de|Datenbank}} + {{label|el|βάση δεδομένων}} + {{label|fr|Base de données}} + {{label|nl|database}} + {{label|pt|Banco de dados}} + {{label|ja|データベース}} + {{label|ko|데이터베이스}} + {{label|ur|ریکارڈرز_پر_مبنی_ایک_فائل}} +| rdfs:subClassOf = Work, dul:InformationObject +| owl:equivalentClass = +}}OntologyClass:Deanery2006480554222021-09-12T18:07:34Z{{Class +| labels = +{{label|en|deanery}} +{{label|de|Dekanat}} +{{label|el|κοσμητεία}} +{{label|nl|proosdij}} +{{label|ur|عمید کا عہدہ}} +| comments = +{{comment|en|The intermediate level of a clerical administrative body between parish and diocese}} +{{comment|ur|گرجا گھر کا حلقہ اور بشپ کے دائرہ اختیار کا حلقہ کے مابین علمی انتظامی ادارے کی انٹرمیڈیٹ سطح۔}} +| rdfs:subClassOf = ClericalAdministrativeRegion +| owl:equivalentClass = +}}OntologyClass:Decoration2005771552102021-09-10T18:07:40Z{{Class +|labels = + {{label|en|decoration}} +{{label|de|Auszeichnung}} + {{label|el|διακόσμηση}} + {{label|it|onorificenza}} + {{label|nl|onderscheiding}} + {{label|fr|décoration}} + {{label|es|condecoración}} + {{label|ja|勲章}} + {{label|ko|장식}} +{{label|ur|سجاوٹ}} +|comments = +{{comment|ur|ایک شے ، جیسے تمغہ یا آرڈر ، جو وصول کنندہ کو عزت سے نوازنے کے لیے دیا جاتا ہے۔}} + {{comment|en|An object, such as a medal or an order, that is awarded to honor the recipient ostentatiously.<ref name="decoration">http://en.wikipedia.org/wiki/Decoration</ref>}} + {{comment|it|Per onorificenza si intende un segno di onore che viene concesso da un'autorità in riconoscimento di particolari atti benemeriti.<ref name="onorificenza">http://it.wikipedia.org/wiki/Onorificenza</ref>}} + {{comment|fr|Une distinction honorifique en reconnaissance d'un service civil ou militaire .<ref name="décoration">http://fr.wikipedia.org/wiki/D%C3%A9coration_%28honorifique%29</ref>}} +| rdfs:subClassOf = Award +}} +==References== +<references/>OntologyClass:Deity2006672582262022-05-13T09:13:42Z{{Class +| labels = +{{label|en|deity}} +{{label|de|Gottheit}} +{{label|el|θεότητα}} +{{label|ga|dia}} +{{label|ja|神}} +{{label|nl|godheid}} +{{label|pl|bóstwo}} +{{label|ko|이집트 신}} +{{label|ur|دیوتا}} +| rdfs:subClassOf = Agent +| owl:equivalentClass = wikidata:Q178885 +}}OntologyClass:Demographics2007913582282022-05-13T09:17:22Z{{Class +| labels = +{{label|en|demographics}} +{{label|ga|déimeagrafaic}} +{{label|el|δημογραφία}} +{{label|de|Demografie}} +{{label|nl|demografie}} +{{label|fr|démographie}} +{{label|ja|人口動態}} +{{label|ur|آبادیاتی}} +| comments = +{{comment|en|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")}} +{{comment|ur|کسی جگہ کی آبادی۔ ان خصوصیات کا استعمال کرتا ہے: آبادی کی کل، سال (جب ماپا جاتا ہے، آبادی کا سال)، درجہ (اس جگہ کا ترتیب اس کے بہن بھائیوں کے درمیان ایک ہی سطح پر)، نام (علاقہ آبادی کے لحاظ سے ماپا جاتا ہے، جیسے: "مقام"، "میونسپلٹی" یا "کمیٹیٹ"}} +| rdfs:subClassOf = owl:Thing +}}OntologyClass:Department2007015552162021-09-10T18:12:48Z{{Class +| labels = +{{label|en|department}} +{{label|ga|roinn}} +{{label|nl|departement}} +{{label|de|Distrikt}} +{{label|es|Distrito}} +{{label|fr|département}} +{{label|el|τμήμα}} +{{label|ko|부서}} +{{label|ur|شعبہ}} +| rdfs:subClassOf = GovernmentalAdministrativeRegion +}}OntologyClass:Depth2007924583032022-05-13T16:14:31Z{{Class +| labels = +{{label|en|depth}} +{{label|da|dybde}} +{{label|de|Tiefe}} +{{label|fr|profondeur}} +{{label|el|βάθος}} +{{label|nl|diepte}} +{{label|ja|深度}} +{{label|ur|گہرائی}} +}}OntologyClass:Deputy2002330583072022-05-13T16:40:04Z{{Class +| labels = +{{label|en|deputy}} +{{label|de|Stellvertreter}} +{{label|el|αναπληρωτής}} +{{label|es|diputado}} +{{label|fr|député}} +{{label|nl|gedeputeerde}} +{{label|ja|国会議員}} +{{label|ur|نائب}} +| rdfs:subClassOf = Politician +}}OntologyClass:Desert20013273552422021-09-10T19:09:53Z{{Class + | labels = +{{label|en|Desert}} +{{label|ga|gaineamhlach}} + {{label|de|Wüste}} + {{label|es|Desierto}} + {{label|el|Έρημος}} + {{label|fr|Désert}} + {{label|nl|woestijn}} +{{label|pt|deserto}} +{{label|ja|砂漠}} + {{label|ur|ریگستان}} +| comments = +{{comment|ur|زمین کا بنجر علاقہ جہاں کم بارش ہوتی ہے۔}} +{{comment | en | Barren land where there is less rain.}} + +| rdfs:subClassOf = NaturalPlace +}}OntologyClass:Device200352551982021-09-10T17:40:42Z{{Class +| labels = +{{label|en|device}} +{{label|ga|gléas}} +{{label|el|συσκευη}} +{{label|de|Gerät}} +{{label|fr|appareil}} +{{label|ja|デバイス}} +{{label|nl|apparaat}} +{{label|ko|장치}} +{{label|ur|آلہ}} +{{label|pt|dispositivo}} +| rdfs:subClassOf = owl:Thing +}}OntologyClass:DigitalCamera2006551583052022-05-13T16:34:14Z{{Class +| labels = + {{label|en|digital camera}} + {{label|ga|ceamara digiteach}} + {{label|de|Digitalkamera}} + {{label|el|ψηφιακή φωτογραφική μηχανή}} + {{label|fr|appareil photo numérique}} + {{label|nl|digitale camera}} + {{label|ko|디지털 카메라}} +{{label|ur|ڈیجیٹل کیمرہ}} +| rdfs:subClassOf = Camera +| comments = +{{comment|el| Η ψηφιακή φωτογραφική μηχανή είναι συσκευή η οποία καταγράφει εικόνες με ηλεκτρονικό τρόπο, σε αντίθεση με την συμβατική φωτογραφική μηχανή, η οποία καταγράφει εικόνες με χημικές και μηχανικές διαδικασίες.}} +{{comment|fr|Un appareil photographique numérique (ou APN) est un appareil photographique qui recueille la lumière sur un capteur photographique électronique, plutôt que sur une pellicule photographique, et qui convertit l'information reçue par ce support pour la coder numériquement.}} +{{comment|ur|ڈیجیٹل کیمرہ ایک ایسا آلہ ہے جو روایتی کیمرہ کے برعکس الیکٹرانک طور پر تصاویر کھینچتا ہے، جو کیمیائی اور مکینیکل عمل سے تصاویر کھینچتا ہے۔}} +}}OntologyClass:Dike20011550552432021-09-10T19:25:01Z{{Class +| labels = +{{label|en|dike}} +{{label|nl|dijk}} +{{label|fr|levée}} +{{label|it|diga}} +{{label|ja|堤防}} +{{label|ur|بند}} + +| rdfs:subClassOf = Infrastructure +| comments = +{{comment|ur|بند ایک لمبی قدرتی طور پر واقع رکاوٹ یا مصنوعی طور پر تعمیر شدہ ذخیرہ یا دیوار ہے ، جو پانی کی سطح کو کنٹرول کرتی ہے۔}} +{{comment|en|A dike is an elongated naturally occurring ridge or artificially constructed fill or wall, which regulates water levels}} +}}OntologyClass:Diocese2006246583092022-05-13T16:45:26Z{{Class +| labels = +{{label|en|diocese}} +{{label|ga|deoise}} +{{label|nl|bisdom}} +{{label|fr|diocèse}} +{{label|de|Diözese}} +{{label|ko|교구}} +{{label|el|επισκοπή}} +{{label|ja|教区}} +{{label|ur|بشپ کے تحت حلقہ}} +| comments = {{comment|en|District or see under the supervision of a bishop.}} +{{comment|ur|ڈسٹرکٹ یا ایک بشپ کی نگرانی میں دیکھیں۔}} +| rdfs:subClassOf = ClericalAdministrativeRegion +}}OntologyClass:Diploma2007842583112022-05-13T16:50:22Z{{Class +| labels = +{{label|en|diploma}} +{{label|ga|dioplóma}} +{{label|de|Diplom}} +{{label|fr|diplôme}} +{{label|nl|diploma}} +{{label|el|δίπλωμα}} +{{label|ja|卒業証明書}} +{{label|ur|سند}} +}}OntologyClass:Disease200353552502021-09-10T19:42:44Z{{Class +| labels = + {{label|da|sygdom}} + {{label|de|Krankheit}} + {{label|en|disease}} +{{label|ga|galar}} + {{label|nl|ziekte}} + {{label|el|ασθένεια}} + {{label|fr|maladie}} + {{label|ko|질병}} + {{label|ja|病気}} + {{label|it|malattia}} +{{label|ur|بیماری}} +| rdfs:subClassOf = owl:Thing +| owl:equivalentClass = wikidata:Q12136 +}}OntologyClass:DisneyCharacter2007763583152022-05-13T16:59:24Z{{Class +| labels = +{{label|en|disney character}} +{{label|fr|personnage de Disney}} +{{label|ga|carachtar Disney}} +{{label|nl|Disneyfiguur}} +{{label|de|Disneyfigur}} +{{label|el|χαρακτήρες της ντίσνευ}} +{{label|ur|ڈزنی کے کردار}} +|comments= +{{comment|ur|امریکی فلم اور اینی میٹیڈ فلمیں بنانے والی کمپنی کے بنائے ہوے کارٹون کردار}} +| rdfs:subClassOf = FictionalCharacter +}}OntologyClass:District2006768559582021-09-18T06:22:31Z{{Class +| labels = +{{label|en|district}} +{{label|ga|ceantar}} +{{label|nl|district}} +{{label|el|περιοχή}} +{{label|de|Bezirk}} +{{label|fr|arrondissement}} +{{label|ja|地区}} + {{label|id|kecamatan}} + {{label|ko|구}} +{{label|ur|ضلع}} +| comments = + {{comment|id|bagian wilayah administratif dibawah kabupaten}} +{{comment|ur|ضلع کے تحت انتظامی علاقے کا حصہ}} +| rdfs:subClassOf = GovernmentalAdministrativeRegion +}}OntologyClass:DistrictWaterBoard2006496552512021-09-10T20:00:46Z{{Class +| labels = +{{label|en|district water board}} +{{label|nl|waterschap}} +{{label|de|Bezirkwasserwirtschaftsamt}} +{{label|ur|پانی کا ضلعی اقتدار}} +| comments = + +{{comment|ur|تحفظ ،سطحی پانی کے انتظام کے لیے وقف سرکاری ایجنسی}} + +{{comment|en|Conservancy, governmental agency dedicated to surface water management}} +| rdfs:subClassOf = GovernmentalAdministrativeRegion +| owl:equivalentClass = +}}OntologyClass:Document2009579552412021-09-10T19:03:29Z{{Class +| labels= +{{label|en|document}} +{{label|ga|cáipéis}} +{{label|fr|document}} +{{label|da|dokument}} +{{label|de|Dokument}} +{{label|el|έγγραφο}} +{{label|it|documento}} +{{label|ja|ドキュメント}} +{{label|nl|document}} +{{label|ur|دستاویز}} +| comments= +{{comment|ur|کوئی بھی دستاویز۔}} +{{comment|en|Any document}} +| rdfs:subClassOf = Work +| owl:equivalentClass = foaf:Document +}}OntologyClass:DocumentType2008254583172022-05-13T17:31:41Z{{Class +| labels= +{{label|en|Document Type}} +{{label|fr|type de document}} +{{label|ga|cineál cáipéise}} +{{label|de|Dokumentenart}} +{{label|el|τύπος εγγράφου}} +{{label|nl|documenttype}} +{{label|ur|دستاویز کی قسم}} +| comments= +{{comment|en|type of document (official, informal etc.)}} +{{comment|nl|documenttype}} +{{comment|ur|دستاویز کی قسم (سرکاری، غیر رسمی وغیرہ}} +| rdfs:subClassOf = Type +| specificProperties = +}}OntologyClass:Dog2006770552532021-09-10T20:03:18Z{{Class +| labels = +{{label|en|dog}} +{{label|ga|madra}} +{{label|fr|chien}} +{{label|da|hund}} +{{label|de|Hund}} +{{label|el|σκύλος}} +{{label|nl|hond}} +{{label|ja|イヌ}} +{{label|ko|개}} +{{label|ur|کتا}} +| rdfs:subClassOf = Mammal +| owl:disjointWith = Cat +| owl:equivalentClass = wikidata:Q25324 +}}OntologyClass:Drama2006832552592021-09-10T20:14:10Z{{Class +| labels = +{{label|en|drama}} +{{label|ga|dráma}} +{{label|nl|drama}} +{{label|fr|drame}} +{{label|el|δράμα}} +{{label|de|Drama}} +{{label|ko|드라마}} +{{label|ja|ドラマ}} +{{label|ur|ناٹک}} +| rdfs:subClassOf = WrittenWork +| owl:equivalentClass = wikidata:Q25372 +}}OntologyClass:Drug200354583262022-05-13T17:45:46Z{{Class +| labels = +{{label|de|Droge}} +{{label|en|drug}} +{{label|ga|druga}} +{{label|el|φάρμακο}} +{{label|fr|médicament}} +{{label|ko|약}} +{{label|ja|薬物}} +{{label|ur|نشے کی دوا}} +{{label|nl|geneesmiddel}} +| specificProperties = {{SpecificProperty | ontologyProperty = meltingPoint | unit = kelvin }} + {{SpecificProperty | ontologyProperty = boilingPoint | unit = kelvin }} +| rdfs:subClassOf = ChemicalSubstance +| owl:equivalentClass = wikidata:Q8386 +}}OntologyClass:Earthquake20011242556302021-09-16T12:20:17Z{{Class +| labels = +{{label|en|earthquake}} +{{label|de|Erdbeben}} +{{label|fr|tremblement de terre}} +{{label|nl|aardbeving}} +{{label|ja|地震}} +{{label|ur|زلزلہ}} +| rdfs:subClassOf = NaturalEvent +| comments = +{{comment|en|the result of a sudden release of energy in the Earth's crust that creates seismic waves}} +{{comment|ur|یہ زمین کی پرت میں اچانک توانائی کے اخراج کا نتیجہ ہے جو زلزلے کی لہروں کو پیدا کرتا ہے}} +}}OntologyClass:Economist2006145556332021-09-16T12:25:07Z{{Class +| labels = + {{label|en|economist}} +{{label|ga|eacnamaí}} +{{label|de|Ökonom}} + {{label|el|οικονομολόγος}} + {{label|fr|économiste}} +{{label|nl|econoom}} + {{label|es|economista}} + {{label|ko|경제학자}} + {{label|ja|経済学者}} +{{label|ur|ماہر معاشیات}} + +|comments = + {{comment|en|An economist is a professional in the social science discipline of economics.<ref name="Economist">http://en.wikipedia.org/wiki/Economist</ref>}} + {{comment|fr|Le terme d’économiste désigne une personne experte en science économique.<ref name="Économiste">http://fr.wikipedia.org/wiki/%C3%89conomiste</ref>}} + {{comment|es|Un economista es un profesional de las ciencias sociales experto en economía teórica o aplicada.<ref name="Economista">http://es.wikipedia.org/wiki/Economista</ref>}} + + {{comment|ur|ایک ماہر معاشیات معاشیات کے سماجی سائنس کے شعبے میں پیشہ ور ہوتا ہے}} +| rdfs:subClassOf = Person +| owl:equivalentClass = wikidata:Q188094 +}} + +== References == +<references/>OntologyClass:EducationalInstitution200355549572021-09-09T09:39:30Z{{Class +| labels = +{{label|en|educational institution}} +{{label|da|uddannelsesinstitution}} +{{label|de|Bildungseinrichtung}} +{{label|es|institución educativa}} +{{label|el|εκπαιδευτικό ίδρυμα}} +{{label|fr|établissement d'enseignement}} +{{label|nl|onderwijsinstelling}} +{{label|ko|교육 기관}} +{{label|ur|تعلیمی ادارے}} +| rdfs:subClassOf = Organisation +| owl:equivalentClass = schema:EducationalOrganization, wikidata:Q2385804 +}}OntologyClass:Egyptologist2007632556362021-09-16T12:30:19Z{{Class +| labels = +{{label|en|egyptologist}} +{{label|ga|Éigipteolaí}} +{{label|fr|égyptologue}} +{{label|nl|egyptoloog}} +{{label|de|Ägyptologe}} +{{label|el|αιγυπτιολόγος}} +{{label|ja|エジプト学者}} +{{label|ur|ماہر مصریات}} +| rdfs:subClassOf = Person +| owl:equivalentClass = wikidata:Q1350189 +}}OntologyClass:Election2002506556382021-09-16T12:34:14Z{{Class +| labels = +{{label|de|Wahl}} +{{label|en|Election}} +{{label|ga|toghchán}} +{{label|el|εκλογή}} +{{label|es|elección}} +{{label|fr|élection}} +{{label|it|elezione}} +{{label|nl|verkiezing}} +{{label|ur|انتخابات}} +{{label|ko|선거}} +{{label|ja|選挙}} +| rdfs:subClassOf = SocietalEvent +| owl:equivalentClass = wikidata:Q40231 +}}OntologyClass:ElectionDiagram2009185556392021-09-16T12:40:18Z{{Class +| labels = +{{label|de|Wahldiagram}} +{{label|en|Election Diagram}} +{{label|el|εκλογικό διάγραμμα}} +{{label|nl|verkiezingen diagram}} +{{label|ur| انتخابات کا خاکہ}} +| rdfs:subClassOf = owl:Thing +}}OntologyClass:ElectricalSubstation20011252583392022-05-14T05:31:44Z{{Class +| labels = + {{label|en|electrical substation}} + {{label|fr|poste électrique}} + {{label|nl|transformatorhuisje}} + {{label|ur|برقی ذیلی مرکز}} +| comments = +{{comment|ur|برقی ذیلی مرکز وولٹیج کو زیادہ سے کم، یا برعکس میں تبدیل کرتے ہیں۔}} + {{comment|en|Substations transform voltage from high to low, or the reverse.}} + {{comment|fr|poste de transformation abaisseur ou élévateur de tension.}} +| rdfs:subClassOf = Infrastucture +}}OntologyClass:Embryology200356556462021-09-17T05:58:04Z{{Class +| labels = +{{label|en| embryology}} +{{label|ga|sutheolaíocht}} +{{label|de|Embryologie}} +{{label|el|εμβρυολογία}} +{{label|fr| embryologie}} +{{label|nl| embryologie}} +{{label|ko| 발생학}} +{{label|ja| 発生学}} +{{label|ur|جنینیات کا علم}} +| rdfs:subClassOf = AnatomicalStructure +}}OntologyClass:Employer2009425583422022-05-14T05:34:26Z{{Class +| labels = +{{label|da|arbejdsgiver}} +{{label|de|Arbeitgeber}} +{{label|en|Employer}} +{{label|ga|fostóir}} +{{label|es|Empleador}} +{{label|el|Εργοδότης}} +{{label|fr|Employeur}} +{{label|nl|werkgever}} +{{label|ja|雇用者}} +{{label|ur|آجر}} +| comments = +{{comment|en|a person, business, firm, etc, that employs workers.}} +{{comment|de|Arbeitgeber ist, wer die Arbeitsleistung des Arbeitnehmers kraft Arbeitsvertrages fordern kann und das Arbeitsentgelt schuldet.}} +{{comment|el|άτομο, επιχείρηση, οργανισμός, κλπ που προσλαμβάνει εργαζόμενους.}} +{{comment|ur|آجر وہ ہے جو ملازمت کے معاہدے کی وجہ سے ملازم سے کام کا مطالبہ کر سکتا ہے اور جس پر اجرت واجب الادا ہے۔}} +| rdfs:subClassOf = Agent +| owl:equivalentClass = wikidata:Q3053337 +}}OntologyClass:EmployersOrganisation20010260552732021-09-11T06:15:12Z{{Class +| labels = +{{label|en|Employers' Organisation}} +{{label|de|Arbeitgeberverbände}} +{{label|nl|werkgeversorganisatie}} +{{label|fr|syndicat de patrons}} +{{label|ur|ملازمین کی تنظیم}} +| comments = +{{comment|ur|ملازمین کی تنظیم تاجروں کی ایک تنظیم ہے جو مزدور تعلقات کے میدان میں اپنے اعمال کو مربوط کرنے کے لیے مل کر کام کرتی ہے۔}} +{{comment|en|An employers' organisation is an organisation of entrepreneurs who work together to coordinate their actions in the field of labour relations}} +| rdfs:subClassOf = Organisation +}}OntologyClass:Engine20011129566532022-02-28T09:21:19Z{{Class +| labels = +{{label|en|engine}} +{{label|fr|moteur}} +{{label|de|Motor}} +{{label|ur|انجن}} +{{label|nl|motor}} +{{label|ja|機関 (機械)}} +| rdfs:subClassOf = Device +| specificProperties = {{SpecificProperty | ontologyProperty = acceleration | unit = second }} + {{SpecificProperty | ontologyProperty = displacement | unit = cubicCentimetre }} + {{SpecificProperty | ontologyProperty = weight | unit = kilogram }} + {{SpecificProperty | ontologyProperty = torqueOutput | unit = newtonMetre }} + {{SpecificProperty | ontologyProperty = width | unit = millimetre }} + {{SpecificProperty | ontologyProperty = pistonStroke | unit = millimetre }} + {{SpecificProperty | ontologyProperty = co2Emission | unit = gramPerKilometre }} + {{SpecificProperty | ontologyProperty = cylinderBore | unit = millimetre }} + {{SpecificProperty | ontologyProperty = length | unit = millimetre }} + {{SpecificProperty | ontologyProperty = height | unit = millimetre }} + {{SpecificProperty | ontologyProperty = topSpeed | unit = kilometrePerHour }} + {{SpecificProperty | ontologyProperty = powerOutput | unit = kilowatt }} + {{SpecificProperty | ontologyProperty = diameter | unit = millimetre }} +}}OntologyClass:Engineer2006127556512021-09-17T06:33:19Z{{Class +| labels = {{label|en|engineer}} +{{label|ga|innealtóir}} +{{label|el|μηχανικός}} +{{label|fr|ingénieur}} +{{label|de|Ingenieur}} +{{label|nl|ingenieur}} +{{label|it|ingeniere}} +{{label|es|ingeniero}} +{{label|ja|技術者}} +{{label|ko|공학자}} +{{label|ur|ماہر فنیات}} +| rdfs:subClassOf = Person +| owl:equivalentClass = wikidata:Q81096 +}}OntologyClass:Entomologist2008340583432022-05-14T05:39:59Z{{Class +| labels = +{{label|en|entomologist}} +{{label|ga|feithideolaí}} +{{label|nl|entomoloog}} +{{label|de|Entomologe}} +{{label|el|εντομολόγος}} +{{label|it|entomologo}} +{{label|ja|昆虫学者}} +{{label|ur|ماہر حشریات}} +| rdfs:subClassOf = Scientist +| owl:equivalentClass = wikidata:Q3055126 +}}OntologyClass:Enzyme2005845556522021-09-17T06:36:45Z{{Class +| labels = +{{label|en|enzyme}} +{{label|ga|einsím}} +{{label|de|Enzym}} +{{label|el|ένζυμο}} +{{label|fr|enzyme}} +{{label|it|enzima}} +{{label|ja|酵素}} +{{label|nl|enzym}} +{{label|ko|효소}} +{{label|ur|خامرہ}} +| rdfs:subClassOf = Biomolecule +| owl:equivalentClass = wikidata:Q8047 +}}OntologyClass:Escalator20011097566542022-02-28T09:22:11Z{{Class +| labels = +{{label|en|escalator}} +{{label|fr|escalator}} +{{label|nl|roltrap}} +{{label|de|Rolltreppe}} +{{label|ja|エスカレーター}} +{{label|ur|رواں زینہ}} + +|comments= +{{comment|ur|بجلی سے چلنے والی سیڑھی}} + +| specificProperties = +{{SpecificProperty | ontologyProperty = diameter | unit = metre }} +{{SpecificProperty | ontologyProperty = mass | unit = kilogram }} +{{SpecificProperty | ontologyProperty = length | unit = millimetre }} +{{SpecificProperty | ontologyProperty = height | unit = millimetre }} +{{SpecificProperty | ontologyProperty = weight | unit = kilogram }} +{{SpecificProperty | ontologyProperty = width | unit = millimetre }} +| owl:disjointWith = Person +| rdfs:subClassOf = On-SiteTransportation +}}OntologyClass:EthnicGroup200357552782021-09-11T06:20:23Z{{Class +| labels = + {{label|en|ethnic group}} +{{label|ga|grúpa eitneach}} + {{label|el|εθνική ομάδα}} + {{label|fr|groupe ethnique}} + {{label|de|ethnie}} + {{label|it|etnia}} + {{label|ko|민족}} + {{label|ur|نسلی گروہ}} +{{label|nl|etnische groep}} +| rdfs:subClassOf = owl:Thing +| owl:equivalentClass = wikidata:Q41710 +}}OntologyClass:Eukaryote200358552572021-09-10T20:09:21Z{{Class +| labels = +{{label|en| eukaryote}} +{{label|ga|eocarót}} +{{label|de|Eukaryoten}} +{{label|el|ευκαρυωτικό}} +{{label|fr| eucaryote}} +{{label|es|eucarionte}} +{{label|ja| 真核生物}} +{{label|nl|eukaryoot}} +{{label|ko|진핵생물}} +{{label|ur| خلوی مادہ}} +| rdfs:subClassOf = Species +| owl:equivalentClass = wikidata:Q19088 +}}OntologyClass:EurovisionSongContestEntry200359556572021-09-17T06:47:53Z{{Class +| labels = +{{label|en| Eurovision song contest entry}} +{{label|ga|iontráil i gComórtas Amhránaíochta na hEoraifíse}} +{{label|de| Vorentscheid Eurovision song contest}} +{{label|el|Διαγωνισμός τραγουδιού της Eurovision}} +{{label|fr| concours Eurovision de la chanson}} +{{label|nl| Eurovisie Songfestival act}} +{{label|ur|یوروویژن گانا مقابلہ اندراج}} +| rdfs:subClassOf = Song +}}OntologyClass:Event200360549872021-09-09T11:40:22Z{{Class +| labels = +{{label|en|event}} +{{label|ga|ócáid}} +{{label|pt|evento}} +{{label|el|γεγονός}} +{{label|fr|évènement}} +{{label|de|Ereignis}} +{{label|ja|イベント}} +{{label|nl|gebeurtenis}} +{{label|ko|사건}} + +{{label|ur|تقریب}} +| owl:disjointWith = Person +| owl:equivalentClass = schema:Event, dul:Event, wikidata:Q1656682 +}}OntologyClass:Factory2007454556612021-09-17T07:03:48Z{{Class +| labels = +{{label|en|factory}} +{{label|ga|monarcha}} +{{label|de|Fabrik}} +{{label|el|εργοστάσιο}} +{{label|it|fabbrica}} +{{label|fr|usine}} +{{label|ja|工場}} +{{label|nl|fabriek}} +{{label|ko|공장}} +{{label|ur|کارخانه}} + +| rdfs:subClassOf = Building +| comments = +{{comment|en|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.}} +{{comment|el|Το εργοστάσιο είναι ένα κτίριο μέσα στο οποίο, με τη βοήθεια των μηχανημάτων και τη σημαντικότατη συνεισφορά εργασίας από τους εργάτες, παράγονται σήμερα όλα σχεδόν τα βιομηχανικά είδη, είτε αυτά χρειάζονται πάλι για την παραγωγή (όπως μηχανές κλπ.) είτε είναι καταναλωτικά αγαθά.}} +{{comment|fr| Une usine est un bâtiment ou un ensemble de bâtiments destinés à la production industrielle.}} +{{comment|ur|ایک کارخانه (پہلے کارخانه) ایک صنعتی رقبہ ہے ، عام طور پر عمارتوں اور مشینری پر مشتمل ہوتی ہے ، یا زیادہ عام طور پر ایک مرکب جس میں کئی عمارتیں ہوتی ہیں ، جہاں مزدور سامان تیار کرتے ہیں یا مشینیں چلاتے ہیں جو ایک مصنوعات کو دوسری پر پروسیسنگ کرتے ہیں۔}} +| owl:equivalentClass = wikidata:Q83405 +}}OntologyClass:Family2006691556622021-09-17T07:05:14Z{{Class +| labels= +{{label|en|family}} +{{label|ga|teaghlach}} +{{label|fr|famille}} +{{label|es|familia}} +{{label|da|familie}} +{{label|de|Familie}} +{{label|el|οικογένεια}} +{{label|ja|家族}} +{{label|nl|familie}} +{{label|ur|خاندان}} + +| rdfs:subClassOf = Agent +| comments= +{{comment|en|A group of people related by common descent, a lineage.}} +{{comment|el|Μια ομάδα ανθρώπων που συνδέονται με κοινή καταγωγή, μια γενεαλογία.}} +{{comment|ur|عام نسل سے متعلق لوگوں کا ایک گروہ ، ایک نسب}} +| owl:equivalentClass = wikidata:Q8436 +}}OntologyClass:Farmer2008847560002021-09-18T08:01:21Z{{Class +| labels = {{label|en|farmer}} +{{label|ga|feirmeoir}} +{{label|fr|fermier}} +{{label|de|Bauer}} +{{label|nl|boer}} +{{label|el|αγρότης}} +{{label|ja|農家}} +{{label|ur|کسان}} +| rdfs:subClassOf = Person +| owl:equivalentClass = wikidata:Q131512 +}}OntologyClass:Fashion2007440556652021-09-17T07:23:07Z{{Class +|labels = + {{label|en|fashion}} +{{label|ga|faisean}} +{{label|de|Mode}} + {{label|el|μόδα}} + {{label|nl|mode}} + {{label|fr|mode}} + {{label|ja|ファッション}} + {{label|ur|روشِ لباس}} + +| comments = +{{comment|en|type or code of dressing, according to the standards of the time or individual design.}} +{{comment|ur|وقت یا انفرادی خاکے کے معیار کے مطابق لباس کی قسم}} +{{comment|nl|Een stijl of code voor kleding, bepaald door de voorkeursstijl van een tijdperk of door individuele ontwerpers.}} +| rdfs:subClassOf = TopicalConcept +}}OntologyClass:FashionDesigner2006219581452022-05-12T18:05:04Z{{Class +| labels = + {{label|en|fashion designer}} + {{label|fr|styliste de mode}} + {{label|ga|dearthóir faisin}} + {{label|de|Modedesigner}} + {{label|el|σχεδιαστής μόδας}} + {{label|nl|modeontwerper}} + {{label|ur|پوشاک ساز}} + +| rdfs:subClassOf = Artist +| owl:equivalentClass = wikidata:Q3501317 +}}OntologyClass:Fencer2007640552812021-09-11T06:23:31Z{{Class +| labels = + {{label|en|fencer}} +{{label|ga|pionsóir}} + {{label|el|ξιφομάχος}} + {{label|de|Fechter}} + {{label|nl|schermer}} + {{label|ja|フェンシング選手}} +{{label|ur|تیغ زن }} +| rdfs:subClassOf = Athlete +| owl:equivalentClass = wikidata:Q737498Q13381863 +}}OntologyClass:Fern200361581312022-05-12T17:06:12Z{{Class +| labels = +{{label|en| fern}} +{{label|ga|raithneach}} +{{label|nl| varen}} +{{label|el| φτέρη}} +{{label|de| farn}} +{{label|it| felce}} +{{label|es|helecho}} +{{label|fr| fougères}} +{{label|pt| samambaia}} +{{label|ja| シダ植物門}} +{{label|ur| بے پھول کا بڑے پتوں والا پودا}} +| rdfs:subClassOf = Plant +}}OntologyClass:FictionalCharacter200362552342021-09-10T18:59:28Z{{Class +| labels = +{{label|en|fictional character}} +{{label|ga|carachtar ficseanúil}} +{{label|de|fiktiver Charakter}} +{{label|fr|personnage de fiction}} +{{label|el|πλασματικός χαρακτήρας}} +{{label|nl|personage (fictie)}} +{{label|ja|キャラクター}} +{{label|ur|خیالی کردار}} +| rdfs:subClassOf = Agent +| owl:equivalentClass = wikidata:Q95074 +}}OntologyClass:FieldHockeyLeague2002170552822021-09-11T06:29:36Z{{Class +| labels = +{{label|en|field hockey league}} +{{label|nl|hockeybond}} +{{label|de|Feldhockey-Liga}} +{{label|el|πρωτάθλημα χόκεϊ επί χόρτου}} +{{label|fr|ligue d'hockey sur gazon}} +{{label|ur|کھیل ہاکی ٹیموں کا گروہ}} +| comments = +{{comment|ur|کھیلوں کی ٹیموں کا ایک گروپ جو ہاکی کے میدان میں ایک دوسرے کے خلاف مقابلہ کرتا ہے۔}} +{{comment|en| a group of sports teams that compete against each other in Field Hockey}} +{{comment|el|ένα γκρουπ αθλητικών ομάδων που διαγωνίζονται η μια εναντίον της άλλης στο χόκεϊ επί χόρτου}} +| rdfs:subClassOf = SportsLeague +}}OntologyClass:FigureSkater200363581322022-05-12T17:15:07Z{{Class +| labels = +{{label|en| figure skater}} +{{label|ga|scátálaí fíorach}} +{{label|de|Eiskunstläufer}} +{{label|el|αθλητής του καλλιτεχνικού πατινάζ}} +{{label|es|patinador artístico}} +{{label|fr| patineur artistique}} +{{label|pt| patinador artístico}} +{{label|ja| フィギュアスケート選手}} +{{label|nl| kunstschaatser}} +{{label|ur| فگرسکیٹر}} + + +| rdfs:subClassOf = WinterSportPlayer +| owl:equivalentClass = wikidata:Q13219587 +}}OntologyClass:File2009562560412021-09-19T12:57:10Z{{Class +| labels = +{{label|en|file}} +{{label|ga|comhad}} +{{label|de|Datei}} +{{label|nl|bestand}} +{{label|fr|fichier}} +{{label|el|Αρχείο}} +{{label|ja|ファイル}} +{{label|ur|فائل}} +| comments = +{{comment|en|A document with a filename}} +{{comment|ur|فائل نام کے ساتھ ایک دستاویز}} +{{comment|el|Ένα σύνολο από στοιχεία ή πόρους που μπορούν να χρησιμοποιηθούν για επεξεργασία και παραγωγή πληροφορίας}} +| rdfs:subClassOf = Document +| owl:equivalentClass = +}}OntologyClass:FileSystem20012184566712022-02-28T09:59:45Z{{Class +|labels= + {{label|en|File system}} + {{label|fr|Système de fichiers}} + {{label|de|Dateisystem}} + {{label|nl|Bestandssysteem}} + {{label|ru|Файловая система}} + {{label|ur|فائل سسٹم}} +|comments= +{{comment|en|File classification system}} +{{comment|fr|Système de classification des fichiers}} +{{comment|ur|فائلوں میں درجہ بندی کا نظام}} +| owl:disjointWith = Person +| rdfs:subClassOf = owl:Thing +}}OntologyClass:Film200364551122021-09-10T07:14:14Z{{Class +| labels = +{{label|en|film}} +{{label|en|movie}} +{{label|nl|film}} +{{label|da|film}} +{{label|de|Film}} +{{label|el|ταινία}} +{{label|fr|film}} +{{label|ko|영화}} +{{label|ja|映画}} +{{label|ar|فيلم}} +{{label|pl|film}} +{{label|ga|scannán}} +{{label|es|película}} +{{label|ur|فلم}} +| rdfs:subClassOf = Work +| owl:equivalentClass = schema:Movie ,wikidata:Q11424 +}}OntologyClass:FilmFestival200365560392021-09-19T12:53:13Z{{Class +| labels = +{{label|en|film festival}} +{{label|da|filmfestival}} +{{label|de|Filmfestival}} +{{label|el|φεστιβάλ κινηματογράφου}} +{{label|fr|festival du film}} +{{label|ga|féile scannán}} +{{label|ko|영화제}} +{{label|ja|映画祭}} +{{label|nl|filmfestival}} +{{label|pl|festiwal filmowy}} +{{label|ur|فلمی میلہ}} +| rdfs:subClassOf = SocietalEvent, schema:Festival +| owl:equivalentClass = wikidata:Q220505 +}}OntologyClass:Fish200366553172021-09-11T17:29:48Z{{Class +| labels = +{{label|en| fish}} +{{label|ga|iasc}} +{{label|el| ψάρι}} +{{label|da|fisk}} +{{label|de|Fisch}} +{{label|fr| poisson}} +{{label|pt| peixe}} +{{label|es|pescado}} +{{label|ja| 魚類}} +{{label|nl|vis}} +{{label|pl|ryba}} +{{label|ur|مچھلی}} +| rdfs:subClassOf = Animal +| owl:equivalentClass = wikidata:Q152 +}}OntologyClass:Flag2004543551172021-09-10T07:25:53Z{{Class +| labels = + {{label|en|flag}} +{{label|ga|bratach}} + {{label|fr|drapeau}} + {{label|el|σημαία}} + {{label|da|flag}} + {{label|de|Flagge}} + {{label|tr|bayrak}} + {{label|ja|旗}} + {{label|nl|vlag}} + {{label|ko|국기}} +{{label|ur|جھنڈا}} +| rdfs:subClassOf = owl:Thing +| owl:equivalentClass = wikidata:Q14660 +}}OntologyClass:FloweringPlant200367557062021-09-17T14:01:35Z{{Class +| labels = +{{label|en|flowering plant}} +{{label|de|bedecktsamige Pflanze}} +{{label|nl|bedektzadigen}} +{{label|it|magnoliofita}} +{{label|es|angiosperma}} +{{label|el|ανθοφόρο φυτό}} +{{label|fr| angiospermes}} +{{label|ja| 被子植物}} +{{label|ur| پھولوں کا پودا}} +| rdfs:subClassOf = Plant +}}OntologyClass:Foaf:Document2005130567082022-02-28T13:27:22Z{{Class +| labels= +{{label|en|document}} +{{label|de|dokument}} +{{label|fr|document}} +{{label|el|έγγραφο}} +{{label|it|documento}} +{{label|pt|documento}} +{{label|ja|ドキュメント}} +{{label|nl|document}} +{{label|ur|دستاویز}} + +| comments= +{{comment|en|Equivalent to http://xmlns.com/foaf/spec/#term_Document}} +{{comment|fr|Equivalent à http://xmlns.com/foaf/spec/#term_Document}} +| rdfs:subClassOf = Work +}}OntologyClass:Foaf:Image20010306581362022-05-12T17:39:51Z{{Class +| labels = +{{label|en|image}} +{{label|da|billede}} +{{label|de|Bild}} +{{label|fr|image}} +{{label|nl|afbeelding}} +{{label|ja|画像}} +{{label|ur|تصویر}} +| comments = +{{comment|en|A document that contains a visual image}} +{{comment|ur|ایک دستاویز جس میں ایک بصری تصویر ہوتی ہے}} +{{comment|fr|Un document contenant une image visuelle}} +}}OntologyClass:Foaf:Person2001617557342021-09-17T17:32:19Z{{Class +| labels= +{{label|en|person}} +{{label|de|person}} +{{label|el|άτομο}} +{{label|it|persona}} +{{label|ur|شخص}} +{{label|fr|personne}} +{{label|ja|人 (法律)}} +{{label|nl|persoon}} +{{label|ur|شخص}} +}}OntologyClass:Foaf:تصویر20013217581372022-05-12T17:40:04Z{{Class +| labels = +{{label|ur|تصویر}} +{{label|en|image}} +| comments = +{{comment|ur|ایک دستاویز جس میں ایک بصری تصویر ہوتی ہے۔}} +{{comment|en|A document that contains a visual image}} + +}}OntologyClass:Foaf:دستاویز20013543581382022-05-12T17:45:01Z{{Class +| labels= +{{label|ur|دستاویز}} +{{label|en|document}} + +| rdfs:subClassOf = کام +}}OntologyClass:Foaf:شخص20013492581502022-05-12T18:17:06Z{{Class +| labels= + +{{label|ur|شخص}} +{{label|en|person}} +}}OntologyClass:Food2003929561112021-11-05T11:36:00Z{{Class +| labels = + {{label|en|Food}} + {{label|el|φαγητό}} + {{label|da|mad}} + {{label|de|Lebensmittel}} + {{label|ga|bia}} + {{label|ko|음식}} + {{label|ja|食品}} + {{label|es|alimento}} + {{label|nl|voedsel}} + {{label|fr|nourriture}} + {{label|pt|comida}} + {{label|pl|jedzenie}} + {{label|ur|خوراک}} +| comments = + {{comment|en|Food is any eatable or drinkable substance that is normally consumed by humans.}} + {{comment|el|Φαγητό είναι οποιαδήποτε φαγώσιμη ή πόσιμη ουσία που καταναλώνεται κανονικά από ανθρώπους.}} + {{comment|de|Lebensmittel umfasst als Oberbegriff sowohl Getränke als auch die Nahrungsmittel und Genussmittel.}} + {{comment|ur|کھانا کوئی بھی کھانے یا پینے کے قابل مادہ ہے جو عام طور پر انسان استعمال کرتے ہیں۔}} +| rdfs:subClassOf = owl:Thing +| owl:equivalentClass = wikidata:Q2095 +}}OntologyClass:FootballLeagueSeason2006073560312021-09-19T12:33:50Z{{Class +| labels = +{{label|en| football league season}} +{{label|nl| Football League seizoen}} +{{label|ga|séasúr srath péile}} +{{label|de| Football Liga Saison}} +{{label|el|αγωνιστική περίοδος πρωταθλήματος ποδοσφαίρου}} +{{label|ko|축구 대회 시즌}} +{{label|ur| فٹ بال لیگ کے موسم}} +| rdfs:subClassOf = SportsTeamSeason +}}OntologyClass:FootballMatch2004306560092021-09-18T12:59:05Z{{Class +| labels = +{{label|de|Fußballspiel}} +{{label|en|football match}} +{{label|ga|cluiche peile}} +{{label|el|αγώνας ποδοσφαίρου}} +{{label|pl|mecz piłki nożnej}} +{{label|es|partido de fútbol}} +{{label|nl|voetbal wedstrijd}} +{{label|ur|فٹ بال مقابلہ}} + +| comments = +{{comment|en|a competition between two football teams}} +{{comment|ur|دو فٹ بال ٹیموں کے درمیان مقابلہ}} +| rdfs:subClassOf = SportsEvent +}}OntologyClass:Forest20011709551642021-09-10T12:32:41Z{{Class +|labels = + {{label|en|forest}} + {{label|nl|bos}} + {{label|da|skov}} + {{label|de|Wald}} + {{label|fr|forêt}} + {{label|ur|جنگل}} + + +|comments = +{{comment|en|A natural place more or less densely grown with trees}} +{{comment|ur|ایک قدرتی جگہ جو کم و بیش درختوں کے ساتھ اگتی ہے۔}} +| rdfs:subClassOf = NaturalPlace +}}OntologyClass:FormerMunicipality2008142561002021-11-05T10:56:51Z{{Class +| labels = +{{label|en|one-time municipality}} +{{label|fr|commune historique}} +{{label|de|ehemalige Gemeinde}} +{{label|nl|voormalige gemeente}} +{{label|ur|سابق بلدیہ}} +| comments = +{{comment|en|A municipality that has ceased to exist, and most of the time got incorporated (wholesale or partly) into another municipality}} +{{comment|ur|ایک بلدیہ جس کا وجود ختم ہو گیا ہے، اور زیادہ تر وقت کسی دوسری بلدیہ میں (تھوک یا جزوی طور پر) شامل ہو گیا ہے}} +| rdfs:subClassOf = Municipality +| owl:equivalentClass = wikidata:Q19730508 +}}OntologyClass:FormulaOneRacer200371560112021-09-18T13:03:37Z{{Class +| labels = +{{label|en|Formula One racer}} +{{label|nl|formule 1-coureur}} +{{label|de|Formel-1 Rennfahrer}} +{{label|el|πιλότος της φόρμουλας ένα}} +{{label|fr|pilote de formule 1}} +{{label|ur|فارمولا ون ریسر}} + +| rdfs:subClassOf = RacingDriver +}}OntologyClass:FormulaOneRacing2005331554322021-09-13T07:55:52Z{{ Class +| labels = +{{label|en|formula one racing}} +{{label|de|Formel-1 Rennen}} +{{label|el|φόρμουλα ένας αγώνας}} +{{label|nl|Formule 1-r‎ace}} +{{label|ur|فارمولا ون ریسنگ}} +| rdfs:subClassOf = SportsLeague +}}OntologyClass:FormulaOneTeam2007982551342021-09-10T07:44:35Z{{Class +| labels = +{{label|en|formula 1 team}} +{{label|nl|formule 1-team}} +{{label|de|Formel-1 Team}} +{{label|el|ομάδα φόρμουλα 1 }} +{{label|it|scuderia formula 1}} +{{label|ur|فارمولا ون ٹیم}} +| rdfs:subClassOf = SportsTeam +}}OntologyClass:Fort20011729573952022-04-03T08:41:35Z{{Class +| labels = + {{label|en|fort}} + {{label|fr|fort}} + {{label|nl|fort}} + {{label|ur|قلعہ}} +| comments = + {{comment|en|Fortified place, most of the time to protect traffic routes}} + {{comment|fr|Endroit fortifié, la plupart du temps pour protéger des routes de trafic.}} + {{comment|ur|مضبوط جگہ ، زیادہ تر وقت آمد و رفت کے راستوں کی حفاظت کے لیے}} +| rdfs:subClassOf = MilitaryStructure +}}OntologyClass:Fungus200372560192021-09-19T11:42:27Z{{Class +|labels= +{{label|en|fungus}} +{{label|ga|fungas}} +{{label|de|Pilz}} +{{label|el|μύκητας}} +{{label|fr|fungi}} +{{label|es|hongos}} +{{label|nl|schimmel}} +{{label|ja|菌類}} +{{label|en|پھُپھُوندی}} +| rdfs:subClassOf = Eukaryote +}}OntologyClass:GaelicGamesPlayer200373556662021-09-17T10:35:27Z{{Class +|labels= +{{label|en|Gaelic games player}} +{{label|nl|Gaelische sporter}} +{{label|ga|imreoir sa Chumann Lúthchleas Gael}} +{{label|de|gälischen Sportspieler}} +{{label|el|Γαελικός παίκτης παιχνιδιών}} +{{label|fr|joueur de sports gaéliques}} +{{label|ur|گیلک_کھیل_کا_کھلاڑی}} +| rdfs:subClassOf = Athlete +}}OntologyClass:Galaxy2004440570282022-03-09T13:42:06Z{{Class +|labels= + {{label|en|galaxy}} + {{label|ga|réaltra}} + {{label|da|galakse}} + {{label|de|Galaxie}} + {{label|fr|galaxie}} + {{label|el|γαλαξίας}} + {{label|ja|銀河}} + {{label|nl|melkwegstelsel}} + {{label|pt|galáxia}} + {{label|tr|galaksi}} + {{label|ko|은하}} + {{label|ur|کہکشاں}} +| rdfs:subClassOf = CelestialBody +| specificProperties = {{SpecificProperty | ontologyProperty = temperature | unit = kelvin }} + {{SpecificProperty | ontologyProperty = orbitalPeriod | unit = day }} + {{SpecificProperty | ontologyProperty = density | unit = kilogramPerCubicMetre }} + {{SpecificProperty | ontologyProperty = mass | unit = kilogram }} + {{SpecificProperty | ontologyProperty = apoapsis | unit = kilometre }} + {{SpecificProperty | ontologyProperty = maximumTemperature | unit = kelvin }} + {{SpecificProperty | ontologyProperty = averageSpeed | unit = kilometrePerSecond }} + {{SpecificProperty | ontologyProperty = volume | unit = cubicKilometre }} + {{SpecificProperty | ontologyProperty = surfaceArea | unit = squareKilometre }} + {{SpecificProperty | ontologyProperty = meanTemperature | unit = kelvin }} + {{SpecificProperty | ontologyProperty = minimumTemperature | unit = kelvin }} + {{SpecificProperty | ontologyProperty = periapsis | unit = kilometre }} + {{SpecificProperty | ontologyProperty = meanRadius | unit = kilometre }} +| owl:equivalentClass = wikidata:Q318 +}}OntologyClass:Game2002156551682021-09-10T16:32:46Z{{Class +| labels = +{{label|en|game}} +{{label|ga|cluiche}} +{{label|da|spil}} +{{label|de|Spiel}} +{{label|fr|jeu}} +{{label|el|Πληροφορίες παιχνιδιού}} +{{label|pt|jogo}} +{{label|ja|ゲーム}} +{{label|nl|spel}} +{{label|es|juego}} +{{label|ur|کھیل}} +| comments = +{{comment|en|a structured activity, usually undertaken for enjoyment and sometimes used as an educational tool}} +{{comment|ur|ایک ساختی سرگرمی ، جو عموما لطف اندوز ہونے کے لیے کی جاتی ہے اور بعض اوقات تعلیمی آلے کے طور پر استعمال ہوتی ہے۔}} +| rdfs:subClassOf = Activity +| owl:equivalentClass = wikidata:Q11410 + +}}OntologyClass:Garden2008713581662022-05-12T19:16:15Z{{Class +| labels = +{{label|en|garden}} +{{label|ga|gáirdín}} +{{label|fr|jardin}} +{{label|da|have}} +{{label|de|Garten}} +{{label|it|giardino}} +{{label|nl|tuin}} +{{label|el|κήπος}} +{{label|ja|庭園}} +{{label|ur|باغ}} +| comments = +{{comment|en|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)}} +{{comment|ur|باغ ایک منصوبہ بند جگہ ہے ، عام طور پر باہر ، ڈسپلے ، کاشت ، اور پودوں اور فطرت کی دیگر اقسام سے لطف اندوز ہونے کے لیے + (http://en.wikipedia.org/wiki/Garden)}} +| rdfs:subClassOf = Place +| owl:equivalentClass = wikidata:Q1107656 +}}OntologyClass:GatedCommunity2009475582312022-05-13T09:19:55Z{{Class +| labels = +{{label|en|Gated community}} +{{label|nl|Hofje / gebouw met woongemeenschap}} +{{label|de|bewachte Wohnanlage / Siedlung}} +{{label|ur|مسدود برادری}} +| rdfs:subClassOf = PopulatedPlace +}}OntologyClass:Gene2004112556732021-09-17T11:03:26Z{{Class +|labels= +{{label|en|gene}} +{{label|ga|géin}} +{{label|da|gen}} +{{label|de|Gen}} +{{label|el|γονίδιο}} +{{label|ja|遺伝子}} +{{label|nl|gen}} +{{label|pt|gene}} +{{label|fr|gène}} +{{label|ur|نَسبہ}} +| rdfs:subClassOf = Biomolecule +| owl:equivalentClass = wikidata:Q7187 +}}OntologyClass:GeneLocation2005033569552022-03-09T08:51:24Z{{Class +| labels = + {{label|en|GeneLocation}} + {{label|fr|position du gène}} + {{label|nl|locus}} + {{label|de|Gen Lokation}} + {{label|el|θέση γονιδίων}} + {{label|ja|遺伝子座}} + {{label|ur| نَسبہ کا مقام}} +| rdfs:subClassOf = owl:Thing +}}OntologyClass:Genre2005919566842022-02-28T10:33:34Z{{Class +|labels= +{{label|en|genre}} +{{label|fr|genre}} +{{label|ga|seánra}} +{{label|nl|genre}} +{{label|de|Genre}} +{{label|es|género}} +{{label|ur|صنف}} +{{label|el|ύφος}} +{{label|ja|ジャンル}} +| rdfs:subClassOf = TopicalConcept +}}OntologyClass:Geo:SpatialThing2001622556772021-09-17T11:35:48Z{{Class +|labels= +|rdfs:label@en = spatial thing +|rdfs:label@de = Objektraum +|rdfs:label@fr = objet spatial +|rdfs:label@nl = ruimtelijk object +{{label|ur|جیو: مقامی چیزیں}} +}}OntologyClass:GeologicalPeriod2006714556792021-09-17T11:38:26Z{{Class +|labels= +{{label|en|geological period}} +{{label|nl|geologische periode}} +{{label|de|geologische Periode}} +{{label|fr|période géologiqueA}} +{{label|el|γεωλογική περίοδος}} +{{label|ur|ارضیاتی دورانیہ}} +| rdfs:subClassOf = TimePeriod +| owl:disjointWith = Person +| owl:equivalentClass = wikidata:Q392928 +}}OntologyClass:GeopoliticalOrganisation200374556812021-09-17T11:55:13Z{{Class +|labels= +{{label|en|geopolitical organisation}} +{{label|es|organización geopolítica}} +{{label|de|geopolitische Organisation}} +{{label|el|γεωπολιτική οργάνωση}} +{{label|fr|organisation géopolitique}} +{{label|ko|지정학적 조직}} +{{label|nl|geopolitieke organisatie}} +{{label|ur|جُغرافیائی سیاسیات تنظیم}} +| rdfs:subClassOf = Organisation +| specificProperties = {{SpecificProperty | ontologyProperty = populationDensity | unit = inhabitantsPerSquareKilometre }} + {{SpecificProperty | ontologyProperty = areaMetro | unit = squareKilometre }} +}}OntologyClass:Ginkgo200375566012022-02-18T06:03:10Z{{Class +|labels= +{{label|en|ginkgo}} +{{label|nl|Ginkgo biloba}} +{{label|it|ginkgo biloba}} +{{label|de|ginkgo}} +{{label|el|ginkgo}} +{{label|fr|ginkgo}} +{{label|pt|ginkgo}} +{{label|ja|銀杏属}} +{{label|ur|جنکگو}} +| rdfs:subClassOf = Plant + +|comments= +{{comment|ur|چینی درخت پنکھے کے جیسے پتوں والا}} +}}OntologyClass:GivenName2004129556832021-09-17T11:59:54Z{{Class +|labels= +{{label|en|first name}} +{{label|en|given name}} +{{label|de|Vorname}} +{{label|el|όνομα}} +{{label|fr|prénom}} +{{label|ga|céadainm}} +{{label|ja|名}} +{{label|nl|voornaam}} +{{label|pl|imię}} +{{label|ur|دیا گیا نام}} + +| rdfs:subClassOf = Name +| owl:equivalentClass = wikidata:Q202444 +}}OntologyClass:Glacier2008011582342022-05-13T09:40:01Z{{Class +| labels = +{{label|en|glacier}} +{{label|ga|oighearshruth}} +{{label|nl|gletsjer}} +{{label|fr|glacier}} +{{label|de|Gletscher}} +{{label|el|παγετώνας}} +{{label|it|ghiacciaio}} +{{label|pt|geleira}} +{{label|ja|氷河}} +{{label|ur|برف کا تودہ}} +| rdfs:subClassOf = NaturalPlace +| comments = +{{comment|el| Παγετώνες ονομάζονται μεγάλες μάζες πάγου συνήθως κινούμενες λόγω συμπίεσης του χιονιού. }} +| owl:equivalentClass = wikidata:Q35666 +}}OntologyClass:Globularswarm2006149559082021-09-18T04:46:25Z{{Class +| labels = +{{label|en|Globular Swarm}} +{{label|nl|globulaire zwerm (cluster)}} +{{label|de|Kugelschwarm}} +{{label|el|Σφαιρωτό σμήνος}} +{{label|ur|کروی غول}} +| rdfs:subClassOf = Swarm +}}OntologyClass:Gml: Feature2001624556902021-09-17T12:58:42Z{{Class +|labels= +|rdfs:label@en = Feature +|rdfs:label@de = Feature +|rdfs:label@fr = Caractéristique +{{label|ur|جی ایم ایل: خصوصیت}} +}}OntologyClass:Gnetophytes200376582362022-05-13T09:42:51Z{{Class +|labels= +{{label|en|Gnetophytes}} +{{label|de|Gnetophyta}} +{{label|nl|Gnetales}} +{{label|el|Gnetophytes}} +{{label|fr|gnétophytes}} +{{label|ja|グネツム綱}} +{{label|ur|گمٹیلا پودا}} +| rdfs:subClassOf = Plant +}}OntologyClass:GolfCourse2008361568742022-03-02T17:00:25Z{{Class +| labels = +{{label|en|golf course}} +{{label|fr|terrain de golf}} +{{label|ga|cúrsa gailf}} +{{label|de|Golfplatz}} +{{label|el|γήπεδο γκολφ}} +{{label|it|campo da golf}} +{{label|nl|golfbaan}} +{{label|ur|گالف کا میدان}} +| comments = +{{comment|en|In a golf course, holes often carry hazards, defined as special areas to which additional rules of the game apply.}} +{{comment|fr|Dans un parcours de golf, les trous comportent souvent des dangers, définis comme des zones spéciales auxquelles s'appliquent des règles de jeu supplémentaires.}} +{{comment|el|Σε ένα γήπεδο γκολφ οι τρύπες συχνά κρύβουν κινδύνους, που ορίζονται ως ειδικές περιοχές για τις οποίες ισχύουν επιπρόσθετοι κανόνες διεξαγωγής του παιχνιδιού.}} +{{comment|ur|زمین کا ایک علاقہ جس میں گولف کے لیے 9 یا 18 سوراخ ہوتے ہیں جن میں سے ہر ایک میں ٹی ، فیئر وے ، اور سبز اور اکثر ایک یا زیادہ قدرتی یا مصنوعی خطرات شامل ہیں۔ - جسے گولف لنکس بھی کہا جاتا ہے۔}} +| rdfs:subClassOf = SportFacility +| owl:equivalentClass = wikidata:Q1048525 +}}OntologyClass:GolfLeague2002171556942021-09-17T13:12:57Z{{Class +|labels= +{{label|en|golf league}} +{{label|ga|sraith gailf}} +{{label|de|Golfliga}} +{{label|el|ένωση γκολφ}} +{{label|fr|ligue de golf}} +{{label|nl|golf competitie}} +{{label|pt|liga de golfe}} +{{label|ur|گالف کی انجمن}} +|comments = +{{comment|en|Golfplayer that compete against each other in Golf}} +{{comment|ur|گالف پلیئر جو گالف میں ایک دوسرے کے خلاف مقابلہ کرتے ہیں۔}} +| rdfs:subClassOf = SportsLeague +}}OntologyClass:GolfPlayer2002553556962021-09-17T13:17:53Z{{Class +|labels= +{{label|en|golf player}} +{{label|ga|imreoir gailf}} +{{label|da|golfspiller}} +{{label|de|Golfspieler}} +{{label|el|παίκτης γκολφ}} +{{label|fr|golfeur}} +{{label|nl|golfspeler}} +{{label|ur|گالف کا کھلاڑی}} +| rdfs:subClassOf = Athlete +| owl:equivalentClass = wikidata:Q13156709 +}}OntologyClass:GolfTournament2008190566812022-02-28T10:28:47Z{{Class +| labels = +{{label|en|golf tournament}} +{{label|fr|tournoi de golf}} +{{label|ga|comórtas gailf}} +{{label|de|Golfturnier}} +{{label|it|torneo di golf}} +{{label|nl|golf toernooi}} +{{label|ur|گولف کا باہمی مقابلہ}} +| rdfs:subClassOf = Tournament +| owl:equivalentClass = wikidata:Q15061650 +}}OntologyClass:GovernmentAgency2003726556982021-09-17T13:30:27Z{{Class +|labels= +{{label|en|government agency}} +{{label|es|agencia del gobierno}} +{{label|de|Behörde}} +{{label|fr|agence gouvernementale}} +{{label|el|κυβερνητική υπηρεσία}} +{{label|nl|orgaan openbaar bestuur}} +{{label|ru|Орган исполнительной власти}} +{{label|ko|정부 기관}} +{{label|ur|سرکاری محکمہ}} +| rdfs:subClassOf=Organisation +| owl:equivalentClass = schema:GovernmentOrganization +|comments= +{{comment|en|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.}} +{{comment|de|Eine Behörde ist eine staatliche Einrichtung, die im weitesten Sinne für die Erfüllung von Aufgaben der Verwaltung des Staates und dabei insbesondere für Dienstleistungen des Staates gegenüber seinen Bürgern zuständig ist. Eine Behörde erhält ihren Auftrag aus den Gesetzen des Staates, in dem und für den sie tätig ist.}} +{{comment|el|Μια κυβερνητική υπηρεσία είναι μόνιμη ή ημι-μόνιμη οργάνωση στο μηχανισμό της κυβέρνησης, η οποία είναι υπεύθυνη για την εποπτεία και διαχείριση συγκεκριμένων λειτουργιών, όπως η υπηρεσία πληροφοριών.}} +{{comment|ur|ایک سرکاری ایجنسی حکومت کی مشینری میں ایک مستقل یا نیم مستقل تنظیم ہے جو مخصوص افعال کی نگرانی اور انتظام کے لیے ذمہ دار ہے ، جیسے کہ ایک انٹیلی جنس ایجنسی}} +| owl:equivalentClass = wikidata:Q327333 +}}OntologyClass:GovernmentCabinet20011539574182022-04-17T20:23:24Z{{Class +|labels= + {{label|en|cabinet of ministers}} + {{label|fr|cabinet des ministres}} + {{label|nl|kabinet (regeringsploeg)}} + {{label|ur|وزراء کی کابینہ}} +| rdfs:subClassOf=GovernmentAgency +|comments= +{{comment|en|A cabinet is a body of high-ranking state officials, typically consisting of the top leaders of the executive branch.}} +{{comment|fr|Un cabinet est une entité composée d'officiels de l'état de haut niveau, formée typiquement des dirigeants supérieurs de l'exécutif.}} +{{comment|ur|کابینہ اعلی درجے کے ریاستی عہدیداروں کا ایک ادارہ ہے ، عام طور پر ایگزیکٹو برانچ کے اعلی رہنماؤں پر مشتمل ہوتا ہے۔}} +}}OntologyClass:GovernmentType2002390549942021-09-09T11:47:33Z{{Class +| labels = +{{label|en|Government Type}} +{{label|fr|régime politique}} +{{label|el|Είδη Διακυβέρνησης}} +{{label|de|Regierungsform}} +{{label|nl|regeringsvorm}} +{{label|ur|حکومت کی قسم}} +| comments = +{{comment|en|a form of government}} +{{comment|ur|حکومت کی ایک شکل}} +| rdfs:subClassOf = Type +| specificProperties = +| owl:equivalentClass = +}}OntologyClass:GovernmentalAdministrativeRegion2006559552242021-09-10T18:40:17Z{{Class +| labels = +{{label|en|governmental administrative region}} +{{label|de|staatliche Verwaltungsregion}} +{{label|fr|région administrative d'état}} +{{label|nl|gebied onder overheidsbestuur}} +{{label|ur|حکومتی انتظامی علاقہ}} +| comments = +{{comment|en|An administrative body governing some territorial unity, in this case a governmental administrative body}} +{{comment|ur|ایک انتظامی ادارہ جو کچھ علاقائی وحدت کو کنٹرول کرتا ہے ، اس صورت میں ایک سرکاری انتظامی ادارہ ہے۔}} +| rdfs:subClassOf = AdministrativeRegion +| owl:equivalentClass = +}}OntologyClass:Governor200377557022021-09-17T13:52:46Z{{Class +|labels= +{{label|en|governor}} +{{label|ga|gobharnóir}} +{{label|nl|gouverneur}} +{{label|de|Gouverneur}} +{{label|el|κυβερνήτης}} +{{label|fr|gouverneur}} +{{label|ja|知事}} +{{label|ur|حاکم}} +| rdfs:subClassOf = Politician +| owl:equivalentClass = wikidata:Q132050 +}}OntologyClass:GrandPrix200378582562022-05-13T10:42:14Z{{Class +| labels = +{{label|en|Grand Prix}} +{{label|ga|Grand Prix}} +{{label|el|γκραν πρι}} +{{label|de|grosser Preis}} +{{label|it|gran premio}} +{{label|fr|grand prix}} +{{label|nl|grand prix}} +{{label|ja| グランプリ}} +{{label|ur|موٹر کار کی دوڑ}} +| rdfs:subClassOf = SportsEvent +| specificProperties = {{SpecificProperty | ontologyProperty = course | unit = kilometre }} + {{SpecificProperty | ontologyProperty = distance | unit = kilometre }} +}}OntologyClass:Grape200379557042021-09-17T13:59:48Z{{Class +| labels = +{{label|en| grape}} +{{label|ga|fíonchaor}} +{{label|de| Weintraube}} +{{label|it| uva}} +{{label|el| σταφύλι}} +{{label|fr| raisin}} +{{label|ja| ブドウ}} +{{label|nl| druif}} +{{label|es|uva}} +{{label|ur|انگور}} +| rdfs:subClassOf = FloweringPlant +| owl:equivalentClass = wikidata:Q10978 +}}OntologyClass:GraveMonument2009222566572022-02-28T09:25:49Z{{Class +| labels = +{{label|en|grave stone or grave monument}} +{{label|fr|pierre tombale ou monument funéraire}} +{{label|nl|grafsteen of grafmonument}} +{{label|de|Grabdenkmal}} +{{label|ur|قبر کی یادگار}} +| comments = +{{comment|en|A monument erected on a tomb, or a memorial stone.}} +{{comment|ur|ایک یادگار ایک مقبرے پر کھڑی کی گئی ، یا ایک یادگار پتھر}} +| rdfs:subClassOf = Monument +}}OntologyClass:GreenAlga200380550592021-09-09T14:21:03Z{{Class +| labels= +{{label|en|green alga}} +{{label|nl|groenwieren}} +{{label|de|Grünalge}} +{{label|el|πράσινο φύκος}} +{{label|ur|سبز طحالب}} +{{label|fr|algue verte}} +{{label|es|alga verde}} +{{label|ja|緑藻}} +| rdfs:subClassOf = Plant +}}OntologyClass:GridironFootballPlayer2002287574692022-04-24T09:25:49Z{{Class +| labels = +{{label|en|gridiron football player}} +{{label|nl|Gridiron voetballer}} +{{label|de|Gridiron Footballspieler}} +{{label|ur|گرڈیرون فٹ بال کھلاڑی}} +{{label|fr|joueur de football américain gridiron}} +|comments= +{{comment |en|Gradiron football, also called North American football, is a family of soccer team games played primarily in the United States and Canada.}} + +{{comment|ur|گریڈیرون فٹ بال ، جسے شمالی امریکی فٹ بال بھی کہا جاتا ہے ، فٹ بال ٹیم کھیلوں کا ایک خاندان ہے جو بنیادی طور پر ریاستہائے متحدہ اور کینیڈا میں کھیلا جاتا ہے}} +| rdfs:subClassOf = Athlete +| owl:equivalentClass = wikidata:Q14128148 +}}OntologyClass:GrossDomesticProduct2007926557122021-09-17T14:49:30Z{{Class +| labels= +{{label|en|gross domestic product}} +{{label|ga|olltáirgeacht intíre}} +{{label|de|Bruttoinlandsprodukt}} +{{label|nl|bruto nationaal product}} +{{label|el|ακαθάριστο εγχώριο προϊόν}} +{{label|ur|مجموعی ملکی پیداوار}} +}}OntologyClass:GrossDomesticProductPerCapita2007928550662021-09-09T14:29:05Z{{Class +| labels = +{{label|en|gross domestic product per capita}} +{{label|fr|produit intérieur brut par habitant}} +{{label|ga|olltáirgeacht intíre per capita}} +{{label|de|Bruttoinlandsprodukt pro Kopf}} +{{label|nl|bruto nationaal product per hoofd van de bevolking}} +{{label|el|ακαθάριστο εγχώριο προϊόν κατά κεφαλήν}} +{{label|ur|مجموعی گھریلو پیداوار فی کس}} +|comments = +{{comment|ur|فی کس جی ڈی پی قومی حدود کے اندر پیدا ہونے والی مارکیٹنگ اشیاء اور خدمات کے مجموعے کی پیمائش کرتا ہے ، جو اس علاقے میں رہنے والے ہر شخص کے لیے اوسط ہے}} +}}OntologyClass:Group2005939549892021-09-09T11:40:29Z{{Class +|labels= +{{label|en|group}} +{{label|es|grupo}} +{{label|fr|groupe}} +{{label|da|gruppe}} +{{label|de|Gruppe}} +{{label|it|gruppo}} +{{label|el|ομάδα}} +{{label|ja|集団}} +{{label|nl|groep}} +{{label|ga|grúpa}} +{{label|ur|گروہ}} +| rdfs:subClassOf = Organisation, schema:Organization +| comments = +{{comment|en|An (informal) group of people.}} +{{comment|fr|un groupe (informel) de personnes.}} +{{comment|el|Μια συνήθως άτυπη ομάδα ανθρώπων.}} +{{comment|ur|لوگوں کا ایک غیر رسمی گروہ }} +}}OntologyClass:Guitar2007462557142021-09-17T14:54:05Z{{Class +| labels = + {{ label|en|guitar}} + {{ label|fr|guitare}} + {{ label|es|guitarra}} + {{ label|nl|gitaar}} + {{ label|da|guitar}} + {{ label|de|Gitarre}} + {{ label|el|κιθάρα}} + {{ label|ga|giotar}} + {{ label|ja|ギター}} + {{ label|ur|ستار}} +| comments = + {{ comment|en|Describes the guitar}} + {{ comment|fr|Décrit la guitare}} + {{ comment|es|Describe la guitarra}} + {{ comment|nl|beschrijving van de gitaar}} + {{ comment|el|Περιγράφει την κιθάρα}} + {{ comment|ur|ایک تار والا میوزیکل آلہ ، جس میں فنگر فنگر بورڈ ہوتا ہے ، عام طور پر کٹے ہوئے اطراف ، اور چھ یا بارہ تار ، انگلیوں یا پلیکٹرم سے توڑنے یا جھومنے سے بجائے جاتے ہیں۔}} +| rdfs:subClassOf = Instrument +<!--| owl:sameAs = <http://www.semanticweb.org/ontologies/2011/3/InstrumentOntology.owl#Guitar>--> +| owl:equivalentClass = wikidata:Q6607 +}}OntologyClass:Guitarist2008178561042021-11-05T11:11:02Z{{Class +| labels = +{{label|en|guitarist}} +{{label|ga|giotáraí}} +{{label|nl|gitarist}} +{{label|fr|guitariste}} +{{label|da|guitarist}} +{{label|de|Gitarrist}} +{{label|it|chitarrista}} +{{label|el|κιθαρίστας}} +{{label|ja|ギター演奏者}} +{{label|ur|ستار بجانے والا}} +| rdfs:subClassOf = Instrumentalist +| owl:equivalentClass = wikidata:Q855091 +}}OntologyClass:Gymnast2006111568752022-03-02T17:02:28Z{{Class +| labels = +{{label|en|gymnast}} +{{label|fr|gymnaste}} +{{label|ga|gleacaí}} +{{label|nl|turner}} +{{label|da|gymnast}} +{{label|de|Turner}} +{{label|el|γυμναστής}} +{{label|ja|体操選手}} +{{label|ur|کسرتی}} +| comments = +{{comment|en|A gymnast is one who performs gymnastics}} +{{comment|fr|Un gymnaste est une personne qui pratique la gymnastique}} +{{comment|el|Ένας γυμναστής είναι ένας που εκτελεί γυμναστικές ασκήσεις}} +{{comment|ur|جمناسٹ وہ ہوتا ہے جو جمناسٹکس کرتا ہے}} +| rdfs:subClassOf = Athlete +}}OntologyClass:HandballLeague2002172557432021-09-17T17:48:47Z{{Class +| labels = +{{label|en|handball league}} +{{label|da|håndboldliga}} +{{label|de|Handball-Liga}} +{{label|el|Ομοσπονδία Χειροσφαίρισης}} +{{label|fr|ligue de handball}} +{{label|nl|handbal competitie}} +{{label|ur|ہینڈ بال کی انجمن}} +| comments = +{{comment|en|a group of sports teams that compete against each other in Handball}} +{{comment|ur|کھیلوں کی ٹیموں کا ایک گروپ جو ہینڈ بال میں ایک دوسرے کے خلاف مقابلہ کرتا ہے}} +| rdfs:subClassOf = SportsLeague +}}OntologyClass:HandballPlayer2005860550732021-09-09T14:59:56Z{{Class +| labels = +{{label|en|handball player}} +{{label|ga|imreoir liathróid láimhe}} +{{label|da|håndboldspiller}} +{{label|de|Handballspieler}} +{{label|el|παίκτης του handball}} +{{label|es|jugador de balonmano}} +{{label|fr|joueur de handball}} +{{label|nl|handballer}} +{{label|ur|ہینڈ بال کا کھلاڑی}} +|comments = +{{comment|ur|ایک کھیل جِس میں دو یا چار کھِلاڑی بَند احاطے میں ربَڑ کی چھوٹی گیند کو ہاتھوں سے دیوار پَر مارتے ہیں}} +| rdfs:subClassOf = Athlete +| owl:equivalentClass = wikidata:Q13365117 +}}OntologyClass:HandballTeam2008715584732022-05-14T18:39:08Z{{Class +| labels = +{{label|en|handball team}} +{{label|ga|foireann liathróid láimhe}} +{{label|fr|équipe de handball}} +{{label|da|håndboldhold}} +{{label|de|Handballmannschaft}} +{{label|el|ομάδα χειροσφαίρισης}} +{{label|it|squadra di pallamano}} +{{label|nl|handbal team}} +{{label|ur|ہینڈ بال جماعت}} +| rdfs:subClassOf = SportsTeam +| owl:equivalentClass = wikidata:Q10517054 +}}OntologyClass:HighDiver20011181561082021-11-05T11:24:09Z{{Class +|labels= +{{label|de|Turmspringer}} +{{label|nl|schoonspringer}} +{{label|en|high diver}} +{{label|ur| اونچائی سے پانی میں ڈبکی لگانے والا }} +|rdfs:subClassOf=Athlete +}}OntologyClass:Historian2008208550772021-09-09T15:05:28Z{{Class +| labels = +{{label|en|historian}} +{{label|ga|staraí}} +{{label|fr|historien}} +{{label|nl|historicus}} +{{label|de|Historiker}} +{{label|it|storico}} +{{label|el|ιστορικός}} +{{label|ur|مورخ}} +{{label|ja|歴史学者}} +| rdfs:subClassOf = Writer +}}OntologyClass:HistoricBuilding200381561092021-11-05T11:26:56Z{{Class +| labels = +{{label|en|historic building}} +{{label|ga|foirgneamh stairiúil}} +{{label|de|historisches Gebäude}} +{{label|el|ιστορικό κτίριο}} +{{label|nl|historisch gebouw}} +{{label|fr|bâtiment historique}} +{{label|ja|歴史的建造物}} +{{label|ur|تاریخی عمارت}} +| rdfs:subClassOf = Building, schema:LandmarksOrHistoricalBuildings +| owl:equivalentClass = +}}OntologyClass:HistoricPlace200382559552021-09-18T06:18:01Z +{{Class +| labels = +{{label|en|historic place}} +{{label|ga|áit stairiúil}} +{{label|de|historischer Ort}} +{{label|nl|plaats van geschiedkundig belang}} +{{label|el|ιστορικός χώρος}} +{{label|fr|site historique}} +{{label|ur|تاریخی مقام}} +| rdfs:subClassOf = Place, schema:LandmarksOrHistoricalBuildings +| owl:equivalentClass = +}}OntologyClass:HistoricalAreaOfAuthority20011604550822021-09-09T15:22:17Z{{Class +| labels = +{{label|en|ancient area of jurisdiction of a person (feudal) or of a governmental body}} +{{label|nl|gebied dat vroeger onder het gezag viel van een heer of vrouwe of een instelling van kerk of staat}} +{{label|ur|کسی شخص (جاگیردار) یا سرکاری ادارے کے دائرہ اختیار کا قدیم علاقہ}} +| comments = +{{comment|en|Mostly for feudal forms of authority, but can also serve for historical forms of centralised authority}} +{{comment|ur|زیادہ تر اختیارات کی جاگیردارانہ شکلوں کے لیے ، لیکن مرکزی اختیار کی تاریخی شکلوں کے لیے بھی کام کر سکتا ہے}} +| rdfs:subClassOf = AdministrativeRegion +| owl:equivalentClass = +}}OntologyClass:HistoricalCountry2009443584802022-05-14T18:48:54Z{{Class +| labels = +{{label|en|Historical country}} +{{label|ga|tír stairiúil}} +{{label|fr|ancien pays}} +{{label|de|historischer Land}} +{{label|nl|voormalig land}} +{{label|ur|تاریخی ملک}} +| comments = +{{comment|en|A place which used to be a country.}} +{{comment|en|ایک ایسی جگہ جو ایک ملک ہوا کرتی تھی۔}} +| rdfs:subClassOf = Country +}}OntologyClass:HistoricalDistrict2009446559572021-09-18T06:20:33Z{{Class +| labels = {{label|en|Historical district}} +{{label|ga|ceantar stairiúil}} +{{label|fr|ancien département}} +{{label|nl|voormalig kwartier of district}} +{{label|de|historischer Kreis / Bezirk}} +{{label|ur|تاریخی ضلع}} +| comments = +{{comment|en|a place which used to be a district.}} +{{comment|ur|یک ایسی جگہ جو پہلے ضلع ہوتی تھی۔}} +| rdfs:subClassOf = District +}}OntologyClass:HistoricalEvent20011954550842021-09-09T15:30:30Z{{Class +| labels = +{{label|en|historical event}} +{{label|nl|historische gebeurtenis}} +{{label|fr|évènement historique}} +{{label|de|historisches Ereignis}} +{{label|ur|تاریخی واقعہ}} +| comments = +{{comment|en|an event that is clearly different from strictly personal events and had historical impact}} +{{comment|ur|ایک ایسا واقعہ جو ذاتی واقعات سے واضح طورپرمختلف ہوجونمایاں، تاریخ بدلنےوالااثررکھتا ہے}} +| rdfs:subClassOf = SocietalEvent +}}OntologyClass:HistoricalPeriod2005938569582022-03-09T09:06:05Z{{Class +|labels= + {{label|en|historical period}} + {{label|fr|période historique}} + {{label|el|ιστορική περίοδος}} + {{label|nl|historische periode}} + {{label|de|historische Periode}} + {{label|ga|tréimhse sa stair}} + {{label|ur|تاریخی دور}} +| comments= + {{comment|en|A historical Period should be linked to a Place by way of the property dct:spatial (already defined)}} + {{comment|fr|Une période historique doit être liée à un lieu au moyen de la propriété dct:spatial (déjà définie)}} + {{comment|ur|یک تاریخی ادوار کو جائیداد کے ذریعے کسی جگہ سے جوڑا جانا چاہیے۔}} +| rdfs:subClassOf = TimePeriod +| owl:equivalentClass = cidoccrm:E4_Period +| owl:disjointWith = Person +| owl:equivalentClass = wikidata:Q11514315 +}}OntologyClass:HistoricalProvince2009447559622021-09-18T06:27:01Z{{Class +| labels = {{label|en|Historical province}} +{{label|ga|cúige stairiúil}} +{{label|fr|Ancienne province}} +{{label|de|historischer Provinz}} +{{label|nl|voormalige provincie}} +{{label|ur|تاریخی صوبہ}} +| comments = {{comment|en|A place which used to be a province.}} +{{comment|ur|یک ایسی جگہ جو ایک صوبہ ہوا کرتی تھی۔}} +| rdfs:subClassOf = Province +}}OntologyClass:HistoricalRegion2009445569632022-03-09T09:23:54Z{{Class +| labels = + {{label|en|Historical region}} + {{label|ga|réigiún stairiúil}} + {{label|fr|Ancienne région}} + {{label|de|historischer Region}} + {{label|nl|voormalige regio}} + {{label|ur|تاریخی علاقہ}} +| comments = + {{comment|en|a place which used to be a region.}} + {{comment|fr|Lieu qui était autrefois une région.}} + {{comment|ur|ایک ایسی جگہ جو ایک علاقہ ہوا کرتی تھی}} +| rdfs:subClassOf = Region +| owl:equivalentClass = wikidata:Q1620908 +}}OntologyClass:HistoricalSettlement2009444559452021-09-18T05:53:30Z{{Class +| labels = {{label|en|Historical settlement}} +{{label|ga|áit lonnaithe stairiúil}} +{{label|fr|ancien ville ou village}} +{{label|nl|voormalige stad of dorp}} +{{label|de|historischer Siedlung}} +{{label|de|historischer Siedlung}} +{{label|ur|تاریخی آبادکاری}} +| comments = {{comment|en|A place which used to be a city or town or village.}} +{{comment|ur|وہ جگہ جو پہلے شہر یا قصبہ یا گاؤں ہوا کرتی تھی}} +| rdfs:subClassOf = Settlement +}}OntologyClass:HockeyClub20011257584982022-05-14T19:17:10Z{{Class +| labels = +{{label|en|hockey club}} +{{label|de|Hockeyverein}} +{{label|nl|hockeyclub}} +{{label|ur|ہاکی کی تنظیم}} +| rdfs:subClassOf = SportsClub + +}}OntologyClass:HockeyTeam200383550882021-09-09T15:43:28Z{{Class +| labels = +{{label|en|hockey team}} +{{label|nl|hockeyploeg}} +{{label|de|Hockeymannschaft}} +{{label|el|ομάδα χόκεϊ}} +{{label|fr|équipe de hockey}} +{{label|sl|Hokejska ekipa}} +{{label|ur|ہاکی کھیل کی جماعت}} +| rdfs:subClassOf = SportsTeam +| owl:equivalentClass = wikidata:Q4498974 +}}OntologyClass:Holiday2004304559472021-09-18T05:57:41Z{{Class +| labels = + {{label|en|holiday}} + {{label|ga|lá saoire}} + {{label|fr|jour férié}} + {{label|nl|vakantie}} + {{label|de|Feiertag}} + {{label|it|giorno festivo}} + {{label|el|αργία}} + {{label|ja|祝日}} + {{label|ko|휴일}} + {{label|ur|چھٹی}} +| comments = + {{comment|fr|Un jour férié est un jour de fête civile ou religieuse, ou commémorant un événement.}} + {{comment|de|Unter einem Feiertag oder Festtag wird allgemein ein arbeitsfreier Tag mit besonderer Feiertagsruhe verstanden.}} + {{comment|ur|ام تعطیل سول یا مذہبی جشن کا دن ہے ، یا کسی تقریب کی یاد میں}} +| rdfs:subClassOf = TimeInterval +| owl:equivalentClass = wikidata:Q1445650 +}} + +<references/>OntologyClass:HollywoodCartoon2006103559702021-09-18T06:39:45Z{{Class +| labels = +{{label|en|hollywood cartoon}} +{{label|nl|Hollywood cartoon}} +{{label|el|κινούμενα σχέδια του Hollywood}} +{{label|de|Hollywood Cartoon}} +{{label|ur|ہالی ووڈ کارٹون}} +| rdfs:subClassOf = Cartoon +}}OntologyClass:Hormone20011746569502022-03-09T08:35:55Z{{Class +| labels = + {{label|en|Hormone}} + {{label|fr|Hormone}} + {{label|nl|hormoon}} + {{label|ur|اعضاء کی خوراک}} +| comments = + {{comment|en|A hormone is any member of a class of signaling molecules produced by glands in multicellular organisms that are transported by the circulatory system to target distant organs to regulate physiology and behaviour.}} + {{comment|fr|Une hormone fait partie d'une classe de molécules de signalisation produites par les glandes d'organismes multicellulaires qui sont transportées par le système circulatoire pour cibler des organes distants afin de réguler la physiologie et le comportement.}} + {{comment|nl|Hormonen zijn signaalstoffen die door endocriene klieren via de bloedbaan aan doelcellen of -organen worden afgegeven en fysiologische processen en gedrag reguleren}} + {{comment|ur|ایک مادہ جو غدود سے نکل کر خون میں شامل ہوتا ہےاورگردش کے نظام کے ذریعے دور دراز کے اعضاء کو نشانہ بناتے ہیں تاکہ جسمانیات اور طرز عمل کو کنٹرول کریں}} + +| rdfs:subClassOf = Biomolecule +| owl:equivalentClass = wikidata:Q8047 +}}OntologyClass:Horse20011371559492021-09-18T06:04:32Z{{Class +| labels = +{{label|en|horse}} +{{label|fr|cheval}} +{{label|ga|capall}} +{{label|nl|paard}} +{{label|da|hest}} +{{label|de|Pferd}} +{{label|ja|ウマ}} +{{label|ur|گھوڑا}} +| rdfs:subClassOf = Mammal +}}OntologyClass:HorseRace2007996559732021-09-18T06:45:37Z{{Class +| labels = +{{label|en|horse race}} +{{label|de|Pferderennen}} +{{label|fr|course de chevaux}} +{{label|el|αγώνας ιππασίας}} +{{label|nl|paardenrace}} +{{label|ur|گھوڑا دوڑ میں مقابلہ کرنا}} +| rdfs:subClassOf = Race +}}OntologyClass:HorseRider2007601551512021-09-10T09:53:45Z{{Class +|labels = +{{label|en|horse rider}} +{{label|fr|cavalier}} +{{label|ga|marcach}} +{{label|de|Reiter}} +{{label|ur|گھڑ سوار}} +{{label|nl|paardrijder}} +{{label|el|ιππέας}} +| rdfs:subClassOf = Athlete +}}OntologyClass:HorseTrainer2006151566732022-02-28T10:07:11Z{{Class +| labels = {{label|en|horse trainer}} +{{label|de|Pferdetrainer}} +{{label|el|εκπαιδευτής αλόγων}} +{{label|fr|entraineur de chevaux}} +{{label|ja|調教師}} +{{label|nl|paardentrainer}} +{{label|ur|گھوڑا سدھانے والا}} +| rdfs:subClassOf = Person +}}OntologyClass:Hospital20013647562932022-02-16T11:39:34Z{{Class +| labels = {{label|da| hospital}} + {{label|de|Krankenhaus}} +{{label|en|hospital}} + {{label|ga|ospidéal}} + {{label|el|νοσοκομείο}} + {{label|nl|ziekenhuis}} + {{label|fr|hôpital}} +{{label|ko|병원}} + {{label|pt|hospital}} + {{label|ur|ہسپتال}} + +| rdfs:subClassOf = building +}}OntologyClass:HotSpring2006657580332022-05-09T16:59:18Z{{Class +| labels = +{{label|en|hot spring}} +{{label|fr|source d'eau chaude}} +{{label|ga|foinse the}} +{{label|nl|warmwaterbron}} +{{label|de|heiße Quelle}} +{{label|ur|گرم موسم بہار}} +{{label|ja|温泉}} +{{label|pt|fonte termal}} +| rdfs:subClassOf = NaturalPlace +| owl:equivalentClass = wikidata:Q177380 +}}OntologyClass:Hotel2002509561292022-01-23T08:07:07Z{{Class +| labels = +{{label|en|hotel}} +{{label|ga|óstán}} +{{label|da|hotel}} +{{label|de|Hotel}} +{{label|it|albergo}} +{{label|el|ξενοδοχείο}} +{{label|ja|ホテル}} +{{label|fr|hôtel}} +{{label|ko|호텔}} +{{label|nl|hotel}} +{{label|ur|سرائے}} + +| rdfs:subClassOf = Building +| owl:equivalentClass = schema:Hotel, wikidata:Q27686 +}}OntologyClass:HumanGene2005027566912022-02-28T10:48:54Z{{ Class +|labels= +{{label|en|HumanGene}} +{{label|ga|géin duine}} +{{label|de|Humangen}} +{{label|el|ανθρώπινο γονίδιο}} +{{label|fr|gène humain}} +{{label|ja|ヒト遺伝子}} +{{label|nl|menselijk gen}} +{{label|ur|انسانی نَسبہ}} +| rdfs:subClassOf = Gene +}}OntologyClass:HumanGeneLocation2005034573352022-03-31T10:41:48Z{{Class +| labels = + {{label|en|HumanGeneLocation}} + {{label|fr|Position de gène chez l'homme}} + {{label|de|Humangen Lokation}} + {{label|el|τοποθεσία του ανθρώπινου γονιδίου}} + {{label|ja|ヒト遺伝子座}} + {{label|nl|menselijk genoom locatie}} + {{label|ur|انسانی نَسبہ کا مقام}} +| rdfs:subClassOf = GeneLocation +}}OntologyClass:Humorist2008033563152022-02-16T12:33:46Z{{Class +| labels = +{{label|en|humorist}} +{{label|nl|komiek}} +{{label|el|χιουμορίστας}} +{{label|de|Humorist}} +{{label|fr|humoriste}} +{{label|ur|ظریف}} +{{label|ja|喜劇作家または喜劇俳優}} +| rdfs:subClassOf = Artist +}}OntologyClass:IceHockeyLeague2002173587692022-05-16T19:46:23Z{{Class +| labels = +{{label|en|ice hockey league}} +{{label|de|Eishockey-Liga}} +{{label|el|πρωτάθλημα χόκεϋ}} +{{label|fr|ligue d'hockey sur glace}} +{{label|nl|ijshockey competitie}} +{{label|ur|برفانی ہاکی کی انجمن}} +| rdfs:subClassOf = SportsLeague +| comments = +{{comment|en|a group of sports teams that compete against each other in Ice Hockey.}} +{{comment|ur|کھیلوں کی ٹیموں کا ایک گروپ جو برفانی ہاکی میں ایک دوسرے سے مقابلہ کرتا ہے}} +}}OntologyClass:IceHockeyPlayer200385563242022-02-16T12:42:54Z{{Class +| labels = +{{label|en|ice hockey player}} +{{label|de|Eishockeyspieler}} +{{label|el|παίκτης χόκεϋ}} +{{label|fr|joueur de hockey sur glace}} +{{label|nl|ijshockeyspeler}} +{{label|ko|아이스하키 선수}} +{{label|ur|برفانی ہاکی کا کھلاڑی}} +| rdfs:subClassOf = WinterSportPlayer +| owl:equivalentClass = wikidata:Q11774891 +}}OntologyClass:Identifier20011969563262022-02-16T12:44:59Z{{Class +| labels= +{{label|en|identifier}} +{{label|nl|identificator}} +{{label|de|Bezeichner}} +{{label|fr|identifiant}} +{{label|ur|شناخت کنندہ}} +| owl:equivalentClass = wikidata:Q6545185 +}}OntologyClass:Ideology2003260563292022-02-16T12:48:27Z{{Class +| labels = + {{label|en|ideology}} +{{label|ga|idé-eolaíocht}} + {{label|fr|idéologie}} + {{label|de|Ideologie}} + {{label|nl|ideologie}} + {{label|el|ιδεολογία}} + {{label|pt|ideologia}} + {{label|ja|イデオロギー}} +{{label|ur|نظریہ}} +| rdfs:subClassOf = TopicalConcept +| comments = + {{comment|en|for example: Progressivism_in_the_United_States, Classical_liberalism}} + {{comment|el|για παραδειγμα: Προοδευτισμός στις ΗΠΑ, κλασικός φιλελευθερισμός}} + {{comment|ur|مثال کے طور پر: ریاستہائے متحدہ میں ترقی پسندی، کلاسیکی لبرل ازم}} +| owl:equivalentClass = wikidata:Q7257, d0:CognitiveEntity +}}OntologyClass:Image2009565563342022-02-16T12:52:48Z{{Class +| labels = +{{label|en|image}} +{{label|fr|image}} +{{label|ga|íomhá}} +{{label|nl|afbeelding}} +{{label|da|billede}} +{{label|de|Bild}} +{{label|ja|画像}} +{{label|ur|تصویر}} +| comments = +{{comment|en|A document that contains a visual image}} +{{comment|ur|ایک دستاویز جس میں بصری عکس ہو۔}} +| rdfs:subClassOf = Document +| owl:equivalentClass = foaf:Image, http://www.w3.org/ns/ma-ont#Image +}}OntologyClass:InformationAppliance2006186563372022-02-16T12:56:12Z{{Class +| labels = +{{label|en|information appliance}} +{{label|de|Datengerät}} +{{label|el|συσκευή πληροφορικής}} +{{label|es|dispositivo electrónico}} +{{label|ur| معلوماتی آلات}} +| comments = +{{comment|en|An information device such as PDAs or Video game consoles, etc.}} +{{comment|ur|معلوماتی آلہ جیسے پی ڈی اے یا ویڈیو گیم کنسولز وغیرہ}} +| rdfs:subClassOf = Device +| owl:equivalentClass = wikidata:Q1067263 +}}OntologyClass:Infrastructure200386552452021-09-10T19:27:19Z{{Class +| labels = +{{label|en|infrastructure}} +{{label|da|infrastruktur}} +{{label|de|Infrastruktur}} +{{label|el|Υποδομή}} +{{label|fr|infrastructure}} +{{label|nl|infrastructure}} +{{label|ja|インフラストラクチャー}} +{{label|ur|بنیادی ڈھانچہ}} +| rdfs:subClassOf = ArchitecturalStructure +| specificProperties = {{SpecificProperty | ontologyProperty = length | unit = kilometre }} +}}OntologyClass:Infrastucture20013496568012022-02-28T21:51:06Z{{Class +| labels = + {{label|en|infrastructure}} + {{label|fr|infrastructure}} + {{label|ur|بنیادی ڈھانچہ}} +| rdfs:subClassOf =ArchitecturalStructure +}}OntologyClass:InlineHockeyLeague2002174578752022-05-04T09:11:26Z{{Class +| rdfs:subClassOf = SportsLeague +| labels = +{{label|en|inline hockey league}} +{{label|ga|sraith haca inlíne}} +{{label|el|πρωτάθλημα χόκεϋ inline }} +{{label|nl|inlinehockey competitie}} +{{label|de|Inlinehockey Liga}} +{{label|ur|ان لائن ہاکی انجمن}} +| comments = +{{comment|en| group of sports teams that compete against each other in Inline Hockey.}} +{{comment|ur|کھیلوں کی ٹیموں کا گروپ جو ان لائن ہاکی میں ایک دوسرے سے مقابلہ کرتے ہیں۔}} + +}}OntologyClass:Insect200387565952022-02-18T05:19:52Z{{Class +| labels = +{{label|en|insect}} +{{label|ga|feithid}} +{{label|de|Insekt}} +{{label|el|έντομο}} +{{label|nl|insect}} +{{label|es|insecto}} +{{label|fr|insecte}} +{{label|ja|昆虫}} +{{label|ur| کیڑا}} +| rdfs:subClassOf = Animal +| owl:equivalentClass = wikidata:Q1390 +}}OntologyClass:Instrument2002630563732022-02-16T14:38:34Z{{Class +| labels = +{{label|en|Instrument}} +{{label|ga|uirlis}} +{{label|de|musikinstrument}} +{{label|it|strumento musicale}} +{{label|fr|instrument de musique}} +{{label|el|Μουσικό Όργανο}} +{{label|sl|Glasbilo}} +{{label|es|Instrumento}} +{{label|ko|악기}} +{{label|nl|muziekinstrument}} +{{label|ja|楽器}} +{{label|ur|ساز}} +| comments = +{{comment|en|Describes all musical instrument}} +{{comment|ur| +تمام آلات موسیقی کو بیان کرتا ہے}} +| rdfs:subClassOf = Device, schema:Product +| owl:equivalentClass = wikidata:Q225829 +}}OntologyClass:Instrumentalist2007753578772022-05-04T09:16:18Z{{Class +| labels = +{{label|en|instrumentalist}} +{{label|ga|ionstraimí}} +{{label|nl|instrumentalist}} +{{label|fr|instrumentiste}} +{{label|de|Musiker}} +{{label|ur|سازندہ}} +{{label|el|μουσικός}} +{{label|ja|音楽家}} +| rdfs:subClassOf = MusicalArtist +| comments = +{{comment|el|Ο μουσικός είναι ένα άτομο το οποίο γράφει, ερμηνεύει, ή κάνει μουσική.}} +{{comment|fr|Un instrumentiste est quelqu'un qui joue d'un instrument. Tout instrumentiste non-vocal (incluant guitariste, pianiste, saxophoniste, DJ, musicien divers...). Tout artiste solo qui compose et/ou fait partie d'un groupe.}} +{{comment|nl|Een instrumentalist is een musicus die een muziekinstrument bespeelt. (https://nl.wikipedia.org/wiki/Instrumentalist)}} +}}OntologyClass:Intercommunality2007069565972022-02-18T05:22:25Z{{Class +| labels = +{{label|en|Intercommunality}} +{{label|de|Interkommunalität}} +{{label|fr|intercommunalité}} +{{label|ur|فرقہ واریت}} +| rdfs:subClassOf = PopulatedPlace +| owl:equivalentClass = wikidata:Q3153117 +}}OntologyClass:InternationalFootballLeagueEvent20011111587592022-05-16T19:34:05Z{{Class +| labels = +{{label|en|international football league event}} +{{label|de|International Football Liga Veranstaltung}} +{{label|ur|بین الاقوامی فٹ بال انجمن کی تقریب}} +| rdfs:subClassOf = SportsEvent +}}OntologyClass:InternationalOrganisation20011273563202022-02-16T12:39:58Z{{Class +|labels= +{{label|en|international organisation}} +{{label|fr|organisation internationale}} +{{label|nl|internationale organisatie}} +{{label|ur|بین الاقوامی تنظیم}} +| rdfs:subClassOf=Organisation +|comments= +{{comment|en|An international organisation is either a private or a public organisation seeking to accomplish goals across country borders}} +{{comment|ur|ایک بین الاقوامی تنظیم یا تو ایک نجی یا عوامی تنظیم ہے جو ملک کی سرحدوں سے اہداف حاصل کرنے کی کوشش کرتی ہے۔}} +}}OntologyClass:Island200388556222021-09-15T10:19:25Z{{Class +| labels = +{{label|da|ø}} +{{label|de|Insel}} +{{label|es|Isla}} +{{label|en|island}} +{{label|ga|oileán}} +{{label|nl|eiland}} +{{label|pt|ilha}} +{{label|el|νησί}} +{{label|fr|île}} +{{label|pl|wyspa}} +{{label|ko|섬}} +{{label|ja|島}} +{{label|ur|جزیرہ}} +| rdfs:subClassOf = PopulatedPlace +| owl:equivalentClass = wikidata:Q23442 +}}OntologyClass:JewishLeader20013561562882022-02-16T11:09:46Z{{Class +| labels = + {{label|en|JewishLeader}} + {{label|eu|Buruzagi judua}} + {{label|da|Jødisk leder}} + {{label|fr|chef juif}} + {{label|hi|यहूदी नेता}} + {{label|ar|زعيم يهودي}} + {{label|ur|یہودی رہنما}} +| rdfs:subClassOf = Religious +}}OntologyClass:Jockey2006147585172022-05-14T19:36:20Z{{Class +| labels = +{{label|en|jockey (horse racer)}} +{{label|fr|jockey (coureur à cheval)}} +{{label|ga|marcach}} +{{label|nl|jockey}} +{{label|ur|پیشہ ور گھڑ سوار}} +{{label|de|Jockey (Pferderennprofi)}} +{{label|el|αναβάτης αλόγου αγώνων}} +{{label|ja|騎手}} +| rdfs:subClassOf = Athlete +}}OntologyClass:Journalist200389562842022-02-16T11:01:00Z{{Class +| labels = +{{label|en|journalist}} +{{label|ga|iriseoir}} +{{label|de|Journalist}} +{{label|nl|journalist}} +{{label|it|giornalista}} +{{label|fr|journaliste}} +{{label|es|periodista}} +{{label|el|δημοσιογράφος}} +{{label|ja|ジャーナリスト}} +{{label|ur|صحافی}} +| rdfs:subClassOf = Person +| owl:equivalentClass = wikidata:Q1930187 +}}OntologyClass:Judge200390562862022-02-16T11:03:43Z{{Class +| labels = +{{label|en|judge}} +{{label|ga|breitheamh}} +{{label|de|richter}} +{{label|it|giudice}} +{{label|fr|juge}} +{{label|el|δικαστής}} +{{label|es|juez}} +{{label|ja|裁判官}} +{{label|nl|rechter}} +{{label|ur|قاضی}} +| rdfs:subClassOf = Person +| owl:equivalentClass = wikidata:Q16533 +}}OntologyClass:LacrosseLeague2002175585312022-05-14T20:00:21Z{{Class + +| labels = +{{label|en|lacrosse league}} +{{label|ur|لیکروس انجمن}} +{{label|nl|lacrosse bond}} +{{label|de|Lacrosse-Liga}} +{{label|el|πρωτάθλημα χόκεϋ σε χόρτο}} +{{label|fr|ligue de crosse}} +{{label|ja|ラクロスリーグ}} +| rdfs:subClassOf = SportsLeague +| comments = +{{comment|en|a group of sports teams that compete against each other in Lacrosse.}} +{{comment|ur|کھیلوں کی ٹیموں کا ایک گروپ جو لیکروس لیگ میں ایک دوسرے کے خلاف مقابلہ کرتا ہے}} +}}OntologyClass:LacrossePlayer2006221562082022-02-15T18:17:44Z{{Class +| labels = +{{label|en|lacrosse player}} +{{label|ur|لیکروس کھلاڑی}} +{{label|ga|imreoir crosógaíochta}} +{{label|nl|lacrosse-speler}} +{{label|de|Lacrossespieler}} +{{label|el|παίκτης χόκεϋ σε χόρτο}} +{{label|ja|ラクロス選手}} +| rdfs:subClassOf = Athlete +}}OntologyClass:Lake200391562102022-02-15T18:20:37Z{{Class +| labels = +{{label|en|lake}} +{{label|ur|جھیل}} +{{label|de|See}} +{{label|el|λίμνη}} +{{label|fr|lac}} +{{label|pt|lago}} +{{label|ru|озеро}} +{{label|ga|loch}} +{{label|ja|호수}} +{{label|ko|호수}} +{{label|nl|meer}} +{{label|pl|jezioro}} +| rdfs:subClassOf = BodyOfWater +| owl:equivalentClass = schema:LakeBodyOfWater, wikidata:Q23397 +| specificProperties = {{SpecificProperty | ontologyProperty = shoreLength | unit = kilometre }} + {{SpecificProperty | ontologyProperty = areaOfCatchment | unit = squareKilometre }} + {{SpecificProperty | ontologyProperty = volume | unit = cubicMetre }} +}}OntologyClass:Language200392562132022-02-15T18:24:17Z{{Class +| labels = + {{label|en|language}} +{{label|ur|زبان}} + {{label|ga|teanga}} + {{label|gl|lingua}} + {{label|nl|taal}} + {{label|el|γλώσσα}} + {{label|es|idioma}} + {{label|da|sprog}} + {{label|de|Sprache}} + {{label|fr|langage}} + {{label|ko|언어}} + {{label|ja|言語}} +| owl:equivalentClass = schema:Language, wikidata:Q315 +| rdfs:subClassOf = owl:Thing +}}OntologyClass:LatterDaySaint20013572562142022-02-15T18:26:54Z{{Class +| labels = + {{label|en|Latter Day Saint}} +{{label|ur|نارمن فرقے کا عيسائی}} + {{label|eu|Azken eguneko santua}} + {{label|da|Sidste dages helgen}} + {{label|fr|Saint des derniers jours}} + {{label|hi|बाद के दिन संत}} + {{label|ar|قديس اليوم الأخير}} +| rdfs:subClassOf = Religious +}}OntologyClass:LaunchPad200393562182022-02-15T18:33:03Z{{Class +| labels = +{{label|en|launch pad}} +{{label|ur|میزائل چلانے کی جگہ}} +{{label|ga|ceap lainseála}} +{{label|nl|lanceerbasis}} +{{label|de|Startrampe}} +{{label|el|ράμπα φορτώσεως}} +{{label|fr|rampe de lancement}} +| rdfs:subClassOf = Infrastructure +| owl:equivalentClass = wikidata:Q1353183 +}}OntologyClass:Law20011376562802022-02-16T10:03:49Z{{Class +| labels = +{{label|en|law}} +{{label|ur|قانون}} +{{label|da|lov}} +{{label|de|Gesetz}} +{{label|nl|wet}} +{{label|fr|loi}} +{{label|ja|法 (法学)}} +| rdfs:subClassOf = WrittenWork +}}OntologyClass:LawFirm2003730562242022-02-15T18:44:20Z{{Class +| labels = +{{label|en|law firm}} +{{label|ur|قانونی فرم}} +{{label|ga|gnólacht dlí}} +{{label|el|εταιρεία δικηγόρων}} +{{label|de|Anwaltskanzlei}} +{{label|es|bufete de abogados}} +{{label|nl|advocatenkantoor}} +{{label|ja|法律事務所}} +| rdfs:subClassOf = Company +| comments = +{{comment|en|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.}} +{{comment|ur|ایک قانونی فرم ایک کاروباری ادارہ ہے جسے ایک یا زیادہ وکلاء نے قانون کی مشق میں مشغول کرنے کے لیے تشکیل دیا ہے۔ قانونی فرم کی طرف سے فراہم کردہ بنیادی خدمت کلائنٹس (افراد یا کارپوریشنز) کو ان کے قانونی حقوق اور ذمہ داریوں کے بارے میں مشورہ دینا ہے، اور دیوانی یا فوجداری مقدمات، کاروباری لین دین، اور دیگر معاملات میں اپنے مؤکلوں کی نمائندگی کرنا ہے جن میں قانونی مشورہ اور دیگر مدد طلب کی جاتی ہے۔}} +{{comment|de| Als Anwaltskanzlei bezeichnet man die Büroräume und das Unternehmen oder den Betrieb eines Rechtsanwalts oder mehrerer Rechtsanwälte.}} +| owl:equivalentClass = wikidata:Q613142 +}}OntologyClass:Lawyer2009435562272022-02-15T18:51:57Z{{Class +| labels = {{label|en|Lawyer}} +{{label|ur|وکیل}} +{{label|ga|dlíodóir}} +{{label|fr|Avocat}} +{{label|nl|advocaat}} +{{label|de|Anwalt}} +{{label|ja|弁護士}} +| comments = {{comment|en|a person who is practicing law.}} +{{comment|ur|ایک شخص جو قانون پر عمل پیرا ہے}} +| rdfs:subClassOf = Person +| owl:equivalentClass = wikidata:Q40348 +}}OntologyClass:LegalCase2002442562292022-02-15T18:53:55Z{{Class +| labels = + {{label|en|Legal Case}} +{{label|ur|قانونی مقدمہ}} + {{label|de|Rechtsfall}} + {{label|el|νομική υπόθεση}} + {{label|fr|cas juridique}} + {{label|pt|caso jurídico }} + {{label|nl|rechtzaak}} +| rdfs:subClassOf = Case +| owl:equivalentClass = wikidata:Q2334719 +}}OntologyClass:Legislature200394562322022-02-15T18:56:55Z{{Class +| labels = +{{label|en|legislature}} +{{label|ur|مقننہ}} +{{label|ga|reachtas}} +{{label|de|Legislative}} +{{label|el|νομοθετικό σώμα}} +{{label|es|legislatura}} +{{label|fr|pouvoir législatif}} +{{label|nl|wetgevend orgaan}} +{{label|ja|立法府}} +| rdfs:subClassOf = Organisation +| owl:equivalentClass = wikidata:Q11204 +}}OntologyClass:Letter2005348562342022-02-15T19:02:21Z{{ Class +| labels = +{{label|de|Buchstabe}} +{{label|ur|حرف}} +{{label|en|letter}} +{{label|ga|litir}} +{{label|fr|lettre}} +{{label|el|γράμμα}} +{{label|nl|letter}} +{{label|ja|文字}} +| comments = +{{comment|de|Ein Buchstabe des Alphabets.}} +{{comment|ur|حروف تہجی سے ایک حرف}} +{{comment|en|A letter from the alphabet.}} +{{comment|fr|Ene lettre de l'alphabet.}} +| rdfs:subClassOf = WrittenWork +<!-- | rdfs:subClassOf = Language --> +| owl:equivalentClass = wikidata:Q9788, wikidata:Q133492 +}}OntologyClass:Library2002934562362022-02-15T19:04:47Z{{Class +| labels = +{{label|da|bibliotek}} +{{label|ur|کتب خانہ}} +{{label|de|Bibliothek}} +{{label|en|library}} +{{label|el|βιβλιοθήκη}} +{{label|es|Biblioteca}} +{{label|fr|bibliothèque}} +{{label|ga|leabharlann}} +{{label|ja|図書館}} +{{label|ko|도서관}} +{{label|nl|bibliotheek}} +{{label|pl|biblioteka}} +| rdfs:subClassOf = EducationalInstitution <!-- , Building --> +| owl:equivalentClass = schema:Library, wikidata:Q7075 +}}OntologyClass:Lieutenant2002331585472022-05-14T20:32:44Z{{Class +| labels = +{{label|en|lieutenant}} +{{label|ur|فوجی افسر}} +{{label|ga|leifteanant}} +{{label|de|Leutnant}} +{{label|fr|lieutenant}} +{{label|pt|tenente}} +{{label|nl|luitenant}} +{{label|el|υπολοχαγός}} +{{label|ja|中尉}} +| rdfs:subClassOf = Politician + +}}OntologyClass:LifeCycleEvent2008729562412022-02-15T19:14:31Z{{Class +| labels = +{{label|en|life cycle event}} +{{label|ur|دورانیہ حیات وقوعه}} +{{label|de|Lebenszyklus Ereignis}} +{{label|nl|wordingsgebeurtenis}} +| comment = +{{comment|en| Type of event meant to express one-time or recurring major changes in a resource's life cycle}} +{{comment|ur| واقعہ کی قسم کا مطلب وسائل کی زندگی کے چکر میں ایک بار یا بار بار آنے والی بڑی تبدیلیوں کا اظہار کرنا ہے۔}} +| rdfs:subClassOf = Event +}}OntologyClass:Ligament2005853572902022-03-30T14:00:43Z{{Class +| rdfs:subClassOf = AnatomicalStructure +| labels = + {{label|en|ligament}} + {{label|fr|ligament}} + {{label|ur|بندهن}} + {{label|de|Band (Anatomie)}} + {{label|pt|ligamento}} + {{label|el|σύνδεσμος}} + {{label|nl|bindweefsel}} + {{label|ja|靭帯}} +| owl:equivalentClass = wikidata:Q39888 +}}OntologyClass:LightNovel2005817585502022-05-14T20:43:50Z{{Class +| labels = +{{label|en|light novel}} +{{label|ur|جاپانی افسانه}} +{{label|de|Light novel}} +{{label|ja|ライトノベル}} +{{label|el|ανάλαφρο μυθιστόρημα}} +| rdfs:subClassOf = Novel +| comments = +{{comment|en|A style of Japanese novel<ref name="light novel">http://en.wikipedia.org/wiki/Light_novel</ref>}} +{{comment|ur|جاپانی ناول کا ایک انداز<ref name="light novel">http://en.wikipedia.org/wiki/Light_novel</ref>}} +| owl:equivalentClass = wikidata:Q747381 +}} +==References== +<references/>OntologyClass:Lighthouse200395562472022-02-16T07:45:44Z{{Class +| labels = +{{label|de|Leuchtturm}} +{{label|en|lighthouse}} +{{label|ur|روشنی کا مینار}} +{{label|ga|teach solais}} +{{label|nl|vuurtoren}} +{{label|fr|phare}} +{{label|ja|灯台}} +{{label|el|Φάρος}} +| rdfs:subClassOf = Tower +| owl:equivalentClass = wikidata:Q39715 +}}OntologyClass:LineOfFashion2007441585382022-05-14T20:13:42Z{{Class +|labels = + {{label|en|line of fashion}} +{{label|ur|قطار رائج}} + {{label|de|Modelinie}} + {{label|nl|modelijn}} + {{label|fr|type de couture}} +| comments = +{{comment|en|A coherent type of clothing or dressing following a particular fashion}} + +{{comment|ur|ایک مربوط قسم کا لباس یا لباس کسی خاص فیشن کے بعد}} +{{comment|nl|Een samenhangend geheel van kleding in een bepaalde stijl volgens een bepaalde mode.}} +| rdfs:subClassOf = Work +}}OntologyClass:Linguist2007744562532022-02-16T07:58:13Z{{Class +| labels = +{{label|en|linguist}} +{{label|ur|ماہر لسانیات}} +{{label|ca|lingüista}} +{{label|de|Linguist}} +{{label|de|Sprachwissenschaftler}} +{{label|el|γλωσσολόγος}} +{{label|fr|linguiste}} +{{label|ga|teangeolaí}} +{{label|nl|linguïst}} +{{label|pl|lingwista}} +{{label|ja|言語学者}} +| rdfs:subClassOf = Person +| owl:equivalentClass = wikidata:Q14467526 +}}OntologyClass:Lipid20010412562552022-02-16T08:01:49Z{{Class +| labels = +{{label|en|lipid}} +{{label|ur|چربی}} +{{label|nl|lipide}} +{{label|de|lipid}} +{{label|fr|lipide}} +{{label|ja|脂質}} +| comments = +{{comment|nl|Zijn vetten en vetachtige stoffen die in de biochemie een belangrijke rol spelen}} +{{comment|ur|چربی اور چکنائی والے مادے ہیں جو بائیو کیمسٹری میں اہم کردار ادا کرتے ہیں}} +| rdfs:subClassOf = Biomolecule +}}OntologyClass:List2006032562582022-02-16T08:28:32Z{{Class +| labels = + {{label|en|list}} +{{label|ur|فہرست}} +{{label|ga|liosta}} + {{label|da|liste}} + {{label|de|Liste}} + {{label|fr|liste}} + {{label|el|λίστα}} + {{label|nl|lijst}} + {{label|ja|一覧}} +| comments = + {{comment|en|A general list of items.}} + {{comment|ur|اشیاء کی عمومی فہرست}} + {{comment|fr|une liste d'éléments.}} + {{comment|nl|Een geordende verzameling objecten.}} + {{comment|el|Μια γενική λίστα από αντικείμενα.}} +| owl:equivalentClass = skos:OrderedCollection, dul:Collection +| rdfs:subClassOf = owl:Thing +}}OntologyClass:LiteraryGenre2009706585562022-05-14T20:52:58Z{{Class +|labels= +{{label|en|literary genre}} +{{label|ur|ادبی صنف}} +{{label|de|Literaturgattung}} +{{label|fr|genre littéraire}} +{{label|nl|literair genre}} +| comments = {{comment|en|Genres of literature, e.g. Satire, Gothic}} +{{comment|ur|ادب کی انواع، جیسے طنزیہ، غیر مہذب}} +| rdfs:subClassOf = Genre +}}OntologyClass:Locality2007106562622022-02-16T08:33:37Z{{Class +| labels = +{{label|en|locality}} +{{label|ur|محلہ}} +{{label|nl|streek}} +{{label|ga|ceantar}} +{{label|fr|localité}} +{{label|de|Gegend}} +{{label|el|τόπος}} +{{label|ja|地域}} +| rdfs:subClassOf = PopulatedPlace +| owl:equivalentClass = wikidata:Q3257686 +}}OntologyClass:Lock2009324562642022-02-16T08:36:21Z{{Class +| labels = +{{label|en|lock}} +{{label|ur|تالا}} +{{label|ga|glas}} +{{label|da|lås}} +{{label|de|Schleuse}} +{{label|el|κλειδαριά}} +{{label|nl|sluis}} +{{label|fr|écluse}} +{{label|ja|錠}} +| rdfs:subClassOf = Infrastructure +}}OntologyClass:Locomotive2002533562662022-02-16T08:39:37Z{{Class +| labels = +{{label|en|locomotive}} +{{label|ur|ریل گاڑی کا انجن}} +{{label|ga|traen}} +{{label|de|Lokomotive}} +{{label|fr|locomotive}} +{{label|el|κινητήριος}} +{{label|nl|locomotief}} +{{label|ja|機関車}} +<!-- | specificProperties = + {{SpecificProperty | ontologyProperty = modelLineVehicle}} --> +| rdfs:subClassOf = MeanOfTransportation, schema:Product +| owl:equivalentClass = wikidata:Q93301 +}}OntologyClass:LunarCrater200396569622022-03-09T09:20:15Z{{Class +| labels = + {{label|en|lunar crater}} + {{label|ur|قمری گڑھا}} + {{label|ga|cráitéar gealaí}} + {{label|de|Mondkrater}} + {{label|fr|cratère lunaire}} + {{label|el|Σεληνιακός κρατήρας}} + {{label|nl|maankrater}} + {{label|pt|cratera lunar}} +| rdfs:subClassOf = Crater +| specificProperties = {{SpecificProperty | ontologyProperty = diameter | unit = kilometre }} +| owl:equivalentClass = wikidata:Q1348589 +}}OntologyClass:Lymph200397562762022-02-16T09:01:08Z{{Class +| rdfs:label@en = lymph +| rdfs:label@ga = limfe +| rdfs:label@de = Lymphe +| rdfs:label@fr = lymphe +| rdfs:label@ja = リンパ +| rdfs:label@el = λέμφος +| rdfs:label@nl = lymfe +|labels = +{{label|ur|سفید رنگ کے خلیوں پر مشتمل ایک بے رنگ سیال}} +| rdfs:subClassOf = AnatomicalStructure +}}OntologyClass:Magazine200398566262022-02-27T05:03:34Z{{Class +| labels = +{{label|en|magazine}} +{{label|ga|irisleabhar}} +{{label|ur|رسالہ}} + +{{label|de|Publikumszeitschrift}} +{{label|el|Περιοδικό}} +{{label|fr|magazine}} +{{label|ko|잡지}} +{{label|ja|雑誌}} +{{label|nl|tijdschrift}} +| rdfs:subClassOf = PeriodicalLiterature +| comments = +{{comment|en|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.}} +{{comment|ur|میگزین، میگزین، چمکیلی یا سیریل اشاعتیں ہیں، عام طور پر ایک باقاعدہ شیڈول پر شائع ہوتے ہیں، مختلف مضامین پر مشتمل ہوتے ہیں. انہیں عام طور پر اشتہارات، خریداری کی قیمت، پری پیڈ میگزین سبسکرپشنز، یا تینوں کے ذریعے مالی اعانت فراہم کی جاتی ہے۔.}} +{{comment|el|Περιοδικά ή γυαλιστερές φωτογραφίες περιοδικών εκδόσεων δημοσιεύονται σε τακτά χρονικά διαστήματα, περιέχει μια ποικιλία από αντικείμενα.Γενικά χρηματοδοτείται από διαφημίσεις, με τιμή αγοράς, με προπληρωμένες συνδρομές περιοδικών, ή και των τριών.}} +{{comment|de|Als Publikumszeitschrift (auch Magazin) bezeichnet man eine Gattung von Zeitschriften, die sich an eine sehr breite Zielgruppe wendet und keine fachlichen Prägungen oder andere spezifische Merkmale voraussetzt. Publikumszeitschriften dienen der Unterhaltung und Information, sie sollen unangestrengt gelesen werden können.}} +| owl:equivalentClass = wikidata:Q41298 +}}OntologyClass:Mammal200399552552021-09-10T20:05:51Z{{Class +| labels = +{{label|en|mammal}} +{{label|ga|mamach}} +{{label|fr|mammifère}} +{{label|da|pattedyr}} +{{label|de|säugetier}} +{{label|it|mammifero}} +{{label|pt|mamífero}} +{{label|ja|哺乳類}} +{{label|nl|zoogdier}} +{{label|es|mamífero}} +{{label|el|θηλαστικό ζώο}} +{{label|pl|ssak}} +{{label|ur|تھن والے جانور }} +| rdfs:subClassOf = Animal +| owl:disjointWith = Fish +| owl:equivalentClass = wikidata:Q7377 +}}OntologyClass:Man20012287577032022-04-26T11:20:39Z{{Class +| labels = +{{label|en|man}} +{{label|ru|мужчина}} +{{label|pl|Mężczyzna}} +{{label|fr|Homme}} +{{label|da|Mand}} +{{label|de|Mann}} +{{label|ko|남자}} +{{label|ja|おとこ}} +{{label|nl|Mens}} +{{label|it|Uomo}} +{{label|ur|آدمی}} +| rdfs:subClassOf = Person +| owl:equivalentClass = wikidata:Q8441 +}}OntologyClass:Manga2005815566292022-02-27T05:07:36Z{{Class +| labels = +{{label|en|manga}} +{{label|nl|manga}} +{{label|de|manga}} +{{label|ur|مانگا}} + +{{label|fr|manga}} +{{label|it|manga}} +{{label|ja|日本の漫画}} +{{label|el|κινούμενα σχέδια}} +| rdfs:subClassOf = Comic +| comments = +{{comment|en|Manga are comics created in Japan<ref name="manga">http://en.wikipedia.org/wiki/Manga</ref>}} +{{comment|ur|منگا جاپان میں تخلیق کردہ کامکس ہیں<ref name="manga">http://en.wikipedia.org/wiki/Manga</ref>}} + +{{comment|nl|Manga is het Japanse equivalent van het stripverhaal<ref name="manga">http://nl.wikipedia.org/wiki/Manga_(strip</ref>}} +| owl:equivalentClass = wikidata:Q8274 +}} +==References== +<references/>OntologyClass:Manhua2005819579862022-05-06T07:59:29Z{{Class +| labels = + {{label|en|manhua}} + {{label|de|manhua}} + {{label|nl|manhua}} + {{label|el|manhua}} + {{label|ur|مانہوا}} + {{label|ja|中国の漫画}} + {{label|fr|manhua}} +| rdfs:subClassOf = Comic +| comments = + {{comment|en|Comics originally produced in China<ref name="manhua">http://en.wikipedia.org/wiki/Manhua</ref>}} +{{comment|ur|کامکس اصل میں چین میں تیار کیے گئے تھے}} + {{comment|fr|Bandes dessinées produites initialement en Chine<ref name="manhua">http://en.wikipedia.org/wiki/Manhua</ref>}} + {{comment|de|Außerhalb Chinas wird der Begriff für Comics aus China verwendet.<ref name="manhua">http://de.wikipedia.org/wiki/Manhua</ref>}} + {{comment|nl|Manhua is het Chinese equivalent van het stripverhaal}} + {{comment|el|Κόμικς που παράγονται αρχικά στην Κίνα<ref name="manhua">http://en.wikipedia.org/wiki/Manhua</ref>}} +| owl:equivalentClass = wikidata:Q754669 +}} +==References== +<references/>OntologyClass:Manhwa2005818577052022-04-26T11:26:47Z{{Class +| labels = +{{label|en|manhwa}} +{{label|nl|manhwa}} +{{label|de|manhwa}} +{{label|el|manhwa}} +{{label|ja|韓国の漫画}} +{{label|ur|منحوا}} +| rdfs:subClassOf = Comic +| comments = +{{comment|en|Korean term for comics and print cartoons<ref name="manhwa">http://en.wikipedia.org/wiki/Manhwa</ref>}} +{{comment|ur|مزاحیہ اور پرنٹ کارٹونز کے لیے کورین اصطلاح<ref name="manhwa">http://en.wikipedia.org/wiki/Manhwa</ref>}} + +{{comment|de|ist die in der westlichen Welt verbreitete Bezeichnung für Comics aus Südkorea.<ref name="manhwa">http://de.wikipedia.org/wiki/Manhwa</ref>}} +{{comment|nl|Manhua is het Koreaanse equivalent van het stripverhaal}} +{{comment|el|Κορεάτικος όρος για τα κόμικς και τα κινούμενα σχέδια εκτύπωσης}} +| owl:equivalentClass = wikidata:Q562214 +}} +==References== +<references/>OntologyClass:Manor20012327566312022-02-27T05:09:50Z{{Class +| labels = +{{label|en|Manor}} +{{label|ur|جاگیر +}} + +{{label|nl|Heerlijkheid}} +{{label|fr|Seigneurie}} +{{label|de|Grundherrschaft}} +| comments = +{{comment|en|Estate and/or (cluster of) lands that are under the jurisdiction of a feudal lord. Hence it is also the shorthand expression for the physical estate itself: a manor is a stately house in the countryside with the surrounding grounds}} +| rdfs:subClassOf = HistoricalAreaOfAuthority +| dcterms:references = <http://nl.dbpedia.org/resource/Heerlijkheid_(bestuursvorm)> , <http://en.dbpedia.org/resource/Manor> , <http://fr.dbpedia.org/resource/Seigneurie> , <http://de.dbpedia.org/resource/Grundherrschaft> , <http://ru.dbpedia.org/resource/%D0%A0%D1%8B%D1%86%D0%B0%D1%80%D1%81%D0%BA%D0%B0%D1%8F_%D0%BC%D1%8B%D0%B7%D0%B0> . +}}OntologyClass:MartialArtist2004123579902022-05-06T10:17:53Z{{Class +| labels = +{{label|en|martial artist}} +{{label|de|Kampfkünstler}} +{{label|ur|مارشل کے فنکار}} + +{{label|el|Πολεμικός Καλλιτέχνης}} +| rdfs:subClassOf = Athlete +}}OntologyClass:MathematicalConcept2009717577112022-04-26T11:30:32Z{{Class +| labels = {{label|en|Mathematical concept}} + {{label|de|mathematisches Konzept}} + {{label|fr|concept mathématique}} + {{label|nl|wiskundig concept}} + {{label|ur|ریاضیاتی تصور}} +| comments = {{comment|en|Mathematical concepts, e.g. Fibonacci numbers, Imaginary numbers, Symmetry}} +{{comment|ur|ریاضی کے تصورات، جیسے فبونیکی نمبرز، خیالی نمبرز، سمیٹری}} +{{comment|fr|Concepts mathématiques tels que les nombres de Fibonacci, les nombres imaginaires, la symétrie}} +| rdfs:subClassOf = TopicalConcept +}}OntologyClass:Mayor200400578982022-05-05T10:57:46Z{{Class +| labels = +{{label|en|mayor}} +{{label|ur| شہر کا منتظم }} + +{{label|de|Bürgermeister}} +{{label|fr|maire}} +{{label|ja|首長}} +{{label|el|δήμαρχος}} +{{label|nl|burgemeester}} +| rdfs:subClassOf = Politician +| owl:equivalentClass = wikidata:Q30185 +}}OntologyClass:MeanOfTransportation200401573752022-03-31T12:56:20Z{{Class +| labels = + {{label|de|Transportmittel}} + {{label|en|mean of transportation}} + {{label|fr|Moyen de transport}} + {{label|nl|vervoermiddel}} + {{label|el|μεταφορικό μέσο}} + {{label|ur|نقل و حمل کے ذرائع}} +| specificProperties = + {{SpecificProperty | ontologyProperty = diameter | unit = metre }} + {{SpecificProperty | ontologyProperty = mass | unit = kilogram }} + {{SpecificProperty | ontologyProperty = length | unit = millimetre }} + {{SpecificProperty | ontologyProperty = height | unit = millimetre }} + {{SpecificProperty | ontologyProperty = weight | unit = kilogram }} + {{SpecificProperty | ontologyProperty = width | unit = millimetre }} +| rdfs:subClassOf = owl:Thing +| owl:equivalentClass = +| owl:disjointWith = Person +}}OntologyClass:Media2007881577152022-04-26T11:36:01Z{{Class +| labels = +{{label|en|media}} +{{label|fr|média}} +{{label|ga|meáin}} +{{label|nl|media}} +{{label|el|μέσα ενημέρωσης}} +{{label|de|Medien}} +{{label|ja|媒体}} +{{label|ur|مواصلات }} +| comments = +{{comment|en|storage and transmission channels or tools used to store and deliver information or data}} +{{comment|ur|ذخیرہ اور منتقلی چینلز یااوزار جو معلومات یا ڈیٹا کو ذخیرہ کرنے اور پہنچانے کے لیے استعمال ہوتے ہیں۔}} +{{comment|fr|canaux d'enregistrement et de transmission ou outils utilisés pour enregistrer et fournir des informations ou des données}} +| owl:equivalentClass = wikidata:Q340169 +}}OntologyClass:MedicalSpecialty20011867566352022-02-27T05:15:09Z{{Class +| labels = + {{label|de|medizinisches Fachgebiet}} + {{label|en|medical specialty}} + {{label|de|طبی خصوصیت}} + + {{label|nl|medisch specialisme}} + {{label|el|ιατρική ειδικότητα}} + {{label|fr|spécialité médicale}} + {{label|ko|진료과}} + {{label|ja|診療科}} + {{label|it|specializzazione medica}} +| rdfs:subClassOf = owl:Thing +| owl:equivalentClass = wikidata:Q930752 +}}OntologyClass:Medician2007329565362022-02-18T03:08:51Z{{Class +| labels = +{{label|en|medician}} +{{label|ur|طبیب}} + +{{label|de|Mediziner}} +{{label|el|γιατρός}} +{{label|it|medico}} +{{label|nl|medicus}} +{{label|ja|生命医科学研究者または医師}} +| rdfs:subClassOf = Scientist +}}OntologyClass:Medicine2009721577212022-04-26T11:39:18Z{{Class +| labels = {{label|en|Medicine}} + {{label|de|Medizin}} + {{label|fr|médecine}} + {{label|nl|geneeskunde}} + {{label|ja|医学}} + {{label|ur|دوائی}} +| owl:equivalentClass = wikidata:Q11190 +| comments = {{comment|en|The science and art of healing the human body and identifying the causes of disease}} + + +{{comment|ur|انسانی جسم کو ٹھیک کرنے اور بیماری کی وجوہات کی نشاندہی کرنے کا سائنس اور فن}} +}}OntologyClass:Meeting2009128579022022-05-05T11:02:30Z{{Class +| labels = +{{label|en|meeting}} +{{label|ur|ملاقات}} + +{{label|ga|cruinniú}} +{{label|de|Treffen}} +{{label|fr|réunion}} +{{label|el|συνάντηση}} +{{label|nl|vergadering}} +{{label|ja|会議}} + +| rdfs:subClassOf = SocietalEvent +|comments= +{{comment|en|A regular or irregular meeting of people as an event to keep record of}} +{{comment|ur|ریکارڈ رکھنے کے لیے ایک تقریب کے طور پر لوگوں کی باقاعدہ یا بے قاعدہ ملاقات}} +| owl:equivalentClass = wikidata:Q2761147 +}}OntologyClass:MemberOfParliament200402565392022-02-18T03:11:14Z{{Class +| labels = +{{label|en|member of parliament}} +{{label|ur|رکن پارلیمنٹ +}} +{{label|de|Parlamentsmitglied}} +{{label|el|Μέλος κοινοβουλίου}} +{{label|fr|membre du Parlement}} +{{label|pt|membro do parlamento }} +{{label|nl|parlementslid}} +| rdfs:subClassOf = Politician +| owl:equivalentClass = wikidata:Q486839 +}}OntologyClass:MemberResistanceMovement20010242577242022-04-26T11:41:14Z{{Class +|labels= + {{label|en|Member of a Resistance Movement}} + {{label|fr|Membre d'une organisation de résistance}} + {{label|de|Mitglied einer Widerstandorganisation}} + {{label|nl|lid van een verzetsorganisatie}} +{{label|ur|مزاحمتی تحریک کے رکن}} +|comments= +| rdfs:subClassOf = Person +}}OntologyClass:Memorial2006527579112022-05-05T11:19:58Z{{Class +| labels = +{{label|en|memorial}} +{{label|ur|یادگار}} +{{label|el|μνημείο}} +{{label|fr|mémorial}} +{{label|nl|gedenkteken}} +{{label|de|Denkmal}} +{{label|ja|記念碑}} + +| comments = +{{comment|en|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. }} +{{comment|ur|ایک قسم کا ڈھانچہ (ایک مجسمہ یا آرٹ آبجیکٹ) کسی شخص یا اہم واقعہ کی یاد میں بنایا گیا ، ضروری نہیں کہ تباہ کن نوعیت کا ہو}} +| rdfs:subClassOf = Monument +}}OntologyClass:MetroStation2008126579952022-05-06T10:32:10Z{{Class +| labels = +{{label|en|metrostation}} +{{label|ur|زمین دوز برقی ریل کا اڈہ}} + +{{label|fr|station de métro}} +{{label|de|U-Bahn Station}} +{{label|en|subway station}} +{{label|el|στάση μετρό}} +{{label|nl|metrostation}} +| rdfs:subClassOf = Station +| comments = +{{comment|el|Η στάση μετρό χρησιμοποιείται συνήθως για μια τοποθεσία ή σημείο όπου σταματάει το μεταφορικό μέσο μετρό}} +| owl:equivalentClass = wikidata:Q928830 +}}OntologyClass:MicroRegion2009317577262022-04-26T11:46:46Z{{Class +| labels = + {{label|en|micro-region}} + {{label|fr|micro-région}} + {{label|de|Mikroregion}} + {{label|el|μικρο-περιφέρεια}} + {{label|nl|microregio}} + {{label|pt|microrregiao}} +{{label|ur|چھوٹاعلاقہ}} +| comments = + {{comment|en|A microregion is a - mainy statistical - region in Brazil, at an administrative level between a meso-region and a community}} +{{comment|ur|مائیکرو ریجن برازیل میں ایک - بنیادی شماریاتی - خطہ ہے، انتظامی سطح پر ایک میسو ریجن اور کمیونٹی کے درمیان}} + + {{comment|fr|Une microrégion est - principalement du point de vue statistique - une région du Brésil, qui se trouve à un niveau administratif entre la mésorégion et la communauté}} + {{comment|el|Η μικρο-περιφέρεια χρησιμοποιείται για να περιγράψει, κυρίως στατιστικά, μια περιοχή στη Βραζιλία σε διοικητικό επίπεδο μεταξύ μίας μεσο-περιφέρειας και μίας κοινότητα}} +| rdfs:subClassOf = GovernmentalAdministrativeRegion + +}}OntologyClass:MilitaryAircraft20011150579132022-05-05T11:23:35Z{{Class +| labels = +{{label|en|military aircraft}} +{{label|fr|avion militaire}} +{{label|ur|فوجی ہوائی جہاز}} + +{{label|nl|legervliegtuig}} +{{label|de|Militärmaschine}} +| rdfs:subClassOf = Aircraft +}}OntologyClass:MilitaryConflict200403569592022-03-09T09:08:28Z{{Class +| labels = + {{label|en|military conflict}} + {{label|ur|فوجی تنازعہ}} + {{label|da|militær konflikt}} + {{label|de|militärischer Konflikt}} + {{label|el|στρατιωτική σύγκρουση}} + {{label|fr|conflit militaire}} + {{label|nl|militair conflict}} + {{label|ko|전쟁}} +| rdfs:subClassOf = SocietalEvent +}}OntologyClass:MilitaryPerson200404577322022-04-26T11:51:17Z{{Class +| labels = +{{label|en|military person}} +{{label|de|militärische Person}} +{{label|fr|militaire}} +{{label|el|στρατιωτικός}} +{{label|ko|군인}} +{{label|nl|militair}} +{{label|it|militare}} +{{label|ja|軍人}} +{{label|ur|فوجی شخص}} +| rdfs:subClassOf = Person +}}OntologyClass:MilitaryService20011950566412022-02-27T05:23:34Z{{Class +|labels= +{{label|en|military service}} +{{label|ur|فوجی خدمات}} + +{{label|de|Militärdienst}} +{{label|fr|service militaire}} +| rdfs:subClassOf = CareerStation +}}OntologyClass:MilitaryStructure2006237573962022-04-03T08:43:21Z{{Class +| labels = + {{label|en|military structure}} + {{label|fr|structure militaire}} + {{label|de|militärisches Bauwerk}} + {{label|el|Στρατιωτική Δομή}} + {{label|nl|militair bouwwerk}} + {{label|ur|فوجی ڈھانچہ}} + {{label|ko| 군사 건축물}} +| comments = + {{comment|en|A military structure such as a Castle, Fortress, Wall, etc.}} + {{comment|fr|Une structure miltaire telle qu'un château, une forteresse, des remparts, etc.}} + {{comment|ur|ایک فوجی ڈھانچہ جیسے قلعہ اور دیوار وغیرہ}} +| rdfs:subClassOf = ArchitecturalStructure +}}OntologyClass:MilitaryUnit200405577342022-04-26T11:54:36Z{{Class +| labels = +{{label|en|military unit}} +{{label|de|Militäreinheit}} +{{label|fr|unité militaire}} +{{label|pt|unidade militar}} +{{label|es|unidad militar}} +{{label|ko|군대}} +{{label|el|Στρατιωτική Μονάδα}} +{{label|nl|militaire eenheid}} +{{label|ur|فوجی یونٹ}} +| rdfs:subClassOf = Organisation +| owl:equivalentClass = wikidata:Q176799 +}}OntologyClass:MilitaryVehicle20011152566872022-02-28T10:39:26Z{{Class +| labels = +{{label|en|military vehicle}} +{{label|fr|véhicule militaire}} +{{label|ur|فوجی گاڑی}} +{{label|de|Militärfahrzeug}} +{{label|nl|legervoertuig}} +| rdfs:subClassOf = MeanOfTransportation, schema:Product +| owl:equivalentClass = +}}OntologyClass:Mill2006005565522022-02-18T03:24:26Z{{Class +| labels = +{{label|el|Μύλος}} +{{label|en|Mill}} +{{label|ur|چکی}} + +{{label|ga|muileann}} +{{label|fr|Moulin}} +{{label|it|mulino}} +{{label|da|mølle}} +{{label|de|Mühle}} +{{label|nl|Molen}} +{{label|ja|粉砕機}} + +| rdfs:subClassOf = ArchitecturalStructure +| comments = +{{comment|en|a unit operation designed to break a solid material into smaller pieces}} +{{comment|ur|ایک یونٹ آپریشن جو ٹھوس مواد کو چھوٹے ٹکڑوں میں توڑنے کے لیے ڈیزائن کیا گیا ہے۔}} + +| owl:equivalentClass = wikidata:Q44494 +}}OntologyClass:Mine20010253575422022-04-24T12:36:05Z{{Class +| labels = + {{label|en|mine }} + {{label|de|Mine (Bergwerk) }} + {{label|nl|mijn (delfstoffen))}} + {{label|fr|mine}} + {{label|ja|鉱山}} +{{label|ja|کان}} +| comments = + {{comment|en|A mine is a place where mineral resources are or were extracted}} +{{comment|ur|کان ایک ایسی جگہ ہے جہاں معدنی وسائل ہیں یا نکالے گئے ہیں۔}} + {{comment|fr|Une mine est un endroit où des ressources minérales sont, ou ont été extraites.}} + {{comment|nl|Een mijn is een plaats waar delfstoffen worden of werden gewonnen}} +| rdfs:subClassOf = Place +| owl:disjointWith = Person +}}OntologyClass:Mineral2005765579272022-05-05T12:29:19Z{{Class +| labels = +{{label|en|mineral}} +{{label|de|mineral}} +{{label|ur|معدنیات}} + +{{label|el|ορυκτό}} +{{label|it|minerale}} +{{label|fr|minéral}} +{{label|ja|鉱物}} +{{label|nl|mineraal}} +{{label|ko|광물}} +| comments = +{{comment|en|A naturally occurring solid chemical substance.<ref>http://en.wikipedia.org/wiki/Mineral</ref>}} +{{comment|ur|قدرتی طور پر پائے جانے والا ٹھوس کیمیائی مادہ}} +{{comment|it|Corpi naturali inorganici, in genere solidi.<ref>http://it.wikipedia.org/wiki/Minerale</ref>}} +| rdfs:subClassOf = ChemicalSubstance +| owl:equivalentClass = wikidata:Q7946 +}} +==References== +<references/>OntologyClass:Minister20011947565542022-02-18T03:26:10Z{{Class +| labels = +{{label|en|minister}} +{{label|de|Minister}} +{{label|ur|وزیر}} +{{label|fr|ministre}} +{{label|nl|minister}} +| rdfs:subClassOf = Politician +}}OntologyClass:MixedMartialArtsEvent200406577422022-04-26T12:10:14Z{{Class +| labels = +{{label|en|mixed martial arts event}} +{{label|ga|imeacht ealaíona comhraic measctha}} +{{label|de|Mixed Kampfkunst Veranstaltung}} +{{label|fr|évènement d'arts martiaux mixtes}} +{{label|ur| مخلوط جنگ جو آرٹس تقریب}} +| rdfs:subClassOf = SportsEvent +}}OntologyClass:MixedMartialArtsLeague2002176579282022-05-05T12:33:30Z{{Class +| labels = +{{label|en|mixed martial arts league}} +{{label|ur|مخلوط مارشل آرٹس کی انجمن}} + +{{label|ga|sraith ealaíona comhraic measctha}} +{{label|de|Mixed Kampfkunst Liga}} +{{label|fr|ligue d'arts martiaux mixtes}} +| comments = +{{comment|en|a group of sports teams that compete against each other in Mixed Martial Arts}} +{{comment|ur|کھیلوں کی ٹیموں کا ایک گروپ جو مخلوط مارشل آرٹس میں ایک دوسرے سے مقابلہ کرتا ہے۔}} + +| rdfs:subClassOf = SportsLeague +}}OntologyClass:MobilePhone20011065565582022-02-18T03:28:43Z{{Class +| labels = + {{label|en|mobile phone}} +{{label|ur|موبائل فون}} + + {{label|it|telefono cellulare}} + {{label|de|Mobiltelefon (Handy)}} + {{label|fr|téléphone mobile}} + {{label|pl|telefon komórkowy}} + {{label|ru|сотовый телефон}} + {{label|be|сотавы тэлефон}} + {{label|nl|mobiele telefoon}} +| rdfs:subClassOf = Device +| owl:equivalentClass = wikidata:Q17517 +}}OntologyClass:Model200407577472022-04-26T12:16:41Z{{Class +| labels = +{{label|en|model}} +{{label|ga|mainicín}} +{{label|fr|mannequin}} +{{label|de|model}} +{{label|el|μοντέλο}} +{{label|ko|모델}} +{{label|ja|モデル_(職業)}} +{{label|nl|(foto)model}} +{{label|ur|نمائش کرنے والا}} +| rdfs:subClassOf = Person +| owl:equivalentClass = wikidata:Q4610556 +}}OntologyClass:Mollusca200408579382022-05-05T12:59:11Z{{Class +| labels = +{{label|en|mollusca}} +{{label|ur|ریڑھ کی ہڈی کے بغیر جانور}} +{{label|de|Weichtiere}} +{{label|el|μαλάκια}} +{{label|fr|mollusque}} +{{label|ja| 軟体動物}} +{{label|nl|weekdier}} +| rdfs:subClassOf = Animal +| comments = +{{comment|el|Τα μαλάκια αποτελούν μια τεράστια συνομοταξία ζώων, την πολυπληθέστερη μετά τα αρθρόποδα, με πάνω από 100.000 είδη.}} +| owl:equivalentClass = wikidata:Q25326 +}}OntologyClass:Monarch200409565602022-02-18T03:30:47Z{{Class +| labels = +{{label|en|monarch}} +{{label|nl|monarch}} +{{label|ur|بادشاہ}} + +{{label|da|monark}} +{{label|de|monarch}} +{{label|it|monarca}} +{{label|fr|monarque}} +{{label|el|μονάρχης}} +{{label|es|monarca}} +{{label|ko|군주}} +{{label|ja|君主}} + +|rdfs:subClassOf=Person +| owl:equivalentClass = wikidata:Q116 +}}OntologyClass:Monastery2006029577512022-04-26T12:20:30Z{{Class +| labels = +{{label|en|monastery}} +{{label|ca|monestir}} +{{label|da|kloster}} +{{label|de|Kloster}} +{{label|el|μοναστήρι}} +{{label|fr|monastère}} +{{label|ga|mainistir}} +{{label|nl|klooster}} +{{label|pl|klasztor}} +{{label|ja|僧院}} +{{label|ur|خانقاہ}} +|comments= +{{comment|en|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.<ref>http://en.wikipedia.org/wiki/Monastry</ref>}} + +{{comment|ur|خانقاہ عمارت، یا عمارتوں کے کمپلیکس کی نشاندہی کرتی ہے، جس میں خانقاہوں کے گھریلو کوارٹرز اور کام کی جگہیں شامل ہیں، چاہے وہ راہب ہوں یا راہبائیں، اور چاہے وہ برادری میں رہ رہے ہوں یا اکیلے (حرمت والے)۔ خانقاہ میں عام طور پر نماز کے لیے مخصوص جگہ شامل ہوتی ہے جو ایک چیپل، گرجا گھر یا مندر ہو سکتا ہے، اور ایک تقریر کے طور پر بھی کام کر سکتا ہے۔<ref>http://en.wikipedia.org/wiki/Monastry</ref>}} +{{comment|ca|Un monestir és un tipus d'edificació per a la reclusió dels religiosos, que hi viuen en comú. Originàriament un monestir era la cel·la d'un sol monjo, dit en aquest cas ermità o anacoreta.<ref>https://ca.wikipedia.org/wiki/Monestir</ref>}} +{{comment|el|Μονή υποδηλώνει το κτίριο ή συγκρότημα κτιρίων, που αποτελείται από τις εγχώρια τρίμηνα και στο χώρο εργασίας (ες) των μοναχών, αν οι μοναχοί ή μοναχές, και αν ζουν στην κοινότητα ή μεμονωμένα (ερημίτες). Η μονή περιλαμβάνει γενικά ένα χώρο που προορίζεται για την προσευχή που μπορεί να είναι ένα παρεκκλήσι, εκκλησία ή ναό, και μπορεί επίσης να χρησιμεύσει ως μια ρητορική.<ref>https://el.wikipedia.org/wiki/%CE%9C%CE%BF%CE%BD%CE%B1%CF%83%CF%84%CE%AE%CF%81%CE%B9_(%CE%B8%CF%81%CE%B7%CF%83%CE%BA%CE%B5%CE%AF%CE%B1)</ref>}} +{{comment|fr|Le monastère est un ensemble de bâtiments où habite une communauté religieuse de moines ou de moniales.<ref>http://fr.wikipedia.org/wiki/Monast%C3%A8re</ref>.}} +{{comment|ga|Is pobal manaigh ina gcónaí faoi móideanna reiligiúnach í mainistir.<ref>https://ga.wikipedia.org/wiki/Mainistir</ref>}} +{{comment|nl|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.<ref>http://nl.wikipedia.org/wiki/Klooster_%28gebouw%29</ref>}} +{{comment|pl|Klasztor – budynek lub zespół budynków, w którym mieszkają wspólnoty religijne zakonników albo zakonnic.<ref>https://pl.wikipedia.org/wiki/Klasztor</ref>}} +| rdfs:subClassOf = ReligiousBuilding +| owl:equivalentClass = wikidata:Q44613, d0:Location +}} + +<references />OntologyClass:MonoclonalAntibody20011918579412022-05-05T14:27:46Z{{Class +| labels = +{{label|de|monoklonaler Antikörper}} +{{label|en|monoclonal antibody}} +{{label|ur|مونوکلونل دافِع جِسم}} + +{{label|fr|monoclonal anticorps}} +| comments = +{{comment|en|Drugs that are a monoclonal antibody‎}} +{{comment|ur|وہ دوائیں جو ایک مونوکلونل دافِع جِسم ہیں۔‎‎}} + +{{comment|en|Medikamente welche monoklonale Antikörper sind}} +| rdfs:subClassOf = Drug +}}OntologyClass:Monument2002266557102021-09-17T14:13:31Z{{Class +| labels = +{{label|en|monument}} +{{label|ga|séadchomhartha}} +{{label|fr|monument}} +{{label|el|μνημείο}} +{{label|nl|monument}} +{{label|de|Denkmal}} +{{label|ja|モニュメント}} +{{label|ur|یادگار}} + +| comments = +{{comment|en|A type of structure (a statue or an art object) created to commemorate a person or important event, not necessarily of a catastrophic nature. }} +{{comment|ur|ایک قسم کا ڈھانچہ (ایک مجسمہ یا آرٹ آبجیکٹ) کسی شخص یا اہم واقعہ کی یاد میں بنایا گیا ، ضروری نہیں کہ تباہ کن نوعیت کا ہو۔ }} +| rdfs:subClassOf = ArchitecturalStructure +| owl:equivalentClass = wikidata:Q4989906 +}}OntologyClass:Mosque2006700577572022-04-26T12:28:36Z{{Class +| labels = +{{label|en|mosque}} +{{label|de|Moschee}} +{{label|el|τζαμί}} +{{label|es|mezquita}} +{{label|fr|mosquée}} +{{label|ga|mosc}} +{{label|nl|moskee}} +{{label|pl|meczet}} +{{label|ja|モスク}} +{{label|ur|مسجد}} + +| comments = +{{comment|en|A mosque, sometimes spelt mosk, is a place of worship for followers of Islam.<ref>http://en.wikipedia.org/wiki/Mosque</ref>}} +{{comment|ur| ایک مسجد اسلام کے پیروکاروں کے لیے عبادت گاہ ہے۔<ref>http://en.wikipedia.org/wiki/Mosque</ref>}} + + +{{comment|el|Το τζαμί είναι ο τόπος λατρείας των Μουσουλμάνων.}} +{{comment|fr|Une mosquée est un lieu de culte où se rassemblent les musulmans pour les prières communes.<ref>http://fr.wikipedia.org/wiki/Mosquée</ref>}} +{{comment|ga|Is áit adhartha na Moslamach, lucht leanúna an reiligiúin Ioslam, é mosc<ref>https://ga.wikipedia.org/wiki/Mosc</ref>}} +{{comment|pl|Meczet – miejsce kultu muzułmańskiego<ref>https://pl.wikipedia.org/wiki/Meczet</ref>}} +| rdfs:subClassOf = ReligiousBuilding +| owl:equivalentClass = wikidata:Q32815 +}} + +== references == +<references/>OntologyClass:Moss200410579442022-05-05T14:31:19Z{{Class +| labels = +{{label|en|moss}} +{{label|ur|کائی}} +{{label|ga|caonach}} +{{label|nl|mossen}} +{{label|el|βρύο}} +{{Label|de|Laubmoss}} +{{label|it|muschio}} +{{Label|fr|mousses}} +{{label|ja|蘚類}} +| rdfs:subClassOf = Plant +}}OntologyClass:MotocycleRacer2008083580082022-05-06T11:04:01Z{{Class +| labels = +{{label|en|motocycle racer}} +{{label|ur|موٹر سائیکل دوڑانے والا}} + +{{label|el|οδηγός αγώνων μοτοσυκλέτας}} +{{label|de|Motorrad-Rennfahrer}} +{{label|nl|motorcoureur}} +| rdfs:subClassOf = MotorcycleRider +}}OntologyClass:MotorRace20011108577602022-04-26T12:31:40Z{{Class +| labels = +{{label|en|motor race}} +{{label|de|Motorradrennen}} +{{label|nl|motorwedstrijd}} +{{label|ur|کار دوڑ}} +| rdfs:subClassOf = Race +}}OntologyClass:Motorcycle2007998579532022-05-05T14:43:26Z{{Class +| labels = +{{label|en|motorcycle}} +{{label|ur|موٹر سائیکل}} +{{label|ga|gluaisrothar}} +{{label|de|Motorrad}} +{{label|fr|moto}} +{{label|el|μοτοσυκλέτα}} +{{label|it|motocicletta}} +{{label|nl|motorfiets}} +| rdfs:subClassOf = MeanOfTransportation +| owl:equivalentClass = wikidata:Q34493 +}}OntologyClass:MotorcycleRacingLeague2002179580122022-05-06T11:10:04Z{{Class +| labels = + +{{label|ur|موٹر سائیکل ریسنگ لیگ}} +{{label|en|motorcycle racing league}} +| comments = + +{{comment|ur|کھیلوں کی ٹیموں یا بائیک سواروں کا ایک گروپ جو موٹر سائیکل ریسنگ میں ایک دوسرے سے مقابلہ کرتے ہیں}} +{{comment|en|a group of sports teams or bikerider that compete against each other in Motorcycle Racing}} +| rdfs:subClassOf = SportsLeague +}}OntologyClass:MotorcycleRider2006109564252022-02-16T18:28:42Z{{Class +| labels = {{label|en|motorcycle rider}} +{{label|de|Motorradfahrer}} +{{label|el|μοτοσυκλετιστής}} +{{label|nl|motorrijder}} +{{label|ur| موٹر سائیکل سوار}} +| rdfs:subClassOf = MotorsportRacer +}}OntologyClass:MotorsportRacer2007970580102022-05-06T11:07:10Z{{Class +| labels = + {{label|en|motorsport racer}} + {{label|de|Motorsport Fahrer}} + {{label|nl|motorsport renner}} + {{label|el|οδηγός αγώνων}} +{{label|ur|موٹر کھیل میں گاڑی دوڑانے والا}} +| rdfs:subClassOf = Athlete +}}OntologyClass:MotorsportSeason2006089580142022-05-06T15:45:21Z{{Class +| labels = +{{label|en|motorsport season}} +{{label|ur|موٹر کھیل کا موسم}} + +{{label|nl|motorsportseizoen}} +{{label|de|Motorsportsaison}} +| rdfs:subClassOf = SportsSeason +}}OntologyClass:Mountain200411566092022-02-27T04:38:32Z{{Class +| labels = +{{label|en|mountain}} +{{label|ga|sliabh}} +{{label|nl|berg}} +{{label|ur|پہاڑ}} + +{{label|de|Berg}} +{{label|el|Βουνό}} +{{label|fr|montagne}} +{{label|ko|산}} +{{label|pt|montanha}} +{{label|ja|山}} +{{label|zh|山}} +| rdfs:subClassOf = NaturalPlace +| owl:equivalentClass = schema:Mountain, wikidata:Q8502 +| owl:disjointWith = Person +}}OntologyClass:MountainPass2002270579502022-05-05T14:40:20Z{{Class +| labels = +{{label|en|mountain pass}} +{{label|ur|درہ}} +{{label|de|Bergpass}} +{{label|fr|col de montagne}} +{{label|el|Πέρασμα βουνού}} +{{label|ja|峠}} +{{label|nl|bergpas}} +{{label|pt|desfiladeiro}} +| comments = +{{comment|en|a path that allows the crossing of a mountain chain. It is usually a saddle point in between two areas of higher elevation}} +{{comment|ur|ایک راستہ جو پہاڑی سلسلہ کو عبور کرنے کی اجازت دیتا ہے۔ یہ عام طور پر اونچی اونچائی کے دو علاقوں کے درمیان ایک سیڈل پوائنٹ ہوتا ہے}} +| rdfs:subClassOf = NaturalPlace +| owl:equivalentClass = wikidata:Q133056 +}}OntologyClass:MountainRange2002267565732022-02-18T03:44:39Z{{Class +| labels = +{{label|en|mountain range}} +{{label|ur|پہاڑی سلسلہ}} + +{{label|de|Bergkette}} +{{label|fr|chaîne de montagne}} +{{label|el|Οροσειρά}} +{{label|nl|bergketen}} +{{label|pt|cadeia montanhosa}} +{{label|ko|산맥}} +| comments = +{{comment|en|a chain of mountains bordered by highlands or separated from other mountains by passes or valleys.}} +{{comment|ur|پہاڑوں کی ایک زنجیر جو پہاڑوں سے متصل ہے یا دوسرے پہاڑوں سے راستوں یا وادیوں سے الگ ہے۔.}} + +| rdfs:subClassOf = NaturalPlace +| owl:equivalentClass = wikidata:Q46831 +}}OntologyClass:MouseGene2005028578822022-05-04T10:58:34Z{{ Class +|labels= + {{label|ur|چوہے کا نَسبہ }} + {{label|en|MouseGene}} + {{label|ur|چوہے کا نَسبہ }} +| rdfs:subClassOf = نَسبہ +}}OntologyClass:MouseGeneLocation2005050579542022-05-05T14:47:38Z{{ Class +| labels = +{{label|en|MouseGeneLocation}} +{{label|ur|چوہے کے نَسبہ کا مقام}} +{{label|de|Mausgenom Lokation}} +{{label|nl|muisgenoom locatie}} +{{label|ja|マウス遺伝子座}} +{{label|nl|muisgenoom locatie}} +| rdfs:subClassOf = GeneLocation +}}OntologyClass:MovieDirector2009431583572022-05-14T10:11:03Z{{Class +| labels = +{{label|en|Movie director}} +{{label|ur|فلم کا ہدایت کار }} +{{label|ga|stiúrthóir scannáin}} +{{label|nl|regisseur}} +{{label|de|Filmregisseur}} +{{label|fr|réalisateur de film}} +| comments = +{{comment|en|a person who oversees making of film.}} +{{comment|ur|ایک شخص جو فلم بنانے کی نگرانی کرتا ہے}} +| rdfs:subClassOf = Person +| owl:equivalentClass = wikidata:Q2526255 +}}OntologyClass:MovieGenre2005920566132022-02-27T04:44:44Z{{Class +|labels= +{{label|en|movie genre}} +{{label|ur|فلم کی صنف +}} +{{label|ga|seánra scannáin}} +{{label|de|Filmgenre}} +{{label|el|είδος ταινίας}} +{{label|fr|genre de film}} +{{label|nl|filmgenre}} +| rdfs:subClassOf = Genre +}}OntologyClass:MovingImage2009575579782022-05-06T07:22:30Z{{Class +| labels = +{{label|en|moving image}} +{{label|ur|متحرک فلم}} +{{label|de|Bewegtbilder}} +{{label|nl|bewegend beeld}} +| comments = +{{comment|en|A visual document that is intended to be animated; equivalent to http://purl.org/dc/dcmitype/MovingImage}} +{{comment|ur|ایک بصری دستاویز جس کا مقصد متحرک ہونا ہے}} +| rdfs:subClassOf = Image +}}OntologyClass:MovingWalkway20011098580222022-05-06T15:59:04Z{{Class +| labels = +{{label|en|travellator}} +{{label|ur|حرکت پذیر پیدل چلنے کا راستہ}} +{{label|de|Rollsteig}} +{{label|nl|rolpad}} +| specificProperties = +{{SpecificProperty | ontologyProperty = diameter | unit = metre }} +{{SpecificProperty | ontologyProperty = mass | unit = kilogram }} +{{SpecificProperty | ontologyProperty = length | unit = millimetre }} +{{SpecificProperty | ontologyProperty = height | unit = millimetre }} +{{SpecificProperty | ontologyProperty = weight | unit = kilogram }} +{{SpecificProperty | ontologyProperty = width | unit = millimetre }} +| owl:disjointWith = Person +| rdfs:subClassOf = On-SiteTransportation +}}OntologyClass:MultiVolumePublication2005985566762022-02-28T10:14:43Z{{Class +| labels = +{{label|en|multi volume publication}} +{{label|fr|publication en plusieurs volumes}} +{{label|ur|کثیر حجم کی اشاعت}} +{{label|de|mehrbändige Publikation}} +{{label|nl|meerdelige publicatie}} +| rdfs:subClassOf = WrittenWork +}}OntologyClass:Municipality2006568579802022-05-06T07:28:40Z{{Class +| labels = +{{label|en|municipality}} +{{label|es|municipio}} +{{label|el|δήμος}} +{{label|fr|commune}} +{{label|de|Gemeinde}} +{{label|nl|gemeente}} +{{label|ja|基礎自治体}} +{{label|ur|بلدیہ}} +| comments = +{{comment|en|An administrative body governing a territorial unity on the lower level, administering one or a few more settlements}} +{{comment|ur|ایک انتظامی ادارہ جو نچلی سطح پر علاقائی اتحاد کو کنٹرول کرتا ہے، ایک یا چند مزید بستیوں کا انتظام کرتا ہے}} +{{comment|el|Δήμος ονομάζεται μία οντότητα της δημόσιας διοίκησης, η οποία στα περισσότερα κράτη αποτελεί τη βασική αυτοδιοικητική μονάδα και κατά κανόνα περιλαμβάνει μια πόλη ή κωμόπολη και τα γύρω χωριά της.}} +{{comment|es|Un Municipio es el ente local definido en el artículo 140 de la Constitución española y la entidad básica de la organización territorial del Estado según el artículo 1 de la Ley 7/1985, de 2 de abril, Reguladora de las Bases del Régimen Local. Tiene personalidad jurídica y plena capacidad para el cumplimiento de sus fines. La delimitación territorial de Municipio está recogida del REgistro Central de Cartografía del IGN}} +| rdfs:subClassOf = GovernmentalAdministrativeRegion +| owl:equivalentClass = +}}OntologyClass:Murderer2006203564452022-02-17T04:42:16Z{{Class +| labels = {{label|en|murderer}} +{{label|ga|dúnmharfóir}} +{{label|fr|assassin}} +{{label|de|Mörder}} +{{label|it|assasino}} +{{label|el|δολοφόνος}} +{{label|nl|moordenaar}} +{{label|ko|연쇄 살인자}} +{{label|ja|殺人}} +{{label|ur|قاتل}} + +| rdfs:subClassOf = Criminal +| owl:equivalentClass = wikidata:Q16266334 +}}OntologyClass:Muscle200413566182022-02-27T04:49:37Z{{Class +| labels = +{{label|en|muscle}} +{{label|ur|پٹھوں}} + +{{label|ga|matán}} +{{label|el|μυς}} +{{label|de| Muskel}} +{{label|fr | muscle}} +{{label|ja| 筋肉}} +{{label|nl| spier}} +| rdfs:subClassOf = AnatomicalStructure +| owl:equivalentClass = wikidata:Q7365 +}}OntologyClass:Museum2002518579822022-05-06T07:34:20Z{{Class +| labels = +{{label|en|museum}} +{{label|ur|عجائب گھر}} +{{label|de|Museum}} +{{label|nl|museum}} +{{label|el|μουσείο}} +{{label|fr|musée}} +{{label|ga|músaem}} +{{label|ko|박물관}} +{{label|ja|博物館}} +{{label|pl|muzeum}} +{{label|pt|museu}} +| rdfs:subClassOf = Building +| owl:equivalentClass = schema:Museum +| owl:equivalentClass = wikidata:Q33506 +}}OntologyClass:MusicComposer2009428580262022-05-06T16:06:14Z{{Class +| labels = {{label|en|music composer}} +{{label|ur|موسیقی بنانے والا}} +{{label|fr|compositeur}} +{{label|nl|componist}} +{{label|de|Komponist}} +| comments = {{comment|en|a person who creates music.}} +{{comment|ur|ایک شخص جو موسیقی تخلیق کرتا ہے}} +| rdfs:subClassOf = Writer +}}OntologyClass:MusicDirector2009429577732022-04-26T13:01:54Z{{Class +| labels = +{{label|en|music director}} +{{label|nl|dirigent}} +{{label|de|Dirigent}} +{{label|ur|موسیقی کا رہنما }} + +{{label|fr|chef d'orchestre}} +| comments = +{{comment|en|A person who is the director of an orchestra or concert band.}} +{{comment|ur|ایک شخص جو سازینہ یا موسیقی بجانے والوں کا گروہ کا رہنما ہے}} + +| rdfs:subClassOf = MusicalArtist +| owl:equivalentClass = wikidata:Q1198887 +}}OntologyClass:MusicFestival200417579842022-05-06T07:53:35Z{{Class +| labels = +{{label|en|music festival}} +{{label|ur|موسیقی میلہ}} +{{label|de|Musikfestival}} +{{label|el|φεστιβάλ μουσικής}} +{{label|fr|festival de musique}} +{{label|es|festival de música}} +{{label|ko|음악제}} +{{label|nl|muziekfestival}} +| rdfs:subClassOf = SocietalEvent +| owl:equivalentClass = wikidata:Q868557, schema:Festival +}}OntologyClass:MusicGenre200418580292022-05-06T16:08:54Z{{Class +| labels = +{{label|en|music genre}} +{{label|ur|موسیقی کی صنف}} +{{label|de|musik genre}} +{{label|it|genere musicale}} +{{label|fr|genre musical}} +{{label|el|μουσικό είδος}} +{{label|pt|género musical}} +{{label|nl|genre (muziek)}} +{{label|ko|음악 장르}} +| rdfs:subClassOf = Genre +| owl:equivalentClass = wikidata:Q188451 +}}OntologyClass:Musical200414577752022-04-26T13:05:51Z{{Class +| labels = +{{label|en|musical}} +{{label|nl|musical}} +{{label|ur|موسیقی کا}} + +{{label|de|Musical}} +{{label|el|μουσικός}} +{{label|fr|musique}} +{{label|ja|ミュージカル}} +{{label|ko| 뮤지컬}} +| rdfs:subClassOf = MusicalWork +| owl:equivalentClass = wikidata:Q2743 +}}OntologyClass:MusicalArtist200415549312021-09-09T08:09:18Z +{{Class +| labels = + {{label|en|musical artist}} + {{label|de|musikalischer Künstler}} + {{label|nl|muziekartiest}} + {{label|fr|musicien}} + {{label|pt|artista musical}} + {{label|el|μουσικός}} + {{label|ko|음악가 }} + {{label|ja|音楽家}} +{{label|ur|موسیقی کا فنکار}} +| rdfs:subClassOf = Artist, schema:MusicGroup, dul:NaturalPerson +}}OntologyClass:MusicalWork200416559952021-09-18T07:54:29Z{{Class +| labels = +{{label|en|musical work}} +{{label|de|musikalisches Werk}} +{{label|it|opera musicale}} +{{label|el|μουσικό έργο}} +{{label|fr|œuvre musicale}} + +{{label|ur|موسیقی کا کام}} +| rdfs:subClassOf = Work +| owl:equivalentClass = wikidata:Q2188189 +}}OntologyClass:MythologicalFigure2008199566822022-02-28T10:30:51Z{{Class +| labels = +{{label|en|mythological figure}} +{{label|fr|personnage mythologique}} +{{label|de|mythologische Gestalt}} +{{label|ur|افسانوی شکل}} +{{label|el|μυθικό πλάσμα}} +{{label|it|figura mitologica}} +{{label|nl|mythologisch figuur}} +| rdfs:subClassOf = FictionalCharacter <!-- this is not always correct --> +| owl:equivalentClass = wikidata:Q15410431 +}}OntologyClass:NCAATeamSeason2006071585862022-05-15T06:51:47Z{{Class +| labels = +{{label|en|national collegiate athletic association team season}} +{{label|de|NCAA Team Saison}} +{{label|nl|NCAA team seizoen}} +{{label|ur|قومی کالج ورزش انجمن کاموسم}} +| rdfs:subClassOf = SportsTeamSeason + + +}}OntologyClass:Name2004128556852021-09-17T12:02:31Z{{Class +| labels = + {{label|en|name}} + {{label|de|Name}} + {{label|el|όνομα}} + {{label|fr|nom}} + {{label|ga|ainm}} + {{label|ja|名前}} + {{label|nl|naam}} + {{label|pl|nazwa}} + {{label|pt|nome}} + {{label|ur|نام}} +| rdfs:subClassOf = owl:Thing +| owl:equivalentClass = wikidata:Q82799 +}}OntologyClass:NarutoCharacter2007773563232022-02-16T12:42:18Z{{Class +| labels = +{{label|en|naruto character}} +{{label|ga|carachtar naruto}} +{{label|de|Naruto Charakter}} +{{label|nl|personage in Naruto}} +{{label|ur|افسانوی کردار}} + +| rdfs:subClassOf = FictionalCharacter + + + + +}}OntologyClass:NascarDriver200419563442022-02-16T13:10:30Z{{Class +| labels = +{{label|en|nascar driver}} +{{label|de|NASCAR Fahrer}} +{{label|nl|nascar coureur}} +{{label|el|οδηγός αγώνων nascar}} +{{label|fr|pilote de la nascar}} +{{label|ur|نیسکار ڈرائیور}} +| rdfs:subClassOf = RacingDriver + +}}OntologyClass:NationalAnthem2009432563002022-02-16T12:02:46Z{{Class +| labels = +{{label|en|National anthem}} +{{label|ga|amhrán náisiúnta}} +{{label|de|Nationalhymne}} +{{label|fr|Hymne national}} +{{label|nl|volkslied}} +{{label|ur|قومی ترانہ}} +| comments = +{{comment|en|Patriotic musical composition which is the offcial national song.}} +{{comment|ur|محب وطن موسیقی کی ساخت جو سرکاری قومی گانا ہے۔}} +| rdfs:subClassOf = MusicalWork + +| owl:equivalentClass = wikidata:Q23691 +}}OntologyClass:NationalCollegiateAthleticAssociationAthlete200420563282022-02-16T12:45:23Z{{Class +| labels = +{{label|en|national collegiate athletic association athlete}} +{{label|nl|National Collegiate Athletic Association atleet}} +{{label|ga|lúthchleasaí sa National Collegiate Athletic Association}} +{{label|de|NCAA}} +{{label|ur|قومی اعلی درجے کا مدرسہ کھیل کے متعلق دوستی}} +{{label|fr|athlète de la national collegiate athletic association}} +| rdfs:subClassOf = Athlete + + +}}OntologyClass:NationalFootballLeagueEvent2008152586172022-05-15T08:09:33Z{{Class +| labels = +{{label|en|national football league event}} +{{label|de|NFL Game day}} +{{label|ur|قومی فٹ بال انجمن تقریب}} +| rdfs:subClassOf = SportsEvent + + +}}OntologyClass:NationalFootballLeagueSeason2006079563012022-02-16T12:08:58Z{{Class +| labels = +{{label|en|national football league season}} +{{label|ur|قومی فٹ بال لیگ کا موسم}} +{{label|de|NFL Saison}} +| rdfs:subClassOf = FootballLeagueSeason +}}OntologyClass:NationalSoccerClub2004448586292022-05-15T08:31:49Z{{Class +| labels = +{{label|en|national soccer club}} +{{label|de|nationaler Fußballverein}} +{{label|tr|milli takım}} +{{label|nl|nationale voetbalclub}} +{{label|ur|قومی فٹ بال تنظیم}} +| rdfs:subClassOf = SoccerClub + + + +}}OntologyClass:NaturalEvent2008701586222022-05-15T08:14:10Z{{Class +| labels = + {{label|en|natural event}} + {{label|el|φυσικό γεγονός}} + {{label|de|Naturereignis}} + {{label|it|evento naturale}} + {{label|nl|gebeurtenis in de natuur}} + {{label|fr|événement naturel}} + {{label|ur|قدرتی واقعہ}} +| comments = + {{comment|el|Το φυσικό γεγονός χρησιμοποιείται για να περιγράψει ένα συμβάν που πραγματοποιείται φυσικά}} + {{comment|ur|مادی تقریب کا استعمال قدرتی طور پر رونما ہونے والے واقعے کو بیان کرنے کے لیے کیا جاتا ہے۔}} + +| rdfs:subClassOf =Event +}}OntologyClass:NaturalPlace2003255550472021-09-09T13:48:46Z{{Class +|labels = + {{label|en|natural place}} + {{label|el|φυσική θέση}} + {{label|de|natürlicher Ort}} + {{label|fr|lieu naturel}} + {{label|nl|natuurgebied}} + {{label|pt|lugar natural}} + {{label|ur|قدرتی جگہ}} +| comments = +{{comment|el|Η φυσική θέση ερμηνεύει όλα τα σημεία που απαντώνται φυσικά στο σύμπαν}} +{{comment|en|The natural place encompasses all places occurring naturally in universe.}} +{{comment|de|Der natürlicher Ort beinhaltet alle Orte die natürlicherweise im Universum existieren.}} +{{comment|ur|قدرتی جگہ کائنات میں قدرتی طور پر پائے جانے والے تمام مقامات پر محیط ہے۔}} +| rdfs:subClassOf = Place +}}OntologyClass:NaturalRegion2007222586082022-05-15T07:53:59Z{{Class +| labels = +{{label|en|natural region}} +{{label|de|Naturraum}} +{{label|fr|région naturelle}} +{{label|el|φυσική περιοχή}} +{{label|nl|natuurlijke regio}} +{{label|ur|قدرتی علاقہ}} +| rdfs:subClassOf = Region + +| comments = +{{comment|el|H φυσική περιοχή χρησιμοποιείται για να περιγράψει την έκταση μιας γεωγραφικής περιοχής στην οποία η ανθρωπογενής παρέμβαση είναι ανύπαρκτη μέχρι ελάχιστη}} +{{comment|ur|قدرتی رقبہ کا استعمال کسی جغرافیائی علاقے کی حد کو بیان کرنے کے لیے کیا جاتا ہے جس میں بشریات کی مداخلت کم از کم موجود نہیں ہوتی}} +| owl:equivalentClass = wikidata:Q1970725 +}}OntologyClass:Nebula20012216573372022-03-31T10:53:49Z{{Class +|labels= + {{label|en|Nebula}} + {{label|fr|Nébuleuse}} + {{label|ru|Туманность}} + {{label|ur|آنکھ کا جالا}} +| owl:disjointWith = Person +| rdfs:subClassOf = CelestialBody +}}OntologyClass:Nerve200421563032022-02-16T12:12:36Z{{Class +| labels = +{{label|en|nerve}} +{{label|ga|néaróg}} +{{label|el|νεύρο}} +{{label|de|Nerv}} +{{label|fr|nerf}} +{{label|nl|zenuw}} +{{label|ja|神経}} +{{label|ur|اعصاب}} +| rdfs:subClassOf = AnatomicalStructure +| owl:equivalentClass = wikidata:Q9620 +}}OntologyClass:NetballPlayer2007323563352022-02-16T12:52:51Z{{Class +| labels = +{{label|it|giocatore di netball}} +{{label|en|netball player}} +{{label|nl|korfbalspeler}} +{{label|de|Korbballspieler}} +{{label|de|نیٹ بال کھلاڑی}} + +| rdfs:subClassOf = Athlete + +}}OntologyClass:Newspaper200422563482022-02-16T13:16:13Z{{Class +| labels = +{{label|en|newspaper}} +{{label|nl|krant}} +{{label|de|Zeitung}} +{{label|fr|journal}} +{{label|el|εφημερίδα}} +{{label|ko|신문}} +{{label|ja|新聞}} +{{label|ur|اخبار}} +| rdfs:subClassOf =PeriodicalLiterature + + + + +| comments = +{{comment|ur|اخبار ایک باقاعدہ شیڈول اشاعت ہے جس میں موجودہ واقعات، معلوماتی مضامین، متنوع خصوصیات اور اشتہارات کی خبریں ہوتی ہیں۔ یہ عام طور پر نسبتاً سستے، کم درجے کے کاغذ پر پرنٹ کیا جاتا ہے جیسے نیوز پرنٹ۔}} + +{{comment|en|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.}} +{{comment|de|Eine Zeitung ist ein Druckwerk von mäßigem Seitenumfang, das in kurzen periodischen Zeitspannen, mindestens einmal wöchentlich, öffentlich erscheint. Die Zeitung ist, anders als die Zeitschrift, ein der Aktualität verpflichtetes Presseorgan und gliedert sich meist in mehrere inhaltliche Rubriken wie Politik, Lokales, Wirtschaft, Sport, Feuilleton und Immobilien.}} +| owl:equivalentClass = wikidata:Q11032 +}}OntologyClass:NobelPrize2007678563052022-02-16T12:17:18Z{{Class +| labels = + {{label|en|Nobel Prize}} +{{label|ga|Duais Nobel}} + {{label|it|Premio Nobel}} + {{label|nl|Nobelprijs}} + {{label|fr|Prix Nobel}} + {{label|es|Premio Nobel}} + {{label|de|Nobelpreis}} + {{label|ja|ノーベル賞}} + {{label|ur| اعلی انعام }} + {{label|el|Βραβείο Νόμπελ}} +| rdfs:subClassOf = Award +| owl:equivalentClass = wikidata:Q7191 +}}OntologyClass:Noble2006066573652022-03-31T12:27:18Z{{Class +| labels = + {{label|en|noble}} + {{label|fr|noble}} + {{label|de|Adliger}} + {{label|el|ευγενής}} + {{label|nl|edele}} + {{label|ja|高貴な}} + {{label|ur|عظیم}} +| rdfs:subClassOf = Person +}}OntologyClass:NobleFamily2008666573662022-03-31T12:29:29Z{{Class +| labels = + {{label|en|Noble family}} + {{label|fr|Famille noble}} + {{label|de|Adelsfamilie}} + {{label|nl|adelijk geslacht}} + {{label|ur|شریف خاندان}} +| rdfs:subClassOf = Family +| comments = + {{comment|en|Family deemed to be of noble descent}} + {{comment|fr|Famille réputée d'ascendance noble}} + {{comment|ur|خاندان کو شریف النسل سمجھا جاتا ہے۔}} +| owl:equivalentClass = wikidata:Q13417114 +}}OntologyClass:Non-ProfitOrganisation200423563072022-02-16T12:21:13Z{{Class +| labels= +{{label|en|non-profit organisation}} +{{label|de|gemeinnützige Organisation}} +{{label|el|μη κερδοσκοπική οργάνωση}} +{{label|fr|organisation à but non lucratif}} +{{label|nl|non-profit organisatie}} +{{label|ru|Некоммерческая организация}} +{{label|ur|غیر منافع بخش تنظیم}} +| rdfs:subClassOf = Organisation +| owl:equivalentClass = wikidata:Q163740 +}}OntologyClass:NordicCombined20011182586192022-05-15T08:12:04Z{{Class +| labels = +{{label|en|Nordic Combined}} +{{label|de|Nordischer Kombinierer}} +{{label|ur|مشترکہ نورڈک }} +|comments= +{{comment|ur|نورڈک کمبائنڈ ایک موسم سرما کا کھیل ہے جس میں ما بین ملک کے کھلاڑی سکینگ اور سکی جمپنگ میں مقابلہ کرتے ہیں۔}} +| rdfs:subClassOf = WinterSportPlayer + +}}OntologyClass:Novel2005816562812022-02-16T10:35:00Z{{Class +| labels = +{{label|en| novel}} +{{label|ga|úrscéal}} +{{label|da|roman}} +{{label|de|Roman}} +{{label|el|νουβέλα}} +{{label|it| novella}} +{{label|ja | 小説}} +{{label|nl| roman}} +{{label|fr|roman}} +{{label|ur|افسانه}} +| rdfs:subClassOf = book +| comments = +{{comment|ur| ادبی نثر میں طویل داستان کی کتاب>http://en.wikipedia.org/wiki/Novel</ref>}} + +{{comment|en| A book of long narrative in literary prose<ref name="novel">http://en.wikipedia.org/wiki/Novel</ref>}} +{{comment|el|Ένα βιβλίο με μεγάλη αφήγηση σε λογοτεχνική πρόζα}} +{{comment|fr|Le roman est un genre littéraire, caractérisé pour l'essentiel par une narration fictionnelle plus ou moins longue.<ref>http://fr.wikipedia.org/wiki/Roman_%28litt%C3%A9rature%29</ref>}} +| owl:equivalentClass = wikidata:Q8261 +}} +==References== +<references/>OntologyClass:NuclearPowerStation2009144563092022-02-16T12:27:58Z{{Class +| labels = +{{label|de|Kernkraftwerk}} +{{label|en|Nuclear Power plant}} +{{label|ga|stáisiún núicléach}} +{{label|el|Πυρηνικός Σταθμός Παραγωγής Ενέργειας}} +{{label|fr|centrale nucléaire}} +{{label|nl|kernenergiecentrale}} +{{label|ur|ایٹمی بجلی گھر}} +| rdfs:subClassOf = PowerStation +| owl:equivalentClass = wikidata:Q134447 +}}OntologyClass:Ocean2009440563632022-02-16T14:17:21Z{{Class +| labels = +{{label|en|Ocean}} +{{label|ga|aigéan}} +{{label|de|Ozean}} +{{label|el|Ωκεανός}} +{{label|fr|Océan}} +{{label|nl|oceaan}} +{{label|pt|oceano}} +{{label|ja|大洋}} +{{label|ur|سمندر}} +| comments = +{{comment|ur|نمکین پانی کا ایک جسم جو سیارے کے ہائیڈروسفیئر کا زیادہ تر حصہ بناتا ہے۔ }} + + {{comment|en|A body of saline water that composes much of a planet's hydrosphere.}} +{{comment|el| Μάζα αλμυρού νερού που αποτελεί σημαντικό μέρος της υδρόσφαιρας ενός πλανήτη.}} +| rdfs:subClassOf = BodyOfWater +| owl:equivalentClass = wikidata:Q9430 +}}OntologyClass:OfficeHolder200424563762022-02-16T14:46:01Z{{Class +| labels = +{{label|en|office holder}} +{{label|el|κάτοχος δημόσιου αξιώματος}} +{{label|es|cargo público}} +{{label|fr|titulaire}} +{{label|de|Amtsinhaber}} +{{label|ko|공직자}} +{{label|nl|ambtsdrager}} +{{label|ur|عہدے دار}} +| rdfs:subClassOf = Person +}}OntologyClass:OldTerritory2007171566832022-02-28T10:31:58Z{{Class +| labels = +{{label|en|old territory}} +{{label|fr|ancien territoire}} +{{label|de|alten Länder}} +{{label|ur|پرانا علاقہ}} +| rdfs:subClassOf = Territory +}}OntologyClass:OlympicEvent2006085566772022-02-28T10:15:46Z{{Class +| labels = +{{label|en|olympic event}} +{{label|de|olympische Veranstaltung}} +{{label|el|ολυμπικακό γεγονός}} +{{label|fr|événement olympique}} +{{label|nl|Olympisch evenement}} +{{label|ur|اولمپک کھیلوں کی تقریب}} +| rdfs:subClassOf = Olympics +}}OntologyClass:OlympicResult200425579742022-05-06T04:53:38Z{{Class +|labels= + {{label|en|olympic result}} +{{label|de|olympisches Ergebnis}} + {{label|el|αποτελέσματα Ολυμπιακών αγώνων}} + {{label|fr|résultat de Jeux Olympiques}} + {{label|es|resultados de Juegos Olímpicos}} + {{label|nl|resultaat op de Olympische Spelen}} + {{label|ur|اولمپک کا نتیجہ}} +| rdfs:subClassOf = SportCompetitionResult +}}OntologyClass:Olympics200426563552022-02-16T13:33:28Z{{Class +| labels = +{{label|en|olympics}} +{{label|ga|Na Cluichí Oilimpeacha}} +{{label|de|Olympiade}} +{{label|el|ολυμπιακοί αγώνες}} +{{label|fr|Jeux Olympiques}} +{{label|es|Juegos Olímpicos}} +{{label|ko|올림픽}} +{{label|ja|近代オリンピック}} +{{label|nl|Olympische Spelen}} +{{label|ur|اولمپکس}} +| rdfs:subClassOf = SportsEvent +}}OntologyClass:On-SiteTransportation20011095560892021-11-05T07:55:53Z{{Class +| labels = +{{label|en|on-site mean of transportation}} +{{label|de|Vorortbeförderungsmittel}} +{{label|nl|stationair vervoermiddel}} +{{label|ur|کِسی موقع مقام پر نقل و حمل}} +| specificProperties = +{{SpecificProperty | ontologyProperty = diameter | unit = metre }} +{{SpecificProperty | ontologyProperty = mass | unit = kilogram }} +{{SpecificProperty | ontologyProperty = length | unit = millimetre }} +{{SpecificProperty | ontologyProperty = height | unit = millimetre }} +{{SpecificProperty | ontologyProperty = weight | unit = kilogram }} +{{SpecificProperty | ontologyProperty = width | unit = millimetre }} +| owl:disjointWith = Person +| rdfs:subClassOf = MeanOfTransportation +}}OntologyClass:Openswarm2006132563822022-02-16T15:02:19Z{{Class +| labels = +{{label|en|Open Swarm}} +{{label|nl|open zwerm (cluster)}} +{{label|de|Open Swarm}} +{{label|el|Ανοικτό σμήνος}} +{{label|ur|کھلی بھیڑ}} +| rdfs:subClassOf = Swarm +}}OntologyClass:Opera2005929563572022-02-16T13:39:49Z{{Class +|labels= +{{label|en|opera}} +{{label|ga|ceoldráma}} +{{label|de|oper}} +{{label|it|opera}} +{{label|el|όπερα}} +{{label|fr|opéra}} +{{label|es|όpera}} +{{label|ja|オペラ}} +{{label|nl|opera}} +{{label|ur|موسیقی کے ساتھ نقل یا اداکاری}} + + +| rdfs:subClassOf = MusicalWork +| owl:equivalentClass = wikidata:Q1344 +}}OntologyClass:Organ2007979563682022-02-16T14:31:50Z{{Class +| labels = + {{label|en|organ}} + {{label|fr|Orgue}} + {{label|el|όργανο}} + {{label|nl|orgel}} + {{label|de|Orgel}} + {{label|ja|オルガン}} + {{label|ur|عضو}} +| comments = + {{ comment|ur|اعضاء کی تمام اقسام اور سائز}} + {{ comment|en|All types and sizes of organs}} + {{ comment|el|Όλα τα είδη και τα μεγέθη των οργάνων}} +| rdfs:subClassOf = Instrument +| owl:equivalentClass = wikidata:Q1444 +}}OntologyClass:Organisation200427549612021-09-09T09:43:32Z{{Class +| labels = + {{label|en|organisation}} + {{label|es|organización}} + {{label|nl|organisatie}} + {{label|el|οργάνωση}} + {{label|fr|organisation}} + {{label|da|organisation}} + {{label|de|Organisation}} + {{label|pt|organização}} + {{label|ru|Организация}} + {{label|sl|organizacija}} + {{label|ko|조직}} + {{label|ja|組織}} + {{label|ur|تنظیم}} +| rdfs:subClassOf = Agent +| owl:equivalentClass = schema:Organization, dul:SocialPerson, wikidata:Q43229 +| owl:disjointWith = Person +| owl:disjointWith = wgs84_pos:SpatialThing +}}OntologyClass:OrganisationMember2005039567682022-02-28T18:00:49Z{{Class +|labels= +{{label|en|Organisation member}} +{{label|de|Organisationsmitglied}} +{{label|fr|Membre d'organisation}} +{{label|es|Miembro de organización}} +{{label|el|Μέλος οργανισμού}} +{{label|nl|organisatielid}} +{{label|ur|تنظیم کے رکن}} +|comments= +{{comment|en|A member of an organisation.}} +{{comment|fr|Membre appartenant à une organisation.}} +{{comment|el| Μέλος ενός οργανισμού.}} +{{comment|ur|کسی تنظیم کا ممبر }} +| rdfs:subClassOf = Person +}}OntologyClass:Outbreak20012296563742022-02-16T14:42:04Z{{Class +| labels = +{{label|en|Outbreak}} +{{label|ur|ہنگامہ}} +| rdfs:subClassOf = Event +| owl:equivalentClass = wikidata:Q495513 +}}OntologyClass:OverseasDepartment2007020566062022-02-18T06:12:30Z{{Class +| labels = +{{label|en|overseas department}} +{{label|de|Übersee-Departement}} +{{label|fr|département outre mer}} +{{label|nl|overzees departement}} +{{label|ur|بیرون ملک کے محکمے}} +| rdfs:subClassOf = Department +| owl:equivalentClass = wikidata:Q202216 +}}OntologyClass:Owl:Thing2006457391752015-01-11T18:45:39ZThis class is already defined in the [http://dbpedia.hg.sourceforge.net/hgweb/dbpedia/extraction_framework/file/dump/core/src/main/scala/org/dbpedia/extraction/ontology/io/OntologyReader.scala DBpedia source code]. Please do not add any definition here. The system does not work when there is a duplicate definition. This also means that we cannot add labels for other languages. Sorry. Maybe we'll change that some day. +<!-- +{{Class +|labels= + {{label|en|thing}} + {{Label|nl|entiteit}} + {{label|es|cosa}} + {{label|fr|chose}} + {{label|it|cosa}} +| rdfs:domain = owl:Thing +| rdfs:range = xsd:string +| owl:equivalentClass = owl:Thing +}} +-->OntologyClass:PaintballLeague2002182585912022-05-15T07:10:04Z{{Class +| labels = +{{label|en|paintball league}} +{{label|de|Paintball-Liga}} +{{label|el|κύπελλο paintball}} +{{label|fr|ligue de paintball}} +{{label|nl|paintball competitie}} +{{label|ur|پینٹبال انجمن}} +| rdfs:subClassOf = SportsLeague +| comments = +{{comment|en|a group of sports teams that compete against each other in Paintball}} +{{comment|el|ένα γκρουπ αθλητικών ομάδων που ανταγωνίζονται στο paintball}} +{{comment|ur|کھیلوں کی ٹیموں کا ایک گروہ جو پینٹ بال(مصنوعي روغني گوليوں سے فوجي انداز کي جنگ لڑنے کي نقل) میں ایک دوسرے سے مقابلہ کرتا ہے۔}} +}}OntologyClass:Painter2006465580382022-05-10T14:04:19Z{{Class +| rdfs:label@en = painter +| rdfs:label@fr = peintre +| rdfs:label@de = Maler +| rdfs:label@da = maler +| rdfs:label@el = ζωγράφος +| rdfs:label@nl = schilder +| rdfs:label@ja = 画家 +| rdfs:subClassOf = Artist +|labels= +{{label|ur|رنگ ساز}} +| owl:equivalentClass = wikidata:Q1028181 +}}OntologyClass:Painting2002386580402022-05-10T15:21:07Z{{Class +| labels = +{{label|en|Painting}} +{{label|ga|pictiúr}} +{{label|da|maleri}} +{{label|de|Gemälde}} +{{label|fr|peinture}} +{{label|pl|obraz}} +{{label|el|Έργο Ζωγραφικής}} +{{label|ja|絵画}} +{{label|nl|schilderij}} +{{label|ur|نقاشی}} +| rdfs:subClassOf = Artwork +| owl:equivalentClass = schema:Painting +| rdfs:comment@en = Describes a painting to assign picture entries in wikipedia to artists. +}}OntologyClass:Pandemic20013107580422022-05-10T15:24:18Z{{Class +| labels = + {{label|en|Pandemic}} + {{label|fr|Pandémie}} + {{label|zh|瘟疫}} +{{label|ur|عالمی وباء}} +| comments = + {{comment|en|Global epidemic of infectious disease}} + {{comment|fr|Epidémie globale de maladie infectieuse}} + {{comment|zh|也称大流行,是指某种流行病的大范围疾病爆发,其规模涉及多个大陆甚至全球(即全球大流行),并有大量人口患病}} +{{comment|ur|متعدی بیماری کی عالمی وبا}} +| rdfs:subClassOf = owl:Thing +| rdfs:domain = owl:Thing +| rdfs:range = Pandemic +}}OntologyClass:Parish2006477580442022-05-10T15:29:14Z{{Class +| labels = +{{label|en|parish}} +{{label|ga|paróiste}} +{{label|de|Gemeinde}} +{{label|el|ενορία}} +{{label|fr|paroisse}} +{{label|nl|parochie}} +{{label|ja|小教区}} +{{label|ur|پادری کا علاقہ}} + +| comments = +{{comment|ur|علما کے انتظامی ادارے کی سب سے چھوٹی اکائی}} +{{comment|en|The smallest unit of a clerical administrative body}} +{{comment|el|Είναι η μικρότερη μονάδα στην διοικητική ιερατική δομή.}} +| rdfs:subClassOf = ClericalAdministrativeRegion +| owl:equivalentClass = +}}OntologyClass:Park200428580492022-05-10T15:35:42Z{{Class +| labels = +{{label|en|park}} +{{label|ga|páirc}} +{{label|de|Park}} +{{label|fr|parc}} +{{label|pt|parque}} +{{label|el|πάρκο}} +{{label|ko|공원}} +{{label|ja|公園}} +{{label|nl|park}} +{{label|ur|تفریح گاہ}} +| comments= +{{comment|en|A park is an area of open space provided for recreational use. http://en.wikipedia.org/wiki/Park}} +{{comment|ur|پارک کھلی جگہ کا ایک علاقہ ہے جو تفریحی استعمال کے لیے فراہم کی جاتی ہے۔}} +| rdfs:subClassOf = Place +| owl:equivalentClass = schema:Park +}}OntologyClass:Parliament2007937580512022-05-10T15:38:53Z{{Class +| labels = +{{label|en|parliament}} +{{label|ga|parlaimint}} +{{label|es|parlamento}} +{{label|fr|parlement}} +{{label|de|Parlament}} +{{label|el|κοινοβούλιο}} +{{label|nl|parlement}} +{{label|ja|議会}} +{{label|ur|مجلس قانون ساز}} +| rdfs:subClassOf = Organisation +| owl:equivalentClass = wikidata:Q35749 +}}OntologyClass:PenaltyShootOut2006809585602022-05-15T05:38:51Z{{Class +| labels = +{{label|en|penalty shoot-out}} +{{label|nl|penalty schieten}} +{{label|ga|ciceanna éirice}} +{{label|ur| سزا دینے کا عمل}} +{{label|de|Elfmeterschießen}} + +|comments= +{{comment|ur|سزا دینے کا عمل کھیلوں کے میچوں میں فاتح کا تعین کرنے کا ایک طریقہ ہے جو بصورت دیگر نکل دیا جاتا ہے یا برابر ہو جاتا۔}} + +| rdfs:subClassOf = Event, dul: +}}OntologyClass:PeriodOfArtisticStyle2006687580562022-05-10T15:48:45Z{{Class +|labels= + {{label|en|period of artistic style}} + {{label|nl|stijlperiode}} + {{label|fr|période de style artistique}} + {{label|de|Kunst Zeitstil}} +{{label|ur|فنکارانہ انداز کی مدت}} +| rdfs:subClassOf = TimePeriod +| owl:disjointWith = Person +}}OntologyClass:PeriodicalLiterature2003737574532022-04-24T08:49:57Z{{Class +| labels = +{{label|en|periodical literature}} +{{label|de|Periodikum}} +{{label|el|περιοδικός τύπος}} +{{label|fr|publication périodique}} + + +{{label |ur| متواتر ادب}} +| comments = +{{comment|en|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.}} +{{comment|el|Περιοδικός Τύπος (ή αλλιώς περιοδικό ή εφημερίδα) είναι η δημοσίευση άρθρου ή νέων ανά τακτά διαστήματα. Το πιο γνωστό παράδειγμα είναι οι εφημερίδες, που δημοσιεύονται σε καθημερινή ή εβδομαδιαία βάση και το περιοδικό, που τυπικά εκδίδεται σε εβδομαδιαία, μηνιαία ή δίμηνη βάση. Άλλα παραδείγματα μπορεί να είναι τα νέα ενός οργανισμού ή εταιρείας, ένα λογοτεχνικό ή εκπαιδευτικό περιοδικό ή ένα ετήσιο λεύκωμα.}} +{{comment|de|Unter Periodikum wird im Bibliothekswesen im Gegensatz zu Monografien ein (in der Regel) regelmäßig erscheinendes Druckwerk bezeichnet. Es handelt sich um den Fachbegriff für Heftreihen, Gazetten, Journale, Magazine, Zeitschriften und Zeitungen.}} + + +{{comment|ur| ایک شائع شدہ کام ہے جو ایک باقاعدہ ترتیب کار پر ایک نئے اشاعت میں نمودار ہوتا ہے۔ سب سے واقف مثال اخبار ہیں ، جو اکثر روزانہ یا ہفتہ وار شائع ہوتے ہیں۔ یا رسالہ عام طور پر ہفتہ وار ، ماہانہ یا سہ ماہی کے طور پر شائع ہوتا ہے۔ دوسری مثالوں میں ایک نیوز لیٹر ، ایک ادبی جریدہ یا سیکھا ہوا جریدہ ، یا ایک سالانہ کتاب ہوگی۔ + +}} + +{{comment|fr|Une publication périodique est un titre de presse qui paraît régulièrement.}} +| rdfs:subClassOf = WrittenWork +| owl:equivalentClass = wikidata:Q1092563 +}}OntologyClass:Person200429560792021-10-02T16:33:47Z{{Class +| labels = + {{label|el|Πληροφορίες προσώπου}} + {{label|en|person}} + {{label|eu|pertsona}} + {{label|da|person}} + {{label|ur|شخص}} + {{label|de|Person}} + {{label|sl|Oseba}} + {{label|it|persona}} + {{label|pt|pessoa}} + {{label|fr|personne}} + {{label|ga|duine}} + {{label|es|persona}} + {{label|ja|人_(法律)}} + {{label|nl|persoon}} + {{label|pl|osoba}} + {{label|hy|անձ}} + {{label|ar|شخص}} +| rdfs:subClassOf = Animal +| owl:equivalentClass = foaf:Person, schema:Person, wikidata:Q215627, wikidata:Q5, dul:NaturalPerson +| specificProperties = {{SpecificProperty | ontologyProperty = weight | unit = kilogram }} + {{SpecificProperty | ontologyProperty = height | unit = centimetre }} +}}OntologyClass:PersonFunction200430580582022-05-10T15:51:42Z{{Class +| labels = + {{label|en|person function}} + {{label|de|Funktion einer Person}} + {{label|nl|functie van persoon}} + {{label|es|función de persona}} + {{label|fr|fonction de personne}} +{{label|ur|شخص کی تقریب}} +| rdfs:subClassOf = owl:Thing +}}OntologyClass:PersonalEvent2008259581852022-05-13T02:58:41Z{{Class +| labels = +{{label|en|personal event}} +{{label|fr|évènement dans la vie privée}} +{{label|de|Ereignis im persönlichen Leben}} +{{label|el|προσωπικό συμβάν}} +{{label|nl|levensloopgebeurtenis}} +{{label|ur|ذاتی تقریب}} + +|comments = +{{comment|en|an event that occurs in someone's personal life}} +{{comment|ur|ایک واقعہ جو کسی کی ذاتی زندگی میں پیش آتا ہے۔}} +{{comment|el|ένα συμβάν που αφορά την προσωπική ζωή κάποιου}} + +| rdfs:subClassOf = LifeCycleEvent +}}OntologyClass:Pharaoh20013575580652022-05-11T04:09:43Z{{Class +| labels = + {{label|en|Pharaoh}} + {{label|eu|Faraoia}} + {{label|da|Farao}} + {{label|fr|pharaon}} + {{label|hi|फिरौन}} + {{label|ar|فراعنہ}} +|comments= +{{comment|ur| قدیم بادشاہوں کا ایک لقب}} +| rdfs:subClassOf = Royalty +}}OntologyClass:Philosopher200431580662022-05-11T04:11:08Z{{Class +| labels = +{{label|en|philosopher}} +{{label|de|Philosoph}} +{{label|fr|philosophe}} +{{label|el|φιλόσοφος}} +{{label|ko|철학자}} +{{label|ja|哲学者}} +{{label|nl|filosoof}} +{{label|ur|فلسفی}} +| rdfs:subClassOf = Person +| owl:equivalentClass = wikidata:Q4964182 +}}OntologyClass:PhilosophicalConcept2009718580682022-05-11T04:14:49Z{{Class +| labels = + {{label|en|Philosophical concept}} + {{label|de|philosophisch Konzept}} + {{label|fr|concept philosophique}} + {{label|nl|Filosofisch thema}} +{{label|ur|فلسفیانہ تصور}} +| comments = + {{comment|en|Philosophical concepts, e.g. Existentialism, Cogito Ergo Sum}} +{{comment|ur|فلسفیانہ تصورات، جیسے وجودیت، ٹریوس سم}} + {{comment|fr|Concepts philosophiques tels que l'Existentialisme, Cogito Ergo Sum}} +| rdfs:subClassOf = TopicalConcept +}}OntologyClass:Photographer2008335581832022-05-13T02:55:11Z{{Class +| labels = +{{label|en|photographer}} +{{label|nl|fotograaf}} +{{label|fr|photographe}} +{{label|de|Fotograf}} +{{label|el|φωτογράφος}} +{{label|it|fotografo}} +{{label|ja|写真家}} +{{label|ur|عکسی تصویر اتارنے والا}} +| rdfs:subClassOf = Artist +| owl:equivalentClass = wikidata:Q33231 +}}OntologyClass:Pilot20013563580732022-05-11T04:23:24Z{{Class +| labels = + {{label|en|Pilot}} + {{label|eu|pilotua}} + {{label|da|pilot}} + {{label|fr|pilote}} + {{label|hi|पायलट}} + {{label|ar|طيار}} +{{label|ur|طیارہ اڑانے والا}} +| rdfs:subClassOf = Person +}}OntologyClass:Place200432562792022-02-16T09:54:51Z{{Class +| labels = + {{label|en|place}} + {{label|ca|lloc}} + {{label|da|sted}} + {{label|de|Ort}} + {{label|el|περιοχή}} + {{label|es|lugar}} + {{label|eu|lekua}} + {{label|fr|lieu}} + {{label|ga|áit}} + {{label|pl|miejsce}} + {{label|pt|lugar}} + {{label|ja|立地}} + {{label|nl|plaats}} + {{label|ar|مكان}} + {{label|ur|جگہ}} +| comments = + {{comment|ur|غیر متحرک چیزیں یا مقامات۔}} + {{comment|pt|uma localização}} +| owl:equivalentClass = schema:Place, Location +| rdfs:subClassOf = owl:Thing +}}OntologyClass:Planet200433580752022-05-11T04:25:41Z{{Class +| labels = +{{label|ca|planeta}} +{{label|de|Planet}} +{{label|en|planet}} +{{label|el|Πλανήτης}} +{{label|es|planeta}} +{{label|fr|planète}} +{{label|ga|pláinéad}} +{{label|sl|planet}} +{{label|pl|planeta}} +{{label|pt|Planeta}} +{{label|ja|惑星}} +{{label|ur|سیارہ}} +{{label|nl|planeet}} +| rdfs:subClassOf = CelestialBody +| specificProperties = {{SpecificProperty | ontologyProperty = temperature | unit = kelvin }} + {{SpecificProperty | ontologyProperty = orbitalPeriod | unit = day }} + {{SpecificProperty | ontologyProperty = density | unit = kilogramPerCubicMetre }} + {{SpecificProperty | ontologyProperty = mass | unit = kilogram }} + {{SpecificProperty | ontologyProperty = apoapsis | unit = kilometre }} + {{SpecificProperty | ontologyProperty = maximumTemperature | unit = kelvin }} + {{SpecificProperty | ontologyProperty = averageSpeed | unit = kilometrePerSecond }} + {{SpecificProperty | ontologyProperty = volume | unit = cubicKilometre }} + {{SpecificProperty | ontologyProperty = surfaceArea | unit = squareKilometre }} + {{SpecificProperty | ontologyProperty = meanTemperature | unit = kelvin }} + {{SpecificProperty | ontologyProperty = minimumTemperature | unit = kelvin }} + {{SpecificProperty | ontologyProperty = periapsis | unit = kilometre }} + {{SpecificProperty | ontologyProperty = meanRadius | unit = kilometre }} +| owl:equivalentClass = wikidata:Q634 +}}OntologyClass:Plant200434550992021-09-10T06:26:11Z{{Class +| labels = +{{label|en|plant}} +{{label|ga|planda}} +{{label|it|pianta}} +{{label|de|pflanze}} +{{label|el|φυτό}} +{{label|fr|plante}} +{{label|ja|植物}} +{{label|nl|plant}} +{{label|ur|پودا}} +| rdfs:subClassOf = Eukaryote + +| owl:equivalentClass = wikidata:Q756 +}}OntologyClass:Play2003774580772022-05-11T04:30:54Z{{Class +|labels= + {{label|en|play}} +{{label|ga|dráma}} + {{label|de|Theaterstück}} + {{label|el|παιχνίδι}} + {{label|ja|戯曲}} + {{label|nl|toneelstuk}} + {{label|fr|pièce de théâtre}} + {{label|es|obra de teatro}} +{{label|ur|تماشہ}} +| rdfs:subClassOf = WrittenWork +|comments= +{{comment|en|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.}} +{{comment|el|Ένα παιχνίδι είναι μια μορφή της λογοτεχνίας, γραμμένο από έναν συγγραφέα, που συνήθως αποτελείται από σενάριο του διαλόγου μεταξύ των χαρακτήρων, που προορίζεται για την θεατρική παράσταση και όχι μόνο ανάγνωση.}} +{{comment|ur|ڈرامہ ادب کی ایک شکل ہے جسے ڈرامہ نگار نے لکھا ہے، عام طور پر کرداروں کے درمیان تحریری مکالمے پر مشتمل ہوتا ہے، جس کا مقصد صرف پڑھنے کے بجائے تھیٹر کی کارکردگی کے لیے ہوتا ہے۔}} + +| owl:equivalentClass = wikidata:Q25379 +}}OntologyClass:PlayWright2009437580792022-05-11T04:32:47Z{{Class +| labels = {{label|en|Playwright}} +{{label|ga|drámadóir}} +{{label|de|Dramatiker}} +{{label|fr|Dramaturge}} +{{label|nl|toneelschrijver}} +{{label|ur|ڈرامہ نگار}} +| comments = {{comment|en|A person who writes dramatic literature or drama.}} +{{comment|ur|وہ شخص جو ڈرامائی ادب یا ڈرامہ لکھتا ہے۔}} +| rdfs:subClassOf = Writer +| owl:equivalentClass = wikidata:Q214917 +}}OntologyClass:PlayboyPlaymate200435580842022-05-11T04:59:44Z{{Class +| labels = +{{label|en|Playboy Playmate}} +{{label|de|Playboy Playmate}} +{{label|el|playboy playmate}} +{{label|fr | playmate pour Playboy}} +{{label|ur|پلے بوائے پلے میٹ}} +|comments= +{{comment|ur| پلے میٹ ایک خاتون ماڈل ہے جسے پلے بوائے میگزین کے سینٹر فولڈ/گیٹ فولڈ میں پلے میٹ آف دی منتھ کے طور پر دکھایا گیا ہے}} +| rdfs:subClassOf = Person +}}OntologyClass:Poem2008708580852022-05-11T05:01:04Z{{Class +| labels = +{{label|en|poem}} +{{label|ga|dán}} +{{label|fr|poème}} +{{label|de|Gedicht}} +{{label|el|ποίημα}} +{{label|it|poesia}} +{{label|nl|gedicht}} +{{label|ja|詩}} +{{label|ur|نظم}} + +| rdfs:subClassOf = WrittenWork +| owl:equivalentClass = wikidata:Q5185279 +}}OntologyClass:Poet2008256580872022-05-11T05:02:34Z{{Class +| labels = +{{label|en|poet}} +{{label|ga|file}} +{{label|fr|poète}} +{{label|de|Dichter}} +{{label|el|ποιητής}} +{{label|nl|dichter}} +{{label|ja|詩人}} +{{label|ur|شاعر}} + +| rdfs:subClassOf = Writer +| owl:equivalentClass = wikidata:Q49757 +}}OntologyClass:PokerPlayer200436580892022-05-11T05:04:33Z{{Class +| labels = +{{label|en|poker player}} +{{label|ga|imreoir pócair}} +{{label|el|παίχτης του πόκερ}} +{{label|de|Pokerspieler}} +{{label|fr|joueur de poker}} +{{label|nl|pokerspeler}} +{{label|ur|پوکر کھلاڑی}} +| rdfs:subClassOf = Athlete +}}OntologyClass:PoliceOfficer20013581580912022-05-11T05:05:57Z{{Class +| labels = + {{label|en|Police Officer}} + {{label|eu|Polizia ofiziala}} + {{label|da|Politimand}} + {{label|fr|Officier de police}} + {{label|hi|पुलिस अधिकारी}} + {{label|ar|ضابط شرطة}} +{{label|ur|پولیس افسر}} +| rdfs:subClassOf = Person +}}OntologyClass:PoliticalConcept2009716580932022-05-11T05:07:56Z{{Class +| labels = + {{label|en|Political concept}} + {{label|de|politische Konzept}} + {{label|nl|politiek concept}} + {{label|fr|concept politique}} +{{label|ur|سیاسی تصور}} +| comments = + {{comment|en|Political concepts, e.g. Capitalism, Democracy}} + {{comment|fr|Concept politiques tels que le capitalisme, la démocratie...}} +{{comment|ur|سیاسی تصورات، جیسے سرمایہ داری، جمہوریت}} +| rdfs:subClassOf = TopicalConcept +}}OntologyClass:PoliticalFunction2007906580952022-05-11T05:09:39Z{{Class +| labels = +{{label|en|political function}} +{{label|de|politische Funktion}} +{{label|fr|fonction politique}} +{{label|nl|politieke functie}} +{{label|ur|سیاسی تقریب}} +| rdfs:subClassOf = PersonFunction +}}OntologyClass:PoliticalParty2002409580972022-05-11T05:11:18Z{{Class +|labels= +{{label|en|political party}} +{{label|ca|partit polític}} +{{label|es|partido político}} +{{label|de|politische Partei}} +{{label|el|πολιτικό κόμμα}} +{{label|fr|parti politique}} +{{label|nl|politieke partij}} +{{label|pl|partia polityczna}} +{{label|pt|partido político}} +{{label|ur|سیاسی جماعت}} +| rdfs:subClassOf = Organisation +|comments= +{{comment|en|for example: Democratic_Party_(United_States)}} +{{comment|el|για παράδειγμα: Δημοκρατικό Κόμμα _United_States)}} +| owl:equivalentClass = wikidata:Q7278 +}}OntologyClass:Politician200437552912021-09-11T11:25:16Z{{Class +| labels = +{{label|en|politician}} +{{label|ga|polaiteoir}} +{{label|el|πολιτικός}} +{{label|nl|politicus}} +{{label|de|Politiker}} +{{label|fr|politicien}} +{{label|pt|político}} +{{label|ur|سیاستدان}} +{{label|sl|politik}} +{{label|ja|政治家}} +{{label|ko|정치인}} + +| rdfs:subClassOf = Person +| owl:equivalentClass = wikidata:Q82955 +}}OntologyClass:PoliticianSpouse2007867580992022-05-11T05:14:08Z{{Class +| labels = +{{label|en|politician spouse}} +{{label|de|Ehepartner eines Politiker}} +{{label|nl|partner van een politicus}} +{{label|el|σύζυγος πολιτικού}} +{{label|ur|سیاستدان میاں بیوی}} +| rdfs:subClassOf = Person +}}OntologyClass:PoloLeague2002279586032022-05-15T07:44:42Z{{Class +| labels = +{{label|en|polo league}} +{{label|ga|sraith póló}} +{{label|de|Polo-Liga}} +{{label|el|Ομοσπονδία Υδατοσφαίρισης}} +{{label|fr|ligue de polo}} +{{label|nl|polo competitie}} +{{label|ur|پولو انجمن}} +| comments = +{{comment|en|A group of sports teams that compete against each other in Polo.}} +{{comment|ur|کھیلوں کی ٹیموں کا ایک گروہ جو پولو میں ایک دوسرے سے مقابلہ کرتا ہے۔}} +| rdfs:subClassOf = SportsLeague +}}OntologyClass:Polysaccharide20010411581042022-05-11T18:20:07Z{{Class +| labels = +{{label|en|polysaccharide}} +{{label|de|Polysaccharide}} +{{label|nl|polysacharide}} +{{label|ur|کثِیر شَکری}} +| comments = +{{comment|nl|Zijn koolhydraten die zijn opgebouwd uit tien of meer monosacharide-eenheden}} +{{comment|ur|یہ کاربوہائیڈریٹس ہیں جو دس یا اس سے زیادہ سادَہ شَکَّر یونٹوں سے بنی ہیں۔}} +| rdfs:subClassOf = Biomolecule +}}OntologyClass:Pope200438581092022-05-11T18:27:20Z{{Class +| labels = +{{label|de|Papst}} +{{label|en|pope}} +{{label|ga|pápa}} +{{label|el|πάπας}} +{{label|fr|pape}} +{{label|ko|교황}} +{{label|pl|papież}} +{{label|ja|教皇}} +{{label|nl|paus}} +{{label|ur|رومن کیتہولک پادری}} +| rdfs:subClassOf = Cleric +| owl:equivalentClass = wikidata:Q19546 +}}OntologyClass:PopulatedPlace200439574662022-04-24T09:23:30Z{{Class +| labels = + {{label|en|populated place}} + {{label|da|befolket sted}} + {{label|de|bewohnter Ort}} + {{label|el|πυκνοκατοικημένη περιοχή}} + {{label|fr|lieu habité}} + {{label|nl|bebouwde omgeving}} + {{label|ar|تجمع سكاني}} + {{label|ur|آبادی والی جگہ}} +| comments = + {{comment|en|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).}} + {{comment|fr|Selon la définition du United States Geological Survey, un lieu peuplé est un lieu ou une zone avec des bâtiments regroupés ou dispersés et une population humaine permanente (agglomération, colonie, ville ou village) référencée par des coordonnées géographiques (http://en.wikipedia. org/wiki/Populated_place).}} + {{comment|ur| جیسا کہ امریکہ نے بیان کیا ہے۔ ارضیاتی سروے ، ایک آبادی والی جگہ وہ جگہ یا علاقہ ہے جہاں گروہ یا بکھرے ہوئے عمارتیں اور مستقل انسانی آبادی (شہر ، بستی ، قصبہ یا گاؤں) ہو۔ }} + {{comment|el|Πυκνοκατοικημένη περιοχή, είναι η περιοχή ή το μέρος με μεγάλο αριθμό κτιρίων και μεγάλο μόνιμο πληθυσμό, σε σύγκριση με την γεωγραφική περιοχή που καταλαμβάνει (μεγαλούπολη, πόλη ή χωριό). }} +| rdfs:subClassOf = Place +| specificProperties = +{{SpecificProperty | ontologyProperty = populationDensity | unit = inhabitantsPerSquareKilometre }} +{{SpecificProperty | ontologyProperty = populationMetroDensity | unit = inhabitantsPerSquareKilometre }} +{{SpecificProperty | ontologyProperty = populationUrbanDensity | unit = inhabitantsPerSquareKilometre }} +{{SpecificProperty | ontologyProperty = area | unit = squareKilometre }} +{{SpecificProperty | ontologyProperty = areaTotal | unit = squareKilometre }} +{{SpecificProperty | ontologyProperty = areaMetro | unit = squareKilometre }} +{{SpecificProperty | ontologyProperty = areaUrban | unit = squareKilometre }} +}}OntologyClass:Population2007909581062022-05-11T18:21:40Z{{Class +| labels = +{{label|en|population}} +{{label|ga|daonra}} +{{label|de|Bevölkerung}} +{{label|fr|population}} +{{label|el|πληθυσμός}} +{{label|nl|bevolking}} +{{label|ja|人口}} +{{label|ur|آبادی}} + +| rdfs:subClassOf = owl:Thing +| owl:equivalentClass = wikidata:Q33829 +}}OntologyClass:Port2009442581112022-05-11T18:29:20Z{{Class +| labels = {{label|en|Port}} +{{label|ga|caladh}} +{{label|fr|Port}} +{{label|de|Hafen}} +{{label|nl|haven}} +{{label|ja|港湾}} +{{label|ur|بندرگاہ}} + +| comments = {{comment|en|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.}} +{{comment|ur|ساحل یا ساحل پر ایک مقام جس میں ایک یا زیادہ بندرگاہیں ہوں جہاں بحری جہاز لوگوں یا سامان کو زمین پر یا اس سے منتقل کر سکتے ہیں}} +| rdfs:subClassOf = Infrastructure +| owl:equivalentClass = wikidata:Q44782 +}}OntologyClass:PowerStation2002741563132022-02-16T12:31:40Z{{Class +| labels = + {{label|en|power station}} +{{label|ga|stáisiún cumhachta}} +{{label|de|Kraftwerk}} + {{label|ja|発電所}} + {{label|fr|centrale électrique}} + {{label|el|σταθμός παραγωγής ενέργειας}} + {{label|es|central eléctrica}} + {{label|nl|Elektriciteitscentrale}} + {{label|ur|بجلی گھر}} +| rdfs:subClassOf = Infrastructure +| owl:equivalentClass = wikidata:Q159719 +}}OntologyClass:Prefecture2007129581132022-05-11T18:38:02Z{{Class +| labels = +{{label|en|prefecture}} +{{label|nl|prefectuur}} +{{label|fr|préfecture}} +{{label|de|Präfektur}} +{{label|el|νομαρχία}} +{{label|ja|県}} +{{label|ur|دائرہ اختيارات}} + +| rdfs:subClassOf = GovernmentalAdministrativeRegion +| owl:equivalentClass = wikidata:Q515716 +}}OntologyClass:PrehistoricalPeriod2006686581192022-05-11T18:47:40Z{{Class +|labels= +{{label|en|prehistorical period}} +{{label|fr|ère préhistorique}} +{{label|ga|tréimhse réamhstaire}} +{{label|de|prähistorisch Zeitalter}} +{{label|el|προϊστορική περίοδο}} +{{label|nl|periode in de prehistorie}} +{{label|ur|تاریخ سے پہلے کے زمانے کا دور}} +| rdfs:subClassOf = TimePeriod +| owl:disjointWith = Person +| owl:disjointWith = HistoricalPeriod +}}OntologyClass:Presenter2006207581172022-05-11T18:44:24Z{{Class +| labels = +{{label|en|presenter}} +{{label|ga|láithreoir}} +{{label|de|Moderator}} +{{label|el|Παρουσιαστής}} +{{label|nl|presentator}} +{{label|fr|présentateur}} +{{label|ja|司会者}} +{{label|ur|پیش کنندہ}} +| comments = {{comment|en|TV or radio show presenter}} +{{comment|ur|ٹی وی یا ریڈیو شو پیش کرنے والا}} +| rdfs:subClassOf = Person +| owl:equivalentClass = wikidata:Q13590141 +}}OntologyClass:President200440581152022-05-11T18:39:49Z{{Class +| labels = +{{label|en|president}} +{{label|ga|uachtarán}} +{{label|de|Präsident}} +{{label|el|πρόεδρος}} +{{label|fr|président}} +{{label|ko|국가원수}} +{{label|nl|president}} +{{label|pl|prezydent}} +{{label|ja|大統領}} +{{label|ur|صدر}} +| rdfs:subClassOf = Politician +| owl:equivalentClass = wikidata:Q30461 +}}OntologyClass:Pretender20013569581212022-05-11T18:50:30Z{{Class +| labels = + {{label|en|Pretender}} + {{label|eu|itxurakeria}} + {{label|da|pretender}} + {{label|fr|prétendante}} + {{label|hi|दावेदार}} + {{label|ar|الزاعم}} +{{label|ur|دکھاوا کرنے والا}} +| rdfs:subClassOf = Royalty +}}OntologyClass:Priest2002665581812022-05-13T02:53:30Z{{Class +| labels = +{{label|en|priest}} +{{label|ga|sagart}} +{{label|de|priester}} +{{label|it|prete}} +{{label|el|παπάς}} +{{label|fr|prêtre}} +{{label|ja|司祭}} +{{label|nl|priester}} +{{label|ur|پجاری}} +| rdfs:subClassOf = Cleric +| owl:equivalentClass = wikidata:Q42603 +}}OntologyClass:PrimeMinister200441581882022-05-13T03:13:33Z{{Class +| labels = +{{label|en|prime minister}} +{{label|ga|príomh-aire}} +{{label|de|Premierminister}} +{{label|el|πρωθυπουργός}} +{{label|fr|premier ministre}} +{{label|nl|eerste minister}} +{{label|ur|وزیراعظم}} +{{label|ko|총리}} +| rdfs:subClassOf = Politician +}}OntologyClass:Prison2006358581902022-05-13T03:16:04Z{{Class +| labels = +{{label|it|prigione}} +{{label|en|prison}} +{{label|ga|príosún}} +{{label|de|gefängnis}} +{{label|fr|prison}} +{{label|el|φυλακή}} +{{label|nl|gevangenis}} +{{label|ja|刑務所}} +{{label|ur|جیل}} +| rdfs:subClassOf = Building +| owl:equivalentClass = wikidata:Q40357 +}}OntologyClass:Producer2009433581922022-05-13T03:19:52Z{{Class +| labels = + {{label|en|Producer}} + {{label|da|producent}} + {{label|de|Produzent}} + {{label|fr|Producteur}} + {{label|nl|producent}} + {{label|ja|監督}} +{{label|ur|مبدہ}} +| comments = + {{comment|en|a person who manages movies or music recordings.}} +{{comment|ur|وہ شخص جو فلموں یا میوزک کی ریکارڈنگ کا انتظام کرتا ہے۔}} +| rdfs:subClassOf = Person +| owl:equivalentClass = schema:Producer, wikidata:Q3282637 +}}OntologyClass:Profession2008252581942022-05-13T03:23:03Z{{Class +| labels = +{{label|en|profession}} +{{label|ga|gairm}} +{{label|nl|beroep}} +{{label|de|Beruf}} +{{label|el|επάγγελμα}} +{{label|fr|métier}} +{{label|ja|専門職}} +{{label|ur|پیشہ}} +| rdfs:subClassOf = PersonFunction +| owl:equivalentClass = wikidata:Q28640 +}}OntologyClass:Professor2006798582082022-05-13T03:49:56ZOntologyClass:Professor +{{Class +|labels = +{{label|en|professor}} +{{label|de|Professor}} +{{label|el|καθηγητής}} +{{label|fr|professeur}} +{{label|ga|ollamh}} +{{label|nl|professor}} +{{label|pl|profesor}} +{{label|ja|教授}} +{{label|ur|معلم}} +| rdfs:subClassOf = Scientist +| owl:equivalentProperty = wikidata:Q1622272 +}}OntologyClass:ProgrammingLanguage2002920582042022-05-13T03:41:06Z{{Class +| labels = + {{label|fr|langage de programmation}} + {{label|en|programming language}} + {{label|it|linguaggio di programmazione}} + {{label|ga|teanga ríomhchlárúcháin}} + {{label|el|γλώσσα προγραμματισμού}} + {{label|da|programmeringssprog}} + {{label|de|Programmiersprache}} + {{label|pt|linguagem de programação}} + {{label|nl|programmeertaal}} + {{label|ko|프로그래밍 언어}} +{{label|ur|پروگرامنگ زبان}} +|comments= +{{comment|ur|ایسی زبانیں جو کمپیوٹر کو ہدایات دینے میں معاون ہیں}} +| rdfs:subClassOf = Language +| owl:equivalentClass = wikidata:Q9143 +}}OntologyClass:Project2003036581962022-05-13T03:25:58Z{{Class +| labels = + {{label|en|project}} + {{label|ga|tionscadal}} + {{label|de|Projekt}} + {{label|el|σχέδιο}} + {{label|fr|projet}} + {{label|es|proyecto}} + {{label|ja|プロジェクト}} + {{label|nl|project}} +{{label|ur|منصوبہ}} + +| comments = + {{comment|en|A project is a temporary endeavor undertaken to achieve defined objectives.}} + {{comment|de|Ein Projekt ist ein zeitlich begrenztes Unternehmen, das unternommen wird, um definierte Ziele zu erreichen.}} +{{comment|ur|ایک پروجیکٹ ایک عارضی کوشش ہے جو متعین مقاصد کے حصول کے لیے کی جاتی ہے۔}} +| rdfs:subClassOf = UnitOfWork +| owl:equivalentClass = +}}OntologyClass:ProtectedArea200442582102022-05-13T03:52:35Z{{Class +| labels = +{{label|en|protected area}} +{{label|de|Schutzgebiet}} +{{label|nl|beschermd gebied}} +{{label|el|προστατευμένη περιοχή}} +{{label|fr|aire protégée}} +{{label|ja|保護地区}} +{{label|ur|محفوظ علاقہ}} +| comments = +{{comment|en|This class should be used for protected nature. For enclosed neighbourhoods there is now class GatedCommunity}} +{{comment|nl|Deze klasse duidt gebieden aan met de status 'beschermd'. Is dus eigenlijk ook geen klasse, maar zou een attribuut moeten zijn}} +{{comment|ur|یہ طبقہ 'محفوظ' حیثیت والے علاقوں کو ظاہر کرتا ہے}} +| rdfs:subClassOf = Place +| owl:equivalentClass = wikidata:Q473972 +}}OntologyClass:Protein200443582062022-05-13T03:46:12Z{{Class +| labels = +{{label|en|protein}} +{{label|ga|próitéin}} +{{label|el|πρωτεΐνη}} +{{label|fr|protéine}} +{{label|pt|proteína}} +{{label|de|Protein}} +{{label|it|proteina}} +{{label|ko|단백질}} +{{label|ja|タンパク質}} +{{label|nl|proteïne}} +{{label|ur|لحمیات}} +| rdfs:subClassOf = Biomolecule +| owl:equivalentClass = wikidata:Q8054 +}}OntologyClass:Protocol20012191581982022-05-13T03:33:45Z{{Class +| labels = +{{label|en|Protocol}} +{{label|de|Protokoll}} +{{label|fr|Protocole}} +{{label|ru|Протокол}} +{{label|ur|رابطے کا ضابطہ }} +| rdfs:subClassOf = owl:Thing +}}OntologyClass:ProtohistoricalPeriod2006689582122022-05-13T03:59:55Z{{Class +|labels= +{{label|en|protohistorical period}} +{{label|de|proto-historisch Zeitalter}} +{{label|nl|periode in de protohistorie}} +{{label|ur|قدیم تاریخی زمانہ}} +|comments= +{{comment|ur|انسانوں کےمطالعہ تحریر کی ایجاد سے پہلےکی مدت}} +| rdfs:subClassOf = TimePeriod +| owl:disjointWith = Person +}}OntologyClass:Prov:Entity20014275591052022-12-01T13:21:18Z{{Class +| labels = +{{label|en|Entity}} +{{label|fr|Entity}} +| comments = +{{comment|fr|http://www.w3.org/ns/prov#Entity}} +{{comment|en|http://www.w3.org/ns/prov#Entity}} +| rdfs:subClassOf = owl:Thing +}}OntologyClass:Prov:Revision20014272591102022-12-01T13:59:19Z{{Class +| labels = +{{label|en|Revision}} +{{label|fr|Révision}} +| comments = +{{comment|fr|http://www.w3.org/ns/prov#Revision}} +{{comment|en|http://www.w3.org/ns/prov#Revision}} +}}OntologyClass:Province2006560571182022-03-12T21:17:18Z{{Class +| labels = + {{label|en|province}} + {{label|ga|cúige}} + {{label|de|Provinz}} + {{label|fr|province}} + {{label|el|επαρχία}} + {{label|nl|provincie}} + {{label|ja|英語圏の行政区画}} + {{label|ur|صوبہ}} +| comments = + {{comment|en|An administrative body governing a territorial unity on the intermediate level, between local and national level}} + {{comment|fr|Entité administrative en charge d'une unité territoriale se situant entre le niveau local et national; ex: Province Nord (Nouvelle-Calédonie)}} + {{comment|el|Είναι διοικητική δομή του κράτους που διοικεί μια περιοχή που είναι σε έκταση μεγαλύτερη από τοπικό επίπεδο και μικρότερη από εθνικό επίπεδο.}} + {{comment|ur|ایک انتظامی ادارہ جو مقامی اور قومی سطح کے درمیان انٹرمیڈیٹ سطح پر علاقائی وحدت کا انتظام کرتا ہے۔}} +| rdfs:subClassOf = GovernmentalAdministrativeRegion +| owl:equivalentClass = +}}OntologyClass:Psychologist2007825582002022-05-13T03:35:21Z{{Class +| labels = + {{label|en|psychologist}} + {{label|fr|psychologue}} + {{label|ga|síceolaí}} + {{label|nl|psycholoog}} + {{label|de|Psychologe}} + {{label|el|ψυχολόγος}} +{{label|ur|ماہر نفسیات}} +| rdfs:subClassOf = Person +| owl:equivalentClass = wikidata:Q212980 +}}OntologyClass:PublicService2006750582142022-05-13T04:05:40Z{{Class +| labels = +{{label|en|public service}} +{{label|nl|staatsapparaat}} +{{label|de|öffentlicher Dienst}} +{{label|el|δημόσιες υπηρεσίες}} +{{label|fr|service public}} +{{label|ur|خدمات عامہ}} +| comments = +{{comment|el|Είναι οι υπηρεσίες που προσφέρονται από δομές του κράτους}} +{{comment|ur|یہ ریاستی ڈھانچے کی طرف سے عوام کے لیے فراہم کردہ خدمات ہیں۔}} +| rdfs:subClassOf = owl:Thing +| owl:equivalentClass = wikidata:Q161837 +}}OntologyClass:PublicTransitSystem2003621568882022-03-02T17:51:55Z{{Class +| labels = +{{label|en|public transit system}} +{{label|fr|Système de transport public}} +{{label|de|Öffentliches Personenverkehrssystem}} +{{label|es|Sistema de Transporte Público}} +{{label|el|μέσα μαζικής μεταφοράς}} +{{label|nl|openbaar vervoer systeem}} +{{label|ur|عوامی راہداری کا نظام}} +| comments = + {{comment|en|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).}} + {{comment|fr|Un système de transport en commun est un service de transport partagé de passagers mis à la disposition du grand public. Les modes de transport public comprennent les bus, les trolleybus, les tramways et les trains, le « transport en commun rapide » (métro, TGV, etc.) et les ferries. Les transports publics interurbains sont dominés par les compagnies aériennes, les autocars et le rail intercité. (http://en.wikipedia.org/wiki/Public_transit).}} + {{comment|el|Τα μέσα μαζικής μεταφοράς (συντομογραφία ΜΜΜ) είναι τα δημόσια συγκοινωνιακά μέσα, που περιλαμβάνουν τα λεωφορεία, τα τρόλεϊ, τα τραμ, τα τρένα, το μετρό, τα πλοία. Υπάρχουν και τα ταχεία μέσα συγκοινωνίας που περιλαμβάνουν τα αεροπλάνα, υπερταχεία τρένα.}} + {{comment|de|Ein System des Öffentlichen Personenverkehrs auf Straße, Schiene oder Wasser.}} + {{comment|ur|عوامی راہداری کا نظام ایک مشترکہ عوامی نقل و حمل کی سروس ہے جو عام لوگوں کے استعمال کے لیے دستیاب ہے۔عوامی نقل و حمل کے طریقوں میں بسیں ، ٹرالی بسیں ، ٹرام اور ٹرینیں ، 'تیز رفتارراہداری' (میٹرو/زمین دوز برقی ریل/زیر زمین وغیرہ) اور فیری شامل ہیں۔}} +| rdfs:subClassOf = Company +}}OntologyClass:Publisher2006193582022022-05-13T03:38:30Z{{Class +| labels = +{{label|en|publisher}} +{{label|ga|foilsitheoir}} +{{label|es|editor}} +{{label|de|Herausgeber}} +{{label|fr|éditeur}} +{{label|el|εκδότης}} +{{label|ja|出版社}} +{{label|nl|uitgever}} +{{label|ko|출판사}} +{{label|ur|ناشر}} +| comments = {{comment|en|Publishing company}} +{{comment|ur|شائع کرنے والے اشاعتی ادارہ}} +| rdfs:subClassOf = Company +}}OntologyClass:Pyramid2009439582162022-05-13T04:09:36Z{{Class +| labels = {{label|en|Pyramid}} +{{label|ga|pirimid}} +{{label|de|Pyramide}} +{{label|fr|Pyramide}} +{{label|nl|pyramide}} +{{label|ja|ピラミッド}} +{{label|ur|مخروطی مصری مینار}} +| comments = {{comment|en|a structure whose shape is roughly that of a pyramid in the geometric sense.}} +{{comment|ur|ایک ڈھانچہ جس کی شکل ہندسی معنوں میں تقریبا ایک اہرام کی ہے۔}} +| rdfs:subClassOf = ArchitecturalStructure +| owl:equivalentClass = wikidata:Q12516 +}}OntologyClass:Quote20011222580312022-05-07T11:26:39Z{{Class +| labels = + {{label|en|Quote}} + {{label|fr|Citation}} + {{label|de|Zitat}} + {{label|nl|citaat}} + {{label|ja|引用}} +{{label|ur|اقتباس}} + +| rdfs:subClassOf = WrittenWork +| owl:equivalentClass = +}}OntologyClass:Race200444559742021-09-18T06:46:32Z{{Class +| labels = +{{label|de|Rennen}} +{{label|en|race}} +{{label|ga|rás}} +{{label|el|αγώνας}} +{{label|fr|course}} +{{label|ja|レース}} +{{label|nl|race}} +{{label|ur|دوڑ}} +| rdfs:subClassOf = SportsEvent +}}OntologyClass:RaceTrack2005951509372016-04-26T03:06:26Z{{Class +| labels = +{{label|en|race track}} +{{label|ga|rásraon}} +{{label|nl|racecircuit}} +{{label|de|Rennstrecke}} +{{label|el|πίστα αγώνων}} +{{label|fr|circuit de course}} +{{label|ja|サーキットのコース}} +| rdfs:subClassOf = SportFacility +| owl:equivalentClass = wikidata:Q1777138 +}}OntologyClass:Racecourse2007349509022016-04-19T11:48:44Z{{Class +| labels = +{{label|en|racecourse}} +{{label|ga|ráschúrsa}} +{{label|de|Rennbahn}} +{{label|el|ιππόδρομος}} +{{label|it|ippodromo}} +{{label|nl|renbaan}} +{{label|ja|競馬場}} +| comments = +{{comment|en|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.}} +{{comment|el|Ο ιππόδρομος,εναλλακτικός όρος για την πίστα διεξαγωγής αγώνων μεταξύ ίππων,συναντάται σε χώρες όπως η Αγγλία, Αυστραλία, Χονγκ Κονγκ και τα Ηνωμένα Αραβικά Εμιράτα.}} +| rdfs:subClassOf = RaceTrack +| owl:equivalentClass = wikidata:Q1777138 +}}OntologyClass:RacingDriver2006107552012021-09-10T17:42:27Z{{Class +| labels = {{label|en|racing driver}} +{{label|de|Rennfahrer}} +{{label|el|οδηγός αγώνων}} +{{label|nl|coureur}} +{{label|ur|مقابلہ میں کاریں چلانے والے}} +| rdfs:subClassOf = MotorsportRacer +| owl:equivalentClass = wikidata:Q378622 +}}OntologyClass:RadioControlledRacingLeague2002183492692015-10-18T11:39:47Z{{Class +| labels = +{{label|en|radio-controlled racing league}} +{{label|de|RC-Renn Liga}} +{{label|fr|ligue de courses radio-télécommandé}} +{{label|nl|radio bestuurbare race competitie}} +| comments = +{{comment|en|A group of sports teams or person that compete against each other in radio-controlled racing.}} +| rdfs:subClassOf = SportsLeague +}}OntologyClass:RadioHost2006208574162022-04-17T20:15:56Z{{Class +| labels = + {{label|en|radio host}} + {{label|fr|présentateur radio}} + {{label|ga|láithreoir raidió}} + {{label|de|Radiomoderator}} + {{label|el|οικοδεσπότης ραδιοφώνου}} + {{label|nl|radiopresentator}} +| rdfs:subClassOf = Presenter +| owl:equivalentClass = wikidata:Q2722764 +}}OntologyClass:RadioProgram2005847513062016-06-14T06:38:40Z{{Class +| labels = +{{label|en|radio program}} +{{label|ga|clár raidió}} +{{label|de|radio programm}} +{{label|el|ραδιοφωνικό πρόγραμμα}} +{{label|fr|programme de radiodiffusion}} +{{label|it|programma radiofonico}} +{{label|ja|ラジオ番組}} +{{label|nl|radioprogramma}} +| rdfs:subClassOf = Work +| owl:equivalentClass = wikidata:Q1555508 +}}OntologyClass:RadioStation200445589392022-06-20T17:29:36Z{{Class +| labels = +{{label|en|radio station}} +{{label|ur|ریڈیو سٹیشن}} +{{label|ga|stáisiún raidió}} +{{label|de|Radiosender}} +{{label|el|ραδιοφωνικός σταθμός}} +{{label|fr|station de radio}} +{{label|es|emisora de radio}} +{{label|ja|ラジオ放送局}} +{{label|nl|radiozender}} +| rdfs:subClassOf = Broadcaster +| owl:equivalentClass = schema:RadioStation +| comments = +{{comment|en|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.}} +{{comment|de|Ein Radiosender hat genau ein Programm, zum Beispiel der Sender NDR Kultur. Nicht zu verwechseln mit der Rundfunkanstalt NDR, welche mehrere Radiosender hat.}} +}}OntologyClass:RailwayLine2003576567812022-02-28T21:02:43Z{{Class +| labels = +{{label|en|railway line}} +{{label|el|σιδηρόδρομος}} +{{label|de|Eisenbahnlinie}} +{{label|nl|spoorlijn}} +{{label|ga|líne iarnróid}} +{{label|fr|lígne de chemin de fer}} +| rdfs:subClassOf = RouteOfTransportation +| comments = +{{comment|en|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.}} +{{comment|fr|Une ligne de chemin de fer est un service de transport par train qui achemine des passagers ou du fret fourni par une organisation. A ne pas confondre avec le réseau ferré qui est la structure formée par les rails. Wikipedia ne fait pas vraiement la différence entre les deux, il n'y a donc qu'une boîte d'information en même temps pour les lignes et le réseau.}} +{{comment|el|O σιδηρόδρομος είναι μια υπηρεσία μεταφοράς επιβατών ή εμπορευμάτων με τρένα που παρέχονται από έναν οργανισμό. Δεν πρέπει να συγχέεται με τη σιδηροδρομική γραμμή, τη δομή που αποτελείται από τις ράγες. Στη Βικιπαίδεια δε γίνεται σαφής διαφοροποίηση μεταξύ των δύο, έτσι υπάρχει ένα κουτί πληροφοριών που περιγράφει ράγες και γραμμές}} +{{comment|de|Eine Eisenbahnlinie im Verkehrswesen ist die regelmäßige Bedienung einer bestimmten Eisenbahnstrecke durch öffentliche Verkehrsmittel.}} +| owl:equivalentClass = wikidata:Q728937 +}}OntologyClass:RailwayStation2005826481172015-05-25T15:12:54Z{{Class +| labels = +{{label|en|railway station}} +{{label|de|Bahnhof}} +{{label|en|train station}} +{{label|fr|gare}} +{{label|nl|treinstation}} +{{label|el|σιδηροδρομικός σταθμός}} +{{label|it|stazione ferroviaria}} +{{label|ga|stáisiún traenach}} +{{label|ja|鉄道駅}} +| rdfs:subClassOf = Station +| owl:equivalentClass = wikidata:Q55488 +}}OntologyClass:RailwayTunnel2003391482302015-05-25T15:24:03Z{{Class +| labels = +{{label|en|railway tunnel}} +{{label|el|σιδηροδρομική σήραγγα}} +{{label|de|Eisenbahntunnel}} +{{label|nl|spoorwegtunnel}} +{{label|ga|tollán iarnróid}} +| rdfs:subClassOf = RouteOfTransportation +| owl:equivalentClass = wikidata:Q1311958 +}}OntologyClass:RallyDriver2007971515082016-09-18T10:23:06Z{{Class +| labels = +{{label|en|rally driver}} +{{label|nl|rallycoureur}} +{{label|el|οδηγός ράλι}} +{{label|de|Rallyefahrer}} +| rdfs:subClassOf = RacingDriver +| comments = +{{comment|el|Ο οδηγός ράλι χρησιμοποιείται για να περιγράψει άνδρα που λαμβάνει μέρος σε αγώνες αυτοκινήτων ειδικής κατηγορίας}} +| owl:equivalentClass = wikidata:Q10842936 +}}OntologyClass:Rebbe20013567560612021-10-02T07:15:29Z{{Class +| labels = + {{label|en|Rebbe}} + {{label|eu|errebea}} + {{label|da|rebbe}} + {{label|fr|Rabbi}} + {{label|hi|रेबे}} + {{label|ar|ريبي}} +| rdfs:subClassOf = Religious +}}OntologyClass:Rebellion20010196509032016-04-19T11:49:25Z{{Class +| labels = +{{label|en|rebellion}} +{{label|de|Aufstand}} +{{label|fr|révolte}} +{{label|nl|opstand}} +{{label|ja|反乱}} + +| rdfs:subClassOf = SocietalEvent +}}OntologyClass:RecordLabel200446481452015-05-25T15:15:49Z{{Class +|labels= +{{label|en|record label}} +{{label|ga|lipéad ceoil}} +{{label|de|Plattenlabel}} +{{label|el|δισκογραφική}} +{{label|fr|label discographique}} +{{label|nl|platenlabel}} +| rdfs:subClassOf = Company +| owl:equivalentClass = wikidata:Q18127 +}}OntologyClass:RecordOffice2008405467522015-03-21T18:02:09Z{{Class +| labels = +{{label|en|Record Office}} +{{label|de|Amtsarchiv}} +{{label|nl|Archiefinstelling}} +| rdfs:subClassOf = Non-ProfitOrganisation +}}OntologyClass:Referee2004787509042016-04-19T11:49:55Z{{Class +|labels = + {{label|en|referee}} +{{label|ga|réiteoir}} + {{label|el|διαιτητής}} + {{label|es|árbitro}} + {{label|nl|scheidsrechter}} + {{label|de|schiedsrichter}} + {{label|it|arbitro}} + {{label|fr|arbitre}} + {{label|ja|審判員}} + +| rdfs:subClassOf = Person +| comments = + {{comment|en|An official who watches a game or match closely to ensure that the rules are adhered to.}} +}}OntologyClass:Reference20011278567832022-02-28T21:07:28Z{{Class +| labels = +{{label|en|Reference}} +{{label|fr|Référence}} +{{label|el|αναφορά}} +{{label|de|Referenz}} +{{label|nl|Verwijzing}} +{{label|ja|参考文献}} +| comments = +{{comment|en|Reference to a work (book, movie, website) providing info about the subject}} +{{comment|fr|Référence à un travail (livre, film, site web), fournissant des informations sur le sujet}} +{{comment|nl|Verwijzing naar een plaats in een boek of film}} +| rdfs:subClassOf = Annotation +}}OntologyClass:Regency2006772509062016-04-19T11:52:13Z{{Class +| labels = +{{label|en|regency}} +{{label|nl|regentschap (regering)}} +{{label|el|αντιβασιλεία}} +{{label|de|Regentschaft}} +{{label|id|kabupaten}} +{{label|ja|摂政}} + +| comments = +{{comment|id|bagian wilayah administratif dibawah provinsi}} +| rdfs:subClassOf = GovernmentalAdministrativeRegion +}}OntologyClass:Region2007221549402021-09-09T08:47:15Z{{Class +| labels = +{{label|en|region}} +{{label|ga|réigiún}} +{{label|fr|région}} +{{label|el|περιοχή}} +{{label|de|Region}} +{{label|nl|regio}} +{{label|ja|地域}} +{{label|ur|علاقہ}} +| rdfs:subClassOf = PopulatedPlace +| owl:equivalentClass = wikidata:Q3455524 +}}OntologyClass:Reign20011941527092017-12-27T14:25:40Z{{Class +|labels= +{{label|en|reign}} +{{label|nl|regentschap}} +{{label|de|Regentschaft}} +{{label|fr|règne}} +| rdfs:subClassOf = TimePeriod +}}OntologyClass:Relationship20011767566892022-02-28T10:45:27Z{{Class +| labels = +{{label|en|Relationship}} +{{label|fr|Relation}} +{{label|ru|Отношение}} +| rdfs:subClassOf = owl:Thing +}}OntologyClass:Religious2006195585132022-05-14T19:30:58Z{{Class +| labels = {{label|en|religious}} +{{label|ur|مذہبی}} +{{label|de|religiös}} +{{label|fr|religieux}} +{{label|el|θρησκευτικός}} +{{label|nl|religieus}} +| rdfs:subClassOf = Person +| owl:equivalentClass = wikidata:Q2566598 +}}OntologyClass:ReligiousBuilding2005768576752022-04-25T11:03:07Z{{Class +|labels = + {{label|en|religious building}} + {{label|el|θρησκευτικό κτίριο}} +{{label|da|religiøs bygning}} + {{label|ur|مذہبی عمارت}} + +{{label|de|religiöses Gebäude}} + {{label|it|edificio religioso}} + {{label|ja|宗教建築}} + {{label|fr|édifice religieux}} + {{label|es|edificio religioso}} + {{label|nl|cultusgebouw}} + {{label|ko|종교 건물}} +| comments = +|{{comment|en|An establishment or her location where a group of people (a congregation) comes to perform acts of religious study, honor, or devotion.<ref>http://en.wikipedia.org/wiki/Religious_building</ref>}} +|{{comment|ur|ایک اسٹیبلشمنٹ یا اس کا مقام جہاں لوگوں کا ایک گروپ (ایک جماعت) مذہبی مطالعہ، عزت، یا عقیدت کے اعمال انجام دینے آتا ہے۔}} +| rdfs:subClassOf = Building +| owl:equivalentClass = wikidata:Q1370598 +}} +==References== +<references/>OntologyClass:ReligiousOrganisation20010298575312022-04-24T12:13:20Z{{Class +| labels = + {{label|en|religious organisation}} + {{label|de|Religionsorganisation}} + {{label|nl|kerkelijke organisatie}} + {{label|fr|organisation religieuse}} +{{label|es|organización religiosa}} +{{label|ur|مذہبی تنظیم}} +| comments = + {{comment|en|Formal organisation or organised group of believers}} + {{comment|ur|باضابطہ تنظیم یا مومنین کا منظم گروپ}} + {{comment|fr|Organisation formelle ou groupe organisé de croyants}} +| rdfs:subClassOf = Organisation +| owl:disjointWith = Person +| owl:disjointWith = wgs84_pos:SpatialThing +}}OntologyClass:Reptile200447481472015-05-25T15:15:58Z{{Class +| labels = +{{label|en|reptile}} +{{label|ga|reiptíl}} +{{label|de|reptil}} +{{label|el|ερπετό}} +{{label|fr|reptile}} +{{label|ja|爬虫類}} +{{label|nl|reptiel}} +| rdfs:subClassOf = Animal +}}OntologyClass:ResearchProject2003040479882015-05-25T14:59:33Z{{Class +|labels= +{{label|en|research project}} +{{label|ga|tionscadal taighde}} +{{label|de|Forschungsprojekt}} +{{label|el|ερευνητικό έργο}} +{{label|es|proyecto de investigación}} +{{label|fr|projet de recherche}} +{{label|nl|onderzoeksproject}} +| rdfs:subClassOf = Project +|comments= +{{comment|en|A research project is a scientific investigation, usually using scientific methods, to achieve defined objectives.}} +{{comment|el|Ένα ερευνητικό έργο είναι μια επιστημονική έρευνα, συνήθως με τη χρήση επιστημονικών μεθόδων, για την επίτευξη των καθορισμένων στόχων.}} +| owl:equivalentClass = wikidata:Q1298668 +}}OntologyClass:RestArea20011139569132022-03-02T20:04:52Z{{Class +| labels = + {{label|en|rest area}} + {{label|fr|aire de repos}} + {{label|nl|rustplaats}} + {{label|de|Rasthof}} +| comments = + {{comment|en|A rest area is part of a Road, meant to stop and rest. More often than not, there is a filling station}} + {{comment|fr|Une aire de repos fait partie d'une route, destinée à s'arrêter et à se reposer. Le plus souvent, il y a une station-service}} +| rdfs:subClassOf = Infrastructure +}}OntologyClass:Restaurant2002523474842015-04-01T19:15:07Z{{Class +| labels = +{{label|en|restaurant}} +{{label|de|Restaurant}} +{{label|el|εστιατόριο}} +{{label|fr|restaurant}} +{{label|ga|bialann}} +{{label|ja|レストラン}} +{{label|nl|restaurant}} +{{label|pl|restauracja}} +| rdfs:subClassOf = Building +| owl:equivalentClass = schema:Restaurant, wikidata:Q11707 +}}OntologyClass:Resume2007167573982022-04-03T08:50:18Z{{Class +| labels = + {{label|en|Resume}} + {{label|fr|curriculum vitae}} + {{label|de|Lebenslauf}} + {{label|el|Βιογραφικό σημείωμα}} + {{label|nl|CV}} + {{label|ja|職務経歴書}} +| comments = + {{comment|en|A Resume describes a persons work experience and skill set.}} + {{comment|fr|Un curriculum vitae (CV) résume l'expérience d'une personne dans le travail ainsi que ses compétences.}} + {{comment|nl|Een CV (curriculum vitae) beschrijft iemands werkervaring en vaardigheden.}} +| rdfs:subClassOf = WrittenWork +}}OntologyClass:River2002286498502015-12-17T20:24:34Z{{Class +| labels = +{{label|en|river}} +{{label|ga|abhainn}} +{{label|nl|rivier}} +{{label|el|ποτάμι}} +{{label|de|Fluss}} +{{label|fr|rivière}} +{{label|pt|rio}} +{{label|ko|강}} +{{label|ja|川}} +| comments = +{{comment|en|a large natural stream}} +| rdfs:subClassOf = Stream +| owl:equivalentClass = schema:RiverBodyOfWater, wikidata:Q4022 +}}OntologyClass:Road200449588762022-06-20T14:14:13Z{{Class +| labels = +{{label|en|road}} +{{label|ur|سڑک}} +{{label|ca|carretera}} +{{label|de|Straße}} +{{label|el|δρόμος}} +{{label|es|carretera}} +{{label|fr|route}} +{{label|ga|bóthar}} +{{label|ja|道路}} +{{label|ko|도로}} +{{label|nl|weg}} +{{label|pl|droga}} +| rdfs:subClassOf = RouteOfTransportation +| owl:equivalentClass = wikidata:Q34442 +}}OntologyClass:RoadJunction2003380567662022-02-28T17:49:37Z{{Class +| labels = + {{label|en|road junction}} + {{label|ga|acomhal bóithre}} + {{label|de|Straßenkreuzung}} + {{label|nl|wegkruising}} + {{label|fr|carrefour}} +| comments = + {{comment|en|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).}} + {{comment|fr|Un carrefour est un endroit où le trafic automobile allant dans différentes directions, peut se réaliser d'une manière contrôlée conçue pour minimiser les accidents. Dans certains cas, les véhicules peuvent changer de route ou la direction de leur parcours (http://en.wikipedia.org/wiki/Junction_%28road%29).}} + {{comment|de|Eine Straßenkreuzung ist eine Stelle, an der sich zwei oder mehrere Straßen kreuzen (http://de.wikipedia.org/wiki/Stra%C3%9Fenkreuzung).}} +| rdfs:subClassOf = RouteOfTransportation +}}OntologyClass:RoadTunnel2003390574012022-04-03T08:59:19Z{{Class +| labels = + {{label|en|road tunnel}} + {{label|fr|tunnel routier}} + {{label|ga|tollán bóthair}} + {{label|el|Οδική σήραγγα}} + {{label|de|Straßentunnel}} + {{label|nl|wegtunnel}} +| rdfs:subClassOf = RouteOfTransportation +| owl:equivalentClass = wikidata:Q2354973 +}}OntologyClass:Robot20012190566852022-02-28T10:35:36Z{{Class +| labels = +{{label|en|Robot}} +{{label|fr|Robot}} +{{label|nl|Robot}} +{{label|ru|Робота}} +| rdfs:subClassOf = Device +}}OntologyClass:Rocket200450481492015-05-25T15:16:07Z{{Class +| labels = +{{label|en|rocket}} +{{label|ga|roicéad}} +{{label|el|πύραυλος}} +{{label|de|Rakete}} +{{label|fr|fusée}} +{{label|ko|로켓}} +{{label|ja|ロケット}} +{{label|nl|raket}} +| rdfs:subClassOf = MeanOfTransportation +| specificProperties = {{SpecificProperty | ontologyProperty = mass | unit = kilogram }} + {{SpecificProperty | ontologyProperty = lowerEarthOrbitPayload | unit = kilogram }} +| owl:equivalentClass = wikidata:Q41291 +}}OntologyClass:RocketEngine20011127468552015-03-22T10:05:26Z{{Class +| labels = +{{label|en|rocket engine}} +{{label|nl|raketmotor}} +{{label|de|Raketmotor}} +| rdfs:subClassOf = Engine +}}OntologyClass:RollerCoaster2008004479402015-05-25T14:54:30Z{{Class +| labels = +{{label|de|Achterbahn}} +{{label|en|roller coaster}} +{{label|ga|rollchóstóir}} +{{label|it|montagne russe}} +{{label|nl|achtbaan}} +{{label|el|τρενάκι σε λούνα παρκ}} +| rdfs:subClassOf = AmusementParkAttraction +}}OntologyClass:RomanEmperor2007634511292016-05-29T20:10:37Z{{Class +| labels= +{{label|en|roman emperor}} +{{label|de|römischer Kaiser}} +{{label|el|ρωμαίος αυτοκράτορας}} +{{label|fr|empereur romain}} +{{label|nl|Romeinse keizer}} +| rdfs:subClassOf = Person +| owl:equivalentClass = wikidata:Q842606 +}}OntologyClass:RouteOfTransportation2003256553712021-09-11T19:28:13Z{{Class +| labels = +{{label|en|route of transportation}} +{{label|de|Transportweg}} +{{label|es|Vía de transporte}} +{{label|ur|نقل و حمل کا راستہ}} +| comments = +{{comment|en|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).}} +{{comment|ur|نقل و حمل کا ایک راستہ (مکمل راستہ) ایک عام سڑک ، شاہراہ ، راستہ یا راستے پر پانی سے ایک جگہ سے دوسری جگہ پر جانے کا حوالہ دے سکتا ہے}} + +{{comment|de|Unter Transportwegen (Verkehrswegen) versteht man Verkehrswege, auf denen Güter oder Personen transportiert werden. Dabei unterscheidet man zwischen Transportwegen zu Luft, zu Wasser und zu Lande, die dann für die unterschiedliche Verkehrsarten genutzt werden (http://de.wikipedia.org/wiki/Transportweg).}} +| rdfs:subClassOf = Infrastructure +}}OntologyClass:RouteStop20011076531802018-08-19T09:57:44Z{{Class +| labels = + {{label|en|route stop}} + {{label|nl|halte}} + {{label|de|Haltestelle}} + {{label|fr|étape}} +| comments = + {{comment|en|designated place where vehicles stop for passengers to board or alight}} + {{comment|de|Betriebsstelle im öffentlichen Verkehr, an denen Fahrgäste ein- und aussteigen}} + {{comment|fr|une étape ou un arrêt sur une route}} +| rdfs:subClassOf = Station +}}OntologyClass:Rower2008382509102016-04-19T11:57:35Z{{Class +| labels = +{{label|en|rower}} +{{label|ga|rámhaí}} +{{label|el|κωπηλάτης}} +{{label|de|Ruderer}} +{{label|it|canottiere}} +{{label|nl|roeier}} +{{label|ja|漕艇選手}} +| rdfs:subClassOf = Athlete +| owl:equivalentClass = wikidata:Q13382576 +}}OntologyClass:Royalty2004211581222022-05-11T18:53:09Z{{Class +| labels = +{{label|en|royalty}} +{{label|de|Königtum}} +{{label|el|γαλαζοαίματος}} +{{label|es|realeza}} +{{label|fr|royauté}} +{{label|sl|kraljevska oseba}} +{{label|ja|王室}} +{{label|nl|lid koningshuis}} +{{label|ko|왕족}} +{{label|ur|شاہی}} +| rdfs:subClassOf = Person +}}OntologyClass:RugbyClub2005229530182018-03-14T11:44:29Z{{Class +| labels = +{{label|en|rugby club}} +{{label|ga|club rugbaí}} +{{label|el|ομάδα ράγκμπι}} +{{label|de|Rugby-Club}} +{{label|fr|club de rugby}} +{{label|nl|rugby club}} +| rdfs:subClassOf = SportsClub +}}OntologyClass:RugbyLeague2002184481522015-05-25T15:16:34Z{{Class +| labels = +{{label|en|rugby league}} +{{label|ga|sraith rugbaí}} +{{label|de|Rugby-Liga}} +{{label|el|πρωτάθλημα rugby}} +{{label|fr|ligue de rugby}} +{{label|nl|rugby competitie}} +| comments = +{{comment|en|A group of sports teams that compete against each other in rugby.}} +| rdfs:subClassOf = SportsLeague +| owl:equivalentClass = wikidata:Q10962 +}}OntologyClass:RugbyPlayer200451481532015-05-25T15:16:38Z{{Class +|labels= +{{label|en|rugby player}} +{{label|ga|imreoir rugbaí}} +{{label|de|Rugbyspieler}} +{{label|el|παίκτης rugby}} +{{label|fr|joueur de rugby}} +{{label|nl|rugbyspeler}} +| rdfs:subClassOf = Athlete +| owl:equivalentClass = wikidata:Q13415036 +}}OntologyClass:Sailor20013559563862022-02-16T16:40:41Z{{Class +| labels = + {{label|en|Sailor}} + {{label|eu|Marinela}} + {{label|da|Sømand}} + {{label|fr|Navigatrice}} + {{label|hi|नाविक}} + {{label|ar|بحار}} +{{label|ur|ملاح}} +| rdfs:subClassOf = Athlete +}}OntologyClass:Saint200452564362022-02-17T04:17:19Z{{Class +| labels = +{{label|en|saint}} +{{label|ga|naomh}} +{{label|de|Heilige}} +{{label|nl|heilige}} +{{label|fr|saint}} +{{label|ko|성인}} +{{label|ja|聖人}} +{{label|ur| ولی}} +{{label|el|Πληροφορίες Αγίου}} +| rdfs:subClassOf = Cleric +| owl:equivalentClass = wikidata:Q43115 +}}OntologyClass:Sales200453565212022-02-17T11:46:10Z{{Class +| labels = + {{label|en|sales}} +{{label|ur|فروخت}} + {{label|ga|díolacháin}} + {{label|nl|verkoop}} + {{label|de|Vertrieb}} + {{label|el|εκπτώσεις}} + {{label|fr|vente}} + {{label|ja|販売}} +| rdfs:subClassOf = Activity +| owl:equivalentClass = wikidata:Q194189 +}}OntologyClass:SambaSchool2005701566902022-02-28T10:46:52Z{{Class +| labels = +{{label|en| samba school}} +{{label|de|Sambaschule}} +{{label|es| escuela de samba}} +{{label|fr|école de samba}} +{{label|el|σχολή σάμπα}} +{{label|nl| samba school}} +{{label|pt | escola de samba}} +{{label|ur| برازیلی رقص سکول}} +| rdfs:subClassOf = Organisation +}}OntologyClass:Satellite2009369553402021-09-11T18:27:29Z{{Class +| labels = +{{label|en|Satellite}} +{{label|fr|satellite}} +{{label|ga|satailít}} +{{label|nl|satelliet}} +{{label|de|Satellite}} +{{label|el|δορυφόρος}} +{{label|ur|ثانوی سیاره}} + +| comments = +{{comment|en|An astronomic object orbiting around a planet or star. Definition partly derived from http://www.ontotext.com/proton/protonext# (and thus WordNet 1.7).}} +{{comment|ur|ایک فلکیاتی شے جو کسی سیارے یا ستارے کے گرد چکر لگاتی ہے}} +{{comment|el|Ένα αστρονομικό αντικείμενο που βρίσκεται σε τροχιά γύρω από έναν πλανήτη ή αστέρι.}} +| rdfs:subClassOf = CelestialBody +<!-- | owl:equivalentClass = http://www.ontotext.com/proton/protonext#Satellite --> +}}OntologyClass:School200636565192022-02-17T11:43:10Z{{Class +| labels = +{{label|en|school}} +{{label|ur|مدرسه}} +{{label|da|skole}} +{{label|de|Schule}} +{{label|el|σχολείο}} +{{label|es|escuela}} +{{label|fr|école}} +{{label|ga|scoil}} +{{label|it|scuola}} +{{label|ja|学校}} +{{label|ko|학교}} +{{label|nl|school}} +{{label|pl|szkoła}} +{{label|pt|escola}} +| rdfs:subClassOf = EducationalInstitution +| owl:equivalentClass = schema:School, wikidata:Q3914 +| specificProperties = + {{SpecificProperty | ontologyProperty = campusSize | unit = squareKilometre }} +}}OntologyClass:ScientificConcept2009719566882022-02-28T10:44:08Z{{Class +| labels = {{label|en|Scientific concept}} + {{label|de|wissenschaftliche Theorie}} + {{label|fr|concept scientifique}} + {{label|nl|wetenschappelijke theorie}} + {{label|ur|سائنسی تصور}} +| comments = {{comment|en|Scientific concepts, e.g. Theory of relativity, Quantum gravity}} + {{comment|fr|Concepts scientifiques tels que la théorie de la relativité, la gravité quantique}} + {{comment|ur|سائنسی تصورات، جیسے نظریہ اضافیت، کوانٹم کشش ثقل}} +| rdfs:subClassOf = TopicalConcept +}}OntologyClass:Scientist200454552762021-09-11T06:18:18Z{{Class +| labels = +{{label|en|scientist}} +{{label|ga|eolaí}} +{{label|nl|wetenschapper}} +{{label|el|Επιστήμονας}} +{{label|de|Wissenschaftler}} +{{label|fr|scientifique}} +{{label|ko|과학자}} +{{label|bn|বিজ্ঞানী}} +{{label|ja|科学者}} +{{label|ur|سائنسدان}} +| rdfs:subClassOf = Person +| owl:equivalentClass = wikidata:Q901 +}}OntologyClass:ScreenWriter2008344565172022-02-17T11:40:32Z{{Class +| labels = +{{label|en|screenwriter}} +{{label|ur|قلم کار}} +{{label|ga|scríbhneoir scáileáin}} +{{label|fr|scénariste}} +{{label|de|Drehbuchautor}} +{{label|el|σεναριογράφος}} +{{label|it|sceneggiatore}} +{{label|nl|scenarioschrijver}} +| comments = +{{comment|el|Ο σεναριογράφος όχι μόνο γράφει την υπόθεση μιας σειράς άλλα είναι αυτός που επινοεί και τους πρωταγωνιστές του έργου.}} +{{comment|ur|قلم کار نہ صرف سیریز کا پلاٹ لکھتا ہے بلکہ ڈرامے کے مرکزی کرداروں کو ایجاد کرنے والا بھی ہوتا ہے}} +| rdfs:subClassOf = Writer +| owl:equivalentClass = wikidata:Q28389 +}}OntologyClass:Sculptor2006462563932022-02-16T16:57:27Z{{Class +| labels = +{{label|en|sculptor}} +{{label|ga|dealbhóir}} +{{label|el|γλύπτης}} +{{label|de|Bildhauer}} +{{label|fr|sculpteur}} +{{label|nl|beeldhouwer}} +{{label|ja|彫刻家}} +{{label|ur|مجسمہ ساز}} +| rdfs:subClassOf = Artist +}}OntologyClass:Sculpture2002683564382022-02-17T04:23:15Z{{Class +|labels= +{{label|en|Sculpture}} +{{label|de|Skulptur}} +{{label|it|scultura}} +{{label|el|Γλυπτική}} +{{label|fr|sculpture}} +{{label|nl|beeldhouwwerk}} +{{label|ja|彫刻}} +{{label|ur|مجسمہ}} + +| rdfs:subClassOf = Artwork +| owl:equivalentClass = schema:Sculpture +|comments= +{{comment|en|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.}} +{{comment|el|Γλυπτική είναι τρισδιάστατο έργο τέχνης το οποίο δημιουργήθηκε από τη διαμόρφωση ή συνδυάζοντας σκληρά υλικά, τυπικώς πέτρα όπως μάρμαρο, μέταλλο, γυαλί, ή ξύλο, ή πλαστικά υλικά όπως άργιλος, υφάσματα, πολυμερή και μαλακότερα μέταλλα.}} +{{comment|nl|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.}} +{{comment|ur|مجسمہ تین جہتی فَن کا کام ہے جو سخت مواد کی تشکیل یا امتزاج سے بنایا گیا ہے، عام طور پر پتھر جیسے سنگ مرمر، دھات، شیشہ، یا لکڑی، یا پلاسٹک کے مواد جیسے مٹی، ٹیکسٹائل، پولیمر اور نرم دھات۔}} + +}}OntologyClass:Sea2006754569562022-03-09T08:56:49Z{{Class +|labels = +{{label|en|sea}} +{{label|ur|سمندر}} +{{label|ga|farraige}} +{{label|el|θάλασσα}} +{{label|fr|mer}} +{{label|de|Meer}} +{{label|nl|zee}} +{{label|pt|mar}} +{{label|ja|海}} +|comments = + {{comment|ur|نمکین پانی کا ایک جسم جو سیارے کے ہائیڈروسفیئر کا زیادہ تر حصہ بناتا ہے۔ }} + {{comment|fr|Masse d'eau salée qui constitue la majeure partie de l'hydrosphère de la planète.}} +| rdfs:subClassOf = BodyOfWater +| owl:equivalentClass = schema:SeaBodyOfWater +}}OntologyClass:Senator200455563952022-02-16T17:00:53Z{{Class +| labels = +{{label|en|senator}} +{{label|ga|seanadóir}} +{{label|de|Senator}} +{{label|el| γερουσιαστής}} +{{label|fr|sénateur}} +{{label|es|senador}} +{{label|nl|senator}} +{{label|ja|上院議員}} +{{label|ur|سینیٹ کا رُکن}} +| rdfs:subClassOf = Politician +}}OntologyClass:SerialKiller2008089564442022-02-17T04:41:04Z{{Class +| labels = +{{label|en|serial killer}} +{{label|de|Serienmörder}} +{{label|el|κατά συρροήν δολοφόνος}} +{{label|nl|seriemoordenaar}} +{{label|fr|tueur en série}} +{{label|ur|سلسلہ وار قاتل}} +| rdfs:subClassOf = Murderer +| owl:equivalentClass = wikidata:Q484188 +}}OntologyClass:Settlement200412552602021-09-10T21:01:40Z{{Class +| labels = +{{label|en|settlement}} +{{label|ga|bardas}} +{{label|de|Siedlung}} +{{label|nl|nederzetting}} +{{label|fr|zone peuplée}} +{{label|el|οικισμός}} +{{label|ja|居住地}} +{{label|ur|بستی}} +| rdfs:subClassOf = PopulatedPlace +| owl:equivalentClass = wikidata:Q486972 +}}OntologyClass:Ship200456563972022-02-16T17:04:08Z{{Class +| labels = +{{label|en|ship}} +{{label|ga|árthach}} +{{label|de|Schiff}} +{{label|el|πλοίο}} +{{label|fr|navire}} +{{label|pl|statek}} +{{label|es|barco}} +{{label|ko|배}} +{{label|ja|舩}} +{{label|nl|schip}} +{{label|ur|جہاز}} +| rdfs:subClassOf = MeanOfTransportation, schema:Product +| owl:equivalentClass = wikidata:Q11446 +}} +<!-- -->OntologyClass:ShoppingMall200457564482022-02-17T04:46:04Z{{Class +|labels= +{{label|en|shopping mall}} +{{label|ga|ionad siopadóireachta}} +{{label|de|Einkaufszentrum}} +{{label|el|εμπορικό κέντρο}} +{{label|ja|ショッピングモール}} +{{label|fr|centre commercial}} +{{label|nl|winkelcentrum}} +{{label|pt|shopping}} +{{label|ko|쇼핑몰}} +{{label|ur|خریداری کرنے کے لیے مختص جگہ}} +| rdfs:subClassOf = Building +| owl:equivalentClass = schema:ShoppingCenter, wikidata:Q11315 +}}OntologyClass:Shrine2006662565102022-02-17T11:29:27Z{{Class +| labels = +{{label|en|shrine}} +{{label|ur|مزار}} +{{label|el|βωμός}} +{{label|de|schrein}} +{{label|it|santuario}} +{{label|ja|神社}} +{{label|nl|heiligdom}} +{{label|fr|sanctuaire}} + +| rdfs:subClassOf = ReligiousBuilding +| owl:equivalentClass = wikidata:Q697295 +}}OntologyClass:Singer2009427571212022-03-12T22:29:35Z{{Class +| labels = {{label|en|Singer}} +{{label|ga|amhránaí}} +{{label|de|Sänger}} +{{label|el|Τραγουδιστής}} +{{label|fr|chanteur}} +{{label|nl|zanger}} +{{label|ja|歌手}} +{{label|ur|گلوکار}} +| comments = + {{comment|en|a person who sings.}} + {{comment|fr|Tout chanteur(euse) (incluant soliste et choriste, interprète, chanteur-instrumentaliste, etc). Tout artiste solo qui compose et/ou fait partie d'un groupe.}} + {{comment|el|ένα άτομο που τραγουδά.}} + {{comment|ur|ایک شخص جو گاتا ہے}} +| rdfs:subClassOf = MusicalArtist +| owl:equivalentClass = wikidata:Q177220 +}}OntologyClass:Single200458570672022-03-10T09:34:21Z{{Class +| labels = +{{label|en|single}} +{{label|ga|singil}} +{{label|de|Single}} +{{label|fr|single}} +{{label|el|single}} +{{label|ko|싱글}} +{{label|ja|シングル}} +{{label|nl|single}} +{{label|ur|سنگل}} +| comments = +{{comment|en|In music, a single or record single is a type of release, typically a recording of fewer tracks than an LP or a CD.}} +{{comment|fr|En musique, un single ou encore un disque 45 tours est un format de diffusion; c'est typiquement un enregistrement de quelques pistes dont le nombre est plus petit que pour un LP (un disque 33 tours) ou un CD.}} +{{comment|ur|موسیقی میں، سنگل یا ریکارڈ سنگل ریلیز کی ایک قسم ہے، عام طور پر ایل پی یا سی ڈی سے کم ٹریک کی ریکارڈنگ}} +| rdfs:subClassOf = MusicalWork +| owl:equivalentClass = wikidata:Q134556 +}}OntologyClass:SingleList20013826586762022-05-15T11:49:56Z{{Class +| labels = + {{label|en|single list}} + {{label|ur|ایک فہرست}} + {{label|fr|liste de singles}} +| comments = + {{comment|en|A list of singles}} +{{comment|ur|اِنفرادی فہرست}} + {{comment|fr|Liste de singles (disques 45 tours)}} +| rdfs:subClassOf = List +}}OntologyClass:SiteOfSpecialScientificInterest200459565082022-02-17T11:26:58Z{{Class +| labels = +{{label|en|Site of Special Scientific Interest}} +{{label|ur|خصوصی سائنسی دلچسپی کی سائٹ}} +{{label|ga|Láithreán Sainspéis Eolaíochta}} +{{label|de|wissenschaftliche Interessenvertretung für Denkmalschutz}} +{{label|el|Τοποθεσία Ειδικού Επιστημονικού Ενδιαφέροντος}} +{{label|fr|site d'intérêt scientifique particulier}} +{{label|ja|自然保護協会特別指定地区}} +{{label|nl|plaats met bijzonder wetenschappelijk belang}} +| comments = +{{comment|en|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.}} +{{comment|ur|خصوصی سائنسی دلچسپی کی سائٹ (SSSI) ایک تحفظ کا عہدہ ہے جو برطانیہ میں ایک محفوظ علاقے کی نشاندہی کرتا ہے۔ SSSIs سائٹ پر مبنی فطرت کے تحفظ سے متعلق قانون سازی کا بنیادی تعمیراتی حصہ ہیں اور برطانیہ میں بیشتر دیگر قانونی نوعیت/ارضیاتی تحفظ کے عہدہ ان پر مبنی ہیں، بشمول نیشنل نیچر ریزرو، رامسر سائٹس، خصوصی تحفظ کے علاقے، اور تحفظ کے خصوصی علاقے}} +| rdfs:subClassOf = Place +| owl:equivalentClass = wikidata:Q422211 +}}OntologyClass:Skater2007325564012022-02-16T17:21:02Z{{Class +| labels = +{{label|en|skater}} +{{label|ga|scátálaí}} +{{label|el|παγοδρόμος}} +{{label|de|Schlittschuhläufer}} +{{label|it|pattinatore}} +{{label|nl|schaatser}} +{{label|ja|スケート選手}} +{{label|ur|اسکیٹ کرنے والا}} +| rdfs:subClassOf = WinterSportPlayer +| owl:equivalentClass = wikidata:Q847400 +}}OntologyClass:SkiArea200460564522022-02-17T06:10:23Z{{Class +| labels = +{{label|en|ski area}} +{{label|ga|láthair sciála}} +{{label|de|Skigebiet}} +{{label|fr|domaine skiable}} +{{label|el|Περιοχή Χιονοδρομίας}} +{{label|ja|スキー場}} +{{label|ur|اسکی کاعلاقہ}} +| rdfs:subClassOf = SportFacility +| owl:equivalentClass = schema:SkiResort +}}OntologyClass:SkiResort2007184565062022-02-17T11:22:18Z{{Class +| labels = +{{label|en|ski resort}} +{{label|ur|پھسلن کھیل کا میدان}} +{{label|ga|baile sciála}} +{{label|el|θέρετρο σκι}} +{{label|de|Skigebiet}} +{{label|nl|skioord}} +{{label|fr|station de ski}} +| rdfs:subClassOf = SkiArea +| comments = +{{comment|el|Το θέρετρο σκι χρησιμοποιείται για να περιγράψει έναν τόπο διακοπών με τις απαραίτητες εγκαταστάσεις διαμονής και εξάσκησης του χειμερινού αθλήματος της χιονοδρομίας}} +{{comment|ur|پھسلن کھیل میدان کا استعمال چھٹیوں کے مقام کو بیان کرنے کے لیے کیا جاتا ہے جس میں قیام اور اسکیئنگ کے موسم سرما کے کھیل کی مشق کے لیے ضروری سہولیات موجود ہیں}} +| owl:equivalentClass = wikidata:Q130003 +}}OntologyClass:Ski jumper20011177564032022-02-16T17:34:34Z{{Class +| labels = +{{label|en|ski jumper}} +{{label|de|Skispringer}} +{{label|nl|skispringer}} + +{{label|ur|ہوا میں چھلانگ لگانے والا}} +| rdfs:subClassOf = WinterSportPlayer +<!-- | owl:equivalentClass = wikidata:Q15117302 --> +}}OntologyClass:Skier2006213564542022-02-17T06:12:21Z{{Class +| labels = {{label|en|skier}} +{{label|ga|sciálaí}} +{{label|fr|skieur}} +{{label|de|skifahrer}} +{{label|it|sciatore}} +{{label|el|σκιέρ}} +{{label|ja|スキーヤー}} +{{label|ur|اسکی باز}} +{{label|nl|skiër}} +| rdfs:subClassOf = WinterSportPlayer +| owl:equivalentClass = wikidata:Q4270517 +}}OntologyClass:Skos20014129586812022-05-15T11:58:29Z{{Class +| labels = + +{{label|en|Concept}} +{{label|ur|تصور}} +| rdfs:subClassOf = owl:Thing +}}OntologyClass:Skos:Concept2001626565042022-02-17T11:14:44Z{{Class +| labels = +{{label|en|Concept}} +{{label|ur|تصور}} +{{label|el|Έννοια}} +{{label|fr|Concept}} +{{label|de|Konzept}} +{{label|it|Concetto}} +{{label|ja|コンセプト}} +{{label|nl|concept}} +| rdfs:subClassOf = owl:Thing +}}OntologyClass:Skos:OrderedCollection2006328566622022-02-28T09:38:22Z{{Class +|rdfs:label@en = Ordered Collection +|rdfs:label@fr = Collection ordonnée +|rdfs:label@de = Ordered Collection +|rdfs:label@el = Διατεταγμένη Συλλογή +|rdfs:label@nl = Volgordelijke verzameling +|rdfs:label@ur = بیول :منظم شدہ مجموعہ +}}OntologyClass:Skyscraper200461564562022-02-17T06:14:01Z{{Class +| labels = +{{label|en|skyscraper}} +{{label|ga|ilstórach}} +{{label|nl|wolkenkrabber}} +{{label|el|ουρανοξύστης}} +{{label|fr|gratte-ciel}} +{{label|de|Wolkenkratzer}} +{{label|de|Hochhaus}} +{{label|ko|초고층 건물}} +{{label|ja|超高層建築物}} +{{label|ur|فلک بوس عمارت}} +| rdfs:subClassOf = Building +| owl:equivalentClass = wikidata:Q11303 +}}OntologyClass:SnookerChamp2003543565012022-02-17T11:06:38Z{{Class +| rdfs:label@en = snooker world champion +| rdfs:label@nl = wereldkampioen snooker +| rdfs:label@de = Snookerweltmeister +| rdfs:label@ga = curadh domhanda sa snúcar +| rdfs:comment@en = An athlete that plays snooker and won the world championship at least once +| rdfs:comment@de = Ein Sportler der Snooker spielt und mindestens einmal die Weltmeisterschaft gewonnen hat +|comments= +{{comment|ur|کھیلوں کی ٹیموں یا انفرادی کھلاڑیوں کا ایک گروہ جو ایک مخصوص کھیل میں ایک دوسرے کے خلاف مقابلہ کرتے ہیں}} +| rdfs:subClassOf = SnookerPlayer +| labels = +{{label|ur|سنوکر کا فاتح}} +}}OntologyClass:SnookerPlayer2003533565022022-02-17T11:10:54Z{{Class +| labels = +{{label|en|snooker player}} +{{label|ga|imreoir snúcair}} +{{label|de|Snookerspieler}} +{{label|nl|biljarter}} +{{label|ur|سنوکر کے کھلاڑی}} +| rdfs:comment@en = An athlete that plays snooker, which is a billard derivate +| rdfs:comment@de = Ein Sportler der Snooker spielt, eine bekannte Billardvariante +| comments = +{{comment|ur|ایک کھلاڑی جو سنوکر کھیلتا ہے، جو بلارڈ ڈیریویٹ ہے۔}} +| rdfs:subClassOf = Athlete +}}OntologyClass:SnookerWorldRanking2004220564722022-02-17T09:32:13Z{{Class +| labels = +{{label|en|snooker world ranking}} +{{label|ur|سنوکر کی عالمی درجہ بندی}} +{{label|de|Snookerweltrangliste}} +{{label|nl|wereldranglijst snooker}} +| comments = +{{comment|en|The official world ranking in snooker for a certain year/season}} +{{comment|ur|ایک مخصوص سال/سیزن کے لیے سنوکر میں آفیشل عالمی درجہ بندی}} +{{comment|de|Die offizielle Weltrangliste im Snooker eines Jahres / einer Saison}} +| rdfs:subClassOf = SportCompetitionResult <!-- dul:Role --> +}}OntologyClass:SoapCharacter2006096573362022-03-31T10:51:51Z{{Class +| labels = + {{label|en|soap character}} + {{label|fr|personnage de feuilleton}} + {{label|ur|سلسلہ وار ڈرامے کا کردار}} + {{label|ga|carachtar i sobaldráma}} + {{label|de|Soapoper Charakter}} + {{label|el|χαρακτήρας σαπουνόπερας}} + {{label|nl|soap karakter}} +| comments = + {{comment|en|Character of soap - radio or television serial frequently characterized by melodrama, ensemble casts, and sentimentality.}} + {{comment|fr|Personnage de feuilleton mélodramatique ou sentimental pour la radio ou la télévision.}} +| rdfs:subClassOf = FictionalCharacter +}}OntologyClass:SoccerClub200462586302022-05-15T08:34:07Z{{Class +| labels = +{{label|en|soccer club}} +{{label|ca|club de futbol}} +{{label|da|fodboldklub}} +{{label|de|Fußballverein}} +{{label|el|ομάδα ποδοσφαίρου}} +{{label|es|equipo de fútbol}} +{{label|fr|club de football}} +{{label|ga|club sacair}} +{{label|nl|voetbalclub}} +{{label|pl|klub piłkarski}} +{{label|ur|فٹ بال تنظیم}} +| rdfs:subClassOf = SportsClub + + +| owl:equivalentClass = wikidata:Q476028 +}}OntologyClass:SoccerClubSeason2005043564762022-02-17T09:45:15Z{{Class +| labels = +{{label|en|soccer club season}} +{{label|ur|فٹ بال کلب کا موسم}} +{{label|de|Fußballverein Saison}} +{{label|nl|voetbalseizoen}} +| rdfs:subClassOf = SportsTeamSeason +}}OntologyClass:SoccerLeague2002280564942022-02-17T10:35:04Z{{Class +| labels = +{{label|en|soccer league}} +{{label|ur|فٹ بال کی انجمن}} +{{label|ga|sraith sacair}} +{{label|de|Fußball Liga}} +{{label|el|Ομοσπονδία Ποδοσφαίρου}} +{{label|fr|ligue de football}} +{{label|nl|voetbal competitie}} +{{label|ja|サッカーリーグ}} +| comments = +{{comment|en|A group of sports teams that compete against each other in soccer.}} +{{comment|ur|کھیلوں کی ٹیموں کا ایک گروپ جو فٹ بال میں ایک دوسرے کے خلاف مقابلہ کرتا ہے۔}} +| rdfs:subClassOf = SportsLeague +}}OntologyClass:SoccerLeagueSeason2004571564132022-02-16T17:59:08Z{{Class +| labels = +{{label|en|soccer league season}} +{{label|de|Fußball-Liga Saison}} +{{label|el|περίοδος κυπέλλου ποδοσφαίρου}} +{{label|tr|futbol ligi sezonu}} +{{label|nl|voetbalseizoen}} +{{label|ur| انجمن فٹ بال موسم}} + +| rdfs:subClassOf = SportsTeamSeason +}}OntologyClass:SoccerManager200368564702022-02-17T06:34:50Z{{Class +| rdfs:label@en = soccer manager +| rdfs:label@ga = bainisteoir sacair +| rdfs:label@de = Fußballmanager +| rdfs:label@el = προπονητής ποδοσφαίρου +| rdfs:label@es = gerente de fútbol +| rdfs:label@fr = entraîneur de football +| rdfs:label@nl = voetbalmanager +| rdfs:label@ja = サッカーマネージャー +| rdfs:subClassOf = SportsManager +| owl:equivalentClass = wikidata:Q628099 + +|labels= +{{label|ur|فٹ بال منتظم}} +}}OntologyClass:SoccerPlayer200463564922022-02-17T10:27:32Z{{Class +| labels = +{{label|en|soccer player}} +{{label|ur|فٹبال کا کھلاڑی}} +{{label|ga|imreoir sacair}} +{{label|it|calciatore}} +{{label|da|fodboldspiller}} +{{label|de|Fußballspieler}} +{{label|nl|voetballer}} +{{label|el|παίχτης ποδοσφαίρου}} +{{label|fr|joueur de football}} +{{label|es|futbolista}} +{{label|ko|축구 선수}} +{{label|ja|サッカー選手}} +| rdfs:subClassOf = Athlete +| owl:equivalentClass = wikidata:Q937857 +}}OntologyClass:SoccerTournament2004577564152022-02-16T18:07:27Z{{Class +| labels = +{{label|en|soccer tournoment}} +{{label|ga|comórtas sacair}} +{{label|de|Fußballturnier}} +{{label|el|τουρνουά ποδοσφαίρου}} +{{label|pt|campeonato de futebol}} +{{label|tr|futbol turnuvası}} +{{label|nl|voetbal toernooi}} +{{label|ja|サッカートーナメント}} + {{label|ur|فٹ بال باہمی مقابلہ}} +| rdfs:subClassOf = Tournament +}}OntologyClass:SocietalEvent2008258579052022-05-05T11:04:49Z{{Class +| labels = +{{label|en|societal event}} +{{label|fr|évènement collectif}} +{{label|de|gesellschatliches Ereignis}} +{{label|nl|maatschappelijke gebeurtenis}} +{{label|ur| +معاشرتی واقعہ}} + + + +| comments = +{{comment|en|an event that is clearly different from strictly personal events}} +{{comment|ur|ایک ایسا واقعہ جو سختی سے ذاتی واقعات سے واضح طور پر مختلف ہو}} + + +| rdfs:subClassOf = Event +}}OntologyClass:SoftballLeague2002185587152022-05-15T13:30:35Z{{Class +| labels = +{{label|en|softball league}} +{{label|ga|sraith bogliathróide}} +{{label|de|Softball Liga}} +{{label|el|πρωτάθλημα σόφτμπολ}} +{{label|fr|ligue de softball}} +{{label|nl|softball competitie}} +{{label|ur|سافٹ بال انجمن}} +| comments = +{{comment|en|A group of sports teams that compete against each other in softball.}} +{{comment|ur|کھیلوں کی ٹیموں کا ایک گروپ جو سافٹ بال میں ایک دوسرے سے مقابلہ کرتا ہے}} +{{comment|el|Ομάδες που ανταγωνίζονται στο αγώνισμα του σόφτμπολ.}} +| rdfs:subClassOf = SportsLeague +}}OntologyClass:Software200464564172022-02-16T18:11:40Z{{Class +| labels = +{{label|en|software}} +{{label|ga|bogearraí}} +{{label|nl|software}} +{{label|da|software}} +{{label|de|Software}} +{{label|fr|logiciel}} +{{label|pt|logiciário}} +{{label|el|λογισμικό}} +{{label|sl|programska oprema}} +{{label|ko|소프트웨어}} +{{label|ja|ソフトウェア}} +{{label|ur|تحریری پروگراموں کا مجموعہ}} +| rdfs:subClassOf = Work +| specificProperties = {{SpecificProperty | ontologyProperty = fileSize | unit = megabyte }} +| owl:equivalentClass = wikidata:Q7397 +}}OntologyClass:SolarEclipse2008702564672022-02-17T06:29:07Z{{Class +| labels = +{{label|en|solar eclipse}} +{{label|ga|urú na gréine}} +{{label|fr|éclipse de soleil}} +{{label|el|έκλειψη ηλίου}} +{{label|de|Sonnenfinsternis}} +{{label|it|eclissi solare}} +{{label|nl|zonsverduistering}} +{{label|ur|سورج گرہن}} +| rdfs:subClassOf = NaturalEvent +| comments = +{{comment|el|Έκλειψη ηλίου ονομάζεται το φαινόμενο κατά το οποίο η Σελήνη παρεμβάλλεται ανάμεσα στον Ήλιο και τη Γη, με αποτέλεσμα ορισμένες περιοχές της Γης να δέχονται λιγότερο φως από ό,τι συνήθως.}} +{{comment|ur|سورج گرہن ایک ایسا واقعہ ہے جس میں چاند سورج اور زمین کے درمیان مداخلت کرتا ہے، جس کی وجہ سے زمین کے کچھ علاقوں کو معمول سے کم روشنی ملتی ہے}} +| owl:equivalentClass = wikidata:Q3887 +}}OntologyClass:Song200465556582021-09-17T06:49:18Z{{Class +| labels = +{{label|en|song}} +{{label|ga|amhrán}} +{{label|nl|lied}} +{{label|fr|chanson}} +{{label|it|canzone}} +{{label|da|sang}} +{{label|de|lied}} +{{label|el|τραγούδι}} +{{label|ko|노래}} +{{label|ja|歌}} +{{label|ur|گانا}} + +| rdfs:subClassOf = MusicalWork, schema:MusicRecording +| owl:equivalentClass = +}}OntologyClass:SongWriter2009426564202022-02-16T18:17:16Z{{Class +| labels = +{{label|en|songwriter}} +{{label|da|sangskriver}} +{{label|de|Liedschreiber}} +{{label|nl|songwriter (tekstdichter)}} +{{label|fr|auteur-compositeur}} +{{label|ur|نغمہ نگار }} +| comments = +{{comment|en|a person who writes songs.}} +{{comment|nl|een persoon die de muziek en/of de tekst voor populaire muzieknummers schrijft.}} +{{comment|ur|ایک شخص جو گانے لکھتا ہے۔}} +| rdfs:subClassOf = Writer +| owl:equivalentClass = wikidata:Q753110 +}}OntologyClass:Sound2009576567092022-02-28T13:30:06Z{{Class +| labels = +{{label|en|sound}} +{{label|ga|fuaim}} +{{label|da|lyd}} +{{label|de|Lied}} +{{label|fr|audio}} +{{label|nl|geluid}} +{{label|el|ήχος}} +{{label|ja|音}} +{{label|ur|آواز}} +| comments = +{{comment|en|An audio document intended to be listened to; equivalent to http://purl.org/dc/dcmitype/Sound}} +{{comment|fr|Un document sonore à écouter; équivalent à http://purl.org/dc/dcmitype/Sound}} +{{comment|el|Μεταβολή στην πίεση του ατμοσφαιρικού αέρα που διεγείρει το αισθητήριο όργανο της ακοής μέσω ηχητικών κυμάτων}} +{{comment|ur|صوتی لہروں کے ذریعے سماعت کے حسی اعضاء سے محرک ہوا کے دباؤ میں تبدیلی}} +| rdfs:subClassOf = Document +}}OntologyClass:SpaceMission200467564882022-02-17T10:18:33Z{{Class +| labels = +{{label|en|space mission}} +{{label|ur|خلائی مہم}} +{{label|ga|misean spáís}} +{{label|de|Weltraummission}} +{{label|el|διαστημική αποστολή}} +{{label|fr|mission spatiale}} +{{label|es|misión espacial}} +{{label|ko|우주 임무}} +{{label|nl|ruimtemissie}} +| rdfs:subClassOf = SocietalEvent +| specificProperties = {{SpecificProperty | ontologyProperty = mass | unit = kilogram }} + {{SpecificProperty | ontologyProperty = cmpEvaDuration | unit = hour }} + {{SpecificProperty | ontologyProperty = stationEvaDuration | unit = hour }} + {{SpecificProperty | ontologyProperty = lunarSurfaceTime | unit = hour }} + {{SpecificProperty | ontologyProperty = missionDuration | unit = day }} + {{SpecificProperty | ontologyProperty = distanceTraveled | unit = kilometre }} + {{SpecificProperty | ontologyProperty = lunarOrbitTime | unit = hour }} + {{SpecificProperty | ontologyProperty = stationVisitDuration | unit = hour }} + {{SpecificProperty | ontologyProperty = lunarSampleMass | unit = kilogram }} + {{SpecificProperty | ontologyProperty = lunarEvaTime | unit = hour }} +| owl:equivalentClass = wikidata:Q2133344 +}}OntologyClass:SpaceShuttle200468564222022-02-16T18:20:09Z{{Class +| labels = +{{label|en|space shuttle}} +{{label|ga|spástointeáil}} +{{label|de|Raumfähre}} +{{label|fr|navette spatiale}} +{{label|el|διαστημικό λεωφορείο}} +{{label|ko|우주 왕복선}} +{{label|nl|ruimteveer}} +{{label|ur|خلائی جہاز}} +| rdfs:subClassOf = MeanOfTransportation +| specificProperties = {{SpecificProperty | ontologyProperty = timeInSpace | unit = day }} + {{SpecificProperty | ontologyProperty = distance | unit = kilometre }} +| owl:equivalentClass = wikidata:Q48806 +}}OntologyClass:SpaceStation200469564652022-02-17T06:26:53Z{{Class +| labels = +{{label|en|space station}} +{{label|ga|stáisiún spáis}} +{{label|el|διαστημικός σταθμός}} +{{label|de|Raumstation}} +{{label|fr|station spatiale}} +{{label|es|estación espacial}} +{{label|ko|우주 정거장}} +{{label|nl|ruimtestation}} +{{label|ur|خلائی اڈہ}} +| rdfs:subClassOf = MeanOfTransportation +| specificProperties = {{SpecificProperty | ontologyProperty = volume | unit = cubicMetre }} +| owl:equivalentClass = wikidata:Q25956 +}}OntologyClass:Spacecraft200466564872022-02-17T10:14:59Z{{Class +| labels = +{{label|en|spacecraft}} +{{label|ur|خلائی جہاز}} +{{label|ga|spásárthach}} +{{label|de|Raumfahrzeug}} +{{label|el|διαστημόπλοιο}} +{{label|fr|vaisseau spatial}} +{{label|ko|우주선}} +{{label|nl|ruimtevaartuig}} +{{label|ja|宇宙機}} +| rdfs:subClassOf = MeanOfTransportation +| specificProperties = + {{SpecificProperty | ontologyProperty = totalMass | unit = kilogram }} + {{SpecificProperty | ontologyProperty = apoapsis | unit = kilometre }} + {{SpecificProperty | ontologyProperty = dockedTime | unit = day }} + {{SpecificProperty | ontologyProperty = cargoFuel | unit = kilogram }} + {{SpecificProperty | ontologyProperty = cargoGas | unit = kilogram }} + {{SpecificProperty | ontologyProperty = dryCargo | unit = kilogram }} + {{SpecificProperty | ontologyProperty = periapsis | unit = kilometre }} + {{SpecificProperty | ontologyProperty = cargoWater | unit = kilogram }} + {{SpecificProperty | ontologyProperty = totalCargo | unit = kilogram }} + {{SpecificProperty | ontologyProperty = freeFlightTime | unit = day }} +| owl:equivalentClass = wikidata:Q40218 +}}OntologyClass:Species200470574752022-04-24T09:34:50Z{{Class +| labels = +{{label|en|species}} +{{label|ga|speiceas}} +{{label|es|especies}} +{{label|el|είδος}} +{{label|da|arter}} +{{label|de|Spezie}} +{{label|fr|espèces}} +{{label|ja|種_(分類学)}} +{{label|nl|soort}} +{{label|ur|قسم}} +| comments= +{{comment|ur|درجہ بندی کے نظام میں ایک زمرہ}} +{{comment|en|A category in the rating system}} +| rdfs:subClassOf = owl:Thing +<!-- dul:Organism --> +}}OntologyClass:SpeedSkater20011169564612022-02-17T06:21:36Z{{Class +| labels = +{{label|en|speed skater}} +{{label|de|Eisschnellläufer}} +{{label|nl|langebaanschaatser}} +{{label|ur|رفتار سکیٹر}} +| rdfs:subClassOf = WinterSportPlayer +|comments= +{{comment|ur|ایک آئس سکیٹر جو مسابقتی طور پر دوڑتا ہے۔ عام طور پر ایک اوول کورس کے ارد گرد}} +}}OntologyClass:SpeedwayLeague2002181564852022-02-17T10:12:47Z{{Class +| labels = +{{label|en|speedway league}} +{{label|ur|تیز راہ کی انجمن}} +{{label|de|Speedway Liga}} +{{label|el|πρωτάθλημα αυτοκινητοδρόμου}} +{{label|fr|ligue de speedway}} +{{label|nl|speedway competitie}} +| comments = +{{comment|en|A group of sports teams that compete against each other in motorcycle speedway racing.}} +{{comment|ur|کھیلوں کی ٹیموں کا ایک گروپ جو موٹرسائیکل سپیڈ وے ریسنگ میں ایک دوسرے سے مقابلہ کرتا ہے}} +| rdfs:subClassOf = SportsLeague +}}OntologyClass:SpeedwayRider2006199564242022-02-16T18:26:37Z{{Class +| labels = + {{label|en|speedway rider}} + {{label|de|Speedway Fahrer}} + {{label|nl|speedway rijder}} +{{label|ur|تیز راہ سوار}} +| rdfs:subClassOf = MotorcycleRider +}}OntologyClass:SpeedwayTeam2003643564342022-02-17T04:15:00Z{{Class +| labels = +{{label|en|speedway team}} +{{label|ga|foireann luasbhealaigh}} +{{label|nl|speedwayteam}} +{{label|de|Speedwayteam}} +{{label|pl|klub żużlowy}} +{{label|ur|سپیڈ وے ٹیم}} +| rdfs:subClassOf = SportsTeam +}}OntologyClass:Sport2002151555402021-09-15T05:26:10Z{{Class +| labels = + {{label|en|sport}} + {{label|ga|spórt}} + {{label|de|Sportart}} + {{label|nl|sport}} + {{label|el|Αθλήματα}} + {{label|fr|sport}} + {{label|es|Deporte}} + {{label|ko|스포츠}} + {{label|ja|スポーツ}} + {{label|pt|esporte}} + {{label|ru|Вид спорта}} +{{label|ur|کھیل}} +|comments = + {{comment|en|A sport is commonly defined as an organized, competitive, and skillful physical activity.}} +{{comment|ur|ایک ساختی سرگرمی ، جو عموما لطف اندوز ہونے کے لیے کی جاتی ہے اور بعض اوقات تعلیمی آلے کے طور پر استعمال ہوتی ہے۔ +.}} +| rdfs:subClassOf = Activity +| owl:equivalentClass = wikidata:Q349 +}}OntologyClass:SportCompetitionResult2006056563802022-02-16T14:55:36Z{{Class +| labels = + {{label|en|results of a sport competition}} + {{label|de|Ergebnisse eines Sportwettbewerbs}} + {{label|el|αποτελέσματα αθλητικού διαγωνισμού}} + {{label|fr|résultats d'une compétition sportive}} + {{label|es|resultados de una competición deportiva}} + {{label|nl|uitslag van een sport competitie}} + {{label|ur|کھیلوں کے مقابلے کا نتیجہ}} +| rdfs:subClassOf = +}}OntologyClass:SportFacility2005950553922021-09-11T20:18:58Z{{Class +| labels = +{{label|en|sport facility}} +{{label|de|Sportanlage}} +{{label|el|αθλητικές εγκαταστάσεις}} +{{label|fr|installation sportive}} +{{label|nl|sportfaciliteit}} +{{label|ur|کھیل کی سہولت}} +| rdfs:subClassOf = ArchitecturalStructure +}}OntologyClass:SportsClub20011256585002022-05-14T19:17:34Z{{Class +| labels = + {{label|en|sports club}} + {{label|fr|club de sport}} + {{label|de|Sportverein}} + {{label|nl|sportclub}} + {{label|ur|کھیلوں کی تنظیم}} +| rdfs:subClassOf = Organisation +}}OntologyClass:SportsEvent200471549902021-09-09T11:41:29Z{{Class +| labels = +{{label|de|Sportereignis}} +{{label|en|sports event}} +{{label|pt|evento esportivo}} +{{label|fr|évènement sportif}} +{{label|nl|sportevenement}} +{{label|ur|کھیلوں کی تقریب}} +| comments = +{{comment|en|a event of competitive physical activity}} +{{comment|ur|مقابلتی جسمانی سرگرمی کا ایک واقعہ}} +| rdfs:subClassOf = SocietalEvent +| owl:equivalentClass = schema:SportsEvent +}}OntologyClass:SportsLeague2002147550352021-09-09T13:03:05Z{{Class +| labels = +{{label|en|sports league}} +{{label|de|Sportliga}} +{{label|es|liga deportiva}} +{{label|el|Αθλητική Ομοσπονδία}} +{{label|fr|ligue sportive}} +{{label|ko|스포츠 리그}} +{{label|nl|sport competitie}} +{{label|ja|スポーツリーグ}} +{{label|ur|کھیلوں کی انجمن}} +| comments = +{{comment|en|A group of sports teams or individual athletes that compete against each other in a specific sport.}} +{{comment|ur|کھیلوں کی ٹیموں یا انفرادی کھلاڑیوں کا ایک گروہ جو ایک مخصوص کھیل میں ایک دوسرے کے خلاف مقابلہ کرتے ہیں۔}} +| rdfs:subClassOf = Organisation +| owl:equivalentClass = wikidata:Q623109 +}}OntologyClass:SportsManager2006326564792022-02-17T09:54:38Z{{Class +| labels = +{{label|en|sports manager}} +{{label|ur|کھیلوں کا منتظم}} +{{label|de|Sportmanager}} +{{label|el|αθλητικός μάνατζερ}} +{{label|es|director deportivo}} +{{label|nl|sportbestuurder}} +|comments= +{{comment|en| 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.}} +{{comment|ur|فرانسیسی لیبل سب ساکر کے مطابق، ٹرینر شپ کا مطلب ہو سکتا ہے۔ تاہم، یہاں ایک اسپورٹس مینیجر کو اسپورٹنگ کلب کے بورڈ کے رکن سے تعبیر کیا جاتا ہے}} +{{comment|el|Σύμφωνα με τη γαλλική ετικέτα Soccer,μπορεί να εννοείται ο προπονητής.Παρ'όλα αυτα,εδώ ένας αθλητικός μάνατζερ μεταφράζεται ως ένα μέλος συμβουλίου ενός αθλητικού κλαμπ.}} +| rdfs:subClassOf = Person +}}OntologyClass:SportsSeason2006088558912021-09-17T22:35:20Z{{Class +| labels = +{{label|en|sports season}} +{{label|de|Sportsaison}} +{{label|el|περίοδος αθλημάτων}} +{{label|nl|sportseizoen}} +{{label|ur|کھیلوں کا موسم}} +}}OntologyClass:SportsTeam200472584272022-05-14T16:07:40Z{{Class +| labels = +{{label|en|sports team}} +{{label|de|Sportmannschaft}} +{{label|nl|sportteam}} +{{label|el|ομαδικά αθλήματα}} +{{label|fr|équipe sportive}} +{{label|ja|スポーツチーム}} +{{label|ur|کھیل کی جماعت}} +| rdfs:subClassOf = Organisation +| owl:equivalentClass = schema:SportsTeam, wikidata:Q12973014 +}}OntologyClass:SportsTeamMember2005038566602022-02-28T09:33:26Z{{Class +| labels = +{{label|en|Sports team member}} +{{label|fr|membre d'équipe sportive}} +{{label|ur|کھیلوں کی جماعت کا رکن}} +{{label|el|μέλος αθλητικής ομάδας}} +{{label|nl|sport teamlid}} +{{label|de|Sport Team Mitglied}} +| comments = +{{comment|nl|lid van een athletisch team}} +{{comment|en|A member of an athletic team.}} +{{comment|ur|ایتھلیٹک ٹیم کا رکن}} +{{comment|el|Μέλος αθλητικής ομάδας.}} +| rdfs:subClassOf = OrganisationMember +}}OntologyClass:SportsTeamSeason2005045587362022-05-16T18:31:20Z{{Class +| labels = +{{label|en|sports team season}} +{{label|de|Sport Team Saison}} +{{label|el|περίοδος αθλητικής ομάδας}} +{{label|nl|sport seizoen}} +{{label|ur|کھیلوں کی جماعت کا موسم}} +| comments = +{{comment|en|A season for a particular sports team (as opposed to the season for the entire league that the team is in)}} +{{comment|el|μία περίοδος για μία αθλητική ομάδα }} +{{comment|ur|ایک خاص سپورٹس ٹیم کے لیے ایک موسم(جیسا کہ پوری لیگ کے موسم کے برعکس جس میں ٹیم ہے۔}} +| rdfs:subClassOf = SportsSeason +}}OntologyClass:Spreadsheet20012221567462022-02-28T16:18:19Z{{Class +| labels = + {{label|en|Spreadsheet}} + {{label|ru|Электронная таблица}} + {{label|ur|سپریڈ شیٹ}} + {{label|fr|tableur}} +|comments= + {{comment|ur|مرتب و شمار یا معلومات کو کام میں لانےوالاایک کمپیوٹر پروگرام}} + {{comment|fr|Programme informatique qui utilise des statistiques ou des informations}} +}}OntologyClass:Spy20013565565232022-02-17T12:02:27Z{{Class +| labels = + {{label|en|Spy}} + {{label|eu|espioi}} + {{label|da|spion}} + {{label|fr|espionner}} + {{label|hi|जासूस}} + {{label|ar|جاسوس}} + {{label|ur|جاسوس}} +| rdfs:subClassOf = Person +}}OntologyClass:Square2009406565252022-02-17T12:21:55Z{{Class +| labels = +{{label|en|square}} +{{label|ga|cearnóg}} +{{label|de|Platz}} +{{label|fr|place}} +{{label|nl|plein}} +{{label|ja|正方形}} +{{label|ur|چوکور}} +| rdfs:subClassOf = ArchitecturalStructure +| owl:equivalentClass = wikidata:Q174782 +}}OntologyClass:SquashPlayer2007321573172022-03-30T15:29:26Z{{Class +| labels = + {{label|en|squash player}} + {{label|fr|joueur de squash}} + {{label|de|Squashspieler}} + {{label|it|giocatore di squash}} + {{label|nl|squasher}} + {{label|ko|스쿼시 선수}} +| rdfs:subClassOf = Athlete +| owl:equivalentClass = wikidata:Q16278103 +}}OntologyClass:Stadium200473568352022-03-01T07:53:57Z{{Class +| labels = +{{label|en|stadium}} +{{label|ur|معروف کھیلوں کے لیے مَخصُوص جگہ}} +{{label|ga|staidiam}} +{{label|el|στάδιο}} +{{label|fr|stade}} +{{label|de|Stadion}} +{{label|ko|경기장}} +{{label|ja|スタジアム}} +{{label|nl|stadion}} +| rdfs:subClassOf = Venue, schema:StadiumOrArena +| owl:equivalentClass = +}}OntologyClass:Standard20011244567072022-02-28T13:24:28Z{{Class +| labels= +{{label|en|standard}} +{{label|fr|standard}} +{{label|nl|standaard}} +{{label|ja|規格}} +{{label|ur|معیاری}} +| comments= +{{comment|en|a common specification}} +{{comment|fr|une spécification commune}} +{{comment|ur|ایک عام تفصیل}} +| rdfs:subClassOf = TopicalConcept +}}OntologyClass:Star2006356552082021-09-10T18:06:21Z{{Class +| labels = +{{label|it|stella}} +{{label|en|star}} +{{label|ga|réalta}} +{{label|de|Stern}} +{{label|fr|étoile}} +{{label|el|αστέρι}} +{{label|nl|ster}} +{{label|ja|恒星}} +{{label|ko|항성}} +{{label|ur|ستارہ}} +| rdfs:subClassOf = CelestialBody +}}OntologyClass:StarCluster20012274568382022-03-01T08:02:08Z{{Class +|labels= + {{label|en|Star сluster}} +{{label|ur|ستارہ غول}} + {{label|ru|Звездное скопление}} +| owl:disjointWith = Person +| rdfs:subClassOf = owl:Thing +}}OntologyClass:State2007030565772022-02-18T04:03:35Z{{Class +| labels = +{{label|en|state}} +{{label|el|πολιτεία}} +{{label|de|Staat}} +{{label|fr|état}} +{{label|nl|staat}} +{{label|ja|州}} +{{label|ur|ریاست}} +| rdfs:subClassOf = PopulatedPlace +| owl:equivalentClass = wikidata:Q7275 +}}OntologyClass:StatedResolution2009126588492022-06-20T13:06:28Z{{Class +| labels = + {{label|en|Stated Resolution}} +{{label|ur|ریاستی قرارداد}} + {{label|fr|Résolution adoptée}} + {{label|de|Angenommen Beschluß}} + {{label|nl|Aangenomen Besluit}} +| comments = + {{comment|en|A Resolution describes a formal statement adopted by a meeting or convention.}} +{{comment|ur|ایک قرارداد میٹنگ یا کنونشن کے ذریعہ اختیار کردہ ایک رسمی بیان کی وضاحت کرتی ہے}} + {{comment|fr|Une résolution décrit une déclaration officielle adoptée par une réunion ou une convention.}} + {{comment|nl|Een Besluit of Verklaring beschrijft een formeel besluit of formele aanbeveling aangenomen door een vergadering.}} +| rdfs:subClassOf = WrittenWork +}}OntologyClass:Station200474568422022-03-01T08:15:12Z{{Class +| labels = + {{label|en|station}} +{{label|ga|stáisiún}} +{{label|ur|اڈا}} + {{label|de|Bahnhof}} + {{label|fr|gare}} + {{label|el|Σταθμός}} + {{label|ja|駅}} + {{label|nl|station}} + {{label|es|estación}} + {{label|pt|estação}} + {{label|ru|станция}} +| rdfs:subClassOf = Infrastructure +| comments = +{{comment|en|Public transport station (eg. railway station, metro station, bus station).}} +{{comment|ur|پبلک ٹرانسپورٹ اسٹیشن (مثلاً ریلوے اسٹیشن، میٹرو اسٹیشن، بس اسٹیشن)}} + +{{comment|ru|Остановка общественного транспорта (например: железнодорожная станция, станция метро, автостанция).}} +| owl:equivalentClass = wikidata:Q719456 +}}OntologyClass:Statistic2007871565792022-02-18T04:05:46Z{{Class +| labels = +{{label|en|statistic}} +{{label|ga|staitistic}} +{{label|de|statistisch}} +{{label|fr|statistique}} +{{label|nl|statistisch}} +{{label|el|στατιστική}} +{{label|ur|شماریات}} +| owl:equivalentClass = wikidata:Q1949963 +}}OntologyClass:StillImage2009566511612016-06-06T12:44:28Z{{Class +| labels = +{{label|en|still image}} +{{label|de|Standbild}} +{{label|fr|image fixe}} +{{label|nl|stilstaand beeld}} +| comments = +{{comment|en|A visual document that is not intended to be animated; equivalent to http://purl.org/dc/dcmitype/StillImage}} +| rdfs:subClassOf = Image +}}OntologyClass:StormSurge20010199568452022-03-01T08:26:40Z{{Class +| labels = +{{label|en|storm surge}} +{{label|ur|طوفانی لہر}} +{{label|de|Sturmflut}} +{{label|nl|stormvloed}} +| rdfs:subClassOf = NaturalEvent +| comments = +{{comment|nl|Een stormvloed is de grootschalige overstroming van een kustgebied onder invloed van de op elkaar inwerkende krachten van wind, getij en water}} +{{comment|ur|64-72 ناٹس (بیفورٹ اسکیل پر 11) اور بارش اور گرج چمک کے ساتھ ایک پرتشدد موسمی صورتحال}} +}}OntologyClass:Stream200448555832021-09-15T08:28:22Z{{Class +| labels = +{{label|en|stream}} +{{label|ga|sruthán}} +{{label|el|ρέμα}} +{{label|fr|ruisseau}} +{{label|it|ruscello}} +{{label|de|Bach}} +{{label|ur| +ندی}} +{{label|pt|curso d’água}} +{{label|ja|河川}} +{{label|nl|stroom}} +| comments = +{{comment|en|a flowing body of water with a current, confined within a bed and stream banks}} +{{comment|ur|پانی کا بہتا ہوا کرنٹ ، ایک بستر اور ندی کے کناروں میں محدود ہے۔ +}} +| rdfs:subClassOf = BodyOfWater +| specificProperties = {{SpecificProperty | ontologyProperty = discharge | unit = cubicMetrePerSecond }} + {{SpecificProperty | ontologyProperty = minimumDischarge | unit = cubicMetrePerSecond }} + {{SpecificProperty | ontologyProperty = dischargeAverage | unit = cubicMetrePerSecond }} + {{SpecificProperty | ontologyProperty = maximumDischarge | unit = cubicMetrePerSecond }} + {{SpecificProperty | ontologyProperty = watershed | unit = squareKilometre }} +| owl:equivalentClass = wikidata:Q47521 +}}OntologyClass:Street2007972509472016-04-26T03:29:44Z{{Class +| labels = +{{label|en|street}} +{{label|ga|sráid}} +{{label|de|Straße}} +{{label|fr|straat}} +{{label|nl|rue}} +{{label|el|Οδός}} +{{label|ja|ストリート}} +| comments = +{{comment|en|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.}} +| rdfs:subClassOf = PopulatedPlace +| owl:equivalentClass = wikidata:Q79007 +}}OntologyClass:SubMunicipality2006569568472022-03-01T08:33:42Z{{Class +| labels = +{{label|en|borough}} +{{label|ur|ذیلی بلدیہ}} +{{label|de|Teilgemeinde}} +{{label|gl|parroquia}} +{{label|nl|deelgemeente}} +| comments = +{{comment|en|An administrative body governing a territorial unity on the lowest level, administering part of a municipality}} +{{comment|ur|ایک انتظامی ادارہ جو ایک علاقائی اتحاد کو نچلی سطح پر چلاتا ہے، بلدیہ کے حصے کا انتظام کرتا ہے}} +| rdfs:subClassOf = GovernmentalAdministrativeRegion +| owl:equivalentClass = +}}OntologyClass:SumoWrestler2006225566662022-02-28T09:46:21Z{{Class +| labels = {{label|en|sumo wrestler}} +{{label|de|Sumo-Ringer}} +{{label|fr|lutteur de sumo}} +{{label|nl|sumoworstelaar}} +{{label|ur|سومو پہلوان}} +| rdfs:subClassOf = Wrestler +}}OntologyClass:SupremeCourtOfTheUnitedStatesCase200475590342022-06-21T17:23:43Z{{Class +| labels = +{{label|en|Supreme Court of the United States case}} +{{label|de|Fall Oberster Gerichtshof der Vereinigten}} +{{label|ur|ریاستہائے متحدہ کی سپریم کورٹ کیس}} +{{label|fr|cas juridique de la Cour suprême des États-Unis}} +| rdfs:subClassOf = LegalCase +}}OntologyClass:Surfer2007832568492022-03-01T08:38:30Z{{Class +| labels = +{{label|en|surfer}} +{{label|ur|موج تختہ پر سوار ہونے والا}} +{{label|ga|surfálaí}} +{{label|el|σέρφερ}} +{{label|de|Surfer}} +{{label|nl|surfer}} +{{label|ja|サーファー}} +| rdfs:subClassOf = Athlete +| owl:equivalentClass = wikidata:Q13561328 +}}OntologyClass:Surname2004130565812022-02-18T04:08:58Z{{Class +| labels = +{{label|en|surname}} +{{label|ga|sloinne}} +{{label|fr|nom}} +{{label|fr|nom de famille}} +{{label|el|επώνυμο}} +{{label|de|Nachname}} +{{label|pl|nazwisko}} +{{label|ja|家}} +{{label|ko|성씨}} +{{label|nl|achternaam}} +{{label|ur|عرفیت}} + +|comments= +{{comment|ur|خاندانی نام}} +| rdfs:subClassOf = Name +}}OntologyClass:Swarm20013514559102021-09-18T04:51:38Z OntologyClass:Swarm +{{Class +| labels = {{label|en|Swarm}} +{{label|de|schwarm}} + {{label|it|stormo}} + {{label|el|Σμήνος}} + {{label|nl|zwerm}} + {{label|ja|群れ}} +{{label|ur|غول}} + | rdfs:subClassOf = CelestialBody }}OntologyClass:Swimmer2005157568512022-03-01T08:42:56Z{{Class +|labels= +{{label|fr|nageur}} +{{label|en|swimmer}} +{{label|ur|تیراک}} +{{label|ga|snámhaí}} +{{label|de|Schwimmer}} +{{label|it|nuotatore}} +{{label|el|Kολυμβητής}} +{{label|pt|nadador}} +{{label|ja|競泳選手}} +{{label|nl|zwemmer}} +{{label|ko|수영 선수}} +{{label|es|nadador}} + +| comments = +{{comment|en|a trained athlete who participates in swimming meets}} +{{comment|ur|ایک تربیت یافتہ کھلاڑی جو تیراکی کے مقابلوں میں حصہ لیتا ہے}} +{{comment|el|ένας εκπαιδευμένος αθλητής που συμμετέχει σε συναντήσεις κολύμβησης}} +|rdfs:subClassOf=Athlete +| owl:equivalentClass = wikidata:Q10843402 +}}OntologyClass:Synagogue2006701565862022-02-18T04:17:43Z{{Class +| labels = +{{label|en|synagogue}} +{{label|de|Synagoge}} +{{label|el|συναγωγή}} +{{label|fr|synagogue}} +{{label|es|sinagoga}} +{{label|nl|synagoge}} +{{label|ga|sionagóg}} +{{label|pl|synagoga}} +{{label|ja|シナゴーグ}} +{{label|ur|یہودیوں کی عبادت گاہ}} + +| comments = +{{comment|en|A synagogue, sometimes spelt synagog, is a Jewish or Samaritan house of prayer.<ref>http://en.wikipedia.org/wiki/Synagogue</ref>}} +{{comment|fr|Une synagogue est un lieu de culte juif.<ref>http://fr.wikipedia.org/wiki/Synagogue</ref>}} +{{comment|ur|یہودیوں کی عبادت گاہ، ایک یہودی یا سامری نماز کا گھر ہے۔}} +| rdfs:subClassOf = ReligiousBuilding +| owl:equivalentClass = wikidata:Q34627 +}} + +== references == +<references/>OntologyClass:SystemOfLaw2006603458132015-03-14T12:16:24Z{{Class +| labels= +{{label|en|System of law}} +{{label|el|σύστημα δικαίου}} +{{label|es|ordenamiento jurídico}} +{{label|fr|régime de droit}} +{{label|nl|rechtssysteem}} +{{label|de|Rechtssystem}} +| rdfs:subClassOf = TopicalConcept +| comments= +{{comment|en|a system of legislation, either national or international}} +| specificProperties = +}}OntologyClass:TableTennisPlayer2006235583362022-05-13T18:11:21Z{{Class +| labels = {{label|en|table tennis player}} +{{label|ur|ٹیبل ٹینس کا کھلاڑی}} +{{label|ga|imreoir leadóg bhoird}} +{{label|fr|joueur de ping-pong}} +{{label|de|Tischtennisspieler}} +{{label|el|παίκτης πινγκ-πονγκ}} +{{label|nl| tafeltennisser}} +{{label|ko| 탁구 선수}} +{{label|ja|卓球選手}} +| comments = {{comment|en|Athlete who plays table tennis}} +{{comment|ur|کھلاڑی جو ٹیبل ٹینس کھیلتا ہے}} +{{comment|el|O αθλητής που παίζει πινγκ-πονγκ}} +{{comment|fr|Athlète qui joue du tennis de table}} +| rdfs:subClassOf = Athlete +| owl:equivalentClass = wikidata:Q13382519 +}}OntologyClass:Tank20012211582652022-05-13T11:16:04Z{{Class +| labels = +{{label|en|Tank}} +{{label|ur|حوض}} +{{label|ru|Танк}} +}}OntologyClass:Tax2004763582892022-05-13T14:15:52Z{{Class +| labels = + {{label|en|tax}} +{{label|ur|محصول}} + {{label|ga|cáin}} + {{label|fr|taxe}} + {{label|de|Steuer}} + {{label|el|φόρος}} + {{label|es|impuesto}} + {{label|nl|belasting}} + {{label|ja|租税}} +| rdfs:subClassOf = TopicalConcept +| owl:equivalentClass = wikidata:Q8161 +}}OntologyClass:Taxon2009308583552022-05-14T10:02:35Z{{Class +| labels= +{{label|en|taxonomic group}} +{{label|ur|نسل یا خاندان}} +{{label|fr|groupe taxonomique}} +{{label|de|taxonomische Gruppe}} +{{label|el|ταξονομική ομάδα}} +{{label|nl|taxon}} +{{label|ja|タクソン}} +| comments= +{{comment|en|a category within a classification system for Species}} +{{comment|ur|پرجاتیوں کے لیے درجہ بندی کے نظام کے اندر ایک زمرہ}} +{{comment|fr|catégorie dans un système de classification d'espèces}} +{{comment|nl|categorie binnen een classificatiesysteem voor plant- en diersoorten}} +| rdfs:subClassOf = TopicalConcept +| specificProperties = +| owl:equivalentClass = wikidata:Q16521 +}}OntologyClass:TeamMember2005022582672022-05-13T11:19:47Z{{Class +| labels = +{{label|en|Team member}} +{{label|ur|ٹیم کے رکن}} +{{label|fr|coéquipier}} +{{label|de|Teammitglied}} +{{label|el|Μέλος ομάδας}} +{{label|nl|teamlid}} +{{label|ja|チームメンバー}} +|comments= +{{comment|en|A member of an athletic team.}} +{{comment|ur|ایتھلیٹک ٹیم کا رکن}} +{{comment|el|Ένα μέλος μιας αθλητικής ομάδας.}} +| rdfs:subClassOf = Athlete +}}OntologyClass:TeamSport20011516582912022-05-13T14:21:36Z{{Class +| labels = + {{label|en|team sport}} + {{label|ur|جماعتی کھیل}} + {{label|fr|sport d'équipe}} + {{label|nl|teamsport}} + {{label|ja|チームスポーツ}} +|comments = + {{comment|en|A team sport is commonly defined as a sport that is being played by competing teams}} +{{comment|ur|ایک ٹیم کے کھیل کو عام طور پر ایک کھیل کے طور پر بیان کیا جاتا ہے جو مسابقتی ٹیموں کے ذریعہ کھیلا جاتا ہے}} + {{comment|fr|Un sport d'équipe est défini communément comme un sport pratiqué par des équipes en compétition}} +| rdfs:subClassOf = Sport +| owl:equivalentClass = wikidata:Q216048 +}}OntologyClass:TelevisionDirector2009430583592022-05-14T10:15:03Z{{Class +| labels = {{label|en|Television director}} +{{label|ur|ٹی وی کا ہدایت کار}} +{{label|fr|réalisateur de télévision}} +{{label|nl|tv-regisseur}} +{{label|de|TV-Regisseur}} +{{label|ja|TVディレクター}} +| comments = {{comment|en|a person who directs the activities involved in making a television program.}} +{{comment|ur|ایک شخص جو ٹیلی ویژن پروگرام بنانے میں شامل سرگرمیوں کی ہدایت کرتا ہے}} +| rdfs:subClassOf = Person +}}OntologyClass:TelevisionEpisode200476582702022-05-13T11:25:08Z{{Class +| labels = +{{label|en|television episode}} +{{label|ur|ٹی وی کی قسط}} +{{label|ga|eagrán de chlár teilifíse}} +{{label|de|Fernsehfolge}} +{{label|el|επεισόδιο τηλεόρασης}} +{{label|fr|épisode télévisé}} +{{label|es|capítulo de serie de televisión}} +{{label|ko|텔레비전 에피소드}} +{{label|nl|televisie seizoen}} +{{label|ja|テレビ放送回}} +| comments = +{{comment|en|A television episode is a part of serial television program. }} +{{comment|ur|ٹیلی ویژن ایپی سوڈ سیریل ٹیلی ویژن پروگرام کا ایک حصہ ہے }} +| rdfs:subClassOf = Work +| owl:equivalentClass = schema:TVEpisode +}}OntologyClass:TelevisionHost2006209582932022-05-13T14:37:49Z{{Class +| labels = +{{label|en|television host}} +{{label|ur|ٹی وی مزبان}} +{{label|ga|láithreoir teilifíse}} +{{label|el|παρουσιαστής τηλεοπτικής εκπομπής}} +{{label|de|Fernsehmoderator}} +{{label|fr|animateur de télévision}} +{{label|it|presentatore televisivo}} +{{label|nl|televisie presentator}} +{{label|ja|テレビ番組司会者}} +| rdfs:subClassOf = Presenter +| owl:equivalentClass = wikidata:Q947873 +}}OntologyClass:TelevisionSeason2005099583612022-05-14T10:36:46Z{{Class +| labels = +{{label|en|television season}} +{{label|ur|ٹی وی ڈرامہ}} +{{label|el|τηλεοπτική σεζόν}} +{{label|de|Fernsehstaffel}} +{{label|nl|televisie seizoen}} +{{label|ko|텔레비전 시즌}} +| rdfs:subClassOf = Work +}}OntologyClass:TelevisionShow200477582732022-05-13T11:32:51Z{{Class +| rdfs:label@en = television show +| rdfs:label@ar = معلومات تلفاز +| rdfs:label@ga = clár teilifíse +| rdfs:label@de = Fernsehsendung +| rdfs:label@el = τηλεοπτική σειρά +| rdfs:label@fr = émission de télévision +| rdfs:label@sl = televizijska oddaja +| rdfs:label@ja = テレビ番組 +| rdfs:label@nl = televisie show +| rdfs:label@es = serie de televisión +| labels = {{label|ur|ٹی وی شو}} +| rdfs:subClassOf = Work +| owl:equivalentClass = wikidata:Q15416 +}}OntologyClass:TelevisionStation2003015582962022-05-13T15:37:18Z{{Class +| labels = +{{label|en|television station}} +{{label|ur|ٹیلی ویژن مرکز}} +{{label|ga|stáisiún teilifíse}} +{{label|el|τηλεοπτικός σταθμός}} +{{label|de|Fernsehsender}} +{{label|fr|chaînes de télévision}} +{{label|es|canal de televisión}} +{{label|ja|テレビジョン放送局}} +{{label|it|canale televisivo}} +{{label|nl|televisie zender}} +| rdfs:subClassOf = Broadcaster +| owl:equivalentClass = schema:TelevisionStation +| comments = +{{comment|en|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.}} +{{comment|ur|ایک ٹیلی ویژن اسٹیشن عام طور پر ایک لائن اپ ہوتا ہے۔ مثال کے طور پر ٹیلی ویژن اسٹیشن WABC-TV (یا ABC 7، چینل 7)۔ براڈکاسٹنگ نیٹ ورک ABC کے ساتھ الجھن میں نہ پڑیں، جس میں بہت سے ٹیلی ویژن اسٹیشن ہیں}} +{{comment|el|Ένας τηλεοπτικός σταθμός έχει μια παράταξη.Για παράδειγμα ο τηλεοπτικός σταθμός WABC-TV (or ABC 7, Channel 7).Δεν πρέπει να συγχέεται με το τηλεοπτικό δίκτυο ABC,που έχει πολλούς τηλεοπτικούς σταθμούς.}} +{{comment|de|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.}} +}}OntologyClass:Temple2006663583632022-05-14T10:42:34Z{{Class +| labels= +{{label|en|temple}} +{{label|ur|مندر}} +{{label|ga|teampall}} +{{label|fr|temple}} +{{label|de|tempel}} +{{label|el|ναός}} +{{label|it|tempio}} +{{label|ja|寺}} +{{label|nl|tempel}} +| rdfs:subClassOf = ReligiousBuilding +| owl:equivalentClass = +}}OntologyClass:TennisLeague2002186582752022-05-13T11:45:07Z{{Class +| labels = +{{label|en|tennis league}} +{{label|ur|ٹینس کی انجمن}} +{{label|ga|sraith leadóige}} +{{label|de|Tennisliga}} +{{label|el|Ομοσπονδία Αντισφαίρισης}} +{{label|fr|ligue de tennis}} +{{label|nl|tennis competitie}} +{{label|ja|テニスリーグ}} +| comments = +{{comment|en|A group of sports teams or person that compete against each other in tennis.}} +{{comment|ur|کھیلوں کی ٹیموں کا ایک گروپ یا شخص جو ٹینس میں ایک دوسرے کے خلاف مقابلہ کرتے ہیں}} +| rdfs:subClassOf = SportsLeague +}}OntologyClass:TennisPlayer200478582992022-05-13T15:40:39Z{{Class +| labels = +{{label|en|tennis player}} +{{label|ur|ٹینس کا کھلاڑی}} +{{label|ga|imreoir leadóige}} +{{label|de|Tennisspieler}} +{{label|nl|tennisser}} +{{label|el|παίχτης τένις}} +{{label|fr|joueur de tennis}} +{{label|pt|jogador de tennis}} +{{label|es|tenista}} +{{label|ja|テニス選手}} +| rdfs:subClassOf = Athlete +| owl:equivalentClass = wikidata:Q10833314 +}}OntologyClass:TennisTournament2005773583652022-05-14T10:47:47Z{{Class +| labels = +{{label|en|tennis tournament}} +{{label|ur|ٹینس کا باہمی مقابلہ}} +{{label|fr|tournoi de tennis}} +{{label|ga|comórtas leadóige}} +{{label|de|Tennisturnier}} +{{label|nl|tennis toernooi}} +{{label|el|Τουρνουά Τένις}} +{{label|it|torneo di tennis}} +{{label|ja|テニストーナメント}} +| rdfs:subClassOf = Tournament +| owl:equivalentClass = wikidata:Q13219666 +}}OntologyClass:Tenure20011942582772022-05-13T11:47:47Z{{Class +|labels= +{{label|en|tenure}} +{{label|ur|دور}} +{{label|nl|dienstverband}} +{{label|de|Amtszeit}} +{{label|fr|durée du mandat}} +| rdfs:subClassOf = TimePeriod +}}OntologyClass:TermOfOffice2007904583012022-05-13T15:45:25Z{{Class +|labels = +{{label|en|term of office}} +{{label|ur|دفتر کی مدت}} +{{label|de|Amtsdauer}} +{{label|fr|mandat}} +{{label|nl|ambtstermijn}} +| rdfs:subClassOf = Organisation +| owl:equivalentClass = wikidata:Q524572 +}}OntologyClass:Territory2007161583672022-05-14T11:40:35Z{{Class +| labels = +{{label|en|territory}} +{{label|nl|territorium}} +{{label|de|Territorium}} +{{label|fr|Territoire}} +{{label|el|περιοχή}} +{{label|ja|国土}} +{{label|ur|ماتحت علاقہ}} + +| comments = + {{comment|en|A territory may refer to a country subdivision, a non-sovereign geographic region.}} + {{comment|fr|Un territoire peut désigner une subdivision de pays, une région géographique non souveraine.}} + {{comment|ur|ایک ماتحت علاقہ کسی ملک کی ذیلی تقسیم، ایک غیر خودمختار جغرافیائی خطہ کا حوالہ دے سکتا ہے۔}} +| rdfs:subClassOf = PopulatedPlace +}}OntologyClass:Theatre2003835582792022-05-13T11:52:07Z{{Class +| labels = +{{label|en|theatre}} +{{label|ur|تماشا گاہ}} +{{label|ga|amharclann}} +{{label|fr|théâtre}} +{{label|el|θέατρο}} +{{label|de|Theater}} +{{label|ja|劇場}} +{{label|nl|schouwburg}} +| rdfs:subClassOf = Venue +| comments = +{{comment|en|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.}} +{{comment|ur|ایک تھیٹر یا تھیٹر (ایک پلے ہاؤس بھی) ایک ڈھانچہ ہے جہاں تھیٹر کے کام یا ڈرامے پیش کیے جاتے ہیں یا دیگر پرفارمنس جیسے میوزیکل کنسرٹ تیار کیے جا سکتے ہیں}} +| owl:equivalentClass = wikidata:Q24354 +}}OntologyClass:TheatreDirector2009436583202022-05-13T17:35:44Z{{Class +| labels = +{{label|en|Theatre director}} +{{label|ur|تھیٹر ہدایت کار}} +{{label|fr|directeur de théâtre}} +{{label|nl|theaterdirecteur}} +{{label|de|Theaterdirektor}} +| comments = {{comment|en|A director in the theatre field who oversees and orchestrates the mounting of a theatre production.}} +{{comment|ur|تھیٹر کے میدان میں ایک ڈائریکٹر جو تھیٹر پروڈکشن کے بڑھتے ہوئے کام کی نگرانی اور آرکیسٹریٹ کرتا ہے}} +| rdfs:subClassOf = Person +| owl:equivalentClass = wikidata:Q3387717 +}}OntologyClass:TheologicalConcept2009720575232022-04-24T11:48:15Z{{Class +| labels = {{label|en|Theological concept}} +{{label|de|Theologisch Konzept}} +{{label|fr|concept théologique}} +{{label|nl|theologisch concept}} + {{label|ur|مذہبی تصور}} +| comments = {{comment|en|Theological concepts, e.g. The apocalypse, Trinty, Stoicism}} +{{comment|ur| مذہبی تصورات، جیسے آسمانی کِتاب تثلیث رواقیت}} +| rdfs:subClassOf = TopicalConcept +}}OntologyClass:TimePeriod2005936555912021-09-15T08:44:55Z{{Class +|labels= +{{label|en|time period}} +{{label|ga|tréimhse}} +{{label|da|tidsperiode}} +{{label|de|Zeitraum}} +{{label|el|χρονική περίοδος}} +{{label|ur|وقت کی مدت}} +{{label|nl|tijdvak}} +{{label|fr|période temporelle}} +{{label|es|periodo temporal}} +| owl:disjointWith = Person +| rdfs:subClassOf = dul:TimeInterval +}}OntologyClass:TopLevelDomain20011968583232022-05-13T17:41:50Z{{Class +| labels= +{{label|en|top level domain}} +{{label|ur|اوپر سطح کی ڈومین}} +{{label|de|top level domain}} +{{label|fr|domaine de premier niveau}} +| specificProperties = +| rdfs:subClassOf = Identifier +| owl:equivalentClass = wikidata:Q14296 +}}OntologyClass:TopicalConcept2005115569532022-03-09T08:46:36Z{{Class +| labels = + {{label|en|topical concept}} + {{label|fr|Concept thématique}} + {{label|ur|موضوع کا تصور}} + {{label|ga|coincheap i mbéal an phobail}} + {{label|de|thematisches Konzept}} +| rdfs:subClassOf = owl:Thing +| owl:equivalentClass = dul:Concept +}}OntologyClass:Tournament2007566549812021-09-09T11:23:45Z{{Class +| labels = +{{label|en|tournament}} +{{label|ga|comórtas}} +{{label|de|Turnier}} +{{label|fr|tournoi}} +{{label|el|τουρνουά}} +{{label|nl|toernooi}} +{{label|it|torneo}} +{{label|ur|باہمی مقابلہ}} +| rdfs:subClassOf = SportsEvent +| owl:equivalentClass = wikidata:Q500834 +}}OntologyClass:Tower2009330562482022-02-16T07:50:13Z{{Class +| labels = + {{label|en|tower}} + {{label|ur|مینار}} + {{label|ga|túr}} + {{label|de|Turm}} + {{label|el|πύργος}} + {{label|fr|tour}} + {{label|nl|toren}} + {{label|ja|塔}} +| comments = + {{comment|en|A Tower is a kind of structure (not necessarily a building) that is higher than the rest}} +{{comment|ur|مینار ایک قسم کا ڈھانچہ ہے (ضروری نہیں کہ کوئی عمارت) جو باقی سے اونچی ہو}} +| rdfs:subClassOf = ArchitecturalStructure +| owl:disjointWith = Person +| owl:equivalentClass = wikidata:Q12518 +}}OntologyClass:Town2002277583692022-05-14T11:48:33Z{{Class +| labels = +{{label|en|town}} +{{label|ur|قصبہ}} +{{label|de|Stadt}} +{{label|el|πόλη}} +{{label|fr|ville}} +{{label|ga|baile}} +{{label|ja|町}} +{{label|nl|stad}} +{{label|pl|miasteczko}} +{{label|hi|नगर}} +| rdfs:subClassOf = Settlement +| comments = +{{comment|en|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.}} +{{comment|ur|چند سو سے لے کر کئی ہزار (کبھی کبھار سیکڑوں ہزاروں) تک کی تصفیہ۔ درست معنی ممالک کے درمیان مختلف ہوتے ہیں اور یہ ہمیشہ قانونی تعریف کا معاملہ نہیں ہوتا ہے۔ عام طور پر، ایک قصبہ کو گاؤں سے بڑا لیکن شہر سے چھوٹا سمجھا جاتا ہے، حالانکہ اس اصول میں مستثنیات ہیں}} +| owl:equivalentClass = wikidata:Q3957 +}}OntologyClass:TrackList2007162582812022-05-13T12:04:33Z{{Class +| labels = +{{label|en|track list}} +{{label|ur|موسیقی کے ریکارڈوں کی فہرست}} +{{label|de|Titelliste}} +{{label|el|λίστα κομματιών}} +{{label|fr|liste de pistes}} +{{label|nl|lijst van nummers}} +| comments = +{{comment|en|A list of music tracks, like on a CD}} +{{comment|ur|میوزک ٹریکس کی فہرست، جیسے سی ڈی پر}} +{{comment|fr|Une liste de pistes audio comme sur un CD}} +{{comment|nl|Een lijst van nummers als op een CD album}} +| rdfs:subClassOf = List +}}OntologyClass:TradeUnion200479583292022-05-13T17:51:52Z{{Class +| labels = +{{label|el|Κουτί πληροφοριών ένωσης}} +{{label|en|trade union}} +{{label|ur|مزدوروں کا اتحاد}} +{{label|ga|ceardchumann}} +{{label|de|Gewerkschaft}} +{{label|nl|vakbond}} +{{label|fr|syndicat professionnel}} +| comments = +{{comment|en|A trade union or labor union is an organization of workers who have banded together to achieve common goals such as better working conditions.}} +{{comment|ur|مزدوروں کا اتحاد مزدوروں کی ایک تنظیم ہے جو کام کے بہتر حالات جیسے مشترکہ اہداف کو حاصل کرنے کے لیے اکٹھے ہوئے ہیں}} +| rdfs:subClassOf = Organisation +| owl:equivalentClass = wikidata:Q178790 +}}OntologyClass:Train2006093577822022-05-01T11:06:01Z{{Class +| labels = +{{label|en|train}} +{{label|ga|traein}} +{{label|el|τρένο}} +{{label|da|tog}} +{{label|de|Zug}} +{{label|it|treno}} +{{label|fr|train}} +{{label|es|tren}} +{{label|ja|列車}} +{{label|nl|trein}} +{{label|ur|ریل گاڑی}} +| rdfs:subClassOf = MeanOfTransportation +| owl:equivalentClass = wikidata:Q870 +}}OntologyClass:TrainCarriage20011443582852022-05-13T14:05:26Z{{Class +| labels = +{{label|en|train carriage}} +{{label|ur|ٹرین کی بوگی}} +{{label|nl|treinwagon}} +| rdfs:subClassOf = MeanOfTransportation +}}OntologyClass:Tram20011513583312022-05-13T17:56:42Z{{Class +| labels = +{{label|en|tram}} +{{label|ur|ٹرام گاڑی}} +{{label|en|streetcar}} +{{label|fr|tramway}} +{{label|nl|tram}} +{{label|de|Straßenbahn}} +{{label|ja|路面電車}} + +| rdfs:subClassOf = MeanOfTransportation +}}OntologyClass:TramStation20011514583722022-05-14T12:03:49Z{{Class +| labels = +{{label|en|tram station}} +{{label|ur|ٹرام گاڑی کا اڈا}} +{{label|fr|station de tramway}} +{{label|nl|tramhalte}} +| rdfs:subClassOf = Station +| owl:equivalentClass = <http://vocab.org/transit/terms/stop> +}}OntologyClass:Treadmill2006315582872022-05-13T14:11:47Z{{Class +| labels = +{{label|el|Μύλος}} +{{label|en|Treadmill}} +{{label|ur|ڈھینکلی}} +{{label|de|Tretmühle}} +{{label|nl|Rosmolen}} +{{label|ja|トレッドミル}} +| rdfs:subClassOf = Mill +| comments = +{{comment|en|A mill driven by the tractive power of horses, donkeys or even people}} +{{comment|ur|گھوڑوں، گدھوں یا یہاں تک کہ لوگوں کی کشش طاقت سے چلنے والی چکی}} +| owl:equivalentClass = wikidata:Q683267 +}}OntologyClass:Treaty20011534583332022-05-13T17:59:22Z{{Class +| labels = +{{label|en|treaty}} +{{label|ur|معاہدہ}} +{{label|de|Vertrag}} +{{label|nl|verdrag}} +{{label|fr|traité}} +{{label|ja|条約}} +| rdfs:subClassOf = WrittenWork +}}OntologyClass:Tunnel2003389583732022-05-14T12:07:45Z{{Class +| labels = +{{label|en| tunnel}} +{{label|ur|سرنگ}} +{{label|ga|tollán}} +{{label|fr| tunnel}} +{{label|el|τούνελ}} +{{label|de| Tunnel}} +{{label|ja | トンネル}} +{{label|nl|tunnel}} +{{label|ko | 터널}} +|comments= +{{comment|en| 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).}} +{{comment|ur| ایک سرنگ پیدل یا گاڑیوں کی سڑک کے لیے، ریل ٹریفک کے لیے، یا نہر کے لیے ہو سکتی ہے۔ کچھ سرنگیں پانی کی کھپت یا ہائیڈرو الیکٹرک اسٹیشنوں کے لیے پانی کی فراہمی کے لیے آبی راستے ہیں یا گٹر ہیں}} +{{comment|fr| Un tunnel est une galerie souterraine livrant passage à une voie de communication (chemin de fer, canal, route, chemin piétonnier). Sont apparentés aux tunnels par leur mode de construction les grands ouvrages hydrauliques souterrains, tels que les aqueducs, collecteurs et émissaires destinés soit à l'amenée, soit à l'évacuation des eaux des grands centres et certaines conduites établies en liaison avec les barrages et usines hydro-électriques. (http://fr.wikipedia.org/wiki/Tunnel).}} +{{comment|de| Ein Tunnel (auch Tunell) ist eine künstliche Passage, die Berge, Gewässer oder andere Hindernisse (in der Regel als Verkehrsweg) unterquert (http://de.wikipedia.org/wiki/Tunnel).}} +{{comment|el|Ένα τούνελ μπορεί να είναι για πεζούς ή για αυτοκινητόδρομους,για σιδηρόδρομους,ή για κανάλια στο νερό.Μερικά τούνελ είναι υδραγωγεία για να παρέχουν νερό προς κατανάλωση ή για υδροηλεκτικούς σταθμούς ή είναι υπόνομοι.}} +| rdfs:subClassOf = ArchitecturalStructure +| owl:equivalentClass = wikidata:Q44377 +}}OntologyClass:Type2008253550002021-09-09T11:57:08Z{{Class +| labels= +{{label|en|type}} +{{label|ga|cineál}} +{{label|ur|قسم}} +{{label|el|τύπος}} +{{label|fr|régime de classification}} +{{label|nl|type}} +{{label|de|Typ}} +{{label|ja|型}} +| comments= +{{comment|en|a category within a classification system}} +{{comment|ur|درجہ بندی کے نظام میں ایک زمرہ}} +{{comment|nl|categorie binnen een classificatiesysteem}} +| rdfs:subClassOf = TopicalConcept +| specificProperties = +}}OntologyClass:UndergroundJournal20010116583752022-05-14T12:14:08Z{{Class +| labels = +{{label|en|underground journal}} +{{label|ur|زیر زمین جریدہ}} +{{label|de|Underground Zeitschrift}} +{{label|nl|verzetsblad }} +| rdfs:subClassOf = PeriodicalLiterature +| comments = +{{comment|en| 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. }} +{{comment|ur| ایک زیر زمین جریدہ ہے، اگرچہ وقت گزرنے کے ساتھ ساتھ ہمیشہ قانون کے ذریعہ اشاعتیں ممنوع رہی ہیں، دوسری عالمی جنگ کے دوران جرمنوں کے زیر قبضہ ممالک کا ایک رجحان۔ زیر زمین پریس میں تحریر کا مقصد نازی قبضے کے خلاف مزاحمت کے جذبے کو مضبوط کرنا ہے۔ زیر زمین جرائد کی تقسیم بہت خفیہ ہونی چاہیے تھی اور اس لیے اس کا انحصار غیر قانونی ڈسٹری بیوشن سرکٹس اور قابضین کی طرف سے ظلم و ستم کے خطرات پر تھا}} +{{comment|nl| 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.}} +}}OntologyClass:UnitOfWork2006466569122022-03-02T20:01:53Z{{Class +| labels = + {{label|en|unit of work}} + {{label|fr|unité de travail}} + {{label|ga|aonad oibre}} + {{label|de|Arbeitseinheit}} + {{label|nl|werkeenheid}} + {{label|ur|کام کی اکائی}} +| owl:disjointWith = Person +| comments = + {{comment|en|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.}} + {{comment|fr|Cette classe est destinée à transmettre la notion de quantité de travail à faire. Elle est différente de l'activité en ce qu'elle a une fin définie et qu'elle est mesurée.}} + {{comment|ur|اس کلاس کا مقصد کام کی مقدار کو سمجھانا ہے۔ یہ سرگرمی سے مختلف ہے کہ اس کا ایک حتمی اختتام ہے اور اسے ناپا جا رہا ہے۔}} +| rdfs:subClassOf = owl:Thing +| owl:equivalentClass = +}}OntologyClass:University200480583782022-05-14T12:19:58Z{{Class +| labels = +{{label|en|university}} +{{label|ur|جامع درس گاہ}} +{{label|de|Universität}} +{{label|el|πανεπιστήμιο}} +{{label|es|universidad}} +{{label|fr|université}} +{{label|ga|ollscoil}} +{{label|ja|大学}} +{{label|ko|대학}} +{{label|nl|universiteit}} +{{label|pl|uniwersytet}} +{{label|pt|universidade}} +| rdfs:subClassOf = EducationalInstitution, schema:CollegeOrUniversity +| owl:equivalentClass = wikidata:Q3918 +}}OntologyClass:Unknown2004894583802022-05-14T12:23:12Z{{Class +| labels = +{{label|en|Unknown}} +{{label|ur|نامعلوم}} +{{label|ga|anaithnid}} +{{label|de|unbekannt}} +{{label|el|άγνωστος}} +{{label|tr|Bilinmeyen}} +{{label|nl|Onbekend}} +{{label|fr|Inconnu}} +{{label|ja|無知}} +| rdfs:subClassOf = owl:Thing +| owl:equivalentClass = +}}OntologyClass:VaccinationStatistics20013112584222022-05-14T15:42:40Z{{Class +| labels = +{{label|en|Vaccination Statistics}} +{{label|ur|ویکسینیشن کے اعدادوشمار}} +{{label|fr|statistiques de vaccination}} +| comments = +{{comment|en|Statistics related to the COVID-19 vaccination world progress‎}} +{{comment|ur|COVID-19 ویکسینیشن کی عالمی پیشرفت سے متعلق اعدادوشمار‎}} +{{comment|fr|Statistiques relatives à la progression mondiale de la vaccination contre le COVID-19‎}} +| rdfs:subClassOf = Drug +}}OntologyClass:Vaccine20011917583822022-05-14T12:35:39Z{{Class +| labels = +{{label|de|Impfstoff}} +{{label|en|vaccine}} +{{label|ur|ویکسین}} +{{label|fr|vaccin}} +{{label|nl|vaccin}} +| comments = +{{comment|en|Drugs that are a vaccine‎}} +{{comment|ur|وہ دوائیں جو ایک ویکسین ہیں‎}} +{{comment|de|Medikamente welche Impfstoffe sind}} +| rdfs:subClassOf = Drug +}}OntologyClass:Valley2002268583992022-05-14T14:15:36Z{{Class +| labels = +{{label|en|valley}} +{{label|ur|وادی}} +{{label|ga|gleann}} +{{label|de|tal}} +{{label|it|valle}} +{{label|el|Κοιλάδα}} +{{label|fr|vallée}} +{{label|ja|谷}} +{{label|pt|vale}} +{{label|nl|vallei}} +| comments = +{{comment|en|a depression with predominant extent in one direction}} +{{comment|ur|پہاڑیوں یا پہاڑوں کے درمیان زمین کا ایک نچلا علاقہ، عام طور پر اس میں سے دریا یا ندی بہتی ہے}} +| rdfs:subClassOf = NaturalPlace +| owl:equivalentClass = wikidata:Q39816 +}}OntologyClass:Vein200481584372022-05-14T16:56:40Z{{Class +| labels = +{{label|en|vein}} +{{label|ur|رگ}} +{{label|ga|féith}} +{{label|el|φλέβα}} +{{label|de|Vene}} +{{label|fr|veine}} +{{label|pt|veia}} +{{label|ja|静脈}} +{{label|nl|ader}} +| rdfs:subClassOf = AnatomicalStructure +| owl:equivalentClass = wikidata:Q9609 +}}OntologyClass:Venue2007347553352021-09-11T18:23:45Z{{Class +| labels = +{{label|en|venue}} +{{label|ga|ionad}} +{{label|de|Veranstaltungsort}} +{{label|el|τόπος συνάντησης}} +{{label|fr|lieu}} +{{label|ko|경기장}} +{{label|ur|پنڈال}} +| rdfs:subClassOf = Building +}}OntologyClass:Vicar2008169584012022-05-14T14:19:17Z{{Class +| labels = +{{label|en|vicar}} +{{label|ur|حلقہ کا پادری}} +{{label|ga|biocáire}} +{{label|el|ιεροκήρυκας}} +{{label|nl|predikant}} +{{label|fr|pasteur}} +{{label|de|Pfarrer}} +| rdfs:subClassOf = Cleric +}}OntologyClass:VicePresident2001560584392022-05-14T17:00:15Z{{Class +| labels = +{{label|en|vice president}} +{{label|ur|نائب صدر}} +{{label|ga|leasuachtarán}} +{{label|el|αντιπρόεδρος}} +{{label|de|Vizepräsident}} +{{label|fr|vice président}} +{{label|nl|vice president}} +| rdfs:subClassOf = Politician +| owl:equivalentClass = wikidata:Q42178 +}}OntologyClass:VicePrimeMinister2002326583882022-05-14T13:27:48Z{{Class +| labels = +{{label|en|vice prime minister}} +{{label|ur|نائب وزیر اعظم}} +{{label|el|αντιπρωθυπουργός}} +{{label|fr|vice premier ministre}} +{{label|nl|vicepremier}} +| rdfs:subClassOf = Politician +}}OntologyClass:VideoGame200482584062022-05-14T14:36:32Z{{Class +| labels = +{{label|en|video game}} +{{label|ur|بصری کھیل}} +{{label|ga|físchluiche}} +{{label|da|computerspil}} +{{label|de|Videospiel}} +{{label|el|βιντεοπαιχνίδι}} +{{label|fr|jeux vidéo}} +{{label|es|videojuego}} +{{label|ko|비디오 게임}} +{{label|nl|videospel}} +{{label|pt|videojogo}} +{{label|ja|テレビゲーム}} +| comments = +{{comment|en|A video game is an electronic game that involves interaction with a user interface to generate visual feedback on a video device.}} +{{comment|ur|بصری کھیل ایک الیکٹرانک گیم ہے جس میں ویڈیو ڈیوائس پر بصری تاثرات پیدا کرنے کے لیے صارف کے انٹرفیس کے ساتھ تعامل شامل ہوتا ہے}} +| rdfs:subClassOf = Software +| owl:equivalentClass = wikidata:Q7889 +}}OntologyClass:VideogamesLeague2002187584422022-05-14T17:08:14Z{{Class +| labels = +{{label|en|videogames league}} +{{label|ur|بصری کھیلوں کی انجمن}} +{{label|ga|sraith físchluichí}} +{{label|el|πρωτάθλημα βιντεοπαιχνιδιών}} +{{label|de|Videospiele-Liga}} +{{label|fr|ligue de jeux vidéo}} +| comments = +{{comment|en|A group of sports teams or person that compete against each other in videogames.}} +{{comment|ur|کھیلوں کی ٹیموں کا ایک گروپ یا شخص جو بصری کھیلوں میں ایک دوسرے سے مقابلہ کرتا ہے}} +{{comment|el|Ένα σύνολο ομάδων ή ατόμων που ανταγωνίζονται σε ηλεκτρονικά παιχνίδια.}} +| rdfs:subClassOf = SportsLeague +}}OntologyClass:Village2002278583902022-05-14T13:34:52Z{{Class +| labels = +{{label|en|village}} +{{label|ur|گاؤں}} +{{label|ga|sráidbhaile}} +{{label|el|χωριό}} +{{label|fr|village}} +{{label|de|dorf}} +{{label|gl|lugar}} +{{label|pl|wieś}} +{{label|ja|村}} +{{label|id|desa}} +{{label|nl|dorp}} +{{label|hi|गाँव}} +| comments = +{{comment|en|a clustered human settlement or community, usually smaller a town}} +{{comment|ur|ایک انسانی بستی یا برادری کا جھنڈ ، عام طور پر ایک چھوٹا قصبہ}} +{{comment|gl|Núcleo pequeno de poboación en que se divide unha parroquia, con poucos veciños e de carácter rural.}} +| rdfs:subClassOf = Settlement +| owl:equivalentClass = wikidata:Q532 +}}OntologyClass:Vodka20010214584112022-05-14T14:57:01Z{{Class +|labels= + {{label|en|vodka}} +{{label|ur|تیز روسی شراب}} + {{label|da|vodka}} + {{label|de|Wodka}} + {{label|fr|vodka}} + {{label|nl|wodka}} +| rdfs:subClassOf = Beverage +}}OntologyClass:VoiceActor200483584702022-05-14T18:34:46Z{{Class +| labels = +{{label|en|voice actor}} +{{label|ur|آوازکا اداکار}} +{{label|de|Synchronsprecher}} +{{label|fr|acteur de doublage}} +{{label|ko|성우}} +{{label|ja|声優}} +{{label|nl|stemacteur}} +| rdfs:subClassOf = Actor +}}OntologyClass:Volcano2005183583952022-05-14T14:10:36Z{{Class +| labels = +{{label|en|volcano}} +{{label|ur|آتش فشاں}} +{{label|ga|bolcán}} +{{label|fr|volcan}} +{{label|el|ηφαίστειο}} +{{label|de|Vulkan}} +{{label|ja|火山}} +{{label|nl|vulkaan}} +{{label|pt|vulcão}} +| comments = +{{comment|en|A volcano is currently subclass of naturalplace, but it might also be considered a mountain.}} +{{comment|ur|آتش فشاں فی الحال قدرتی جگہ کا ذیلی طبقہ ہے، لیکن اسے پہاڑ بھی سمجھا جا سکتا ہے}} +{{comment|el|Το ηφαίστειο είναι υποκατηγορία φυσικών καταστάσεων, αλλά μπορεί επίσης να θεωρηθεί και βουνό.}} +| rdfs:subClassOf = NaturalPlace +| owl:equivalentClass = wikidata:Q8072 +}}OntologyClass:VolleyballCoach2006116584132022-05-14T15:01:03Z{{Class +| labels = {{label|en|volleyball coach}} +{{label|ur|والی بال کی تربیت کرنے والا}} +{{label|ga|traenálaí eitpheile}} +{{label|de|Volleyballtrainer}} +{{label|el|προπονητής βόλλεϋ}} +{{label|it|allenatore di pallavolo}} +{{label|nl|volleybalcoach}} +| rdfs:subClassOf = Coach +}}OntologyClass:VolleyballLeague2002188584792022-05-14T18:48:00Z{{Class +| labels = +{{label|en|volleyball league}} +{{label|ur|والی بال کی انجمن}} +{{label|de|Volleyball-Liga}} +{{label|el|Ομοσπονδία Πετοσφαίρισης}} +{{label|fr|ligue de volleyball}} +{{label|nl|volleybal competitie}} +| comments = +{{comment|en|A group of sports teams that compete against each other in volleyball.}} +{{comment|ur|کھیلوں کی ٹیموں کا ایک گروپ جو والی بال میں ایک دوسرے سے مقابلہ کرتے ہیں}} +| rdfs:subClassOf = SportsLeague +}}OntologyClass:VolleyballPlayer2004246572952022-03-30T14:21:04Z{{Class +| labels = + {{label|en|volleyball player}} + {{label|fr|joueur de volleyball}} + {{label|de|Volleyballspieler}} + {{label|el|παίχτης βόλεϊ}} + {{label|pl|siatkarz}} + {{label|nl|volleyballer}} + {{label|ko|배구 선수}} + {{label|ur|والی بال کاکھلاڑی}} +| rdfs:subClassOf = Athlete +| owl:equivalentClass = wikidata:Q15117302 +}}OntologyClass:WaterPoloPlayer2009553585212022-05-14T19:43:39Z{{Class +| labels = + {{label|en|water polo Player}} + {{label|ur|آبی پولوکا کھلاڑی}} + {{label|fr|joueur de water polo}} + {{label|de|Wasserpolo Spieler}} + {{label|nl|waterpoloër}} + {{label|it|giocatore di pallanuoto}} +| rdfs:subClassOf = Athlete +}}OntologyClass:WaterRide2008006586652022-05-15T10:43:17Z{{Class +| labels = +{{label|en|water ride}} +{{label|ur|پانی کی سواری}} +{{label|ga|marcaíocht uisce}} +{{label|de|Wasserbahn}} +{{label|nl|waterbaan}} +| rdfs:subClassOf = AmusementParkAttraction +| owl:equivalentClass = wikidata:Q2870166 +}}OntologyClass:WaterTower2006282584952022-05-14T19:14:48Z{{Class +| labels = +{{label|en|Water tower}} +{{label|ur|بُرج آب}} +{{label|el|πύργος νερού}} +{{label|de|Wasserturm}} +{{label|it|Serbatoio idrico a torre}} +{{label|nl|Watertoren}} +{{label|fr|Château d'eau}} +| rdfs:subClassOf = Tower +| comments = +{{comment|el| μια κατασκευή σχεδιασμένη για αποθήκευση μεγάλων ποσοτήτων νερού σε μέρος με κάποια ανύψωση, ώστε να διατηρήσει πίεση στο σύστημα παροχής νερού}} +{{comment|en|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}} +{{comment|ur| پانی کی فراہمی کے نظام پر دباؤ برقرار رکھنے کے لیے کچھ بلندی کی جگہ پر پانی کی بڑی مقدار کو ذخیرہ کرنے کے لیے ڈیزائن کیا گیا ایک تعمیر}} +{{comment|fr|une construction destinée à entreposer l'eau, et placée en général sur un sommet géographique pour permettre de la distribuer sous pression}} +| owl:equivalentClass = wikidata:Q274153 +}}OntologyClass:Watermill2006010586362022-05-15T10:13:23Z{{Class +| labels = +{{label|el|Νερόμυλος}} +{{label|fr|Moulin à eau}} +{{label|en|Watermill}} +{{label|ur|پن چکی}} +{{label|ga|muileann uisce}} +{{label|de|Wassermühle}} +{{label|it|mulino ad acqua}} +{{label|nl|Watermolen}} +{{label|ja|水車小屋}} +| rdfs:subClassOf = Mill +| comments = +{{comment|ur|واٹر مل ایک ایسا ڈھانچہ ہے جو پانی کے پہیے یا ٹربائن کا استعمال مکینیکل عمل کو چلانے کے لیے کرتا ہے جیسے آٹا، لکڑی یا ٹیکسٹائل کی پیداوار، یا دھات کی تشکیل (رولنگ، پیسنا یا تار ڈرائنگ)}} +{{comment|en|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)}} +| owl:equivalentClass = wikidata:Q185187 +}}OntologyClass:WaterwayTunnel2003392587192022-05-16T15:04:40Z{{Class +| labels = +{{label|en|waterway tunnel}} +{{label|ur|آبی گزرگاہ کی سرنگ}} +{{label|ga|tollán uiscebhealaigh}} +{{label|de|Kanaltunnel}} +{{label|fr|tunnel de voie navigable}} +{{label|nl|kanaaltunnel}} +| rdfs:subClassOf = RouteOfTransportation +}}OntologyClass:Weapon200484584992022-05-14T19:17:22Z{{Class +| labels = +{{label|en|weapon}} +{{label|ur|ہتھیار}} +{{label|ga|arm}} +{{label|el|όπλο}} +{{label|da|våben}} +{{label|de|Waffe}} +{{label|fr|arme}} +{{label|ko|무기}} +{{label|ja|武器}} +{{label|nl|wapen}} +| rdfs:subClassOf = Device, schema:Product +| specificProperties = + {{SpecificProperty | ontologyProperty = length | unit = millimetre }} + {{SpecificProperty | ontologyProperty = height | unit = millimetre }} + {{SpecificProperty | ontologyProperty = weight | unit = kilogram }} + {{SpecificProperty | ontologyProperty = width | unit = millimetre }} + {{SpecificProperty | ontologyProperty = diameter | unit = millimetre }} +| owl:equivalentClass = wikidata:Q728 +}}OntologyClass:Website200485586422022-05-15T10:20:28Z{{Class +| labels = +{{label|en|website}} +{{label|ur|ویب صفحات کا مجموعہ}} +{{label|ga|suíomh idirlín}} +{{label|gl|sitio web}} +{{label|de|Webseite}} +{{label|el|Ιστότοπος}} +{{label|fr|site web}} +{{label|ko|웹사이트}} +{{label|nl|website}} +{{label|ja|ウェブサイト}} +| rdfs:subClassOf = Work +| owl:equivalentClass = schema:WebSite +}}OntologyClass:WikimediaTemplate20011965587212022-05-16T16:36:42Z{{Class +| labels= + {{label|en|Wikimedia template}} +{{label|ur|ویکی میڈیا کا سانچہ}} + {{label|de|Wikimedia-Vorlage}} + {{label|fr|modèle de Wikimedia}} +| comments= + {{comment|en|DO NOT USE THIS CLASS! This is for internal use only!}} +{{comment|ur|!اس کلاس کو استعمال نہ کریں! یہ صرف اندرونی استعمال کے لیے ہے}} + {{comment|fr|NE PAS UTILISER CETTE CLASSE! Usage interne réservé uniquement!}} +| owl:equivalentClass = wikidata:Q11266439 +| rdfs:subClassOf = Unknown +}}OntologyClass:WindMotor2006313585062022-05-14T19:23:26Z{{Class +| labels = +{{label|en|Wind motor}} +{{label|ur|پَوَن چکّی کی طرح کی کّل}} +{{label|de|Windkraft}} +{{label|fr|éolienne}} +{{label|nl|Roosmolen}} +| rdfs:subClassOf = Mill +| comments = +{{comment|en|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.}} +{{comment|ur|ہوا سے چلنے والی ٹربائن جو خود کو ہوا کی سمت اور ہوا کی طاقت کے مطابق ڈھال لیتی ہے۔ ونڈ مل کے ساتھ عام فیکٹر کے طور پر ہوا کے باوجود، اپنی ذات میں ایک طبقہ سمجھا جاتا ہے}} +| owl:equivalentClass = wikidata:Q15854792 +}}OntologyClass:Windmill2006009586472022-05-15T10:25:00Z{{Class +| labels = +{{label|el|Ανεμόμυλος}} +{{label|en|Windmill}} +{{label|ur|ہوا کی چکی}} +{{label|da|vindmølle}} +{{label|de|Windmühle}} +{{label|it|mulino a vento}} +{{label|nl|Windmolen}} +{{label|fr|moulin à vent}} +{{label|es|Molinos de viento}} +{{label|ga|muileann gaoithe}} +{{label|ja|風車}} + +| rdfs:subClassOf = Mill +|comments = + {{comment|en|A windmill is a machine that converts the energy of wind into rotational energy by means of vanes called sails}} +{{comment|ur|ہوا کی چکی ایک مشین ہے جو ہوا کی توانائی کو سیل نامی وینز کے ذریعے گردشی توانائی میں تبدیل کرتی ہے}} + + {{comment|fr|Le moulin à vent est un dispositif qui transforme l’énergie éolienne (énergie cinétique du vent) en mouvement rotatif au moyen d’ailes ajustables.<ref name="moulin à vent">http://fr.wikipedia.org/wiki/Moulin_%C3%A0_vent</ref>}} +| owl:equivalentClass = wikidata:Q38720 +}} + +==References== +<references/>OntologyClass:Wine2005830575632022-04-24T15:05:54Z{{Class +|labels= + {{label|en|wine}} +{{label|ga|fíon}} + {{label|el|κρασί}} + {{label|da|vin}} + {{label|de|Wein}} + {{label|it|vino}} + {{label|ja|ワイン}} + {{label|nl|wijn}} + {{label|fr|vin}} + {{label|es|vino}} +{{label|ur|شراب}} +| rdfs:subClassOf = Beverage +| owl:equivalentClass = wikidata:Q282 +}}OntologyClass:WineRegion200486585082022-05-14T19:27:08Z{{Class +| labels = +{{label|en|wine region}} +{{label|ur|شراب کا علاقہ}} +{{label|de|Weinregion}} +{{label|fr|région viticole}} +{{label|ja|ワイン産地}} +{{label|nl|wijnstreek}} +| rdfs:subClassOf = Place +}}OntologyClass:Winery2008722586512022-05-15T10:27:19Z{{Class +| labels = +{{label|en|winery}} +{{label|ur|شراب خانہ}} +{{label|ga|fíonlann}} +{{label|el|οινοποιείο}} +{{label|de|Weinkellerei}} +{{label|fr|établissement vinicole}} +{{label|it|casa vinicola}} +{{label|nl|wijnmakerij}} +{{label|ja|ワイナリー}} +| rdfs:subClassOf = Company +| owl:equivalentClass = wikidata:Q156362 +}}OntologyClass:WinterSportPlayer20011157558222021-09-17T20:38:25Z{{Class +| labels = +{{label|en|winter sport Player}} +{{label|de|Wintersportspieler}} +{{label|nl|wintersporter}} +{{label|fr|Joueur de sport d'hiver}} +{{label|ur|سرمائی کھیل کھیلنے والا}} +| rdfs:subClassOf = Athlete +}}OntologyClass:Woman20012288585112022-05-14T19:30:35Z{{Class +| labels = +{{label|en|woman}} +{{label|ur|عورت}} +{{label|ru|женщина}} +{{label|pl|kobieta}} +{{label|fr|femme}} +{{label|da|kvinde}} +{{label|de|Frauen}} +{{label|ko|여자}} +{{label|ja|女性}} +{{label|nl|vrouw}} +{{label|it|donna}} +| rdfs:subClassOf = Person +| owl:equivalentClass = wikidata:Q467 +}}OntologyClass:WomensTennisAssociationTournament200487586572022-05-15T10:34:00Z{{Class +| labels = +{{label|en|Women's Tennis Association tournament}} +{{label|ur|خواتین کی انجمن کا باہمی مقابلہ}} +{{label|de|WTA Turnier}} +{{label|fr|Tournoi de la Women's Tennis Association}} +{{label|it|Torneo di Women's Tennis Association}} +{{label|nl|WTA-toernooi}} +| rdfs:subClassOf = Tournament +}}OntologyClass:Work200488575012022-04-24T10:54:27Z{{Class +| labels = + {{label|en|work}} + {{label|ga|obair}} + {{label|pt|obra}} + {{label|fr|œuvre}} + {{label|el|δημιουργία}} + {{label|da|arbejde}} + {{label|de|Werk}} + {{label|nl|werk}} + {{label|ja|仕事}} + {{label|ur|کام}} +| comments = + {{comment|en|Item on which time has been spent for its realisation. Actor can be a human on not (machine, insects, nature...)}} + {{comment|fr|Elément sur lequel on a passé du temps pour le réaliser. L'acteur peut être humain (homme) ou pas (machine, insectes, nature, ...)}} +{{comment|ur|وہ شے جس پر اس کی تکمیل کے لیے وقت صرف کیا گیا ہو۔ اداکار انسان نہیں ہو سکتا (مشین، کیڑے، فطرت}} + +| owl:equivalentClass = schema:CreativeWork, wikidata:Q386724 +| owl:disjointWith = wgs84_pos:SpatialThing +| specificProperties = {{SpecificProperty | ontologyProperty = runtime | unit = minute }} +| rdfs:subClassOf = owl:Thing +}}OntologyClass:WorkSequence20013832585142022-05-14T19:33:36Z{{Class +| labels = + {{label|en|sequence of works}} + {{label|ur|کام کی ترتیب}} + {{label|fr|séquence d'oeuvres}} +| comments = + {{comment|en|sequence of works previous/next}} +{{comment|ur|پچھلے/اگلے کاموں کی ترتیب}} + {{comment|fr|séquence d'oeuvres précédent/suivant}} +|rdfs:subClassOf = List +}}OntologyClass:WorldHeritageSite200489586602022-05-15T10:37:27Z{{Class +| labels = +{{label|en|World Heritage Site}} +{{label|ur|عالمی ثقافتی ورثہ}} +{{label|nl|werelderfgoed}} +{{label|ga|Láithreán Oidhreachta Domhanda}} +{{label|de|Weltkulturerbe}} +{{label|el|Μνημείο Παγκόσμιας Πολιτιστικής Κληρονομιάς (Πληροφορίες ΠΠΚ)}} +{{label|fr|site du patrimoine mondial}} +{{label|ko|세계유산}} +{{label|ja|世界遺産}} +| comments = +{{comment|en|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.}} +{{comment|ur|یونیسکو کی عالمی ثقافتی ورثہ سائٹ ایک ایسی جگہ ہے (جیسے جنگل، پہاڑ، جھیل، صحرا، یادگار، عمارت، کمپلیکس، یا شہر) جو اس فہرست میں شامل ہے جسے یونیسکو کی عالمی ثقافتی ورثہ کمیٹی کے زیر انتظام بین الاقوامی عالمی ثقافتی ورثہ پروگرام کے ذریعے برقرار رکھا جاتا ہے۔ 21 ریاستی پارٹیوں پر مشتمل ہے جنہیں ان کی جنرل اسمبلی چار سال کی مدت کے لیے منتخب کرتی ہے۔ عالمی ثقافتی ورثہ کی جگہ ثقافتی یا جسمانی اہمیت کی حامل جگہ ہے}} +| rdfs:subClassOf = Place +| owl:equivalentClass = wikidata:Q9259 +}}OntologyClass:Wrestler200490565882022-02-18T04:21:01Z{{Class +| labels = +{{label|en|wrestler}} +{{label|ga|coraí}} +{{label|de|Ringer}} +{{label|el|παλαιστής}} +{{label|fr|lutteur}} +{{label|ja|レスラー}} +{{label|nl|worstelaar}} +{{label|ur|پہلوان}} +| rdfs:subClassOf = Athlete +| owl:equivalentClass = wikidata:Q13474373 +}}OntologyClass:WrestlingEvent200491585182022-05-14T19:38:08Z{{Class +| labels = +{{label|en|wrestling event}} +{{label|ur|کشتی کی تقریب}} +{{label|el|αγώνας πάλης}} +{{label|de|Wrestling-Veranstaltung}} +{{label|fr|match de catch}} +{{label|nl|worstelevenement}} +| rdfs:subClassOf = SportsEvent +}}OntologyClass:Writer200492550792021-09-09T15:06:53Z{{Class +| labels = +{{label|en|writer}} +{{label|fr|écrivain}} +{{label|da|forfatter}} +{{label|de|schriftsteller}} +{{label|el|συγγραφέας}} +{{label|es|escritor}} +{{label|ko|작가}} +{{label|nl|auteur}} +{{label|ja|著作家}} +{{label|pl|pisarz}} +{{label|ga|scríbhneoir}} +{{label|lv|rakstnieks}} +{{label|ur|مصنف}} + +| rdfs:subClassOf = Person +| owl:equivalentClass = wikidata:Q36180 +}}OntologyClass:WrittenWork2003736574552022-04-24T08:56:34Z{{Class +|labels = + {{label|en|written work}} +{{label|ga|obair scríofa}} + {{label|da|skriftligt værk}} + {{label|de|geschriebenes Erzeugnis}} + {{label|nl|geschreven werk}} + {{label|fr|travail écrit}} + {{label|es|obra escrita}} +{{label|ur|تحریری کام}} +| comments = +{{comment|en|Written work is any text written to read it (e.g.: books, newspaper, articles)}} +{{comment|fr|Un travail écrit est tout texte écrit destiné à être lu (ex. : livres, journaux, articles, document)}} +{{comment|ur|تحریری کام کسی بھی متن کو پڑھنے کے لیے لکھا جاتا ہے (مثال کے طور پر: کتابیں ، اخبار ، مضامین)}} +{{comment|de|Ein geschriebenes Erzeugnis ist jede Art von Text der geschrieben wurde um ihn zu lesen (z.B. Bücher, Zeitungen, Artikel). }} +| rdfs:subClassOf = Work +| owl:equivalentClass = wikidata:Q234460 +}}OntologyClass:Year2004814587242022-05-16T17:23:44Z{{Class +| labels = + {{label|en|year}} +{{label|ur|سال}} + {{label|el|έτος}} + {{label|da|år}} + {{label|de|Jahr}} + {{label|pt|ano}} + {{label|ja|年}} + {{label|nl|jaar}} + {{label|fr|année}} + {{label|es|año}} + {{label|pl|rok}} + {{label|ga|bliain}} +| rdfs:subClassOf = TimePeriod +| owl:equivalentClass = wikidata:Q577 +}}OntologyClass:YearInSpaceflight200493587272022-05-16T17:32:26Z{{Class +| labels = + +{{label|en|year in spaceflight}} +{{label|ur|خلائی پرواز میں سال}} +{{label|es|año del vuelo espacial}} +{{label|fr|année de vols spatiaux}} +{{label|nl|vliegjaren}} +{{label|de|Zeitraum Raumflug}} +| rdfs:subClassOf = TimePeriod +}}OntologyClass:Youtuber20012512587292022-05-16T17:41:04Z{{Class +| labels = + {{label|en|Youtuber}} + {{label|ur|یوٹیب پر وڈیو لگانے والا}} + {{label|de|Youtuber}} + {{label|eu|youtuberra}} + {{label|da|youtuber}} + {{label|fr|youtubeuse}} + {{label|hi|यूट्यूबर}} + {{label|ar|اليوتيوب}} +| rdfs:subClassOf = Person +| comments = {{comment|en|a person who uploads, produces, or appears in videos on the video-sharing website YouTube..}} +{{comment|ur|وہ شخص جو ویڈیو شیئرنگ ویب سائٹ یوٹیوب پر ویڈیوز اپ لوڈ کرتا ہے، تیار کرتا ہے یا ان میں ظاہر ہوتا ہے}} +}}OntologyClass:Zoo2009215587312022-05-16T17:44:55Z{{Class +| labels = +{{label|en|zoo}} +{{label|ur|چڑیا گھر}} +{{label|ga|zú}} +{{label|da|zoo}} +{{label|de|Zoo}} +{{label|fr|zoo}} +{{label|ja|動物園}} +{{label|el|ζωολογικός κήπος}} +{{label|nl|dierentuin}} +| rdfs:subClassOf = ArchitecturalStructure +| owl:equivalentClass = wikidata:Q43501 +}}OntologyClass:آب و تاب20013498578422022-05-02T11:12:52Z{{Class +| labels = + +{{label|ur|آب و تاب}} +{{label|en|Blazon}} + + +| rdfs:subClassOf = owl:Thing +}}OntologyClass:آبادی20013986585682022-05-15T06:05:42Z{{Class +| labels = +{{label|en|population}} +{{label|ur|آبادی}} + +| rdfs:subClassOf = owl:Thing +| owl:equivalentClass = wikidata:Q33829 +}}OntologyClass:آبادی والی جگہ20013375582322022-05-13T09:23:19Z{{Class +| labels = +{{label|ur|آبادی والی جگہ}} +{{label|en|populated place}} +| comments = + +{{comment|ur| جیسا کہ امریکہ نے بیان کیا ہے۔ ارضیاتی سروے ، ایک آبادی والی جگہ وہ جگہ یا علاقہ ہے جہاں گروہ یا بکھرے ہوئے عمارتیں اور مستقل انسانی آبادی (شہر ، بستی ، قصبہ یا گاؤں) ہو۔ }} +{{comment|en|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).}} +| rdfs:subClassOf = جگہ +| specificProperties = +{{SpecificProperty | ontologyProperty = populationDensity | unit = inhabitantsPerSquareKilometre }} +{{SpecificProperty | ontologyProperty = populationMetroDensity | unit = inhabitantsPerSquareKilometre }} +{{SpecificProperty | ontologyProperty = populationUrbanDensity | unit = inhabitantsPerSquareKilometre }} +{{SpecificProperty | ontologyProperty = area | unit = squareKilometre }} +{{SpecificProperty | ontologyProperty = areaTotal | unit = squareKilometre }} +{{SpecificProperty | ontologyProperty = areaMetro | unit = squareKilometre }} +{{SpecificProperty | ontologyProperty = areaUrban | unit = squareKilometre }} +}}OntologyClass:آبادیاتی20014016582292022-05-13T09:17:35Z{{Class +| labels = +{{label|ur|آبادیاتی}} +| comments = +{{comment|ur|کسی جگہ کی آبادی۔ ان خصوصیات کا استعمال کرتا ہے: آبادی کی کل، سال (جب ماپا جاتا ہے، آبادی کا سال)، درجہ (اس جگہ کا ترتیب اس کے بہن بھائیوں کے درمیان ایک ہی سطح پر)، نام (علاقہ آبادی کے لحاظ سے ماپا جاتا ہے، جیسے: "مقام"، "میونسپلٹی" یا "کمیٹیٹ"}} +| rdfs:subClassOf = owl:Thing +}}OntologyClass:آبی پولوکا کھلاڑی20014119586332022-05-15T10:06:00Z{{Class +| labels = +{{label|ur|آبی پولوکا کھلاڑی}} + {{label|en|water polo Player}} +| rdfs:subClassOf = کھلاڑی +}}OntologyClass:آبی گزرگاہ کی سرنگ20014132587202022-05-16T15:06:25Z{{Class +| labels = +{{label|ur|آبی گزرگاہ کی سرنگ}} +{{label|en|waterway tunnel}} + +| rdfs:subClassOf = نقل و حمل کا راستہ +}}OntologyClass:آتش فشاں20014070583962022-05-14T14:10:54Z{{Class +| labels = +{{label|ur|آتش فشاں}} +{{label|en|volcano}} + +| comments = +{{comment|ur|آتش فشاں فی الحال قدرتی جگہ کا ذیلی طبقہ ہے، لیکن اسے پہاڑ بھی سمجھا جا سکتا ہے}} +{{comment|en|A volcano is currently subclass of naturalplace, but it might also be considered a mountain.}} + +| rdfs:subClassOf = قدرتی جگہ +| owl:equivalentClass = wikidata:Q8072 +}}OntologyClass:آثار قدیمہ20013923578882022-05-05T08:54:14Z{{Class +| labels = +{{label|en|archaea}} +{{label|ur|آثار قدیمہ}} +| rdfs:subClassOf = قسم +}}OntologyClass:آجر20013453583412022-05-14T05:34:21Z{{Class +| labels = +{{label|ur|آجر}} + +| comments = +{{comment|ur|آجر وہ ہے جو ملازمت کے معاہدے کی وجہ سے ملازم سے کام کا مطالبہ کر سکتا ہے اور جس پر اجرت واجب الادا ہے۔}} + +| rdfs:subClassOf = نمائندہ +| owl:equivalentClass = wikidata:Q3053337 +}}OntologyClass:آدمی20013887577042022-04-26T11:20:56Z{{Class +| labels = +{{label|en|man}} + +{{label|ur|آدمی}} +| rdfs:subClassOf = شخص +| owl:equivalentClass = wikidata:Q8441 +}}OntologyClass:آسٹریلوی رولز فٹ بال پلیئر20013403579692022-05-06T02:25:03Z{{Class +| labels = + {{label|en|Australian rules football player}} + {{label|ur|آسٹریلوی رولز فٹ بال پلیئر}} +| rdfs:subClassOf = کھلاڑی +| owl:equivalentClass = wikidata:Q13414980 +}}OntologyClass:آسٹریلوی فٹ بال ٹیم20013442556252021-09-15T10:21:59Z{{Class +| labels = +{{label|ur|آسٹریلوی فٹ بال ٹیم}} +{{label|en|australian football Team}} + +| rdfs:subClassOf = کھیل کی ٹیم +}}OntologyClass:آسٹریلوی فٹ بال کی انجمن20013347579682022-05-06T02:21:39Z{{Class +| labels = +{{label|ur|آسٹریلوی فٹ بال کی انجمن}} +{{label|en|australian football league}} +| comments = +{{comment|ur|کھیلوں کی ٹیموں کا ایک گروپ جو آسٹریلین فٹ بال میں ایک دوسرے کے خلاف مقابلہ کرتا ہے}} +{{comment|en|A group of sports teams that compete against each other in australian football.}} +| rdfs:subClassOf = کھیلوں کی انجمن +}}OntologyClass:آلہ20013255578232022-05-01T15:34:11Z{{Class +| labels = +{{label|ur|آلہ}} +{{label|en|device}} + +| rdfs:subClassOf = owl:Thing +}}OntologyClass:آنکھ کا جالا20013603586232022-05-15T08:16:04Z{{Class +|labels= + {{label|en|Nebula}} +{{label|ur|آنکھ کا جالا}} +| owl:disjointWith = شخص + +| rdfs:subClassOf = جرم فلکی + +}}OntologyClass:آواز20013710586672022-05-15T10:44:01Z{{Class +| labels = +{{label|ur|آواز}} +{{label|en|sound}} +| comments = +{{comment|ur|صوتی لہروں کے ذریعے سماعت کے حسی اعضاء سے محرک ہوا کے دباؤ میں تبدیلی}} +| rdfs:subClassOf = دستاویز +}}OntologyClass:آوازکا اداکار20014090584712022-05-14T18:36:05Z{{Class +| labels = +{{label|ur|آوازکا اداکار}} +{{label|en|voice actor}} + +| rdfs:subClassOf = اداکار +}}OntologyClass:اجسامِ آب20013330578252022-05-01T17:45:26Z{{Class +|labels = +{{label|en|body of water}} +{{label|ur|اجسامِ آب}} + + +| rdfs:subClassOf = قدرتی جگہ +| owl:equivalentClass = schema:BodyOfWater +}}OntologyClass:اخبار20013605586242022-05-15T08:18:13Z{{Class +| labels = +{{label|en|newspaper}} +{{label|ur|اخبار}} + +| rdfs:subClassOf =متواتر ادب +| comments = +{{comment|en|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.}} + +{{comment|ur|اخبار ایک باقاعدہ شیڈول اشاعت ہے جس میں موجودہ واقعات، معلوماتی مضامین، متنوع خصوصیات اور اشتہارات کی خبریں ہوتی ہیں۔ یہ عام طور پر نسبتاً سستے، کم درجے کے کاغذ پر پرنٹ کیا جاتا ہے جیسے نیوز پرنٹ۔}} + + +| owl:equivalentClass = wikidata:Q11032 +}}OntologyClass:اداکار20013235577102022-04-26T11:28:26Z{{Class +| labels = +{{label|en|actor}} +{{label|ur|اداکار}} +| comments = +{{comment|en|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.}} +{{comment|ur|ایک اداکار یا اداکارہ وہ شخص ہوتا ہے جو ڈرامائی پروڈکشن میں کام کرتا ہے اور جو فلم ، ٹیلی ویژن ، تھیٹر یا ریڈیو میں اس صلاحیت کے ساتھ کام کرتا ہے}} +| rdfs:subClassOf = فنکار +| owl:equivalentClass = wikidata:Q33999 +}}OntologyClass:ادبی صنف20013635585552022-05-14T20:52:44Z{{Class +|labels= +{{label|en|literary genre}} +{{label|ur|ادبی صنف}} +| comments = +{{comment|en|Genres of literature, e.g. Satire, Gothic}} +{{comment|ur|ادب کی انواع، جیسے طنزیہ، غیر مہذب}} +| rdfs:subClassOf = صنف +}}OntologyClass:ارضیاتی دورانیہ20013468581682022-05-12T19:21:41Z{{Class +|labels= +{{label|ur|ارضیاتی دورانیہ}} +{{label|en|geological period}} +| rdfs:subClassOf = وقت کی مدت +| owl:disjointWith = شخص +| owl:equivalentClass = wikidata:Q392928 +}}OntologyClass:اسپورٹس لیگ20013363554342021-09-13T07:57:29Z{{Class +| labels = +{{label|en|sports league}} + +{{label|ur|کھیلوں کی انجمن}} +| comments = +{{comment|en|A group of sports teams or individual athletes that compete against each other in a specific sport.}} +{{comment|ur|کھیلوں کی ٹیموں یا انفرادی کھلاڑیوں کا ایک گروہ جو ایک مخصوص کھیل میں ایک دوسرے کے خلاف مقابلہ کرتے ہیں۔}} +| rdfs:subClassOf = تنظیم۔ +| owl:equivalentClass = wikidata:Q623109 +}}OntologyClass:اسکی باز20013707586792022-05-15T11:54:16Z{{Class +| labels = +{{label|en|skier}} +{{label|ur|اسکی باز}} +| rdfs:subClassOf = سرمائی کھیل کھیلنے والا +| owl:equivalentClass = wikidata:Q4270517 +}}OntologyClass:اسکی کاعلاقہ20013706586782022-05-15T11:52:02Z{{Class +| labels = +{{label|en|ski area}} +{{label|ur|اسکی کاعلاقہ}} +| rdfs:subClassOf = کھیل کی سہولت +| owl:equivalentClass = schema:SkiResort +}}OntologyClass:اسکیٹ کرنے والا20013761586412022-05-15T10:18:33Z{{Class +| labels = +{{label|en|skater}} +{{label|ur|اسکیٹ کرنے والا}} +| rdfs:subClassOf =سرمائی کھیل کھیلنے والا +| owl:equivalentClass = wikidata:Q847400 +}}OntologyClass:اشرافیہ20013398579122022-05-05T11:21:49Z{{Class +| labels = +{{label|en|aristocrat}} +{{label|ur|اشرافیہ}} +| rdfs:subClassOf = شخص}}OntologyClass:اعصاب20013652585992022-05-15T07:39:54Z{{Class +| labels = +{{label|en|nerve}} +{{label|ur|اعصاب}} +| rdfs:subClassOf = جسمانی ساخت +| owl:equivalentClass = wikidata:Q9620 +}}OntologyClass:اعضاء کی خوراک20013371584692022-05-14T18:33:28Z{{Class +| labels = + {{label|en|Hormone}} +{{label|ur|اعضاء کی خوراک}} +| comments = + {{comment|en|A hormone is any member of a class of signaling molecules produced by glands in multicellular organisms that are transported by the circulatory system to target distant organs to regulate physiology and behaviour.}} + +{{comment|ur|ایک مادہ جو غدود سے نکل کر خون میں شامل ہوتا ہےاورگردش کے نظام کے ذریعے دور دراز کے اعضاء کو نشانہ بناتے ہیں تاکہ جسمانیات اور طرز عمل کو کنٹرول کریں}} + +| rdfs:subClassOf = حیاتیاتی مرکبات +| owl:equivalentClass = wikidata:Q8047 +}}OntologyClass:اعلی انعام20013653586022022-05-15T07:43:26Z{{Class +| labels = + {{label|en|Nobel Prize}} + {{label|ur| اعلی انعام }} + +| rdfs:subClassOf = انعام +| owl:equivalentClass = wikidata:Q7191 +}}OntologyClass:اعلی درجےکاموسیقی فنکار20013134576802022-04-25T11:14:53Z{{Class +| labels = +{{label|en|classical music artist}} +{{label|ur|اعلی درجےکاموسیقی فنکار}} +| comments = + +{{comment|ur|لڈوگ وان بیتھوون ، جرمن موسیقار اور پیانو بجانے والے ، اعلی درجے موسیقی کے ایک عظیم فنکار تھے۔}} +| rdfs:subClassOf = موسیقی کا فنکار +}}OntologyClass:اعلی پانی میں ڈبکی لگانے والا20013527559542021-09-18T06:16:31Z{{Class +|labels= +{{label|ur|اعلی پانی میں ڈبکی لگانے والا}} +|rdfs:subClassOf=کھلاڑی +}}OntologyClass:افسانه20013609585512022-05-14T20:44:33Z افسانه{{Class +| labels = +{{label|en| novel}} +{{label|ur|افسانه}} +| rdfs:subClassOf = کتاب +| comments = +{{comment|en| A book of long narrative in literary prose<ref name="novel">http://en.wikipedia.org/wiki/Novel</ref>}} + +{{comment|ur| ادبی نثر میں طویل داستان کی کتاب>http://en.wikipedia.org/wiki/Novel</ref>}} + + +| owl:equivalentClass = wikidata:Q8261 +}} +==References== +<references/>OntologyClass:افسانوی شکل20013774577772022-04-26T13:07:49Z{{Class +| labels = +{{label|en|mythological figure}} +{{label|ur|افسانوی شکل}} + + +| rdfs:subClassOf = خیالی کردار +<!-- this is not always correct --> +| owl:equivalentClass = wikidata:Q15410431 +}}OntologyClass:افسانوی کردار20013593586262022-05-15T08:27:47Z{{Class +| labels = +{{label|en|naruto character}} +{{label|ur|افسانوی کردار}} +| rdfs:subClassOf =خیالی کردار + +}}OntologyClass:افضل20013845574962022-04-24T10:44:29Z{{Class +| labels = + +{{label|en|cardinal}} + +{{label|ur| افضل}} + +| rdfs:subClassOf = پادری +}}OntologyClass:اقتباس20013955580322022-05-07T11:26:58Z{{Class +| labels = + {{label|en|Quote}} +{{label|ur|اقتباس}} + +| rdfs:subClassOf = تحریری کام +| owl:equivalentClass = +}}OntologyClass:اقتدارکا تاریخی علاقہ20013203550812021-09-09T15:22:08Z{{Class +| labels = +{{label|en|ancient area of jurisdiction of a person (feudal) or of a governmental body}} +{{label|ur|کسی شخص (جاگیردار) یا سرکاری ادارے کے دائرہ اختیار کا قدیم علاقہ}} +{{label|nl|gebied dat vroeger onder het gezag viel van een heer of vrouwe of een instelling van kerk of staat}} +| comments = +{{comment|en|Mostly for feudal forms of authority, but can also serve for historical forms of centralised authority}} +{{comment|ur|زیادہ تر اختیارات کی جاگیردارانہ شکلوں کے لیے ، لیکن مرکزی اختیار کی تاریخی شکلوں کے لیے بھی کام کر سکتا ہے}} +| rdfs:subClassOf = AdministrativeRegion +| owl:equivalentClass = +}}OntologyClass:امریکن فٹ بال لیگ20013391577462022-04-26T12:16:33Z{{Class +| labels = +{{label|en|american football league}} +{{label|ur| امریکن فٹ بال لیگ}} +| comments = +{{comment|en|A group of sports teams that compete against each other in american football.}} +{{comment|ur|کھیلوں کی ٹیموں کا ایک گروپ جو امریکی فٹ بال میں ایک دوسرے کے خلاف مقابلہ کرتے ہیں۔.}} + +| rdfs:subClassOf = کھیلوں کی انجمن +}}OntologyClass:امریکن فٹ بال ٹیم20013383584332022-05-14T16:43:16Z{{Class +| labels = + +{{label|en|american football Team}} + +{{label|ur|امریکن فٹ بال ٹیم}} +| rdfs:subClassOf = کھیل کی جماعت +}}OntologyClass:امریکن فٹ بال کوچ20013384555032021-09-13T09:36:34Z{{Class +| labels = +{{label|en|american football coach}} + +{{label|ur|امریکن فٹ بال کوچ}} +| rdfs:subClassOf = تربیت کرنے والا +}}OntologyClass:امریکی رہنما20013901577492022-04-26T12:18:27Z{{Class +| labels = + {{label|en|American Leader}} + {{label|ur|امریکی رہنما}} +| rdfs:subClassOf = شخص +}}OntologyClass:امریکی فٹ بال کھلاڑی20013297577522022-04-26T12:20:50Z{{Class +| labels = +{{label|en|american football player}} +{{label|ur|امریکی فٹ بال کھلاڑی}} +| rdfs:subClassOf = گرڈیرون فٹ بال کھلاڑی +| owl:equivalentClass = wikidata:Q14128148 +}}OntologyClass:ان لائن ہاکی انجمن20013920587632022-05-16T19:37:55Z{{Class +| rdfs:subClassOf =کھیلوں کی انجمن +| labels = +{{label|ur|ان لائن ہاکی انجمن}} +{{label|en|inline hockey league}} + +| comments = +{{comment|ur|کھیلوں کی ٹیموں کا گروپ جو ان لائن ہاکی میں ایک دوسرے سے مقابلہ کرتے ہیں۔}} + +{{comment|en| group of sports teams that compete against each other in Inline Hockey.}} + +}}OntologyClass:انتخابات20013540560262021-09-19T11:54:05Z{{Class +| labels = +{{label|ur|انتخابات}} +| rdfs:subClassOf = معاشرتی واقعہ +| owl:equivalentClass = wikidata:Q40231 +}}OntologyClass:انتخابات کا خاکہ20013450556402021-09-16T12:40:21Z{{Class +| labels = +{{label|ur| انتخابات کا خاکہ}} +| rdfs:subClassOf = owl:Thing +}}OntologyClass:انتظامی علاقہ20013137574612022-04-24T09:18:01Z{{Class +| labels = +{{label|en|administrative region}} +{{label|ur|انتظامی علاقہ}} +| comments = + +{{comment|ur|(نتظامی علاقہ)انتظامی ادارے کے دائرہ اختیار میں ایک آبادی والی جگہ۔ یہ ادارہ یا تو ایک پورے علاقے یا ایک یا اس سے ملحقہ بستیوں کا انتظام کر سکتا ہے }} +{{comment|en|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)}} +| rdfs:subClassOf = علاقہ +| owl:equivalentClass = schema:AdministrativeArea, wikidata:Q3455524 +}}OntologyClass:انجمن فٹ بال موسم20013689586842022-05-15T12:07:54Z{{Class +| labels = + +{{label|en|soccer league season}} +{{label|ur| انجمن فٹ بال موسم}} + +| rdfs:subClassOf = کھیل کی ٹیم کا موسم + +}}OntologyClass:انجن20013405579582022-05-06T01:58:03Z{{Class +| labels = +{{label|en|engine}} +{{label|ur|انجن}} +| rdfs:subClassOf = آلہ +| specificProperties = {{SpecificProperty | ontologyProperty = acceleration | unit = second }} + {{SpecificProperty | ontologyProperty = displacement | unit = cubicCentimetre }} + {{SpecificProperty | ontologyProperty = weight | unit = kilogram }} + {{SpecificProperty | ontologyProperty = torqueOutput | unit = newtonMetre }} + {{SpecificProperty | ontologyProperty = width | unit = millimetre }} + {{SpecificProperty | ontologyProperty = pistonStroke | unit = millimetre }} + {{SpecificProperty | ontologyProperty = co2Emission | unit = gramPerKilometre }} + {{SpecificProperty | ontologyProperty = cylinderBore | unit = millimetre }} + {{SpecificProperty | ontologyProperty = length | unit = millimetre }} + {{SpecificProperty | ontologyProperty = height | unit = millimetre }} + {{SpecificProperty | ontologyProperty = topSpeed | unit = kilometrePerHour }} + {{SpecificProperty | ontologyProperty = powerOutput | unit = kilowatt }} + {{SpecificProperty | ontologyProperty = diameter | unit = millimetre }} +}}OntologyClass:انسانی نَسبہ20013649569262022-03-04T07:07:27Z{{ Class +|labels= +{{label|ur|انسانی نَسبہ}} +{{label|en|HumanGene}} +| rdfs:subClassOf = نَسبہ +}}OntologyClass:انسانی نَسبہ کا مقام20013656569282022-03-05T04:53:28Z{{Class +| labels = +{{label|en|HumanGeneLocation}} +{{label|ur|انسانی نَسبہ کا مقام}} +| rdfs:subClassOf =نَسبہ کا مقام +}}OntologyClass:انعام20013263579592022-05-06T02:00:15Z{{Class +| labels = +{{label|en|award}} +{{label|ur|انعام}} +| rdfs:subClassOf = owl:Thing +| owl:equivalentClass = wikidata:Q618779 +}}OntologyClass:انگور20013517581762022-05-12T19:46:38Z{{Class +| labels = +{{label|ur|انگور}} +{{label|en| grape}} +| rdfs:subClassOf = پھولوں کا پودا +| owl:equivalentClass = wikidata:Q10978 +}}OntologyClass:انیمنگا کردار20013300577792022-05-01T10:46:05Z{{Class +| labels = {{label|en|animanga character}} +{{label|ur|انیمنگا کردار}} +| comments = {{comment|en|Anime/Manga character}} +| rdfs:subClassOf = مُضحِکہ خیزکردار +}}OntologyClass:انیمے20013922578842022-05-05T08:42:52Z{{Class +| labels = +{{label|en|Anime}} +{{label|ur|انیمے}} +| comments = +{{comment|en|A style of animation originating in Japan}} +{{comment|ur|حرکت پذیری کا ایک انداز جاپان میں شروع ہوا۔}} +| rdfs:subClassOf = کارٹون +| owl:equivalentClass = wikidata:Q1107 +}} + +<ref name="anime">http://en.wikipedia.org/wiki/Anime</ref> +==References== +<references/>OntologyClass:اولمپک کا نتیجہ20013941579752022-05-06T04:54:13Z{{Class +|labels= + {{label|en|olympic result}} + {{label|ur|اولمپک کا نتیجہ}} +| rdfs:subClassOf = کھیلوں کے مقابلے کا نتیجہ +}}OntologyClass:اولمپک کھیلوں کی تقریب20013670579732022-05-06T02:50:17Z{{Class +| labels = +{{label|en|olympic event}} +{{label|ur|اولمپک کھیلوں کی تقریب}} +| rdfs:subClassOf = اولمپکس +}}OntologyClass:اولمپکس20013666579772022-05-06T04:58:21Z{{Class +| labels = +{{label|en|olympics}} +{{label|ur|اولمپکس}} +| rdfs:subClassOf = کھیلوں کی تقریب +}}OntologyClass:اونچائی سے پانی میں ڈبکی لگانے والا20014094584872022-05-14T19:02:56Z{{Class +|labels= + +{{label|en|high diver}} +{{label|ur| اونچائی سے پانی میں ڈبکی لگانے والا }} +|rdfs:subClassOf=کھلاڑی +}}OntologyClass:اوپر سطح کی ڈومین20014044583252022-05-13T17:43:08Z{{Class +| labels= +{{label|ur|اوپر سطح کی ڈومین}} +{{label|en|top level domain}} + +| specificProperties = +| rdfs:subClassOf = شناخت کنندہ +| owl:equivalentClass = wikidata:Q14296 +}}OntologyClass:اڈا20013795579982022-05-06T10:35:28Z{{Class +| labels = +{{label|ur|اڈا}} + {{label|en|station}} +| rdfs:subClassOf = بنیادی ڈھانچہ +| comments = +{{comment|ur|پبلک ٹرانسپورٹ اسٹیشن (مثلاً ریلوے اسٹیشن، میٹرو اسٹیشن، بس اسٹیشن)}} +{{comment|en|Public transport station (eg. railway station, metro station, bus station).}} +| owl:equivalentClass = wikidata:Q719456 +}}OntologyClass:اڈل20013940579652022-05-06T02:17:33Z{{Class +| labels = +{{label|en|atoll}} +{{label|ur|اڈل}} +|comments= +{{comment|ur|مرجانی چٹانوں سے بنا ہواجزیرہ}} +| rdfs:subClassOf =جزیرہ +}}OntologyClass:ایئر لائن20013236551582021-09-10T11:11:33Z{{Class +| labels = +{{label|en|airline}} +{{label|ur|ہوائی راستہ}} +|comments= +{{comment|ur|ہوائی جہازوں کے ذریعے سواریاں لے جانے والی تنظیم}} +| rdfs:subClassOf = PublicTransitSystem +| owl:equivalentClass = wikidata:Q46970 +}}OntologyClass:ایٹمی بجلی گھر20013655586062022-05-15T07:47:15Z{{Class +| labels = +{{label|en|Nuclear Power plant}} +{{label|ur|ایٹمی بجلی گھر}} +| rdfs:subClassOf =بجلی گھر +| owl:equivalentClass = wikidata:Q134447 +}}OntologyClass:ایک تدفین کی جگہ20013880576642022-04-25T09:28:32Z{{Class +| labels = +{{label|en|cemetery}} + +{{label|ur|قبرستان}} + +} + +| comments = +{{comment|en|A burial place}} +{{comment|ur|ایک تدفین کی جگہ}} +| rdfs:subClassOf = جگہ +| owl:equivalentClass = wikidata:Q39614 +}} + +== References == + +<references/>OntologyClass:ایک فہرست20014127586772022-05-15T11:50:27Z{{Class +| labels = + {{label|en|single list}} + {{label|ur|ایک فہرست}} + +| comments = + {{comment|en|A list of singles}} +{{comment|ur|اِنفرادی فہرست}} + +| rdfs:subClassOf = فہرست +}}OntologyClass:بائیتھلیٹ20013326553542021-09-11T19:03:58Z{{Class +| labels = +{{label|en|Biathlete}} +{{label|ur|بائیتھلیٹ}} +{{label|nl|Biatleet}} +{{label|de|Biathlete}} +{{label|fr|Biathlète}} +{{label|ja|バイアスロン選手}} +|comments= +{{comment|ur|ایک کھلاڑی جو بائاتھلون(کراس کنٹری سکینگ اور رائفل شارپ شوٹنگ پر مشتمل ایک جامع مقابلہ) میں مقابلہ کرتا ہے}} +| rdfs:subClassOf = WinterSportPlayer +}}OntologyClass:بادشاہ20013745580042022-05-06T10:57:15Z{{Class +| labels = + +{{label|ur|بادشاہ}} +{{label|en|monarch}} + + +|rdfs:subClassOf=شخص +| owl:equivalentClass = wikidata:Q116 +}}OntologyClass:باسکٹ بال کھلاڑی20013353578192022-05-01T15:22:39Z{{Class +| labels = +{{label|ur|باسکٹ بال کھلاڑی}} +{{label|en|basketball player}} +| rdfs:subClassOf = کھلاڑی +|comments = +{{comment|ur|باسکٹ بال کے کھیل میں شامل ایک کھلاڑی}} +| owl:equivalentClass = wikidata:Q3665646 +}}OntologyClass:باسکٹ بال کی انجمن20013911578132022-05-01T15:15:16Z{{Class +| rdfs:label@en = basketball league + + + +|labels = + + +{{label|ur|باسکٹ بال کی انجمن}} +| rdfs:comment@en = a group of sports teams that compete against each other in Basketball +| comments = {{comment|ur|کھیلوں کی ٹیموں کا ایک گروپ جو باسکٹ بال میں ایک دوسرے سے مقابلہ کرتا ہے}} + +| rdfs:subClassOf = کھیلوں کی انجمن +}}OntologyClass:باسکٹ بال کی جماعت20013185587352022-05-16T18:26:21Z{{Class +| labels = +{{label|ur|باسکٹ بال کی جماعت}} +{{label|en|basketball team}} +| rdfs:subClassOf = کھیل کی جماعت + +}}OntologyClass:باغ20013229581652022-05-12T19:16:06Z{{Class +| labels = +{{label|ur|باغ}} +{{label|en|garden}} +| comments = +{{comment|ur|باغ ایک منصوبہ بند جگہ ہے ، عام طور پر باہر ، ڈسپلے ، کاشت ، اور پودوں اور فطرت کی دیگر اقسام سے لطف اندوز ہونے کے لیے + (http://en.wikipedia.org/wiki/Garden)}} +{{comment|en|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)}} +| rdfs:subClassOf = جگہ +| owl:equivalentClass = wikidata:Q1107656 +}}OntologyClass:بالغ اداکار20013588577092022-04-26T11:27:29Z{{Class +| labels = +{{label|en|adult (pornographic) actor}} +{{label|ur|بالغ اداکار}} +| comments = +{{comment|en|A pornographic actor or actress or a porn star is a person who performs sex acts in film, normally characterised as a pornographic film.}} +{{comment|ur|ایک فحش اداکار یا اداکارہ یا پورن سٹار وہ شخص ہوتا ہے جو فلم میں جنسی حرکتیں کرتا ہے، عام طور پر اسے فحش فلم کے طور پر دیکھا جاتا ہے۔}} +| owl:equivalentClass = wikidata:Q488111 +| rdfs:subClassOf = اداکار +}}OntologyClass:بالنگ ٹیموں کی انجمن20013244578512022-05-02T12:00:48Z{{Class +| labels = +{{label|ur|بالنگ_ٹیموں_کی_انجمن}} +{{label|en|bowling league}} +| rdfs:subClassOf = کھیلوں کی انجمن +|comments = +{{comment|ur|کھیلوں کی ٹیموں یا کھلاڑیوں کا ایک گروہ جو بولنگ میں ایک دوسرے کے خلاف مقابلہ کرتے ہیں۔}} +{{comment|en|a group of sports teams or players that compete against each other in Bowling}} +}}OntologyClass:باورچی20013848575182022-04-24T11:32:36Z{{Class +| labels = + +{{label|en|chef}} + +{{label|ur|باورچی}} + +| comments = +{{comment|en|a person who cooks professionally for other people}} +{{comment|ur|وہ شخص جو پیشہ ورانہ طور پر دوسرے لوگوں کے لیے کھانا پکاتا ہے۔}} +| rdfs:subClassOf = شخص +}}OntologyClass:باہمی مقابلہ20013156582542022-05-13T10:36:58Z{{Class +| labels = +{{label|ur|باہمی مقابلہ}} +{{label|en|tournament}} +| rdfs:subClassOf = کھیلوں کی تقریب +| owl:equivalentClass = wikidata:Q500834 +}}OntologyClass:بجلی گھر20013657563142022-02-16T12:33:43Z{{Class +| labels = + {{label|en|power station}} + + {{label|ur|بجلی گھر}} +| rdfs:subClassOf = بنیادی ڈھانچہ +| owl:equivalentClass = wikidata:Q159719 +}}OntologyClass:برادری20013589575572022-04-24T14:43:04Z{{Class +| labels = +{{label|en|Community}} +{{label|ur|برادری}} +| rdfs:subClassOf = آبادی والی جگہ +| comments = +{{comment|en| A community is a group of living organisms, people, plants or animals that live in a common environment. }} +{{comment|ur|کمیونٹی جانداروں، لوگوں، پودوں یا جانوروں کا ایک گروپ ہے جو ایک مشترکہ ماحول میں رہتے ہیں۔}} +}}OntologyClass:برازیلی رقص سکول20013679586432022-05-15T10:20:46Z{{Class +| labels = +{{label|en| samba school}} +{{label|ur|برازیلی رقص سکول}} +| rdfs:subClassOf = تنظیم +}}OntologyClass:براعظم20013170576912022-04-25T11:37:22Z{{Class +| labels = +{{label|en|continent}} +{{label|ur|براعظم}} +| rdfs:subClassOf = آبادی والی جگہ +| owl:equivalentClass = schema:Continent +|comments = +{{comment|ur|براعظم زمین کا ایک بڑا علاقہ ہے جو زمین کی پرت سے نکلا ہے ، درحقیقت یہ ان سب سے بڑی تقسیم ہے جس کے ساتھ ابھرتی ہوئی زمینیں تقسیم کی گئی ہیں۔}} +}} +== References == +<references />OntologyClass:براڈکاسٹ نیٹ ورک20013416555702021-09-15T08:16:55Z{{Class +| labels = +{{label|en|broadcast network}} +{{label|el|δίκτυο ραδιοφωνικής μετάδοσης}} +{{label|de|Sendergruppe}} +{{label|fr|chaîne de télévision généraliste}} +{{label|ur| +براڈکاسٹ نیٹ ورک}} +{{label|ga|líonra craolacháin}} +{{label|ja|ネットワーク_(放送)}} +{{label|nl|omroeporganisatie}} +{{label|pl|sieć emisyjna}} +{{label|ko| 브로드캐스트 네트워크}} +{{label|it|emittente}} +| rdfs:subClassOf = Broadcaster +| comments = +{{comment|en|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)}} +{{comment|ur|براڈکاسٹ نیٹ ورک ایک تنظیم ہے ، جیسے کارپوریشن یا دیگر ایسوسی ایشن ، جو ریڈیو یا ٹیلی ویژن اسٹیشنوں کے گروپ پر نشر کرنے کے لیے لائیو یا ریکارڈ شدہ مواد ، جیسے فلمیں ، نیوز کاسٹ ، کھیل اور عوامی امور کے پروگرام مہیا کرتی ہے۔ +)}} +{{comment|el|Ένα δίκτυο μετάδοσης είναι μια οργάνωση, όπως μια εταιρεία ή άλλη ένωση, που παρέχει ζωντανό ή μαγνητοσκοπημένο περιεχόμενο, όπως ταινίες, δελτία ειδήσεων, αθλητικά, και τα προγράμματα δημοσίων υποθέσεων για την εκπομπή πάνω από μια ομάδα ραδιοφωνικών ή τηλεοπτικών σταθμών}} +| owl:equivalentClass = wikidata:Q141683 +}}OntologyClass:برطانوی بادشاہی20013250587332022-05-16T17:55:05Z{{Class +| labels = +{{label|ur|برطانوی بادشاہی}} +{{label|en|British royalty}} +| rdfs:subClassOf = شاہی +}}OntologyClass:برف پر پھسلنے میں جِسمانی ورزِشوں کا مُقابلہ کا کھلاڑی20013915578332022-05-01T18:30:48Z{{Class +| labels = + +{{label|ur|برف پر پھسلنے میں جِسمانی ورزِشوں کا مُقابلہ کا کھلاڑی}} + +{{label|en|Biathlete}} +| rdfs:subClassOf = سرمائی کھیل کھیلنے والا +}}OntologyClass:برف کا تودہ20013472582352022-05-13T09:40:28Z{{Class +| labels = +{{label|ur|برف کا تودہ}} +{{label|en|glacier}} +| rdfs:subClassOf = قدرتی جگہ +| owl:equivalentClass = wikidata:Q35666 +}}OntologyClass:برفانی ہاکی کا کھلاڑی20013660587542022-05-16T19:27:47Z{{Class +| labels = + +{{label|ur|برفانی ہاکی کا کھلاڑی}} +{{label|en|ice hockey player}} +| rdfs:subClassOf = سرمائی کھیل کھیلنے والا +| owl:equivalentClass = wikidata:Q11774891 +}}OntologyClass:برفانی ہاکی کی انجمن20014142587682022-05-16T19:44:01Z{{Class +| labels = +{{label|ur|برفانی ہاکی کی انجمن}} +{{label|en|ice hockey league}} + +| rdfs:subClassOf =کھیلوں کی انجمن +| comments = + +{{comment|ur|کھیلوں کی ٹیموں کا ایک گروپ جو برفانی ہاکی میں ایک دوسرے سے مقابلہ کرتا ہے}} +{{comment|en|a group of sports teams that compete against each other in Ice Hockey.}} +}}OntologyClass:برقی ذیلی مرکز20013287583402022-05-14T05:32:01Z{{Class +| labels = + {{label|ur|برقی ذیلی مرکز}} + +|comments= +{{comment|ur|برقی ذیلی مرکزوولٹیج کو زیادہ سے کم، یا برعکس میں تبدیل کرتے ہیں۔}} + +| rdfs:subClassOf = بنیادی ڈھانچہ +}}OntologyClass:برقی طاقت پیدا کرنے کا آلہ20013912578212022-05-01T15:31:40Z{{Class +| labels = + +{{label|ur|برقی طاقت پیدا کرنے کا آلہ}} +{{label|en|battery}} +| comments = +{{comment|ur|بیٹری (قسم) گاڑیوں میں توانائی کے منبع کے طور پر استعمال ہوتی ہے}} +{{comment|en|The battery (type) used as energy source in vehicles.}} +| rdfs:domain = MeanOfTransportation +| rdfs:subClassOf =آلہ +| owl:equivalentClass = wikidata:Q267298 +}}OntologyClass:بس كا تِجارتی اِدارہ20014140587512022-05-16T19:08:32Z{{Class +| labels = + +{{label|ur|بس كا تِجارتی اِدارہ}} +{{label|en|bus company}} + +| rdfs:subClassOf = عوامی راہداری کا نظام +}}OntologyClass:بستی20013282574922022-04-24T10:37:18Z{{Class +| labels = +{{label|en|settlement}} +{{label|ur|بستی}} +| rdfs:subClassOf = آبادی والی جگہ +| owl:equivalentClass = wikidata:Q486972 +}}OntologyClass:بشپ کے تحت حلقہ20014039583102022-05-13T16:46:50Z{{Class +| labels = +{{label|ur|بشپ کے تحت حلقہ}} +| comments = +{{comment|ur|ڈسٹرکٹ یا ایک بشپ کی نگرانی میں دیکھیں۔}} +| rdfs:subClassOf = علمی انتظامی علاقہ +}}OntologyClass:بصری کھیل20014074584072022-05-14T14:37:27Z{{Class +| labels = +{{label|ur|بصری کھیل}} +{{label|en|video game}} + +| comments = +{{comment|ur|بصری کھیل ایک الیکٹرانک گیم ہے جس میں ویڈیو ڈیوائس پر بصری تاثرات پیدا کرنے کے لیے صارف کے انٹرفیس کے ساتھ تعامل شامل ہوتا ہے}} +{{comment|en|A video game is an electronic game that involves interaction with a user interface to generate visual feedback on a video device.}} +| rdfs:subClassOf = تحریری پروگراموں کا مجموعہ +| owl:equivalentClass = wikidata:Q7889 +}}OntologyClass:بصری کھیلوں کی انجمن20014085584432022-05-14T17:08:35Z{{Class +| labels = +{{label|ur|بصری کھیلوں کی انجمن}} +{{label|en|videogames league}} + +| comments = +{{comment|ur|کھیلوں کی ٹیموں کا ایک گروپ یا شخص جو بصری کھیلوں میں ایک دوسرے سے مقابلہ کرتا ہے}} +{{comment|en|A group of sports teams or person that compete against each other in videogames.}} + +| rdfs:subClassOf = کھیلوں کی انجمن +}}OntologyClass:بغیر پُہولوں کا سدا بہار پودا20013329576132022-04-24T17:44:55Z{{Class +| labels = +{{label|en|club moss}} +{{label|ur|بغیر پُہولوں کا سدا بہار پودا}} +| rdfs:subClassOf = پودا +}}OntologyClass:بلدیہ20013585579812022-05-06T07:28:51Z{{Class +| labels = +{{label|ur|بلدیہ}} +{{label|en|municipality}} +| comments = +{{comment|ur|ایک انتظامی ادارہ جو نچلی سطح پر علاقائی اتحاد کو کنٹرول کرتا ہے، ایک یا چند مزید بستیوں کا انتظام کرتا ہے}} +{{comment|en|An administrative body governing a territorial unity on the lower level, administering one or a few more settlements}} +| rdfs:subClassOf = حکومتی انتظامی علاقہ +| owl:equivalentClass = +}}OntologyClass:بلندی20013377577372022-04-26T12:02:43Z{{Class +| labels = +{{label|en|altitude}} +{{label|ur|بلندی}} +| owl:equivalentClass = wikidata:Q190200 +}}OntologyClass:بلی20013308576032022-04-24T17:07:28Z{{Class +| labels = +{{label|en|cat}} +{{label|ur|بلی}} +| rdfs:subClassOf = تھن والے جانور +| owl:disjointWith = <!--Dog--> <!-- due to a bug cannot declare 2-way disjointness, this is declared in class Dog and transitively applies to cat--> +| owl:equivalentClass = wikidata:Q146 +}}OntologyClass:بلیزن20013412555622021-09-15T08:08:55Z{{Class +| labels = + {{label|en|Blazon}} +{{label|ur|بلیزن}} + {{label|fr|Blason}} + {{label|nl|blazoen (wapenschild)}} + {{label|el|οικόσημο}} + {{label|de|Wappen}} + {{label|ja|紋章記述}} + +| rdfs:subClassOf = owl:Thing +}}OntologyClass:بند20013274557612021-09-17T18:26:13Z{{Class +| labels = + +{{label|ur|بند}} + +| rdfs:subClassOf = بنیادی ڈھانچہ +| comments = +{{comment|ur|بند ایک لمبی قدرتی طور پر واقع رکاوٹ یا مصنوعی طور پر تعمیر شدہ ذخیرہ یا دیوار ہے ، جو پانی کی سطح کو کنٹرول کرتی ہے۔}} +}}OntologyClass:بندرگاہ20013988585822022-05-15T06:45:38Z{{Class +| labels = + {{label|en|Port}} +{{label|ur|بندرگاہ}} + +| comments = +{{comment|en|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.}} +{{comment|ur|ساحل یا ساحل پر ایک مقام جس میں ایک یا زیادہ بندرگاہیں ہوں جہاں بحری جہاز لوگوں یا سامان کو زمین پر یا اس سے منتقل کر سکتے ہیں}} +| rdfs:subClassOf = بنیادی ڈھانچہ +| owl:equivalentClass = wikidata:Q44782 +}}OntologyClass:بندهن20013627585362022-05-14T20:07:44Z{{Class +| rdfs:subClassOf = جسمانی ساخت +| labels = + {{label|en|ligament}} +{{label|ur|بندهن}} +| owl:equivalentClass = wikidata:Q39888 +}}OntologyClass:بنیادی ڈھانچہ20013275587562022-05-16T19:29:37Z{{Class +| labels = + +{{label|ur|بنیادی ڈھانچہ}} +{{label|en|infrastructure}} +| rdfs:subClassOf = تعمیراتی ڈھانچے +}}OntologyClass:بوبسلیگ ایتھلیٹ20013413558202021-09-17T20:36:38Z{{Class +| labels = + +{{label|ur|بوبسلیگ ایتھلیٹ}} + +| rdfs:subClassOf = سرمائی کھیل کھیلنے والا +}}OntologyClass:بوبسلیگ کھلاڑی20013916578462022-05-02T11:36:13Z{{Class +| labels = +{{label|ur|بوبسلیگ کھلاڑی}} +{{label|en|BobsleighAthlete}} +| rdfs:subClassOf = سرمائی کھیل کھیلنے والا +}}OntologyClass:بورڈ کھیل20013240578442022-05-02T11:32:04Z{{Class +| labels = +{{label|ur|بورڈ کھیل}} +{{label|en|board game}} +| rdfs:subClassOf = کھیل +| owl:equivalentClass = wikidata:Q131436 +|comments = +{{comment|ur|ایک بورڈ گیم ایک ایسا کھیل ہے جس کے لیے ایک اچھی طرح سے متعین کردہ سطح کی ضرورت ہوتی ہے ، جسے عام طور پر ایک بورڈ کہا جاتا ہے۔}} +{{comment|en|come from http://en.wikipedia.org/wiki/Category:Board_games}} +}} + +== References == +<references />OntologyClass:بُرج آب20014095584962022-05-14T19:15:09Z{{Class +| labels = +{{label|ur|بُرج آب}} +{{label|en|Water tower}} +| rdfs:subClassOf =مینار +| comments = +{{comment|ur| پانی کی فراہمی کے نظام پر دباؤ برقرار رکھنے کے لیے کچھ بلندی کی جگہ پر پانی کی بڑی مقدار کو ذخیرہ کرنے کے لیے ڈیزائن کیا گیا ایک تعمیر}} +{{comment|en|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}} +| owl:equivalentClass = wikidata:Q274153 +}}OntologyClass:بھورا بونا20013259578632022-05-02T16:10:58Z{{Class +| labels = +{{label|ur|بھورا بونا}} +{{label|en|brown dwarf}} +| rdfs:subClassOf = ستارہ +| owl:equivalentClass = wikidata:Q101600 +}}OntologyClass:بیرون ملک کے محکمے20013765584472022-05-14T17:23:08Z{{Class +| labels = +{{label|en|overseas department}} +{{label|ur|بیرون ملک کے محکمے}} +| rdfs:subClassOf = شعبہ +| owl:equivalentClass = wikidata:Q202216 +}}OntologyClass:بیس بال لیگ20013168558582021-09-17T21:45:16Z{{Class +| labels = + +{{label|ur|بیس بال لیگ}} +| rdfs:subClassOf = کھیلوں کی انجمن + +| comments = +{{comment|ur|کھیلوں کی ٹیموں کا ایک گروہ جو بیس بال میں ایک دوسرے کے خلاف مقابلہ کرتا ہے۔.}} +| owl:equivalentClass = wikidata:Q6631808 +}}OntologyClass:بیس بال کا موسم20013352578052022-05-01T14:55:55Z{{Class +| labels = +{{label|ur|بیس بال کا موسم}} +{{label|en|baseball season}} +| rdfs:subClassOf = کھیل کی ٹیم کا موسم + + +}}OntologyClass:بیس بال کا کھلاڑی20013408578042022-05-01T14:52:35Z{{Class +| labels= + +{{label|ur|بیس بال کا کھلاڑی}} +{{label|en|baseball player}} +| rdfs:subClassOf = کھلاڑی +| comments = +| owl:equivalentClass = wikidata:Q10871364 +}}OntologyClass:بیس بال کی انجمن20013910578022022-05-01T14:48:18Z{{Class +| labels = +{{label|ur|بیس بال کی انجمن}} +{{label|en|baseball league}} +| comments = +{{comment|ur|کھیلوں کی ٹیموں کا ایک گروہ جو بیس بال میں ایک دوسرے کے خلاف مقابلہ کرتا ہے}} +{{comment|en|a group of sports teams that compete against each other in Baseball}} +| rdfs:subClassOf = کھیلوں کی انجمن +| owl:equivalentClass = wikidata:Q6631808 +}}OntologyClass:بیس بال کی جماعت20013178587342022-05-16T18:23:23Z{{Class +| labels = +{{label|ur|بیس بال کی جماعت}} +{{label|en|baseball team}} +| rdfs:subClassOf = کھیل کی جماعت +}}OntologyClass:بیل کا مُقابلہ کرنے والا20013252558402021-09-17T21:24:40Z{{Class +| labels = + {{label|ur|بیل کا مُقابلہ کرنے والا}} + +| rdfs:subClassOf = کھلاڑی +}}OntologyClass:بیماری20013277583132022-05-13T16:51:55Z{{Class +| labels = +{{label|ur|بیماری}} +| rdfs:subClassOf = owl:Thing +| owl:equivalentClass = wikidata:Q12136 +}}OntologyClass:بین الاقوامی تنظیم20013646587642022-05-16T19:39:52Z{{Class +|labels= + +{{label|ur|بین الاقوامی تنظیم}} +{{label|en|international organisation}} +| rdfs:subClassOf=تنظیم + +|comments= + +{{comment|ur|ایک بین الاقوامی تنظیم یا تو ایک نجی یا عوامی تنظیم ہے جو ملک کی سرحدوں سے اہداف حاصل کرنے کی کوشش کرتی ہے۔}} +{{comment|en|An international organisation is either a private or a public organisation seeking to accomplish goals across country borders}} +}}OntologyClass:بین الاقوامی فٹ بال انجمن کی تقریب20014141587602022-05-16T19:34:25Z{{Class +| labels = +{{label|ur|بین الاقوامی فٹ بال انجمن کی تقریب}} +{{label|en|international football league event}} + +| rdfs:subClassOf = کھیلوں کی تقریب +}}OntologyClass:بینک20013407577962022-05-01T12:24:24Z{{Class +| labels = + +{{label|ur|بینک +}} +{{label|en|bank}} + +| rdfs:subClassOf = تِجارتی اِدارہ +| owl:equivalentClass = schema:BankOrCreditUnion +| comments = {{comment|ur|ایک تِجارتی اِدارہ جس کی اہم خدمات بینکنگ یا مالیاتی خدمات ہیں}} +{{comment|en|a company which main services are banking or financial services.}} +}}OntologyClass:بیچ والی بال پلیئر20013411558142021-09-17T20:20:00Z{{Class +| labels = + +{{label|ur|بیچ والی بال پلیئر}} + + +| rdfs:subClassOf = والی بال پلیئر۔ +}}OntologyClass:بیڈمنٹن کا کھلاڑی20013350577932022-05-01T12:10:17Z{{Class +| labels = +{{label|ur|بیڈمنٹن کا کھلاڑی}} +{{label|en|badminton player}} + +| rdfs:subClassOf = کھلاڑی + +}}OntologyClass:بے پھول کا بڑے پتوں والا پودا20013995581302022-05-12T17:04:54Z{{Class +| labels = + +{{label|ur| بے پھول کا بڑے پتوں والا پودا}} +{{label|en| fern}} +| rdfs:subClassOf = پودا +}}OntologyClass:تاریخ سے پہلے کے زمانے کا دور20013992585832022-05-15T06:46:57Z{{Class +|labels= +{{label|en|prehistorical period}} +{{label|ur|تاریخ سے پہلے کے زمانے کا دور}} +| rdfs:subClassOf = وقت کی مدت +| owl:disjointWith = شخص +| owl:disjointWith = تاریخی دور +}}OntologyClass:تاریخی آبادکاری20013523584832022-05-14T18:55:07Z{{Class +| labels = +{{label|en|Historical settlement}} +{{label|ur|تاریخی آبادکاری}} +| comments = +{{comment|en|A place which used to be a city or town or village.}} +{{comment|ur|وہ جگہ جو پہلے شہر یا قصبہ یا گاؤں ہوا کرتی تھی}} +| rdfs:subClassOf = بستی +}}OntologyClass:تاریخی تعمیر20013520559362021-09-18T05:39:19Z{{Class +| labels = +{{label|ur|تاریخی تعمیر}} +| rdfs:subClassOf = عمارت, schema:LandmarksOrHistoricalBuildings +| owl:equivalentClass = +}}OntologyClass:تاریخی دور20013522584822022-05-14T18:52:59Z{{Class +|labels= +{{label|en|historical period}} +{{label|ur|تاریخی دور}} +| comments= +{{comment|en|A historical Period should be linked to a Place by way of the property dct:spatial (already defined)}} + +{{comment|ur|یک تاریخی ادوار کو جائیداد کے ذریعے کسی جگہ سے جوڑا جانا چاہیے۔}} +| rdfs:subClassOf = وقت کی مدت +| owl:equivalentClass = cidoccrm:E4_Period +| owl:disjointWith = شخص +| owl:equivalentClass = wikidata:Q11514315 +}}OntologyClass:تاریخی صوبہ20013532584922022-05-14T19:10:23Z{{Class +| labels = +{{label|en|Historical province}} +{{label|ur|تاریخی صوبہ}} +| comments = + {{comment|en|A place which used to be a province.}} + +{{comment|ur|یک ایسی جگہ جو ایک صوبہ ہوا کرتی تھی۔}} +| rdfs:subClassOf = صوبہ +}}OntologyClass:تاریخی ضلع20013530584892022-05-14T19:06:07Z{{Class +| labels = +{{label|en|Historical district}} +{{label|ur|تاریخی ضلع}} +| comments = +{{comment|en|a place which used to be a district.}} +{{comment|ur|یک ایسی جگہ جو پہلے ضلع ہوتی تھی۔}} +| rdfs:subClassOf = ضلع +}}OntologyClass:تاریخی علاقہ20013205584672022-05-14T18:29:28Z{{Class +| labels = +{{label|en|Historical region}} +{{label|ur|تاریخی علاقہ}} +| comments = +{{comment|en|a place which used to be a region.}} +{{comment|ur|ایک ایسی جگہ جو ایک علاقہ ہوا کرتی تھی}} +| rdfs:subClassOf = علاقہ +| owl:equivalentClass = wikidata:Q1620908 +}}OntologyClass:تاریخی عمارت20014092584742022-05-14T18:42:57Z{{Class +| labels = +{{label|en|historic building}} + +{{label|ur|تاریخی عمارت}} +| rdfs:subClassOf = عمارت +| owl:equivalentClass = +}}OntologyClass:تاریخی مقام20013528584882022-05-14T19:04:22Z +{{Class +| labels = +{{label|en|historic place}} +{{label|ur|تاریخی مقام}} +| rdfs:subClassOf = جگہ +| owl:equivalentClass = +}}OntologyClass:تاریخی ملک20013764584812022-05-14T18:49:37Z{{Class +| labels = +{{label|en|Historical country}} +{{label|ur|تاریخی ملک}} +| comments = +{{comment|en|A place which used to be a country.}} +{{comment|en|ایک ایسی جگہ جو ایک ملک ہوا کرتی تھی۔}} +| rdfs:subClassOf = ملک + +}}OntologyClass:تاریخی واقعہ20013204584662022-05-14T18:27:06Z{{Class +| labels = +{{label|en|historical event}} +{{label|ur|تاریخی واقعہ}} +| comments = +{{comment|en|an event that is clearly different from strictly personal events and had historical impact}} +{{comment|ur|ایک ایسا واقعہ جو ذاتی واقعات سے واضح طورپرمختلف ہوجونمایاں، تاریخ بدلنےوالااثررکھتا ہے}} +| rdfs:subClassOf = معاشرتی واقعہ +}}OntologyClass:تاش20013423576492022-04-25T08:30:13Z{{Class +| labels = +{{label|en|card game}} + +{{label|ur|تاش}} + +|comments = +{{comment|en|come from http://en.wikipedia.org/wiki/Category:Card_games}} +{{comment|ur|سے آئے http://en.wikipedia.org/wiki/زمرہ: کارڈ گیمز }} +| rdfs:subClassOf = کھیل +| owl:equivalentClass = wikidata:Q142714 +}} + + +== References == +<references />OntologyClass:تالا20013637585392022-05-14T20:20:08Z{{Class +| labels = +{{label|en|lock}} +{{label|ur|تالا}} +| rdfs:subClassOf = بنیادی ڈھانچہ +}}OntologyClass:تجارتی ادارہ20013502578572022-05-02T12:23:45Z{{Class +| labels = + +{{label|ur|تِجارتی اِدارہ}} +{{label|en|company}} +| rdfs:subClassOf = تنظیم +| owl:equivalentClass = wikidata:Q4830453 +}}OntologyClass:تحریری پروگراموں کا مجموعہ20013691584102022-05-14T14:40:52Z{{Class +| labels = + +{{label|ur|تحریری پروگراموں کا مجموعہ}} +{{label|en|software}} +| rdfs:subClassOf = کام +| specificProperties = {{SpecificProperty | ontologyProperty = fileSize | unit = megabyte }} +| owl:equivalentClass = wikidata:Q7397 +}}OntologyClass:تحریری کام20013618574572022-04-24T08:58:48Z{{Class +|labels = +{{label|ur|تحریری کام}} +{{label|en|written work}} +| comments = +{{comment|ur|تحریری کام کسی بھی متن کو پڑھنے کے لیے لکھا جاتا ہے (مثال کے طور پر: کتابیں ، اخبار ، مضامین)}} +{{comment|en|Written work is any text written to read it (e.g.: books, newspaper, articles)}} +| rdfs:subClassOf = کام +| owl:equivalentClass = wikidata:Q234460 +}}OntologyClass:تربیت کرنے والا20013141575462022-04-24T14:25:46Z{{Class +| labels = +{{label|en|coach}} +{{label|ur|تربیت کرنے والا}} + +| rdfs:subClassOf = شخص +}}OntologyClass:تشریح20013393578852022-05-05T08:46:59Z{{Class +| labels = +{{label|en|Annotation}} +{{label|ur|تشریح}} +| rdfs:subClassOf = تحریری کام +| owl:equivalentClass = schema:Comment, bibo:Note +}}OntologyClass:تصور20014128586802022-05-15T11:58:22Z{{Class +| labels = + +{{label|en|Concept}} +{{label|ur|تصور}} +| rdfs:subClassOf = owl:Thing +}}OntologyClass:تصویر20013663587552022-05-16T19:28:45Z{{Class +| labels = +{{label|ur|تصویر}} +{{label|en|image}} + +| comments = +{{comment|ur|ایک دستاویز جس میں بصری عکس ہو۔}} +{{comment|en|A document that contains a visual image}} +| rdfs:subClassOf = دستاویز +| owl:equivalentClass = foaf:Image, http://www.w3.org/ns/ma-ont#Image +}}OntologyClass:تصویر کھینچنے کا آلہ20013254575902022-04-24T16:32:04Z{{Class +| labels = +{{label|en|camera}} + {{label|ur|تصویر کھینچنے کا آلہ}} +| rdfs:subClassOf = آلہ +|comments = +{{comment|ur|ایک کیمرہ (اطالوی میں روایتی طور پر کیمرے کے نام سے جانا جاتا ہے) ایک ایسا آلہ ہے جو فوٹو گرافی کی شوٹنگ اور حقیقی اشیاء کی تصاویر حاصل کرنے کے لیے استعمال کیا جاتا ہے جو کاغذ پر چھپ سکتی ہیں یا الیکٹرانک میڈیا پر محفوظ کی جا سکتی ہیں۔}} +}} + +== References == +<references />OntologyClass:تصویروں اور دستخط کی کتاب20013895577312022-04-26T11:50:24Z{{Class +| labels = +{{label|en|album}} +{{label|ur|تصویروں اور دستخط کی کتاب}} + +| rdfs:subClassOf = موسیقی کا کام +| owl:equivalentClass = schema:MusicAlbum , wikidata:Q482994 +}}OntologyClass:تعلیمی20013841574482022-04-24T07:13:40Z{{Class +| labels = + {{label|en|Academic Person}} + {{label|ur|تعلیمی}} +| rdfs:subClassOf = شخص +}}OntologyClass:تعلیمی ادارے20013145576832022-04-25T11:21:41Z{{Class +| labels = +{{label|en|educational institution}} +{{label|ur|تعلیمی ادارے}} +| rdfs:subClassOf = تنظیم +| owl:equivalentClass = schema:EducationalOrganization, wikidata:Q2385804 +}}OntologyClass:تعلیمی جریدہ20013842574522022-04-24T08:33:46Z{{Class +| labels = +{{label|en|academic journal}} +{{label|ur| تعلیمی جریدہ }} + +| rdfs:subClassOf = متواتر ادب +| comments = + +{{comment|en|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.}} +{{comment|ur|تعلیمی جریدہ زیادہ تر ہم مرتبہ نظرثانی شدہ جریدہ ہے جس میں کسی خاص تعلیمی ادب سے متعلق وظیفہ شائع کیا جاتا ہے۔ تعلیمی جرائد نئی تحقیق کی جانچ پڑتال اور موجودہ تحقیق کی تنقید کے تعارف اور پیشکش کے لیے عوامی جرگہ کے طور پر کام کرتے ہیں۔ مواد عام طور پر مضامین کی شکل اختیار کرتا ہے جو اصل تحقیق، جائزہ مضامین، اور کتاب کے جائزے پیش کرتے ہیں۔}} + +| owl:equivalentClass = wikidata:Q737498 +}}OntologyClass:تعلیمی مضمون20013373574582022-04-24T09:00:22Z{{Class +|labels= +{{label|en|academic subject}} +{{label|ur|تعلیمی مضمون}} +| comments = +{{comment|en|Genres of art, e.g. Mathematics, History, Philosophy, Medicine}} +{{comment|ur|آرٹ کی انواع، جیسے ریاضی، تاریخ، فلسفہ، طب}} +| rdfs:subClassOf = موضوع کا تصور +| owl:equivalentClass = wikidata:Q11862829 +}}OntologyClass:تعلیمی کانفرنس20013094574492022-04-24T08:15:02Z{{Class +| labels = +{{label|en|academic conference}} +{{label|ur| تعلیمی کانفرنس }} + + + +| rdfs:subClassOf = معاشرتی واقعہ +| owl:equivalentClass = wikidata:Q2020153 +}}OntologyClass:تعمیراتی ڈھانچہ20013516576342022-04-24T18:28:23Zhttp://mappings.dbpedia.org/index.php/OntologyClass:ArchitecturalStructure +{{Class +| labels = +{{label|en|architectural structure}} +{{label|ur| تعمیراتی ڈھانچہ}} + +| comments = +{{comment|en|An architectural structure is a human-made, free-standing, immobile outdoor construction (http://en.wikipedia.org/wiki/Architectural_structure).}} + +{{comment|ur|یہ تعمیراتی ڈھانچے مواد سے بنے ہیں۔، آزادانہ ، غیر مستحکم بیرونی تعمیر۔}} +| rdfs:subClassOf = owl:Thing +}}OntologyClass:تعمیراتی ڈھانچے20013276587572022-05-16T19:30:10Zhttp://mappings.dbpedia.org/index.php/OntologyClass:ArchitecturalStructure +{{Class +| labels = + +{{label|ur| تعمیراتی ڈھانچے}} +{{label|en|architectural structure}} + +| comments = +{{comment|ur|یہ تعمیراتی ڈھانچے مواد سے بنے ہیں۔، آزادانہ ، غیر مستحکم بیرونی تعمیر۔}} +{{comment|en|An architectural structure is a human-made, free-standing, immobile outdoor construction (http://en.wikipedia.org/wiki/Architectural_structure).}} + + + +| rdfs:subClassOf = owl:Thing +}}OntologyClass:تفریح گاہ20013961585732022-05-15T06:21:28Z{{Class +| labels = +{{label|ur|تفریح گاہ}} +{{label|en|park}} +| comments= +{{comment|en|A park is an area of open space provided for recreational use. http://en.wikipedia.org/wiki/Park}} + +{{comment|ur|پارک کھلی جگہ کا ایک علاقہ ہے جو تفریحی استعمال کے لیے فراہم کی جاتی ہے۔}} +| rdfs:subClassOf = جگہ +| owl:equivalentClass = schema:Park +}}OntologyClass:تفریحی پارک کی کشش20013299577612022-04-26T12:32:04Z{{Class +| labels = +{{label|en|amusement park attraction}} +{{label|ur|تفریحی پارک کی کشش}} + +| rdfs:subClassOf = تعمیراتی ڈھانچے +}}OntologyClass:تقریب20013159575892022-04-24T16:27:38Z{{Class +| labels = +{{label|en|event}} +{{label|ur|تقریب}} +| owl:disjointWith = شخص +| owl:equivalentClass = schema:Event, dul:Event, wikidata:Q1656682 +}}OntologyClass:تماشا گاہ20014026582802022-05-13T11:52:35Z{{Class +| labels = +{{label|ur|تماشا گاہ}} +{{label|en|theatre}} +| rdfs:subClassOf = پنڈال +| comments = +{{comment|ur|ایک تھیٹر یا تھیٹر (ایک پلے ہاؤس بھی) ایک ڈھانچہ ہے جہاں تھیٹر کے کام یا ڈرامے پیش کیے جاتے ہیں یا دیگر پرفارمنس جیسے میوزیکل کنسرٹ تیار کیے جا سکتے ہیں}} +{{comment|en|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.}} +| owl:equivalentClass = wikidata:Q24354 +}}OntologyClass:تماشہ20013973585972022-05-15T07:37:08Z{{Class +|labels= + {{label|en|play}} +{{label|ur|تماشہ}} +| rdfs:subClassOf = تحریری کام +|comments= +{{comment|en|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.}} + +{{comment|ur|ڈرامہ ادب کی ایک شکل ہے جسے ڈرامہ نگار نے لکھا ہے، عام طور پر کرداروں کے درمیان تحریری مکالمے پر مشتمل ہوتا ہے، جس کا مقصد صرف پڑھنے کے بجائے تھیٹر کی کارکردگی کے لیے ہوتا ہے۔}} + +| owl:equivalentClass = wikidata:Q25379 +}}OntologyClass:تن ساز20013243578472022-05-02T11:38:27Z{{Class +| labels = + +{{label|ur|تن ساز}} +{{label|en|bodybuilder}} +| rdfs:subClassOf = کھلاڑی +| owl:equivalentClass = wikidata:Q15982795 +}}OntologyClass:تنظیم20013489584152022-05-14T15:03:45Z{{Class +| labels = + {{label|en|organisation}} + {{label|ur|تنظیم}} +| rdfs:subClassOf = نمائندہ +| owl:equivalentClass = schema:Organization, dul:SocialPerson, wikidata:Q43229 +| owl:disjointWith = Person +| owl:disjointWith = wgs84_pos:SpatialThing +}}OntologyClass:تنظیم کے رکن20013668586942022-05-15T12:36:19Z{{Class +|labels= +{{label|en|Organisation member}} +{{label|ur|تنظیم کے رکن}} +|comments= +{{comment|en|A member of an organisation.}} +{{comment|ur|کسی تنظیم کا ممبر }} +| rdfs:subClassOf = شخص +}}OntologyClass:تِجارتی اِدارہ20013238587532022-05-16T19:10:00Z{{Class +| labels = +{{label|ur|تِجارتی اِدارہ}} +{{label|en|company}} + +| rdfs:subClassOf = تنظیم +| owl:equivalentClass = wikidata:Q4830453 +}}OntologyClass:تکرار کرنا20013871576252022-04-24T18:12:25Z{{Class +| labels = +{{label|en|contest}} + +{ +{{label|ur|تکرار کرنا}} +| rdfs:subClassOf = مقابلہ +| owl:equivalentClass = wikidata:Q476300 +}}OntologyClass:تھن والے جانور20013280576042022-04-24T17:08:09Z{{Class +| labels = +{{label|en|mammal}} +{{label|ur|تھن والے جانور }} +| rdfs:subClassOf = جانور +| owl:disjointWith = مچھلی +| owl:equivalentClass = wikidata:Q7377 +}}OntologyClass:تھیٹر ہدایت کار20014043583212022-05-13T17:36:08Z{{Class +| labels = +{{label|ur|تھیٹر ہدایت کار}} +{{label|en|Theatre director}} + +| comments = + {{comment|ur|تھیٹر کے میدان میں ایک ڈائریکٹر جو تھیٹر پروڈکشن کے بڑھتے ہوئے کام کی نگرانی اور آرکیسٹریٹ کرتا ہے}} +{{comment|en|A director in the theatre field who oversees and orchestrates the mounting of a theatre production.}} +| rdfs:subClassOf = شخص +| owl:equivalentClass = wikidata:Q3387717 +}}OntologyClass:تیر انداز کھلاڑی20013927579012022-05-05T10:59:19Z{{Class +| labels = + {{label|en|Archer Player}} + {{label|ur|تیر انداز کھلاڑی}} +| rdfs:subClassOf = کھلاڑی +}}OntologyClass:تیراک20013799587142022-05-15T13:23:27Z{{Class +|labels= +{{label|en|swimmer}} +{{label|ur|تیراک}} +| comments = +{{comment|en|a trained athlete who participates in swimming meets}} + +{{comment|ur|ایک تربیت یافتہ کھلاڑی جو تیراکی کے مقابلوں میں حصہ لیتا ہے}} +|rdfs:subClassOf=کھلاڑی +| owl:equivalentClass = wikidata:Q10843402 +}}OntologyClass:تیز راہ سوار20013694586902022-05-15T12:23:46Z{{Class +| labels = + {{label|en|speedway rider}} +{{label|ur|تیز راہ سوار}} +| rdfs:subClassOf = موٹر سائیکل سوار +}}OntologyClass:تیز راہ کی انجمن20013718586962022-05-15T12:44:10Z{{Class +| labels = +{{label|en|speedway league}} +{{label|ur|تیز راہ کی انجمن}} +| comments = +{{comment|en|A group of sports teams that compete against each other in motorcycle speedway racing.}} + +{{comment|ur|کھیلوں کی ٹیموں کا ایک گروپ جو موٹرسائیکل سپیڈ وے ریسنگ میں ایک دوسرے سے مقابلہ کرتا ہے۔}} +| rdfs:subClassOf = کھیلوں کی انجمن +}}OntologyClass:تیز روسی شراب20014075584122022-05-14T14:57:30Z{{Class +|labels= +{{label|ur|تیز روسی شراب}} + {{label|en|vodka}} + +| rdfs:subClassOf = مشروب +}}OntologyClass:تیغ زن20013292581572022-05-12T18:41:30Z{{Class +| labels = + +{{label|ur|تیغ زن }} +{{label|en|fencer}} +| rdfs:subClassOf = کھلاڑی +| owl:equivalentClass = wikidata:Q737498Q13381863 +}}OntologyClass:ثانوی سیاره20013319579232022-05-05T12:09:20Z{{Class +| labels = +{{label|ur|ثانوی سیاره}} +{{label|en|Satellite}} + +| comments = +{{comment|ur|ایک فلکیاتی شے جو کسی سیارے یا ستارے کے گرد چکر لگاتی ہے}} +{{comment|en|An astronomic object orbiting around a planet or star. Definition partly derived from http://www.ontotext.com/proton/protonext# (and thus WordNet 1.7).}} +| rdfs:subClassOf = جرم فلکی +<!-- | owl:equivalentClass = http://www.ontotext.com/proton/protonext#Satellite --> +}}OntologyClass:جاسوس20013733587072022-05-15T13:07:27Z{{Class +| labels = +{{label|en|Spy}} + {{label|ur|جاسوس}} +| rdfs:subClassOf = شخص +}}OntologyClass:جامع درس گاہ20014062583792022-05-14T12:20:26Z{{Class +| labels = +{{label|ur|جامع درس گاہ}} +{{label|en|university}} + +| rdfs:subClassOf = تعلیمی ادارے, schema:CollegeOrUniversity +| owl:equivalentClass = wikidata:Q3918 +}}OntologyClass:جانور20013195587442022-05-16T18:58:58Z{{Class +| labels = +{{label|ur|جانور}} +{{label|en|animal}} + +| rdfs:subClassOf = خلوی مادہ +| owl:equivalentClass = wikidata:Q729 +}}OntologyClass:جاپانی افسانه20014108585492022-05-14T20:43:19Z{{Class +| labels = +{{label|en|light novel}} +{{label|ur|جاپانی افسانه}} + +| rdfs:subClassOf =افسانه +| comments = +{{comment|en|A style of Japanese novel<ref name="light novel">http://en.wikipedia.org/wiki/Light_novel</ref>}} +{{comment|ur|جاپانی ناول کا ایک انداز<ref name="light novel">http://en.wikipedia.org/wiki/Light_novel</ref>}} +| owl:equivalentClass = wikidata:Q747381 +}} +==References== +<references/>OntologyClass:جاگیر20013777578922022-05-05T10:35:03Z{{Class +| labels = +{{label|ur|جاگیر}} +{{label|en|Manor}} +| comments = +{{comment|ur|اسٹیٹ اور/یا (زمینوں کا جھرمٹ) جو جاگیردار کے دائرہ اختیار میں ہیں۔ لہٰذا یہ خود فزیکل اسٹیٹ کے لیے شارٹ ہینڈ اظہار بھی ہے: ایک جاگیر دیہی علاقوں میں آس پاس کے میدانوں کے ساتھ ایک شاندار گھر ہے}} +{{comment|en|Estate and/or (cluster of) lands that are under the jurisdiction of a feudal lord. Hence it is also the shorthand expression for the physical estate itself: a manor is a stately house in the countryside with the surrounding grounds}} +| rdfs:subClassOf = کسی شخص (جاگیردار) یا سرکاری ادارے کے دائرہ اختیار کا قدیم علاقہ + +| dcterms:references = <http://nl.dbpedia.org/resource/Heerlijkheid_(bestuursvorm)> , <http://en.dbpedia.org/resource/Manor> , <http://fr.dbpedia.org/resource/Seigneurie> , <http://de.dbpedia.org/resource/Grundherrschaft> , <http://ru.dbpedia.org/resource/%D0%A0%D1%8B%D1%86%D0%B0%D1%80%D1%81%D0%BA%D0%B0%D1%8F_%D0%BC%D1%8B%D0%B7%D0%B0> . +}}OntologyClass:جراثیم20014139587402022-05-16T18:52:11Z{{Class +| labels = + + +{{label|ur|جراثیم}} +{{label|en|bacteria}} + +| rdfs:subClassOf = قسم +}}OntologyClass:جرم فلکی20013929579222022-05-05T12:01:57Z{{Class +| labels = +{{label|en|celestial body}} +{{label|ur|جرم فلکی}} +| rdfs:subClassOf = جگہ +}}OntologyClass:جرمن ٹورنگ کار ماسٹرزریسر20013253557552021-09-17T18:14:28Z{{Class +| labels = + + +{{label|ur|جرمن ٹورنگ کار ماسٹرزریسر}} + + +| rdfs:subClassOf = مقابلہ میں کاریں چلانے والے +}}OntologyClass:جریدے کا نشر پارہ20013928579192022-05-05T11:32:19Z{{Class +| labels = +{{label|en|article}} +{{label|ur|جریدے کا نشر پارہ}} +| rdfs:subClassOf = تحریری کام +| owl:equivalentClass = bibo:Article +}}OntologyClass:جزیرہ20013441587742022-05-16T19:52:38Z{{Class +| labels = + +{{label|ur|جزیرہ}} +{{label|en|island}} + +| rdfs:subClassOf = آبادی والی جگہ +| owl:equivalentClass = wikidata:Q23442 +}}OntologyClass:جزیرہ نما20013396579062022-05-05T11:07:20Z{{Class +| labels = +{{label|en|archipelago}} +{{label|ur|جزیرہ نما}} +| rdfs:subClassOf = قدرتی جگہ +| owl:equivalentClass = wikidata:Q33837 +}}OntologyClass:جسمانی ساخت20013246587482022-05-16T19:01:55Z{{Class +| labels = +{{label|ur|جسمانی ساخت}} +{{label|en|anatomical structure}} + +| rdfs:subClassOf = owl:Thing +| owl:equivalentClass = wikidata:Q4936952 +}}OntologyClass:جل تھلیا20013903577562022-04-26T12:26:14Z{{Class +| labels = +{{label|en|amphibian}} +{{label|ur|جل تھلیا}} + +|comments= +{{comment|ur|خشکی اور تری دونوں کا وہ جانور جوخشکی اور پانی دونوں میں رہے}} +| rdfs:subClassOf = جانور +}}OntologyClass:جماعتی کھیل20014031582922022-05-13T14:21:58Z{{Class +| labels = + {{label|ur|جماعتی کھیل}} + {{label|en|team sport}} + +|comments = +{{comment|ur|ایک ٹیم کے کھیل کو عام طور پر ایک کھیل کے طور پر بیان کیا جاتا ہے جو مسابقتی ٹیموں کے ذریعہ کھیلا جاتا ہے}} + {{comment|en|A team sport is commonly defined as a sport that is being played by competing teams}} + +| rdfs:subClassOf = کھیل + +| owl:equivalentClass = wikidata:Q216048 +}}OntologyClass:جنکگو20013763582482022-05-13T10:21:59Z{{Class +|labels= + +{{label|ur|جنکگو}} +{{label|en|ginkgo}} +|comments= +{{comment|ur|چینی درخت پنکھے کے جیسے پتوں والا}} + +| rdfs:subClassOf = پودا +}}OntologyClass:جنگل20013239581612022-05-12T18:56:41Z{{Class +|labels = + {{label|ur|جنگل}} +{{label|en|forest}} + + +|comments = +{{comment|ur|ایک قدرتی جگہ جو کم و بیش درختوں کے ساتھ اگتی ہے۔}} +{{comment|en|A natural place more or less densely grown with trees}} +| rdfs:subClassOf = قدرتی جگہ +}}OntologyClass:جنینیات کا علم20013452559872021-09-18T07:38:35Z{{Class +| labels = +{{label|ur|جنینیات کا علم}} +| rdfs:subClassOf = جسمانی ساخت +}}OntologyClass:جُغرافیائی سیاسیات تنظیم20013469582332022-05-13T09:25:58Z{{Class +|labels= +{{label|ur|جُغرافیائی سیاسیات تنظیم}} +{{label|en|geopolitical organisation}} +| rdfs:subClassOf = تنظیم +| specificProperties = {{SpecificProperty | ontologyProperty = populationDensity | unit = inhabitantsPerSquareKilometre }} + {{SpecificProperty | ontologyProperty = areaMetro | unit = squareKilometre }} +}}OntologyClass:جگہ20013140574932022-04-24T10:39:04Z{{Class +| labels = + + {{label|en|place}} + {{label|ur|جگہ}} +| comments = + {{comment|ur|غیر متحرک چیزیں یا مقامات۔}} + +| owl:equivalentClass = schema:Place, Location +| rdfs:subClassOf = owl:Thing +}}OntologyClass:جھنڈا20013216581352022-05-12T17:37:26Z{{Class +| labels = +{{label|en|جھنڈا}} +{{label|en|flag}} +| rdfs:subClassOf = owl:Thing +| owl:equivalentClass = wikidata:Q14660 +}}OntologyClass:جھیل20013612585202022-05-14T19:43:22Z{{Class +| labels = +{{label|en|lake}} +{{label|ur|جھیل}} +| rdfs:subClassOf = اجسامِ آب +| owl:equivalentClass = schema:LakeBodyOfWater, wikidata:Q23397 +| specificProperties = {{SpecificProperty | ontologyProperty = shoreLength | unit = kilometre }} + {{SpecificProperty | ontologyProperty = areaOfCatchment | unit = squareKilometre }} + {{SpecificProperty | ontologyProperty = volume | unit = cubicMetre }} +}}OntologyClass:جہاز20013683586492022-05-15T10:25:45Z{{Class +| labels = +{{label|en|ship}} +{{label|ur|جہاز}} +| rdfs:subClassOf = نقل و حمل کے ذرائع, schema:Product +| owl:equivalentClass = wikidata:Q11446 +}} +<!-- -->OntologyClass:جی ایم ایل: خصوصیت20013474581732022-05-12T19:31:34Z{{Class +|labels= +{{label|ur|جی ایم ایل: خصوصیت}} +|rdfs:label@en = Feature +}}OntologyClass:جیل20013999585852022-05-15T06:50:36Z{{Class +| labels = +{{label|en|prison}} +{{label|ur|جیل}} +| rdfs:subClassOf = عمارت +| owl:equivalentClass = wikidata:Q40357 +}}OntologyClass:جیو: مقامی چیزیں20013467582472022-05-13T10:20:13Z{{Class +|labels= +{{label|ur|جیو: مقامی چیزیں}} +|rdfs:label@en = spatial thing +}}OntologyClass:حاکم20013480582402022-05-13T09:59:30Z{{Class +|labels= +{{label|ur|حاکم}} +| rdfs:subClassOf = سیاستدان +| owl:equivalentClass = wikidata:Q132050 +}}OntologyClass:حراستی کیمپ20013590575592022-04-24T14:50:12Z{{Class +| labels = +{{label|en|Concentration camp}} +{{label|ur|حراستی کیمپ}} + +| rdfs:subClassOf = جگہ +| rdfs:comment@en = camp in which people are imprisoned or confined, commonly in large groups, without trial. +Includes concentration, extermination, transit, detention, internment, (forced) labor, prisoner-of-war, Gulag; Nazi camps related to the Holocaust + | rdfs:comment@ur = کیمپ جس میں لوگوں کو قید یا قید کیا جاتا ہے، عام طور پر بڑے گروہوں میں، بغیر کسی مقدمے کے۔ +ارتکاز، قتل، نقل و حمل، حراست، نظربند، (زبردستی) مزدوری، جنگی قیدی، گلاگ شامل ہیں۔ ہولوکاسٹ سے متعلق نازی کیمپ +}}OntologyClass:حرف20013623585242022-05-14T19:47:33Z{{ Class +| labels = +{{label|en|letter}} +{{label|ur|حرف}} +| comments = +{{comment|en|A letter from the alphabet.}} +{{comment|ur|حروف تہجی سے ایک حرف}} +| rdfs:subClassOf = تحریری کام +<!-- | rdfs:subClassOf = Language --> +| owl:equivalentClass = wikidata:Q9788, wikidata:Q133492 +}}OntologyClass:حرکت پذیر پیدل چلنے کا راستہ20013952580232022-05-06T16:00:09Z{{Class +| labels = + +{{label|ur|حرکت پذیر پیدل چلنے کا راستہ}} +{{label|en|travellator}} +| specificProperties = +{{SpecificProperty | ontologyProperty = diameter | unit = metre }} +{{SpecificProperty | ontologyProperty = mass | unit = kilogram }} +{{SpecificProperty | ontologyProperty = length | unit = millimetre }} +{{SpecificProperty | ontologyProperty = height | unit = millimetre }} +{{SpecificProperty | ontologyProperty = weight | unit = kilogram }} +{{SpecificProperty | ontologyProperty = width | unit = millimetre }} +| owl:disjointWith = Person +| rdfs:subClassOf = کِسی موقع مقام پر نقل و حمل +}}OntologyClass:حساب و شمار20013294552842021-09-11T11:14:33Z{{Class +| labels = +{{label|en|Algorithm}} +{{label|ur|حساب و شمار}} +|comments= +{{comment|ur|ایک عین قاعدہ (یا قواعد کا مجموعہ) جس میں وضاحت کی جاتی ہے کہ کسی مسئلے کو کیسے حل کیا جائے}} +| owl:equivalentClass = wikidata:Q8366 +}}OntologyClass:حلقہ کا پادری20014072584022022-05-14T14:19:56Z{{Class +| labels = +{{label|ur|حلقہ کا پادری}} +{{label|en|vicar}} + +| rdfs:subClassOf = پادری +}}OntologyClass:حملہ20013402579672022-05-06T02:18:54Z{{Class +| labels = +{{label|en|attack}} +{{label|ur|حملہ}} +| comments = +{{comment|en|An Attack is not necessarily part of a Military Conflict}} +{{comment|en|حملہ لازمی طور پر فوجی تصادم کا حصہ نہیں ہے۔}} +| rdfs:subClassOf = معاشرتی واقعہ +}}OntologyClass:حوض20014020582642022-05-13T11:15:16Z{{Class +| labels = + +{{label|ur|حوض}} +{{label|en|Tank}} +}}OntologyClass:حکومت کی قسم20013162582552022-05-13T10:40:01Z{{Class +| labels = +{{label|ur|حکومت کی قسم}} +{{label|en|Government Type}} +| comments = +{{comment|ur|حکومت کی ایک شکل}} +{{comment|en|a form of government}} +| rdfs:subClassOf = قسم +| specificProperties = +| owl:equivalentClass = +}}OntologyClass:حکومتی انتظامی علاقہ20013223577302022-04-26T11:49:19Z{{Class +| labels = +{{label|en|governmental administrative region}} +{{label|ur|حکومتی انتظامی علاقہ}} +| comments = +{{comment|en|An administrative body governing some territorial unity, in this case a governmental administrative body}} + +{{comment|ur|ایک انتظامی ادارہ جو کچھ علاقائی وحدت کو کنٹرول کرتا ہے ، اس صورت میں ایک سرکاری انتظامی ادارہ ہے۔}} +| rdfs:subClassOf = انتظامی علاقہ +| owl:equivalentClass = +}}OntologyClass:حیاتیاتی'ریکارڈرز پر مبنی ایک فائل'20013191550562021-09-09T14:18:31Z{{Class +| labels = +{{label|ur|حیاتیاتی ریکارڈرز_پر_مبنی_ایک_فائل}} + +| rdfs:subClassOf = Database +| comments = +{{comment|ur|مختلف ڈیٹا بیس جس میں وہ معلومات ہوتی ہیں جو حیاتیات کی بنیادی حیاتیاتی خصوصیات کی نشاندہی کرتی ہیں۔ یہ معلومات حیاتیات کے بنیادی سیل ڈھانچے ، جیسے جینومکس اور پروٹومکس لائبریریوں کی لائبریریوں میں محفوظ ہے۔}} +}}OntologyClass:حیاتیاتی ریکارڈرز پر مبنی ایک فائل20013506578352022-05-01T18:40:26Z{{Class +| labels = + +{{label|ur|حیاتیاتی ریکارڈرز_پر_مبنی_ایک_فائل}} +{{label|en|Biological database}} + +| rdfs:subClassOf = ریکارڈرز_پر_مبنی_ایک_فائل +}}OntologyClass:حیاتیاتی مرکبات20013231577682022-04-26T12:48:46Z{{Class +| labels = + {{label|en|Biomolecule}} + {{label|ur|حیاتیاتی مرکبات}} +| comments = + {{comment|en|equivalent to [http://ccdb.ucsd.edu/NIF/BIRNLex-OBO-UBO.owl#birnlex_22].}} + + {{comment|ur| ایسے پیچدہ نامیاتی مالیکیولز جو زندگی کی بنیاد ہیں یعنی وہ زندہ اجسام کو تعمیر کرنے ، ان کو نشوونما کرنے اور برقرار رکھنے کے لیے ضروری ہوتے ہیں}} +| rdfs:subClassOf = owl:Thing +| owl:equivalentClass = wikidata:Q206229 +}}OntologyClass:خامرہ20013455583502022-05-14T06:16:57Z{{Class +| labels = +{{label|ur|خامرہ}} +{{label|en|enzyme}} +| rdfs:subClassOf = حیاتیاتی مرکبات +| owl:equivalentClass = wikidata:Q8047 +}}OntologyClass:خاندان20013460581422022-05-12T17:56:20Z{{Class +| labels= +{{label|ur|خاندان}} +{{label|en|family}} +| rdfs:subClassOf = نمائندہ +| comments= +{{comment|ur|عام نسل سے متعلق لوگوں کا ایک گروہ ، ایک نسب}} +{{comment|en|A group of people related by common descent, a lineage.}} +| owl:equivalentClass = wikidata:Q8436 +}}OntologyClass:خانقاہ20013902577532022-04-26T12:21:33Z{{Class +| labels = +{{label|en|monastery}} + +{{label|ur|خانقاہ}} +|comments= +{{comment|en|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.<ref>http://en.wikipedia.org/wiki/Monastry</ref>}} + +{{comment|ur|خانقاہ عمارت، یا عمارتوں کے کمپلیکس کی نشاندہی کرتی ہے، جس میں خانقاہوں کے گھریلو کوارٹرز اور کام کی جگہیں شامل ہیں، چاہے وہ راہب ہوں یا راہبائیں، اور چاہے وہ برادری میں رہ رہے ہوں یا اکیلے (حرمت والے)۔ خانقاہ میں عام طور پر نماز کے لیے مخصوص جگہ شامل ہوتی ہے جو ایک چیپل، گرجا گھر یا مندر ہو سکتا ہے، اور ایک تقریر کے طور پر بھی کام کر سکتا ہے۔<ref>http://en.wikipedia.org/wiki/Monastry</ref>}} + +| rdfs:subClassOf = مذہبی عمارت +| owl:equivalentClass = wikidata:Q44613, d0:Location +}} + +<references />OntologyClass:خدمات عامہ20014011582152022-05-13T04:06:03Z{{Class +| labels = +{{label|en|public service}} +{{label|ur|خدمات عامہ}} +| comments = +{{comment|ur|یہ ریاستی ڈھانچے کی طرف سے عوام کے لیے فراہم کردہ خدمات ہیں۔}} +| rdfs:subClassOf = owl:Thing +| owl:equivalentClass = wikidata:Q161837 +}}OntologyClass:خریداری کرنے کے لیے مختص جگہ20013704586402022-05-15T10:15:34Z{{Class +|labels= +{{label|ur|خریداری کرنے کے لیے مختص جگہ}} +{{label|en|shopping mall}} +| rdfs:subClassOf = عمارت +| owl:equivalentClass = schema:ShoppingCenter, wikidata:Q11315 +}}OntologyClass:خشکی کا وہ حصہ جو سمندر کے اندر تک چلا گیا ہو20014088584592022-05-14T17:45:40Z{{Class +| labels = +{{label|en|cape}} +{{label|ur|خشکی کا وہ حصہ جو سمندر کے اندر تک چلا گیا ہو}} + + +| rdfs:subClassOf = قدرتی جگہ +}}OntologyClass:خصوصی سائنسی دلچسپی کی سائٹ20013727586542022-05-15T10:29:18Z{{Class +| labels = +{{label|en|Site of Special Scientific Interest}} +{{label|ur|خصوصی سائنسی دلچسپی کی سائٹ}} +| comments = +{{comment|ur|خصوصی سائنسی دلچسپی کی سائٹ (SSSI) ایک تحفظ کا عہدہ ہے جو برطانیہ میں ایک محفوظ علاقے کی نشاندہی کرتا ہے۔ SSSIs سائٹ پر مبنی فطرت کے تحفظ سے متعلق قانون سازی کا بنیادی تعمیراتی حصہ ہیں اور برطانیہ میں بیشتر دیگر قانونی نوعیت/ارضیاتی تحفظ کے عہدہ ان پر مبنی ہیں، بشمول نیشنل نیچر ریزرو، رامسر سائٹس، خصوصی تحفظ کے علاقے، اور تحفظ کے خصوصی علاقے}} +| rdfs:subClassOf = جگہ +| owl:equivalentClass = wikidata:Q422211 +}}OntologyClass:خفیہ پیغام20013883576782022-04-25T11:10:56Z{{Class +| labels = +{{label|en|Cipher}} + +{{label|ur|خفیہ پیغام}} + + +| rdfs:subClassOf = owl:Thing +| owl:equivalentClass = +}}OntologyClass:خلا باز20013324579352022-05-05T12:39:31Z{{Class + + +| labels = +{{label|ur|خلا باز}} +{{label|en|astronaut}} + +| rdfs:subClassOf = شخص +| specificProperties = {{SpecificProperty | ontologyProperty = timeInSpace | unit = minute }} +| owl:equivalentClass = wikidata:Q11631 +}}OntologyClass:خلائی اڈہ20013711564662022-02-17T06:27:16Z{{Class +| labels = +{{label|ur|خلائی اڈہ}} +| rdfs:subClassOf = نقل و حمل کے ذرائع +| specificProperties = {{SpecificProperty | ontologyProperty = volume | unit = cubicMetre }} +| owl:equivalentClass = wikidata:Q25956 +}}OntologyClass:خلائی جہاز20013693586882022-05-15T12:18:35Z{{Class +| labels = + +{{label|en|space shuttle}} +{{label|ur|خلائی جہاز}} +| rdfs:subClassOf = نقل و حمل کے ذرائع +| specificProperties = {{SpecificProperty | ontologyProperty = timeInSpace | unit = day }} + {{SpecificProperty | ontologyProperty = distance | unit = kilometre }} +| owl:equivalentClass = wikidata:Q48806 +}}OntologyClass:خلائی مہم20013719586972022-05-15T12:46:26Z{{Class +| labels = +{{label|en|space mission}} +{{label|ur|خلائی مہم}} +| rdfs:subClassOf = معاشرتی واقعہ +| specificProperties = {{SpecificProperty | ontologyProperty = mass | unit = kilogram }} + {{SpecificProperty | ontologyProperty = cmpEvaDuration | unit = hour }} + {{SpecificProperty | ontologyProperty = stationEvaDuration | unit = hour }} + {{SpecificProperty | ontologyProperty = lunarSurfaceTime | unit = hour }} + {{SpecificProperty | ontologyProperty = missionDuration | unit = day }} + {{SpecificProperty | ontologyProperty = distanceTraveled | unit = kilometre }} + {{SpecificProperty | ontologyProperty = lunarOrbitTime | unit = hour }} + {{SpecificProperty | ontologyProperty = stationVisitDuration | unit = hour }} + {{SpecificProperty | ontologyProperty = lunarSampleMass | unit = kilogram }} + {{SpecificProperty | ontologyProperty = lunarEvaTime | unit = hour }} +| owl:equivalentClass = wikidata:Q2133344 +}}OntologyClass:خلائی پرواز میں سال20014135587282022-05-16T17:33:07Z{{Class +| labels = +{{label|ur|خلائی پرواز میں سال}} +{{label|en|year in spaceflight}} + +| rdfs:subClassOf = وقت کی مدت +}}OntologyClass:خلوی مادہ20013166587452022-05-16T18:59:17Z{{Class +| labels = + +{{label|ur| خلوی مادہ}} +{{label|en| eukaryote}} +| rdfs:subClassOf = قسم +| +}}OntologyClass:خلیج20013328578242022-05-01T17:41:49Z{{Class +|labels = +{{label|ur|خلیج}} +{{label|en|bay}} + +| rdfs:subClassOf = اجسامِ آب +}}OntologyClass:خواتین کی انجمن کا باہمی مقابلہ20014124586582022-05-15T10:34:18Z{{Class +| labels = +{{label|ur|خواتین کی انجمن کا باہمی مقابلہ}} +{{label|en|Women's Tennis Association tournament}} + +| rdfs:subClassOf = باہمی مقابلہ +}}OntologyClass:خوراک20013586587432022-05-16T18:57:31Z{{Class +| labels = + {{label|ur|خوراک}} +{{label|en|Food}} + +| comments = + + + {{comment|ur|کھانا کوئی بھی کھانے یا پینے کے قابل مادہ ہے جو عام طور پر انسان استعمال کرتے ہیں۔}} +{{comment|en|Food is any eatable or drinkable substance that is normally consumed by humans.}} +| rdfs:subClassOf = owl:Thing +| owl:equivalentClass = wikidata:Q2095 +}}OntologyClass:خول دارجانور20013345576372022-04-24T18:35:22Z{{Class +| labels = +{{label|en|crustacean}} +{{label|ur|خول دارجانور}} +| rdfs:subClassOf = جانور +}}OntologyClass:خون کی شریان20013338578432022-05-02T11:25:43Z{{Class +| labels = +{{label|ur|خون کی شریان}} +{{label|en|blood vessel}} + +| rdfs:subClassOf = جسمانی ساخت +}}OntologyClass:خیالی کردار20013270576212022-04-24T18:01:10Z{{Class +| labels = +{{label|en|fictional character}} +{{label|ur|خیالی کردار}} +| rdfs:subClassOf = نمائندہ +| owl:equivalentClass = wikidata:Q95074 +}}OntologyClass:دائرہ اختيارات20013989585692022-05-15T06:07:01Z{{Class +| labels = +{{label|en|prefecture}} +{{label|ur|دائرہ اختيارات}} + +| rdfs:subClassOf = حکومتی انتظامی علاقہ +| owl:equivalentClass = wikidata:Q515716 +}}OntologyClass:دارالحکومت20013844574902022-04-24T10:35:03Z{{Class +| labels = {{label|en|Capital}} + +{{label|ur| دارالحکومت}} + +| comments = {{comment|en|A municipality enjoying primary status in a state, country, province, or other region as its seat of government.}} + +{{comment|ur|ایک بلدیہ جو کسی ریاست، ملک، صوبے، یا دوسرے علاقے میں اپنی حکومت کی نشست کے طور پر بنیادی حیثیت سے لطف اندوز ہوتی ہے۔ }} +| rdfs:subClassOf = شہر +}}OntologyClass:درہ20013937579522022-05-05T14:41:34Z{{Class +| labels = + +{{label|ur|درہ}} +{{label|en|mountain pass}} +| comments = + +{{comment|ur|ایک راستہ جو پہاڑی سلسلہ کو عبور کرنے کی اجازت دیتا ہے۔ یہ عام طور پر اونچی اونچائی کے دو علاقوں کے درمیان ایک سیڈل پوائنٹ ہوتا ہے}} +{{comment|en|a path that allows the crossing of a mountain chain. It is usually a saddle point in between two areas of higher elevation}} +| rdfs:subClassOf = قدرتی جگہ +| owl:equivalentClass = wikidata:Q133056 +}}OntologyClass:دستاویز20013272570312022-03-09T13:49:31Z{{Class +| labels= +{{label|ur|دستاویز}} +| comments= +{{comment|ur|کوئی بھی دستاویز۔}} +| rdfs:subClassOf = کام +| owl:equivalentClass = foaf:دستاویز +}}OntologyClass:دستاویز کی قسم20014042583182022-05-13T17:32:10Z{{Class +| labels= +{{label|ur|دستاویز کی قسم}} +| comments= +{{comment|ur|دستاویز کی قسم (سرکاری، غیر رسمی وغیرہ}} +| rdfs:subClassOf = قسم +| specificProperties = +}}OntologyClass:دفتر کی مدت20014035583022022-05-13T15:45:46Z{{Class +|labels = +{{label|ur|دفتر کی مدت}} +{{label|en|term of office}} + +| rdfs:subClassOf = تنظیم +| owl:equivalentClass = wikidata:Q524572 +}}OntologyClass:دماغ20013245578552022-05-02T12:19:28Z{{Class +| labels = +{{label|ur|دماغ}} +{{label|en|brain}} +| rdfs:subClassOf = جسمانی ساخت +}}OntologyClass:دوائی20013892577222022-04-26T11:39:33Z{{Class +| labels = {{label|en|Medicine}} + + {{label|ur|دوائی}} +| owl:equivalentClass = wikidata:Q11190 +| comments = {{comment|en|The science and art of healing the human body and identifying the causes of disease}} + + +{{comment|ur|انسانی جسم کو ٹھیک کرنے اور بیماری کی وجوہات کی نشاندہی کرنے کا سائنس اور فن}} +}}OntologyClass:دور20014025582782022-05-13T11:48:07Z{{Class +|labels= + +{{label|ur|دور}} +{{label|en|tenure}} +| rdfs:subClassOf = وقت کی مدت +}}OntologyClass:دورانیہ حیات وقوعه20013626585252022-05-14T19:49:20Z{{Class +| labels = +{{label|en|life cycle event}} +{{label|ur|دورانیہ حیات وقوعه}} +| comment = +{{comment|en| Type of event meant to express one-time or recurring major changes in a resource's life cycle}} + +{{comment|ur| واقعہ کی قسم کا مطلب وسائل کی زندگی کے چکر میں ایک بار یا بار بار آنے والی بڑی تبدیلیوں کا اظہار کرنا ہے۔}} +| rdfs:subClassOf = تقریب +}}OntologyClass:دوڑ20013537575862022-04-24T16:17:20Z{{Class +| labels = +{{label|en|race}} + +{{label|ur|دوڑ}} +| rdfs:subClassOf = کھیلوں کی تقریب +}}OntologyClass:دکھاوا کرنے والا20013994585842022-05-15T06:49:09Z{{Class +| labels = +{{label|en|Pretender}} +{{label|ur|دکھاوا کرنے والا}} +| rdfs:subClassOf = شاہی +}}OntologyClass:دہانه20013639575692022-04-24T15:18:19Z{{Class +| labels = +{{label|en|crater}} +{{label|ur|دہانه}} + +| rdfs:subClassOf = قدرتی جگہ +}}OntologyClass:دیا گیا نام20013470581712022-05-12T19:25:59Z{{Class +|labels= +{{label|ur|دیا گیا نام}} +{{label|en|first name}} +| rdfs:subClassOf = نام +| owl:equivalentClass = wikidata:Q202444 +}}OntologyClass:دیوتا20014015582272022-05-13T09:14:02Z{{Class +| labels = +{{label|en|deity}} +{{label|ur|دیوتا}} +| rdfs:subClassOf = نمائندہ +| owl:equivalentClass = wikidata:Q178885 +}}OntologyClass:ذاتی تقریب20013966585942022-05-15T07:33:08Z{{Class +| labels = +{{label|en|personal event}} +{{label|ur|ذاتی تقریب}} + +|comments = +{{comment|en|an event that occurs in someone's personal life}} + +{{comment|ur|ایک واقعہ جو کسی کی ذاتی زندگی میں پیش آتا ہے۔}} +| rdfs:subClassOf = دورانیہ حیات وقوعه +}}OntologyClass:ذیلی بلدیہ20013797587122022-05-15T13:20:42Z{{Class +| labels = +{{label|en|borough}} +{{label|ur|ذیلی بلدیہ}} +| comments = +{{comment|en|An administrative body governing a territorial unity on the lowest level, administering part of a municipality}} + +{{comment|ur|ایک انتظامی ادارہ جو ایک علاقائی اتحاد کو نچلی سطح پر چلاتا ہے، بلدیہ کے حصے کا انتظام کرتا ہے}} +| rdfs:subClassOf = حکومتی انتظامی علاقہ +| owl:equivalentClass = +}}OntologyClass:رابطے کا ضابطہ20014003581992022-05-13T03:33:59Z{{Class +| labels = +{{label|en|Protocol}} +{{label|ur|رابطے کا ضابطہ }} +| rdfs:subClassOf = owl:Thing +}}OntologyClass:رسالہ20013775578782022-05-04T09:31:55Z{{Class +| labels = +{{label|ur|رسالہ}} +{{label|en|magazine}} +| rdfs:subClassOf = متواتر ادب + +| comments = +{{comment|ur|میگزین، میگزین، چمکیلی یا سیریل اشاعتیں ہیں، عام طور پر ایک باقاعدہ شیڈول پر شائع ہوتے ہیں، مختلف مضامین پر مشتمل ہوتے ہیں. انہیں عام طور پر اشتہارات، خریداری کی قیمت، پری پیڈ میگزین سبسکرپشنز، یا تینوں کے ذریعے مالی اعانت فراہم کی جاتی ہے}} +{{comment|en|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.}} +| owl:equivalentClass = wikidata:Q41298 +}}OntologyClass:رفتار سکیٹر20013709586642022-05-15T10:43:07Z{{Class +| labels = +{{label|en|speed skater}} +{{label|ur|رفتار سکیٹر}} +| rdfs:subClassOf = سرمائی کھیل کھیلنے والا +|comments= +{{comment|ur|ایک آئس سکیٹر جو مسابقتی طور پر دوڑتا ہے۔ عام طور پر ایک اوول کورس کے ارد گرد}} +}}OntologyClass:رقبہ20013305577802022-05-01T10:53:49Z{{Class +| labels = +{{label|ur|رقبہ}} +{{label|en|area}} +| comments = +{{comment|ur|کسی چیز کا علاقہ}} +{{comment|en|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)}} +}}OntologyClass:رقص کرنے والا20013357582232022-05-13T09:06:05Z{{Class +| labels = +{{label|ur|رقص کرنے والا}} +| rdfs:subClassOf = فنکار +}}OntologyClass:رقص گاہ20013878576602022-04-25T09:18:23Z{{Class +| labels = +{{label|en|casino}} + +{{label|ur|رقص گاہ}} + +| rdfs:subClassOf = عمارت +| comments = +{{comment|en|In modern English, a casino is a facility which houses and accommodates certain types of gambling activities.}} +{{comment|ur|جدید انگریزی میں ، جوئے بازی کی اڈہ ایک ایسی سہولت ہے جس میں جوئے کی سرگرمیوں کی مخصوص اقسام ہوتی ہیں۔ +.}} +| owl:equivalentClass = wikidata:Q133215 +}}OntologyClass:رنگ20013335576172022-04-24T17:52:36Z{{Class +| labels = +{{label|en|colour}} + {{label|ur|رنگ}} +| comments = +{{comment|en|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.}} + +{{comment|ur|رنگ یا رنگ بصری ادراکی املاک ہے جو انسانوں میں سرخ ، پیلے ، نیلے اور دیگر نامی زمروں کے مطابق ہے۔ رنگ روشنی کے سپیکٹرم سے حاصل ہوتا ہے (روشنی کی تقسیم بمقابلہ طول موج) آنکھوں میں روشنی کے رسیپٹروں کی سپیکٹرمل حساسیت کے ساتھ تعامل کرتا ہے۔}} +| rdfs:subClassOf = owl:Thing +}}OntologyClass:رنگ ساز20013957584522022-05-14T17:33:18Z{{Class +| rdfs:subClassOf = فنکار +|labels= +{{label|ur|رنگ ساز}} +{{label|en|painter}} +| owl:equivalentClass = wikidata:Q1028181 +}}OntologyClass:رواں زینہ20013456559922021-09-18T07:46:12Z{{Class +| labels = +{{label|ur|رواں زینہ}} + +|comments= +{{comment|ur|بجلی سے چلنے والی سیڑھی}} + +| specificProperties = +{{SpecificProperty | ontologyProperty = diameter | unit = metre }} +{{SpecificProperty | ontologyProperty = mass | unit = kilogram }} +{{SpecificProperty | ontologyProperty = length | unit = millimetre }} +{{SpecificProperty | ontologyProperty = height | unit = millimetre }} +{{SpecificProperty | ontologyProperty = weight | unit = kilogram }} +{{SpecificProperty | ontologyProperty = width | unit = millimetre }} +| owl:disjointWith = شخص +| rdfs:subClassOf = کِسی موقع مقام پر نقل و حمل +}}OntologyClass:روایتی موسیقی کی ترکیب20013851575252022-04-24T11:59:25Z{{Class +| labels = +{{label|en|classical music composition}} + +{{label|ur| روایتی موسیقی کی ترکیب }} +| comments = + +{{comment|ur|کلاسیکی موسیقی کی تشکیل کمپیوٹر پر خصوصی پروگراموں کی مدد سے کی جاسکتی ہے جو ایک مخصوص الگورتھم استعمال کرتے ہیں۔}} +| rdfs:subClassOf = موسیقی کا کام +}} +aOntologyClass:روشنی کا مینار20013630585262022-05-14T19:51:03Z{{Class +| labels = +{{label|en|lighthouse}} +{{label|ur|روشنی کا مینار}} +| rdfs:subClassOf = مینار +| owl:equivalentClass = wikidata:Q39715 +}}OntologyClass:روشِ لباس20013461581282022-05-12T16:55:52Z{{Class +|labels = + {{label|ur|روشِ لباس}} + {{label|en|fashion}} +| comments = +{{comment|ur|وقت یا انفرادی خاکے کے معیار کے مطابق لباس کی قسم}} +{{comment|en|type or code of dressing, according to the standards of the time or individual design.}} +| rdfs:subClassOf = موضوع کا تصور +}}OntologyClass:رومن کیتہولک پادری20013987585812022-05-15T06:43:41Z{{Class +| labels = +{{label|en|pope}} +{{label|ur|رومن کیتہولک پادری}} +| rdfs:subClassOf = پادری +| owl:equivalentClass = wikidata:Q19546 +}}OntologyClass:رگ20014083584382022-05-14T16:57:18Z{{Class +| labels = +{{label|ur|رگ}} +{{label|en|vein}} + +| rdfs:subClassOf = جسمانی ساخت +| owl:equivalentClass = wikidata:Q9609 +}}OntologyClass:ریاست20013751587012022-05-15T12:57:06Z{{Class +| labels = +{{label|en|state}} +{{label|ur|ریاست}} +| rdfs:subClassOf = آبادی والی جگہ +| owl:equivalentClass = wikidata:Q7275 +}}OntologyClass:ریاستہائے متحدہ کی سپریم کورٹ کیس20014237590352022-06-21T17:24:18Z{{Class +| labels = +{{label|ur|ریاستہائے متحدہ کی سپریم کورٹ کیس}} +| rdfs:subClassOf = قانونی مقدمہ +}}OntologyClass:ریاستی قرارداد20014159588572022-06-20T13:24:12Z{{Class +| labels = + {{label|en|Stated Resolution}} +{{label|ur|ریاستی قرارداد}} + +| comments = + {{comment|en|A Resolution describes a formal statement adopted by a meeting or convention.}} +{{comment|ur|ایک قرارداد میٹنگ یا کنونشن کے ذریعہ اختیار کردہ ایک رسمی بیان کی وضاحت کرتی ہے}} + +| rdfs:subClassOf = تحریری کام +}}OntologyClass:ریاضیاتی تصور20013889577122022-04-26T11:30:48Z{{Class +| labels = {{label|en|Mathematical concept}} + + {{label|ur|ریاضیاتی تصور}} +| comments = {{comment|en|Mathematical concepts, e.g. Fibonacci numbers, Imaginary numbers, Symmetry}} +{{comment|ur|ریاضی کے تصورات، جیسے فبونیکی نمبرز، خیالی نمبرز، سمیٹری}} +| rdfs:subClassOf = موضوع کا تصور +}}OntologyClass:ریل گاڑی20013909577852022-05-01T11:08:50Z{{Class +| labels = +{{label|en|train}} +{{label|ur|ریل گاڑی}} +| rdfs:subClassOf = نقل و حمل کے ذرائع +| owl:equivalentClass = wikidata:Q870 +}}OntologyClass:ریل گاڑی کا انجن20013638585572022-05-14T20:54:41Z{{Class +| labels = +{{label|en|locomotive}} +{{label|ur|ریل گاڑی کا انجن}} +<!-- | specificProperties = + {{SpecificProperty | ontologyProperty = modelLineVehicle}} --> +| rdfs:subClassOf = نقل و حمل کے ذرائع, schema:Product +| owl:equivalentClass = wikidata:Q93301 +}}OntologyClass:ریڈیو سٹیشن20014195589402022-06-20T17:30:19Z{{Class +| labels = +{{label|en|radio station}} +{{label|ur|ریڈیو سٹیشن}} +| rdfs:subClassOf = ناشَر +| owl:equivalentClass = schema:RadioStation +}}OntologyClass:ریڑھ کی ہڈی کے بغیر جانور20013933579402022-05-05T14:21:38Z{{Class +| labels = + +{{label|ur|ریڑھ کی ہڈی کے بغیر جانور}} +{{label|en|mollusca}} +| rdfs:subClassOf = جانور +| owl:equivalentClass = wikidata:Q25326 +}}OntologyClass:ریکارڈرز پر مبنی ایک فائل20013192578382022-05-01T18:43:20Z{{Class +| labels = + {{label|ur|ریکارڈرز_پر_مبنی_ایک_فائل}} + {{label|en|Database}} +| rdfs:subClassOf = کام, dul:InformationObject +| owl:equivalentClass = +}}OntologyClass:ریگستان20013266557622021-09-17T18:29:13Z{{Class +| labels = +{{label|ur|ریگستان}} + +| comments = +{{comment|ur|زمین کا بنجر علاقہ جہاں کم بارش ہوتی ہے۔}} + +| rdfs:subClassOf = قدرتی جگہ +}}OntologyClass:زبان20013613585322022-05-14T20:02:57Z{{Class +| labels = +{{label|en|language}} +{{label|ur|زبان}} +| owl:equivalentClass = schema:Language, wikidata:Q315 +| rdfs:subClassOf = owl:Thing +}}OntologyClass:زلزلہ20013445557702021-09-17T18:46:07Z{{Class +| labels = +{{label|ur|زلزلہ}} +| rdfs:subClassOf = قدرتی واقعہ +| comments = + +{{comment|ur|یہ زمین کی پرت میں اچانک توانائی کے اخراج کا نتیجہ ہے جو زلزلے کی لہروں کو پیدا کرتا ہے}} +}}OntologyClass:زمین دوز برقی ریل کا اڈہ20013948579972022-05-06T10:34:52Z{{Class +| labels = + +{{label|ur|زمین دوز برقی ریل کا اڈہ}} +{{label|en|metrostation}} + + +| rdfs:subClassOf = اڈا + + + + +| owl:equivalentClass = wikidata:Q928830 +}}OntologyClass:زیر زمین جریدہ20014061583762022-05-14T12:14:33Z{{Class +| labels = +{{label|ur|زیر زمین جریدہ}} +{{label|en|underground journal}} + +| rdfs:subClassOf = متواتر ادب +| comments = +{{comment|ur| ایک زیر زمین جریدہ ہے، اگرچہ وقت گزرنے کے ساتھ ساتھ ہمیشہ قانون کے ذریعہ اشاعتیں ممنوع رہی ہیں، دوسری عالمی جنگ کے دوران جرمنوں کے زیر قبضہ ممالک کا ایک رجحان۔ زیر زمین پریس میں تحریر کا مقصد نازی قبضے کے خلاف مزاحمت کے جذبے کو مضبوط کرنا ہے۔ زیر زمین جرائد کی تقسیم بہت خفیہ ہونی چاہیے تھی اور اس لیے اس کا انحصار غیر قانونی ڈسٹری بیوشن سرکٹس اور قابضین کی طرف سے ظلم و ستم کے خطرات پر تھا}} +{{comment|en| 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. }} +}}OntologyClass:سائنسدان20013290578402022-05-01T18:51:54Z{{Class +| labels = + +{{label|ur|سائنسدان}} +{{label|en|scientist}} +| rdfs:subClassOf = شخص +| owl:equivalentClass = wikidata:Q901 +}}OntologyClass:سائنسی تصور20013680586452022-05-15T10:21:57Z{{Class +| labels = + {{label|ur|سائنسی تصور}} +{{label|en|Scientific concept}} +| comments = + {{comment|ur|سائنسی تصورات، جیسے نظریہ اضافیت، کوانٹم کشش ثقل}} +| rdfs:subClassOf = موضوع کا تصور +}}OntologyClass:سائیکل سوار20013766577022022-04-25T11:57:50Z{{Class +| labels = + {{label|en|cyclist}} + {{label|ur|سائیکل سوار}} +| rdfs:subClassOf = کھلاڑی +}}OntologyClass:سائیکل سوار کی انجمن20014082584352022-05-14T16:49:17Z{{Class +| labels = +{{label|en|cycling league}} + +{{label|ur|سائیکل سوار کی انجمن}} +| comments = +{{comment|ur|کھیلوں کی ٹیموں کا ایک گروپ جو سائیکلنگ میں ایک دوسرے کے خلاف مقابلہ کرتا ہے۔}} +{{comment|en|a group of sports teams that compete against each other in Cycling}} +| rdfs:subClassOf = کھیلوں کی انجمن +}}OntologyClass:سائیکلنگ جماعت20014081584312022-05-14T16:41:45Z{{Class +| labels = +{{label|en|cycling team}} +{{label|ur|سائیکلنگ جماعت}} +| comments = +| rdfs:subClassOf = کھیل کی جماعت +}}OntologyClass:سائیکلنگ دوڑ20013866575842022-04-24T16:15:42Z{{Class +| labels = +{{label|en|cycling race}} + +{{label|ur|سائیکلنگ دوڑ}} +| rdfs:subClassOf = دوڑ +| owl:equivalentClass = wikidata:Q15091377 +}}OntologyClass:سائیکلنگ مقابلہ20013354576402022-04-24T18:41:13Z{{Class +| labels = +{{label|en|cycling competition}} +{{label|ur|سائیکلنگ مقابلہ}} +| rdfs:subClassOf = کھیلوں کی تقریب +}}OntologyClass:سابق بلدیہ20013584581402022-05-12T17:51:18Z{{Class +| labels = +{{label|ur|سابق بلدیہ}} +{{label|en|one-time municipality}} +| comments = +{{comment|ur|ایک بلدیہ جس کا وجود ختم ہو گیا ہے، اور زیادہ تر وقت کسی دوسری بلدیہ میں (تھوک یا جزوی طور پر) شامل ہو گیا ہے}} +{{comment|en|A municipality that has ceased to exist, and most of the time got incorporated (wholesale or partly) into another municipality}} +| rdfs:subClassOf = بلدیہ +| owl:equivalentClass = wikidata:Q19730508 +}}OntologyClass:ساحل سمندر20013186578262022-05-01T17:50:44Z{{Class +|labels = + {{label|ur|ساحل_سمندر}} +{{label|en|beach}} +|comments = +{{comment|ur|پانی کے جسم کا ساحل ، خاص طور پر جب ریت بھرا یا کنکری}} +{{comment|en|The shore of a body of water, especially when sandy or pebbly}} +| rdfs:subClassOf = قدرتی جگہ +}}OntologyClass:ساحل سمندروالی بال کاکھلاڑی20013913578292022-05-01T17:58:54Z{{Class +| labels = +{{label|en|beach volleyball player}} +{{label|ur|ساحل سمندروالی بال کاکھلاڑی}} + +| rdfs:subClassOf = والی بال کاکھلاڑی +}}OntologyClass:ساز20013518587582022-05-16T19:31:03Z{{Class +| labels = +{{label|ur|ساز}} +{{label|en|Instrument}} + +| comments = +{{comment|ur|تمام آلات موسیقی کو بیان کرتا ہے}} +{{comment|en|Describes all musical instrument}} + +| rdfs:subClassOf = آلہ, schema:Product +| owl:equivalentClass = wikidata:Q225829 +}}OntologyClass:سازندہ20013198582622022-05-13T10:51:28Z{{Class +| labels = + +{{label|ur|سازندہ}} +{{label|en|instrumentalist}} +| rdfs:subClassOf = موسیقی کا فنکار + +}}OntologyClass:سافٹ بال انجمن20014131587162022-05-15T13:31:54Z{{Class +| labels = +{{label|en|softball league}} + +{{label|ur|سافٹ بال انجمن}} +| comments = +{{comment|en|A group of sports teams that compete against each other in softball.}} +{{comment|ur|کھیلوں کی ٹیموں کا ایک گروپ جو سافٹ بال میں ایک دوسرے سے مقابلہ کرتا ہے}} +| rdfs:subClassOf = کھیلوں کی انجمن +}}OntologyClass:سافٹ بال کی انجمن20013720564912022-02-17T10:24:59Z{{Class +| labels = +{{label|ur|سافٹ بال کی انجمن}} +| comments = +{{comment|ur|کھیلوں کی ٹیموں کا ایک گروپ جو سافٹ بال میں ایک دوسرے سے مقابلہ کرتا ہے}} +| rdfs:subClassOf = کھیلوں کی انجمن +}}OntologyClass:سال20014134587252022-05-16T17:24:45Z{{Class +| labels = +{{label|ur|سال}} + {{label|en|year}} + +| rdfs:subClassOf = وقت کی مدت +| owl:equivalentClass = wikidata:Q577 +}}OntologyClass:سبز طحالب20013193582592022-05-13T10:44:17Z{{Class +| labels= +{{label|ur|سبز طحالب}} +{{label|en|green alga}} +| rdfs:subClassOf = پودا +}}OntologyClass:ستار20013486582442022-05-13T10:13:39Z{{Class +| labels = + {{ label|ur|ستار}} +{{ label|en|guitar}} +| comments = + {{ comment|ur|ایک تار والا میوزیکل آلہ ، جس میں فنگر فنگر بورڈ ہوتا ہے ، عام طور پر کٹے ہوئے اطراف ، اور چھ یا بارہ تار ، انگلیوں یا پلیکٹرم سے توڑنے یا جھومنے سے بجائے جاتے ہیں۔}} + {{ comment|en|Describes the guitar}} +| rdfs:subClassOf = ساز +<!--| owl:sameAs = <http://www.semanticweb.org/ontologies/2011/3/InstrumentOntology.owl#Guitar>--> +| owl:equivalentClass = wikidata:Q6607 +}}OntologyClass:ستار بجانے والا20014019582612022-05-13T10:49:12Z{{Class +| labels = + +{{label|ur|ستار بجانے والا}} +{{label|en|guitarist}} +| rdfs:subClassOf = سازندہ +| owl:equivalentClass = wikidata:Q855091 +}}OntologyClass:ستارہ20013260587382022-05-16T18:47:52Z{{Class +| labels = +{{label|ur|ستارہ}} +{{label|en|star}} +| rdfs:subClassOf = جرم فلکی +}}OntologyClass:ستارہ غول20013794587102022-05-15T13:16:00Z{{Class +|labels= + {{label|en|Star сluster}} + {{label|ur|ستارہ غول}} + +| owl:disjointWith = شخص +| rdfs:subClassOf = owl:Thing +}}OntologyClass:سجاوٹ20013261557592021-09-17T18:21:46Z{{Class +|labels = + +{{label|ur|سجاوٹ}} +|comments = +{{comment|ur|ایک شے ، جیسے تمغہ یا آرڈر ، جو وصول کنندہ کو عزت سے نوازنے کے لیے دیا جاتا ہے۔}} + +| rdfs:subClassOf = انعام +}} +==References== +<references/>OntologyClass:سرائے20013592569232022-03-04T06:55:37Z{{Class +| labels = +{{label|ur|سرائے}} +{{label|en|hotel}} + +| rdfs:subClassOf = عمارت +| owl:equivalentClass = schema:Hotel, wikidata:Q27686 +}}OntologyClass:سرمائی کھیل کھیلنے والا20013499587472022-05-16T19:01:01Z{{Class +| labels = + +{{label|ur|سرمائی کھیل کھیلنے والا}} +{{label|en|winter sport Player}} +| rdfs:subClassOf = کھلاڑی +}}OntologyClass:سرنگ20014060583742022-05-14T12:08:13Z{{Class +| labels = +{{label|ur|سرنگ}} +{{label|en| tunnel}} +|comments= +{{comment|ur| ایک سرنگ پیدل یا گاڑیوں کی سڑک کے لیے، ریل ٹریفک کے لیے، یا نہر کے لیے ہو سکتی ہے۔ کچھ سرنگیں پانی کی کھپت یا ہائیڈرو الیکٹرک اسٹیشنوں کے لیے پانی کی فراہمی کے لیے آبی راستے ہیں یا گٹر ہیں}} +{{comment|en| 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).}} +| rdfs:subClassOf = تعمیراتی ڈھانچے +| owl:equivalentClass = wikidata:Q44377 +}}OntologyClass:سرکاری محکمہ20013478581752022-05-12T19:41:56Z{{Class +|labels= +{{label|ur|سرکاری محکمہ}} +{{label|en|government agency}} +| rdfs:subClassOf=تنظیم +| owl:equivalentClass = schema:GovernmentOrganization +|comments= +{{comment|ur|ایک سرکاری ایجنسی حکومت کی مشینری میں ایک مستقل یا نیم مستقل تنظیم ہے جو مخصوص افعال کی نگرانی اور انتظام کے لیے ذمہ دار ہے ، جیسے کہ ایک انٹیلی جنس ایجنسی}} +{{comment|en|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.}} +| owl:equivalentClass = wikidata:Q327333 +}}OntologyClass:سرگرمی20013242582452022-05-13T10:16:56Z{{Class +|labels= + +{{label|ur|سرگرمی}} +{{label|en|activity}} +| owl:disjointWith = شخص +| owl:equivalentClass = d0:Activity, wikidata:Q1914636 +| rdfs:subClassOf = owl:Thing +}}OntologyClass:سزا دینے کا عمل20014109585592022-05-15T05:38:32Z{{Class +| labels = +{{label|en|penalty shoot-out}} + +{{label|ur|سزا دینے کا عمل}} + +|comments= +{{comment|ur|سزا دینے کا عمل کھیلوں کے میچوں میں فاتح کا تعین کرنے کا ایک طریقہ ہے جو بصورت دیگر نکل دیا جاتا ہے یا برابر ہو جاتا۔}} + +| rdfs:subClassOf = تقریب, dul:Event +}}OntologyClass:سفید رنگ کے خلیوں پر مشتمل ایک بے رنگ سیال20013641585402022-05-14T20:21:29Z{{Class +|labels = +| rdfs:label@en = lymph +{{label|ur|سفید رنگ کے خلیوں پر مشتمل ایک بے رنگ سیال}} +| rdfs:subClassOf = جسمانی ساخت +}}OntologyClass:سفیر20013295577432022-04-26T12:10:29Z{{Class +| labels = +{{label|ur|سفیر}} +{{label|en|ambassador}} + +| rdfs:subClassOf = سیاستدان + +| comments = +{{comment|ur|ایک غیر ملکی حکومت سے منظور شدہ اعلیٰ ترین عہدے کا سفارتی کارندہ}} +{{comment|en|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.}} + +| owl:equivalentClass = wikidata:Q121998 +}}OntologyClass:سلسلہ وار قاتل20013703586382022-05-15T10:14:20Z{{Class +| labels = +{{label|ur|سلسلہ وار قاتل}} +{{label|en|serial killer}} +| rdfs:subClassOf = قاتل +| owl:equivalentClass = wikidata:Q484188 +}}OntologyClass:سلسلہ وار ڈرامے کا کردار20013723564972022-02-17T10:49:07Z{{Class +| labels = +{{label|ur|سلسلہ وار ڈرامے کا کردار}} +| rdfs:subClassOf = خیالی کردار +}}OntologyClass:سمندر20013669579702022-05-06T02:35:03Z{{Class +| labels = +{{label|en|Ocean}} +{{label|ur|سمندر}} +| comments = +{{comment|ur|نمکین پانی کا ایک جسم جو سیارے کے ہائیڈروسفیئر کا زیادہ تر حصہ بناتا ہے۔ }} + +| rdfs:subClassOf = اجسامِ آب +| owl:equivalentClass = wikidata:Q9430 +}}OntologyClass:سند20014040583122022-05-13T16:50:54Z{{Class +| labels = +{{label|en|diploma}} +{{label|ur|سند}} +}}OntologyClass:سنوکر کا فاتح20013724587182022-05-15T15:46:06Z{{Class +| rdfs:label@en = snooker world champion +| labels = + {{label|ur|سنوکر کا فاتح}} +| comments = + {{comment|ur|کھیلوں کی ٹیموں یا انفرادی کھلاڑیوں کا ایک گروہ جو ایک مخصوص کھیل میں ایک دوسرے کے خلاف مقابلہ کرتے ہیں۔}} +| rdfs:subClassOf = سنوکر کے کھلاڑی +}}OntologyClass:سنوکر کی عالمی درجہ بندی20013714586712022-05-15T10:53:54Z{{Class +| labels = +{{label|en|snooker world ranking}} +{{label|ur|سنوکر کی عالمی درجہ بندی}} +| comments = +{{comment|ur|ایک مخصوص سال/سیزن کے لیے سنوکر میں آفیشل عالمی درجہ بندی}} +| rdfs:subClassOf = کھیلوں کے مقابلے کا نتیجہ <!-- dul:Role --> +}}OntologyClass:سنوکر کے کھلاڑی20013688586832022-05-15T12:02:51Z{{Class +| labels = +{{label|en|snooker player}} +{{label|ur|سنوکر کے کھلاڑی}} +| comments = +| rdfs:comment@en = An athlete that plays snooker, which is a billard derivate + +{{comment|ur|ایک کھلاڑی جو سنوکر کھیلتا ہے، جو بلارڈ ڈیریویٹ ہے۔}} + +| rdfs:subClassOf = کھلاڑی +}}OntologyClass:سنگل20013705586392022-05-15T10:15:15Z{{Class +| labels = +{{label|ur|سنگل}} +{{label|en|single}} +| comments = +{{comment|ur|موسیقی میں، سنگل یا ریکارڈ سنگل ریلیز کی ایک قسم ہے، عام طور پر ایل پی یا سی ڈی سے کم ٹریک کی ریکارڈنگ}} +| rdfs:subClassOf = موسیقی کا کام +| owl:equivalentClass = wikidata:Q134556 +}}OntologyClass:سنیما20013315576102022-04-24T17:37:09Z{{Class +| labels = +{{label|en|cinema (movie theater)}} +{{label|ur|سنیما}} +| rdfs:subClassOf = پنڈال +| comments = +{{comment|en|A building for viewing films.}} +{{comment|ur|فلم دیکھنے کے لیے ایک عمارت۔.}} +| owl:equivalentClass = wikidata:Q41253 +}}OntologyClass:سورج گرہن20013712586682022-05-15T10:45:30Z{{Class +| labels = +{{label|en|solar eclipse}} +{{label|ur|سورج گرہن}} +| rdfs:subClassOf = قدرتی واقعہ +| comments = +{{comment|ur|سورج گرہن ایک ایسا واقعہ ہے جس میں چاند سورج اور زمین کے درمیان مداخلت کرتا ہے، جس کی وجہ سے زمین کے کچھ علاقوں کو معمول سے کم روشنی ملتی ہے}} +| owl:equivalentClass = wikidata:Q3887 +}}OntologyClass:سومو پہلوان20013756587032022-05-15T13:00:05Z{{Class +| labels = +{{label|en|sumo wrestler}} +{{label|ur|سومو پہلوان}} +| rdfs:subClassOf = پہلوان +}}OntologyClass:سپریڈ شیٹ20013697564332022-02-17T04:07:23Z{{Class +| labels = +{{label|ur|سپریڈ شیٹ}} + +|comments= +{{comment|ur|مرتب و شمار یا معلومات کو کام میں لانےوالاایک کمپیوٹر پروگرام}} + +}}OntologyClass:سپیڈ وے ٹیم20013698586632022-05-15T10:41:12Z{{Class +| labels = +{{label|en|speedway team}} +{{label|ur|سپیڈ وے ٹیم}} +| rdfs:subClassOf = کھیل کی جماعت +}}OntologyClass:سڑک20014169588772022-06-20T14:15:18Z{{Class +| labels = +{{label|en|road}} +{{label|ur|سڑک}} +| rdfs:subClassOf = نقل و حمل کا راستہ +| owl:equivalentClass = wikidata:Q34442 +}}OntologyClass:سکہ رائج الوقت20013184577002022-04-25T11:54:02Z{{Class +| labels = +{{label|en|currency}} +{{label|ur|سکہ رائج الوقت}} + +| rdfs:subClassOf = owl:Thing +}}OntologyClass:سیارہ20013972585632022-05-15T05:46:54Z{{Class +| labels = +{{label|en|planet}} +{{label|ur|سیارہ}} +| rdfs:subClassOf = جرم فلکی +| specificProperties = {{SpecificProperty | ontologyProperty = temperature | unit = kelvin }} + {{SpecificProperty | ontologyProperty = orbitalPeriod | unit = day }} + {{SpecificProperty | ontologyProperty = density | unit = kilogramPerCubicMetre }} + {{SpecificProperty | ontologyProperty = mass | unit = kilogram }} + {{SpecificProperty | ontologyProperty = apoapsis | unit = kilometre }} + {{SpecificProperty | ontologyProperty = maximumTemperature | unit = kelvin }} + {{SpecificProperty | ontologyProperty = averageSpeed | unit = kilometrePerSecond }} + {{SpecificProperty | ontologyProperty = volume | unit = cubicKilometre }} + {{SpecificProperty | ontologyProperty = surfaceArea | unit = squareKilometre }} + {{SpecificProperty | ontologyProperty = meanTemperature | unit = kelvin }} + {{SpecificProperty | ontologyProperty = minimumTemperature | unit = kelvin }} + {{SpecificProperty | ontologyProperty = periapsis | unit = kilometre }} + {{SpecificProperty | ontologyProperty = meanRadius | unit = kilometre }} +| owl:equivalentClass = wikidata:Q634 +}}OntologyClass:سیاستدان20013296582412022-05-13T09:59:49Z{{Class +| labels = + +{{label|ur|سیاستدان}} +{{label|en|politician}} +| rdfs:subClassOf = شخص +| owl:equivalentClass = wikidata:Q82955 +}}OntologyClass:سیاستدان میاں بیوی20013983585802022-05-15T06:42:29Z{{Class +| labels = +{{label|en|politician spouse}} +{{label|ur|سیاستدان میاں بیوی}} +| rdfs:subClassOf = شخص +}}OntologyClass:سیاسی تصور20013980585662022-05-15T06:01:40Z{{Class +| labels = + {{label|en|Political concept}} +{{label|ur|سیاسی تصور}} +| comments = + {{comment|en|Political concepts, e.g. Capitalism, Democracy}} + + {{comment|ur|سیاسی تصورات، جیسے سرمایہ داری، جمہوریت}} +| rdfs:subClassOf = موضوع کا تصور +}}OntologyClass:سیاسی تقریب20013981585792022-05-15T06:40:54Z{{Class +| labels = +{{label|en|political function}} +{{label|ur|سیاسی تقریب}} +| rdfs:subClassOf = شخص کی تقریب +}}OntologyClass:سیاسی جماعت20013982586012022-05-15T07:41:32Z{{Class +|labels= +{{label|en|political party}} +{{label|ur|سیاسی جماعت}} +| rdfs:subClassOf = تنظیم +| owl:equivalentClass = wikidata:Q7278 +}}OntologyClass:سینیٹ کا رُکن20013682586462022-05-15T10:23:43Z{{Class +| labels = +{{label|en|senator}} +{{label|ur|سینیٹ کا رُکن}} +| rdfs:subClassOf = سیاستدان +}}OntologyClass:شاعر20013977585652022-05-15T05:53:06Z{{Class +| labels = +{{label|en|poet}} +{{label|ur|شاعر}} + +| rdfs:subClassOf = مصنف +| owl:equivalentClass = wikidata:Q49757 +}}OntologyClass:شاہی20013993585612022-05-15T05:41:24Z{{Class +| labels = +{{label|en|royalty}} +{{label|ur|شاہی}} +| rdfs:subClassOf = شخص +}}OntologyClass:شخص20013142587412022-05-16T18:56:16Z{{Class +| labels = +{{label|ur|شخص}} + {{label|en|person}} + +| rdfs:subClassOf = جانور +| owl:equivalentClass = foaf:شخص, schema:Person, wikidata:Q215627, wikidata:Q5, dul:NaturalPerson +| specificProperties = {{SpecificProperty | ontologyProperty = weight | unit = kilogram }} + {{SpecificProperty | ontologyProperty = height | unit = centimetre }} +}}OntologyClass:شخص کی تقریب20013965585712022-05-15T06:11:02Z{{Class +| labels = +{{label|en|person function}} +{{label|ur|شخص کی تقریب}} +| rdfs:subClassOf = owl:Thing +}}OntologyClass:شراب20013860575642022-04-24T15:06:18Z{{Class +|labels= + {{label|en|wine}} + {{label|ur|شراب}} + +| rdfs:subClassOf = مشروب +| owl:equivalentClass = wikidata:Q282 +}}OntologyClass:شراب خانہ20014123586532022-05-15T10:28:25Z{{Class +| labels = +{{label|ur|شراب خانہ}} +{{label|en|winery}} + +| rdfs:subClassOf = تِجارتی اِدارہ +| owl:equivalentClass = wikidata:Q156362 +}}OntologyClass:شراب کا علاقہ20014100585092022-05-14T19:27:42Z{{Class +| labels = +{{label|ur|شراب کا علاقہ}} +{{label|en|wine region}} + +| rdfs:subClassOf = جگہ +}}OntologyClass:شریان20013437579172022-05-05T11:28:05Z{{Class +| labels = +{{label|ur|شریان}} +{{label|en|artery}} + +| rdfs:subClassOf = جسمانی ساخت +| owl:equivalentClass = wikidata:Q9655 +}}OntologyClass:شریف خاندان20013607586252022-05-15T08:20:15Z{{Class +| labels = +{{label|en|Noble family}} + +{{label|ur|شریف خاندان}} + +| rdfs:subClassOf =خاندان +| comments = +{{comment|en|Family deemed to be of noble descent}} +{{comment|ur|خاندان کو شریف النسل سمجھا جاتا ہے۔}} +| owl:equivalentClass = wikidata:Q13417114 +}}OntologyClass:شطرنج کا کھلاڑی20013312576072022-04-24T17:29:45Z{{Class +| labels = +{{label|en|chess player}} +{{label|ur|شطرنج کا کھلاڑی}} +| rdfs:subClassOf = کھلاڑی +}}OntologyClass:شعبہ20013264584492022-05-14T17:25:25Z{{Class +| labels = +{{label|en|department}} +{{label|ur|شعبہ}} +| rdfs:subClassOf = حکومتی انتظامی علاقہ +}}OntologyClass:شماریات20013752587022022-05-15T12:58:10Z{{Class +| labels = +{{label|en|statistic}} +{{label|ur|شماریات}} +| owl:equivalentClass = wikidata:Q1949963 +}}OntologyClass:شناخت کنندہ20013661587612022-05-16T19:36:11Z{{Class +| labels= +{{label|ur|شناخت کنندہ}} +{{label|en|identifier}} + +| owl:equivalentClass = wikidata:Q6545185 +}}OntologyClass:شوقیہ مکے باز20013898577392022-04-26T12:06:44Z{{Class +| labels = {{label|en|amateur boxer}} +{{label|ur|شوقیہ مکے باز}} + +| rdfs:subClassOf = مکے باز +}}OntologyClass:شہر20013271574912022-04-24T10:36:10Z{{Class +| labels = +{{label|ur|شہر}} +{{label|en|city}} +| comments = +{{comment|en|a relatively large and permanent settlement, particularly a large urban settlement}} + +{{comment|ur|ایک نسبتا بڑی اور مستقل آبادی ، خاص طور پر ایک بڑی شہری بستی}} +| rdfs:subClassOf = بستی +| owl:equivalentClass = schema:City, wikidata:Q515 +}}OntologyClass:شہر کا ضلع20013322576122022-04-24T17:42:07Z{{Class +| labels = +{{label|en|city district}} +{{label|ur|شہر کا ضلع}} +| comments = +{{comment|en|District, borough, area or neighbourhood in a city or town}} + +{{comment|ur|کسی شہر یا قصبے میں ضلع کا علاقہ یا محلہ۔}} +| rdfs:subClassOf = بستی +| owl:equivalentClass = +}}OntologyClass:شہر کا منتظم20013926578962022-05-05T10:54:15Z{{Class +| labels = +{{label|ur| شہر کا منتظم }} +{{label|en|mayor}} +| rdfs:subClassOf = سیاستدان + +| owl:equivalentClass = wikidata:Q30185 +}}OntologyClass:صحافی20013643569412022-03-05T05:34:15Z{{Class +| labels = +{{label|en|journalist}} +{{label|ur|صحافی}} +| rdfs:subClassOf = شخص +| owl:equivalentClass = wikidata:Q1930187 +}}OntologyClass:صدر20013990585702022-05-15T06:08:14Z{{Class +| labels = +{{label|en|president}} +{{label|ur|صدر}} +| rdfs:subClassOf = سیاستدان +| owl:equivalentClass = wikidata:Q30461 +}}OntologyClass:صنف20013323577702022-04-26T12:52:27Z{{Class +|labels= +{{label|en|genre}} +{{label|ur|صنف}} +| rdfs:subClassOf = موضوع کا تصور +}}OntologyClass:صنوبر کی قِسم کا پودا20013163576902022-04-25T11:35:11Z{{Class +| labels = +{{label|en|conifer}} + {{label|ur|صنوبر کی قِسم کا پودا}} +| rdfs:subClassOf = پودا +| comments = + {{comment|ur| عروقی (نالی دار)پودے ہیں ، بیج ایک شنک میں موجود ہوتے ہیں۔ وہ لکڑی کے پودے ہیں۔}} +}} +== References == +<references />OntologyClass:صوبہ20013531584932022-05-14T19:11:10Z{{Class +| labels = + {{label|en|province}} +{{label|ur|صوبہ}} + +| comments = + {{comment|en|An administrative body governing a territorial unity on the intermediate level, between local and national level}} + +{{comment|ur|ایک انتظامی ادارہ جو مقامی اور قومی سطح کے درمیان انٹرمیڈیٹ سطح پر علاقائی وحدت کا انتظام کرتا ہے۔}} +| rdfs:subClassOf = حکومتی انتظامی علاقہ +| owl:equivalentClass = +}}OntologyClass:ضلع20013529584902022-05-14T19:07:30Z{{Class +| labels = +{{label|en|district}} +{{label|ur|ضلع}} +| comments = + +{{comment|ur|ضلع کے تحت انتظامی علاقے کا حصہ}} +| rdfs:subClassOf =حکومتی انتظامی علاقہ +}}OntologyClass:ضِلَع20013267575962022-04-24T16:48:06Z{{Class +| labels = +{{label|en|canton}} +{{label|ur|ضِلَع}} +| comments = +{{comment|en|An administrative (France) or lawcourts (Netherlands) body governing a territorial unity on the municipal level or somewhat above}} + +{{comment|ur|ایک انتظامی (فرانس) یا قانون کی عدالت (نیدرلینڈز) کا ادارہ جو علاقائی وحدت کا انتظام کرتا ہے بلدیاتی سطح پر یا اس سے کچھ اوپر}} +| rdfs:subClassOf = حکومتی انتظامی علاقہ +| owl:equivalentClass = +}}OntologyClass:طبی خصوصیت20013779579002022-05-05T10:59:15Z{{Class +| labels = + {{label|de|طبی خصوصیت}} + {{label|en|medical specialty}} +| rdfs:subClassOf = owl:Thing +| owl:equivalentClass = wikidata:Q930752 +}}OntologyClass:طبیب20013737579922022-05-06T10:20:04Z{{Class +| labels = + +{{label|ur|طبیب}} +{{label|en|medician}} +| rdfs:subClassOf = سائنسدان +}}OntologyClass:طوفانی لہر20013796587112022-05-15T13:18:21Z{{Class +| labels = +{{label|en|storm surge}} +{{label|ur|طوفانی لہر}} +| rdfs:subClassOf = قدرتی واقعہ +| comments = +{{comment|ur|64-72 ناٹس (بیفورٹ اسکیل پر 11) اور بارش اور گرج چمک کے ساتھ ایک پرتشدد موسمی صورتحال}} +}}OntologyClass:طيار20014110585762022-05-15T06:27:51Z{{Class +| labels = + {{label|en|Pilot}} + +{{label|ur|طیارہ اڑانے والا}} +| rdfs:subClassOf = شخص +}}OntologyClass:طیارہ اڑانے والا20013971580742022-05-11T04:23:50Z{{Class +| labels = +{{label|ur|طیارہ اڑانے والا}} +| rdfs:subClassOf = شخص +}}OntologyClass:ظریف20013658569242022-03-04T06:56:33Z{{Class +| labels = +{{label|en|humorist}} +{{label|ur|ظریف}} + +| rdfs:subClassOf = فنکار +}}OntologyClass:عالمی ثقافتی ورثہ20014125586612022-05-15T10:38:05Z{{Class +| labels = +{{label|ur|عالمی ثقافتی ورثہ}} +{{label|en|World Heritage Site}} +| comments = +{{comment|ur|یونیسکو کی عالمی ثقافتی ورثہ سائٹ ایک ایسی جگہ ہے (جیسے جنگل، پہاڑ، جھیل، صحرا، یادگار، عمارت، کمپلیکس، یا شہر) جو اس فہرست میں شامل ہے جسے یونیسکو کی عالمی ثقافتی ورثہ کمیٹی کے زیر انتظام بین الاقوامی عالمی ثقافتی ورثہ پروگرام کے ذریعے برقرار رکھا جاتا ہے۔ 21 ریاستی پارٹیوں پر مشتمل ہے جنہیں ان کی جنرل اسمبلی چار سال کی مدت کے لیے منتخب کرتی ہے۔ عالمی ثقافتی ورثہ کی جگہ ثقافتی یا جسمانی اہمیت کی حامل جگہ ہے}} +{{comment|en|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.}} +| rdfs:subClassOf = جگہ +| owl:equivalentClass = wikidata:Q9259 +}}OntologyClass:عالمی وباء20013959585922022-05-15T07:17:20Z{{Class +| labels = +{{label|en|Pandemic}} +{{label|ur|عالمی وباء}} + +| comments = +{{comment|en|Global epidemic of infectious disease}} + +{{comment|ur|متعدی بیماری کی عالمی وبا}} +| rdfs:subClassOf = owl:Thing +| rdfs:domain = owl:Thing +| rdfs:range = Pandemic +}}OntologyClass:عجائب گھر20013943579832022-05-06T07:34:43Z{{Class +| labels = + +{{label|ur|عجائب گھر}} +{{label|en|museum}} +| rdfs:subClassOf = عمارت +| owl:equivalentClass = schema:Museum +| owl:equivalentClass = wikidata:Q33506 +}}OntologyClass:عرفیت20013753587052022-05-15T13:02:28Z{{Class +| labels = +{{label|en|surname}} +{{label|ur|عرفیت}} + +|comments= +{{comment|ur|خاندانی نام}} +| rdfs:subClassOf = نام +}}OntologyClass:عضو20013671579942022-05-06T10:29:52Z{{Class +| labels = + {{label|en|organ}} + {{label|ur|عضو}} +| comments = + {{ comment|ur|اعضاء کی تمام اقسام اور سائز}} + +| rdfs:subClassOf = ساز + +| owl:equivalentClass = wikidata:Q1444 +}}OntologyClass:عظیم20013599586112022-05-15T07:58:42Z{{Class +| labels = +{{label|en|noble}} +{{label|ur|عظیم}} + +| rdfs:subClassOf = شخص + +}}OntologyClass:علاقہ20013138574622022-04-24T09:19:25Z{{Class +| labels = +{{label|en|region}} +{{label|ur|علاقہ}} + +| rdfs:subClassOf = آبادی والی جگہ +| owl:equivalentClass = wikidata:Q3455524 +}}OntologyClass:علاقے کا دارالحکومت20013268575992022-04-24T16:55:10Z{{Class +| labels = +{{label|en|Capital of region}} +{{label|ur|علاقے کا دارالحکومت}} +| comments = +{{comment|ur|فرسٹ آرڈر ایڈمنسٹریشن ڈویژن کی نشست۔}} +{{comment|en|seat of a first order administration division.}} +| rdfs:subClassOf = شہر +}}OntologyClass:علما کا حکم20013852575352022-04-24T12:18:44Z{{Class +| labels = +{{label|en|clerical order}} + +{{label|ur|علما کا حکم}} +| comments = +{{comment|ur|خانقاہی حکم مذہبی، مردوں یا عورتوں کا ایک حکم ہے، جو ایک مشترکہ عقیدہ اور خانقاہی اصول کے بارے میں متحد ہو گئے ہیں جس کے وہ پابند ہیں، اور ایک ہی مقامی کمیونٹی، ایک خانقاہ یا مندر کے اندر مستقل طور پر ایک ساتھ رہتے ہیں۔ ہم خیال مذہبیوں کی کئی خانقاہیں مل کر ایک خانقاہی ترتیب بناتی ہیں۔}} +| rdfs:subClassOf = مذہبی تنظیم +}}OntologyClass:علمی انتظامی علاقہ20013136576812022-04-25T11:17:23Z{{Class +| labels = +{{label|en|clerical administrative region}} +{{label|ur|علمی انتظامی علاقہ }} +| comments = + {{comment|en|An administrative body governing some territorial unity, in this case a clerical administrative body}} + +{{comment|ur| ایک علمی انتظامی معاملات میں ایک انتظامی ادارہ جو کچھ علاقائی وحدت کو کنٹرول کرتا ہے}} +| rdfs:subClassOf = انتظامی علاقہ +| owl:equivalentClass = +}}OntologyClass:عمارت20013320575072022-04-24T11:04:17Z{{Class +| labels = +{{label|en|building}} +{{label|ur|عمارت}} +| comments = +{{comment|ur|عمارت کو سول انجینئرنگ ڈھانچے سے تعبیر کیا جاتا ہے جیسے مکان ، عبادت گاہ ، فیکٹری وغیرہ جس کی بنیاد ، دیوار ، چھت وغیرہ ہوتی ہے جو انسان اور ان کی خصوصیات کو موسم کے براہ راست سخت اثرات جیسے بارش ، ہوا ، سورج وغیرہ سے محفوظ رکھتی ہے۔ }} + +{{comment|en|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).}} + +| rdfs:subClassOf = تعمیراتی ڈھانچے +| owl:disjointWith =شخص +| specificProperties = {{SpecificProperty | ontologyProperty = floorArea | unit = squareMetre }} +| owl:equivalentClass = wikidata:Q41176 +}}OntologyClass:عمید کا عہدہ20013358582252022-05-13T09:10:16Z{{Class +| labels = +{{label|en|deanery}} +{{label|ur|عمید کا عہدہ}} +| comments = +{{comment|ur|گرجا گھر کا حلقہ اور بشپ کے دائرہ اختیار کا حلقہ کے مابین علمی انتظامی ادارے کی انٹرمیڈیٹ سطح۔}} +| rdfs:subClassOf = علمی انتظامی علاقہ +| owl:equivalentClass = +}}OntologyClass:عنکبات20013302578862022-05-05T08:48:55Z{{Class +| labels = +{{label|en|arachnid}} +{{label|ur|عنکبات}} +|comments= +{{comment|ur|حیوانیات میں اِس خاندان کا نام جِس میں مکڑی اور بچھو وغیرہ شامِل ہیں}} + +| rdfs:subClassOf = جانور +}}OntologyClass:عوامی راہداری کا نظام20013237587522022-05-16T19:09:33Z{{Class +| labels = +{{label|ur|عوامی راہداری کا نظام}} +{{label|en|public transit system}} + +| comments = +{{comment|ur|عوامی راہداری کا نظام ایک مشترکہ عوامی نقل و حمل کی سروس ہے جو عام لوگوں کے استعمال کے لیے دستیاب ہے۔عوامی نقل و حمل کے طریقوں میں بسیں ، ٹرالی بسیں ، ٹرام اور ٹرینیں ، 'تیز رفتارراہداری' (میٹرو/زمین دوز برقی ریل/زیر زمین وغیرہ) اور فیری شامل ہیں۔}} +{{comment|en|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).}} + + +| rdfs:subClassOf = تِجارتی اِدارہ +}}OntologyClass:عورت20014101585122022-05-14T19:30:57Z{{Class +| labels = +{{label|ur|عورت}} +{{label|en|woman}} + +| rdfs:subClassOf = شخص +| owl:equivalentClass = wikidata:Q467 +}}OntologyClass:عکسی تصویر اتارنے والا20013970585622022-05-15T05:43:44Z{{Class +| labels = +{{label|en|photographer}} +{{label|ur|عکسی تصویر اتارنے والا}} +| rdfs:subClassOf = فنکار +| owl:equivalentClass = wikidata:Q33231 +}}OntologyClass:عہدے دار20013673579712022-05-06T02:40:28Z{{Class +| labels = +{{label|en|office holder}} +{{label|ur|عہدے دار}} +| rdfs:subClassOf = شخص +}}OntologyClass:عیسائی نظریہ20013849575222022-04-24T11:42:02Z{{Class +| labels = +{{label|en|Christian Doctrine}} + +{{label|ur|عیسائی نظریہ}} + +| comments = {{comment|en|Tenets of the Christian faith, e.g. Trinity, Nicene Creed}} +{{comment|ur|عیسائی عقیدے کے اصول، جیسے تثلیث، نیکین عقیدہ}} +| rdfs:subClassOf = مذہبی تصور +}}OntologyClass:عیسائی پادري20013925578952022-05-05T10:47:11Z{{Class +| labels = +{{label|en|Christian Bishop}} +{{label|ur| عیسائی پادري}} +| rdfs:subClassOf = پادری +}}OntologyClass:عیسائی پادری20013869581872022-05-13T03:05:28Z{{Class +| labels = +{{label|en|Christian Patriarch}} + +{{label|ur|عیسائی پادری}} +| rdfs:subClassOf = پادری +}}OntologyClass:غار20013846575112022-04-24T11:13:17Z{{Class +| labels = + +{{label|ur|غار}} + +| rdfs:subClassOf =قدرتی جگہ +| owl:equivalentClass = wikidata:Q35509 +}}OntologyClass:غول20013515582502022-05-13T10:28:59Z{{Class +| labels = + +{{label|ur|غول}} +{{label|en|Swarm}} +| rdfs:subClassOf = جرم فلکی}}OntologyClass:غیر منافع بخش تنظیم20013654586052022-05-15T07:45:38Z{{Class +| labels= +{{label|en|non-profit organisation}} +{{label|ur|غیر منافع بخش تنظیم}} +| rdfs:subClassOf = تنظیم +| owl:equivalentClass = wikidata:Q163740 +}}OntologyClass:فائل20013554581472022-05-12T18:10:05Z{{Class +| labels = +{{label|ur|فائل}} +{{label|en|file}} +| comments = +{{comment|ur|فائل نام کے ساتھ ایک دستاویز}} +{{comment|en|A document with a filename}} +| rdfs:subClassOf = دستاویز +| owl:equivalentClass = +}}OntologyClass:فائل سسٹم20013542581592022-05-12T18:51:48Z{{Class +|labels= + {{label|ur|فائل سسٹم}} +{{label|en|File system}} +|comments= +{{comment|ur|فائلوں میں درجہ بندی کا نظام}} +{{comment|en|File classification system}} +| owl:disjointWith = شخص +| rdfs:subClassOf = owl:Thing +}}OntologyClass:فارمولا ون ریسر20013545581532022-05-12T18:22:25Z{{Class +| labels = +{{label|ur|فارمولا ون ریسر}} +{{label|en|Formula One racer}} + +| rdfs:subClassOf = مقابلہ میں کاریں چلانے والے +}}OntologyClass:فارمولا ون ریسنگ20013548581622022-05-12T18:58:26Z{{ Class +| labels = +{{label|ur|فارمولا ون ریسنگ}} +{{label|en|formula one racing}} +| rdfs:subClassOf = کھیلوں کی انجمن +}}OntologyClass:فارمولا ون ٹیم20013552581412022-05-12T17:53:50Z{{Class +| labels = +{{label|ur|فارمولا ون ٹیم}} +{{label|en|formula 1 team}} +| rdfs:subClassOf = کھیل کی ٹیم +}}OntologyClass:فراعنہ20013967584412022-05-14T17:08:01Z{{Class +| labels = + {{label|ur|فراعنہ}} + {{label|en|Pharaoh}} +|comments= +{{comment|ur| قدیم بادشاہوں کا ایک لقب}} +| rdfs:subClassOf = شاہی +}}OntologyClass:فرانس کا انتظامی ضلع20013316579142022-05-05T11:23:50Z{{Class +| labels = +{{label|ur|فرانس کا انتظامی ضلع}} +{{label|en|arrondissement}} +| comments = +{{comment|ur|ایک انتظامی (فرانس) یا قانون کی عدالتیں (نیدرلینڈز) جو کہ علاقائی وحدت پر مقامی اور قومی سطح کے درمیان حکمرانی کرتی ہیں}} +{{comment|en|An administrative (France) or lawcourts (Netherlands) body governing a territorial unity on the intermediate level, between local and national level}} +| rdfs:subClassOf = حکومتی انتظامی علاقہ +| owl:equivalentClass = +}}OntologyClass:فرقہ واریت20013760587732022-05-16T19:51:36Z{{Class +| labels = + +{{label|ur|فرقہ واریت}} +{{label|en|Intercommunality}} +| rdfs:subClassOf = آبادی والی جگہ +| owl:equivalentClass = wikidata:Q3153117 +}}OntologyClass:فروخت20013732586722022-05-15T11:39:11Z{{Class +| labels = + {{label|en|sales}} + {{label|ur|فروخت}} +| rdfs:subClassOf = سرگرمی +| owl:equivalentClass = wikidata:Q194189 +}}OntologyClass:فلسفی20013968585752022-05-15T06:25:07Z{{Class +| labels = +{{label|en|philosopher}} +{{label|ur|فلسفی}} +| rdfs:subClassOf = شخص +| owl:equivalentClass = wikidata:Q4964182 +}}OntologyClass:فلسفیانہ تصور20013969585952022-05-15T07:35:15Z{{Class +| labels = + {{label|en|Philosophical concept}} +{{label|ur|فلسفیانہ تصور}} +| comments = + {{comment|en|Philosophical concepts, e.g. Existentialism, Cogito Ergo Sum}} + +{{comment|ur|فلسفیانہ تصورات، جیسے وجودیت، ٹریوس سم}} +| rdfs:subClassOf = موضوع کا تصور +}}OntologyClass:فلم20013215581342022-05-12T17:34:35Z{{Class +| labels = +{{label|ur|فلم}} +{{label|en|film}} +| rdfs:subClassOf = کام +| owl:equivalentClass = schema:Movie ,wikidata:Q11424 +}}OntologyClass:فلم کا ہدایت کار20014052583582022-05-14T10:11:17Z{{Class +| labels = + +{{label|ur|فلم کا ہدایت کار }} +{{label|en|Movie director}} +| comments = +{{comment|ur|ایک شخص جو فلم بنانے کی نگرانی کرتا ہے}} +{{comment|en|a person who oversees making of film.}} +| rdfs:subClassOf = شخص +| owl:equivalentClass = wikidata:Q2526255 +}}OntologyClass:فلم کی صنف20013769577692022-04-26T12:51:24Z{{Class +|labels= +{{label|en|movie genre}} +{{label|ur|فلم کی صنف}} + + +| rdfs:subClassOf = صنف + +}}OntologyClass:فلمی میلہ20013553581482022-05-12T18:13:33Z{{Class +| labels = +{{label|ur|فلمی میلہ}} +{{label|en|film festival}} +| rdfs:subClassOf = معاشرتی واقعہ, schema:Festival +| owl:equivalentClass = wikidata:Q220505 +}}OntologyClass:فلک بوس عمارت20013708586592022-05-15T10:36:30Z{{Class +| labels = +{{label|en|skyscraper}} +{{label|ur|فلک بوس عمارت}} +| rdfs:subClassOf = عمارت +| owl:equivalentClass = wikidata:Q11303 +}}OntologyClass:فنکار20013150575492022-04-24T14:30:32Z{{Class +| labels = +{{label|en|artist}} +{{label|ur|فنکار}} +| rdfs:subClassOf = شخص +| owl:equivalentClass = wikidata:Q483501 +}}OntologyClass:فنکارانہ انداز کی مدت20013964585742022-05-15T06:22:45Z{{Class +|labels= + {{label|en|period of artistic style}} +{{label|ur|فنکارانہ انداز کی مدت}} +| rdfs:subClassOf = وقت کی مدت +| owl:disjointWith = شخص +}}OntologyClass:فنکارانہ صنف20013321579242022-05-05T12:12:09Z{{Class +|labels= +{{label|en|artistic genre}} +{{label|ur|فنکارانہ صنف}} +| comments = +{{comment|ur|فن کی انواع }} +{{comment|en|Genres of art, e.g. Pointillist, Modernist}} +| rdfs:subClassOf = صنف +| rdfs:comment = Please note, that the two comments (English and German) depart from different definitions +}}OntologyClass:فنکارکاریکارڈ نامہ20013930579302022-05-05T12:34:53Z{{Class +| labels = +{{label|en|artist discography}} +{{label|ur|فنکارکاریکارڈ نامہ}} +| rdfs:subClassOf = موسیقی کا کام +}}OntologyClass:فوجی افسر20014107585482022-05-14T20:34:08Z{{Class +| labels = +{{label|en|lieutenant}} +{{label|ur|فوجی افسر}} + +| rdfs:subClassOf = سیاستدان + +}}OntologyClass:فوجی تنازعہ20013741579992022-05-06T10:37:56Z{{Class +| labels = + +{{label|ur|فوجی تنازعہ}} +{{label|en|military conflict}} + +| rdfs:subClassOf = معاشرتی واقعہ + +}}OntologyClass:فوجی خدمات20013782579162022-05-05T11:27:24Z{{Class +|labels= +{{label|ur|فوجی خدمات}} +{{label|en|military service}} +| rdfs:subClassOf = کیریئر سٹیشن + +}}OntologyClass:فوجی شخص20013896577332022-04-26T11:52:03Z{{Class +| labels = +{{label|en|military person}} + +{{label|ur|فوجی شخص}} +| rdfs:subClassOf = شخص +}}OntologyClass:فوجی ڈھانچہ20013546580002022-05-06T10:47:30Z{{Class +| labels = +{{label|ur|فوجی ڈھانچہ}} +{{label|en|military structure}} +| comments = +{{comment|ur|ایک فوجی ڈھانچہ جیسے قلعہ اور دیوار وغیرہ}} +{{comment|en|A military structure such as a Castle, Fortress, Wall, etc.}} +| rdfs:subClassOf = تعمیراتی ڈھانچہ +}}OntologyClass:فوجی گاڑی20013783579252022-05-05T12:12:09Z{{Class +| labels = + +{{label|ur|فوجی گاڑی}} +{{label|en|military vehicle}} +| rdfs:subClassOf = نقل و حمل کے ذرائع +, schema:Product +| owl:equivalentClass = +}}OntologyClass:فوجی ہوائی جہاز20013781579152022-05-05T11:24:05Z{{Class +| labels = +{{label|ur|فوجی ہوائی جہاز}} +{{label|en|military aircraft}} +| rdfs:subClassOf = ہوائی جہاز + +}}OntologyClass:فوجی یونٹ20013897577352022-04-26T11:55:04Z{{Class +| labels = +{{label|en|military unit}} + +{{label|ur|فوجی یونٹ}} +| rdfs:subClassOf = تنظیم +| owl:equivalentClass = wikidata:Q176799 +}}OntologyClass:فٹ بال باہمی مقابلہ20013690586852022-05-15T12:09:30Z{{Class +| labels = +{{label|en|soccer tournoment}} + {{label|ur|فٹ بال باہمی مقابلہ}} +| rdfs:subClassOf = باہمی مقابلہ +}}OntologyClass:فٹ بال تنظیم20014118586312022-05-15T08:34:50Z{{Class +| labels = +{{label|en|soccer club}} + +{{label|ur|فٹ بال تنظیم}} +| rdfs:subClassOf = کھیلوں کی تنظیم + + +| owl:equivalentClass = wikidata:Q476028 +}}OntologyClass:فٹ بال لیگ کے موسم20013551581392022-05-12T17:47:53Z{{Class +| labels = +{{label|ur| فٹ بال لیگ کے موسم}} +{{label|en| football league season}} +| rdfs:subClassOf = کھیل کی ٹیم کا موسم +}}OntologyClass:فٹ بال مقابلہ20013544581512022-05-12T18:19:17Z{{Class +| labels = +{{label|ur|فٹ بال مقابلہ}} +{{label|en|football match}} +| comments = +{{comment|ur|دو فٹ بال ٹیموں کے درمیان مقابلہ}} +{{comment|en|a competition between two football teams}} +| rdfs:subClassOf = کھیلوں کی تقریب +}}OntologyClass:فٹ بال منتظم20013713586692022-05-15T10:48:28Z{{Class +| rdfs:label@en = soccer manager +| rdfs:subClassOf = کھیلوں کا منتظم +| owl:equivalentClass = wikidata:Q628099 + +|labels= +{{label|ur|فٹ بال منتظم}} +}}OntologyClass:فٹ بال کلب کا موسم20013715586702022-05-15T10:51:40Z{{Class +| labels = +{{label|en|soccer club season}} +{{label|ur|فٹ بال کلب کا موسم}} +| rdfs:subClassOf = کھیل کی ٹیم کا موسم +}}OntologyClass:فٹ بال کی انجمن20013722564952022-02-17T10:35:26Z{{Class +| labels = +{{label|ur|فٹ بال کی انجمن}} +| comments = +{{comment|ur|کھیلوں کی ٹیموں کا ایک گروپ جو فٹ بال میں ایک دوسرے کے خلاف مقابلہ کرتا ہے۔}} +| rdfs:subClassOf = کھیلوں کی انجمن +}}OntologyClass:فٹبال کا کھلاڑی20013721564932022-02-17T10:28:02Z{{Class +| labels = +{{label|ur|فٹبال کا کھلاڑی}} +| rdfs:subClassOf = کھلاڑی +| owl:equivalentClass = wikidata:Q937857 +}}OntologyClass:فگر سکیٹر۔20013213551052021-09-10T06:38:23Z{{Class +| labels = +{{label|ur| فگر سکیٹر}} + +| rdfs:subClassOf = ونٹر اسپورٹ پلیئر۔ +| owl:equivalentClass = wikidata:Q13219587 +}}OntologyClass:فگرسکیٹر20013550581332022-05-12T17:15:27Z{{Class +| labels = +{{label|ur| فگرسکیٹر}} +{{label|en| figure skater}} +| rdfs:subClassOf = سرمائی کھیل کھیلنے والا +| owl:equivalentClass = wikidata:Q13219587 +}}OntologyClass:فہرست20013634582842022-05-13T12:10:44Z{{Class +| labels = + {{label|ur|فہرست}} +{{label|en|list}} +| comments = + {{comment|ur|اشیاء کی عمومی فہرست}} +{{comment|en|A general list of items.}} +| owl:equivalentClass = skos:OrderedCollection, dul:Collection +| rdfs:subClassOf = owl:Thing +}}OntologyClass:قاتل20013702580242022-05-06T16:02:42Z{{Class +| labels = +{{label|ur|قاتل}} +{{label|en|murderer}} +| rdfs:subClassOf = مجرم +| owl:equivalentClass = wikidata:Q16266334 +}}OntologyClass:قاضی20013644569492022-03-05T05:47:10Z{{Class +| labels = +{{label|en|judge}} +{{label|ur|قاضی}} +| rdfs:subClassOf = شخص +| owl:equivalentClass = wikidata:Q16533 +}}OntologyClass:قانون20013617585332022-05-14T20:04:12Z{{Class +| labels = +{{label|en|law}} +{{label|ur|قانون}} +| rdfs:subClassOf = تحریری کام +}}OntologyClass:قانونی فرم20013619585432022-05-14T20:27:01Z{{Class +| labels = +{{label|en|law firm}} +{{label|ur|قانونی فرم}} +| rdfs:subClassOf = تِجارتی اِدارہ +| comments = +{{comment|en|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.}} + + + +{{comment|ur| ایک قانونی فرم ایک کاروباری ادارہ ہے جسے ایک یا زیادہ وکلاء نے قانون کی مشق میں مشغول کرنے کے لیے تشکیل دیا ہے۔ قانونی فرم کی طرف سے فراہم کردہ بنیادی خدمت کلائنٹس (افراد یا کارپوریشنز) کو ان کے قانونی حقوق اور ذمہ داریوں کے بارے میں مشورہ دینا ہے، اور دیوانی یا فوجداری مقدمات، کاروباری لین دین، اور دیگر معاملات میں اپنے مؤکلوں کی نمائندگی کرنا ہے جن میں قانونی مشورہ اور دیگر مدد طلب کی جاتی ہے۔}} +| owl:equivalentClass = wikidata:Q613142 +}}OntologyClass:قانونی مقدمہ20013621585342022-05-14T20:05:24Z{{Class +| labels = + {{label|en|Legal Case}} + {{label|ur|قانونی مقدمہ}} +| rdfs:subClassOf = معاملہ +| owl:equivalentClass = wikidata:Q2334719 +}}OntologyClass:قبر کی یادگار20013483582422022-05-13T10:01:15Z{{Class +| labels = +{{label|ur|قبر کی یادگار}} +{{label|en|grave stone or grave monument}} +| comments = +{{comment|ur|ایک یادگار ایک مقبرے پر کھڑی کی گئی ، یا ایک یادگار پتھر}} +{{comment|en|A monument erected on a tomb, or a memorial stone.}} +| rdfs:subClassOf =یادگار +}}OntologyClass:قبرستان20013428555962021-09-15T08:51:57Z{{Class +| labels = +{{label|en|cemetery}} +{{label|ga|reilig}} +{{label|de|Friedhof}} +{{label|el|νεκροταφείο}} +{{label|ur|قبرستان}} +{{label|fr|cimetière}} +{{label|es|cementerio}} +{{label|nl|begraafplaats}} +{{label|ja|墓地}} + +| comments = +{{comment|en|A burial place}} +{{comment|ur|ایک تدفین کی جگہ}} +{{comment|el|Νεκροταφείο (ή Κοιμητήριο) ονομάζεται ο χώρος ο προορισμένος για την ταφή των νεκρών.}} +{{comment|fr|Un cimetière est un groupement de sépultures monumentales.<ref>https://fr.wikipedia.org/wiki/Cimetière</ref>}} + +| rdfs:subClassOf = Place +| owl:equivalentClass = wikidata:Q39614 +}} + +== References == + +<references/>OntologyClass:قدرتی جگہ20013187575132022-04-24T11:14:42Z{{Class +|labels = + {{label|en|natural place}} + {{label|ur|قدرتی جگہ}} +| comments = +{{comment|ur|قدرتی جگہ کائنات میں قدرتی طور پر پائے جانے والے تمام مقامات پر محیط ہے۔}} +{{comment|en|The natural place encompasses all places occurring naturally in universe.}} + +| rdfs:subClassOf = جگہ +}}OntologyClass:قدرتی علاقہ20014114586092022-05-15T07:55:32Z{{Class +| labels = +{{label|en|natural region}} +{{label|ur|قدرتی علاقہ}} +| rdfs:subClassOf = علاقہ + +| comments = +{{comment|ur|قدرتی رقبہ کا استعمال کسی جغرافیائی علاقے کی حد کو بیان کرنے کے لیے کیا جاتا ہے جس میں بشریات کی مداخلت کم از کم موجود نہیں ہوتی}} +| owl:equivalentClass = wikidata:Q1970725 +}}OntologyClass:قدرتی واقعہ20013446586212022-05-15T08:13:46Z{{Class +| labels = +{{label|en|natural event}} + {{label|ur|قدرتی واقعہ}} +| rdfs:subClassOf = تقریب +| comments = + + {{comment|ur|مادی تقریب کا استعمال قدرتی طور پر رونما ہونے والے واقعے کو بیان کرنے کے لیے کیا جاتا ہے۔}} + +| rdfs:subClassOf =تقریب + +}}OntologyClass:قدیم تاریخی زمانہ20014010582132022-05-13T04:01:21Z{{Class +|labels= +{{label|en|protohistorical period}} +{{label|ur|قدیم تاریخی زمانہ}} +|comments= +{{comment|ur|انسانوں کےمطالعہ تحریر کی ایجاد سے پہلےکی مدت}} +| rdfs:subClassOf = وقت کی مدت +| owl:disjointWith = شخص +}}OntologyClass:قسم20013165587462022-05-16T18:59:56Z{{Class +| labels= +{{label|ur|قسم}} +{{label|en|species}} + +| comments= + + +{{comment|ur|درجہ بندی کے نظام میں ایک زمرہ}} +{{comment|en|A category in the rating system}} + +| rdfs:subClassOf = owl:Thing +<!-- dul:Organism --> +}}OntologyClass:قصبہ20014058583702022-05-14T11:49:29Z{{Class +| labels = +{{label|ur|قصبہ}} +{{label|en|town}} + +| rdfs:subClassOf = بستی +| comments = +{{comment|ur|چند سو سے لے کر کئی ہزار (کبھی کبھار سیکڑوں ہزاروں) تک کی تصفیہ۔ درست معنی ممالک کے درمیان مختلف ہوتے ہیں اور یہ ہمیشہ قانونی تعریف کا معاملہ نہیں ہوتا ہے۔ عام طور پر، ایک قصبہ کو گاؤں سے بڑا لیکن شہر سے چھوٹا سمجھا جاتا ہے، حالانکہ اس اصول میں مستثنیات ہیں}} +{{comment|en|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.}} +| owl:equivalentClass = wikidata:Q3957 +}}OntologyClass:قطار رائج20014106585372022-05-14T20:12:36Z{{Class +|labels = + {{label|en|line of fashion}} +{{label|ur|قطار رائج}} + +| comments = +{{comment|en|A coherent type of clothing or dressing following a particular fashion}} + +{{comment|ur|ایک مربوط قسم کا لباس یا لباس کسی خاص فیشن کے بعد}} +| rdfs:subClassOf = کام +}}OntologyClass:قلعہ20013547575062022-04-24T11:02:37Z{{Class +| labels = +{{label|ur|قلعہ}} +{{label|en|castle}} +| comments = + {{comment|en|Castles often are, but need not be a military structure. They can serve for status, pleasure and hunt as well.}} + +{{comment|ur|قلعے اکثر ہوتے ہیں، لیکن فوجی ڈھانچہ ہونے کی ضرورت نہیں ہے۔ وہ حیثیت، خوشی اور شکار کے لیے بھی خدمت کر سکتے ہیں}} +| rdfs:subClassOf = عمارت +}}OntologyClass:قلم کار20013730586742022-05-15T11:43:10Z{{Class +| labels = +{{label|en|screenwriter}} +{{label|ur|قلم کار}} +| comments = +{{comment|ur|قلم کار نہ صرف سیریز کا پلاٹ لکھتا ہے بلکہ ڈرامے کے مرکزی کرداروں کو ایجاد کرنے والا بھی ہوتا ہے}} +| rdfs:subClassOf = مصنف +| owl:equivalentClass = wikidata:Q28389 +}}OntologyClass:قمری گڑھا20013640585292022-05-14T19:55:17Z{{Class +| labels = + {{label|en|lunar crater}} +{{label|ur|قمری گڑھا}} +| rdfs:subClassOf = دہانه +| specificProperties = {{SpecificProperty | ontologyProperty = diameter | unit = kilometre }} +| owl:equivalentClass = wikidata:Q1348589 +}}OntologyClass:قومی اعلی درجے کا مدرسہ کھیل کے متعلق دوستی20013594586272022-05-15T08:29:38Z{{Class +| labels = +{{label|en|national collegiate athletic association athlete}} + +{{label|ur|قومی اعلی درجے کا مدرسہ کھیل کے متعلق دوستی}} + + +| rdfs:subClassOf = کھلاڑی + +}}OntologyClass:قومی ترانہ20013650586322022-05-15T08:45:12Z{{Class +| labels = +{{label|en|National anthem}} +{{label|ur|قومی ترانہ}} +| comments = +{{comment|en|Patriotic musical composition which is the offcial national song.}} + +{{comment|ur|محب وطن موسیقی کی ساخت جو سرکاری قومی گانا ہے۔}} + +| rdfs:subClassOf =موسیقی کا کام +| owl:equivalentClass = wikidata:Q23691 +}}OntologyClass:قومی فٹ بال انجمن تقریب20014115586152022-05-15T08:08:03Z{{Class +| labels = +{{label|en|national football league event}} + +{{label|ur|قومی فٹ بال انجمن تقریب}} +| rdfs:subClassOf = کھیلوں کی تقریب + + +}}OntologyClass:قومی فٹ بال تنظیم20014117586282022-05-15T08:31:39Z{{Class +| labels = +{{label|en|national soccer club}} + +{{label|ur|قومی فٹ بال تنظیم}} +| rdfs:subClassOf = فٹ بال تنظیم + + + +}}OntologyClass:قومی فٹ بال لیگ کا موسم20013651585962022-05-15T07:36:06Z{{Class +| labels = +{{label|en|national football league season}} +{{label|ur|قومی فٹ بال لیگ کا موسم}} +| rdfs:subClassOf = فٹ بال لیگ کے موسم + +}}OntologyClass:قومی کالج ورزش انجمن کاموسم20014111585882022-05-15T06:54:10Z{{Class +| labels = +{{label|en|national collegiate athletic association team season}} +{{label|ur|قومی کالج ورزش انجمن کاموسم}} +| rdfs:subClassOf = کھیل کی ٹیم کا موسم + + +}}OntologyClass:قیمتی اشیاء کا مجموعہ20013870576162022-04-24T17:50:45Z{{Class +|labels = + {{label|en|collection of valuables}} + + {{label|ur|قیمتی اشیاء کا مجموعہ }} +| comments = +{{comment|en|Collection of valuables is a collection considered to be a work in itself)}} +{{comment|ur|قیمتی اشیاء کا مجموعہ ایک ایسا مجموعہ ہے جو اپنے آپ میں ایک کام سمجھا جاتا ہے۔}} +| rdfs:subClassOf = کام +}}OntologyClass:لحمیات20014007582072022-05-13T03:46:34Z{{Class +| labels = +{{label|en|protein}} +{{label|ur|لحمیات}} +| rdfs:subClassOf = حیاتیاتی مرکبات +| owl:equivalentClass = wikidata:Q8054 +}}OntologyClass:لیکروس انجمن20014105585302022-05-14T19:59:48Z{{Class + +| labels = +{{label|en|lacrosse league}} +{{label|ur|لیکروس انجمن }} +| rdfs:subClassOf = کھیلوں کی انجمن +| comments = +{{comment|en|a group of sports teams that compete against each other in Lacrosse.}} + +{{comment|ur|کھیلوں کی ٹیموں کا ایک گروپ جو لیکروس لیگ میں ایک دوسرے کے خلاف مقابلہ کرتا ہے}} +}}OntologyClass:لیکروس کھلاڑی20013611585412022-05-14T20:22:41Z{{Class +| labels = +{{label|en|lacrosse player}} +{{label|ur|لیکروس کھلاڑی}} +| rdfs:subClassOf = کھلاڑی +}}OntologyClass:ماتحت علاقہ20014057583682022-05-14T11:41:40Z{{Class +| labels = +{{label|ur|ماتحت علاقہ}} +{{label|en|territory}} + + +| comments = + + {{comment|ur|ایک ماتحت علاقہ کسی ملک کی ذیلی تقسیم، ایک غیر خودمختار جغرافیائی خطہ کا حوالہ دے سکتا ہے۔}} +{{comment|en|A territory may refer to a country subdivision, a non-sovereign geographic region.}} +| rdfs:subClassOf = آبادی والی جگہ +}}OntologyClass:مارشل کے فنکار20013946579912022-05-06T10:18:19Z{{Class +| labels = + +{{label|ur|مارشل کے فنکار}} +{{label|en|martial artist}} + + +| rdfs:subClassOf = کھلاڑی +}}OntologyClass:مانگا20013776578892022-05-05T10:25:17Z{{Class +| labels = +{{label|ur|مانگا}} +{{label|en|manga}} +| rdfs:subClassOf = مزاحیہ + +| comments = +{{comment|ur|منگا جاپان میں تخلیق کردہ کامکس ہیں<ref name="manga">http://en.wikipedia.org/wiki/Manga</ref>}} +{{comment|en|Manga are comics created in Japan<ref name="manga">http://en.wikipedia.org/wiki/Manga</ref>}} +| owl:equivalentClass = wikidata:Q8274 +}} +==References== +<references/>OntologyClass:مانہوا20013945579872022-05-06T08:06:09Z{{Class +| labels = +{{label|ur|مانہوا}} + {{label|en|manhua}} + +| rdfs:subClassOf = مزاحیہ +| comments = + +{{comment|ur|کامکس اصل میں چین میں تیار کیے گئے تھے}} +{{comment|en|Comics originally produced in China<ref name="manhua">http://en.wikipedia.org/wiki/Manhua</ref>}} +| owl:equivalentClass = wikidata:Q754669 +}} +==References== +<references/>OntologyClass:ماہر آثار قدیمہ20013303578972022-05-05T10:57:23Z{{Class +| labels = +{{label|en|archeologist}} +{{label|ur|ماہر آثار قدیمہ}} +| rdfs:subClassOf = شخص +| owl:equivalentClass = wikidata:Q3621491 +}}OntologyClass:ماہر حشریات20014050583452022-05-14T05:43:58Z{{Class +| labels = +{{label|ur|ماہر حشریات}} +{{label|en|entomologist}} +| rdfs:subClassOf = سائنسدان +| owl:equivalentClass = wikidata:Q3055126 +}}OntologyClass:ماہر حیاتیات20013289578392022-05-01T18:51:03Z{{Class +| labels = + +{{label|ur|ماہر حیاتیات}} +{{label|en|biologist}} +| rdfs:subClassOf = سائنسدان +| owl:equivalentClass = wikidata:Q3055126 +}}OntologyClass:ماہر فنیات20013454583532022-05-14T06:20:30Z{{Class +| labels = +{{label|ur|ماہر فنیات}} +{{label|en|engineer}} +| rdfs:subClassOf = شخص +| owl:equivalentClass = wikidata:Q81096 +}}OntologyClass:ماہر لسانیات20013632585522022-05-14T20:48:43Z{{Class +| labels = +{{label|en|linguist}} +{{label|ur|ماہر لسانیات}} +| rdfs:subClassOf = شخص +| owl:equivalentClass = wikidata:Q14467526 +}}OntologyClass:ماہر مصریات20013448557732021-09-17T18:48:49Z{{Class +| labels = +{{label|ur|ماہر مصریات}} +| rdfs:subClassOf = شخص +| owl:equivalentClass = wikidata:Q1350189 +}}OntologyClass:ماہر معاشیات20013447559842021-09-18T07:28:24Z{{Class +| labels = + +{{label|ur|ماہر معاشیات}} + +|comments = + {{comment|ur|ایک ماہر معاشیات معاشیات کے سماجی سائنس کے شعبے میں پیشہ ور ہوتا ہے}} +| rdfs:subClassOf = شخص +| owl:equivalentClass = wikidata:Q188094 +}} + +== References == +<references/>OntologyClass:ماہر نفسیات20014004582012022-05-13T03:35:49Z{{Class +| labels = + {{label|en|psychologist}} +{{label|ur|ماہر نفسیات}} +| rdfs:subClassOf = شخص +| owl:equivalentClass = wikidata:Q212980 +}}OntologyClass:مبدہ20014000581932022-05-13T03:20:07Z{{Class +| labels = + {{label|en|Producer}} +{{label|ur|مبدہ}} + +| comments = + {{comment|en|a person who manages movies or music recordings.}} +{{comment|ur|وہ شخص جو فلموں یا میوزک کی ریکارڈنگ کا انتظام کرتا ہے۔}} +| rdfs:subClassOf = شخص +| owl:equivalentClass = schema:Producer, wikidata:Q3282637 +}}OntologyClass:متحرک فلم20013942579792022-05-06T07:23:14Z{{Class +| labels = +{{label|ur|متحرک فلم}} +{{label|en|moving image}} + +| comments = +{{comment|ur|ایک بصری دستاویز جس کا مقصد متحرک ہونا ہے}} +{{comment|en|A visual document that is intended to be animated; equivalent to http://purl.org/dc/dcmitype/MovingImage}} +| rdfs:subClassOf = تصویر + +}}OntologyClass:متواتر ادب20013606574542022-04-24T08:52:17Z{{Class +| labels = +{{label|en|periodical literature}} +{{label |ur| متواتر ادب}} + +| comments = +{{comment|ur| ایک شائع شدہ کام ہے جو ایک باقاعدہ شیڈول پر ایک نئے ایڈیشن میں نمودار ہوتا ہے۔ سب سے واقف مثال اخبار ہیں ، جو اکثر روزانہ یا ہفتہ وار شائع ہوتے ہیں۔ یا میگزین عام طور پر ہفتہ وار ، ماہانہ یا سہ ماہی کے طور پر شائع ہوتا ہے۔ دوسری مثالوں میں ایک نیوز لیٹر ، ایک ادبی جریدہ یا سیکھا ہوا جریدہ ، یا ایک سالانہ کتاب ہوگی۔ +}} + +{{comment|en|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.}} + +| rdfs:subClassOf = تحریری کام +| owl:equivalentClass = wikidata:Q1092563 +}}OntologyClass:مجرم20013180576962022-04-25T11:48:43Z{{Class +| labels = + +{{label|en|criminal}} +{{label|ur|مجرم}} +| rdfs:subClassOf = شخص +| owl:equivalentClass = wikidata:Q2159907 + + +}}OntologyClass:مجسمہ20013701586352022-05-15T10:13:13Z{{Class +|labels= +{{label|ur|مجسمہ}} +{{label|en|Sculpture}} +| rdfs:subClassOf = کار ہنر +| owl:equivalentClass = schema:Sculpture +|comments= +{{comment|ur|مجسمہ تین جہتی فَن کا کام ہے جو سخت مواد کی تشکیل یا امتزاج سے بنایا گیا ہے، عام طور پر پتھر جیسے سنگ مرمر، دھات، شیشہ، یا لکڑی، یا پلاسٹک کے مواد جیسے مٹی، ٹیکسٹائل، پولیمر اور نرم دھات۔}} + +}}OntologyClass:مجسمہ ساز20013681586522022-05-15T10:27:48Z{{Class +| labels = +{{label|en|sculptor}} +{{label|ur|مجسمہ ساز}} +| rdfs:subClassOf = فنکار +}}OntologyClass:مجلس20013340576282022-04-24T18:17:30Z{{Class +| labels = +{{label|en|convention}} +{{label|ur|مجلس}} +| rdfs:subClassOf = معاشرتی واقعہ +}}OntologyClass:مجلس قانون ساز20013962584582022-05-14T17:43:45Z{{Class +| labels = +{{label|ur|مجلس قانون ساز}} +{{label|en|parliament}} +| rdfs:subClassOf = تنظیم +| owl:equivalentClass = wikidata:Q35749 +}}OntologyClass:مجلس کے شرکاء20013339576232022-04-24T18:06:38Z{{Class +| labels = +{{label|en|congressman}} +{{label|ur|مجلس کے شرکاء}} + +| rdfs:subClassOf = سیاستدان +}}OntologyClass:مجموعہ20013374554822021-09-13T09:09:10Z{{Class +| labels= +{{label|en|agglomeration}} +{{label|ur|مجموعہ}} + +| rdfs:subClassOf = آبادی والی جگہ +}}OntologyClass:مجموعی ملکی پیداوار20013485582432022-05-13T10:11:49Z{{Class +| labels= +{{label|ur|مجموعی ملکی پیداوار}} +{{label|en|gross domestic product}} +}}OntologyClass:مجموعی گھریلو پیداوار فی کس20013196582602022-05-13T10:46:53Z{{Class +| labels = +{{label|ur|مجموعی گھریلو پیداوار فی کس}} +{{label|en|gross domestic product per capita}} +|comments = +{{comment|ur|فی کس جی ڈی پی قومی حدود کے اندر پیدا ہونے والی مارکیٹنگ اشیاء اور خدمات کے مجموعے کی پیمائش کرتا ہے ، جو اس علاقے میں رہنے والے ہر شخص کے لیے اوسط ہے}} +}}OntologyClass:محصول20014030582902022-05-13T14:16:55Z{{Class +| labels = +{{label|ur|محصول}} + {{label|en|tax}} + +| rdfs:subClassOf = موضوع کا تصور +| owl:equivalentClass = wikidata:Q8161 +}}OntologyClass:محفوظ شدہ دستاویزات20013397579082022-05-05T11:15:20Z{{Class +| labels = +{{label|en|Archive}} +{{label|ur|محفوظ شدہ دستاویزات}} + +| rdfs:subClassOf = قیمتی اشیاء کا مجموعہ +| comments = +{{comment|en|Collection of documents pertaining to a person or organisation.}} +{{comment|ur|کسی شخص یا تنظیم سے متعلق دستاویزات کا مجموع}} +| owl:equivalentClass = wikidata:Q166118 +}}OntologyClass:محفوظ علاقہ20014009585872022-05-15T06:53:12Z{{Class +| labels = +{{label|en|protected area}} +{{label|ur|محفوظ علاقہ}} +| comments = +{{comment|en|This class should be used for protected nature. For enclosed neighbourhoods there is now class GatedCommunity}} + +{{comment|ur|یہ طبقہ 'محفوظ' حیثیت والے علاقوں کو ظاہر کرتا ہے}} +| rdfs:subClassOf = جگہ +| owl:equivalentClass = wikidata:Q473972 +}}OntologyClass:محلہ20013636585282022-05-14T19:53:33Z{{Class +| labels = +{{label|en|locality}} +{{label|ur|محلہ}} +| rdfs:subClassOf = آبادی والی جگہ +| owl:equivalentClass = wikidata:Q3257686 +}}OntologyClass:مخروطی مصری مینار20014012585892022-05-15T06:58:59Z{{Class +| labels = +{{label|en|Pyramid}} +{{label|ur|مخروطی مصری مینار}} +| comments= +{{comment|en|a structure whose shape is roughly that of a pyramid in the geometric sense.}} +{{comment|ur|ایک ڈھانچہ جس کی شکل ہندسی معنوں میں تقریبا ایک اہرام کی ہے۔}} +| rdfs:subClassOf = تعمیراتی ڈھانچے +| owl:equivalentClass = wikidata:Q12516 +}}OntologyClass:مخلوط جنگ جو آرٹس تقریب20013899577452022-04-26T12:13:53Z{{Class +| labels = +{{label|en|mixed martial arts event}} + +{{label|ur| مخلوط جنگ جو آرٹس تقریب}} +| rdfs:subClassOf = کھیلوں کی تقریب +}}OntologyClass:مخلوط مارشل آرٹس کی انجمن20013931579332022-05-05T12:36:21Z{{Class +| labels = + +{{label|ur|مخلوط مارشل آرٹس کی انجمن}} +{{label|en|mixed martial arts league}} + + +| comments = + +{{comment|ur|کھیلوں کی ٹیموں کا ایک گروپ جو مخلوط مارشل آرٹس میں ایک دوسرے سے مقابلہ کرتا ہے۔}} +{{comment|en|a group of sports teams that compete against each other in Mixed Martial Arts}} + +| rdfs:subClassOf = کھیلوں کی انجمن + +}}OntologyClass:مدرسه20013731586732022-05-15T11:41:12Z{{Class +| labels = +{{label|en|school}} +{{label|ur|مدرسه}} +| rdfs:subClassOf = تعلیمی ادارے +| owl:equivalentClass = schema:School, wikidata:Q3914 +| specificProperties = + {{SpecificProperty | ontologyProperty = campusSize | unit = squareKilometre }} +}}OntologyClass:مدرسہ20013144576822022-04-25T11:19:45Z{{Class +| labels = +{{label|en|college}} +{{label|ur|مدرسہ}} +| rdfs:subClassOf = تعلیمی ادارے, schema:CollegeOrUniversity +| owl:equivalentClass = +}}OntologyClass:مذہبی20013614585102022-05-14T19:30:21Z{{Class +| labels = +{{label|en|religious}} +{{label|ur|مذہبی}} +| rdfs:subClassOf = شخص +| owl:equivalentClass = wikidata:Q2566598 +}}OntologyClass:مذہبی تصور20013850575242022-04-24T11:49:07Z{{Class +| labels = {{label|en|Theological concept}} + + {{label|ur|مذہبی تصور}} +| comments = {{comment|en|Theological concepts, e.g. The apocalypse, Trinty, Stoicism}} +{{comment|ur| مذہبی تصورات، جیسے آسمانی کِتاب تثلیث رواقیت}} +| rdfs:subClassOf = موضوع کا تصور +}}OntologyClass:مذہبی تنظیم20013853584162022-05-14T15:05:40Z{{Class +| labels = + {{label|en|religious organisation}} + +{{label|ur|مذہبی تنظیم}} +| comments = + {{comment|en|Formal organisation or organised group of believers}} + {{comment|ur|باضابطہ تنظیم یا مومنین کا منظم گروپ}} + | rdfs:subClassOf = تنظیم +| owl:disjointWith = Person +| owl:disjointWith = wgs84_pos:SpatialThing +}}OntologyClass:مذہبی عمارت20013729576772022-04-25T11:04:12Z{{Class +|labels = + {{label|en|religious building}} + {{label|ur|مذہبی عمارت}} +| comments = +{{comment|en|An establishment or her location where a group of people (a congregation) comes to perform acts of religious study, honor, or devotion.<ref>http://en.wikipedia.org/wiki/Religious_building</ref>}} + +{{comment|ur|ایک اسٹیبلشمنٹ یا اس کا مقام جہاں لوگوں کا ایک گروپ (ایک جماعت) مذہبی مطالعہ، عزت، یا عقیدت کے اعمال انجام دینے آتا ہے۔}} + +| rdfs:subClassOf = عمارت +| owl:equivalentClass = wikidata:Q1370598 +}} +==References== +<references/> +}}OntologyClass:مزاحمتی تحریک کے رکن20013893577252022-04-26T11:41:50Z{{Class +|labels= + {{label|en|Member of a Resistance Movement}} + {{label|ur|مزاحمتی تحریک کے رکن}} +|comments= +| rdfs:subClassOf = شخص +}}OntologyClass:مزاحیہ20013152575522022-04-24T14:35:53Z{{Class +| labels = +{{label|en|comic}} +{{label|ur|مزاحیہ}} +| rdfs:subClassOf = تحریری کام +| owl:equivalentClass = wikidata:Q245068 +}}OntologyClass:مزاحیہ تخلیق کار20013885576882022-04-25T11:32:33Z{{Class +| labels = +{{label|en|comics creator}} +{{label|ur|مزاحیہ تخلیق کار}} + +| rdfs:subClassOf = فنکار +}}OntologyClass:مزاحیہ خاکے20013859575542022-04-24T14:38:43Z{{Class +| labels = + {{label|en|comic strip}} + +{{label|ur|مزاحیہ خاکے}} +| rdfs:subClassOf = مزاحیہ + +}}OntologyClass:مزاحیہ گروہ20013337576182022-04-24T17:54:40Z{{Class +| labels = +{{label|en|Comedy Group}} +{{label|ur| مزاحیہ گروہ }} +| rdfs:subClassOf =گروہ +}}OntologyClass:مزار20013728586752022-05-15T11:45:21Z{{Class +| labels = +{{label|en|shrine}} + {{label|ur|مزار}} +| rdfs:subClassOf = مذہبی عمارت +| owl:equivalentClass = wikidata:Q697295 +}}OntologyClass:مزدوروں کا اتحاد20014046583302022-05-13T17:52:24Z{{Class +| labels = +{{label|ur|مزدوروں کا اتحاد}} +{{label|en|trade union}} +| comments = +{{comment|ur|مزدوروں کا اتحاد مزدوروں کی ایک تنظیم ہے جو کام کے بہتر حالات جیسے مشترکہ اہداف کو حاصل کرنے کے لیے اکٹھے ہوئے ہیں}} +{{comment|en|A trade union or labor union is an organization of workers who have banded together to achieve common goals such as better working conditions.}} +| rdfs:subClassOf = تنظیم +| owl:equivalentClass = wikidata:Q178790 +}}OntologyClass:مسجد20013904577582022-04-26T12:29:05Z{{Class +| labels = +{{label|en|mosque}} + +{{label|ur|مسجد}} + +| comments = +{{comment|en|A mosque, sometimes spelt mosk, is a place of worship for followers of Islam.<ref>http://en.wikipedia.org/wiki/Mosque</ref>}} +{{comment|ur| ایک مسجد اسلام کے پیروکاروں کے لیے عبادت گاہ ہے۔<ref>http://en.wikipedia.org/wiki/Mosque</ref>}} + + +| rdfs:subClassOf = مذہبی عمارت +| owl:equivalentClass = wikidata:Q32815 +}} + +== references == +<references/>OntologyClass:مسخرا20013857575472022-04-24T14:29:41Z{{Class +| labels = +{{label|en|comedian}} + +{{label|ur|مسخرا}} +| rdfs:subClassOf = فنکار +}}OntologyClass:مسدود برادری20014017582302022-05-13T09:18:04Z{{Class +| labels = +{{label|ur|مسدود برادری}} +{{label|en|Gated community}} +| rdfs:subClassOf = آبادی والی جگہ +}}OntologyClass:مشترکہ نورڈک20014116586202022-05-15T08:12:23Z{{Class +| labels = +{{label|en|Nordic Combined}} +{{label|ur|مشترکہ نورڈک }} +|comments= +{{comment|ur|نورڈک کمبائنڈ ایک موسم سرما کا کھیل ہے جس میں ما بین ملک کے کھلاڑی سکینگ اور سکی جمپنگ میں مقابلہ کرتے ہیں۔}} +| rdfs:subClassOf = سرمائی کھیل کھیلنے والا + +}}OntologyClass:مشروب20013189587422022-05-16T18:57:05Z{{Class +| labels = +{{label|ur|مشروب}} +{{label|en|beverage}} + +| rdfs:subClassOf = خوراک +| comments = + + +{{comment|ur|یک مشروب مائع ہے جو خاص طور پر انسانی استعمال کے لیے تیار کیا جاتا ہے۔}} +{{comment|en|A drink, or beverage, is a liquid which is specifically prepared for human consumption.}} +}}OntologyClass:مشیر20013847575142022-04-24T11:25:17Z{{Class +| labels = +{{label|en|chancellor}} + +{{label|ur|مشیر}} + +| rdfs:subClassOf = سیاستدان +| owl:equivalentClass = wikidata:Q373085 +}}OntologyClass:مصنف20013202554732021-09-13T08:46:34Z{{Class +| labels = +{{label|en|writer}} +{{label|ur|مصنف}} + +| rdfs:subClassOf = شخص +| owl:equivalentClass = wikidata:Q36180 +}}OntologyClass:مصنوعی سیارہ20013317579202022-05-05T11:38:54Z{{Class +| labels = +{{label|en|ArtificialSatellite}} + {{label|ur|مصنوعی سیارہ}} +| comments = +{{comment|ur|خلائی پرواز کے تناظر میں ، مصنوعی سیارہ ایک مصنوعی شے ہے جسے جان بوجھ کر مدار میں رکھا گیا ہے}} +{{comment|en|In the context of spaceflight, an artificial satellite is an artificial object which has been intentionally placed into orbit.}} + +| rdfs:subClassOf = ثانوی سیاره +<!-- | owl:equivalentClass = http://www.ontotext.com/proton/protonext#ArtificialSatellite --> +}}OntologyClass:معاشرتی واقعہ20013095579042022-05-05T11:04:21Z{{Class +| labels = +{{label|en|societal event}} +{{label|ur|معاشرتی واقعہ}} + + + +| comments = +{{comment|en|an event that is clearly different from strictly personal events}} + +{{comment|ur|ایک ایسا واقعہ جو سختی سے ذاتی واقعات سے واضح طور پر مختلف ہو}} +| rdfs:subClassOf = تقریب +}}OntologyClass:معاملہ20013306576012022-04-24T17:02:38Z{{Class +| labels = +{{label|en|case}} +{{label|ur|معاملہ}} +| comments = +{{comment|en|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.}} + +{{comment|ur|ایک کیس انتظامی یا کاروباری فیصلے کی تیاری کے لیے کیے گئے کام کی کل ہے۔ ایک اصول کے طور پر ، ایک کیس دستاویزات کے ایک سیٹ میں ظاہر ہوتا ہے۔}} +| rdfs:subClassOf = کام کی اکائی +}}OntologyClass:معاہدہ20014048583342022-05-13T17:59:52Z{{Class +| labels = +{{label|ur|معاہدہ}} +{{label|en|treaty}} +| rdfs:subClassOf = تحریری کام +}}OntologyClass:معدنیات20013784579262022-05-05T12:28:53Z{{Class +| labels = + +{{label|ur|معدنیات}} +{{label|en|mineral}} +| comments = +{{comment|en|A naturally occurring solid chemical substance.<ref>http://en.wikipedia.org/wiki/Mineral</ref>}} +{{comment|ur|قدرتی طور پر پائے جانے والا ٹھوس کیمیائی مادہ}} +| rdfs:subClassOf = کیمیائی مادہ + +| owl:equivalentClass = wikidata:Q7946 +}} +==References== +<references/>OntologyClass:معروف کھیلوں کے لیے مَخصُوص جگہ20013793587082022-05-15T13:11:04Z{{Class +| labels = +{{label|en|stadium}} +{{label|ur|معروف کھیلوں کے لیے مَخصُوص جگہ}} +| rdfs:subClassOf = پنڈال, schema:StadiumOrArena +| owl:equivalentClass = +}}OntologyClass:معلم20014008583462022-05-14T05:49:35Z{{Class +|labels = +{{label|en|professor}} +{{label|ur|معلم}} +| rdfs:subClassOf = سائنسدان +| owl:equivalentProperty = wikidata:Q1622272 +}}OntologyClass:معلوماتی آلات20013664587622022-05-16T19:36:57Z{{Class +| labels = +{{label|ur| معلوماتی آلات}} +{{label|en|information appliance}} + +| comments = + +{{comment|ur|معلوماتی آلہ جیسے پی ڈی اے یا ویڈیو گیم کنسولز وغیرہ}} +{{comment|en|An information device such as PDAs or Video game consoles, etc.}} +| rdfs:subClassOf = آلہ +| owl:equivalentClass = wikidata:Q1067263 +}}OntologyClass:معمار20013304579092022-05-05T11:18:27Z{{Class +| labels = +{{label|en|architect}} +{{label|ur|معمار}} +| rdfs:subClassOf = شخص +| owl:equivalentClass = wikidata:Q42973 +}}OntologyClass:معیاری20013750587002022-05-15T12:55:44Z{{Class +| labels= + +{{label|en|standard}} +{{label|ur|معیاری}} +| comments= +{{comment|en|a common specification}} +{{comment|ur|ایک عام تفصیل}} +| rdfs:subClassOf = موضوع کا تصور +}}OntologyClass:مقابلہ20013158576272022-04-24T18:13:42Z{{Class +| labels = +{{label|en|competition}} +{{label|ur|مقابلہ}} +| rdfs:subClassOf = تقریب +| owl:disjointWith = شخص +| owl:equivalentClass = schema:Event, dul:Event, wikidata:Q1656682 +}} + + +}}OntologyClass:مقابلہ میں کاریں چلانے والے20013256581542022-05-12T18:25:35Z{{Class +| labels = +{{label|ur|مقابلہ میں کاریں چلانے والے}} +{{label|en|racing driver}} +| rdfs:subClassOf = گاڑیوں کے مقابلے کا کھیل +| owl:equivalentClass = wikidata:Q378622 +}}OntologyClass:مقامی تھنگ20013364554372021-09-13T08:02:09Z{{Class +|rdfs:label@en = spatial thing +|rdfs:label@ur = مقامی تھنگ +|rdfs:label@de = Objektraum +|rdfs:label@fr = objet spatial +|rdfs:label@nl = ruimtelijk object +}}OntologyClass:مقننہ20013622585442022-05-14T20:28:14Z{{Class +| labels = +{{label|en|legislature}} +{{label|ur|مقننہ}} +| rdfs:subClassOf = تنظیم +| owl:equivalentClass = wikidata:Q11204 +}}OntologyClass:ملاح20013678586342022-05-15T10:07:32Z{{Class +| labels = +{{label|en|Sailor}} +{{label|ur|ملاح}} +| rdfs:subClassOf = کھلاڑی +}}OntologyClass:ملازمین کی تنظیم20013288557742021-09-17T18:50:09Z{{Class +| labels = + +{{label|ur|ملازمین کی تنظیم}} +| comments = +{{comment|ur|ملازمین کی تنظیم تاجروں کی ایک تنظیم ہے جو مزدور تعلقات کے میدان میں اپنے اعمال کو مربوط کرنے کے لیے مل کر کام کرتی ہے۔}} + +| rdfs:subClassOf = تنظیم +}}OntologyClass:ملاقات20013780579032022-05-05T11:02:34Z{{Class +| labels = +{{label|ur|ملاقات}} +{{label|en|meeting}} +| rdfs:subClassOf = معاشرتی واقعہ + +|comments= +{{comment|ur|ریکارڈ رکھنے کے لیے ایک تقریب کے طور پر لوگوں کی باقاعدہ یا بے قاعدہ ملاقات}} +{{comment|en|A regular or irregular meeting of people as an event to keep record of}} +| owl:equivalentClass = wikidata:Q2761147 +}}OntologyClass:ملک20013284575682022-04-24T15:15:43Z{{Class +| labels = +{{label|en|country}} +{{label|ur|ملک}} +| rdfs:subClassOf = آبادی والی جگہ +| owl:equivalentClass = schema:Country, wikidata:Q6256 +}}OntologyClass:ملک کی نشست20013872576302022-04-24T18:22:06Z{{Class +| labels = +{{label|en|country estate}} + +{{label|ur|ملک کی نشست}} +| comments = +{{comment|en|A country seat is a rural patch of land owned by a land owner.}} + +{{comment|ur|یک کنٹری سیٹ زمین کا ایک دیہی پیچ ہے جو زمین کے مالک کی ملکیت ہے}} + +| rdfs:subClassOf = جگہ +}}OntologyClass:ملکہ حسن20013327578312022-05-01T18:04:58Z{{Class +| labels = +{{label|ur|ملکہ حسن}} +{{label|en|beauty queen}} +| rdfs:subClassOf = شخص +| comments = +{{comment|ur|خوبصورتی مقابلے کی خطاب یافتہ}} +{{comment|en|A beauty pageant titleholder}} +}}OntologyClass:منحوا20013888577082022-04-26T11:27:23Z{{Class +| labels = +{{label|en|manhwa}} + +{{label|ur|منحوا}} +| rdfs:subClassOf = مزاحیہ +| comments = +{{comment|en|Korean term for comics and print cartoons<ref name="manhwa">http://en.wikipedia.org/wiki/Manhwa</ref>}} +{{comment|ur|مزاحیہ اور پرنٹ کارٹونز کے لیے کورین اصطلاح<ref name="manhwa">http://en.wikipedia.org/wiki/Manhwa</ref>}} + +| owl:equivalentClass = wikidata:Q562214 +}} +==References== +<references/>OntologyClass:مندر20014055583642022-05-14T10:43:01Z{{Class +| labels= +{{label|ur|مندر}} +{{label|en|temple}} + +| rdfs:subClassOf = مذہبی عمارت +| owl:equivalentClass = +}}OntologyClass:منشیات کا مجموعہ20013884576862022-04-25T11:27:29Z{{Class +| labels = +{{label|en|combination drug}} +{{label|ur|منشیات کا مجموعہ}} +| comments = +{{comment|en|Drugs that are a combination of chemicals‎}} +{{comment|ur|ادویات جو کیمیکل کا مجموعہ ہیں۔‎}} + +| rdfs:subClassOf = دوا +}}OntologyClass:منصوبہ20014002581972022-05-13T03:27:38Z{{Class +| labels = + {{label|en|project}} +{{label|ur|منصوبہ}} + +| comments = + {{comment|en|A project is a temporary endeavor undertaken to achieve defined objectives.}} + {{comment|ur|ایک پروجیکٹ ایک عارضی کوشش ہے جو متعین مقاصد کے حصول کے لیے کی جاتی ہے۔}} +| rdfs:subClassOf = کام کی اکائی +| owl:equivalentClass = +}}OntologyClass:منظم شدہ مجموعہ20013687564082022-02-16T17:44:42Z{{Class +| labels = + + +{{label|ur| بیول :منظم شدہ مجموعہ}} + +<!-- | owl:equivalentClass = wikidata:Q15117302 --> +}}OntologyClass:مواصلات20013890577162022-04-26T11:36:40Z{{Class +| labels = +{{label|en|media}} + + +{{label|ur|مواصلات }} +| comments = +{{comment|en|storage and transmission channels or tools used to store and deliver information or data}} +{{comment|ur|ذخیرہ اور منتقلی چینلز یااوزار جو معلومات یا ڈیٹا کو ذخیرہ کرنے اور پہنچانے کے لیے استعمال ہوتے ہیں۔}} +| owl:equivalentClass = wikidata:Q340169 +}}OntologyClass:موبائل فون20013744580032022-05-06T10:54:59Z{{Class +| labels = + +{{label|ur|موبائل فون}} +{{label|en|mobile phone}} +| rdfs:subClassOf = آلہ +| owl:equivalentClass = wikidata:Q17517 +}}OntologyClass:موج تختہ پر سوار ہونے والا20013798587132022-05-15T13:22:06Z{{Class +| labels = +{{label|en|surfer}} +{{label|ur|موج تختہ پر سوار ہونے والا}} +| rdfs:subClassOf =کھلاڑی +| owl:equivalentClass = wikidata:Q13561328 +}}OntologyClass:مورخ20013201584652022-05-14T18:21:34Z{{Class +| labels = +{{label|en|historian}} +{{label|ur|مورخ}} +| rdfs:subClassOf = مصنف +}}OntologyClass:موسیقی بنانے والا20013953580282022-05-06T16:07:05Z{{Class +| labels = +{{label|ur|موسیقی بنانے والا}} +{{label|en|music composer}} + +| comments = +{{comment|ur|ایک شخص جو موسیقی تخلیق کرتا ہے}} +{{comment|en|a person who creates music.}} +| rdfs:subClassOf = مصنف +}}OntologyClass:موسیقی میلہ20013944579852022-05-06T07:53:57Z{{Class +| labels = + +{{label|ur|موسیقی میلہ}} +{{label|en|music festival}} +| rdfs:subClassOf = معاشرتی واقعہ +| owl:equivalentClass = wikidata:Q868557, schema:Festival +}}OntologyClass:موسیقی چارٹس میں جگہ20013868576052022-04-24T17:16:57Z{{Class +| labels = +{{label|en|Place in the Music Charts}} + +{{label|ur|موسیقی چارٹس میں جگہ}} +}}OntologyClass:موسیقی چارٹس میں جگہ۔20013310553202021-09-11T17:40:17Z{{Class +| labels = +{{label|ur|موسیقی چارٹس میں جگہ}} +}}OntologyClass:موسیقی کا20013908577762022-04-26T13:06:29Z{{Class +| labels = +{{label|en|musical}} + +{{label|ur|موسیقی کا}} + + +| rdfs:subClassOf = موسیقی کا کام + +| owl:equivalentClass = wikidata:Q2743 +}}OntologyClass:موسیقی کا رہنما20013907577742022-04-26T13:02:18Z{{Class +| labels = +{{label|en|music director}} + +{{label|ur|موسیقی کا رہنما }} + + +| comments = +{{comment|en|A person who is the director of an orchestra or concert band.}} +{{comment|ur|ایک شخص جو سازینہ یا موسیقی بجانے والوں کا گروہ کا رہنما ہے}} +| rdfs:subClassOf = موسیقی کا فنکار +| owl:equivalentClass = wikidata:Q1198887 +}}OntologyClass:موسیقی کا فنکار20013135577912022-05-01T11:47:12Z +{{Class +| labels = + +{{label|ur|موسیقی کا فنکار}} +{{label|en|musical artist}} + +| rdfs:subClassOf = فنکار, schema:MusicGroup, dul:NaturalPerson +}}OntologyClass:موسیقی کا کام20013388575272022-04-24T12:00:56Z{{Class +| labels = +{{label|ur|موسیقی کا کام}} +{{label|en|musical work}} + +| rdfs:subClassOf = کام +| owl:equivalentClass = wikidata:Q2188189 +}}OntologyClass:موسیقی کی صنف20013954580302022-05-06T16:09:26Z{{Class +| labels = + +{{label|ur|موسیقی کی صنف}} +{{label|en|music genre}} +| rdfs:subClassOf = صنف +| owl:equivalentClass = wikidata:Q188451 +}}OntologyClass:موسیقی کے ریکارڈوں کی فہرست20014027582832022-05-13T12:06:14Z{{Class +| labels = +{{label|ur|موسیقی کے ریکارڈوں کی فہرست}} +{{label|en|track list}} +| comments = +{{comment|ur|میوزک ٹریکس کی فہرست، جیسے سی ڈی پر}} +{{comment|en|A list of music tracks, like on a CD}} + +| rdfs:subClassOf = فہرست + +}}OntologyClass:موسیقی کے ساتھ نقل یا اداکاری20013667584452022-05-14T17:16:32Z{{Class +|labels= + +{{label|ur|موسیقی کے ساتھ نقل یا اداکاری}} +{{label|en|opera}} + +| rdfs:subClassOf = موسیقی کا کام +| owl:equivalentClass = wikidata:Q1344 +}}OntologyClass:موضوع کا تصور20013167587712022-05-16T19:48:09Z{{Class +| labels = +{{label|ur|موضوع کا تصور}} +{{label|en|topical concept}} + +| rdfs:subClassOf = owl:Thing +| owl:equivalentClass = dul:Concept +}}OntologyClass:مونوکلونل دافِع جِسم20013934579422022-05-05T14:28:10Z{{Class +| labels = + +{{label|ur|مونوکلونل دافِع جِسم}} +{{label|en|monoclonal antibody}} + +| comments = +{{comment|ur|وہ دوائیں جو ایک مونوکلونل دافِع جِسم ہیں۔‎}} + +{{comment|en|Drugs that are a monoclonal antibody‎}} + +| rdfs:subClassOf = دوا + +}}OntologyClass:موٹر سائیکل20013936579482022-05-05T14:36:35Z{{Class +| labels = + +{{label|ur|موٹر سائیکل}} +{{label|en|motorcycle}} +| rdfs:subClassOf = نقل و حمل کے ذرائع +| owl:equivalentClass = wikidata:Q34493 +}}OntologyClass:موٹر سائیکل دوڑانے والا20013949580072022-05-06T11:03:25Z{{Class +| labels = + +{{label|ur|موٹر سائیکل دوڑانے والا}} +{{label|en|motocycle racer}} +| rdfs:subClassOf = موٹر سائیکل سوار +}}OntologyClass:موٹر سائیکل ریسنگ لیگ20013747580132022-05-06T11:10:49Z{{Class +| labels = +{{label|en|motorcycle racing league}} +{{label|ur|موٹر سائیکل ریسنگ لیگ}} + +{{label|de|Motorradrennen Liga}} +{{label|fr|ligue de courses motocycliste}} +{{label|nl|motorrace competitie}} +| comments = +{{comment|en|a group of sports teams or bikerider that compete against each other in Motorcycle Racing}} +{{comment|ur|کھیلوں کی ٹیموں یا بائیک سواروں کا ایک گروپ جو موٹر سائیکل ریسنگ میں ایک دوسرے سے مقابلہ کرتے ہیں}} + + +| rdfs:subClassOf = کھیلوں کی انجمن + +}}OntologyClass:موٹر سائیکل سوار20013695580092022-05-06T11:06:50Z{{Class + | labels = +{{label|ur| موٹر سائیکل سوار}} +{{label|en|motorcycle rider}} +| rdfs:subClassOf = موٹر کھیل میں گاڑی دوڑانے والا +}}OntologyClass:موٹر کار کی دوڑ20013171582582022-05-13T10:42:50Z{{Class +| labels = +{{label|ur|موٹر کار کی دوڑ}} +{{label|en|Grand Prix}} +| rdfs:subClassOf = کھیلوں کی تقریب +| specificProperties = {{SpecificProperty | ontologyProperty = course | unit = kilometre }} + {{SpecificProperty | ontologyProperty = distance | unit = kilometre }} +}}OntologyClass:موٹر کھیل میں گاڑی دوڑانے والا20013921578802022-05-04T10:49:52Z{{Class +| labels = + +{{label|ur|موٹر کھیل میں گاڑی دوڑانے والا}} +{{label|en|motorsport racer}} + +| rdfs:subClassOf = کھلاڑی + +}}OntologyClass:موٹر کھیل کا موسم20013950580152022-05-06T15:45:42Z{{Class +| labels = + +{{label|ur|موٹر کھیل کا موسم}} +{{label|en|motorsport season}} +| rdfs:subClassOf = کھیلوں کا موسم + +}}OntologyClass:موٹر گاڑی کا انجن20013939579572022-05-06T01:57:05Z{{Class +| labels = +{{label|en|automobile engine}} +{{label|ur|موٹر گاڑی کا انجن}} + +| rdfs:subClassOf = انجن +}}OntologyClass:مُضحِکہ خیزکردار20013301576202022-04-24T17:59:23Z{{Class +| labels = +{{label|en|comics character}} +{{label|ur|مُضحِکہ خیزکردار}} +| rdfs:subClassOf = خیالی کردار +}}OntologyClass:مچھلی20013309581602022-05-12T18:53:58Z{{Class +| labels = +{{label|ur|مچھلی}} +{{label|en| fish}} +| rdfs:subClassOf = جانور +| owl:equivalentClass = wikidata:Q152 +}}OntologyClass:مکے باز20013500587492022-05-16T19:02:52Z{{Class +| labels = + +{{label|ur|مکے باز}} +{{label|en|boxer}} +| rdfs:subClassOf = کھلاڑی +}}OntologyClass:مکے بازی کھیل کی انجمن20013507578522022-05-02T12:15:37Z{{Class +| labels = + +{{label|ur|مکے بازی کھیل کی انجمن}} +{{label|en|boxing league}} +| rdfs:subClassOf = کھیلوں کی انجمن +| comments = +{{comment|ur|کھیلوں کی ٹیموں یا جنگجوؤں کا ایک گروپ جو مکے بازی میں ایک دوسرے کے خلاف مقابلہ کرتے ہیں۔}} +{{comment|en|A group of sports teams or fighters that compete against each other in Boxing}} +}}OntologyClass:میدان20013436566082022-02-18T06:22:44Z{{Class +| labels = +{{label|en|arena}} +{{label|ur|میدان}} + +| rdfs:subClassOf = تعمیراتی ڈھانچے, schema:StadiumOrArena +|owl:equivalentClass = +| comments = +{{comment|ur|ایک میدان ایک منسلک علاقہ ہے، اکثر سرکلر یا بیضوی شکل کا، تھیٹر، میوزیکل پرفارمنس، یا کھیلوں کے پروگراموں کی نمائش کے لیے ڈیزائن کیا گیا ہے۔}} + +}}OntologyClass:میزائل چلانے کی جگہ20013616585222022-05-14T19:44:22Z{{Class +| labels = +{{label|en|launch pad}} +{{label|ur|میزائل چلانے کی جگہ}} +| rdfs:subClassOf = بنیادی ڈھانچہ +| owl:equivalentClass = wikidata:Q1353183 +}}OntologyClass:مینار20013629583282022-05-13T17:47:49Z{{Class +| labels = + {{label|ur|مینار}} +{{label|en|tower}} +| comments = + {{comment|ur|مینار ایک قسم کا ڈھانچہ ہے (ضروری نہیں کہ کوئی عمارت) جو باقی سے اونچی ہو۔}} +{{comment|en|A Tower is a kind of structure (not necessarily a building) that is higher than the rest}} +| rdfs:subClassOf = تعمیراتی ڈھانچہ +| owl:disjointWith = شخص +| owl:equivalentClass = wikidata:Q12518 +}}OntologyClass:نائب20014038583082022-05-13T16:40:56Z{{Class +| labels = +{{label|en|deputy}} +{{label|ur|نائب}} +| rdfs:subClassOf = سیاستدان +}}OntologyClass:نائب صدر20014084584402022-05-14T17:01:44Z{{Class +| labels = +{{label|ur|نائب صدر}} +{{label|en|vice president}} + +| rdfs:subClassOf = سیاستدان +| owl:equivalentClass = wikidata:Q42178 +}}OntologyClass:نائب وزیر اعظم20014067583892022-05-14T13:28:52Z{{Class +| labels = +{{label|ur|نائب وزیر اعظم}} +{{label|en|vice prime minister}} +| rdfs:subClassOf = سیاستدان +}}OntologyClass:نارمن فرقے کا عيسائی20013615585422022-05-14T20:24:02Z{{Class +| labels = +{{label|en|Latter Day Saint}} + {{label|ur|نارمن فرقے کا عيسائی}} +| rdfs:subClassOf = مذہبی +}}OntologyClass:ناشر20014005585722022-05-15T06:16:40Z{{Class +| labels = +{{label|en|publisher}} +{{label|ur|ناشر}} +| comments = +{{comment|en|Publishing company}} + + {{comment|ur|شائع کرنے والے اشاعتی ادارہ}} +| rdfs:subClassOf = تِجارتی اِدارہ +}}OntologyClass:ناشَر20013325578622022-05-02T16:07:32Z{{Class +| labels = +{{label|ur|ناشَر}} +{{label|en|broadcaster}} +| rdfs:subClassOf =تنظیم +| comments = +{{comment|ur|براڈکاسٹر ایک ایسی تنظیم ہے جو ریڈیو یا ٹیلی ویژن پروگراموں کی پیداوار اور/یا ان کی ترسیل کے لیے ذمہ دار ہے}} +{{comment|en|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)}} +| owl:equivalentClass = wikidata:Q15265344 +}}OntologyClass:نام20013471581722022-05-12T19:28:13Z{{Class +| labels = + {{label|ur|نام}} +{{label|en|name}} +| rdfs:subClassOf = owl:Thing +| owl:equivalentClass = wikidata:Q82799 +}}OntologyClass:نامعلوم20014063583812022-05-14T12:23:25Z{{Class +| labels = +{{label|ur|نامعلوم}} +{{label|en|Unknown}} + +| rdfs:subClassOf = owl:Thing +| owl:equivalentClass = +}}OntologyClass:ناٹک20013281583242022-05-13T17:43:02Z{{Class +| labels = + +{{label|ur|ناٹک}} +| rdfs:subClassOf = تحریری کام +| owl:equivalentClass = wikidata:Q25372 +}}OntologyClass:ندی20013421576442022-04-25T08:11:24Z{{Class +| labels = +{{label|en|stream}} + +{{label|ur|ندی}} + +| comments = +{{comment|en|a flowing body of water with a current, confined within a bed and stream banks}} +{{comment|ur|پانی کا بہتا ہوا کرنٹ ، ایک بستر اور ندی کے کناروں میں محدود ہے۔ +}} + +| rdfs:subClassOf = اجسامِ آب +| specificProperties = {{SpecificProperty | ontologyProperty = discharge | unit = cubicMetrePerSecond }} + {{SpecificProperty | ontologyProperty = minimumDischarge | unit = cubicMetrePerSecond }} + {{SpecificProperty | ontologyProperty = dischargeAverage | unit = cubicMetrePerSecond }} + {{SpecificProperty | ontologyProperty = maximumDischarge | unit = cubicMetrePerSecond }} + {{SpecificProperty | ontologyProperty = watershed | unit = squareKilometre }} +| owl:equivalentClass = wikidata:Q47521 +}}OntologyClass:نسل یا خاندان20014051583562022-05-14T10:03:15Z{{Class +| labels= +{{label|ur|نسل یا خاندان}} +{{label|en|taxonomic group}} + +| comments= +{{comment|ur|پرجاتیوں کے لیے درجہ بندی کے نظام کے اندر ایک زمرہ}} +{{comment|en|a category within a classification system for Species}} + +| rdfs:subClassOf = موضوع کا تصور +| specificProperties = +| owl:equivalentClass = wikidata:Q16521 +}}OntologyClass:نسلی گروہ20013291583512022-05-14T06:18:51Z{{Class +| labels = + + {{label|ur|نسلی گروہ}} + {{label|en|ethnic group}} +| rdfs:subClassOf = owl:Thing +| owl:equivalentClass = wikidata:Q41710 +}}OntologyClass:نشریاتی جال20013503578602022-05-02T12:29:09Z{{Class +| labels = + +{{label|ur|نشریاتی جال}} +{{label|en|broadcast network}} +| rdfs:subClassOf = ناشَر +| comments = + +{{comment|ur|نشریاتی جال ایک تنظیم ہے ، جیسے کارپوریشن یا دیگر ایسوسی ایشن ، جو ریڈیو یا ٹیلی ویژن اسٹیشنوں کے گروپ پر نشر کرنے کے لیے لائیو یا ریکارڈ شدہ مواد ، جیسے فلمیں ، نیوز کاسٹ ، کھیل اور عوامی امور کے پروگرام مہیا کرتی ہے۔ +}} +{{comment|en|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)}} +| owl:equivalentClass = wikidata:Q141683 +}}OntologyClass:نشے کی دوا20014066583872022-05-14T13:24:06Z{{Class +| labels = +{{label|ur|نشے کی دوا}} +{{label|en|drug}} + + +| specificProperties = {{SpecificProperty | ontologyProperty = meltingPoint | unit = kelvin }} + {{SpecificProperty | ontologyProperty = boilingPoint | unit = kelvin }} +| rdfs:subClassOf = کیمیائی مادہ +| owl:equivalentClass = wikidata:Q8386 +}}OntologyClass:نظریہ20013662587702022-05-16T19:47:29Z{{Class +| labels = +{{label|ur|نظریہ}} +{{label|en|ideology}} + +| rdfs:subClassOf = موضوع کا تصور +| comments = + {{comment|ur|مثال کے طور پر: ریاستہائے متحدہ میں ترقی پسندی، کلاسیکی لبرل ازم}} +{{comment|en|for example: Progressivism_in_the_United_States, Classical_liberalism}} +| owl:equivalentClass = wikidata:Q7257, d0:CognitiveEntity +}}OntologyClass:نظم20013976585982022-05-15T07:38:46Z{{Class +| labels = +{{label|en|poem}} +{{label|ur|نظم}} + +| rdfs:subClassOf = تحریری کام +| owl:equivalentClass = wikidata:Q5185279 +}}OntologyClass:نغمہ نگار20013692586872022-05-15T12:16:21Z{{Class +| labels = +{{label|en|songwriter}} +{{label|ur|نغمہ نگار}} +| comments = +{{comment|en|a person who writes songs.}} + +{{comment|ur|ایک شخص جو گانے لکھتا ہے۔}} +| rdfs:subClassOf = مصنف +| owl:equivalentClass = wikidata:Q753110 +}}OntologyClass:نقاشی20013958584532022-05-14T17:35:38Z{{Class +| labels = +{{label|ur|نقاشی}} +{{label|en|Painting}} +| rdfs:subClassOf = کار ہنر +| owl:equivalentClass = schema:Painting +}}OntologyClass:نقل و حمل کا راستہ20013334578592022-05-02T12:27:15Z{{Class +| labels = +{{label|ur|نقل و حمل کا راستہ}} +{{label|en|route of transportation}} + + +| rdfs:subClassOf = بنیادی ڈھانچہ +}}OntologyClass:نقل و حمل کے ذرائع20013444560872021-11-05T07:51:16Z{{Class +| labels = + {{label|en|mean of transportation}} + +{{label|ur|نقل و حمل کے ذرائع}} +| specificProperties = + {{SpecificProperty | ontologyProperty = diameter | unit = metre }} + {{SpecificProperty | ontologyProperty = mass | unit = kilogram }} + {{SpecificProperty | ontologyProperty = length | unit = millimetre }} + {{SpecificProperty | ontologyProperty = height | unit = millimetre }} + {{SpecificProperty | ontologyProperty = weight | unit = kilogram }} + {{SpecificProperty | ontologyProperty = width | unit = millimetre }} +| rdfs:subClassOf = owl:Thing +| owl:equivalentClass = +| owl:disjointWith = شخص +}}OntologyClass:نقل و حمل کے نظام20013172576922022-04-25T11:39:45Z{{Class +| labels = +{{label|en|conveyor system}} +{{label|ur|نقل و حمل کے نظام}} +| specificProperties = +{{SpecificProperty | ontologyProperty = diameter | unit = metre }} +{{SpecificProperty | ontologyProperty = mass | unit = kilogram }} +{{SpecificProperty | ontologyProperty = length | unit = millimetre }} +{{SpecificProperty | ontologyProperty = height | unit = millimetre }} +{{SpecificProperty | ontologyProperty = weight | unit = kilogram }} +{{SpecificProperty | ontologyProperty = width | unit = millimetre }} +| owl:disjointWith = شخص +| rdfs:subClassOf = کِسی موقع مقام پر نقل و حمل۔ +}}OntologyClass:نمائش کرنے والا20013900577482022-04-26T12:17:15Z{{Class +| labels = +{{label|en|model}} + +{{label|ur|نمائش کرنے والا}} +| rdfs:subClassOf = شخص +| owl:equivalentClass = wikidata:Q4610556 +}}OntologyClass:نمائندہ20013143587652022-05-16T19:40:33Z{{Class +| labels = + + + {{label|ur|نمائندہ}} +{{label|en|agent}} +| comments = +{{comment|ur|ایک ایجنٹ ایک ایسا ادارہ ہے جو کام کرتا ہے۔ اس کا مقصد شخص اور تنظیم کا فوق درجہ ہونا ہے۔}} + +{{comment|en|Analogous to a foaf:Agent, an agent is an entity that acts. This is intended to be the super class of Person and Organisation.}} + + +| owl:disjointWith = جگہ +| owl:equivalentClass = dul:Agent, wikidata:Q24229398 +| rdfs:subClassOf = owl:Thing +}}OntologyClass:نيزہ باز20013258582242022-05-13T09:06:59Z{{Class +| labels = +{{label|ur|نيزہ باز}} +| rdfs:subClassOf = کھلاڑی +}}OntologyClass:نَسبہ20013465582462022-05-13T10:18:04Z{{Class +|labels= + +{{label|ur|نَسبہ}} +{{label|en|gene}} +| rdfs:subClassOf = حیاتیاتی مرکبات +| owl:equivalentClass = wikidata:Q7187 +}}OntologyClass:نَسبہ کا مقام20013466581672022-05-12T19:18:31Z{{Class +| labels = + {{label|ur| نَسبہ کا مقام}} +{{label|en|GeneLocation}} +| rdfs:subClassOf = owl:Thing +}}OntologyClass:نکشتر20013591575602022-04-24T14:54:59Z{{Class +| rdfs:subClassOf = آسمانی جسم +| labels = +{{label|en|constellation}} +{{label|ur|نکشتر}} + + +| owl:equivalentClass = wikidata:Q8928 +}} +== References == +<references />OntologyClass:نہر20013420576432022-04-25T08:07:53Z{{Class +| labels = + +{{label|en|canal}} + +{{label|ur|نہر}} + +| comments = +{{comment|en|a man-made channel for water}} +{{comment|ur|پانی کے لیے انسان کا بنایا ہوا چینل}} +| rdfs:subClassOf = ندی +| owl:equivalentClass = schema:Canal +| specificProperties = {{SpecificProperty | ontologyProperty = originalMaximumBoatBeam | unit = metre }} + {{SpecificProperty | ontologyProperty = originalMaximumBoatLength | unit = metre }} + {{SpecificProperty | ontologyProperty = maximumBoatBeam | unit = metre }} + {{SpecificProperty | ontologyProperty = maximumBoatLength | unit = metre }} +}}OntologyClass:نیسکار ڈرائیور20013601586122022-05-15T08:03:42Z{{Class +| labels = +{{label|en|nascar driver}} +{{label|ur|نیسکار ڈرائیور}} + +| rdfs:subClassOf = مقابلہ میں کاریں چلانے والے +}}OntologyClass:نیشنل فٹ بال لیگ تقریب20013602561682022-01-23T15:20:32Z{{Class +| labels = + +{{label|ur|نیشنل فٹ بال لیگ تقریب}} + +| rdfs:subClassOf = کھیلوں کی تقریب + +}}OntologyClass:نیٹ بال کھلاڑی20013598586102022-05-15T07:57:20Z{{Class +| labels = +{{label|en|netball player}} +{{label|de|نیٹ بال کھلاڑی}} + + +| rdfs:subClassOf = کھلاڑی +}}OntologyClass:وادی20014071584002022-05-14T14:15:59Z{{Class +| labels = +{{label|ur|وادی}} +{{label|en|valley}} + +| comments = +{{comment|ur|پہاڑیوں یا پہاڑوں کے درمیان زمین کا ایک نچلا علاقہ، عام طور پر اس میں سے دریا یا ندی بہتی ہے}} +{{comment|en|a depression with predominant extent in one direction}} +| rdfs:subClassOf = قدرتی جگہ +| owl:equivalentClass = wikidata:Q39816 +}}OntologyClass:والی بال پلیئر۔20013497558162021-09-17T20:22:31Z{{Class +| labels = + +{{label|ur|والی بال پلیئر۔}} +| rdfs:subClassOf = کھلاڑی +| owl:equivalentClass = wikidata:Q15117302 +}}OntologyClass:والی بال کاکھلاڑی20013914578302022-05-01T18:01:55Z{{Class +| labels = + {{label|en|volleyball player}} + {{label|ur|والی بال کاکھلاڑی}} +| rdfs:subClassOf = کھلاڑی +| owl:equivalentClass = wikidata:Q15117302 +}}OntologyClass:والی بال کی انجمن20014093584782022-05-14T18:47:50Z{{Class +| labels = +{{label|ur|والی بال کی انجمن}} +{{label|en|volleyball league}} + +| comments = +{{comment|ur|کھیلوں کی ٹیموں کا ایک گروپ جو والی بال میں ایک دوسرے سے مقابلہ کرتے ہیں}} +{{comment|en|A group of sports teams that compete against each other in volleyball.}} +| rdfs:subClassOf = کھیلوں کی انجمن +}}OntologyClass:والی بال کی تربیت کرنے والا20014076584142022-05-14T15:01:25Z{{Class +| labels = +{{label|ur|والی بال کی تربیت کرنے والا}} +{{label|en|volleyball coach}} + +| rdfs:subClassOf = تربیت کرنے والا +}}OntologyClass:وزراء کی کابینہ20013479582392022-05-13T09:46:17Z{{Class +|labels= +{{label|ur|وزراء کی کابینہ}} +{{label|en|cabinet of ministers}} +| rdfs:subClassOf=سرکاری محکمہ +|comments= +{{comment|ur|کابینہ اعلی درجے کے ریاستی عہدیداروں کا ایک ادارہ ہے ، عام طور پر ایگزیکٹو برانچ کے اعلی رہنماؤں پر مشتمل ہوتا ہے۔}} +{{comment|en|A cabinet is a body of high-ranking state officials, typically consisting of the top leaders of the executive branch.}} +}}OntologyClass:وزیر20013743580022022-05-06T10:53:04Z{{Class +| labels = + + +{{label|ur|وزیر}} +{{label|en|minister}} + +| rdfs:subClassOf = سیاستدان + +}}OntologyClass:وزیراعظم20013998581892022-05-13T03:13:56Z{{Class +| labels = +{{label|en|prime minister}} +{{label|ur|وزیراعظم}} +| rdfs:subClassOf = سیاستدان +}}OntologyClass:وقت وقفہ20013877581702022-05-12T19:24:09Z{{Class +|labels= + + +{{label|ur|وقت وقفہ}} +{{label|en|TimeInterval}} + +| rdfs:subClassOf = owl:Thing +}}OntologyClass:وقت کی مدت20013425581692022-05-12T19:23:10Z{{Class +|labels= + +{{label|ur|وقت کی مدت}} +{{label|en|time period}} +| owl:disjointWith = شخص +| rdfs:subClassOf = وقت وقفہ +}}OntologyClass:ولی20013699584612022-05-14T17:46:06Z{{Class +| labels = +{{label|ur| ولی}} +{{label|en|saint}} +| rdfs:subClassOf = پادری +| owl:equivalentClass = wikidata:Q43115 +}}OntologyClass:ونٹر اسپورٹ پلیئر۔20013214551072021-09-10T06:40:31Z{{Class +| labels = +{{label|ur|ونٹر اسپورٹ پلیئر}} + +{{label|fr|Joueur de sport d'hiver}} +| rdfs:subClassOf = کھلاڑی +}}OntologyClass:وکیل20013620585232022-05-14T19:46:08Z{{Class +| labels = +{{label|en|Lawyer}} + {{label|ur|وکیل}} +| comments = +{{comment|en|a person who is practicing law.}} +{{comment|ur|ایک شخص جو قانون پر عمل پیرا ہے}} +| rdfs:subClassOf = شخص +| owl:equivalentClass = wikidata:Q40348 +}}OntologyClass:ویب صفحات کا مجموعہ20014121586442022-05-15T10:20:47Z{{Class +| labels = +{{label|ur|ویب صفحات کا مجموعہ}} +{{label|en|website}} + +| rdfs:subClassOf = کام +| owl:equivalentClass = schema:WebSite +}}OntologyClass:ویکسین20014065583862022-05-14T13:21:15Z{{Class +| labels = +{{label|ur|ویکسین}} +{{label|en|vaccine}} +| comments = +{{comment|ur|وہ دوائیں جو ایک ویکسین ہیں‎}} +{{comment|en|Drugs that are a vaccine‎}} +| rdfs:subClassOf = نشے کی دوا +}}OntologyClass:ویکسینیشن کے اعدادوشمار20014078584232022-05-14T15:42:58Z{{Class +| labels = +{{label|ur|ویکسینیشن کے اعدادوشمار}} +{{label|en|Vaccination Statistics}} + +| comments = +{{comment|ur|COVID-19 ویکسینیشن کی عالمی پیشرفت سے متعلق اعدادوشمار‎}} +{{comment|en|Statistics related to the COVID-19 vaccination world progress‎}} + +| rdfs:subClassOf = نشے کی دوا +}}OntologyClass:ویکی میڈیا کا سانچہ20014133587232022-05-16T16:37:41Z{{Class +| labels= +{{label|ur|ویکی میڈیا کا سانچہ}} + {{label|en|Wikimedia template}} +| comments= +{{comment|ur|!اس کلاس کو استعمال نہ کریں! یہ صرف اندرونی استعمال کے لیے ہے}} + {{comment|en|DO NOT USE THIS CLASS! This is for internal use only!}} +| owl:equivalentClass = wikidata:Q11266439 +| rdfs:subClassOf = نامعلوم +}}OntologyClass:ٹرام گاڑی20014047583322022-05-13T17:57:04Z{{Class +| labels = +{{label|ur|ٹرام گاڑی}} +{{label|en|tram}} + +| rdfs:subClassOf = نقل و حمل کے ذرائع +}}OntologyClass:ٹرام گاڑی کا اڈا20014059583712022-05-14T12:03:38Z{{Class +| labels = +{{label|ur|ٹرام گاڑی کا اڈا}} +{{label|en|tram station}} + +| rdfs:subClassOf = اڈا +| owl:equivalentClass = <http://vocab.org/transit/terms/stop> +}}OntologyClass:ٹرین کی بوگی20014028582862022-05-13T14:05:49Z{{Class +| labels = +{{label|ur|ٹرین کی بوگی}} +{{label|en|train carriage}} + +| rdfs:subClassOf = نقل و حمل کے ذرائع +}}OntologyClass:ٹٹولنے والا20013504578652022-05-02T16:15:16Z{{Class +| labels = + +{{label|ur|ٹٹولنے والا}} +{{label|en|Browser}} + + +}}OntologyClass:ٹی وی شو20014023582742022-05-13T11:32:56Z{{Class +| labels = {{label|ur|ٹی وی شو}} +| rdfs:label@en = television show + +| rdfs:subClassOf = کام +| owl:equivalentClass = wikidata:Q15416 +}}OntologyClass:ٹی وی مزبان20014032582942022-05-13T14:38:12Z{{Class +| labels = +{{label|ur|ٹی وی مزبان}} +{{label|en|television host}} +| rdfs:subClassOf = پیش کنندہ +| owl:equivalentClass = wikidata:Q947873 +}}OntologyClass:ٹی وی ڈرامہ20014054583622022-05-14T10:38:37Z{{Class +| labels = +{{label|ur|ٹی وی ڈرامہ}} +{{label|en|television season}} + +| rdfs:subClassOf = کام +}}OntologyClass:ٹی وی کا ہدایت کار20014053583602022-05-14T10:15:38Z{{Class +| labels = +{{label|ur|ٹی وی کا ہدایت کار}} +{{label|en|Television director}} +| comments = +{{comment|ur|ایک شخص جو ٹیلی ویژن پروگرام بنانے میں شامل سرگرمیوں کی ہدایت کرتا ہے}} +{{comment|en|a person who directs the activities involved in making a television program.}} +| rdfs:subClassOf = شخص +}}OntologyClass:ٹی وی کی قسط20014022582712022-05-13T11:25:44Z{{Class +| labels = + +{{label|ur|ٹی وی کی قسط}} +{{label|en|television episode}} +| comments = +{{comment|ur|ٹیلی ویژن ایپی سوڈ سیریل ٹیلی ویژن پروگرام کا ایک حصہ ہے }} +{{comment|en|A television episode is a part of serial television program. }} +| rdfs:subClassOf = کام +| owl:equivalentClass = schema:TVEpisode +}}OntologyClass:ٹیبل ٹینس کا کھلاڑی20014049583352022-05-13T18:11:11Z{{Class +| labels = +{{label|ur|ٹیبل ٹینس کا کھلاڑی}} +{{label|en|table tennis player}} + +| comments = +{{comment|ur|کھلاڑی جو ٹیبل ٹینس کھیلتا ہے}} + {{comment|en|Athlete who plays table tennis}} + +| rdfs:subClassOf = کھلاڑی +| owl:equivalentClass = wikidata:Q13382519 +}}OntologyClass:ٹیلی ویژن مرکز20014033582982022-05-13T15:38:36Z{{Class +| labels = + +{{label|ur|ٹیلی ویژن مرکز}} +{{label|en|television station}} +| rdfs:subClassOf = ناشَر +| owl:equivalentClass = schema:TelevisionStation +| comments = +{{comment|ur|ایک ٹیلی ویژن اسٹیشن عام طور پر ایک لائن اپ ہوتا ہے۔ مثال کے طور پر ٹیلی ویژن اسٹیشن WABC-TV (یا ABC 7، چینل 7)۔ براڈکاسٹنگ نیٹ ورک ABC کے ساتھ الجھن میں نہ پڑیں، جس میں بہت سے ٹیلی ویژن اسٹیشن ہیں}} +{{comment|en|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.}} +}}OntologyClass:ٹیم کے رکن20014021582682022-05-13T11:20:10Z{{Class +| labels = + +{{label|ur|ٹیم کے رکن}} +{{label|en|Team member}} +|comments= + +{{comment|ur|ایتھلیٹک ٹیم کا رکن}} +{{comment|en|A member of an athletic team.}} +| rdfs:subClassOf = کھلاڑی +}}OntologyClass:ٹینس کا باہمی مقابلہ20014056583662022-05-14T10:48:04Z{{Class +| labels = +{{label|ur|ٹینس کا باہمی مقابلہ}} +{{label|en|tennis tournament}} + +| rdfs:subClassOf = باہمی مقابلہ +| owl:equivalentClass = wikidata:Q13219666 +}}OntologyClass:ٹینس کا کھلاڑی20014034583002022-05-13T15:41:53Z{{Class +| labels = +{{label|ur|ٹینس کا کھلاڑی}} +{{label|en|tennis player}} + +| rdfs:subClassOf = کھلاڑی +| owl:equivalentClass = wikidata:Q10833314 +}}OntologyClass:ٹینس کی انجمن20014024582762022-05-13T11:45:26Z{{Class +| labels = + +{{label|ur|ٹینس کی انجمن}} +{{label|en|tennis league}} +| comments = +{{comment|ur|کھیلوں کی ٹیموں کا ایک گروپ یا شخص جو ٹینس میں ایک دوسرے کے خلاف مقابلہ کرتے ہیں}} +{{comment|en|A group of sports teams or person that compete against each other in tennis.}} +| rdfs:subClassOf = کھیلوں کی انجمن +}}OntologyClass:پادری20013314574982022-04-24T10:46:45Z{{Class +| labels = +{{label|en|cleric}} +{{label|ur|پادری}} +| rdfs:subClassOf = شخص +}}OntologyClass:پادری کا علاقہ20013960585582022-05-15T05:24:34Z{{Class +| labels = +{{label|ur|پادری کا علاقہ}} +{{label|en|parish}} +| comments = +{{comment|en|The smallest unit of a clerical administrative body}} + +{{comment|ur|علما کے انتظامی ادارے کی سب سے چھوٹی اکائی}} +| rdfs:subClassOf = علمی انتظامی علاقہ +| owl:equivalentClass = +}}OntologyClass:پادریوں کا سردار20013924578942022-05-05T10:45:33Z{{Class +| labels = +{{label|en|archbishop}} +{{label|ur|پادریوں کا سردار}} +| rdfs:subClassOf = عیسائی پادري +}}OntologyClass:پارلیمنٹ کا رکن20013947579932022-05-06T10:22:49Z{{Class +| labels = + +{{label|ur|پارلیمنٹ کا رکن}} +{{label|en|member of parliament}} + + +| rdfs:subClassOf = سیاستدان + +| owl:equivalentClass = wikidata:Q486839 +}}OntologyClass:پانی کا ضلعی اقتدار20013278583162022-05-13T17:16:37Z{{Class +| labels = + +{{label|ur|پانی کا ضلعی اقتدار}} +| comments = + +{{comment|ur|تحفظ،سطحی پانی کے انتظام کے لیے وقف سرکاری ایجنسی}} + +| rdfs:subClassOf = حکومتی انتظامی علاقہ +| owl:equivalentClass = +}}OntologyClass:پانی کی سواری20014126586662022-05-15T10:43:39Z{{Class +| labels = +{{label|ur|پانی کی سواری}} +{{label|en|water ride}} + +| rdfs:subClassOf = تفریحی پارک کی کشش +| owl:equivalentClass = wikidata:Q2870166 +}}OntologyClass:پتھر کنڈلی کھيل کی انجمن20013346576382022-04-24T18:37:24Z{{Class +| labels = +{{label|ur|پتھر کنڈلی کھيل کی انجمن}} +{{label|en|curling league}} +| comments = +{{comment|en|a group of sports teams that compete against each other in Curling}} + +{{comment|ur|کھیلوں کی ٹیموں کا ایک گروپ جو کرلنگ میں ایک دوسرے کے خلاف مقابلہ کرتے ہیں۔}} +| rdfs:subClassOf = کھیلوں کی انجمن + +}}OntologyClass:پجاری20013997586072022-05-15T07:50:39Z{{Class +| labels = +{{label|en|priest}} +{{label|ur|پجاری}} +| rdfs:subClassOf = پادری +| owl:equivalentClass = wikidata:Q42603 +}}OntologyClass:پرانا علاقہ20013665584442022-05-14T17:10:00Z{{Class +| labels = +{{label|en|old territory}} +{{label|ur|پرانا علاقہ}} +| rdfs:subClassOf = ماتحت علاقہ +}}OntologyClass:پرجاتی20013210550942021-09-10T06:06:46Z{{Class +| labels = + +{{label|ur|قسم}} +| rdfs:subClassOf = owl:Thing +<!-- dul:Organism --> +}}OntologyClass:پرجاتیوں20013212551042021-09-10T06:34:41Z{{Class +| labels = +{{label|ur|قسم}} +| rdfs:subClassOf = owl:Thing +<!-- dul:Organism --> +}}OntologyClass:پرندہ20013194578412022-05-02T11:08:05Z{{Class +| labels = + + +{{label|ur|پرندہ}} +{{label|en|bird}} +| rdfs:subClassOf = جانور}}OntologyClass:پروگرامنگ زبان20014006582052022-05-13T03:41:35Z{{Class +| labels = + {{label|en|programming language}} +{{label|ur|پروگرامنگ زبان}} +|comments= +{{comment|ur|ایسی زبانیں جو کمپیوٹر کو ہدایات دینے میں معاون ہیں}} +| rdfs:subClassOf = زبان +| owl:equivalentClass = wikidata:Q9143 +}}OntologyClass:پس منظر20013148577902022-05-01T11:44:22Z{{Class +| labels = +{{label|ur|پس_منظر}} +{{label|en|back scene}} + +| comments = + {{comment|ur| نَغمہ سَاز، پیش کرنے والا، اور پس پردہ لوگ}} +{{comment|en|Composer, producer, and backstage people.}} + + +| rdfs:subClassOf = موسیقی کا فنکار +}}OntologyClass:پل20013333578582022-05-02T12:25:38Z{{Class +| labels = +{{label|ur|پل}} +{{label|en|bridge}} +| rdfs:subClassOf = نقل و حمل کا راستہ +| comments = +{{comment|ur|ایک پل ایک ایسا ڈھانچہ ہے جو جسمانی رکاوٹوں جیسے پانی ، وادی یا سڑک کی راہ میں رکاوٹ کو عبور کرنے کے مقصد سے بنایا گیا ہے}} +{{comment|en|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).}} +| owl:equivalentClass = wikidata:Q12280 +}}OntologyClass:پلے بوائے پلے میٹ20013975585772022-05-15T06:32:57Z{{Class +| labels = +{{label|en|Playboy Playmate}} +{{label|ur|پلے بوائے پلے میٹ}} +|comments= +{{comment|ur| پلے میٹ ایک خاتون ماڈل ہے جسے پلے بوائے میگزین کے سینٹر فولڈ/گیٹ فولڈ میں پلے میٹ آف دی منتھ کے طور پر دکھایا گیا ہے}} +| rdfs:subClassOf = شخص +}}OntologyClass:پن چکی20014120586372022-05-15T10:13:44Z{{Class +| labels = +{{label|ur|پن چکی}} +{{label|en|Watermill}} +| rdfs:subClassOf = چکی +| comments = +{{comment|ur|واٹر مل ایک ایسا ڈھانچہ ہے جو پانی کے پہیے یا ٹربائن کا استعمال مکینیکل عمل کو چلانے کے لیے کرتا ہے جیسے آٹا، لکڑی یا ٹیکسٹائل کی پیداوار، یا دھات کی تشکیل (رولنگ، پیسنا یا تار ڈرائنگ)}} +{{comment|en|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)}} +| owl:equivalentClass = wikidata:Q185187 +}}OntologyClass:پنڈال20013318576112022-04-24T17:38:16Z{{Class +| labels = +{{label|en|venue}} +{{label|ur|پنڈال}} +| rdfs:subClassOf = عمارت +}}OntologyClass:پنیر20013429576652022-04-25T10:39:33Z{{Class +| labels = +{{label|en|cheese}} + +{{label|ur|پنیر}} + +| rdfs:subClassOf = خوراک +| comments = +{{comment|en|A milk product prepared for human consumption}} +{{comment|ur|ایک دودھ کی مصنوعات جو انسانی استعمال کے لیے تیار کی جاتی ہے۔}} +}}OntologyClass:پودا20013164575832022-04-24T16:09:18Z{{Class +| labels = +{{label|en|plant}} +{{label|ur|پودا}} +| rdfs:subClassOf = خلوی مادہ + +| owl:equivalentClass = wikidata:Q756 +}}OntologyClass:پوشاک ساز20013555581462022-05-12T18:05:08Z{{Class +| labels = +{{label|ur|پوشاک ساز}} + {{label|en|fashion designer}} +|comments= +{{comment|ur| لباس کی نئ وضع قطع ایجاد کرنے والا}} +| rdfs:subClassOf = فنکار +| owl:equivalentClass = wikidata:Q3501317 +}}OntologyClass:پولو انجمن20014113586042022-05-15T07:44:47Z{{Class +| labels = +{{label|en|polo league}} + +{{label|ur|پولو انجمن}} +| comments = +{{comment|en|A group of sports teams that compete against each other in Polo.}} +{{comment|ur|کھیلوں کی ٹیموں کا ایک گروہ جو پولو میں ایک دوسرے سے مقابلہ کرتا ہے۔}} +| rdfs:subClassOf = کھیلوں کی انجمن +}}OntologyClass:پولیس افسر20013979586002022-05-15T07:40:28Z{{Class +| labels = +{{label|en|Police Officer}} +{{label|ur|پولیس افسر}} +| rdfs:subClassOf = شخص +}}OntologyClass:پوکر کھلاڑی20013978585782022-05-15T06:38:54Z{{Class +| labels = +{{label|en|poker player}} +{{label|ur|پوکر کھلاڑی}} +| rdfs:subClassOf = کھلاڑی +}}OntologyClass:پَوَن چکّی کی طرح کی کّل20014099585072022-05-14T19:23:39Z{{Class +| labels = +{{label|ur|پَوَن چکّی کی طرح کی کّل}} +{{label|en|Wind motor}} + +| rdfs:subClassOf = چکی +| comments = +{{comment|ur|ہوا سے چلنے والی ٹربائن جو خود کو ہوا کی سمت اور ہوا کی طاقت کے مطابق ڈھال لیتی ہے۔ ونڈ مل کے ساتھ عام فیکٹر کے طور پر ہوا کے باوجود، اپنی ذات میں ایک طبقہ سمجھا جاتا ہے}} +{{comment|en|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.}} +| owl:equivalentClass = wikidata:Q15854792 +}}OntologyClass:پٹھوں20013771577722022-04-26T12:55:15Z{{Class +| labels = +{{label|en|muscle}} +{{label|ur|پٹھوں}} + + +| rdfs:subClassOf = جسمانی ساخت + +| owl:equivalentClass = wikidata:Q7365 +}}OntologyClass:پھسلن کھیل کا میدان20013726586552022-05-15T10:30:53Z{{Class +| labels = +{{label|en|ski resort}} +{{label|ur|پھسلن کھیل کا میدان}} +| rdfs:subClassOf = اسکی کاعلاقہ +| comments = +{{comment|ur|پھسلن کھیل میدان کا استعمال چھٹیوں کے مقام کو بیان کرنے کے لیے کیا جاتا ہے جس میں قیام اور اسکیئنگ کے موسم سرما کے کھیل کی مشق کے لیے ضروری سہولیات موجود ہیں۔}} +| owl:equivalentClass = wikidata:Q130003 +}}OntologyClass:پھولوں کا پودا20013482581492022-05-12T18:15:13Z{{Class +| labels = +{{label|ur| پھولوں کا پودا}} +{{label|en|flowering plant}} +| rdfs:subClassOf = پودا +}}OntologyClass:پھُرتیلاکھلاڑی20013349579622022-05-06T02:13:32Z{{Class +| labels = +{{label|en|athletics player}} +{{label|ur|پھُرتیلاکھلاڑی}} +| rdfs:subClassOf = کھلاڑی +}}OntologyClass:پھُپھُوندی20013549581632022-05-12T18:59:39Z{{Class +|labels= +{{label|en|پھُپھُوندی}} +{{label|en|fungus}} +| rdfs:subClassOf = خلوی مادہ +}}OntologyClass:پہاڑ20013767577632022-04-26T12:36:26Z{{Class +| labels = +{{label|en|mountain}} + +{{label|ur|پہاڑ}} + + +| rdfs:subClassOf = قدرتی جگہ + +| owl:equivalentClass = schema:Mountain, wikidata:Q8502 +| owl:disjointWith = Person +}}OntologyClass:پہاڑی سلسلہ20013749580172022-05-06T15:49:48Z{{Class +| labels = + +{{label|ur|پہاڑی سلسلہ}} +{{label|en|mountain range}} +| comments = + +{{comment|ur|پہاڑوں کی ایک زنجیر جو پہاڑوں سے متصل ہے یا دوسرے پہاڑوں سے راستوں یا وادیوں سے الگ ہے}} +{{comment|en|a chain of mountains bordered by highlands or separated from other mountains by passes or valleys.}} + +| rdfs:subClassOf = قدرتی جگہ + +| owl:equivalentClass = wikidata:Q46831 +}}OntologyClass:پہلوان20013755587042022-05-15T13:00:34Z{{Class +| labels = +{{label|en|wrestler}} +{{label|ur|پہلوان}} +| rdfs:subClassOf = کھلاڑی +| owl:equivalentClass = wikidata:Q13474373 +}}OntologyClass:پیش کنندہ20013991582952022-05-13T15:29:19Z{{Class +| labels = +{{label|ur|پیش کنندہ}} +{{label|en|presenter}} +| comments = {{comment|ur|ٹی وی یا ریڈیو شو پیش کرنے والا}} +{{comment|en|TV or radio show presenter}} +| rdfs:subClassOf = شخص +| owl:equivalentClass = wikidata:Q13590141 +}}OntologyClass:پیشہ20014001581952022-05-13T03:23:25Z{{Class +| labels = +{{label|en|profession}} +{{label|ur|پیشہ}} +| rdfs:subClassOf = شخص کی تقریب +| owl:equivalentClass = wikidata:Q28640 +}}OntologyClass:پیشہ تعینات20013876576552022-04-25T09:01:47Z{{Class +| labels = + {{label|en|career station}} + + + + {{label|ur|پیشہ تعینات}} +| comments = + {{comment|en|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}} + {{comment|ur|یہ کلاس کسی شخص کی زندگی میں کیریئر کا مرحلہ ہے ، جیسے ایک فٹ بال کھلاڑی ، جس نے کسی مخصوص کلب میں حاصل کردہ ٹائم اسپین ، میچز اور اہداف کے بارے میں معلومات رکھتے ہیں۔}} +| rdfs:subClassOf = وقت کی مدت +}}OntologyClass:پیشہ ور گھڑ سوار20014103585162022-05-14T19:34:36Z{{Class +| labels = +{{label|en|jockey (horse racer)}} +{{label|ur|پیشہ ور گھڑ سوار}} + +| rdfs:subClassOf = کھلاڑی +}}OntologyClass:پینٹبال انجمن20014112585902022-05-15T07:07:38Z{{Class +| labels = +{{label|en|paintball league}} + +{{label|ur|پینٹبال انجمن}} +| rdfs:subClassOf = کھیلوں کی انجمن +| comments = +{{comment|en|a group of sports teams that compete against each other in Paintball}} +{{comment|ur|کھیلوں کی ٹیموں کا ایک گروہ جو پینٹ بال(مصنوعي روغني گوليوں سے فوجي انداز کي جنگ لڑنے کي نقل) میں ایک دوسرے سے مقابلہ کرتا ہے۔}} +}}OntologyClass:چربی20013633585272022-05-14T19:52:18Z{{Class +| labels = +{{label|en|lipid}} +{{label|ur|چربی}} +| comments = +{{comment|ur|چربی اور چکنائی والے مادے ہیں جو بائیو کیمسٹری میں اہم کردار ادا کرتے ہیں}} +| rdfs:subClassOf = حیاتیاتی مرکبات +}}OntologyClass:چوکور20013734586992022-05-15T12:54:26Z{{Class +| labels = +{{label|en|square}} +{{label|ur|چوکور}} +| rdfs:subClassOf = تعمیراتی ڈھانچہ +| owl:equivalentClass = wikidata:Q174782 +}}OntologyClass:چوہے کے نَسبہ کا مقام20013938579552022-05-05T14:47:55Z{{ Class +| labels = +{{label|ur|چوہے کے نَسبہ کا مقام}} +{{label|en|MouseGeneLocation}} + +| rdfs:subClassOf = نَسبہ کا مقام +}}OntologyClass:چڑیا گھر20014137587322022-05-16T17:45:18Z{{Class +| labels = +{{label|ur|چڑیا گھر}} +{{label|en|zoo}} + +| rdfs:subClassOf = تعمیراتی ڈھانچے +| owl:equivalentClass = wikidata:Q43501 +}}OntologyClass:چکی20013742580012022-05-06T10:50:57Z{{Class +| labels = + +{{label|ur|چکی}} + +{{label|en|Mill}} + +| rdfs:subClassOf = تعمیراتی ڈھانچے +| comments = + +{{comment|ur|ایک یونٹ آپریشن جو ٹھوس مواد کو چھوٹے ٹکڑوں میں توڑنے کے لیے ڈیزائن کیا گیا ہے۔}} +{{comment|en|a unit operation designed to break a solid material into smaller pieces}} + + +| owl:equivalentClass = wikidata:Q44494 +}}OntologyClass:چھوٹا نواب20013351577982022-05-01T12:27:46Z{{Class +| labels = +{{label|ur|چھوٹا نواب}} +{{label|en|baronet}} + +| rdfs:subClassOf = برطانوی بادشاہی +}}OntologyClass:چھوٹاعلاقہ20013894577272022-04-26T11:47:40Z{{Class +| labels = + {{label|en|micro-region}} + +{{label|ur|چھوٹاعلاقہ}} +| comments = + {{comment|en|A microregion is a - mainy statistical - region in Brazil, at an administrative level between a meso-region and a community}} +{{comment|ur|مائیکرو ریجن برازیل میں ایک - بنیادی شماریاتی - خطہ ہے، انتظامی سطح پر ایک میسو ریجن اور کمیونٹی کے درمیان}} + + +| rdfs:subClassOf = حکومتی انتظامی علاقہ + +}}OntologyClass:چھٹی20013524584842022-05-14T18:57:42Z{{Class +| labels = + {{label|en|holiday}} + {{label|ur|چھٹی}} +| comments = + {{comment|ur|ام تعطیل سول یا مذہبی جشن کا دن ہے ، یا کسی تقریب کی یاد میں}} +| rdfs:subClassOf = وقت وقفہ +| owl:equivalentClass = wikidata:Q1445650 +}} + +<references/>OntologyClass:چینی درخت پنکھے کے جیسے پتوں والا20013512559042021-09-18T04:37:57Z{{Class +|labels= +{{label|ur|چینی درخت پنکھے کے جیسے پتوں والا +}} +| rdfs:subClassOf = پودا +}}OntologyClass:ڈرامہ نگار20013974585642022-05-15T05:49:47Z{{Class +| labels = +{{label|en|Playwright}} +{{label|ur|ڈرامہ نگار}} +| comments = +{{comment|en|A person who writes dramatic literature or drama.}} +{{comment|ur|وہ شخص جو ڈرامائی ادب یا ڈرامہ لکھتا ہے۔}} +| rdfs:subClassOf = مصنف +| owl:equivalentClass = wikidata:Q214917 +}}OntologyClass:ڈزنی کے کردار20014041583142022-05-13T16:59:07Z{{Class +| labels = +{{label|ur|ڈزنی کے کردار}} +|comments= +{{comment|ur|امریکی فلم اور اینی میٹیڈ فلمیں بنانے والی کمپنی کے بنائے ہوے کارٹون کردار}} +| rdfs:subClassOf = خیالی کردار +}}OntologyClass:ڈھینکلی20014029582882022-05-13T14:12:13Z{{Class +| labels = +{{label|ur|ڈھینکلی}} +{{label|en|Treadmill}} +| rdfs:subClassOf = چکی +| comments = +{{comment|ur|گھوڑوں، گدھوں یا یہاں تک کہ لوگوں کی کشش طاقت سے چلنے والی چکی}} +{{comment|en|A mill driven by the tractive power of horses, donkeys or even people}} +| owl:equivalentClass = wikidata:Q683267 +}}OntologyClass:ڈی بی پیڈین20013356582182022-05-13T08:47:58Z{{Class +| labels = +{{label|ur|ڈی بی پیڈین}} +| rdfs:subClassOf = شخص +}}OntologyClass:ڈیجیٹل کیمرہ20014037583062022-05-13T16:35:29Z{{Class +| labels = +{{label|ur|ڈیجیٹل کیمرہ}} +| rdfs:subClassOf = تصویر کھینچنے کا آلہ +| comments = +{{comment|ur|ڈیجیٹل کیمرہ ایک ایسا آلہ ہے جو روایتی کیمرہ کے برعکس الیکٹرانک طور پر تصاویر کھینچتا ہے، جو کیمیائی اور مکینیکل عمل سے تصاویر کھینچتا ہے۔}} +}}OntologyClass:ڈیم20014014582222022-05-13T09:05:07Z{{Class +| labels = +{{label|ur|ڈیم}} +| rdfs:subClassOf = بنیادی ڈھانچہ +| comments = +{{comment|ur|ڈیم ایک ایسا ڈھانچہ ہے جو پانی کے قدرتی بہاؤ کو روکتا، ری ڈائریکٹ یا سست کر دیتا ہے۔}} +| owl:equivalentClass = wikidata:Q12323 +}}OntologyClass:کائی20013935579452022-05-05T14:31:52Z{{Class +| labels = + +{{label|ur|کائی}} +{{label|en|moss}} +| rdfs:subClassOf = پودا +}}OntologyClass:کار دوڑ20013905577622022-04-26T12:32:18Z{{Class +| labels = +{{label|en|motor race}} + +{{label|ur|کار دوڑ}} +| rdfs:subClassOf = دوڑ +}}OntologyClass:کار ہنر20013700579322022-05-05T12:36:04Z{{Class +|labels = +{{label|ur|کار ہنر}} +{{label|en|artwork}} +| comments = +{{comment|ur|فن کا کام، فَنی پیس، یا فَنی آبجیکٹ ایک جمالیاتی شے یا فنکارانہ تخلیق ہے۔}} +{{comment|en|A work of art, artwork, art piece, or art object is an aesthetic item or artistic creation.}} +| rdfs:subClassOf = کام +}}OntologyClass:کارخانه20013459581272022-05-12T16:52:51Z{{Class +| labels = +{{label|ur|کارخانه}} +{{label|en|factory}} +| rdfs:subClassOf = عمارت +| comments = +{{comment|ur|ایک کارخانه (پہلے کارخانه) ایک صنعتی رقبہ ہے ، عام طور پر عمارتوں اور مشینری پر مشتمل ہوتی ہے ، یا زیادہ عام طور پر ایک مرکب جس میں کئی عمارتیں ہوتی ہیں ، جہاں مزدور سامان تیار کرتے ہیں یا مشینیں چلاتے ہیں جو ایک مصنوعات کو دوسری پر پروسیسنگ کرتے ہیں۔}} +{{comment|en|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.}} +| owl:equivalentClass = wikidata:Q83405 +}}OntologyClass:کاروباری شخص20013451578672022-05-02T16:19:49Z{{Class +| labels = + +{{label|ur|کاروباری شخص}} +{{label|en|businessperson}} +| comments = +{{comment|ur|اصطلاح کاروباری کا بنیادی طور پر مطلب وہ شخص ہے جو اعلی عہدے پر فائز ہو ، جیسے ایگزیکٹو۔}} +{{comment|en|The term entrepreneur mainly means someone who holds a senior position, such as an executive.}} +| rdfs:subClassOf = شخص +}}OntologyClass:کارٹون20013536574992022-04-24T10:51:28Z{{Class +| labels = +{{label|en|cartoon}} + +{{label|ur|کارٹون}} + +| rdfs:subClassOf = کام +| owl:equivalentClass = wikidata:Q627603 +}}OntologyClass:کاشت شدہ مختلف قسم20013886576992022-04-25T11:52:26Z{{Class +| labels = +{{label|en|cultivar (cultivated variety)}} +{{label|ur|کاشت شدہ مختلف قسم}} +| comments = +{{comment|en|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.}} + +{{comment|ur|کاشتکار ایک پودا یا پودوں کا گروہ ہے جو مطلوبہ خصوصیات کے لیے منتخب کیا جاتا ہے جسے پھیلاؤ کے ذریعے برقرار رکھا جا سکتا ہے۔ ایک پودا جس کی اصل یا انتخاب بنیادی طور پر جان بوجھ کر انسانی سرگرمی کی وجہ سے ہے۔}} + +| rdfs:subClassOf = پودا +| owl:equivalentClass = wikidata:Q4886 +}}OntologyClass:کام20013155584172022-05-14T15:06:48Z{{Class +| labels = + {{label|en|work}} +{{label|ur|کام}} +| comments = + {{comment|en|Item on which time has been spent for its realisation. Actor can be a human on not (machine, insects, nature...)}} + {{comment|ur|وہ شے جس پر اس کی تکمیل کے لیے وقت صرف کیا گیا ہو۔ اداکار انسان نہیں ہو سکتا (مشین، کیڑے، فطرت}} + + +| owl:equivalentClass = wikidata:Q25372 +| owl:disjointWith = wgs84_pos:SpatialThing +| specificProperties = {{SpecificProperty | ontologyProperty = runtime | unit = minute }} +| rdfs:subClassOf = owl:Thing + +}}OntologyClass:کام کی اکائی20013307583772022-05-14T12:17:47Z{{Class +| labels = +{{label|en|unit of work}} + {{label|ur|کام کی اکائی}} +| owl:disjointWith = شخص +| comments = +{{comment|en|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.}} +{{comment|ur|اس کلاس کا مقصد کام کی مقدار کو سمجھانا ہے۔ یہ سرگرمی سے مختلف ہے کہ اس کا ایک حتمی اختتام ہے اور اسے ناپا جا رہا ہے۔}} +| rdfs:subClassOf = owl:Thing +| owl:equivalentClass = +}}OntologyClass:کام کی ترتیب20014102585152022-05-14T19:33:57Z{{Class +| labels = + {{label|ur|کام کی ترتیب}} + {{label|en|sequence of works}} + +| comments = +{{comment|ur|پچھلے/اگلے کاموں کی ترتیب}} + {{comment|en|sequence of works previous/next}} + +|rdfs:subClassOf = فہرست +}}OntologyClass:کان20013855584182022-05-14T15:28:14Z{{Class +| labels = + {{label|en|mine }} + +{{label|ja|کان}} +| comments = + {{comment|en|A mine is a place where mineral resources are or were extracted}} +{{comment|ur|کان ایک ایسی جگہ ہے جہاں معدنی وسائل ہیں یا نکالے گئے ہیں۔}} + | rdfs:subClassOf = جگہ +| owl:disjointWith = شخص +}}OntologyClass:کتا20013279557642021-09-17T18:34:45Z{{Class +| labels = + +{{label|ur|کتا}} +| rdfs:subClassOf = تھن والے جانور +| owl:disjointWith = بلی +| owl:equivalentClass = wikidata:Q25324 +}}OntologyClass:کتاب20013331578502022-05-02T11:57:56Z{{Class +| labels = +{{label|ur|کتاب}} +{{label|en|book}} + +| rdfs:subClassOf = تحریری کام +| owl:equivalentClass = schema:Book, bibo:Book, wikidata:Q571 +}} + +{{DatatypeProperty + +| rdfs:range = xsd:string +}}OntologyClass:کتب خانہ20013624585352022-05-14T20:06:34Z{{Class +| labels = +{{label|en|library}} +{{label|ur|کتب خانہ}} +| rdfs:subClassOf = تعلیمی ادارے <!-- , Building --> +| owl:equivalentClass = schema:Library, wikidata:Q7075 +}}OntologyClass:کثِیر شَکری20013985585672022-05-15T06:03:32Z{{Class +| labels = +{{label|en|polysaccharide}} +{{label|ur|کثِیر شَکری}} +| comments = +{{comment|ur|یہ کاربوہائیڈریٹس ہیں جو دس یا اس سے زیادہ سادَہ شَکَّر یونٹوں سے بنی ہیں۔}} +| rdfs:subClassOf = حیاتیاتی مرکبات +}}OntologyClass:کثیر حجم کی اشاعت20013770577712022-04-26T12:53:35Z{{Class +| labels = +{{label|en|multi volume publication}} + +{{label|ur|کثیر حجم کی اشاعت}} + + +| rdfs:subClassOf =تحریری کام + +}}OntologyClass:کراس کنٹری اسکیئر20013862575752022-04-24T15:43:42Z{{Class +| labels = +{{label|en|cross-country skier}} + +{{label|ur|کراس کنٹری اسکیئر}} +| rdfs:subClassOf = سرمائی کھیل کھیلنے والا + +}}OntologyClass:کرف نخلی20013865575812022-04-24T16:07:00Z{{Class +| labels = +{{label|en|cycad}} + +{{label|ur|کرف نخلی}} +| rdfs:subClassOf = پودا +}}OntologyClass:کرلنگ کا کھیل کھیلنے والا20013864575792022-04-24T15:56:25Z{{Class +| labels = +{{label|en|curler}} + +{{label|ur|گھنگریالا بنانے کا آلہ}} +| rdfs:subClassOf = سرمائی کھیل کھیلنے والا + +}}OntologyClass:کروی غول20013513582492022-05-13T10:26:59Z{{Class +| labels = +{{label|ur|کروی غول}} +{{label|en|Globular Swarm}} +| rdfs:subClassOf = غول +}}OntologyClass:کرکٹ انجمن20013179576952022-04-25T11:46:49Z{{Class +| labels = +{{label|en|cricket league}} +{{label|ur|کرکٹ انجمن}} +| comments = +{{comment|en|a group of sports teams that compete against each other in Cricket}} + +{{comment|ur|کھیلوں کی ٹیموں کا ایک گروپ جو کرکٹ میں ایک دوسرے کے خلاف مقابلہ کرتے ہیں۔}} +| rdfs:subClassOf = کھیلوں کی انجمن +}}OntologyClass:کرکٹ جماعت20014077584202022-05-14T15:38:29Z{{Class +| labels = +{{label|en|cricket team}} + +{{label|ur|کرکٹ جماعت}} +| rdfs:subClassOf = کھیل کی جماعت + +}}OntologyClass:کرکٹ کا میدان20013342576312022-04-24T18:24:04Z{{Class +| labels = +{{label|en|cricket ground}} +{{label|ur|کرکٹ کا میدان}} +| rdfs:subClassOf = کھیل کی سہولت +}}OntologyClass:کرکٹ کا کھلاڑی20013873576362022-04-24T18:33:11Z{{Class +| labels = + {{label|en|cricketer}} + + {{label|ur| کرکٹ کا کھلاڑی}} +| rdfs:subClassOf = کھلاڑی +}}OntologyClass:کسان20013541581562022-05-12T18:38:22Z{{Class +| labels = +{{label|ur|کسان}} +{{label|en|farmer}} +| rdfs:subClassOf = شخص +| owl:equivalentClass = wikidata:Q131512 +}}OntologyClass:کسرتی20013488581782022-05-12T19:52:31Z{{Class +| labels = +{{label|ur|کسرتی}} +{{label|en|gymnast}} +| comments = +{{comment|ur|جمناسٹ وہ ہوتا ہے جو جمناسٹکس کرتا ہے}} +{{comment|en|A gymnast is one who performs gymnastics}} +| rdfs:subClassOf = کھلاڑی +}}OntologyClass:کسی شخص (جاگیردار) یا سرکاری ادارے کے دائرہ اختیار کا قدیم علاقہ20013369578932022-05-05T10:39:38Z{{Class +| labels = +{{label|ur|کسی شخص (جاگیردار) یا سرکاری ادارے کے دائرہ اختیار کا قدیم علاقہ}} +{{label|en|ancient area of jurisdiction of a person (feudal) or of a governmental body}} +| comments = +{{comment|ur|زیادہ تر اختیارات کی جاگیردارانہ شکلوں کے لیے ، لیکن مرکزی اختیار کی تاریخی شکلوں کے لیے بھی کام کر سکتا ہے}} +{{comment|en|Mostly for feudal forms of authority, but can also serve for historical forms of centralised authority}} +| rdfs:subClassOf = انتظامی علاقہ +| owl:equivalentClass = +}}OntologyClass:کشتی بنانے والا20014069583932022-05-14T14:07:44Z{{Class +| labels = +{{label|en|canoeist}} + +{{label|ur| کشتی بنانے والا }} +| rdfs:subClassOf = کھلاڑی +}}OntologyClass:کشتی بنانے والاit20013843574882022-04-24T10:29:18Z{{Class +| labels = +{{label|en|canoeist}} + +{{label|ur| کشتی بنانے والا }} +| rdfs:subClassOf = کھلاڑی +}}OntologyClass:کشتی کی تقریب20014104585192022-05-14T19:38:32Z{{Class +| labels = +{{label|ur|کشتی کی تقریب}} +{{label|en|wrestling event}} +| rdfs:subClassOf = کھیلوں کی تقریب +}}OntologyClass:کشودرگرہ20013400579342022-05-05T12:38:08Z{{Class +| labels = +{{label|en|asteroid}} +{{label|ur|کشودرگرہ}} +| rdfs:subClassOf = جرم فلکی +| rdfs:seeAlso = Planet +| owl:equivalentClass = wikidata:Q3863 +}}OntologyClass:کوئلہ20013854575392022-04-24T12:32:14Z{{Class +| labels = + {{label|en|coal pit }} + +{{label|ur|کوئلہ}} +| comments = + {{comment|en|A coal pit is a place where charcoal is or was extracted}} + {{comment|ur|کوئلے کا گڑھا ایک ایسی جگہ ہے جہاں چارکول ہے یا نکالا جاتا ہے۔}} + +| rdfs:subClassOf = کان + +}}OntologyClass:کورونا وائرس201920013177576942022-04-25T11:45:13Z{{Class +| labels = +{{label|en|COVID-19 pandemic}} +{{label|ur|کورونا وائرس2019}} +| comments = +{{comment|en|Ongoing pandemic of coronavirus disease 2019}} + +{{comment|ur|کورونا وائرس کی بیماری 2019 کی جاری وبائی بیماری۔}} + +| rdfs:subClassOf = owl:Thing +| rdfs:domain = owl:Thing +| rdfs:range = Covid19 +| owl:equivalentClass = wikidata:Q84263196 + +}}OntologyClass:کَشید گاہ20013501578562022-05-02T12:22:30Z{{Class +| labels = + +{{label|ur|کَشید گاہ}} +{{label|en|brewery}} + +| rdfs:subClassOf = تجارتی ادارہ +}}OntologyClass:کِسی موقع مقام پر نقل و حمل20013174579882022-05-06T10:09:58Z{{Class +| labels = +{{label|en|on-site mean of transportation}} +{{label|ur|کِسی موقع مقام پر نقل و حمل}} +| specificProperties = +{{SpecificProperty | ontologyProperty = diameter | unit = metre }} +{{SpecificProperty | ontologyProperty = mass | unit = kilogram }} +{{SpecificProperty | ontologyProperty = length | unit = millimetre }} +{{SpecificProperty | ontologyProperty = height | unit = millimetre }} +{{SpecificProperty | ontologyProperty = weight | unit = kilogram }} +{{SpecificProperty | ontologyProperty = width | unit = millimetre }} +| owl:disjointWith = شخص +| rdfs:subClassOf = نقل و حمل کے ذرائع +}}OntologyClass:کھانا دینے والا20013879576632022-04-25T09:23:31Z{{Class +| labels = +{{label|en|Caterer}} + +{{label|ur|کھانا دینے والا}} + + +| rdfs:subClassOf = تِجارتی اِدارہ +}}OntologyClass:کھلاڑی20013200574702022-04-24T09:27:04Z{{Class +| labels = +{{label|ur|کھلاڑی}} +{{label|en|athlete}} +| rdfs:subClassOf = شخص +}}OntologyClass:کھلی بھیڑ20013676579892022-05-06T10:17:50Z{{Class +| labels = + +{{label|ur|کھلی بھیڑ}} +{{label|en|Open Swarm}} +| rdfs:subClassOf = غول +}}OntologyClass:کھیل20013241576502022-04-25T08:32:54Z{{Class +| labels = +{{label|en|game}} +{{label|ur|کھیل}} +| comments = +{{comment|en|a structured activity, usually undertaken for enjoyment and sometimes used as an educational tool}} + +{{comment|ur|ایک ساختی سرگرمی ، جو عموما لطف اندوز ہونے کے لیے کی جاتی ہے اور بعض اوقات تعلیمی آلے کے طور پر استعمال ہوتی ہے۔}} +| rdfs:subClassOf = سرگرمی +| owl:equivalentClass = wikidata:Q11410 + +}}OntologyClass:کھیل سکھانے والا20013856575452022-04-24T14:25:05Z{{Class +| labels = +{{label|en|college coach}} + +{{label|ur|کھیل سکھانے والا}} +| rdfs:subClassOf = تربیت کرنے والا +}}OntologyClass:کھیل کی جماعت20014079584252022-05-14T15:53:22Z{{Class +| labels = +{{label|ur|کھیل کی جماعت}} +{{label|en|sports team}} +| rdfs:subClassOf = تنظیم +| owl:equivalentClass = schema:SportsTeam, wikidata:Q12973014 +}}OntologyClass:کھیل کی سہولت20013343582522022-05-13T10:32:25Z{{Class +| labels = + +{{label|ur|کھیل کی سہولت}} +{{label|en|sport facility}} +| rdfs:subClassOf = تعمیراتی ڈھانچہ +}}OntologyClass:کھیل کے متعلق20013932579372022-05-05T12:44:06Z{{Class +| labels = +{{label|en|athletics}} +{{label|ur|کھیل کے متعلق}} +| rdfs:subClassOf = کھیل +}}OntologyClass:کھیل ہاکی ٹیموں کی انجمن20013996581582022-05-12T18:48:30Z{{Class +| labels = +} +{{label|ur|کھیل ہاکی ٹیموں کی انجمن}} +{{label|en|field hockey league}} +| comments = +{{comment|ur|کھیلوں کی ٹیموں کا ایک گروپ جو ہاکی کے میدان میں ایک دوسرے کے خلاف مقابلہ کرتا ہے۔}} + {{comment|en| a group of sports teams that compete against each other in Field Hockey}} +| rdfs:subClassOf = کھیلوں کی انجمن +}}OntologyClass:کھیلوں کا منتظم20013716586952022-05-15T12:37:24Z{{Class +| labels = +{{label|en|sports manager}} +{{label|ur|کھیلوں کا منتظم}} +|comments= +{{comment|en| 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.}} +{{comment|ur|فرانسیسی لیبل سب ساکر کے مطابق، ٹرینر شپ کا مطلب ہو سکتا ہے۔ تاہم، یہاں ایک اسپورٹس مینیجر کو اسپورٹنگ کلب کے بورڈ کے رکن سے تعبیر کیا جاتا ہے۔}} +| rdfs:subClassOf = شخص +}}OntologyClass:کھیلوں کا موسم20013510578072022-05-01T14:59:03Z{{Class +| labels = + +{{label|ur|کھیلوں کا موسم}} +{{label|en|sports season}} +}}OntologyClass:کھیلوں کی انجمن20013181578032022-05-01T14:50:26Z{{Class +| labels = +{{label|ur|کھیلوں کی انجمن}} +{{label|en|sports league}} +| comments = +{{comment|ur|کھیلوں کی ٹیموں یا انفرادی کھلاڑیوں کا ایک گروہ جو ایک مخصوص کھیل میں ایک دوسرے کے خلاف مقابلہ کرتے ہیں}} +{{comment|en|A group of sports teams or individual athletes that compete against each other in a specific sport.}} +| rdfs:subClassOf = تنظیم +| owl:equivalentClass = wikidata:Q623109 +}}OntologyClass:کھیلوں کی تقریب20013161581522022-05-12T18:20:23Z{{Class +| labels = + +{{label|ur|کھیلوں کی تقریب}} +{{label|en|sports event}} +| comments = +{{comment|ur|مقابلتی جسمانی سرگرمی کا ایک واقعہ}} +{{comment|en|a event of competitive physical activity}} + +| rdfs:subClassOf = معاشرتی واقعہ +| owl:equivalentClass = schema:SportsEvent +}}OntologyClass:کھیلوں کی تنظیم20014098585022022-05-14T19:18:08Z{{Class +| labels = + {{label|en|sports club}} +{{label|ur|کھیلوں کی تنظیم}} +| rdfs:subClassOf = تنظیم + +}}OntologyClass:کھیلوں کی جماعت کا رکن20013717586932022-05-15T12:35:23Z{{Class +| labels = +{{label|en|Sports team member}} +{{label|ur|کھیلوں کی جماعت کا رکن}} +| comments = +{{comment|en|A member of an athletic team.}} +{{comment|ur|ایتھلیٹک ٹیم کا رکن}} +| rdfs:subClassOf = تنظیم کے رکن +}}OntologyClass:کھیلوں کی جماعت کا موسم20014138587372022-05-16T18:31:53Z{{Class +| labels = + +{{label|ur|کھیلوں کی جماعت کا موسم}} +{{label|en|sports team season}} +| comments = +{{comment|ur|ایک خاص سپورٹس ٹیم کے لیے ایک موسم (جیسا کہ پوری لیگ کے موسم کے برعکس جس میں ٹیم ہے۔}} +{{comment|en|A season for a particular sports team (as opposed to the season for the entire league that the team is in)}} +| rdfs:subClassOf = کھیلوں کا موسم +}}OntologyClass:کھیلوں کے مقابلے کا نتیجہ20013675579762022-05-06T04:56:05Z{{Class +| labels = + {{label|en|results of a sport competition}} + {{label|ur|کھیلوں کے مقابلے کا نتیجہ}} +| rdfs:subClassOf = +}}OntologyClass:کہکشاں20013463581802022-05-12T19:57:05Z{{Class +|labels= +{{label|ur|کہکشاں}} + {{label|en|galaxy}} +| rdfs:subClassOf = جرم فلکی +| specificProperties = {{SpecificProperty | ontologyProperty = temperature | unit = kelvin }} + {{SpecificProperty | ontologyProperty = orbitalPeriod | unit = day }} + {{SpecificProperty | ontologyProperty = density | unit = kilogramPerCubicMetre }} + {{SpecificProperty | ontologyProperty = mass | unit = kilogram }} + {{SpecificProperty | ontologyProperty = apoapsis | unit = kilometre }} + {{SpecificProperty | ontologyProperty = maximumTemperature | unit = kelvin }} + {{SpecificProperty | ontologyProperty = averageSpeed | unit = kilometrePerSecond }} + {{SpecificProperty | ontologyProperty = volume | unit = cubicKilometre }} + {{SpecificProperty | ontologyProperty = surfaceArea | unit = squareKilometre }} + {{SpecificProperty | ontologyProperty = meanTemperature | unit = kelvin }} + {{SpecificProperty | ontologyProperty = minimumTemperature | unit = kelvin }} + {{SpecificProperty | ontologyProperty = periapsis | unit = kilometre }} + {{SpecificProperty | ontologyProperty = meanRadius | unit = kilometre }} +| owl:equivalentClass = wikidata:Q318 +}}OntologyClass:کیمیائی عنصر20013433576672022-04-25T10:42:57Z{{Class +| labels = +{{label|en|chemical element}} + +{{label|ur|کیمیائی عنصر}} + + +| rdfs:subClassOf = کیمیائی مادہ +}}OntologyClass:کیمیائی مادہ20013491575202022-04-24T11:36:26Z{{Class +| labels = + +{{label|ur|کیمیائی مادہ}} + {{label|en|chemical substance}} +| specificProperties = {{SpecificProperty | ontologyProperty = density | unit = kilogramPerCubicMetre }} + {{SpecificProperty | ontologyProperty = meltingPoint | unit = kelvin }} + {{SpecificProperty | ontologyProperty = boilingPoint | unit = kelvin }} +| owl:equivalentClass = dul:ChemicalObject + +}}OntologyClass:کیمیائی مادہ۔20013151549722021-09-09T11:10:42Z{{Class +| labels = + +{{label|ur|کیمیائی مادہ}} + +| specificProperties = {{SpecificProperty | ontologyProperty = density | unit = kilogramPerCubicMetre }} + {{SpecificProperty | ontologyProperty = meltingPoint | unit = kelvin }} + {{SpecificProperty | ontologyProperty = boilingPoint | unit = kelvin }} +| owl:equivalentClass = dul:ChemicalObject +}}OntologyClass:کیمیائی مرکب20013311576062022-04-24T17:27:03Z{{Class +| labels = +{{label|en|chemical compound}} +{{label|ur|کیمیائی مرکب}} +| rdfs:subClassOf = کیمیائی مادہ +| owl:equivalentClass = wikidata:Q11173 +}}OntologyClass:کینیڈین فٹ بال جماعت20014080584282022-05-14T16:12:19Z{{Class +| labels = + +{{label|en|canadian football Team}} + +{{label|ur|کینیڈین فٹ بال جماعت}} +| rdfs:subClassOf = کھیل کی جماعت +}}OntologyClass:کینیڈین فٹ بال لیگ20013419576422022-04-25T08:03:29Z{{Class +| labels = + +{{label|en|canadian football league}} + +{{label|ur|کینیڈین فٹ بال لیگ}} + +| comments = +{{comment|en|A group of sports teams that compete against each other in canadian football league.}} +{{comment|ur|کھیلوں کی ٹیموں کا ایک گروپ جو کینیڈین فٹ بال لیگ میں ایک دوسرے کے خلاف مقابلہ کرتے ہیں۔.}} +| rdfs:subClassOf = کھیلوں کی انجمن + +}}OntologyClass:کینیڈین فٹ بال کھلاڑی20014073584042022-05-14T14:25:34Z{{Class +| labels = +{{label|en|canadian football Player}} +{{label|ur|کینیڈین فٹ بال کھلاڑی}} + + + +| rdfs:subClassOf = گرڈیرون فٹ بال کھلاڑی + + +}}OntologyClass:کیڑا20013759587722022-05-16T19:49:46Z{{Class +| labels = + +{{label|ur| کیڑا}} +{{label|en|insect}} +| rdfs:subClassOf = جانور +| owl:equivalentClass = wikidata:Q1390 +}}OntologyClass:گاؤں20014068583912022-05-14T13:36:16Z{{Class +| labels = +{{label|ur|گاؤں}} +{{label|en|village}} +| comments = +{{comment|ur|ایک انسانی بستی یا برادری کا جھنڈ ، عام طور پر ایک چھوٹا قصبہ}} +{{comment|en|a clustered human settlement or community, usually smaller a town}} + +| rdfs:subClassOf = بستی +| owl:equivalentClass = wikidata:Q532 +}}OntologyClass:گالف کا میدان20013367582512022-05-13T10:30:55Z{{Class +| labels = +{{label|ur|گالف کا میدان}} +{{label|en|golf course}} +| comments = +{{comment|ur|زمین کا ایک علاقہ جس میں گولف کے لیے 9 یا 18 سوراخ ہوتے ہیں جن میں سے ہر ایک میں ٹی ، فیئر وے ، اور سبز اور اکثر ایک یا زیادہ قدرتی یا مصنوعی خطرات شامل ہیں۔ - جسے گولف لنکس بھی کہا جاتا ہے۔}} +{{comment|en|In a golf course, holes often carry hazards, defined as special areas to which additional rules of the game apply.}} +| rdfs:subClassOf = کھیل کی سہولت +| owl:equivalentClass = wikidata:Q1048525 +}}OntologyClass:گالف کا کھلاڑی20013477582382022-05-13T09:44:24Z{{Class +|labels= +{{label|ur|گالف کا کھلاڑی}} +{{label|en|golf player}} +| rdfs:subClassOf = کھلاڑی +| owl:equivalentClass = wikidata:Q13156709 +}}OntologyClass:گالف کی انجمن20013476581742022-05-12T19:33:37Z{{Class +|labels= +{{label|ur|گالف کی انجمن}} +{{label|en|golf league}} +|comments = +{{comment|ur|گالف پلیئر جو گالف میں ایک دوسرے کے خلاف مقابلہ کرتے ہیں۔}} +{{comment|en|Golfplayer that compete against each other in Golf}} +| rdfs:subClassOf = کھیلوں کی انجمن +}}OntologyClass:گانا20013458586982022-05-15T12:48:08Z{{Class +| labels = +{{label|en|song}} + +{{label|ur|گانا}} + +| rdfs:subClassOf = موسیقی کا کام, schema:MusicRecording +}}OntologyClass:گانے والوں کا گروہ20013154577942022-05-01T12:12:47Z{{Class +| labels = + + {{label|ur|گانے والوں کا گروہ}} +{{label|en|Band}} +| rdfs:subClassOf = گروہ +, schema:MusicGroup, dul:SocialPerson +| owl:equivalentClass = wikidata:Q215380 +}}OntologyClass:گاڑی20013443556272021-09-15T10:24:00Z +{{Class +| labels = +{{label|ur|گاڑی}} +{{label|en|automobile}} + +| rdfs:subClassOf = نقل و حمل کے ذرائع, schema:Product +| owl:equivalentClass = +| specificProperties = {{SpecificProperty | ontologyProperty = fuelCapacity | unit = litre }} + {{SpecificProperty | ontologyProperty = wheelbase | unit = millimetre }} +}}OntologyClass:گاڑیوں کی ریسوں کی انجمن20013348579612022-05-06T02:07:56Z{{Class +| rdfs:label@en = auto racing league +|labels= +{{label|ur|گاڑیوں کی ریسوں کی انجمن}} +|comments= + +{{comment|ur|کھیلوں کی ٹیموں یا انفرادی کھلاڑیوں کا ایک گروپ جو آٹو ریسنگ میں ایک دوسرے کے خلاف مقابلہ کرتے ہیں}} +| rdfs:comment@en = a group of sports teams or individual athletes that compete against each other in auto racing +| rdfs:subClassOf = کھیلوں کی انجمن +}}OntologyClass:گاڑیوں کے مقابلے کا کھیل20013495581552022-05-12T18:27:13Z{{Class +| labels = +{{label|ur|گاڑیوں کے مقابلے کا کھیل}} +{{label|en|motorsport racer}} +| rdfs:subClassOf = کھلاڑی +}}OntologyClass:گرجا20013882576742022-04-25T11:00:10Z{{Class + +| labels = +{{label|en|church}} + +{{label|ur|گرجا}} + + +| rdfs:subClassOf = مذہبی عمارت +| owl:equivalentClass = wikidata:Q16970 +| comments = +{{comment|en|This is used for church buildings, not any other meaning of church.}} + +{{comment|ur|یہ چرچ کی عمارتوں کے لیے استعمال ہوتا ہے ، چرچ کا کوئی دوسرا مطلب نہیں۔}} +}}OntologyClass:گرم موسم بہار20014089584632022-05-14T18:03:38Z{{Class +| labels = +{{label|en|hot spring}} + +{{label|ur|گرم موسم بہار}} + +| rdfs:subClassOf = قدرتی جگہ +| owl:equivalentClass = wikidata:Q177380 +}}OntologyClass:گرم پانی کا قدرتی چشمہ20013372569272022-03-05T04:52:36Z{{Class +| labels = +{{label|en|hot spring}} +{{label|ur|گرم پانی کا قدرتی چشمہ}} + +| rdfs:subClassOf = قدرتی جگہ +| owl:equivalentClass = wikidata:Q177380 +}}OntologyClass:گرم پانی کاقدرتی چشم20013234551552021-09-10T10:04:54Z{{Class +| labels = +{{label|en|hot spring}} +{{label|ga|foinse the}} +{{label|nl|warmwaterbron}} +{{label|de|heiße Quelle}} +{{label|ur|گرم پانی کا قدرتی چشمہ}} +{{label|ja|温泉}} +{{label|pt|fonte termal}} +| rdfs:subClassOf = NaturalPlace +| owl:equivalentClass = wikidata:Q177380 +}}OntologyClass:گروہ20013160581772022-05-12T19:50:59Z{{Class +|labels= + +{{label|ur|گروہ}} +{{label|en|group}} +| rdfs:subClassOf = تنظیم +| comments = + + +{{comment|ur|لوگوں کا ایک غیر رسمی گروہ }} +{{comment|en|An (informal) group of people.}} +}}OntologyClass:گرڈیرون فٹ بال کھلاڑی20013298574682022-04-24T09:25:36Z{{Class +| labels = +{{label|en|gridiron football player}} + + +{{label|ur|گرڈیرون فٹ بال کھلاڑی}} + +|comments= +{{comment |en|Gradiron football, also called North American football, is a family of soccer team games played primarily in the United States and Canada.}} + +{{comment|ur|گریڈیرون فٹ بال ، جسے شمالی امریکی فٹ بال بھی کہا جاتا ہے ، فٹ بال ٹیم کھیلوں کا ایک خاندان ہے جو بنیادی طور پر ریاستہائے متحدہ اور کینیڈا میں کھیلا جاتا ہے}} +| rdfs:subClassOf = کھلاڑی +| owl:equivalentClass = wikidata:Q14128148 +}}OntologyClass:گلوکار20013684586502022-05-15T10:26:49Z{{Class +| labels = +{{label|ur|گلوکار}} +{{label|en|Singer}} +| comments = + {{comment|ur|ایک شخص جو گاتا ہے}} +| rdfs:subClassOf = موسیقی کا فنکار +| owl:equivalentClass = wikidata:Q177220 +}}OntologyClass:گمٹیلا پودا20014018582372022-05-13T09:42:59Z{{Class +|labels= +{{label|ur|گمٹیلا پودا}} +{{label|en|Gnetophytes}} +| rdfs:subClassOf = پودا +}}OntologyClass:گولف کا باہمی مقابلہ20013133582532022-05-13T10:35:51Z{{Class +| labels = +{{label|ur|گولف کا باہمی مقابلہ}} +{{label|en|golf tournament}} +| rdfs:subClassOf = باہمی مقابلہ +| owl:equivalentClass = wikidata:Q15061650 +}}OntologyClass:گٹار بجانے والا20013197554652021-09-13T08:37:44Z{{Class +| labels = +{{label|ur|گٹار بجانے والا}} +| rdfs:subClassOf = سازندہ +| owl:equivalentClass = wikidata:Q855091 +}}OntologyClass:گھوڑا20013525584852022-05-14T18:59:20Z{{Class +| labels = +{{label|en|horse}} +{{label|ur|گھوڑا}} +| rdfs:subClassOf = تھن والے جانور +}}OntologyClass:گھوڑا دوڑ میں مقابلہ کرنا20013538585052022-05-14T19:23:05Z{{Class +| labels = +{{label|en|horse race}} +{{label|ur|گھوڑا دوڑ میں مقابلہ کرنا}} +| rdfs:subClassOf = دوڑ +}}OntologyClass:گھوڑا سدھانے والا20013526569222022-03-04T06:54:27Z{{Class +| labels = +{{label|en|horse trainer}} +{{label|ur|گھوڑا سدھانے والا}} +| rdfs:subClassOf = شخص +}}OntologyClass:گھڑ سوار20013232584622022-05-14T18:01:06Z{{Class +|labels = +{{label|en|horse rider}} +{{label|ur|گھڑ سوار}} + +| rdfs:subClassOf = کھلاڑی +}}OntologyClass:گہرائی20014036583042022-05-13T16:14:44Z{{Class +| labels = +{{label|ur|گہرائی}} +}}OntologyClass:گیلک کھیل کا کھلاڑی20013462581642022-05-12T19:12:55Z{{Class +|labels= +{{label|ur|گیلک_کھیل_کا_کھلاڑی}} +{{label|en|Gaelic games player}} +| rdfs:subClassOf = کھلاڑی +}}OntologyClass:گیلک گیم پلیئر۔20013228551412021-09-10T07:53:07Z{{Class +|labels= +{{label|ur|گیلک گیم پلیئر}} + +| rdfs:subClassOf = کھلاڑی +}}OntologyClass:ہارمون20013230551452021-09-10T09:41:31Z{{Class +| labels = +{{label|en|Hormone}} +{{label|ur|اعضاء کی خوراک}} +| comments = +{{comment|en|A hormone is any member of a class of signaling molecules produced by glands in multicellular organisms that are transported by the circulatory system to target distant organs to regulate physiology and behaviour.}} + +{{comment|ur|ایک مادہ جو غدود سے نکل کر خون میں شامل ہوتا ہےاورگردش کے نظام کے ذریعے دور دراز کے اعضاء کو نشانہ بناتے ہیں تاکہ جسمانیات اور طرز عمل کو کنٹرول کریں}} + +| rdfs:subClassOf = Biomolecule +| owl:equivalentClass = wikidata:Q8047 +}}OntologyClass:ہالی ووڈ کارٹون20013535585032022-05-14T19:20:16Z{{Class +| labels = +{{label|en|hollywood cartoon}} +{{label|ur|ہالی ووڈ کارٹون}} +| rdfs:subClassOf = کارٹون +}}OntologyClass:ہاکی ٹیم20013206583492022-05-14T06:13:56Z{{Class +| labels = +{{label|en|hockey team}} +{{label|ur|ہاکی کھیل کی جماعت}} +| rdfs:subClassOf = کھیل کی ٹیم +| owl:equivalentClass = wikidata:Q4498974 +}}OntologyClass:ہاکی کھیل کی جماعت20013370584682022-05-14T18:30:51Z{{Class +| labels = +{{label|en|hockey team}} +{{label|ur|ہاکی کھیل کی جماعت}} +| rdfs:subClassOf = کھیل کی جماعت +| owl:equivalentClass = wikidata:Q4498974 +}}OntologyClass:ہاکی کی تنظیم20014096584972022-05-14T19:16:22Z{{Class +| labels = +{{label|en|hockey club}} +{{label|ur|ہاکی کی تنظیم}} +| rdfs:subClassOf = کھیلوں کی تنظیم + +}}OntologyClass:ہتھیار20014097585012022-05-14T19:17:45Z{{Class +| labels = +{{label|ur|ہتھیار}} +{{label|en|weapon}} + +| rdfs:subClassOf = آلہ, schema:Product +| specificProperties = + {{SpecificProperty | ontologyProperty = length | unit = millimetre }} + {{SpecificProperty | ontologyProperty = height | unit = millimetre }} + {{SpecificProperty | ontologyProperty = weight | unit = kilogram }} + {{SpecificProperty | ontologyProperty = width | unit = millimetre }} + {{SpecificProperty | ontologyProperty = diameter | unit = millimetre }} +| owl:equivalentClass = wikidata:Q728 +}}OntologyClass:ہسپتال20013648569252022-03-04T06:58:06Z{{Class +| labels= + {{label|en|hospital}} + {{label|ur|ہسپتال}} + +| rdfs:subClassOf = عمارت +}}OntologyClass:ہسپتال۔20013539559792021-09-18T06:52:18Z{{Class +| labels = +{{label|ur|ہسپتال۔}} +| rdfs:subClassOf = عمارت +| owl:equivalentClass = schema:Hospital, wikidata:Q16917 +}}OntologyClass:ہلکی شراب20013188578322022-05-01T18:07:13Z{{Class +|labels= + {{label|ur|ہلکی شراب}} +{{label|en|beer}} +| rdfs:subClassOf = مشروب + +| owl:equivalentClass = wikidata:Q44 +}}OntologyClass:ہنگامہ20013672584462022-05-14T17:20:47Z{{Class +| labels = +{{label|en|Outbreak}} +{{label|ur|ہنگامہ}} +| rdfs:subClassOf = تقریب +| owl:equivalentClass = wikidata:Q495513 +}}OntologyClass:ہوا میں چھلانگ لگانے والا20013686587172022-05-15T15:43:44Z{{Class +| labels = +{{label|en|ski jumper}} +{{label|ur|ہوا میں چھلانگ لگانے والا}} +| rdfs:subClassOf = سرمائی کھیل کھیلنے والا +<!-- | owl:equivalentClass = wikidata:Q15117302 --> +}}OntologyClass:ہوا کی سمت20013283576002022-04-24T17:00:55Z{{Class +|labels = + {{label|en|Cardinal direction}} + {{label|ur|ہوا کی سمت}} +| comments = +{{comment|en|One of the four main directions on a compass or any other system to determine a geographical position}} + +{{comment|ur|جغرافیائی پوزیشن کا تعین کرنے کے لیے کمپاس یا کسی دوسرے نظام پر چار اہم سمتوں میں سے ایک}} +| rdfs:subClassOf =موضوع کا تصور +}}OntologyClass:ہوا کی چکی20014122586482022-05-15T10:25:28Z{{Class +| labels = +{{label|ur|ہوا کی چکی}} +{{label|en|Windmill}} + +| rdfs:subClassOf = چکی +|comments = +{{comment|ur|ہوا کی چکی ایک مشین ہے جو ہوا کی توانائی کو سیل نامی وینز کے ذریعے گردشی توانائی میں تبدیل کرتی ہے}} + {{comment|en|A windmill is a machine that converts the energy of wind into rotational energy by means of vanes called sails}} +| owl:equivalentClass = wikidata:Q38720 +}} + +==References== +<references/>OntologyClass:ہوائی اڈہ20013376554842021-09-13T09:15:11Z{{Class +| labels = +{{label|en|airport}} +{{label|ur|ہوائی اڈہ}} +| rdfs:subClassOf = بنیادی ڈھانچہ +| owl:equivalentClass = schema:Airport,wikidata:Q1248784 +}}OntologyClass:ہوائی جہاز20013386577192022-04-26T11:37:28Z{{Class +| labels = +{{label|en|aircraft}} +{{label|ur|ہوائی جہاز}} + +| rdfs:subClassOf = نقل و حمل کے ذرائع, schema:Product +| owl:equivalentClass = wikidata:Q11436 +}}OntologyClass:ہوائی راستہ20013891577202022-04-26T11:39:02Z{{Class +| labels = +{{label|en|airline}} +{{label|ur|ہوائی راستہ}} + +|comments= +{{comment|ur|ہوائی جہازوں کے ذریعے سواریاں لے جانے والی تنظیم}} +| rdfs:subClassOf = عوامی راہداری کا نظام +| owl:equivalentClass = wikidata:Q46970 +}}OntologyClass:ہڈی20013414578482022-05-02T11:40:32Z{{Class +| labels = + +{{label|ur|ہڈی}} +{{label|en|bone}} + +| rdfs:subClassOf = جسمانی ساخت + +| owl:equivalentClass = wikidata:Q265868 +}}OntologyClass:ہینڈ بال جماعت20014091584722022-05-14T18:39:01Z{{Class +| labels = +{{label|en|handball team}} +{{label|ur|ہینڈ بال جماعت}} +| rdfs:subClassOf = کھیل کی جماعت +| owl:equivalentClass = wikidata:Q10517054 +}}OntologyClass:ہینڈ بال کا کھلاڑی20013199584642022-05-14T18:19:51Z{{Class +| labels = +{{label|en|handball player}} +{{label|ur|ہینڈ بال کا کھلاڑی}} +|comments = +{{comment|ur|ایک کھیل جِس میں دو یا چار کھِلاڑی بَند احاطے میں ربَڑ کی چھوٹی گیند کو ہاتھوں سے دیوار پَر مارتے ہیں}} +| rdfs:subClassOf = کھلاڑی +| owl:equivalentClass = wikidata:Q13365117 +}}OntologyClass:ہینڈ بال کی انجمن20013493584862022-05-14T19:00:45Z{{Class +| labels = +{{label|en|handball league}} +{{label|ur|ہینڈ بال کی انجمن}} +| comments = +{{comment|en|a group of sports teams that compete against each other in Handball}} + +{{comment|ur|کھیلوں کی ٹیموں کا ایک گروپ جو ہینڈ بال میں ایک دوسرے کے خلاف مقابلہ کرتا ہے۔}} +| rdfs:subClassOf = کھیلوں کی انجمن +}}OntologyClass:یادگار20013484579102022-05-05T11:19:41Z{{Class +| labels = +{{label|ur|یادگار}} +{{label|en|memorial}} +| comments = +{{comment|ur|ایک قسم کا ڈھانچہ (ایک مجسمہ یا آرٹ آبجیکٹ) کسی شخص یا اہم واقعہ کی یاد میں بنایا گیا ، ضروری نہیں کہ تباہ کن نوعیت کا ہو }} +{{comment|en|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. }} +| rdfs:subClassOf = تعمیراتی ڈھانچہ +| owl:equivalentClass = wikidata:Q4989906 +}}OntologyClass:یوروویژن گانا مقابلہ اندراج20013457583542022-05-14T06:24:33Z{{Class +| labels = +{{label|ur|یوروویژن گانا مقابلہ اندراج}} +{{label|en| Eurovision song contest entry}} +| rdfs:subClassOf = گانا +}}OntologyClass:یوٹیب پر وڈیو لگانے والا20014136587302022-05-16T17:41:37Z{{Class +| labels = + {{label|ur|یوٹیب پر وڈیو لگانے والا}} + {{label|en|Youtuber}} + +| rdfs:subClassOf = شخص +| comments = +{{comment|ur|وہ شخص جو ویڈیو شیئرنگ ویب سائٹ یوٹیوب پر ویڈیوز اپ لوڈ کرتا ہے، تیار کرتا ہے یا ان میں ظاہر ہوتا ہے}} +{{comment|en|a person who uploads, produces, or appears in videos on the video-sharing website YouTube..}} + +}}OntologyClass:یوکاریوٹ20013211551032021-09-10T06:32:41Z{{Class +| labels = +{{label|ur|یوکاریوٹ}} +| rdfs:subClassOf = پرجاتیوں +| owl:equivalentClass = wikidata:Q19088 +}}OntologyClass:یوکاریوٹ۔20013361554282021-09-13T07:51:22Z{{Class +| labels = +{{label|en| eukaryote}} +{{label|ur| خلوی مادہ}} +| rdfs:subClassOf = پرجاتیوں +| owl:equivalentClass = wikidata:Q19088 +}}OntologyClass:یوکرائٹ۔20013209550932021-09-10T06:02:57Z{{Class +| labels = +{{label|ur|یک خلوی یا چند خلوی مادہ}} +| rdfs:subClassOf = پرجاتی +| owl:equivalentClass = wikidata:Q19088 +}}OntologyClass:یہودی رہنما20013645569482022-03-05T05:46:41Z{{Class +| labels = +{{label|en|JewishLeader}} + {{label|ur|یہودی رہنما}} +| rdfs:subClassOf = مذہبی +}}OntologyClass:یہودیوں کی عبادت گاہ20013754587062022-05-15T13:04:00Z{{Class +| labels = +{{label|en|synagogue}} +{{label|ur|یہودیوں کی عبادت گاہ}} + +| comments = +{{comment|en|A synagogue, sometimes spelt synagog, is a Jewish or Samaritan house of prayer.<ref>http://en.wikipedia.org/wiki/Synagogue</ref>}} + +{{comment|ur|یہودیوں کی عبادت گاہ، ایک یہودی یا سامری نماز کا گھر ہے۔}} +| rdfs:subClassOf = مذہبی عمارت +| owl:equivalentClass = wikidata:Q34627 +}} + +== references == +<references/>OntologyProperty:ASide202567588442022-06-20T12:45:04Z{{DatatypeProperty +| rdfs:label@en = a side +| rdfs:label@ca = cara A +| rdfs:label@de = Single +| rdfs:label@el = εξώφυλλο +| rdfs:label@ga = taobh a +| rdfs:label@pl = strona A +| rdfs:label@sr = страна +| labels = + {{label|ur|ایک طرف}} +| rdfs:domain = Single +| rdfs:range = xsd:string +| rdfs:comment@en = +}}OntologyProperty:AbbeychurchBlessing2027823589422022-06-20T17:39:42Z{{DatatypeProperty +| rdfs:label@en = abbey church blessing +| rdfs:label@de = Abteikirche weihe +| rdfs:label@sr = опатијски црквени благослов +| labels = +{{label|ur|ابی چرچ کی برکت}} +| rdfs:domain = Cleric +| rdfs:range = xsd:string +}}OntologyProperty:AbbeychurchBlessingCharge2027822491402015-10-13T09:46:42Z{{DatatypeProperty +| rdfs:label@en = abbey church blessing charge +| rdfs:domain = Cleric +| rdfs:range = xsd:string +}}OntologyProperty:Abbreviation202494588472022-06-20T12:57:01Z{{DatatypeProperty +| labels = +{{label|en|abbreviation}} +{{label|ur|مخفف}} +{{label|nl|afkorting}} +{{label|el|συντομογραφία}} +{{label|de|Abkürzung}} +{{label|fr|abréviation}} +{{label|ga|giorrúchán}} +{{label|mk|кратенка}} +{{label|sr|скраћеница}} +{{label|pl|skrót}} +| rdfs:domain = owl:Thing +| rdfs:range = xsd:string +| owl:equivalentProperty = wikidata:P743 +}}OntologyProperty:AbleToGrind2028409589472022-06-20T17:44:43Z{{DatatypeProperty +| labels = +{{label|en|able to grind}} +{{label|ur|پیسنے کے قابل}} +{{label|de|mahlenfähig}} +{{label|nl|maalvaardig}} +| rdfs:domain = Mill +| rdfs:range = xsd:string +}}OntologyProperty:AbsoluteMagnitude2024355510762016-05-14T13:53:19Z{{DatatypeProperty + |rdfs:label@en=absolute magnitude + |rdfs:label@el=απόλυτο μέγεθος + |rdfs:label@de=absolute Helligkeit + |rdfs:label@fr=magnitude absolue + |rdfs:label@ga=dearbhmhéid + |rdfs:label@pl=wielkość absolutna + |rdfs:label@sr=апсолутна магнитуда + |rdfs:domain=CelestialBody + |rdfs:range=xsd:double + |owl:equivalentProperty = wikidata:P1457 +}}OntologyProperty:Abstentions2029132588592022-06-20T13:39:46Z{{DatatypeProperty +| rdfs:label@en = abstentions +| rdfs:label@el = Αριθμός αποχών μετά από ψηφοφορία +| rdfs:label@de = Anzahl der Enthaltungen nach der Abstimmung +| rdfs:label@ga = staonadh +| rdfs:label@nl = Aantal onthoudingen +| labels = +{{label|ur|پرہیز}} +| rdfs:comment@en = Number of abstentions from the vote +| rdfs:comment@ga= an líon daoine a staon ó vótáil +| comments = +{{comment|ur|ووٹ سے پرہیز کرنے والوں کی تعداد}} +| rdfs:domain = StatedResolution +| rdfs:range = xsd:nonNegativeInteger +}}OntologyProperty:Abstract202495589492022-06-20T17:46:37Z'''{{Reserved for DBpedia}}''' + +{{DatatypeProperty +| labels = +{{label|en|has abstract}} +{{label|ur|خلاصہ}} +{{label|de|abstract}} +{{label|el|έχει περίληψη}} +{{label|sr|апстракт}} +| comments = +{{comment|en|Reserved for DBpedia. {{Reserved for DBpedia}}}} +{{comment|el|Προορίζεται για την DBpedia. {{Reserved for DBpedia}}}} +| rdfs:range = rdf:langString +}}OntologyProperty:AcademicAdvisor202496567102022-02-28T13:31:48Z +{{ObjectProperty +| labels = + {{label|en|academic advisor}} + {{label|nl|promotor}} + {{label|el|ακαδημαϊκοί_σύμβουλοι}} + {{label|fr|conseiller académique}} + {{label|sr|академски саветник}} +| rdfs:domain = Scientist +| rdfs:range = Person +| rdfs:subPropertyOf = dul:coparticipatesWith +}}OntologyProperty:AcademicDiscipline2023739588532022-06-20T13:16:36Z{{ObjectProperty +| rdfs:label@en = academic discipline +| rdfs:label@de = wissenschaftliche Disziplin +| rdfs:label@sr = академска дисциплина +| labels = + {{label|ur|تعلیمی نظم و ضبط}} +| rdfs:domain = AcademicJournal +| rdfs:range = owl:Thing +| rdfs:comment@en = 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. +| comments = +{{comment|ur|ایک قرارداد میٹنگ یا کنونشن کے ذریعہ اختیار کردہ ایک رسمی بیان کی وضاحت کرتی ہے}} +| rdfs:subPropertyOf = dul:isAbout +}}OntologyProperty:AcademyAward202497589912022-06-21T07:26:02Z{{ObjectProperty +| rdfs:label@en = Academy Award +| rdfs:label@de = Academy Award +|labels={{label|ur|اکیڈمی ایوارڈ}} +| rdfs:label@el = Βραβείο ακαδημίας +| rdfs:label@ga = Duais an Acadaimh +| rdfs:label@pl = Nagroda Akademii Filmowej +| rdfs:label@sr = оскар +| rdfs:domain = Artist +| rdfs:range = Award +| rdfs:subPropertyOf = dul:coparticipatesWith +|comments={{comment|ur|موشن تصویر پروڈکشن اور کارکردگی میں کامیابیوں کے لئے اکیڈمی آف موشن تصویر آرٹس اور سائنسز کے ذریعہ ایک سالانہ اعزاز}} +}}OntologyProperty:Acceleration202498569892022-03-09T11:45:36Z{{DatatypeProperty +| labels = + {{label|ca|acceleració}} + {{label|de|Beschleunigung}} + {{label|en|acceleration}} + {{label|fr|accélération}} + {{label|nl|acceleratie}} + {{label|el|επιτάχυνση}} + {{label|ga|luasghéarú}} + {{label|pl|przyspieszenie}} + {{label|sr|убрзање}} +|comments = + {{comment|fr|variation de la vitesse}} +| rdfs:domain = AutomobileEngine +| rdfs:range = Time +| rdf:type = owl:FunctionalProperty +}}OntologyProperty:Access202499588602022-06-20T13:43:07Z{{DatatypeProperty +| labels = + {{label|en|access}} +{{label|ur|رسائی}} + {{label|nl|toegang}} + {{label|de|Zugriff}} + {{label|el|πρόσβαση}} + {{label|fr|accès}} + {{label|sr|приступ}} +| rdfs:range = xsd:string +}}OntologyProperty:AccessDate202500589932022-06-21T09:56:12Z{{DatatypeProperty +| labels = +{{label|ur|رسائی کی تاریخ}} + {{label|en|access date}} + {{label|fr|date d'accès}} + {{label|nl|toegangsdatum}} + {{label|de|Zugriffsdatum}} + {{label|el|ημερομηνία πρόσβασης}} + {{label|sr|датум приступа}} +| rdfs:range = xsd:date +}}OntologyProperty:Achievement2026061526662017-11-18T08:51:48Z{{ObjectProperty +|labels = + {{label|en|achievement}} + {{label|nl|prestatie}} + {{label|de|Leistung}} + {{label|el|κατόρθωμα}} + {{label|fr|haut fait, accomplissement}} + {{label|es|logro}} + {{label|sr|достигнуће}} +| rdfs:domain = Person +}}OntologyProperty:AcquirementDate2023101588642022-06-20T13:45:44Z{{DatatypeProperty +| rdfs:label@en=date of acquirement +| rdfs:label@de=Anschaffungszeitpunkt +| rdfs:label@el=ημερομηνία απόκτησης +| labels = + {{label|ur|حصول کی تاریخ}} +| rdfs:domain = Ship +| rdfs:range = xsd:date + +}}OntologyProperty:ActScore2023139589952022-06-21T10:03:11Z +{{ObjectProperty +| rdfs:label@en = ACT score +| rdfs:label@el = ACT σκορ +| rdfs:label@sr = ACT резултат +|labels={{label|ur|اے سی تی سکور}} +| rdfs:comment@en = most recent average ACT scores +| rdfs:comment@el = ποιό πρόσφατες μέσες βαθμολογίες ACT +| rdfs:domain = School +| rdfs:subPropertyOf = dul:hasQuality +}}OntologyProperty:ActingHeadteacher202501525752017-10-31T08:24:27Z +{{ObjectProperty +| rdfs:label@en = acting headteacher +| rdfs:label@el = διευθυντής σχολείου +| rdfs:label@sr = вд шефа наставе +| rdfs:domain = EducationalInstitution +| rdfs:range = Person +| rdfs:subPropertyOf = dul:coparticipatesWith +}}OntologyProperty:ActiveCases20212297588662022-06-20T13:49:01Z{{DatatypeProperty +| labels = +{{label|en|Active Cases}} +{{label|ur|فعال کیسز}} +{{comment|ur|ایک قرارداد میٹنگ یا کنونشن کے ذریعہ اختیار کردہ ایک رسمی بیان کی وضاحت کرتی ہے}} +| rdfs:comment@en = وبائی مرض میں فعال کیسوں کی تعداد +| rdfs:domain = Outbreak +| rdfs:range = xsd:integer +}}OntologyProperty:ActiveYears2027752589972022-06-21T10:13:28Z{{DatatypeProperty +| labels = + {{label|en|active years}} + {{label|fr|années d'activité}} + {{label|de|aktive Jahre}} + {{label|sr|активне године}} + {{label|ur|فعال سال}} +| rdfs:domain = Person +| rdfs:range = xsd:string +| comments = + {{comment|en|Also called "floruit". Use this if the active years are in one field that can't be split. Else use activeYearsStartYear and activeYearsEndYear}} + {{comment|fr|Appelé aussi "floruit". Utillisez ceci si les années d'activité sont dans un même domaine non fractionnable. Sinon utilisez activeYearsStartYear et activeYearsEndYear}} +| owl:equivalentProperty = gnd:periodOfActivity +}}OntologyProperty:ActiveYearsEndDate202502303542014-01-21T10:27:11Z{{DatatypeProperty +| labels = +{{label|en|active years end date}} +{{label|el|ενεργή ημερομηνία λήξης χρόνου}} +{{label|nl|actieve jaren einddatum}} +{{label|sr|датум завршетка активних година}} +| rdfs:range = xsd:date +}}OntologyProperty:ActiveYearsEndDateMgr2027659588682022-06-20T13:52:13Z{{DatatypeProperty +| labels = +{{label|en|active years end date manager}} +{{label|ur|فعال سال کی آخری تاریخ Mgr}} +| rdfs:domain = Person +| rdfs:range = xsd:string +}}OntologyProperty:ActiveYearsEndYear202503589992022-06-21T10:20:04Z{{DatatypeProperty +| labels = +{{label|en|active years end year}} +{{label|ur|فعال سال آخر سال}} +{{label|ja|引退年}} +{{label|el|ενεργά χρόνια τέλος του χρόνου}} +{{label|nl|actieve jaren eind jaar}} +{{label|sr|последња година активних година}} +| rdfs:domain = owl:Thing +| rdfs:range = xsd:gYear +}}OntologyProperty:ActiveYearsEndYearMgr2027660269192013-07-03T12:23:17Z{{DatatypeProperty +| labels = +{{label|en|active years end year manager}} +| rdfs:domain = Person +| rdfs:range = xsd:gYear +}}OntologyProperty:ActiveYearsStartDate202504588702022-06-20T13:55:02Z{{DatatypeProperty +| labels = +{{label|en|active years start date}} +{{label|ur|فعال سال کی شروعات کی تاریخ}} +{{label|el|ενεργά χρόνια ημερομηνία έναρξης}} +{{label|nl|actieve jaren startdatum}} +{{label|fr|date de début d'activité}} +{{label|sr|датум почетка активних година}} +| rdfs:range = xsd:date +}}OntologyProperty:ActiveYearsStartDateMgr2027657269162013-07-03T12:21:58Z{{DatatypeProperty +| labels = +{{label|en|active years start date manager}} +| rdfs:domain = Person +| rdfs:range = xsd:date +}}OntologyProperty:ActiveYearsStartYear202505303652014-01-21T10:35:43Z{{DatatypeProperty +| labels = +{{label|en|active years start year}} +{{label|el|ενεργός χρόνος έτος λειτουργίας}} +{{label|nl|actieve jaren start jaar}} +{{label|sr|почетна година активних година}} +| rdfs:domain = owl:Thing +| rdfs:range = xsd:gYear +}}OntologyProperty:ActiveYearsStartYearMgr2027658588722022-06-20T13:57:06Z{{DatatypeProperty +| labels = +{{label|en|active years start year manager}} +{{label|ur|فعال سال شروع سال Mgr}} +| rdfs:domain = Person +| rdfs:range = xsd:gYear +}}OntologyProperty:Activity2026815590072022-06-21T15:37:27Z{{ObjectProperty +| labels = + {{label|en|activity}} + {{label|fr|activité}} + {{label|el|δραστηριότητα}} + {{label|de|Aktivität}} +{{label|ur|سرگرمی}} + {{label|sr|активност}} +| rdfs:domain = Person +| owl:equivalentProperty = wikidata:P106 +}}OntologyProperty:Address202507536932020-09-04T15:15:42Z{{DatatypeProperty +| labels = +{{label|en|address}} +{{label|de|Adresse}} +{{label|fr|adresse}} +{{label|sr|адреса}} +{{label|ru|адрес}} +{{label|nl|adres}} +{{label|el|διεύθυνση}} +| rdfs:domain = Place +| rdfs:range = rdf:langString +| owl:equivalentProperty = schema:address, wikidata:P969, ceo:volledigAdres +|comments= +{{comment|en|Address of something as literal. Usually Building, but we also use it for the address of a Region's or Settlement's government}} +}}OntologyProperty:AddressInRoad2023267588742022-06-20T14:07:08Z +{{ObjectProperty +| rdfs:label@en = address in road +| rdfs:label@de = Adresse in Straße +| rdfs:label@el = διεύθυνση στον δρόμο +| rdfs:label@sr = Адреса на путу +| labels = +{{label|ur|سڑک میں واقع ہے}} +| rdfs:domain = Road +| rdfs:range = owl:Thing +{{comment|ur|ایک عمارت، تنظیم یا دوسری چیز جو سڑک میں واقع ہے}} +| rdfs:comment@en = A building, organisation or other thing that is located in the road. +| rdfs:comment@el = Ένα κτήριο, οργανισμός ή κάτι άλλο που βρίσκεται στον δρόμο. +| rdfs:subPropertyOf = dul:isLocationOf +}}OntologyProperty:AdjacentSettlement2026943590132022-06-21T16:48:41Z{{ObjectProperty +| labels = + {{label|en|adjacent settlement of a switzerland settlement}} + {{label|sr|Суседно насеље у Швајцарској}} + {{label|ur|ملحقہ بستی}} +| rdfs:domain = Settlement +| rdfs:range = Settlement +| rdfs:subPropertyOf = dul:nearTo +}}OntologyProperty:AdministrativeCenter2026847567112022-02-28T13:32:50Z{{ObjectProperty +| labels = + {{label|en|administrative center}} + {{label|fr|centre administratif}} + {{label|de|Verwaltungszentrum}} + {{label|sr|административни центар}} +| rdfs:domain = AdministrativeRegion +| rdfs:range = Place +| rdfs:subPropertyOf = dul:sameSettingAs +}}OntologyProperty:AdministrativeCollectivity202508588812022-06-20T14:22:20Z +{{ObjectProperty +| labels = + {{label|en|administrative collectivity}} +{{label|ur|انتظامی اجتماعیت}} + {{label|de|Verwaltungsgemeinschaft}} + {{label|fr|collectivité administrative}} + {{label|nl|administratieve gemeenschap}} + {{label|el|διοικητική συλλογικότητα}} + {{label|sr|административна заједница}} +| rdfs:domain = Settlement +| rdfs:range = PopulatedPlace +| rdfs:subPropertyOf = dul:coparticipatesWith +}}OntologyProperty:AdministrativeDistrict202509590152022-06-21T16:50:50Z + +{{ObjectProperty +| labels = + {{label|en|administrative district}} + {{label|de|Verwaltungsbezirk}} + {{label|nl|provincie}} +{{label|ur|انتظامی ضلع}} + {{label|el|δήμος}} + {{label|sr|управни округ}} +| rdfs:domain = Settlement +| rdfs:range = PopulatedPlace +| rdfs:subPropertyOf = http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#isPartOf, dul:isPartOf +}}OntologyProperty:AdministrativeHeadCity2028062306962014-01-22T10:36:49Z{{ObjectProperty +| labels = +{{label|en|head city}} +{{label|fr|ville dirigeante}} +{{label|es|ciudad a la cabeza}} +{{label|sr|административни центар (град)}} +| comments = +{{comment|en|city where stand the administrative power}} +{{comment|fr|ville où siège le pouvoir administratif}} +| rdfs:domain = PopulatedPlace +| rdfs:range = City +}}OntologyProperty:AdministrativeStatus2027225589132022-06-20T16:07:39Z{{DatatypeProperty +| labels = +{{label|en|administrative status}} +{{label|ur|انتظامی درجہ}} +{{label|de|administrativer Status}} +{{label|sr|административни статус}} +| rdfs:range = xsd:string +}}OntologyProperty:Administrator202510590172022-06-21T16:53:00Z{{ObjectProperty +| labels = + {{label|en|administrator}} + {{label|fr|administrateur}} + {{label|de|Verwalter}} + {{label|sr|управник}} +{{label|ur|منتظم}} + {{label|el|διαχειριστής}} +| rdfs:domain = Organisation +| rdfs:range = Person +}}OntologyProperty:AfdbId2023301459702015-03-16T13:31:56Z{{DatatypeProperty +| rdfs:label@en = afdb id +| rdfs:label@el = afdb id +| rdfs:label@pt = código no afdb +| rdfs:label@sr = AFDB ID +| rdfs:label@de = AFDB ID +| rdfs:domain = Film +| rdfs:range = xsd:string +}}OntologyProperty:Affair2027559589152022-06-20T16:10:43Z{{DatatypeProperty +| labels = +{{label|en|affair}} +{{label|ur|معاملہ}} +{{label|sr|афера}} +| rdfs:domain = Person +| rdfs:range = xsd:string +}}OntologyProperty:Affiliate2026821590192022-06-21T16:54:32Z{{DatatypeProperty +| labels = +{{label|en|affiliate}} +{{label|ur|الحاق}} +| rdfs:domain = FictionalCharacter +| rdfs:range = xsd:string +}}OntologyProperty:Affiliation202511537942020-10-26T23:29:49Z +{{ObjectProperty +| labels = + {{label|en|affiliation}} + {{label|el|ιστολόγιο}} + {{label|nl|lidmaatschap}} + {{label|sr|припадност}} +| rdfs:range = Organisation +| rdfs:subPropertyOf = dul:coparticipatesWith +| owl:equivalentProperty = gnd:affiliation +}}OntologyProperty:AfiAward202512589172022-06-20T16:19:28Z +{{ObjectProperty +| rdfs:label@en = AFI Award +| rdfs:label@el = βραβείο AFI +| rdfs:label@sr = AFI награда +| labels = + {{label|ur|اے ایف آئی انعام}} +| rdfs:domain = Artist +| rdfs:range = Award +| rdfs:subPropertyOf = dul:coparticipatesWith +}}OntologyProperty:Age2026153590212022-06-21T16:55:55Z{{DatatypeProperty +| labels = + {{label|en|age}} +{{label|ur|عمر}} + {{label|fr|age}} + {{label|nl|leeftijd}} + {{label|de|Alter}} + {{label|el|ηλικία}} + {{label|sr|старост}} +| rdfs:domain = Agent +| rdfs:range = xsd:integer +}}OntologyProperty:AgeRange202513487042015-08-10T10:26:36Z{{DatatypeProperty +| rdfs:label@en = age range +| rdfs:label@de = Altersgruppe +| rdfs:label@el = εύρος ηλικίας +| rdfs:label@sr = опсег година +| rdfs:comment@en = Age range of students admitted in a School, MilitaryUnit, etc +| rdfs:range = xsd:nonNegativeInteger +}}OntologyProperty:Agency2027542589232022-06-20T16:29:52Z{{ObjectProperty +| labels = +{{label|en|agency}} +{{label|ur|ایجنسی}} +{{label|de|Agentur}} +{{label|sr|делатност}} +| rdfs:domain = Person +}}OntologyProperty:AgencyStationCode2023247590232022-06-21T17:00:13Z{{DatatypeProperty +| labels = +{{label|en|agency station code}} +{{label|nl|stationscode}} +{{label|de|Stationsabkürzung}} +{{label|el|κωδικός πρακτορείου }} +{{label|sr|код станице }} +{{label|ur|ایجنسی اسٹیشن کوڈ}} +| rdfs:domain = Station +| rdfs:range = xsd:string +| rdfs:comment@en = Agency station code (used on tickets/reservations, etc.). +| rdfs:comment@de = Offizielle Stationsabkürzung (beispielsweise benutzt auf Fahrkarten). Für Deutschland siehe: http://en.wikipedia.org/wiki/List_of_Deutsche_Bahn_station_abbreviations +| rdfs:comment@el = Κωδικός πρακτορείου (χρησιμοποιείται σε εισιτήρια/κρατήσεις,κτλ.). +|comments={{comment|ur|ایجنسی اسٹیشن کوڈ (ٹکٹ/مخصوص کرنے کا عمل وغیرہ پر استعمال کیا جاتا ہے)۔}} +}}OntologyProperty:Agglomeration2027933304062014-01-21T11:20:57Z{{ObjectProperty +| labels = +{{label|en|agglomeration}} +{{label|sr|агломерација}} +| rdfs:domain = PopulatedPlace +| rdfs:range = Agglomeration +}}OntologyProperty:AgglomerationArea2026930589242022-06-20T16:42:01Z{{ObjectProperty +| labels = +{{label|en|agglomeration area}} +{{label|ur|جمع کا علاقہ}} +{{label|de|Ballungsraum}} +{{label|sr|област агломерације}} +| rdfs:domain = PopulatedPlace +| rdfs:range = Area +}}OntologyProperty:AgglomerationDemographics2027914590252022-06-21T17:03:37Z{{ObjectProperty +| labels = +{{label|en|agglomeration demographics}} +{{label|sr|демографија агломерације}} +{{label|ur|جمع آبادیات}} +| rdfs:domain = PopulatedPlace +| rdfs:range = Demographics +}}OntologyProperty:AgglomerationPopulation2026783306802014-01-22T10:00:41Z{{ObjectProperty +| labels = +{{label|en|agglomeration population}} +{{label|sr|популација агломерације}} +| rdfs:domain = Settlement +| rdfs:range = Population +}}OntologyProperty:AgglomerationPopulationTotal2027915589292022-06-20T17:00:25Z{{DatatypeProperty +| labels = +{{label|en|agglomeration population total}} +{{label|ur|مجموعی آبادی کل}} +{{label|sr|укупна популација агломерације}} +| rdfs:range = xsd:nonNegativeInteger +}}OntologyProperty:AgglomerationPopulationYear2026784590272022-06-21T17:05:11Z{{DatatypeProperty +| labels = +{{label|en|agglomerationPopulationYear}} +{{label|sr|година популације агломерације}} +{{label|ur|مجموعی آبادی کا سال}} +| rdfs:domain = Settlement +| rdfs:range = xsd:string +}}OntologyProperty:Aggregation20210305567132022-02-28T13:35:52Z{{DatatypeProperty +| rdfs:label@en = Aggregation +| rdfs:label@fr = Agrégat +| rdfs:label@nl = Aggregatie +| rdfs:domain = ChemicalSubstance +| rdfs:range = xsd:string +}}OntologyProperty:AirDate202530589382022-06-20T17:20:17Z{{DatatypeProperty +| rdfs:label@en = airdate +| rdfs:label@el = ημερομηνία αέρα +| rdfs:label@sr = датум емитовања +| labels = + {{label|ur|رہائی کی تاریخ}} +| rdfs:domain = RadioStation +| rdfs:range = xsd:date +}}OntologyProperty:AircraftAttack202514357932014-07-08T12:37:37Z +{{ObjectProperty +| rdfs:label@en = aircraft attack +| rdfs:label@de = Flugzeugangriff +| rdfs:label@sr = напад из ваздуха +| rdfs:label@el = επίθεση αεροσκάφους +| rdfs:domain = MilitaryUnit +| rdfs:range = MeanOfTransportation +| rdfs:subPropertyOf = dul:coparticipatesWith +}}OntologyProperty:AircraftBomber202515357942014-07-08T12:37:46Z +{{ObjectProperty +| rdfs:label@en = aircraft bomber +| rdfs:label@sr = авион бомбардер +| rdfs:label@el = βομβαρδιστικό αεροσκάφος +| rdfs:domain = MilitaryUnit +| rdfs:range = MeanOfTransportation +| rdfs:subPropertyOf = dul:coparticipatesWith +}}OntologyProperty:AircraftElectronic202516357952014-07-08T12:37:54Z +{{ObjectProperty +| rdfs:label@en = aircraft electronic +| rdfs:label@el = ηλεκτρονικό αεροσκάφος +| rdfs:domain = MilitaryUnit +| rdfs:range = MeanOfTransportation +| rdfs:subPropertyOf = dul:coparticipatesWith +}}OntologyProperty:AircraftFighter202517357962014-07-08T12:38:03Z +{{ObjectProperty +| rdfs:label@en = aircraft fighter +| rdfs:label@sr = борбени авион +| rdfs:label@el = μαχητικό αεροσκάφος +| rdfs:domain = MilitaryUnit +| rdfs:range = MeanOfTransportation +| rdfs:subPropertyOf = dul:coparticipatesWith +}}OntologyProperty:AircraftHelicopter202518357972014-07-08T12:38:11Z +{{ObjectProperty +| labels = + {{label|en|aircraft helicopter}} + {{label|de|Hubschrauber}} + {{label|sr|хеликоптер}} + {{label|el|ελικοφόρο αεροσκάφος}} +| rdfs:domain = MilitaryUnit +| rdfs:range = MeanOfTransportation +| rdfs:subPropertyOf = dul:coparticipatesWith +}}OntologyProperty:AircraftHelicopterAttack202519357982014-07-08T12:38:18Z +{{ObjectProperty +| labels = + {{label|en|aircraft helicopter attack}} + {{label|de|Hubschrauberangriff}} + {{label|el|επίθεση ελικοφόρων αεροσκαφών}} + {{label|sr|ваздушни напад хеликоптером}} +| rdfs:domain = MilitaryUnit +| rdfs:range = MeanOfTransportation +| rdfs:subPropertyOf = dul:coparticipatesWith +}}OntologyProperty:AircraftHelicopterCargo202520357992014-07-08T12:38:26Z +{{ObjectProperty +| labels = + {{label|en|aircraft helicopter cargo}} + {{label|el|φορτίο ελικοφόρου αεροσκάφους}} + {{label|sr|теретни хеликоптер}} +| rdfs:domain = MilitaryUnit +| rdfs:range = MeanOfTransportation +| rdfs:subPropertyOf = dul:coparticipatesWith +}}OntologyProperty:AircraftHelicopterMultirole202521358002014-07-08T12:38:34Z +{{ObjectProperty +| labels = + {{label|en|aircraft helicopter multirole}} + {{label|de|Mehrzweck-Hubschrauber}} + {{label|el|ελικοφόρο αεροσκάφος πολλαπλών ρόλων}} + {{label|sr|вишенаменски хеликоптер}} +| rdfs:domain = MilitaryUnit +| rdfs:range = MeanOfTransportation +| rdfs:subPropertyOf = dul:coparticipatesWith +}}OntologyProperty:AircraftHelicopterObservation202522358012014-07-08T12:38:43Z +{{ObjectProperty +| labels = + {{label|en|aircraft helicopter observation}} + {{label|el|παρατήρηση ελικοφόρου αεροσκάφους}} + {{label|sr|осматрање хеликоптером}} +| rdfs:domain = MilitaryUnit +| rdfs:range = MeanOfTransportation +| rdfs:subPropertyOf = dul:coparticipatesWith +}}OntologyProperty:AircraftHelicopterTransport202523358022014-07-08T12:38:51Z +{{ObjectProperty +| labels = + {{label|en|aircraft helicopter transport}} + {{label|el|μεταφορές που πραγματοποιούνται με ελικοφόρο αεροσκάφος}} + {{label|sr|транспортни хеликоптер}} +| rdfs:domain = MilitaryUnit +| rdfs:range = MeanOfTransportation +| rdfs:subPropertyOf = dul:coparticipatesWith +}}OntologyProperty:AircraftHelicopterUtility202524358032014-07-08T12:39:12Z +{{ObjectProperty +| rdfs:label@en = aircraft helicopter utility +| rdfs:domain = MilitaryUnit +| rdfs:range = MeanOfTransportation +| rdfs:subPropertyOf = dul:coparticipatesWith +}}OntologyProperty:AircraftInterceptor202525358042014-07-08T12:39:20Z +{{ObjectProperty +| labels = + {{label|en|aircraft interceptor}} + {{label|el|αναχαίτιση αεροσκάφους}} + {{label|sr|авион пресретач}} +| rdfs:domain = MilitaryUnit +| rdfs:range = MeanOfTransportation +| rdfs:subPropertyOf = dul:coparticipatesWith +}}OntologyProperty:AircraftPatrol202526358052014-07-08T12:39:28Z +{{ObjectProperty +| labels = + {{label|en|aircraft patrol}} + {{label|el|περιπολία αεροσκάφους}} +| rdfs:domain = MilitaryUnit +| rdfs:range = MeanOfTransportation +| rdfs:subPropertyOf = dul:coparticipatesWith +}}OntologyProperty:AircraftRecon202527358062014-07-08T12:39:37Z +{{ObjectProperty +| rdfs:label@en = aircraft recon +| rdfs:domain = MilitaryUnit +| rdfs:range = MeanOfTransportation +| rdfs:subPropertyOf = dul:coparticipatesWith +}}OntologyProperty:AircraftTrainer202528358072014-07-08T12:39:44Z +{{ObjectProperty +| rdfs:label@en = aircraft trainer +| rdfs:domain = MilitaryUnit +| rdfs:range = MeanOfTransportation +| rdfs:subPropertyOf = dul:coparticipatesWith +}}OntologyProperty:AircraftTransport202529358082014-07-08T12:39:53Z +{{ObjectProperty +| labels = + {{label|en|aircraft transport}} + {{label|el|αερομεταφορές}} +| rdfs:domain = MilitaryUnit +| rdfs:range = MeanOfTransportation +| rdfs:subPropertyOf = dul:coparticipatesWith +}}OntologyProperty:AircraftType2024793333932014-04-03T14:02:07Z{{DatatypeProperty +| labels = +{{label|en|aircraft type}} +{{label|de|Flugzeugtyp}} +{{label|el|τύπος αεροσκάφους}} +{{label|sr|тип летелице}} +{{label|es|tipo de avión}} +| rdfs:domain = Aircraft +| rdfs:range = xsd:string +}}OntologyProperty:AircraftUser2024796358092014-07-08T12:40:12Z +{{ObjectProperty +| labels = + {{label|en|aircraft user}} + {{label|de|Flugzeugnutzer}} + {{label|el|χρήστης αεροσκάφους}} + {{label|es|usuario del avión}} +| rdfs:domain = Aircraft +| rdfs:range = Organisation +| rdfs:subPropertyOf = dul:coparticipatesWith +}}OntologyProperty:AirportUsing2022161333952014-04-03T14:02:15Z{{DatatypeProperty +| labels = +{{label|en|Different usage of an airport}} +{{label|de|Unterschiedliche Nutzung eines Flughafens}} +{{label|el|οι χρήσεις ενός αεροδρομίου}} +| rdfs:domain = Airport +| rdfs:range = xsd:string +}}OntologyProperty:AitaCode2027228528682018-02-13T10:30:22Z{{DatatypeProperty +| labels = +{{label|en|aita code}} +{{label|sr|AITA код}} +| rdfs:range = xsd:string +| rdfs:subPropertyOf = code +}}OntologyProperty:Albedo2024358304512014-01-21T13:03:18Z{{DatatypeProperty + |rdfs:label@en=albedo + |rdfs:label@el=albedo + |rdfs:label@sr=албедо + |rdfs:comment@en=reflection coefficient + |rdfs:comment@el=συντελεστής ανάκλασης + |rdfs:domain=Planet + |rdfs:range=xsd:double +}}OntologyProperty:Album202531569912022-03-09T11:59:13Z{{ObjectProperty +| labels = + {{label|en|album}} + {{label|fr|album}} + {{label|de|Album}} + {{label|nl|album}} + {{label|sr|албум}} + {{label|el|από το άλμπουμ}} +| rdfs:range = Album +| rdfs:subPropertyOf = dul:coparticipatesWith +}}OntologyProperty:AlbumRuntime2027864528322018-02-08T20:14:33Z{{Merge|duration}} + +{{DatatypeProperty +| labels = +{{label|en|album duration}} +{{label|de|Album Länge}} +{{label|sr|трајање албума}} +| rdfs:domain = Album +| rdfs:range = Time +| owl:equivalentProperty = +| rdfs:subPropertyOf = runtime +}}OntologyProperty:Alias2022354537102020-09-04T15:41:18Z{{DatatypeProperty +| labels = +{{label|en|alias}} +{{label|el|ψευδώνυμο}} +{{label|nl|alias}} +{{label|sr|алијас}} +{{label|ru|псевдоним}} +{{label|fr|alias}} +{{label|ja|別名}} +| rdfs:range = rdf:langString +| rdfs:subPropertyOf +| owl:equivalentProperty = wikidata:P742, schema:alternateName +}}OntologyProperty:AllcinemaId2025882306542014-01-22T08:51:32Z{{DatatypeProperty +| rdfs:label@ja = allcinema id +| rdfs:label@en = allcinema id +| rdfs:label@el = allcinema id +| rdfs:label@sr = allcinema id +| rdfs:domain = Film +| rdfs:range = xsd:string +}}OntologyProperty:Allegiance202532304712014-01-21T13:29:06Z{{DatatypeProperty +| rdfs:label@en = allegiance +| rdfs:label@el = υποταγή +| rdfs:label@sr = верност +| rdfs:domain = Person +| rdfs:comment@en = 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. +| rdfs:range = xsd:string +}}OntologyProperty:Alliance202533569922022-03-09T12:01:52Z{{ObjectProperty +| labels = + {{label|en|alliance}} + {{label|fr|alliance}} + {{label|de|Allianz}} + {{label|el|συμμαχία}} + {{label|sr|савез}} +| rdfs:domain = Airline +| rdfs:subPropertyOf = dul:isMemberOf +}}OntologyProperty:AlmaMater202534568602022-03-01T11:20:06Z{{ObjectProperty +| labels = + {{label|en|alma mater}} + {{label|fr|école}} + {{label|el|σπουδές}} + {{label|sr|студије}} + {{label|ru|альма-матер}} +| rdfs:domain = Person +| comments = + {{comment|en|schools that they attended}} + {{comment|fr|écoles fréquentées}} +| rdfs:range = EducationalInstitution +| rdfs:subPropertyOf = dul:coparticipatesWith +| owl:equivalentProperty = wikidata:P69 +}}OntologyProperty:Alongside2022325358132014-07-08T12:40:44Z +{{ObjectProperty +| rdfs:label@en = alongside +| rdfs:label@el = δίπλα +| rdfs:label@sr = уз +| rdfs:range = Person +| rdfs:subPropertyOf = dul:sameSettingAs +}}OntologyProperty:AlpsGroup2025696358142014-07-08T12:40:53Z +{{ObjectProperty +| rdfs:domain = Mountain +| rdfs:range = MountainRange +| rdfs:label@en = Alps group +| rdfs:label@el = ομάδα των άλπεων +| rdfs:label@it = gruppo alpino +| rdfs:label@sr = алпска група +| rdfs:comment@en = the Alps group to which the mountain belongs, according to the SOIUSA classification<ref name="alpsMainPart">http://en.wikipedia.org/wiki/SOIUSA</ref> +| rdfs:subPropertyOf = dul:hasLocation +}} +==References== +<references/>OntologyProperty:AlpsMainPart2025680358152014-07-08T12:41:01Z +{{ObjectProperty +| rdfs:domain = Mountain +| rdfs:range = MountainRange +| rdfs:label@en = Alps main part +| rdfs:label@el = κύριο μέρος των άλπεων +| rdfs:label@it = grande parte alpina +| rdfs:label@sr = главни део Алпа +| rdfs:comment@en = the Alps main part to which the mountain belongs, according to the SOIUSA classification<ref name="alpsMainPart">http://en.wikipedia.org/wiki/SOIUSA</ref> +| rdfs:subPropertyOf = dul:hasLocation +}} +==References== +<references/>OntologyProperty:AlpsMajorSector2025692358162014-07-08T12:41:08Z +{{ObjectProperty +| rdfs:domain = Mountain +| rdfs:range = MountainRange +| rdfs:label@en = Alps major sector +| rdfs:label@sr = главни Алпски сектор +| rdfs:label@el = σημαντικότερος τομέας των άλπεων +| rdfs:label@it = grande settore alpino +| rdfs:comment@en = the Alps major sector to which the mountain belongs, according to the SOIUSA classification<ref name="alpsMainPart">http://en.wikipedia.org/wiki/SOIUSA</ref> +| rdfs:subPropertyOf = dul:hasLocation +}} +==References== +<references/>OntologyProperty:AlpsSection2025693358172014-07-08T12:41:16Z +{{ObjectProperty +| rdfs:domain = Mountain +| rdfs:range = MountainRange +| rdfs:label@en = Alps section +| rdfs:label@el = τμήμα των άλπεων +| rdfs:label@sr = Алпска секција +| rdfs:label@it = sezione alpina +| rdfs:comment@en = the Alps section to which the mountain belongs, according to the SOIUSA classification<ref name="alpsMainPart">http://en.wikipedia.org/wiki/SOIUSA</ref> +| rdfs:subPropertyOf = dul:hasLocation +}} +==References== +<references/>OntologyProperty:AlpsSoiusaCode2025698304882014-01-21T13:55:26Z{{DatatypeProperty +| rdfs:domain = Mountain +| rdfs:range = xsd:string +| rdfs:label@en = Alps SOIUSA code +| rdfs:label@el = κώδικας SOIUSA των άλπεων +| rdfs:label@it = codice SOIUSA +| rdfs:label@sr = алпски SOIUSA код +| rdfs:comment@en = the Alps SOIUSA code corresponding to the mountain, according to the SOIUSA classification<ref name="alpsMainPart">http://en.wikipedia.org/wiki/SOIUSA</ref> +}} +==References== +<references/>OntologyProperty:AlpsSubgroup2025697358182014-07-08T12:41:38Z +{{ObjectProperty +| rdfs:domain = Mountain +| rdfs:range = MountainRange +| rdfs:label@en = Alps subgroup +| rdfs:label@el = υποομάδα των άλπεων +| rdfs:label@it = sottogruppo alpino +| rdfs:label@sr = Алпска подгрупа +| rdfs:comment@en = the Alps subgroup to which the mountain belongs, according to the SOIUSA classification<ref name="alpsMainPart">http://en.wikipedia.org/wiki/SOIUSA</ref> +| rdfs:subPropertyOf = dul:hasLocation +}} +==References== +<references/>OntologyProperty:AlpsSubsection2025694358192014-07-08T12:41:47Z +{{ObjectProperty +| rdfs:domain = Mountain +| rdfs:range = MountainRange +| rdfs:label@en = Alps subsection +| rdfs:label@el = Alps υποδιαίρεση των άλπεων +| rdfs:label@it = sottosezione alpina +| rdfs:label@sr = Алпска подсекција +| rdfs:comment@en = the Alps subsection to which the mountain belongs, according to the SOIUSA classification<ref name="alpsMainPart">http://en.wikipedia.org/wiki/SOIUSA</ref> +| rdfs:subPropertyOf = dul:hasLocation +}} +==References== +<references/>OntologyProperty:AlpsSupergroup2025695358202014-07-08T12:41:55Z +{{ObjectProperty +| rdfs:domain = Mountain +| rdfs:range = MountainRange +| rdfs:label@en = Alps supergroup +| rdfs:label@el = Alps υπερομάδα +| rdfs:label@it = supergruppo alpino +| rdfs:label@sr = Алпска супергрупа +| rdfs:comment@en = the Alps supergroup to which the mountain belongs, according to the SOIUSA classification<ref name="alpsMainPart">http://en.wikipedia.org/wiki/SOIUSA</ref> +| rdfs:subPropertyOf = dul:hasLocation +}} +==References== +<references/>OntologyProperty:AlternativeName2028167573182022-03-31T08:59:29Z{{DatatypeProperty +| labels = + {{label|en|alternative name}} + {{label|fr|autre nom}} + {{label|de|alternativer Name}} + {{label|nl|naamsvariant}} + {{label|sr|алтернативни назив}} +| rdfs:range = rdf:langString +| comments = + {{comment|en|Alternative naming of anything not being a Person (for which case foaf:nick should be used).}} + {{comment|fr|Autre manière de nommer quelque chose qui n'est pas une personne (pour cette dernière, utilisez foaf:nick).}} +| owl:equivalentProperty=gn:shortName, gnd:variantNameForThePlaceOrGeographicName +}}OntologyProperty:AlternativeText20213835572292022-03-24T21:16:44Z{{DatatypeProperty +| labels = + {{label|en|alternative text}} + {{label|fr|texte alternatif}} +|comments = + {{comment|en|Replacement text if the image cannot be displayed; used for screen readers; describes the image (max 120 chars recommended).}} + {{comment|fr|Alternative textuelle de l'image ; remplace l'image pour les lecteurs d'écrans ; description succincte de l'image (un maximum de 120 caractères est recommandé).}} +| rdfs:domain = owl:Thing +| rdfs:range = xsd:string +}}OntologyProperty:AlternativeTitle2026795573192022-03-31T09:01:37Z{{ DatatypeProperty +| labels = + {{label|en|alternative title}} + {{label|fr|autre titre}} + {{label|de|alternativer Titel}} + {{label|nl|alternatieve titel}} + {{label|sr|алтернативни наслов}} +| comments = + {{comment|en|The alternative title attributed to a work}} + {{comment|fr|Autre titre attribué à une oeuvre}} +| rdfs:domain = Work +| rdfs:range = rdf:langString +| owl:equivalentProperty = schema:alternativeTitle +}}OntologyProperty:Altitude2027921537752020-10-19T17:21:23Z{{ObjectProperty +| labels = +{{label|en|altitude}} +{{label|de|Höhe}} +{{label|fr|altitude}} +{{label|es|altitud}} +{{label|nl|hoogte}} +{{label|el|υψόμετρο}} +{{label|sr|апсолутна висина}} +{{label|ja|標高}} +| rdfs:domain = Place +| rdfs:range = Altitude +}}OntologyProperty:Alumni202535573202022-03-31T09:05:41Z{{ObjectProperty +| labels = + {{label|en|alumni}} + {{label|fr|anciens élèves}} + {{label|de|Alumni}} + {{label|el|απόφοιτοι πανεπιστημίου}} + {{label|sr|алумни}} +| rdfs:domain = EducationalInstitution +| rdfs:range = Person +| rdfs:subPropertyOf = dul:coparticipatesWith +}}OntologyProperty:AmateurDefeat2027594305082014-01-21T14:13:03Z{{DatatypeProperty +| labels = +{{label|en|amateur defeat}} +{{label|sr|аматерских пораза}} +| rdfs:domain = Boxer +| rdfs:range = xsd:nonNegativeInteger +}}OntologyProperty:AmateurFight2027591305102014-01-21T14:14:06Z{{DatatypeProperty +| labels = +{{label|en|amateur fight}} +{{label|sr|аматерских борби}} +| rdfs:domain = Boxer +| rdfs:range = xsd:nonNegativeInteger +}}OntologyProperty:AmateurKo2027593305162014-01-21T14:27:24Z{{DatatypeProperty +| labels = +{{label|en|amateur ko}} +{{label|sr|број аматерских нокаута}} +| rdfs:domain = Boxer +| rdfs:range = xsd:nonNegativeInteger +}}OntologyProperty:AmateurNoContest2027596268242013-07-02T10:58:22Z{{DatatypeProperty +| labels = +{{label|en|amateur no contest}} +| rdfs:domain = Boxer +| rdfs:range = xsd:nonNegativeInteger +}}OntologyProperty:AmateurTeam2027623305232014-01-21T14:39:40Z{{ObjectProperty +| labels = +{{label|en|amateur team}} +{{label|sr|аматерски тим}} +| rdfs:range = SportsTeam +| rdfs:domain = Athlete, CareerStation +}}OntologyProperty:AmateurTie2027595268232013-07-02T10:58:02Z{{DatatypeProperty +| labels = +{{label|en|amateur tie}} +| rdfs:domain = Boxer +| rdfs:range = xsd:nonNegativeInteger +}}OntologyProperty:AmateurTitle2027597472742015-03-29T16:54:30Z{{DatatypeProperty +| labels = +{{label|en|amateur title}} +{{label|de|Amateurtitel}} +{{label|sr|аматерска титула}} +| rdfs:domain = Boxer +| rdfs:range = xsd:string +}}OntologyProperty:AmateurVictory2027592306382014-01-22T08:33:37Z{{DatatypeProperty +| labels = +{{label|en|amateur victory}} +{{label|sr|aматерских победа}} +| rdfs:domain = Boxer +| rdfs:range = xsd:nonNegativeInteger +}}OntologyProperty:AmateurYear2027626306292014-01-22T08:24:22Z{{DatatypeProperty +| labels = +{{label|en|amateur year}} +| rdfs:range = xsd:string +| rdfs:domain = Athlete, CareerStation +}}OntologyProperty:AmericanComedyAward202536358222014-07-08T12:42:11Z +{{ObjectProperty +| labels = + {{label|en|American Comedy Award}} + {{label|el|αμερικάνικο βραβείο κωμωδίας}} + {{label|sr|америчка награда за комедију}} +| rdfs:domain = Comedian +| rdfs:range = Award +| rdfs:subPropertyOf = dul:coparticipatesWith +}}OntologyProperty:Amgid202537475012015-04-02T11:02:15Z{{DatatypeProperty +| rdfs:label@en = amgId +| rdfs:label@sr = AMG ID +| rdfs:domain = Film +| rdfs:range = xsd:string +| owl:equivalentProperty = wikidata:P1562 +}}OntologyProperty:AmsterdamCode2028140305442014-01-21T15:01:20Z{{DatatypeProperty +| labels = +{{label|en|Amsterdam Code}} +{{label|sr|Амстердам код}} +{{label|nl|Amsterdamse code}} +| rdfs:domain = Municipality +| rdfs:range = xsd:string +}}OntologyProperty:AnalogChannel2023053334052014-04-03T14:02:54Z{{DatatypeProperty +| labels = +{{label|en|analog channel}} +{{label|de|Analogkanal}} +{{label|el|αναλογικό κανάλι}} +{{label|sr|аналогни канал}} +| rdfs:domain = Broadcaster +| rdfs:range = xsd:string +}}OntologyProperty:Animal202538358232014-07-08T12:42:20Z +{{ObjectProperty +| labels = + {{label|en|animal}} + {{label|de|Tier}} + {{label|el|ζώο}} + {{label|fr|animal}} + {{label|nl|beest}} + {{label|ja|動物}} + {{label|sr|животиња}} +| rdfs:range = Animal +| rdfs:subPropertyOf = dul:isLocationOf +}}OntologyProperty:Animator2026104368022014-07-12T21:21:15Z{{ObjectProperty +| labels = + {{label|en|animator}} + {{label|el|ανιμέιτορ}} + {{label|sr|аниматор}} +| rdfs:domain = Cartoon +| rdfs:range = Agent +| rdfs:subPropertyOf = dul:coparticipatesWith +}}OntologyProperty:Anniversary202539567552022-02-28T17:10:02Z{{DatatypeProperty +| labels = + {{label|en|anniversary}} + {{label|fr|anniversaire}} + {{label|de|Jubiläum}} + {{label|el|επέτειος}} + {{label|sr|годишњица}} +| rdfs:domain = MilitaryUnit +| rdfs:range = xsd:date +}}OntologyProperty:AnnouncedFrom2028021281752013-09-03T17:36:59Z{{ObjectProperty +| rdfs:label@en = announcedFrom +| rdfs:domain = Person +| rdfs:range = Place +}}OntologyProperty:AnnualTemperature202540573072022-03-30T14:53:58Z{{DatatypeProperty +| labels = + {{label|en|annual temperature}} + {{label|fr|température annuelle}} + {{label|de|Jahrestemperatur}} + {{label|el|ετήσια θερμοκρασία}} + {{label|nl|jaartemperatuur}} + {{label|sr|годишња температура}} +| rdfs:domain = Place +| rdfs:range = Temperature +}}OntologyProperty:Anthem202541573082022-03-30T14:57:12Z{{ObjectProperty +| labels = + {{label|en|anthem}} + {{label|fr|hymne}} + {{label|de|Hymne}} + {{label|nl|volkslied}} + {{label|el|ύμνος}} + {{label|pt|hino}} + {{label|sr|химна}} + {{label|ru|гимн}} +| comments = + {{comment|en|Official song (anthem) of a PopulatedPlace, SportsTeam, School or other}} + {{comment|fr|Chant officiel (hymne) d'un lieu habité, d'une équipe sportive, d'une école ou autre}} +| rdfs:range = Work +| rdfs:subPropertyOf = dul:coparticipatesWith +| owl:equivalentProperty = wikidata:P85 +}}OntologyProperty:AoCloassification20211878522152017-10-07T15:56:03Z{{DatatypeProperty +| labels = +{{label|en|AO}} +{{label|nl|AO}} +{{label|de|AO}} +{{label|fr|AO}} +| rdfs:domain = Disease +| rdfs:range = xsd:string +}}OntologyProperty:ApcPresident2026850358262014-07-08T12:42:50Z +{{ObjectProperty +| labels = + {{label|en|apc president}} +| rdfs:range = Person +| rdfs:subPropertyOf = dul:sameSettingAs +}}OntologyProperty:Apoapsis202542353352014-06-17T12:45:02Z{{DatatypeProperty +| labels = +{{label|en|apoapsis}} +{{label|de|Apoapsisdistanz}} +{{label|el|απόαψης}} +{{label|sr|апоапсис}} +| rdfs:domain = CelestialBody +| rdfs:range = Length +}}OntologyProperty:Apofocus20211492499182015-12-29T11:02:34Z{{DatatypeProperty +| labels = +{{label|en|apofocus}} +{{label|nl|apofocus}} +| rdfs:domain = CelestialBody +| rdfs:range = xsd:string +}}OntologyProperty:ApparentMagnitude2024356368152014-07-15T06:46:35Z{{DatatypeProperty +| labels = + {{label|en|apparent magnitude}} + {{label|de|scheinbare Helligkeit}} + {{label|el|φαινόμενο μέγεθος}} + {{label|sr|привидна звездана величина}} + {{label|ru|видимая звёздная величина}} +|rdfs:domain=Planet +|rdfs:range=xsd:double +|owl:equivalentProperty = wikidata:P1215 +}}OntologyProperty:Appearance20212043527992018-02-07T19:08:27Z{{DatatypeProperty +| labels = +{{label|en|appearance}} +{{label|de|Erscheinungsbild}} +| rdfs:range = xsd:string +}}OntologyProperty:AppearancesInLeague202543305662014-01-21T15:28:38Z{{DatatypeProperty +| labels = +{{label|en|appearances in league}} +{{label|el|εμφανίσεις στο πρωτάθλημα}} +{{label|sr|број наступа у лиги}} +| rdfs:domain = SoccerPlayer +| rdfs:range = xsd:nonNegativeInteger +}}OntologyProperty:AppearancesInNationalTeam202544305672014-01-21T15:29:36Z{{DatatypeProperty +| labels = +{{label|en|appearances in national team}} +{{label|el|εμφανίσεις στην εθνική ομάδα}} +{{label|sr|број наступа у националном тиму}} +| rdfs:domain = SoccerPlayer +| rdfs:range = xsd:nonNegativeInteger +}}OntologyProperty:Appointer2022348358272014-07-08T12:42:59Z +{{ObjectProperty +| rdfs:label@en = appointer +| rdfs:range = Person +| rdfs:subPropertyOf = dul:sameSettingAs +}}OntologyProperty:Apprehended20211900522812017-10-08T18:08:31Z{{DatatypeProperty +| rdfs:label@en = apprehended +| rdfs:label@de = gefasst +| rdfs:domain = Criminal +| rdfs:range = xsd:date +| rdfs:comment = The date a criminal was apprehended. +}}OntologyProperty:Approach2027775590102022-06-21T16:37:43Z{{ObjectProperty +| labels = + {{label|en|approach}} + {{label|ur|نقطہ نظر}} + {{label|fr|approche}} +| rdfs:domain = Person +}}OntologyProperty:ApprovedByLowerParliament20211378492432015-10-16T10:55:45Z{{DatatypeProperty +| labels = +{{label|en|date of approval by lower parliament}} +{{label|nl|datum aangenomen door Tweede Kamer, Lagerhuis, Bondsdag enz.}} +| rdfs:domain = Law +| rdfs:range = xsd:date +| rdfs:comment@en = Date of approval by lower parliament (House of Commons, Chambre des Députés, Bundestag, Tweede Kamer etc.). +}}OntologyProperty:ApprovedByUpperParliament20211379492442015-10-16T10:57:33Z{{DatatypeProperty +| labels = +{{label|en|date of approval by upper parliament}} +{{label|nl|datum aangenomen door Eerste Kamer, Hogerhuis, Senaat enz.}} +| rdfs:domain = Law +| rdfs:range = xsd:date +| rdfs:comment@en = Date of approval by upper parliament (House of Lords, Sénat, Eerste Kamer etc.). +}}OntologyProperty:ApproximateCalories2023933334092014-04-03T14:03:28Z{{DatatypeProperty +| labels = +{{label|en|approximate calories}} +{{label|de|ungefähre Kalorien}} +{{label|el|κατά προσέγγιση θερμίδες}} +{{label|sr|приближно калорија}} +| rdfs:domain = Food +| rdfs:range = Energy +| comments = +{{comment|en|Approximate calories per serving.}} +{{comment|el|Kατά προσέγγιση θερμίδες ανά μερίδα.}} +}}OntologyProperty:Apskritis2027251305702014-01-21T15:43:20Z{{DatatypeProperty +| labels = +{{label|en|apskritis}} +{{label|sr|литвански округ}} +| rdfs:domain = PopulatedPlace +| rdfs:range = xsd:string +}}OntologyProperty:Archipelago202545491962015-10-14T12:31:34Z{{ObjectProperty +| labels = + {{label|en|archipelago}} + {{label|de|Archipel}} + {{label|el|αρχιπέλαγος}} + {{label|nl|archipel}} + {{label|sr|архипелаг}} +| rdfs:domain = Island +| rdfs:range = +| rdfs:subPropertyOf = dul:isPartOf +}}OntologyProperty:Architect202546473782015-03-31T17:09:12Z{{ObjectProperty +| labels = + {{label|en|architect}} + {{label|de|Architekt}} + {{label|el|αρχιτέκτονας}} + {{label|fr|architecte}} + {{label|ga|ailtire}} + {{label|it|architetto}} + {{label|nl|architect}} + {{label|pl|architekt}} + {{label|ru|архитектор}} + {{label|sr|архитекта}} +| rdfs:domain = ArchitecturalStructure +| rdfs:range = Architect +| rdfs:subPropertyOf = dul:coparticipatesWith +| owl:equivalentProperty = wikidata:P84 +}}OntologyProperty:ArchitectualBureau202547590742022-06-21T18:50:36Z +{{ObjectProperty +| rdfs:label@en = architectual bureau +| rdfs:label@de = Architekturbüro +| rdfs:label@el = αρχιτεκτονική κατασκευή +| rdfs:domain = ArchitecturalStructure +|labels={{label|ur|عمارتی دفتر}} +| rdfs:range = Company +| rdfs:subPropertyOf = dul:coparticipatesWith +}}OntologyProperty:ArchitecturalMovement2027539491522015-10-13T10:08:55Z{{DatatypeProperty +| labels = +{{label|en|architectural movement}} +{{label|de|Architekturbewegung}} +{{label|sr|архитектонски покрет}} +| rdfs:domain = Architect +| rdfs:range = xsd:string +}}OntologyProperty:ArchitecturalStyle202548368172014-07-15T06:56:03Z{{ObjectProperty +| labels = + {{label|en|architectural style}} + {{label|el|αρχιτεκτονικό στυλ}} + {{label|nl|bouwstijl}} + {{label|sr|архитектонски стил}} + {{label|fr|style architectural}} + {{label|ru|архитектурный стиль}} +| rdfs:domain = ArchitecturalStructure +| rdfs:subPropertyOf = dul:isDescribedBy +| owl:equivalentProperty = wikidata:P149 +}}OntologyProperty:Area2027943590722022-06-21T18:48:06Z{{DatatypeProperty +| labels = +{{label|en|area}} +{{label|nl|oppervlakte}} +{{label|pt|área}} +{{label|de|Fläche}} +{{label|fr|superficie}} +{{label|el|έκταση}} +{{label|sr|област}} +{{label|ur|رقبہ}} +| rdfs:range = Area +| comments = +{{comment|en|The area of the thing in square meters.}} +}}OntologyProperty:AreaCode202550517642016-12-19T14:48:31Z{{DatatypeProperty +| labels = +{{label|de|Vorwahl}} +{{label|en|area code}} +{{label|fr|indicatif régional}} +{{label|nl|netnummer}} +{{label|el|κωδικός_περιοχής}} +{{label|sr|позивни број}} +{{label|ru|местный телефонный код}} +{{label|hi|दूरभाष कोड}} +| rdfs:comment@en = Area code for telephone numbers. Use this not phonePrefix +| rdfs:domain = Place +| rdfs:range = xsd:string +| owl:equivalentProperty = wikidata:P473 +}}OntologyProperty:AreaDate2027177257262013-06-01T10:19:38Z{{DatatypeProperty +| labels = +{{label|en|area date}} +| rdfs:domain = Place +| rdfs:range = xsd:date +}}OntologyProperty:AreaLand202551590702022-06-21T18:45:18Z{{DatatypeProperty +| labels = +{{label|en|area land}} +{{label|nl|oppervlakte land}} +{{label|el|έκταση_στεριάς_περιοχής}} +{{label|sr|површина земљишта}} +{{label|ur|زمین کا علاقہ}} +| rdfs:domain = Place +| rdfs:range = Area +}}OntologyProperty:AreaMetro202553305962014-01-22T07:47:10Z{{DatatypeProperty +| rdfs:label@en = area metro +| rdfs:label@el = περιοχή μετρό +| rdfs:label@sr = метрополска област +| rdfs:range = Area +}}OntologyProperty:AreaOfCatchment202554334142014-04-03T14:03:55Z{{DatatypeProperty +| rdfs:label@en = area of catchment +| rdfs:label@de = Einzugsgebiet +| rdfs:label@el = λίμνη +| rdfs:label@sr = подручје слива +| rdfs:domain = Lake +| rdfs:range = Area +}}OntologyProperty:AreaOfCatchmentQuote2027096590682022-06-21T18:42:13Z{{DatatypeProperty +| labels = +{{label|en|area of catchment quote}} +{{label|ur|آب گیری اقتباس کا علاقہ}} +| rdfs:domain = Place +| rdfs:range = xsd:string +}}OntologyProperty:AreaOfSearch202555358322014-07-08T12:43:51Z +{{ObjectProperty +| rdfs:label@en = area of search +| rdfs:label@de = Suchgebiet +| rdfs:label@el = Περιοχή Αναζήτησης +| rdfs:domain = SiteOfSpecialScientificInterest +| rdfs:range = PopulatedPlace +| rdfs:subPropertyOf = dul:hasLocation +}}OntologyProperty:AreaQuote2027083256072013-05-26T13:27:02Z{{DatatypeProperty +| labels = +{{label|en|area quote}} +| rdfs:domain = Place +| rdfs:range = xsd:string +}}OntologyProperty:AreaRank2027132590662022-06-21T18:37:32Z{{DatatypeProperty +| labels = +{{label|en|area rank}} +{{label|sr|површина ранг}} +{{label|ur|علاقے کا درجہ}} +| rdfs:domain = Place +| rdfs:range = xsd:string +}}OntologyProperty:AreaRural2024348306072014-01-22T07:56:51Z{{DatatypeProperty +| rdfs:label@en = area rural +| rdfs:label@el = αγροτική περιοχή +| rdfs:label@sr = рурална област +| rdfs:domain = PopulatedPlace +| rdfs:range = Area +}}OntologyProperty:AreaTotal202556538092020-12-01T18:04:33Z{{DatatypeProperty +| labels = +{{label|de|Fläche}} +{{label|en|area total}} +{{label|nl|oppervlakte}} +{{label|el|έκταση περιοχής}} +{{label|fr|superficie}} +{{label|sr|укупна површина}} +| rdfs:domain = Place +| rdfs:range = Area +| owl:equivalentProperty=wikidata:P2046 +}}OntologyProperty:AreaTotalRanking2025295590642022-06-21T18:35:58Z{{ DatatypeProperty + + | rdfs:label@en = total area ranking +| rdfs:label@el = συνολική περιοχή +|labels={{label|ur|کل علاقے کی درجہ بندی}} + | rdfs:label@sr = укупна површина ранг + | rdfs:domain = PopulatedPlace + | rdfs:range = xsd:positiveInteger + +}}OntologyProperty:AreaUrban202557334162014-04-03T14:04:03Z{{DatatypeProperty +| rdfs:label@en = area urban +| rdfs:label@de = Stadtgebiet +| rdfs:label@el = αστική περιοχή +| rdfs:label@sr = урбана површина +| rdfs:domain = PopulatedPlace +| rdfs:range = Area +}}OntologyProperty:AreaWater202558306192014-01-22T08:12:21Z{{DatatypeProperty +| labels = +{{label|en|area water}} +{{label|nl|oppervlakte water}} +{{label|el|έκταση_υδάτων_περιοχής}} +{{label|sr|водена површина}} +| rdfs:domain = Place +| rdfs:range = Area +}}OntologyProperty:ArgueDate202559590332022-06-21T17:16:39Z{{DatatypeProperty +| rdfs:label@en = argue date +|labels={{label|ur|بحث کی تاریخ}} +| rdfs:label@el = δημοφιλής ημερομηνία +| rdfs:domain = SupremeCourtOfTheUnitedStatesCase +| rdfs:range = xsd:date +}}OntologyProperty:ArielAward202560358332014-07-08T12:43:59Z +{{ObjectProperty +| rdfs:label@en = Ariel Award +| rdfs:label@el = Ariel Award +| rdfs:label@sr = ARIEL награда +| rdfs:domain = Actor +| rdfs:range = Award +| rdfs:subPropertyOf = dul:coparticipatesWith +}}OntologyProperty:Arm202561210962012-12-27T10:59:21Z{{DatatypeProperty +| rdfs:label@en = arm +| rdfs:label@el = ώμος +| rdfs:domain = Protein +| rdfs:range = xsd:string +}}OntologyProperty:Army2027551590372022-06-21T17:30:10Z{{DatatypeProperty +| labels = + {{label|en|army}} + {{label|de|Armee}} + {{label|fr|armée}} + {{label|nl|leger}} + {{label|el|στρατός}} +{{label|ur|فوج}} +| comments = + {{comment|en|An army is the ground force of the nation}} +{{label|ur|فوج قوم کی زمینی قوت ہے۔}} + {{comment|fr|Une armée est la force terrestre de la nation}} + {{comment|el|Ένας στρατός αποτελεί τις επίγειες ένοπλες δυνάμεις ενός έθνους}} +| rdfs:domain = MilitaryPerson +| rdfs:range = xsd:string +}}OntologyProperty:ArrestDate2028031281852013-09-03T18:00:03Z{{DatatypeProperty +| labels = +{{label|en|arrest date}} +| rdfs:domain = Person +| rdfs:range = xsd:date +}}OntologyProperty:Arrondissement2026883358342014-07-08T12:44:07Z +{{ObjectProperty +| labels = + {{label|en|arrondissement}} + {{label|nl|arrondissement}} + {{label|fr|arrondissement}} + {{label|el|διαμέρισμα}} +| rdfs:domain = PopulatedPlace | rdfs:range = PopulatedPlace +| rdfs:subPropertyOf = dul:hasLocation +}}OntologyProperty:ArtPatron2027337590392022-06-21T17:35:17Z +{{ObjectProperty +| labels = + {{label|en|patron (art)}} + {{label|fr|mécène}} +{{label|ur|فن کاسرپرست}} +| rdfs:domain = Agent +| rdfs:range = Artist +| comments = + {{comment|en|An influential, wealthy person who supported an artist, craftsman, a scholar or a noble. +{{comment|ur|ایک بااثر، دولت مند شخص جس نے کسی فنکار، کاریگر، عالم یا بزرگ کی حمایت کی۔}} +<ref>http://en.wiktionary.org/wiki/patron</ref>. See also<ref>http://en.wikipedia.org/wiki/Patronage</ref>}} + {{comment|fr|Celui qui encourage par ses libéralités les sciences, les lettres et les arts.<ref>http://fr.wiktionary.org/wiki/m%C3%A9c%C3%A8ne</ref>}} +| rdfs:subPropertyOf = dul:sameSettingAs +}} +<references/>OntologyProperty:Artery202563358362014-07-08T12:44:25Z +{{ObjectProperty +| rdfs:label@en = artery +| rdfs:label@de = Arterie +| rdfs:label@el = αρτηρία +| rdfs:label@nl = ader +| rdfs:domain = AnatomicalStructure +| rdfs:range = Artery +| rdfs:subPropertyOf = dul:coparticipatesWith +}}OntologyProperty:ArtificialSnowArea2027206257562013-06-01T13:28:10Z{{DatatypeProperty +| labels = +{{label|en|artificial snow area}} +| rdfs:domain = Place +| rdfs:range = xsd:float +}}OntologyProperty:Artist202564590412022-06-21T17:38:18Z +{{ObjectProperty +| labels = + {{label|de|Interpret}} + {{label|el|καλλιτέχνης}} + {{label|en|artist}} + {{label|en|performer}} + {{label|es|intérprete}} + {{label|fr|interprète}} + {{label|nl|artiest}} +{{label|ur|فنکار}} + {{label|pl|wykonawca}} +| comments = + {{comment|en|The performer or creator of the musical work.}} +{{comment|ur|موسیقی کے کام کا اداکار یا تخلیق کار۔}} + {{comment|fr|Celui qui interprète ou qui a créé l'oeuvre musicale.}} +| rdfs:domain = MusicalWork +| rdfs:range = Agent +| owl:equivalentProperty = schema:byArtist, wikidata:P175 +| rdfs:subPropertyOf = dul:coparticipatesWith +}}OntologyProperty:ArtistFunction20213823571082022-03-12T20:20:48Z{{DatatypeProperty +| labels = + {{label|en|artist function}} + {{label|fr|fonction artistique}} +| comments = + {{comment|en|Artist function: vocal, group, instrumentalist, compositor...}} + {{comment|fr|Fonction de l'artiste : chanteur, groupe, instrumentiste, compositeur...}} +| rdfs:domain = Artist +| rdfs:range = xsd:string +}}OntologyProperty:ArtisticFunction2027885273852013-07-10T15:01:03Z{{DatatypeProperty +| labels = +{{label|en|artistic function}} +| rdfs:domain = Person +| rdfs:range = xsd:string +}}OntologyProperty:AsWikiText20210108454142015-02-23T13:52:51Z'''{{Reserved for DBpedia}}''' + +{{DatatypeProperty +| labels= +{{label|en|Contains a [https://www.mediawiki.org/wiki/Wikitext WikiText] representation of this thing}} +| rdfs:domain = +| rdfs:range = xsd:string +}}OntologyProperty:Ascent202565391912015-01-11T19:48:23Z{{DatatypeProperty +| rdfs:label@en = ascent +| rdfs:label@de = Aufstieg +| rdfs:label@el = ανάβαση +|comments= +{{comment|en|Ascent of a celestial body, aircraft, etc. For person who ascended a mountain, use firstAscent}} +| rdfs:range = xsd:string +}}OntologyProperty:AsiaChampionship2028056282112013-09-03T18:51:25Z{{DatatypeProperty +| labels = +{{label|en|asia championship}} +| rdfs:domain = Athlete +| rdfs:range = xsd:string +}}OntologyProperty:AspectRatio2022123590552022-06-21T18:04:29Z +{{ObjectProperty +| rdfs:label@de = Seitenverhältnis +| rdfs:label@en = Aspect Ratio +| rdfs:label@el = λόγος +| rdfs:domain = Software +|labels={{label|ur|پہلو کا تناسب}} +|comments={{comment|ur|(ٹیلی وژن) تناسب نظر / عکس کی چوڑائی کا بلندی سے تناسب}} +| rdfs:subPropertyOf = dul:hasQuality +}}OntologyProperty:Assembly202568334202014-04-03T14:04:17Z{{ObjectProperty +| rdfs:label@en = assembly +| rdfs:label@de = Montage +| rdfs:label@el = συνέλευση +| rdfs:domain = MeanOfTransportation +}}OntologyProperty:AssetUnderManagement202570212612012-12-27T23:12:29Z{{DatatypeProperty +| labels = +{{label|en|asset under management}} +{{label|el|κεφάλαιο υπό διαχείριση}} +| rdfs:domain = Company +| rdfs:range = Currency +}}OntologyProperty:Assets202569590562022-06-21T18:08:38Z{{DatatypeProperty +| labels = +{{label|en| assets}} +{{label|de|Aktiva}} +{{label|el|περιουσιακά στοιχεία}} +{{label|ur|اثاثے}} +| rdfs:domain = Company +| rdfs:range = Currency +| comments = +{{comment|en| 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. +}} +{{comment|el|Περιουσιακά στοιχεία και υποχρεώσεις αποτελούν μέρος του ισολογισμού μιας εταιρείας.Σε χρηματοοικονομική λογιστική,τα περιουσιακά στοιχεία είναι οι οικονομικοί πόροι. Οτιδήποτε ενσώματο ή άυλο, που είναι ικανό να ανήκει ή να ελέγχεται για να παράγει αξία και που κατέχεται για να έχει θετική οικονομική αξία θεωρείται ένα περιουσιακό στοιχείο.}} +{{comment|ur|اثاثے اور واجبات کمپنی کی بیلنس شیٹ کا حصہ ہیں۔ مالیاتی اکاؤنٹنگ میں، اثاثے اقتصادی وسائل ہیں۔ کوئی بھی ٹھوس یا غیر محسوس چیز جو قدر پیدا کرنے کے لیے ملکیت یا کنٹرول کرنے کے قابل ہو اور جس کی مثبت اقتصادی قدر ہو اسے اثاثہ سمجھا جاتا ہے۔}} +}}OntologyProperty:AssistantPrincipal2023129525762017-10-31T08:26:03Z +{{ObjectProperty +| labels = + {{label|en|assistant principal}} + {{label|el|κύριος βοηθός}} +| rdfs:domain = EducationalInstitution +| rdfs:subPropertyOf = dul:coparticipatesWith +}}OntologyProperty:Associate2022349358402014-07-08T12:45:11Z +{{ObjectProperty +| labels = + {{label|en|associate}} + {{label|el|συνεργάτης}} +| rdfs:range = Person +| rdfs:subPropertyOf = dul:coparticipatesWith +}}OntologyProperty:AssociateEditor202575590582022-06-21T18:30:30Z +{{ObjectProperty +| labels = + {{label|en|associate editor}} + {{label|el|συνεργαζόμενος συντάκτης}} + {{label|ur|رفیقه مدیر}} +| rdfs:domain = Newspaper +| rdfs:range = Person +| rdfs:subPropertyOf = dul:coparticipatesWith +}}OntologyProperty:AssociateStar2024550358422014-07-08T12:45:28Z +{{ObjectProperty +| labels = + {{label|en|associateStar}} + {{label|el|συγγενικός αστέρας}} + {{label|tr|çevreleyen}} +| rdfs:range = Constellation +| rdfs:subPropertyOf = dul:isMemberOf +}}OntologyProperty:AssociatedAct202571358432014-07-08T12:45:36Z +{{ObjectProperty +| labels = + {{label|en|associated act}} + {{label|el|συνδεδεμένη πράξη}} +| rdfs:domain = Artist +| rdfs:range = Artist +| rdfs:subPropertyOf = dul:coparticipatesWith +}}OntologyProperty:AssociatedBand202572590602022-06-21T18:32:26Z +{{ObjectProperty +| labels = + {{label|en|associated band}} + {{label|el|συνεργαζόμενο συγκρότημα}} + {{label|ur|منسلک سازینه}} +| rdfs:range = Band +| rdfs:subPropertyOf = dul:isMemberOf +}}OntologyProperty:AssociatedMusicalArtist202573358452014-07-08T12:45:54Z +{{ObjectProperty +| labels = + {{label|en|associated musical artist}} + {{label|el|συνεργάτης-μουσικός καλλιτέχνης}} +| rdfs:range = MusicalArtist +| rdfs:subPropertyOf = dul:hasMember +}}OntologyProperty:AssociatedRocket202574358462014-07-08T12:46:02Z +{{ObjectProperty +| labels = + {{label|en|associated rocket}} + {{label|el|συνδεόμενος πύραυλος}} +| rdfs:domain = LaunchPad +| rdfs:range = Rocket +| rdfs:subPropertyOf = dul:coparticipatesWith +}}OntologyProperty:AssociationOfLocalGovernment202576590622022-06-21T18:34:21Z +{{ObjectProperty +| labels = + {{label|en|association of local government}} + {{label|nl|vereniging van lokale overheden}} + {{label|el|συνεργασία της τοπικής αυτοδιοίκησης}} +{{label|ur|مقامی حکومت کی انجمن}} +| rdfs:domain = Settlement +| rdfs:range = PopulatedPlace +| rdfs:subPropertyOf = dul:coparticipatesWith +}}OntologyProperty:Astrazenca20213128569742022-03-09T10:34:45Z{{DatatypeProperty +| labels = + {{label|en|Astrazenca}} + {{label|fr|Astrazenca}} + {{label|zh|阿斯利康制药}} +| comments = + {{comment|en|AstraZeneca plc is a British-Swedish multinational pharmaceutical and biotechnology company with its headquarters at the Cambridge Biomedical Campus in Cambridge, England.}} + {{comment|fr|AstraZeneca plc est une multinationale pharmaceutique et biotechnologique anglo-suédoise dont le siège social est situé au Cambridge Biomedical Campus à Cambridge, en Angleterre.}} + {{comment|zh|阿斯利康制药公司,是一家由瑞典阿斯特公司(Astra AB)和英国捷利康公司(Zeneca Group PLC)于1999年4月6日合并而成的大型英瑞合资生物制药企业}} + +| rdfs:range = xsd:string +| owl:equivalentProperty = vaccine +| rdfs:domain = owl:Thing +}}OntologyProperty:AstrazencaCumul20213129549152021-08-12T06:34:16Z{{DatatypeProperty +| labels = +{{label|en|AstrazencaCumulativeDoses}} +| comments = + {{comment|en|AstraZeneca plc is a British-Swedish multinational pharmaceutical and biotechnology company with its headquarters at the Cambridge Biomedical Campus in Cambridge, England.}} + {{comment|en|阿斯利康制药公司,是一家由瑞典阿斯特公司(Astra AB)和英国捷利康公司(Zeneca Group PLC)于1999年4月6日合并而成的大型英瑞合资生物制药企业}} +| rdfs:range = xsd:integer +| owl:equivalentProperty = astrazenca +| rdfs:domain = owl:Thing +}}OntologyProperty:AstrologicalSign2023297590512022-06-21T17:57:19ZAstrologicalSign + +{{ObjectProperty +| labels = + {{label|en|astrological sign}} + {{label|el|αστρολογικό ζώδιο}} + {{label|de|Sternzeichen}} + {{label|pt|signo astrológico}} +{{label|ur|نشان نجوم}} +| rdfs:domain = Person +| rdfs:subPropertyOf = dul:isDescribedBy +}}OntologyProperty:AtPage2029249334222014-04-03T14:04:24Z{{ DatatypeProperty +| labels = +{{label|en|page number}} +{{label|de|Seitenzahl}} +{{label|nl|pagina van verwijzing}} +| rdfs:comment@en = Page # where the referenced resource is to be found in the source document +| rdfs:domain = Reference +| rdfs:range = xsd:string +}}OntologyProperty:AtRowNumber2029250567452022-02-28T16:02:48Z{{ DatatypeProperty +| labels = + {{label|en|row number}} + {{label|de|Zeilennummer}} + {{label|fr|numéro de ligne}} + {{label|nl|regelnummer van verwijzing}} +| comments = + {{comment|en|Row number where the referenced resource is to be found in the source file}} + {{comment|fr|Numéro de ligne où la ressource référencée doit se trouver dans le fichier source}} +| rdfs:domain = Reference +| rdfs:range = xsd:string +}}OntologyProperty:AtcCode202579590472022-06-21T17:53:12Z{{DatatypeProperty +| labels = +{{label|en|ATC code}} +{{label|fr|ATC code}} +{{label|el|κώδικας ATC}} +{{label|ur|اے ٹی سی کوڈ}} +| rdfs:range = xsd:string +| rdfs:subPropertyOf = code +}}OntologyProperty:AtcPrefix202577212732012-12-27T23:41:14Z{{DatatypeProperty +| labels = +{{label|en|ATC prefix}} +{{label|el|ATC πρόθεμα}} +{{label|fr |préfix ATC}} +| rdfs:range = xsd:string +}}OntologyProperty:AtcSuffix202578212742012-12-27T23:42:48Z{{DatatypeProperty +| labels = +{{label|en|ATC suffix}} +{{label|el|ATC κατάληξη}} +{{label|fr |suffix ATC}} +| rdfs:range = xsd:string +}}OntologyProperty:AtcSupplemental20211921523982017-10-15T13:04:35Z#REDIRECT [[OntologyProperty:AtcCode]]OntologyProperty:Athletics202580358492014-07-08T12:46:29Z +{{ObjectProperty +| rdfs:label@en = athletics +| rdfs:label@de = Leichtathletik +| rdfs:label@el = αθλητισμός +| rdfs:domain = University +| rdfs:subPropertyOf = dul:sameSettingAs +}}OntologyProperty:AthleticsDiscipline2027843568102022-02-28T22:22:40Z{{ObjectProperty +| labels = +{{label|en|athletics discipline}} +{{label|fr|discipline athlétique}} +{{label|de|Leichtathletikdisziplin}} +| rdfs:domain = Athlete +| rdfs:range = Athletics +}}OntologyProperty:AtomicNumber20211020590452022-06-21T17:51:06Z{{DatatypeProperty +| labels = +{{label|en|atomic number}} +{{label|nl|atoomnummer}} +{{label|de|Ordnungszahl}} +{{label|ga|uimhir adamhach}} +{{label|pl|liczba atomowa}} +{{label|ur|جوہری عدد}} +| comments = +{{comment|en|the ratio of the average mass of atoms of an element (from a single given sample or source) to 1⁄12 of the mass of an atom of carbon-12<ref>https://en.wikipedia.org/wiki/Atomic_number</ref>}} +{{comment|ur|کسی عنصر کے ایٹموں کی اوسط کمیت کا تناسب (ایک دیے گئے نمونے یا ماخذ سے) کاربن 12 کے ایٹم کے بڑے پیمانے پر}} +{{comment|nl|het atoomnummer of atoomgetal (symbool: Z) geeft het aantal protonen in de kern van een atoom aan.<ref>https://nl.wikipedia.org/wiki/Atoomnummer</ref>}} +{{comment|de|die Anzahl der Protonen im Atomkern eines chemischen Elements, deshalb auch Protonenzahl.<ref>https://de.wikipedia.org/wiki/Ordnungszahl</ref>}} +{{comment|ga|Is eard is uimhir adamhach (Z) adaimh ann ná líon na bprótón i núicléas an adaimh sin<ref>https://ga.wikipedia.org/wiki/Uimhir_adamhach</ref>}} +{{comment|pl|liczba określająca, ile protonów znajduje się w jądrze danego atomu<ref>https://pl.wikipedia.org/wiki/Liczba_atomowa</ref>}} +| rdfs:domain = ChemicalElement +| rdfs:range = xsd:nonNegativeInteger +| owl:equivalentProperty = wikidata:P1086 +}} + +<references/>OntologyProperty:AttorneyGeneral2026601358502014-07-08T12:46:43Z +{{ObjectProperty +| labels = + {{label|en|attorney general}} + {{label|de|Generalstaatsanwalt}} + {{label|nl|procureur-generaal}} +| comments = + {{comment|en|Public attorney }} + {{comment|nl|de procureur-generaal}} +| rdfs:domain = LegalCase +| rdfs:range = Person +| rdf:type = | rdfs:subPropertyOf = personFunction +| owl:equivalentProperty = +| rdfs:subPropertyOf = dul:isSettingFor +}}OntologyProperty:Aunt20212292535922020-01-30T18:39:57Z{{ObjectProperty +| labels = + {{label|en|aunt}} + {{label|nl|tante}} + {{label|de|Tante}} + {{label|el|θεία}} + {{label|ja|叔母}} + {{label|ar|عمة}} +| rdfs:domain = Woman +| rdfs:range = Person +| owl:propertyDisjointWith = Uncle +}}OntologyProperty:AustraliaOpenDouble2027722590432022-06-21T17:43:32Z{{DatatypeProperty +| labels = +{{label|en|australia open double}} +{{label|ur|آسٹریلیا اوپن ڈبل}} +| rdfs:domain = TennisPlayer +| rdfs:range = xsd:string +}}OntologyProperty:AustraliaOpenMixed2027726500912016-01-04T12:52:04Z{{DatatypeProperty +| labels = +{{label|en|australia open mixed}} +| rdfs:domain = TennisPlayer +| rdfs:range = xsd:string +}}OntologyProperty:AustraliaOpenSingle2027718500922016-01-04T12:52:38Z{{DatatypeProperty +| labels = +{{label|en|australia open single}} +| rdfs:domain = TennisPlayer +| rdfs:range = xsd:string +}}OntologyProperty:Author202581590312022-06-21T17:14:46Z{{ObjectProperty +| labels = + {{label|en|author}} + {{label|ca|autor}} + {{label|de|autor}} + {{label|el|συγγραφέας}} + {{label|fr|auteur}} + {{label|ga|údar}} +{{label|ur|مصنف}} + {{label|ja|作者}} + {{label|nl|auteur}} + {{label|pl|autor}} + {{label|ru|автор}} +| rdfs:domain = Work +| rdfs:range = Person +| owl:equivalentProperty = schema:author, wikidata:P50, bibschema:author, dblp2:authoredBy +| rdfs:subPropertyOf = dul:coparticipatesWith +}}OntologyProperty:Authority2023124358522014-07-08T12:46:59Z +{{ObjectProperty +| labels = + {{label|en|authority}} + {{label|de|Behörde}} + {{label|nl|autoriteit}} + {{label|el|αρχή}} +| rdfs:subPropertyOf = dul:sameSettingAs +}}OntologyProperty:AuthorityMandate2027155256962013-05-26T16:39:10Z{{DatatypeProperty +| labels = +{{label|en|authority mandate}} +| rdfs:domain = Place +| rdfs:range = xsd:string +}}OntologyProperty:AuthorityTitle2026924590292022-06-21T17:12:07Z{{DatatypeProperty +| labels = +{{label|en|authority title of a romanian settlement}} +{{label|ur|رومانیہ کی تصفیہ کا اقتدار کا موضوع}} +| rdfs:domain = RomaniaSettlement +| rdfs:range = xsd:string +}}OntologyProperty:AutomobileModel202582334282014-04-03T14:04:52Z{{DatatypeProperty +|labels= +{{label|en|automobile model}} +{{label|de|Automobilmodell}} +{{label|el|μοντέλο αυτοκινήτου}} +| rdfs:domain = AutomobileEngine +| rdfs:range = xsd:string +}}OntologyProperty:AutomobilePlatform2022121358532014-07-08T12:47:08Z +{{ObjectProperty +| labels = + {{label|en|automobile platform}} + {{label|de|Automobilplattform}} + {{label|el|πλατφόρμα αυτοκινήτων}} +| rdfs:domain = Automobile +| rdfs:range = Automobile +| rdfs:subPropertyOf = dul:hasComponent +}}OntologyProperty:Autonomy2026309334302014-04-03T14:05:01Z{{ObjectProperty +| rdfs:label@en = autonomy +| rdfs:label@de = Autonomie +| rdfs:label@el = αυτονομία +}}OntologyProperty:AvailableSmartCard2023249358542014-07-08T12:47:17Z +{{ObjectProperty +| labels = + {{label|en|available smart card}} + {{label|de|benutzbare Chipkarte}} + {{label|el|διαθέσιμη έξυπνη κάρτα}} +| rdfs:domain = Station +| rdfs:range = owl:Thing +| comments = + {{comment|en|Smartcard for fare payment system for public transit systems that are or will be available at the station.}} + {{comment|de|Chipkarte für automatische Bezahlsysteme im Personenverkehr die an diesem Bahnhof benutzt werden kann.}} + {{comment|el|Έξυπνη κάρτα για το σύστημα πληρωμής των ναύλων για τα δημόσια συστήματα μεταφορών που είναι ή θα είναι διαθέσιμα στο σταθμό.}} +| rdfs:subPropertyOf = dul:coparticipatesWith +}}OntologyProperty:Average2027923493282015-10-23T13:04:10Z{{DatatypeProperty +| labels = +{{label|en|average}} +{{label|el|μέσος όρος}} +{{label|de|Durchschnitt}} +| rdfs:range = xsd:double +}}OntologyProperty:AverageAnnualGeneration2029587590052022-06-21T10:36:47Z{{DatatypeProperty +| rdfs:label@en = average annual gross power generation +|labels={{label|ur|اوسط سالانہ پیداوار}} +|comments={{comment|ur|اوسط سالانہ مجموعی بجلی کی پیداوار}} +| rdfs:domain = PowerStation +| rdfs:range = Energy +| rdf:type = owl:FunctionalProperty +}}OntologyProperty:AverageClassSize202583334322014-04-03T14:05:09Z{{DatatypeProperty +|labels= +{{label|en|average class size}} +{{label|de|durchschnittliche Klassengröße}} +{{label|el|μέσο μέγεθος τάξης}} +| rdfs:domain = School +| rdfs:range = xsd:float +}}OntologyProperty:AverageDepth2027093493272015-10-23T13:00:52Z{{DatatypeProperty +| labels = +{{label|de|durchschnittliche Tiefe}} +{{label|en|average depth}} +{{label|el|μέσο βάθος}} +{{label|fr|profondeur moyenne}} +| comments = +{{comment|en|Source of the value can be declare by {{linkProperties|averageDepthQuote|}}.}} +| rdfs:domain = Place +| rdfs:range = Length +| rdfs:subPropertyOf = depth +| owl:propertyDisjointWith = maximumDepth +}}OntologyProperty:AverageDepthQuote2027094590032022-06-21T10:25:05Z{{DatatypeProperty +| labels = +{{label|en|average depth quote}} +{{label|ur|اوسط گہرائی اقتباس}} +| comments = +{{comment|en|Source of the {{linkProperties|averageDepth|}} value.}} +| rdfs:domain = Place +| rdfs:range = xsd:string +}}OntologyProperty:AverageSpeed202584569942022-03-09T12:06:11Z{{DatatypeProperty +|labels= + {{label|en|average speed}} + {{label|fr|vitesse moyenne}} + {{label|de|Durchschnittsgeschwindigkeit}} + {{label|el|μέση ταχύτητα}} +| rdfs:domain = owl:Thing +| rdfs:range = Speed +|comments= +{{comment|en|The average speed of a thing.}} +{{comment|fr|Vitesse moyenne du déplacement d'un objet.}} +{{comment|el|Η μέση ταχύτητα ενός πράγματος.}} +}}OntologyProperty:AvgRevSizePerMonth20214284591332022-12-02T11:59:17Z{{DatatypeProperty +| labels = +{{label|en| Average size of the revision per month }} +{{label|fr| Taille moyenne des révisions par mois}} +| comments = +{{comment|en| used for DBpedia History > Subject must be a blank node containing a dc:date and a rdfs:value }} +{{comment|fr| utilisé par DBpedia Historique > Le sujet de cette relation doit être un noeud blanc contenant une dc:date et une rdfs:value }} +| rdfs:domain = prov:Entity +| rdfs:range = xsd:anyURI +}}OntologyProperty:AvgRevSizePerYear20214285591322022-12-02T11:59:04Z{{DatatypeProperty +| labels = +{{label|en| Average size of the revision per year }} +{{label|fr| Taille moyenne des révisions par année}} +| comments = +{{comment|en| used for DBpedia History > Subject must be a blank node containing a dc:date and a rdfs:value }} +{{comment|fr| utilisé par DBpedia Historique > Le sujet de cette relation doit être un noeud blanc contenant une dc:date et une rdfs:value }} +| rdfs:domain = prov:Entity +| rdfs:range = xsd:anyURI +}}OntologyProperty:AvifaunaPopulation2027102256262013-05-26T13:38:35Z{{DatatypeProperty +| labels = +{{label|en|avifauna population}} +| rdfs:domain = Place +| rdfs:range = xsd:string +}}OntologyProperty:Award202585590012022-06-21T10:21:51Z{{ObjectProperty +| labels = + {{label|en|award}} + {{label|nl|onderscheiding}} + {{label|fr|récompense}} + {{label|el|διακρίσεις}} + {{label|de|Auszeichnung}} + {{label|ja|受賞}} + {{label|ur|انعام}} +| rdfs:range = Award +| rdfs:comment@en = Award won by a Person, Musical or other Work, RaceHorse, Building, etc +| owl:equivalentProperty = schema:awards , wikidata:P166, rkd:Award +| rdfs:subPropertyOf = dul:coparticipatesWith +}}OntologyProperty:AwardName20210477397722015-02-05T12:19:38Z{{DatatypeProperty +| labels = +{{label|en|awardName}} +|comments= +{{comment|en|Award a person has received (literal). Compare to award (ObjectProperty)}} +| rdfs:domain = Person +| rdfs:range = xsd:string +}}OntologyProperty:AwayColourHexCode2026407235372013-01-23T23:55:24Z{{DatatypeProperty +| labels = +{{label|en|colour hex code of away jersey or its parts}} +{{label|de|Farben Hex Code des Auswärtstrikots oder Teile dieses}} +| rdfs:domain = owl:Thing +| rdfs:range = xsd:string +| comments = +{{comment|en|A colour represented by its hex code (e.g.: #FF0000 or #40E0D0).}} +| rdfs:subPropertyOf = colourHexCode +}}OntologyProperty:BSide202627473752015-03-31T14:23:29Z{{DatatypeProperty +| rdfs:label@en = b side +| rdfs:label@ca = cara b +| rdfs:label@de = B-Seite +| rdfs:label@ga = taobh b +| rdfs:label@pl = strona b +| rdfs:domain = Single +| rdfs:range = xsd:string +| rdfs:comment@en = +| owl:equivalentProperty = wikidata:P1432 +}}OntologyProperty:Background202587334352014-04-03T14:05:24Z{{DatatypeProperty +|labels= +{{label|en|background}} +{{label|de|Hintergrund}} +{{label|el|φόντο}} +| rdfs:range = xsd:string +}}OntologyProperty:Backhand2027709334362014-04-03T14:05:28Z{{DatatypeProperty +| labels = +{{label|en|backhand}} +{{label|de|Rückhand}} +| rdfs:domain = Athlete +| rdfs:range = xsd:string +}}OntologyProperty:BadGuy2027762334372014-04-03T14:05:33Z{{DatatypeProperty +| labels = +{{label|en|bad guy}} +{{label|de|Bösewicht}} +| rdfs:domain = Person +| rdfs:range = xsd:string +}}OntologyProperty:BaftaAward202588358562014-07-08T12:47:41Z +{{ObjectProperty +| labels = + {{label|en|BAFTA Award}} + {{label|de|BAFTA Award}} + {{label|el|βραβείο BAFTA}} +| rdfs:domain = Artist +| rdfs:range = Award +| rdfs:subPropertyOf = dul:coparticipatesWith +}}OntologyProperty:Band202589573442022-03-31T11:16:07Z{{DatatypeProperty +|labels= + {{label|en|band}} + {{label|fr|bande}} + {{label|el|μπάντα}} +| rdfs:domain = Protein +| rdfs:range = xsd:string +}}OntologyProperty:BandMember2024346573432022-03-31T11:12:33Z{{ObjectProperty +| labels = + {{label|en|band member}} + {{label|fr|membre de groupe de musique}} + {{label|de|Bandmitglied}} + {{label|nl|bandlid}} + {{label|el|μέλος μπάντας}} +| rdfs:domain = Band +| rdfs:range = Person +| comments = + {{comment|en|A member of the band.}} + {{comment|fr|Un membre du groupe de musique.}} + {{comment|el|Ένα μέλος της μπάντας.}} +| rdfs:subPropertyOf = dul:hasMember +}}OntologyProperty:BarPassRate202590210472012-12-26T11:32:45Z{{DatatypeProperty +|labels= +{{label|en|bar pass rate}} +{{label|el|ποσοστό επιτυχίας}} +| rdfs:domain = School +| rdfs:range = xsd:float +}}OntologyProperty:Barangays2027291259662013-06-13T15:30:31Z{{DatatypeProperty +| labels = +{{label|en|barangays}} +| rdfs:domain = PopulatedPlace +| rdfs:range = xsd:string +}}OntologyProperty:BasedOn202591574212022-04-17T20:35:24Z{{ObjectProperty +| labels = + {{label|en|based on}} + {{label|fr|basé sur}} + {{label|de|basierend auf}} + {{label|el|βασισμένο σε}} + {{label|ga|bunaithe ar}} + {{label|nl|op basis van}} + {{label|pl|na podstawie}} +| rdfs:domain = Work +| rdfs:range = Work +| rdfs:subPropertyOf = dul:coparticipatesWith +| owl:equivalentProperty = wikidata:P144 +}}OntologyProperty:Battery20211979526072017-10-31T11:12:38Z{{ObjectProperty +| labels = {{label|it|batteria}} +{{label|nl|batterij}} +{{label|es|batería}} +{{label|pt|bateria}} +{{label|fr|pile}} +{{label|de|Batterie}} +{{label|en|battery}} +| comments = + {{comment|en|Points out the battery used with/in a thing.}} +| rdfs:range = Battery +}}OntologyProperty:BattingSide202592522722017-10-08T13:53:34Z{{DatatypeProperty +| rdfs:label@en = batting side +| rdfs:label@de = Schlagarm +| rdfs:domain = Athlete +| rdfs:range = xsd:string +| rdfs:comment = The side the player bats, Left, Right, or Unknown. +}}OntologyProperty:Battle202593569952022-03-09T12:07:13Z{{ObjectProperty +| labels = + {{label|en|battle}} + {{label|fr|bataille}} + {{label|nl|veldslag}} + {{label|de|Schlacht}} +| rdfs:range = MilitaryConflict +| rdfs:subPropertyOf = dul:isPartOf +| owl:equivalentProperty = wikidata:P607 +}}OntologyProperty:BattleHonours20259478782010-05-28T12:47:55Z{{DatatypeProperty +| rdfs:label@en = battle honours +| rdfs:domain = MilitaryUnit +| rdfs:range = xsd:string +}}OntologyProperty:Bbr20211891522472017-10-08T08:28:54Z{{DatatypeProperty +| labels = +{{label|en|BBR}} +{{label|nl|BBR}} +{{label|de|BBR}} +{{label|fr|BBR}} +| rdfs:domain = GridironFootballPlayer +| rdfs:range = xsd:string +| comments = +{{comment|en|For NBA players, the text between the last slash and .html in the URL of the player's basketball-reference.com profile (linked at http://www.basketball-reference.com/players/).}} +}}OntologyProperty:BeatifiedBy202595567582022-02-28T17:19:34Z{{ObjectProperty +| labels = + {{label|en|beatified by}} + {{label|nl|zalig verklaard door}} + {{label|fr|béatifié par}} +| rdfs:domain = Saint +| rdfs:range = Person +| rdfs:subPropertyOf = dul:coparticipatesWith +}}OntologyProperty:BeatifiedDate202596567572022-02-28T17:18:21Z{{DatatypeProperty +| labels = + {{label|en|beatified date}} + {{label|fr|date de béatification}} + {{label|nl|zalig verklaard datum}} +| rdfs:domain = Saint +| rdfs:range = xsd:date +}}OntologyProperty:BeatifiedPlace202597568342022-03-01T00:40:25Z +{{ObjectProperty +| labels = + {{label|en|beatified place}} + {{label|fr|lieu béatifié}} + {{label|nl|zalig verklaard plaats}} +| rdfs:domain = Saint +| rdfs:range = PopulatedPlace +| rdfs:subPropertyOf = dul:coparticipatesWith +}}OntologyProperty:BedCount202598224682013-01-12T23:03:16Z{{DatatypeProperty +| labels = +{{label|en|bed count}} +{{label|nl|aantal bedden}} +{{label|de|Anzahl Betten}} +{{label|el|αριθμός κρεβατιών}} +| rdfs:domain = Hospital +| rdfs:range = xsd:nonNegativeInteger +}}OntologyProperty:Believers2026165334462014-04-03T14:39:55Z{{DatatypeProperty +| rdfs:label@en = Believers +| rdfs:label@de = Gläubige +| rdfs:domain = ChristianDoctrine +| rdfs:range = xsd:string +}}OntologyProperty:BeltwayCity202599358652014-07-08T12:49:05Z +{{ObjectProperty +| rdfs:label@en = beltway city +| rdfs:domain = Road +| rdfs:range = City +| rdfs:subPropertyOf = dul:hasLocation +}}OntologyProperty:BestFinish2024120141212011-07-14T15:56:10Z{{DatatypeProperty +| rdfs:label@en = best ranking finish +| rdfs:label@de = beste Platzierung im Ranglistenturnier +| rdfs:domain = SnookerPlayer +| rdfs:range = xsd:string +}}OntologyProperty:BestLap2027807334472014-04-03T14:39:58Z{{DatatypeProperty +| labels = +{{label|en|best lap}} +{{label|de|beste Runde}} +| rdfs:range = xsd:string +| rdfs:domain = Person +}}OntologyProperty:BestRankDouble2027717500932016-01-04T12:53:16Z{{DatatypeProperty +| labels = +{{label|en|best rank double}} +| rdfs:domain = TennisPlayer +| rdfs:range = xsd:string +}}OntologyProperty:BestRankSingle2027714500942016-01-04T12:53:46Z{{DatatypeProperty +| labels = +{{label|en|best rank single}} +| rdfs:domain = TennisPlayer +| rdfs:range = xsd:string +}}OntologyProperty:BestWsopRank2028037281922013-09-03T18:15:27Z{{DatatypeProperty +| labels = +{{label|en|best wsop rank}} +| rdfs:domain = PokerPlayer +| rdfs:range = xsd:nonNegativeInteger +}}OntologyProperty:BestYearWsop2028038281932013-09-03T18:15:53Z{{DatatypeProperty +| labels = +{{label|en|best year wsop}} +| rdfs:domain = PokerPlayer +| rdfs:range = xsd:gYear +}}OntologyProperty:BgafdId2023300121762011-04-15T10:09:34Z{{DatatypeProperty +| rdfs:label@en = bgafd id +| rdfs:label@el = bgafd id +| rdfs:label@pt = código no bgafd +| rdfs:domain = Film +| rdfs:range = xsd:string +}}OntologyProperty:Bibo:pages20210309471382015-03-24T10:11:12Z{{DatatypeProperty +| labels = +{{label|en|pages}} +| rdfs:domain = Work +| rdfs:range = xsd:string +| comments = +{{comment|en|Potentially non-contiguous page spans that locate a Document within a Collection. Example: 23-25, 34, 54-56, iii-iv. Applies to Work (eg WrittenWork, Document, etc)}} +}}OntologyProperty:BibsysId2028426528702018-02-13T10:33:18Z{{DatatypeProperty +| labels = +{{label|en|BIBSYS Id}} +{{label|fr|identifiant BIBSYS}} +| comments = +{{comment|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.}} +| rdfs:range = xsd:string +| owl:equivalentProperty = wikidata:P1015 +| rdfs:subPropertyOf = code +}}OntologyProperty:BicycleInformation2023236568652022-03-01T20:34:25Z{{DatatypeProperty +| labels = + {{label|en|bicycle information}} + {{label|fr|information vélos}} + {{label|de|Fahrradinformationen}} +| rdfs:domain = Station +| rdfs:range = xsd:string +| comments = + {{comment|en|Information on station's bicycle facilities.}} + {{comment|fr|Information concernant les facilités de la gare pour les vélos.}} +}}OntologyProperty:BigPoolRecord2027759270472013-07-04T14:46:43Z{{DatatypeProperty +| labels = +{{label|en|big pool record}} +| rdfs:domain = Person +| rdfs:range = xsd:string +}}OntologyProperty:BiggestCity2027955334482014-04-03T14:40:02Z{{ObjectProperty +| labels = +{{label|en|biggest city}} +{{label|de|größte Stadt}} +| rdfs:domain = Place +| rdfs:range = PopulatedPlace +}}OntologyProperty:Billed202600358662014-07-08T12:49:14Z +{{ObjectProperty +| rdfs:label@en = billed +| rdfs:domain = Wrestler +| rdfs:range = PopulatedPlace +| rdfs:subPropertyOf = dul:coparticipatesWith +}}OntologyProperty:Binomial202601573472022-03-31T11:29:37Z{{ObjectProperty +| labels = + {{label|en|binomial}} + {{label|fr|binomial}} + {{label|de|Doppelbenennung}} + {{label|el|διωνυμικός}} + {{label|ja|学名}} +| comments = + {{comment|en|used to name species with a name consisting of two words.}} + {{comment|fr|sert à nommer les espèces avec un nom composé de deux mots.}} +| rdfs:domain = Species +| rdfs:subPropertyOf = dul:sameSettingAs +}}OntologyProperty:BinomialAuthority202602358682014-07-08T12:49:31Z +{{ObjectProperty +| rdfs:label@en = binomial authority +| rdfs:label@ja = (学名命名者) +| rdfs:domain = Species +| rdfs:subPropertyOf = dul:sameSettingAs +}}OntologyProperty:Bioavailability2025868191442012-07-31T13:15:11Z{{DatatypeProperty +| rdfs:label@en = Bioavailability +| rdfs:comment@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)." +| rdfs:domain = Drug +| rdfs:range = xsd:float +| owl:equivalentProperty = http://ncicb.nci.nih.gov/xml/owl/EVS/Thesaurus.owl#bioavailability +}}OntologyProperty:Bioclimate2027082334502014-04-03T14:40:10Z{{DatatypeProperty +| labels = +{{label|en|bioclimate}} +{{label|de|Bioklima}} +| rdfs:domain = Place +| rdfs:range = xsd:string +}}OntologyProperty:Biome202603358692014-07-08T12:49:38Z +{{ObjectProperty +| rdfs:label@en = biome +| rdfs:label@ja = 生物群系 +| rdfs:subPropertyOf = dul:isClassifiedBy +}}OntologyProperty:Bird2027136567592022-02-28T17:26:05Z{{ObjectProperty +| labels = + {{label|en|bird}} + {{label|de|Vogel}} + {{label|el|πτηνά}} + {{label|ga|éan}} + {{label|pl|ptak}} + {{label|fr|oiseau}} +| comments = + {{comment|en|Birds are uniformly vertebrate animals, the vast majority of which can fly with their wings.}} + {{comment|fr|Les oiseaux sont uniformément des animaux vertébrés, dont la grande majorité peut voler avec leurs ailes.}} + {{comment|el|Τα πτηνά είναι ζώα ομοιόθερμα σπονδυλωτά, που στη συντριπτική πλειονότητα τους μπορούν να πετούν με τις πτέρυγες ή φτερούγες τους.}} +| rdfs:domain = Place +| rdfs:range = Species +}}OntologyProperty:BirthDate202604560802021-10-02T16:36:26Z{{DatatypeProperty +| labels = +{{label|en|birth date}} +{{label|bn|জন্মদিন}} +{{label|ca|data de naixement}} +{{label|de|Geburtsdatum}} +{{label|el|ημερομηνία_γέννησης}} +{{label|fr|date de naissance}} +{{label|ga|dáta breithe}} +{{label|ja|生年月日}} +{{label|nl|geboortedatum}} +{{label|pl|data urodzenia}} +| rdfs:domain = Animal +| rdfs:range = xsd:date +| rdf:type = owl:FunctionalProperty +| owl:equivalentProperty = schema:birthDate, wikidata:P569, gnd:dateOfBirth +}}OntologyProperty:BirthName202605474352015-04-01T14:21:02Z{{DatatypeProperty +| labels = +{{label|en|birth name}} +{{label|ca|nom de naixement}} +{{label|de|Geburtsname}} +{{label|el|όνομα_γέννησης}} +{{label|nl|geboortenaam}} +{{label|pl|imię i nazwisko przy urodzeniu}} +| rdfs:domain = Person +| rdfs:range = rdf:langString +| owl:equivalentProperty = wikidata:P1477 +}}OntologyProperty:BirthPlace202606560812021-10-02T16:37:23Z{{ObjectProperty +| labels = + {{label|en|birth place}} + {{label|ca|lloc de naixement}} + {{label|de|Geburtsort}} + {{label|el|τόπος_γέννησης}} + {{label|fr|lieu de naissance}} + {{label|ga|áit bhreithe}} + {{label|ja|出生地}} + {{label|nl|geboorteplaats}} + {{label|pl|miejsce urodzenia}} +| comments = + {{comment|en|where the person was born}} +| rdfs:domain = Animal +| rdfs:range = Place +| owl:equivalentProperty = schema:birthPlace, wikidata:P19 +| rdfs:subPropertyOf = dul:hasLocation +}}OntologyProperty:BirthSign2027770535512019-08-22T14:16:02Z{{ObjectProperty +| labels = +{{label|en|birth sign}} +{{label|de|Sternzeichen}} +| rdfs:domain = Person +}}OntologyProperty:BirthYear202607537902020-10-26T19:55:45Z{{DatatypeProperty +| labels = +{{label|en|birth year}} +{{label|el|έτος γέννησης}} +{{label|nl|geboortejaar}} +{{label|de|Geburtsjahr}} +{{label|ja|生年}} +| rdfs:domain = Person +| rdfs:range = xsd:gYear +| rdf:type = owl:FunctionalProperty +| owl:equivalentProperty = wikidata:P569, gnd:dateOfBirth +}}OntologyProperty:Bishopric20211238478552015-05-07T14:25:11Z{{ObjectProperty +| rdfs:label@en = bishopric +| rdfs:label@bg = архиерейско наместничество +| rdfs:domain = ReligiousBuilding +| rdfs:comment@en = A bishopric (diocese or episcopal see) is a district under the supervision of a bishop. It is divided into parishes. Compare with eparchy +}}OntologyProperty:BlackLongDistancePisteNumber2027200573422022-03-31T11:08:37Z{{DatatypeProperty +| labels = + {{label|en|long distance piste number}} + {{label|fr|numéro de piste noire longue distance}} +| rdfs:domain = Place +| rdfs:range = xsd:nonNegativeInteger +}}OntologyProperty:BlackSkiPisteNumber2027193570012022-03-09T12:20:00Z{{DatatypeProperty +| labels = + {{label|en|black ski piste number}} + {{label|fr|numéro de piste de ski noire}} +| rdfs:domain = Place +| rdfs:range = xsd:nonNegativeInteger +}}OntologyProperty:Blazon2026775510752016-05-12T16:55:42Z{{DatatypeProperty +| labels = +{{label|en|blazon}} +{{label|de|Wappen}} +{{label|fr|blason}} +{{label|bg|емблема}} +| comments = +{{comment|en|Coat of arms (heraldic image) or emblem }} +| rdfs:range = xsd:string +}}OntologyProperty:BlazonCaption2026776278662013-07-16T15:04:14Z{{DatatypeProperty +| labels = +{{label|en|Blazon caption}} +| rdfs:domain = Blazon +| rdfs:range = xsd:string +}}OntologyProperty:BlazonLink2027116256492013-05-26T14:55:03Z{{DatatypeProperty +| labels = +{{label|en|blazon link}} +| rdfs:range = xsd:string +}}OntologyProperty:BlazonRatio2027562267742013-07-01T14:45:25Z{{DatatypeProperty +| labels = +{{label|en|blazon ratio}} +| rdfs:range = xsd:double +}}OntologyProperty:Block2024439334532014-04-03T14:40:31Z{{DatatypeProperty +| rdfs:label@en = block +| rdfs:label@de = Block +| rdfs:label@tr = blok +| rdfs:domain = VolleyballPlayer +| rdfs:range = xsd:string +}}OntologyProperty:BlockAlloy202608358712014-07-08T12:50:08Z +{{ObjectProperty +| labels = + {{label|en|block alloy}} + {{label|el|κράμα μετάλλου}} +| rdfs:domain = AutomobileEngine +| rdfs:subPropertyOf = dul:coparticipatesWith +}}OntologyProperty:BloodGroup2027771569992022-03-09T12:17:25Z{{DatatypeProperty +| labels = + {{label|en|blood group}} + {{label|fr|groupe sanguin}} + {{label|el|ομάδα αίματος}} + {{label|de|Blutgruppe}} +| rdfs:domain = Person +| rdfs:range = xsd:string +}}OntologyProperty:BloodType2023295573412022-03-31T11:05:36Z{{ObjectProperty +| labels = + {{label|en|blood type}} + {{label|fr|groupe sanguin}} + {{label|el|ομάδα αίματος}} + {{label|de|Blutgruppe}} + {{label|pt|tipo sanguíneo}} + {{label|nl|bloedgroep}} + {{label|ja|血液型}} +| rdfs:domain = Person +| rdfs:subPropertyOf = dul:isClassifiedBy +}}OntologyProperty:BlueLongDistancePisteNumber2027202257522013-06-01T13:25:17Z{{DatatypeProperty +| labels = +{{label|en|blue long distance piste number}} +| rdfs:domain = Place +| rdfs:range = xsd:nonNegativeInteger +}}OntologyProperty:BlueSkiPisteNumber2027195570022022-03-09T12:20:43Z{{DatatypeProperty +| labels = + {{label|en|blue ski piste number}} + {{label|fr|numéro de piste de ski bleue}} +| rdfs:domain = Place +| rdfs:range = xsd:nonNegativeInteger +}}OntologyProperty:BnfId2028423528712018-02-13T10:34:40Z{{DatatypeProperty +| labels = +{{label|en|BNF Id}} +| comments = +{{comment|en|Authority data of people listed in the general catalogue of the National Library of France}} +| rdfs:range = xsd:string +| owl:equivalentProperty = wikidata:P268 +| rdfs:subPropertyOf = code +}}OntologyProperty:Board202609358732014-07-08T12:50:26Z +{{ObjectProperty +| labels = + {{label|en|board}} + {{label|el|επιβιβάζομαι}} + {{label|nl|bestuur}} + {{label|ja|取締役会}} +| rdfs:domain = Person +| rdfs:subPropertyOf = dul:isMemberOf +}}OntologyProperty:BodyDiscovered202611491442015-10-13T09:55:44Z{{DisclaimerOntologyProperty}} + + +{{ObjectProperty +| labels = + {{label|en|body discovered}} + {{label|de|Leiche entdeckt}} + {{label|el|ανακάλυψη σώματος}} + {{label|ja|遺体発見}} +| rdfs:domain = Person +| rdfs:range = Place +| rdfs:subPropertyOf = dul:hasLocation +}}OntologyProperty:BodyStyle202613358752014-07-08T12:50:42Z +{{ObjectProperty +| labels = + {{label|en|body style}} + {{label|el|τύπος σώματος}} +| rdfs:domain = Automobile +| rdfs:subPropertyOf = dul:isDescribedBy +}}OntologyProperty:Boiler2022539573392022-03-31T11:01:54Z{{ObjectProperty +| labels = + {{label|en|boiler}} + {{label|fr|chaudière}} + {{label|de|Kessel}} + {{label|el|δοχείο βράσης}} +| rdfs:domain = Locomotive +| rdfs:subPropertyOf = dul:hasComponent +}}OntologyProperty:BoilerPressure2022540573402022-03-31T11:03:56Z{{ObjectProperty +| labels = + {{label|en|boiler pressure}} + {{label|fr|pression de la chaudière}} + {{label|de|Kesseldruck}} + {{label|el|πίεση δοχείου βράσης}} +| rdfs:domain = Locomotive +| rdfs:subPropertyOf = dul:isClassifiedBy +}}OntologyProperty:BoilingPoint202614328552014-03-20T21:56:18Z{{DatatypeProperty +| labels = +{{label|en|boiling point}} +{{label|el|σημείο βρασμού}} +{{label|de|Siedepunkt}} +{{label|fr|point d'ébullition}} +{{label|ja|沸点}} +{{label|nl|kookpunt}} +| rdfs:domain = ChemicalSubstance +| rdfs:range = Temperature +}}OntologyProperty:Booster202615358782014-07-08T12:51:06Z +{{ObjectProperty +| labels = + {{label|en|booster}} + {{label|el|προωθητής}} +| rdfs:domain = SpaceMission +| rdfs:range = Rocket +| rdfs:subPropertyOf = dul:hasParticipant +}}OntologyProperty:Border202616523032017-10-08T20:22:38Z +{{ObjectProperty +| labels = + {{label|en|border}} + {{label|de|Grenze}} + {{label|el|σύνορα}} +| rdfs:domain = owl:Thing +| rdfs:range = Area +| rdfs:subPropertyOf = dul:hasCommonBoundary +}}OntologyProperty:Borough2022135358802014-07-08T12:51:23Z +{{ObjectProperty +| labels = + {{label|en|borough}} + {{label|de|Bezirk}} + {{label|el|δήμος}} + {{label|nl|stadsdeel}} +| rdfs:domain = PopulatedPlace +| rdfs:range = PopulatedPlace +| rdfs:subPropertyOf = dul:hasLocation +}}OntologyProperty:Bourgmestre2026967573572022-03-31T12:01:41Z{{ObjectProperty +| labels = + {{label|en|bourgmestre}} + {{label|fr|bourgmestre}} +| rdfs:domain = Settlement +| rdfs:range = Person +| rdfs:subPropertyOf = dul:sameSettingAs +}}OntologyProperty:BowlRecord202617235782013-01-26T11:22:26Z{{DatatypeProperty +| labels = +{{label|en|bowl record}} +{{label|el|ρεκόρ μπόουλινγκ}} +| rdfs:domain = CollegeCoach +| rdfs:range = xsd:string +}}OntologyProperty:BowlingSide20211896522712017-10-08T13:52:55Z{{DatatypeProperty +| rdfs:label@en = bowling side +| rdfs:label@de = Werfarm +| rdfs:domain = Athlete +| rdfs:range = xsd:string +| rdfs:comment = The side the player bowls, Left, Right, or Unknown. +}}OntologyProperty:BoxerStyle2027847526452017-11-03T16:10:09Z{{ObjectProperty +| labels = + {{label|en|boxing style}} + {{label|de|Boxstil}} +| rdfs:domain = Boxer +| rdfs:range = Sport +}}OntologyProperty:BpnId2028424528622018-02-13T08:36:00Z{{DatatypeProperty +| labels = +{{label|en|BPN Id}} +| comments = +{{comment|en|Dutch project with material for 40,000 digitized biographies, including former colonies of the Netherlands.}} +| rdfs:range = xsd:string +| rdfs:subPropertyOf = code +}}OntologyProperty:BrainInfoNumber202618230382013-01-15T23:04:27Z{{DatatypeProperty +| labels = +{{label|en|brain info number}} +{{label|el|αριθμός νοητικής πληροφόρησης}} +| rdfs:domain = Brain +| rdfs:range = xsd:string +}}OntologyProperty:BrainInfoType202619230392013-01-15T23:05:56Z{{DatatypeProperty +| labels = +{{label|en|brain info type}} +{{label|el|τύπος νοητικής πληροφόρησης}} +| rdfs:domain = Brain +| rdfs:range = xsd:string +}}OntologyProperty:BranchFrom202621573512022-03-31T11:42:55Z{{ObjectProperty +| labels = + {{label|en|branch from}} + {{label|fr|vient de}} + {{label|el|παράρτημα από}} +| rdfs:domain = AnatomicalStructure +| rdfs:range = AnatomicalStructure +| rdfs:subPropertyOf = dul:hasCommonBoundary +}}OntologyProperty:BranchTo202623573502022-03-31T11:42:24Z{{ObjectProperty +| labels = + {{label|en|branch to}} + {{label|fr|va vers}} + {{label|el|υποκατάστημα}} +| rdfs:domain = AnatomicalStructure +| rdfs:range = AnatomicalStructure +| rdfs:subPropertyOf = dul:hasCommonBoundary +}}OntologyProperty:Brand202624358842014-07-08T12:52:05Z +{{ObjectProperty +| rdfs:label@en = brand +| rdfs:label@el = μάρκα +| rdfs:domain = WrestlingEvent +| rdfs:range = TelevisionShow +| rdfs:subPropertyOf = dul:coparticipatesWith +}}OntologyProperty:Breeder2026178358852014-07-08T12:52:13Z +{{ObjectProperty +| labels = + {{label|en|breeder}} + {{label|de|Züchter}} + {{label|el|κτηνοτρόφος}} +| rdfs:domain = Animal +| rdfs:range = Person +| rdfs:subPropertyOf = dul:coparticipatesWith +}}OntologyProperty:BridgeCarries2023435217332013-01-03T16:42:18Z{{DatatypeProperty +| rdfs:label@en = bridge carries +| rdfs:label@el = γέφυρα μεταφοράς +| rdfs:domain = Bridge +| rdfs:range = xsd:string +| rdfs:comment@en = Type of vehicles the bridge carries. +}}OntologyProperty:BrinCode20212058529162018-02-20T15:52:20Z{{DatatypeProperty +| rdfs:label@en = BRIN code +| rdfs:label@nl = Brin code +| rdfs:domain = EducationalInstitution +| rdfs:range = xsd:string +| rdfs:subPropertyOf = code +| rdfs:comment@en = The code used by the Dutch Ministry of Education to identify a school (as an organisation) +}}OntologyProperty:BritishComedyAwards202625358862014-07-08T12:52:21Z +{{ObjectProperty +| rdfs:label@en = British Comedy Awards +| rdfs:label@de = British Comedy Awards +| rdfs:label@el = Βρετανικά Βραβεία Κωμωδίας +| rdfs:domain = Comedian +| rdfs:range = Award +| rdfs:subPropertyOf = dul:coparticipatesWith +}}OntologyProperty:BritishOpen2028051282062013-09-03T18:49:40Z{{DatatypeProperty +| labels = +{{label|en|britishOpen}} +| rdfs:domain = Athlete +| rdfs:range = xsd:string +}}OntologyProperty:BritishWins2027648273172013-07-10T11:27:34Z{{ObjectProperty +| labels = +{{label|en|british wins}} +| rdfs:domain = Person +| rdfs:range = skos:Concept +}}OntologyProperty:BroadcastArea202626573522022-03-31T11:46:13Z{{ObjectProperty +| labels = + {{label|en|broadcast area}} + {{label|fr|couverture de diffusion}} + {{label|de|Empfangsgebiet}} + {{label|el|περιοχή αναμετάδοσης}} +| rdfs:domain = Broadcaster +| rdfs:range = PopulatedPlace +| rdfs:subPropertyOf = dul:hasLocation +}}OntologyProperty:BroadcastNetwork2023027535442019-06-28T18:34:35Z +{{ObjectProperty +| rdfs:label@en = broadcast network +| rdfs:label@ar = الشبكة +| rdfs:label@de = Sendergruppe +| rdfs:label@el = τηλεοπτικό κανάλι +| rdfs:label@fr = chaîne de télévision généraliste +| rdfs:domain = Broadcaster +| rdfs:range = BroadcastNetwork +| rdfs:comment@en = The parent broadcast network to which the broadcaster belongs. +| rdfs:comment@de = Die Sendergruppe zu dem der Rundfunkveranstalter gehört. +| rdfs:subPropertyOf = dul:isMemberOf +}}OntologyProperty:BroadcastRepeater2023083573562022-03-31T11:59:32Z{{DatatypeProperty +| labels = + {{label|en|broadcast repeater}} + {{label|fr|répéteur de diffusion}} + {{label|el|επαναληπτική αναμετάδοση}} +| comments = + {{comment|en|A repeater is an electronic device that receives a signal and retransmits it at a higher level and/or higher power, or onto the other side of an obstruction, so that the signal can cover longer distances (http://en.wikipedia.org/wiki/Repeater).}} + {{comment|fr|Un répéteur est un équipement électronique qui reçoit un signal et le retransmet avec un niveau supérieur et/ou à une puissance plus grande, ou après un obstacle de sorte à ce que le signal puisse couvrir des distances plus grandes (https://fr.wikipedia.org/wiki/Répéteur).}} +| rdfs:domain = Broadcaster +| rdfs:range = xsd:string +}}OntologyProperty:BroadcastStationClass2023086217412013-01-03T17:04:23Z{{DatatypeProperty +| rdfs:label@en = broadcast station class +| rdfs:label@el = αναμετάδοση ραδιοφωνικού σταθμού +| rdfs:domain = Broadcaster +| rdfs:range = xsd:string +| rdfs:comment@en = The broadcast station class (http://en.wikipedia.org/wiki/List_of_North_American_broadcast_station_classes). +}}OntologyProperty:BroadcastTranslator2023081217422013-01-03T17:06:33Z{{DatatypeProperty +| rdfs:label@en = broadcast translator +| rdfs:label@el = αναμετάδοση μεταφραστή +| rdfs:domain = Broadcaster +| rdfs:range = xsd:string +| rdfs:comment@en = A broadcast relay station, relay transmitter, broadcast translator (U.S.), rebroadcaster (Canada), or repeater (two-way radio) is a broadcast transmitter which relays, repeats, or reflects the signal of another radio station or television station (http://en.wikipedia.org/wiki/Broadcast_relay_station). +}}OntologyProperty:Broadcaster20212283535412019-06-28T18:19:10Z{{Class +| labels = +{{label|ar|الشبكة}} +{{label|en|broadcaster}} +{{label|ga|craoltóir}} +{{label|fr|diffuseur}} +{{label|el|εκφωνητής}} +{{label|nl|omroep}} +{{label|de|Rundfunkveranstalter}} +{{label|ja|放送事業者}} +{{label|ko|방송}} +{{label|it|emittente}} +| rdfs:subClassOf = Organisation +| comments = +{{comment|en|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)}} +{{comment|el|Ο ραδιοτηλεοπτικός φορέας είναι ένας οργανισμός που είναι υπεύθυνος για την παραγωγή ραδιοφωνικών ή τηλεοπτικών προγραμμάτων και / ή τη διαβίβασή τους}} +{{comment|de|Ein Rundfunkveranstalter (oder auch Sendeunternehmen) betreibt Hörfunk- oder Fernsehprogramme. (http://de.wikipedia.org/wiki/Rundfunkveranstalter - 28/03/2011)}} +| owl:equivalentClass = wikidata:Q15265344 +}}OntologyProperty:BronzeMedalDouble2027735567142022-02-28T13:37:59Z{{DatatypeProperty +| labels = +{{label|en|bronze medal double}} +{{label|fr|double médaille de bronze}} +{{label|de|Bronzemedaille Doppel}} +| rdfs:domain = TennisPlayer +| rdfs:range = xsd:string +}}OntologyProperty:BronzeMedalMixed2027738500962016-01-04T12:54:54Z{{DatatypeProperty +| labels = +{{label|en|bronze medal mixed}} +{{label|de|Bronzemedaille gemischt}} +| rdfs:domain = TennisPlayer +| rdfs:range = xsd:string +}}OntologyProperty:BronzeMedalSingle2027732500972016-01-04T12:55:25Z{{DatatypeProperty +| labels = +{{label|en|bronze medal single}} +{{label|de|Bronzemedaille Einzel}} +| rdfs:domain = TennisPlayer +| rdfs:range = xsd:string +}}OntologyProperty:BronzeMedalist2025668568022022-02-28T21:54:35Z +{{ObjectProperty +| labels = + {{label|en|bronze medalist}} + {{label|fr|médaille de bronze}} + {{label|de|Bronzemedaillengewinner}} + {{label|pt|medalha de bronze}} + {{label|el|χάλκινο μετάλλιο}} + {{label|nl|bronzen medaille drager}} +| rdfs:domain = SportsEvent +| rdfs:range = Person +| rdfs:subPropertyOf = Medalist, dul:hasParticipant +}}OntologyProperty:Brother20212286567152022-02-28T13:39:49Z{{ObjectProperty +| labels = + {{label|en|brother}} + {{label|nl|broer}} + {{label|de|Bruder}} + {{label|el|αδελφός}} + {{label|fr|frère}} + {{label|ja|兄}} + {{label|ar|شقيق}} +| rdfs:domain = Man +| rdfs:range = Person +| owl:propertyDisjointWith = parent +}}OntologyProperty:Budget202628538032020-12-01T17:58:07Z{{DatatypeProperty +| labels = +{{label|en|budget}} +{{label|da|budget}} +{{label|de|Etat}} +{{label|nl|budget}} +{{label|el|προϋπολογισμός}} +| rdfs:range = Currency +| owl:equivalentProperty=wikidata:P2769 +}}OntologyProperty:BudgetYear2026984334712014-04-03T14:42:00Z{{DatatypeProperty +| labels = +{{label|en|budget year}} +{{label|de|Haushaltsjahr}} +| rdfs:range = xsd:string +| rdfs:domain = Place +}}OntologyProperty:Builder2022534475412015-04-03T08:47:39Z{{ObjectProperty +| labels = + {{label|en|builder}} + {{label|de|Baumeister}} + {{label|nl|bouwer}} + {{label|el|οικοδόμος}} +| rdfs:subPropertyOf = dul:coparticipatesWith +| owl:equivalentProperty = wikidata:P176 +}}OntologyProperty:Building202629358912014-07-08T12:53:06Z +{{ObjectProperty +| rdfs:label@en = building +| rdfs:label@de = Gebäude +| rdfs:label@nl = gebouw +| rdfs:label@el = κτίριο +| rdfs:domain = Island +| rdfs:range = Building +| rdfs:subPropertyOf = dul:isLocationOf +}}OntologyProperty:BuildingEndDate202630567232022-02-28T14:27:07Z{{DatatypeProperty +| labels = +{{label|en|building end date}} +{{label|el|Ημερομηνία λήξης κατασκευής}} +{{label|fr|date de fin de construction}} +| comments = +{{comment|en|Building end date of an ArchitecturalStructure, man-made Lake, etc. For older structures this can be just a year or century, for newer structures an exact date is preferred}} +{{comment|fr|Date de fin de construction d'une structure architecturale, d'un lac artificiel, etc. Pour les structures plus anciennes cela peut être simplement une année ou un siècle, pour les structures plus récentes il est préférable de donner la date exacte}} +| rdfs:range = xsd:string +}}OntologyProperty:BuildingEndYear2023387217222013-01-03T16:26:25Z{{DatatypeProperty +| labels = +{{label|en|building end year}} +{{label|nl|bouw eindjaar}} +{{label|el|έτος λήξης κατασκευής}} +| rdfs:domain = ArchitecturalStructure +| rdfs:range = xsd:gYear +}}OntologyProperty:BuildingStartDate202631567212022-02-28T14:16:28Z{{DatatypeProperty +| labels = +{{label|en|building start date}} +{{label|fr|date de début de construction}} +{{label|el|Ημερομηνία έναρξης κατασκευής}} +| comments = +{{comment|en|Building start date of an ArchitecturalStructure, man-made Lake, etc. For older structures this can be just a year or century, for newer structures an exact date is preferred}} +{{comment|fr|Date de début de construction d'une structure architecturale, d'un lac artificiel, etc. Pour des structures plus anciennes cela peut être simplement l'année ou le siècle, pour les structures plus récentes il est préférable de donner la date exacte}} +| rdfs:range = xsd:string +}}OntologyProperty:BuildingStartYear2023388568262022-03-01T00:25:15Z{{DatatypeProperty +| labels = +{{label|en|building start year}} +{{label|fr|année du début de construction}} +{{label|nl|bouw start jaar}} +{{label|el|έτος έναρξης κατασκευής}} +| rdfs:domain = ArchitecturalStructure +| rdfs:range = xsd:gYear +}}OntologyProperty:BuildingType2026257358922014-07-08T12:53:17Z +{{ObjectProperty +| labels = + {{label|en|buildingType}} + {{label|el|Τύπος κτιρίου}} + {{label|nl|soort gebouw}} +| comments = + {{comment|en|Type is too general. We should be able to distinguish types of music from types of architecture}} + {{comment|nl|Type is te algemeen. We moeten soorten muziek van soorten gebouwen kunnen onderscheiden}} + {{comment|el|Ο τύπος είναι πολύ γενικό.Θα πρέπει να είναι σε θέση να διακρίνουν τα είδη της μουσικής από τους τύπους της αρχιτεκτονικής}} +| rdfs:domain = Building +| rdfs:range = owl:Thing +| rdf:type = | rdfs:subPropertyOf = Type +| owl:equivalentProperty = +| rdfs:subPropertyOf = dul:isClassifiedBy +}}OntologyProperty:BustSize2022410433112015-02-06T12:16:45Z{{DatatypeProperty + |rdfs:label@en=bust size + |rdfs:label@el=Μέγεθος προτομής + |rdfs:label@ja=バスト + |rdfs:label@pl=biust + |rdfs:label@bg=размер бюст + |rdfs:domain=Person + |rdfs:range=Length +}}OntologyProperty:BustWaistHipSize20210988433172015-02-06T12:19:51Z{{DatatypeProperty + |rdfs:label@en=bust-waist-hip Size + |rdfs:label@bg=размер бюст-талия-ханш + |rdfs:domain=Person + |rdfs:range=xsd:string + |rdfs:comment@en=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 +}}OntologyProperty:CableCar2027188589642022-06-21T05:51:39Z{{DatatypeProperty +| labels = +{{label|en|cable car}} +{{label|de|Drahtseilbahn}} +{{label|ur|طَنابی گاڑی}} +| rdfs:domain = Place +| rdfs:range = xsd:nonNegativeInteger +}}OntologyProperty:CalculationNeeds20211769589692022-06-21T06:00:29Z +{{ObjectProperty +| rdfs:label@en = its calculation needs +|labels= +{{label|ur|حساب کی ضرورت}} +| rdfs:label@ru = вычисление требует +| rdfs:domain = owl:Thing +| rdfs:range = owl:Thing +}}OntologyProperty:CallSign202632589702022-06-21T06:06:11Z{{DatatypeProperty +| rdfs:label@en = call sign +| rdfs:label@pt = indicativo de chamada +|labels= +{{label|ur|تعارفی نشان}} +| rdfs:range = xsd:string +| rdfs:comment@en = 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. +| rdfs:comment@pt = Indicativo de chamada (também chamado de call-sign, call letters ou simplesmente call) é uma designação única de uma estação de transmissão de rádio. Também é conhecido, de forma errônea, como prefixo. +|comments={{comment|ur|تعارفی نشان (جسے کال کا نام یا کال لیٹر بھی کہا جاتا ہے، یا مختصراً کال کے طور پر جانا جاتا ہے) ٹرانسمیٹنگ اسٹیشن کے لیے ایک منفرد عہدہ ہے۔}} +}}OntologyProperty:CallsignMeaning202633589752022-06-21T06:11:50Z{{DatatypeProperty +| rdfs:label@en = call sign meaning +|labels= +{{label|ur|تعارفی علامت کا مطلب}} +| rdfs:domain = Broadcaster +| rdfs:range = xsd:string +| rdfs:comment@en = The out written call sign. +|comments={{comment|ur|باہر لکھا ہوا کال سائن۔}} +}}OntologyProperty:Campus202634589822022-06-21T06:18:10Z{{ObjectProperty +| labels = + {{label|en|campus}} + {{label|fr|campus}} + {{label|de|Campus}} + {{label|el|πανεπιστημιούπολη}} + {{label|ur|جامع کا علقه}} +| comments = + {{comment|en|Campus means any urban complex that offers residential, teaching and research facilities to the students of a university.}} + {{comment|fr|Tout complexe urbain qui offre des installations résidentielles, d'enseignement et de recherche aux étudiants d'une université.}} + {{comment|el|Πανεπιστημιούπολη εννοείται κάθε πολεοδομικό συγκρότημα που προσφέρει οικιστικές, διδακτικές και ερευνητικές διευκολύνσεις στους φοιτητές ενός πανεπιστημίου.}} + {{comment|ur|جامع کا علقه کا مطلب ہے کوئی بھی شہری جامع کا علقه جو جامع کے طلباء کو رہائشی، تدریسی اور تحقیقی سہولیات فراہم کرتا ہے۔}} +| rdfs:domain = University +| rdfs:subPropertyOf = dul:hasLocation +}}OntologyProperty:CampusSize202637589842022-06-21T06:27:06Z{{DatatypeProperty +| rdfs:label@en = campus size +| rdfs:domain = School +| rdfs:range = Area + +|labels={{label|ur|جامعہ کا ناپ}} +}}OntologyProperty:CampusType202638589862022-06-21T06:37:46Z{{DatatypeProperty +| rdfs:label@en = campus type +|labels={{label|ur|جامعہ کی قسم}} +| rdfs:domain = EducationalInstitution +| rdfs:range = rdf:langString +}}OntologyProperty:CanBaggageChecked2023237589882022-06-21T06:40:09Z{{DatatypeProperty +| rdfs:label@en = can baggage checked +|labels={{label|ur|سامان کی جانچ پڑتال کر سکتے ہیں}} +| rdfs:label@de = Gepäckkontrolle möglich +| rdfs:domain = Station +| rdfs:range = xsd:boolean +| rdfs:comment@en = Whether bags can be checked. +}}OntologyProperty:CannonNumber2027205257552013-06-01T13:27:37Z{{DatatypeProperty +| labels = +{{label|en|cannon number}} +| rdfs:domain = Place +| rdfs:range = xsd:nonNegativeInteger +}}OntologyProperty:CanonizedBy202639570042022-03-09T12:25:30Z{{ObjectProperty +| labels = + {{label|en|canonized by}} + {{label|fr|canonisé par}} + {{label|nl|heilig verklaard door}} +| rdfs:domain = Saint +| rdfs:range = Person +| rdfs:subPropertyOf = dul:coparticipatesWith +}}OntologyProperty:CanonizedDate202640570052022-03-09T12:26:23Z{{DatatypeProperty +| labels = + {{label|en|canonized date}} + {{label|fr|date de canonisation}} + {{label|nl|heiligverklaring datum}} +| rdfs:domain = Saint +| rdfs:range = xsd:date +}}OntologyProperty:CanonizedPlace202641570062022-03-09T12:27:25Z{{ObjectProperty +| labels = + {{label|en|canonized place}} + {{label|fr|lieu de canonisation}} + {{label|nl|heiligverklaring plaats}} +| rdfs:domain = Saint +| rdfs:range = PopulatedPlace +| rdfs:subPropertyOf = dul:coparticipatesWith +}}OntologyProperty:Canton202642358972014-07-08T12:53:58Z +{{ObjectProperty +| labels = + {{label|en|canton}} + {{label|de|Kanton}} + {{label|nl|kanton}} + {{label|fr|canton}} +| rdfs:domain = Settlement +| rdfs:range = Settlement +| rdfs:subPropertyOf = dul:hasLocation +}}OntologyProperty:Capacity202643487062015-08-10T10:29:40Z{{DatatypeProperty +| rdfs:label@en = capacity +| rdfs:label@de = Kapazität +| rdfs:label@fr = capacité +| rdfs:comment@en = Number of people who can be served by a Train or other service; or participate in a SoccerClub, CricketTeam, etc +| rdfs:range = xsd:nonNegativeInteger +}}OntologyProperty:CapacityFactor2029591355172014-06-28T22:30:10Z{{DatatypeProperty +| rdfs:label@en = capacity factor +| rdfs:domain = PowerStation +| rdfs:range = xsd:float +}}OntologyProperty:Capital202644517892017-01-03T12:52:31Z{{ObjectProperty +| labels = + {{label|de|Hauptstadt}} + {{label|en|capital}} + {{label|el|πρωτεύουσα}} + {{label|fr|capitale}} + {{label|es|capital}} + {{label|pt|capital}} + {{label|nl|hoofdstad}} + {{label|hi|राजधानी}} +| rdfs:domain = PopulatedPlace +| rdfs:range = City +| rdfs:subPropertyOf = administrativeHeadCity, dul:isLocationOf +| owl:equivalentProperty = wikidata:P36 +}}OntologyProperty:CapitalCoordinates2027118334792014-04-03T14:42:31Z{{DatatypeProperty +| labels = +{{label|en|capital coordinates}} +{{label|de|Hauptstadt Koordinaten}} +| rdfs:domain = Place +| rdfs:range = xsd:string +}}OntologyProperty:CapitalCountry202645358992014-07-08T12:54:26Z +{{ObjectProperty +| rdfs:label@en = capital country +| rdfs:label@de = Hauptstadt Land +| rdfs:domain = Island +| rdfs:range = Country +| rdfs:subPropertyOf = dul:hasLocation +}}OntologyProperty:CapitalDistrict202646359002014-07-08T12:54:35Z +{{ObjectProperty +| rdfs:label@en = capital district +| rdfs:domain = Island +| rdfs:range = PopulatedPlace +| rdfs:subPropertyOf = dul:hasLocation +}}OntologyProperty:CapitalElevation20264778982010-05-28T12:50:54Z{{DatatypeProperty +| rdfs:label@en = capital elevation +| rdfs:domain = Island +| rdfs:range = Length +}}OntologyProperty:CapitalMountain202648359012014-07-08T12:54:42Z +{{ObjectProperty +| rdfs:label@en = capital mountain +| rdfs:domain = Island +| rdfs:range = Mountain +| rdfs:subPropertyOf = dul:hasLocation +}}OntologyProperty:CapitalPlace202649359022014-07-08T12:54:51Z +{{ObjectProperty +| rdfs:label@en = capital place +| rdfs:domain = Island +| rdfs:range = PopulatedPlace +| rdfs:subPropertyOf = dul:hasLocation +}}OntologyProperty:CapitalPosition202650359032014-07-08T12:54:59Z +{{ObjectProperty +| rdfs:label@en = capital position +| rdfs:domain = Island +| rdfs:range = geo:SpatialThing +| rdfs:subPropertyOf = dul:hasLocation +}}OntologyProperty:CapitalRegion202651359042014-07-08T12:55:07Z +{{ObjectProperty +| rdfs:label@en = capital region +| rdfs:label@de = Hauptstadtregion +| rdfs:domain = Island +| rdfs:range = PopulatedPlace +| rdfs:subPropertyOf = dul:hasLocation +}}OntologyProperty:CaptureDate2023102567392022-02-28T15:36:15Z{{DatatypeProperty +| labels = + {{label|en|capture date}} + {{label|fr|date de capture}} +| rdfs:domain = Ship +| rdfs:range = xsd:date +}}OntologyProperty:CarNumber20265779042010-05-28T12:51:43Z{{DatatypeProperty +| rdfs:label@en = car number +| rdfs:domain = FormulaOneRacer +| rdfs:range = xsd:integer +}}OntologyProperty:Carbohydrate20211302487642015-08-13T10:15:26Z{{DatatypeProperty +| labels = +{{label|en|carbohydrate}} +| rdfs:domain = Food +| rdfs:range = Mass +| comments = +{{comment|en|Amount of carbohydrates per servingSize of a Food}} +}}OntologyProperty:Carcinogen2028938334822014-04-03T14:42:51Z{{DatatypeProperty +| rdfs:label@en = carcinogen +| rdfs:label@de = Karzinogen +| rdfs:label@nl = kankerverwekkend +| rdfs:domain = ChemicalSubstance +| rdfs:range = xsd:string +}}OntologyProperty:CareerPoints20265278992010-05-28T12:51:03Z{{DatatypeProperty +| rdfs:label@en = career points +| rdfs:domain = FormulaOneRacer +| rdfs:range = xsd:integer +}}OntologyProperty:CareerPrizeMoney202653236932013-02-11T08:15:31Z{{DatatypeProperty +| labels = +{{label|en|career prize money}} +{{label|nl|prijzengeld loopbaan}} +| rdfs:domain = TennisPlayer +| rdfs:range = Currency +}}OntologyProperty:CareerStation2026504359052014-07-08T12:55:27Z +{{ObjectProperty +| labels = + {{label|en|career station}} + {{label|de|Karrierestation}} + {{label|nl|carrièrestap}} +| rdfs:range = CareerStation +| rdfs:domain = Person +| comments = + {{comment|en|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.}} +| rdfs:subPropertyOf = dul:hasSetting +}}OntologyProperty:CargoFuel20265479012010-05-28T12:51:19Z{{DatatypeProperty +| rdfs:label@en = cargo fuel +| rdfs:domain = Spacecraft +| rdfs:range = Mass +}}OntologyProperty:CargoGas20265579022010-05-28T12:51:25Z{{DatatypeProperty +| rdfs:label@en = cargo gas +| rdfs:domain = Spacecraft +| rdfs:range = Mass +}}OntologyProperty:CargoWater20265679032010-05-28T12:51:35Z{{DatatypeProperty +| rdfs:label@en = cargo water +| rdfs:domain = Spacecraft +| rdfs:range = Mass +}}OntologyProperty:CasNumber202658486292015-08-06T14:12:40Z{{DatatypeProperty +| rdfs:label@en = CAS number +| rdfs:label@fr = numéro CAS +| rdfs:label@ja = CAS番号 +| rdfs:comment@en = Chemical Abstracts Service number. Applicable to ChemicalCompound or Biomolecule (eg Protein) +| rdfs:range = xsd:string +}}OntologyProperty:CasSupplemental20265979062010-05-28T12:51:59Z{{DatatypeProperty +| rdfs:label@en = CAS supplemental +| rdfs:range = xsd:string +}}OntologyProperty:Case2028028334832014-04-03T14:42:55Z{{DatatypeProperty +| labels = +{{label|en|case}} +{{label|de|Fall}} +| rdfs:domain = Person +| rdfs:range = xsd:string +}}OntologyProperty:Casualties2027471528662018-02-13T10:20:36Z{{DatatypeProperty +| labels = +{{label|fr|pertes}} +{{label|en|casualties}} +{{label|de|Verluste}} +{{label|nl|verliezen}} +| rdfs:comment@en = Number of casualties of a MilitaryConflict or natural disaster such as an Earthquake +| rdfs:domain = MilitaryConflict , NaturalEvent , Attack +| rdfs:range = xsd:integer +}}OntologyProperty:Catch2027779270762013-07-05T13:00:16Z{{DatatypeProperty +| labels = +{{label|en|catch}} +| rdfs:domain = Person +| rdfs:range = xsd:string +}}OntologyProperty:Category2022305537932020-10-26T23:23:22Z{{ObjectProperty +| rdfs:label@en = category +| rdfs:label@nl = categorie +| rdfs:label@de = Kategorie +| rdfs:label@fr = catégorie +| rdfs:label@el = κατηγορία +| rdfs:label@cs = Kategorie +| rdfs:subPropertyOf = dul:isClassifiedBy +| owl:equivalentProperty = gnd:gndSubjectCategory +}}OntologyProperty:Caterer20211142461832015-03-18T08:52:46Z{{ObjectProperty +| labels = + {{label|en|caterer}} + {{label|nl|horeca}} +| rdfs:domain = Infrastructure +| rdfs:range = Caterer +}}OntologyProperty:CatholicPercentage2027311570112022-03-09T12:38:27Z{{DatatypeProperty +| labels = + {{label|en|catholic percentage}} + {{label|fr|pourcentage catholique}} +| rdfs:domain = PopulatedPlace +| rdfs:range = xsd:string +}}OntologyProperty:Causalties20266079072010-05-28T12:52:07Z{{DatatypeProperty +| rdfs:label@en = causalties +| rdfs:domain = MilitaryConflict +| rdfs:range = xsd:string +}}OntologyProperty:CauseOfDeath2028026474372015-04-01T14:28:06Z{{DatatypeProperty +| labels = +{{label|en|cause of death}} +{{label|ca|causa de mort}} +{{label|de|Todesursache}} +{{label|pl|przyczyna śmierci}} +| rdfs:domain = Person +| rdfs:range = xsd:string +| owl:equivalentProperty = wikidata:P509 +}}OntologyProperty:CausedBy2027459367522014-07-09T10:08:20Z{{ObjectProperty +| labels = + {{label|en|caused by}} +{{label|el|προκαλείται από}} +{{label|fr|casus}} +| rdfs:domain = Event +| rdfs:range = owl:Thing +| rdfs:subPropertyOf = dul:sameSettingAs +}}OntologyProperty:CcaState2027242258982013-06-12T14:36:48Z{{DatatypeProperty +| labels = +{{label|en|cca state}} +| rdfs:domain = PopulatedPlace +| rdfs:range = xsd:string +}}OntologyProperty:Ceeb202661528952018-02-13T12:28:28Z{{DatatypeProperty +| rdfs:label@en = ceeb +| rdfs:domain = School +| rdfs:range = xsd:string +| rdfs:subPropertyOf = code +}}OntologyProperty:Ceiling20211316570072022-03-09T12:30:51Z{{DatatypeProperty +| labels = + {{label|en|ceiling}} + {{label|fr|plafond}} + {{label|nl|dienstplafond}} +| comments = + {{comment|en|Maximum distance to the earth surface, to be expressed in kilometers}} + {{comment|fr|Distance maximale jusqu'à la surface de la terre, exprimé en kilomètres}} +| rdfs:domain = Aircraft +| rdfs:range = xsd:positiveInteger +}}OntologyProperty:Cemetery2029343329822014-03-26T11:54:02Z{{ObjectProperty +| labels = + {{label|en|cemetery}} + {{label|nl|kerkhof}} + {{label|fr|cimetière}} + {{label|de|Friedhof}} +| rdfs:domain = ReligiousBuilding +| rdfs:range = Cemetery +}}OntologyProperty:CensusYear202662282252013-09-04T05:45:46Z{{DatatypeProperty +| labels = +{{label|en|census year}} +{{label|el|έτος απογραφής}} +{{label|de|Zensusjahr}} +{{label|fr|année de recensement}} +{{label|es|año de censo}} +| rdfs:domain = PopulatedPlace +| rdfs:range = xsd:gYear +}}OntologyProperty:Center2026915570082022-03-09T12:32:03Z{{DatatypeProperty +| labels = + {{label|en|norwegian center}} + {{label|fr|centre norvégien}} +| rdfs:domain = NorwaySettlement +| rdfs:range = xsd:string +}}OntologyProperty:CenturyBreaks2023539126732011-05-07T13:44:11Z{{DatatypeProperty +| rdfs:label@en = century breaks +| rdfs:label@de = Century Breaks +| rdfs:comment@en = number of breaks with 100 points and more +| rdfs:comment@de = Anzahl Breaks mit 100 Punkten oder mehr, wird nicht übersetzt +| rdfs:domain = SnookerPlayer +| rdfs:range = xsd:integer +}}OntologyProperty:Ceo202663475432015-04-03T08:50:10Z{{ObjectProperty +| rdfs:label@en = chief executive officer +| rdfs:label@de = Geschäftsführer +| rdfs:domain = Organisation +| rdfs:range = Person +| rdfs:subPropertyOf = dul:coparticipatesWith +| owl:equivalentProperty = wikidata:P169 +}}OntologyProperty:CeremonialCounty2022138359092014-07-08T12:56:00Z +{{ObjectProperty +| rdfs:label@en = Ceremonial County +| rdfs:domain = PopulatedPlace +| rdfs:range = PopulatedPlace +| rdfs:subPropertyOf = dul:sameSettingAs +}}OntologyProperty:Certification202664107672011-01-14T22:30:45Z{{DatatypeProperty +| rdfs:label@en = certification +| rdfs:label@fr = certification +| rdfs:domain = Single +| rdfs:range = xsd:string +}}OntologyProperty:CertificationDate2021693242252013-03-05T12:14:06Z{{DatatypeProperty +| rdfs:label@en = certification date +| rdfs:label@nl = datum certificatie +| rdfs:domain = Single +| rdfs:range = xsd:date +}}OntologyProperty:CesarAward202665359102014-07-08T12:56:09Z +{{ObjectProperty +| rdfs:label@en = Cesar Award +| rdfs:domain = Artist +| rdfs:range = Award +| rdfs:subPropertyOf = dul:coparticipatesWith +}}OntologyProperty:ChEBI2025869567952022-02-28T21:38:48Z{{DatatypeProperty +| labels = + {{label|en|ChEBI}} + {{label|fr|ChEBI}} +| comments = + {{comment|en|A unique identifier for the drug in the Chemical Entities of Biological Interest (ChEBI) ontology}} + {{comment|fr|Identifiant unique de la drogue dans l'ontologie des Chemical Entities of Biological Interest (ChEBI)}} +| rdfs:domain = Drug +| rdfs:range = xsd:string +}}OntologyProperty:ChEMBL20211922524002017-10-15T13:46:45Z{{DatatypeProperty +| rdfs:label@en = ChEMBL +| rdfs:comment@en = ChEMBL is a manually curated chemical database of bioactive molecules with drug-like properties. +| rdfs:domain = ChemicalSubstance +| rdfs:range = xsd:string +}}OntologyProperty:Chain2022516570102022-03-09T12:37:00Z{{ObjectProperty +| labels = + {{label|en|chain}} + {{label|en|chaîne}} + {{label|de|Kette}} + {{label|el|αλυσίδα}} +| comments = + {{comment|en|The (business) chain this instance is associated with.}} + {{comment|fr|Chaîne (commerciale) à laquelle cette instance est associée.}} +| rdfs:range = Company +| rdfs:subPropertyOf = dul:isMemberOf +}}OntologyProperty:ChairLabel2023118359122014-07-08T12:56:26Z +{{ObjectProperty +| rdfs:label@en = chair label +| rdfs:subPropertyOf = dul:sameSettingAs +}}OntologyProperty:Chairman202666368042014-07-12T21:27:20Z{{ObjectProperty +| rdfs:label@en = chairman +| rdfs:label@de = Vorsitzender +| rdfs:label@el = πρόεδρος +| rdfs:range = Person +| rdfs:subPropertyOf = dul:coparticipatesWith +}}OntologyProperty:ChairmanTitle202667348042014-05-14T11:24:46Z{{DatatypeProperty +| rdfs:label@en = chairman title +| rdfs:domain = SoccerClub +| rdfs:range = rdf:langString +}}OntologyProperty:Chairperson202668359142014-07-08T12:56:42Z +{{ObjectProperty +| labels = + {{label|en|chairperson}} + {{label|de|Vorsitzender}} + {{label|nl|voorzitter}} +| rdfs:domain = Organisation +| rdfs:range = Person +| rdfs:subPropertyOf = dul:coparticipatesWith +}}OntologyProperty:Champion2026388488582015-09-12T18:48:48Z{{ObjectProperty +| labels = + {{label|en|champion}} + {{label|de|Meister}} + {{label|el|πρωταθλητής}} + {{label|fr|champion}} + {{label|es|Campeón}} + {{label|nl|winnaar}} +| comments = + {{comment|en|winner of a competition}} + {{comment|el|νικητής ενός διαγωνισμού}} +| rdfs:domain = SportsEvent +| rdfs:range = Athlete +| rdfs:subPropertyOf = dul:hasParticipant +}}OntologyProperty:ChampionInDouble2026390359162014-07-08T12:56:59Z +{{ObjectProperty +| labels = + {{label|en|champion in double}} + {{label|nl|kampioen dubbel}} + {{label|fr|champion en double}} + {{label|es|Campeón en doble}} +| comments = + {{comment|en|winner of a competition in the double session (as in tennis)}} +| rdfs:domain = SportsEvent +| rdfs:range = Athlete +| rdfs:subPropertyOf = champion, dul:hasParticipant +}}OntologyProperty:ChampionInDoubleFemale2026395359172014-07-08T12:57:08Z +{{ObjectProperty +| labels = + {{label|en|champion in double female}} + {{label|fr|champion en double femmes}} + {{label|es|Campeón en doble mujeres}} +| comments = + {{comment|en|winner of a competition in the female double session (as in tennis)}} +| rdfs:domain = SportsEvent +| rdfs:range = Athlete +| rdfs:subPropertyOf = championInDouble, dul:hasParticipant +}}OntologyProperty:ChampionInDoubleMale2026394359182014-07-08T12:57:25Z +{{ObjectProperty +| labels = + {{label|en|champion in double male}} + {{label|fr|champion en double hommes}} + {{label|es|Campeón en doble hombres}} +| comments = + {{comment|en|winner of a competition in the male double session (as in tennis)}} +| rdfs:domain = SportsEvent +| rdfs:range = Athlete +| rdfs:subPropertyOf = championInDouble, dul:hasParticipant +}}OntologyProperty:ChampionInMixedDouble2026396359192014-07-08T12:57:34Z +{{ObjectProperty +| labels = + {{label|en|champion in mixed double}} + {{label|nl|kampioen gemengd dubbelspel}} + {{label|fr|champion en double mixte}} + {{label|es|Campeón en doble mixto}} +| comments = + {{comment|en|winner of a competition in the mixed double session (as in tennis)}} +| rdfs:domain = SportsEvent +| rdfs:range = Athlete +| rdfs:subPropertyOf = championInDouble, dul:hasParticipant +}}OntologyProperty:ChampionInSingle2026389359202014-07-08T12:57:42Z +{{ObjectProperty +| labels = + {{label|en|champion in single}} + {{label|nl|kampioen enkelspel}} + {{label|fr|champion en simple}} + {{label|es|Campeón en simple}} +| comments = + {{comment|en|winner of a competition in the single session, to distinguish from the double session (as in tennis)}} +| rdfs:domain = SportsEvent +| rdfs:range = Athlete +| rdfs:subPropertyOf = champion, dul:hasParticipant +}}OntologyProperty:ChampionInSingleFemale2026393359212014-07-08T12:57:50Z +{{ObjectProperty +| labels = + {{label|en|champion in single female}} + {{label|fr|champion en simple femmes}} + {{label|es|Campeón en simple mujeres}} +| comments = + {{comment|en|winner of a competition in the single female session, to distinguish from the double session (as in tennis)}} +| rdfs:domain = SportsEvent +| rdfs:range = Athlete +| rdfs:subPropertyOf = championInSingle, dul:hasParticipant +}}OntologyProperty:ChampionInSingleMale2026392359222014-07-08T12:57:59Z +{{ObjectProperty +| labels = + {{label|en|champion in single male}} + {{label|fr|champion en simple homme}} + {{label|es|Campeón en simple hombres}} +| comments = + {{comment|en|winner of a competition in the single male session, to distinguish from the double session (as in tennis)}} +| rdfs:domain = SportsEvent +| rdfs:range = Athlete +| rdfs:subPropertyOf = championInSingle, dul:hasParticipant +}}OntologyProperty:Championships202669522632017-10-08T11:07:06Z{{DatatypeProperty +| rdfs:label@en = championships +| rdfs:label@de = gewonnene Title +| rdfs:domain = Agent +| rdfs:range = xsd:nonNegativeInteger +}}OntologyProperty:Chancellor202670359232014-07-08T12:58:07Z +{{ObjectProperty +| rdfs:label@en = chancellor +| rdfs:label@de = Kanzler +| rdfs:range = Person +| rdfs:subPropertyOf = dul:coparticipatesWith +}}OntologyProperty:Channel202671567602022-02-28T17:29:35Z +{{ObjectProperty +| labels = + {{label|en|channel}} + {{label|de|Kanal}} + {{label|fr|canal}} + {{label|el|κανάλι}} + {{label|nl|kanaal}} +| rdfs:range = Broadcaster +| rdfs:subPropertyOf = dul:coparticipatesWith +}}OntologyProperty:Chaplain202672525812017-10-31T08:31:13Z +{{ObjectProperty +| rdfs:label@en = chaplain +| rdfs:label@de = Kaplan +| rdfs:domain = Organisation +| rdfs:range = Person +| rdfs:subPropertyOf = dul:coparticipatesWith +}}OntologyProperty:CharacterInPlay2023825133452011-06-06T10:20:12Z{{DatatypeProperty +| rdfs:label@en = character in play +| rdfs:domain = Play +| rdfs:range = xsd:string +| rdfs:comment@en = Name of a character in play. +}}OntologyProperty:Chef2022531359262014-07-08T12:58:32Z +{{ObjectProperty +| labels = + {{label|en|chef}} + {{label|de|Koch}} + {{label|nl|sous-chef}} + {{label|el|chef}} + {{label|fr|chef cuisinier}} +| rdfs:domain = Restaurant +| rdfs:range = Person +| rdfs:subPropertyOf = dul:coparticipatesWith +}}OntologyProperty:ChemSpiderId20212039527932018-02-07T09:30:32Z{{DatatypeProperty +| rdfs:label@en = ChemSpider Id +| rdfs:comment@en = identifier in a free chemical database, owned by the Royal Society of Chemistry +| rdfs:domain = ChemicalSubstance +| rdfs:range = xsd:string +}}OntologyProperty:ChemicalFormula20211925572842022-03-30T13:38:11Z{{DatatypeProperty +| labels = + {{label|en|chemical formula}} + {{label|fr|formule chimique}} +| rdfs:domain = ChemicalSubstance +| rdfs:range = xsd:string +}}OntologyProperty:Chief20214260590832022-10-09T19:19:58Z{{ObjectProperty +| labels = + {{label|en|chief}} + {{label|fr|chef}} +| rdfs:range = Chief +| rdfs:subPropertyOf = Leader +}}OntologyProperty:ChiefEditor202673359272014-07-08T12:58:41Z +{{ObjectProperty +| labels = + {{label|en|chief editor}} + {{label|de|Chefredakteur}} + {{label|nl|hoofdredacteur}} +| rdfs:domain = Work +| rdfs:range = Person +| rdfs:subPropertyOf = dul:coparticipatesWith +}}OntologyProperty:ChiefPlace2027226359282014-07-08T12:58:49Z +{{ObjectProperty +| labels = + {{label|en|chief place}} +| rdfs:range = PopulatedPlace +| rdfs:subPropertyOf = dul:hasLocation +}}OntologyProperty:Child202674570122022-03-09T12:40:36Z{{ObjectProperty +| labels = + {{label|en|child}} + {{label|fr|enfant}} + {{label|nl|kind}} + {{label|de|Kind}} + {{label|el|παιδί}} + {{label|ja|子供}} + {{label|ar|طفل}} +| rdfs:domain = Person +| rdfs:range = Person +| owl:equivalentProperty = schema:children +| owl:propertyDisjointWith = parent, spouse +| rdfs:subPropertyOf = dul:sameSettingAs +| owl:equivalentProperty = wikidata:P40 +}}OntologyProperty:ChildOrganisation2023727359302014-07-08T12:59:17Z +{{ObjectProperty +| rdfs:label@en = child organisation +| rdfs:label@nl = dochterorganisatie +| rdfs:domain = Organisation +| rdfs:range = Organisation +| rdfs:subPropertyOf = dul:sameSettingAs +}}OntologyProperty:Choreographer202675567622022-02-28T17:33:07Z{{ObjectProperty +| labels = + {{label|el|χορογράφος}} + {{label|fr|choréographe}} + {{label|en|choreographer}} + {{label|de|Choreograph}} + {{label|nl|choreograaf}} +| rdfs:domain = FigureSkater +| rdfs:range = Person +| rdfs:subPropertyOf = dul:coparticipatesWith +}}OntologyProperty:ChorusCharacterInPlay2023827133472011-06-06T10:24:11Z{{DatatypeProperty +| rdfs:label@en = chorus character in play +| rdfs:domain = Play +| rdfs:range = xsd:string +| rdfs:subPropertyOf = characterInPlay +| rdfs:comment@en = The name of the (Greek) chorus character in play. +}}OntologyProperty:ChristeningDate2023103204742012-12-20T15:46:49Z{{DatatypeProperty +| rdfs:label@en=date of christening +| rdfs:label@nl = doopdatum +| rdfs:domain = Ship +| rdfs:range = xsd:date +}}OntologyProperty:Chromosome202676567412022-02-28T15:40:49Z{{DatatypeProperty +| rdfs:label@en = chromosome +| rdfs:label@de = Chromosom +| rdfs:label@ga = crómasóm +| rdfs:label@el =χρωμόσωμα +| rdfs:label@ja = 染色体 +| rdfs:label@pl = chromosom +| rdfs:label@fr = chromosome +| rdfs:domain = Protein +| rdfs:range = xsd:string +| owl:equivalentProperty = wikidata:P1057 +}}OntologyProperty:Cinematography202677475062015-04-02T11:34:35Z{{ObjectProperty +| labels = + {{label|en|cinematography}} + {{label|de|Kinematografie}} + {{label|ga|cineamatagrafaíocht}} + {{label|nl|cinematografie}} +| rdfs:domain = Film +| rdfs:range = Person +| rdfs:subPropertyOf = dul:sameSettingAs +| owl:equivalentProperty = wikidata:P344 +}}OntologyProperty:Circle2026971570132022-03-09T12:41:35Z{{DatatypeProperty +| labels = + {{label|en|region}} + {{label|fr|région}} + {{label|de|Region}} +| rdfs:domain = PopulatedPlace +| rdfs:range = xsd:string +}}OntologyProperty:CircuitLength2025334567402022-02-28T15:39:17Z{{ DatatypeProperty + | labels = + {{label|en|circuit length}} + {{label|fr|longueur de circuit}} + | rdfs:domain = FormulaOneRacing + | rdfs:range = Length +<!-- | rdf:type = owl:FunctionalProperty --> +}}OntologyProperty:CircuitName2025332348402014-05-15T05:18:44Z{{ DatatypeProperty + + | rdfs:label@en = circuit name + | rdfs:domain = FormulaOneRacing + | rdfs:range = rdf:langString + +}}OntologyProperty:Circulation202678478232015-04-28T15:31:11Z{{DatatypeProperty +| labels = +{{label|en|circulation}} +{{label|nl|oplage}} +{{label|el|κυκλοφορία}} +{{label|ga|ciorclaíocht}} +| rdfs:domain = WrittenWork +| rdfs:range = xsd:nonNegativeInteger +}}OntologyProperty:Circumcised2027817271262013-07-05T14:43:30Z{{DatatypeProperty +| labels = +{{label|en|circumcised}} +| rdfs:domain = Person +| rdfs:range = xsd:string +}}OntologyProperty:Cites20210086372642014-07-23T02:54:29Z{{DatatypeProperty +| labels = +{{label|en|cites}} +| comments = +{{comment|en|A document cited by this work. Like [[OntologyProperty:dct:references]], but as a datatype property.}} +| rdfs:domain = Work +| rdfs:range = xsd:string +| rdf:type = +| rdfs:subPropertyOf = +| owl:equivalentProperty = +}}OntologyProperty:Citizenship202679572852022-03-30T13:39:44Z +{{ObjectProperty +| labels = + {{label|en|citizenship}} + {{label|fr|citoyenneté}} + {{label|nl|burgerschap}} + {{label|da|statsborgerskab}} + {{label|de|Staatsangehörigkeit}} + {{label|el|υπηκοότητα}} +| rdfs:domain = Person +| owl:equivalentProperty = wikidata:P27 +| rdfs:subPropertyOf = dul:sameSettingAs +}}OntologyProperty:City202680523442017-10-10T13:45:58Z{{ObjectProperty +| labels = + {{label|en|city}} + {{label|da|by}} + {{label|de|Stadt}} + {{label|el|πόλη}} + {{label|fr|ville}} + {{label|ga|cathair}} + {{label|nl|stad}} + {{label|pl|miasto}} +| rdfs:domain = owl:Thing +| rdfs:range = City +| owl:equivalentProperty = wikidata:P131 +| rdfs:subPropertyOf = dul:hasLocation +}}OntologyProperty:CityLink2027119256522013-05-26T14:56:17Z{{DatatypeProperty +| labels = +{{label|en|city link}} +| rdfs:domain = Place +| rdfs:range = xsd:string +}}OntologyProperty:CityRank2026423234622013-01-22T12:46:07Z{{DatatypeProperty +| labels = +{{label|en|city rank}} +{{label|de|Rang Stadt}} +| comments = +{{comment|en|Place of the building in the list of the highest buildings in the city}} +{{comment|de|Der Platz des Gebäudes in der Liste der höchsten Gebäude der Stadt}} +| rdfs:domain = Skyscraper +| rdfs:range = xsd:nonNegativeInteger +}}OntologyProperty:CitySince2027257259222013-06-13T09:46:01Z{{DatatypeProperty +| labels = +{{label|en|city since}} +| rdfs:domain = PopulatedPlace +| rdfs:range = xsd:string +}}OntologyProperty:CityType202681221532013-01-10T19:53:19Z{{DatatypeProperty +| labels = +{{label|en|city type}} +{{label|nl|type stad}} +{{label|el|τύπος}} +| rdfs:domain = PopulatedPlace +| rdfs:range = xsd:string +}}OntologyProperty:Clade20211994526832017-11-18T18:36:36Z{{ObjectProperty +| labels = +{{label|en|clade}} +{{label|nl|cladon}} +| rdfs:domain = Species +}}OntologyProperty:Class202682567632022-02-28T17:34:43Z +{{ObjectProperty +| rdfs:label@en = class +| rdfs:label@de = Klasse +| rdfs:label@el = τάξη +| rdfs:label@nl = klasse +| rdfs:label@fr = classe +| rdfs:domain = owl:Thing +| rdfs:subPropertyOf = dul:isClassifiedBy +| owl:equivalentProperty = gn:featureClass +}}OntologyProperty:Classes202683573582022-03-31T12:04:32Z{{DatatypeProperty +| labels = + {{label|en|classes}} + {{label|fr|classes}} + {{label|de|Klasse}} + {{label|el|τάξεις}} +| rdfs:domain = School +| rdfs:range = xsd:nonNegativeInteger +}}OntologyProperty:Classification2022634573602022-03-31T12:11:08Z{{DatatypeProperty +| rdfs:label@en = classification +| rdfs:label@de = catégorie +| rdfs:label@nl = categorie +| rdfs:domain = owl:Thing +| rdfs:range = xsd:string +| comments = + {{comment|en|Any string representing a class or category this thing is assigned to.}} + {{comment|fr|Toute chaîne de caractères représentant une classe ou une catégorie à laquelle cette chose est assignée.}} +}}OntologyProperty:Classis2025202283302013-09-11T13:36:49Z{{ObjectProperty +| labels = +{{label|en|classis}} +{{label|es|clase (biología)}} +{{label|fr|classe (biologie)}} +{{label|nl|klasse}} +{{label|ja|綱_(分類学)}} +| rdfs:domain = Species +| rdfs:range = owl:Thing +|comments = +{{comment|en|the living thing class (from the Latin "classis"), according to the biological taxonomy}} +{{comment|fr|Troisième niveau de la classification classique (c’est-à-dire n’utilisant pas la notion de distance génétique) des espèces vivantes (voir systématique).<ref>https://fr.wikipedia.org/wiki/Classe_%28biologie%29</ref>}} +| owl:equivalentProperty = wikidata:P77 +<!-- wrong range, find more suited property for P225| owl:equivalentProperty = wikidata:P225 --> +}} + +== references == +<references/>OntologyProperty:Climate2023802359362014-07-08T13:00:12Z +{{ObjectProperty +| rdfs:label@en = climate +| rdfs:label@pt = clima +| rdfs:label@de = klima +| rdfs:label@nl = klimaat +| rdfs:domain = Place +| rdfs:subPropertyOf = dul:hasQuality +}}OntologyProperty:ClimbUpNumber2027187257372013-06-01T13:15:32Z{{DatatypeProperty +| labels = +{{label|en|clip up number}} +| rdfs:domain = Place +| rdfs:range = xsd:nonNegativeInteger +}}OntologyProperty:CloseTo20211081491082015-10-10T16:53:19Z{{ObjectProperty +| labels = +{{label|en|is close to}} +{{label|fr|à côté de}} +| comments = +{{comment|fr|lieu proche d'un autre.}} +{{comment|en|place close to another place}} +| rdfs:domain = Place +| rdfs:range = Place +}}OntologyProperty:Closed202684573622022-03-31T12:13:35Z{{DatatypeProperty +| labels = + {{label|en|closed}} + {{label|fr|fermé}} + {{label|de|geschlossen}} + {{label|nl|gesloten}} +| rdfs:domain = EducationalInstitution +| rdfs:range = xsd:date +}}OntologyProperty:ClosingDate202685173372012-04-20T14:43:04Z{{DatatypeProperty +| rdfs:label@en = closing date +| rdfs:label@el = ημερομηνία κλεισίματος +| rdfs:label@fr = date de fermeture +| rdfs:range = xsd:date +}}OntologyProperty:ClosingFilm202686359372014-07-08T13:00:20Z +{{ObjectProperty +| rdfs:label@en = closing film +| rdfs:domain = FilmFestival +| rdfs:range = Film +| rdfs:subPropertyOf = dul:hasParticipant +}}OntologyProperty:ClosingYear2023384199392012-11-22T12:28:33Z{{DatatypeProperty +| labels = +{{label|en|closing year}} +{{label|nl|Sluitingsjaar}} +{{label|de|Schließungsjahr}} +| rdfs:range = xsd:gYear +}}OntologyProperty:ClothSize2027750270342013-07-04T14:02:58Z{{DatatypeProperty +| labels = +{{label|en|cloth size}} +| rdfs:domain = Person +| rdfs:range = xsd:string +}}OntologyProperty:ClothingSize2028058335032014-04-03T14:44:21Z{{DatatypeProperty +| rdfs:label@en = clothing size +| rdfs:label@de = Konfektionsgröße +| rdfs:domain = Person +| rdfs:range = xsd:string +}}OntologyProperty:Club202687514372016-08-16T07:29:32Z{{ObjectProperty +| labels = + {{label|en|club}} + {{label|de|Verein}} + {{label|nl|club}} + {{label|el|ομάδα}} + {{label|ja|クラブ}} +| rdfs:domain = Athlete +| rdfs:range = SportsTeam +| owl:equivalentProperty = team +| rdfs:subPropertyOf = dul:isMemberOf +}}OntologyProperty:ClubsRecordGoalscorer202688359392014-07-08T13:00:39Z +{{ObjectProperty +| rdfs:label@en = clubs record goalscorer +| rdfs:domain = SoccerClub +| rdfs:range = Person +| rdfs:subPropertyOf = dul:coparticipatesWith +}}OntologyProperty:Cluster2024444359402014-07-08T13:00:48Z +{{ObjectProperty +| rdfs:label@en = cluster +| rdfs:label@tr = birlik +| rdfs:domain = Galaxy +| rdfs:subPropertyOf = dul:hasPart +}}OntologyProperty:CmpEvaDuration20268979192010-05-28T12:53:43Z{{DatatypeProperty +| rdfs:label@en = CMP EVA duration +| rdfs:domain = SpaceMission +| rdfs:range = Time +}}OntologyProperty:CmykCoordinateBlack202237484082010-05-28T14:00:19Z{{DatatypeProperty +| rdfs:label@en = black coordinate in the CMYK space +| rdfs:domain = Colour +| rdfs:range = xsd:integer +}}OntologyProperty:CmykCoordinateCyanic202237384072010-05-28T14:00:10Z{{DatatypeProperty +| rdfs:label@en = cyanic coordinate in the CMYK space +| rdfs:domain = Colour +| rdfs:range = xsd:integer +}}OntologyProperty:CmykCoordinateMagenta202237684102010-05-28T14:00:33Z{{DatatypeProperty +| rdfs:label@en = magenta coordinate in the CMYK space +| rdfs:domain = Colour +| rdfs:range = xsd:integer +}}OntologyProperty:CmykCoordinateYellow202237584092010-05-28T14:00:25Z{{DatatypeProperty +| rdfs:label@en = yellow coordinate in the CMYK space +| rdfs:domain = Colour +| rdfs:range = xsd:integer +}}OntologyProperty:Co2Emission20269079202010-05-28T12:53:52Z{{DatatypeProperty +| rdfs:label@en = CO2 emission +| rdfs:domain = AutomobileEngine +| rdfs:range = LinearMassDensity +| rdf:type = owl:FunctionalProperty +}}OntologyProperty:CoExecutiveProducer202697359412014-07-08T13:00:57Z +{{ObjectProperty +| rdfs:label@en = co executive producer +| rdfs:domain = TelevisionShow +| rdfs:range = Person +| rdfs:subPropertyOf = dul:coparticipatesWith +}}OntologyProperty:CoProducer202721359422014-07-08T13:01:06Z +{{ObjectProperty +| rdfs:label@en = co producer +| rdfs:label@de = Co-Produzent +| rdfs:domain = TelevisionShow +| rdfs:range = Person +| rdfs:subPropertyOf = dul:coparticipatesWith +}}OntologyProperty:Coach202691359432014-07-08T13:01:14Z +{{ObjectProperty +| rdfs:label@en = coach +| rdfs:label@de = Trainer +| rdfs:label@el = προπονητής +| rdfs:range = Person +| rdfs:subPropertyOf = dul:coparticipatesWith +}}OntologyProperty:CoachClub2027675269452013-07-04T07:57:18Z{{ObjectProperty +| labels = +{{label|en|coach club}} +| rdfs:range = SportsTeam +| rdfs:domain = Athlete +}}OntologyProperty:CoachSeason2027674269442013-07-04T07:56:11Z{{DatatypeProperty +| labels = +{{label|en|coach season}} +| rdfs:range = xsd:string +| rdfs:domain = Athlete +}}OntologyProperty:CoachedTeam202692523852017-10-14T20:25:32Z +{{ObjectProperty +| rdfs:label@en = coached team +| rdfs:domain = owl:Thing +| rdfs:range = SportsTeam +| rdfs:subPropertyOf = dul:coparticipatesWith +}}OntologyProperty:CoachingRecord20269379212010-05-28T12:53:58Z{{DatatypeProperty +| rdfs:label@en = coaching record +| rdfs:domain = CollegeCoach +| rdfs:range = xsd:string +}}OntologyProperty:Coalition2027814349532014-05-24T07:23:57Z{{DatatypeProperty +| labels = +{{label|en|coalition}} +{{label|de|Koalition}} +{{label|el|συνασπισμός}} +| comments = +{{comment|el|Παλαιότερα ο συνασπισμός χρησιμοποιούνταν ως στρατιωτικός όρος που υποδήλωνε την όμορη παράταξη πολεμιστών κατά την οποία ο κάθε στρατιώτης προφύλασσε τον διπλανό του με την ασπίδα του.}} +| rdfs:domain = Person +| rdfs:range = xsd:string +}}OntologyProperty:CoastLength2027050335082014-04-03T14:44:55Z{{DatatypeProperty +| labels = +{{label|en|length of a coast}} +{{label|de|Länge einer Küste}} +| rdfs:domain = Place +| rdfs:range = xsd:float +}}OntologyProperty:CoastLine202695471732015-03-25T12:52:42Z{{DatatypeProperty +| labels = +{{label|en|coast line}} +{{label|de|Küste}} +| rdfs:domain = Settlement +| rdfs:range = Length +}}OntologyProperty:CoatOfArms20210315389492014-12-23T11:40:45Z{{ObjectProperty +| rdfs:label@en = coat of arms image +| rdfs:label@de = bild wappen +| rdfs:comment@en = image of the coat of arms (heraldic symbol) +| owl:equivalentProperty = wikidata:P94 +}}OntologyProperty:Code202696590482022-06-21T17:54:29Z{{DatatypeProperty +| labels = +{{label|en|code}} +{{label|el|κωδικός}} +{{label|de|Code}} +{{label|ur|ضابطہ}} +{{label|nl|code}} +| rdfs:range = xsd:string +| rdfs:comment@en = Superproperty for any designation (string, integer as string) that is meant to identify an entity within the context of a system +| owl:equivalentProperty=gn:featureCode +}}OntologyProperty:CodeBook2026606335182014-04-03T14:49:51Z{{DatatypeProperty +| labels = +{{label|en|code book}} +{{label|de|Gesetzbuch}} +{{label|nl|wetboek}} +| comments = +{{comment|en| code book or statute book referred to in this legal case }} +| rdfs:domain = LegalCase +| rdfs:range = xsd:string +| rdf:type = +| rdfs:subPropertyOf = +| owl:equivalentProperty = +}}OntologyProperty:CodeDistrict2029254322842014-03-07T08:37:51Z{{DatatypeProperty +| labels = +{{label|en|City district code}} +| rdfs:domain = CityDistrict +| rdfs:range = xsd:string +}}OntologyProperty:CodeIndex20210245385292014-10-03T15:26:35Z{{DatatypeProperty +| labels = +{{label|en|code on index}} + +{{label|nl|Indexcode}} +| rdfs:domain = MemberResistanceMovement +| rdfs:range = xsd:string +| rdfs:subPropertyOf = code +}}OntologyProperty:CodeLandRegistry20211971525562017-10-26T10:33:33Z#REDIRECT [[OntologyProperty:Registry]]OntologyProperty:CodeListOfHonour20210244385282014-10-03T15:24:47Z{{DatatypeProperty +| labels = +{{label|en|code on List of Honour}} +{{label|de|Code Ehrenliste}} +{{label|nl|Code Erelijst van Gevallenen}} +| rdfs:domain = MemberResistanceMovement +| rdfs:range = xsd:string +| rdfs:subPropertyOf = code +}}OntologyProperty:CodeMemorial2026528239782013-02-24T14:08:10Z{{DatatypeProperty +| labels = +{{label|en|memorial ID number}} +{{label|nl|code gedenkteken}} +| comments = +{{comment|en|Identifier for monuments of the Memorial type}} +{{comment|nl|Code oorlogsmonument of ander gedenkteken}} +| rdfs:domain = Memorial +| rdfs:range = xsd:string +| rdf:type = +| rdfs:subPropertyOf = Code +| owl:equivalentProperty = +}}OntologyProperty:CodeMunicipalMonument2026264347632014-05-12T10:25:21Z{{DatatypeProperty +| labels = +{{label|en|monument code (municipal)}} +{{label|nl|monumentcode gemeentelijke monumenten}} +| comments = +{{comment|en|Code assigned to (Dutch) monuments at the municipal level, deemed to be of local value }} +{{comment|nl|Code toegewezen aan monumenten die op gemeenteniveau onder bescherming geplaatst zijn}} +| rdfs:domain = Place +| rdfs:range = xsd:string +| rdf:type = +| rdfs:subPropertyOf = code +| owl:equivalentProperty = +}}OntologyProperty:CodeNationalMonument2026263347622014-05-12T10:24:47Z{{DatatypeProperty +| labels = +{{label|en|monument code (national)}} +{{label|nl|monumentcode rijksmonumenten}} +| comments = +{{comment|en|Code assigned to (Dutch) monuments at the national level, deemed to be of national value }} +{{comment|nl|Code toegewezen aan (Nederlandse) monumenten, vallend onder bescherming op rijksniveau}} +| rdfs:domain = Place +| rdfs:range = xsd:string +| rdf:type = +| rdfs:subPropertyOf = code +| owl:equivalentProperty = +}}OntologyProperty:CodeProvincialMonument2026265347642014-05-12T10:25:47Z{{DatatypeProperty +| labels = +{{label|en|monument code (provinciall)}} +{{label|nl|monumentcode provinciale monumenten}} +| comments = +{{comment|en|Code assigned to (Dutch) monuments at the provincial level, mostly for monuments in the countryside, or for waterworks }} +{{comment|nl|Code voor monumentenbescherming, in Nederland op provinciaal niveau. Meestal gebruikt voor agrarische monumenten of waterwerken}} +| rdfs:domain = Place +| rdfs:range = xsd:string +| rdf:type = +| rdfs:subPropertyOf = code +| owl:equivalentProperty = +}}OntologyProperty:CodeSettlement2026876253012013-05-23T15:29:55Z{{DatatypeProperty +| labels = +{{label|en|settlement code}} +| rdfs:domain = Settlement +| rdfs:range = xsd:string +}}OntologyProperty:CodeStockExchange2029371347612014-05-12T10:23:19Z{{DatatypeProperty +| labels = +{{label|en|code Stock Exchange}} +{{label|nl|beurscode}} +| rdfs:domain = Company +| rdfs:range = xsd:string +| rdfs:subPropertyOf = code +}}OntologyProperty:Coden2023751475452015-04-03T08:52:52Z{{DatatypeProperty +| rdfs:label@en = CODEN +| rdfs:domain = WrittenWork +| rdfs:range = xsd:string +| rdfs:comment@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. +| owl:equivalentProperty = wikidata:P1159 +}}OntologyProperty:Coemperor2027635491452015-10-13T09:57:58Z{{ObjectProperty +| labels = +{{label|en|coemperor}} +| rdfs:domain = Monarch +| rdfs:range = Monarch +}}OntologyProperty:Collaboration2027756367512014-07-09T10:06:18Z{{ObjectProperty +| labels = +{{label|en|collaboration}} +{{label|el|συνεργασία}} +{{label|de|Zusammenarbeit}} +| rdfs:domain = Person +| rdfs:range = Person +}}OntologyProperty:Colleague20210422394312015-01-20T10:04:05Z{{ObjectProperty +| rdfs:label@en = colleague +| rdfs:comment@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). +| rdfs:domain = Person +| rdfs:range = Person +| rdfs:subPropertyOf = dul:coparticipatesWith +}}OntologyProperty:Collection2022521572822022-03-30T13:33:16Z{{DatatypeProperty +| labels = + {{label|en|collection}} + {{label|fr|collection}} + {{label|de|Sammlung}} + {{label|el|συλλογή}} +| rdfs:domain = Museum +| rdfs:range = xsd:string +}}OntologyProperty:CollectionSize2026683359452014-07-08T13:01:31Z +{{ObjectProperty +| labels = + {{label|en|country}} + {{label|de|Land}} + {{label|ja|蔵書数}} +| rdfs:subPropertyOf = dul:hasRegion +}}OntologyProperty:CollectivityMinority2026908274342013-07-12T10:39:13Z{{ObjectProperty +| labels = +{{label|en|collectivity minority}} +| rdfs:domain = Settlement +}}OntologyProperty:College202698359462014-07-08T13:01:40Z +{{ObjectProperty +| rdfs:label@en = college +| rdfs:label@de = College +| rdfs:label@el = κολλέγιο +| rdfs:label@fr = haute école +| rdfs:label@pl = college +| rdfs:label@pl = koledż +| rdfs:domain = Person +| rdfs:range = EducationalInstitution +| rdfs:subPropertyOf = dul:sameSettingAs +}}OntologyProperty:CollegeHof2027689269622013-07-04T09:31:32Z{{DatatypeProperty +| labels = +{{label|en|college hof}} +| rdfs:domain = Athlete +| rdfs:range = xsd:string +}}OntologyProperty:ColonialName2027248335162014-04-03T14:45:29Z{{DatatypeProperty +| labels = +{{label|en|colonial name}} +{{label|de|Kolonialname}} +| rdfs:domain = PopulatedPlace +| rdfs:range = xsd:string +}}OntologyProperty:ColorChart2026810573142022-03-30T15:17:03Z{{DatatypeProperty +| labels = + {{label|en|colorChart}} + {{label|fr|distribution des couleurs}} +| rdfs:domain = FictionalCharacter +| rdfs:range = xsd:string +}}OntologyProperty:Colour2023720521332017-06-19T11:21:35Z{{ObjectProperty +| rdfs:label@en = colour +| rdfs:label@da = farve +| rdfs:label@de = Farbe +| rdfs:label@el = χρώμα +| rdfs:label@fr = couleur +| rdfs:label@ja = 色 +| rdfs:label@nl = kleur +| rdfs:domain = owl:Thing +| rdfs:range = Colour +| rdfs:comment@en = A colour represented by its entity. +| rdfs:subPropertyOf = dul:hasQuality +| owl:equivalentProperty = wikidata:P462 +}}OntologyProperty:ColourHexCode2023721572992022-03-30T14:32:34Z{{DatatypeProperty +| labels = + {{label|en|colour hex code}} + {{label|fr|code hexa de couleur}} + {{label|de|Farben Hex Code}} +| rdfs:domain = owl:Thing +| rdfs:range = xsd:string +| comments = + {{comment|en|A colour represented by its hex code (e.g.: #FF0000 or #40E0D0)}} + {{comment|fr|Une couleur représentée par son code hexadécimal (exemple : #FF0000 ou #40E0D0)}} +| rdfs:subPropertyOf = code +}}OntologyProperty:ColourName202699473792015-03-31T17:15:08Z{{DatatypeProperty +| rdfs:label@en = colour name +| rdfs:label@el = όνομα χρώματος +| rdfs:label@de = Farbenname +| rdfs:label@fr = nom de couleur +| rdfs:label@ja = 色名 +| rdfs:domain = owl:Thing +| rdfs:range = rdf:langString +| rdfs:comment@en = A colour represented by a string holding its name (e.g.: red or green). +| rdfs:comment@el = Ένα χρώμα που αναπαρίσταται από μια ακολουθία χαρακτήρων που αντιπροσωπεύει το όνομά του (π.χ.: κόκκινο ή πράσινο). +}}OntologyProperty:Combatant202701335172014-04-03T14:45:32Z{{DatatypeProperty +| rdfs:label@en = combatant +| rdfs:label@de = Kombattant +| rdfs:domain = MilitaryConflict +| rdfs:range = xsd:string +}}OntologyProperty:Comic2026829359482014-07-08T13:01:57Z +{{ObjectProperty +| labels = + {{label|en|comic}} +| rdfs:domain = FictionalCharacter +| rdfs:range = Comic +| rdfs:subPropertyOf = dul:sameSettingAs +}}OntologyProperty:Comitat2026906253572013-05-24T21:20:39Z{{DatatypeProperty +| labels = +{{label|en|comitat of a settlement}} +| rdfs:domain = HungarySettlement +| rdfs:range = xsd:string +}}OntologyProperty:Command202702335252014-04-03T15:28:21Z{{DatatypeProperty +| rdfs:label@en = command +| rdfs:label@de = Befehl +| rdfs:domain = MilitaryPerson +| rdfs:range = xsd:string +}}OntologyProperty:CommandModule20270479282010-05-28T12:54:50Z{{DatatypeProperty +| rdfs:label@en = command module +| rdfs:domain = SpaceMission +| rdfs:range = xsd:string +}}OntologyProperty:CommandStructure202705359492014-07-08T13:02:06Z +{{ObjectProperty +| rdfs:label@en = command structure +| rdfs:label@de = Kommandostruktur +| rdfs:domain = MilitaryUnit +| rdfs:range = MilitaryUnit +| rdfs:subPropertyOf = dul:coparticipatesWith +}}OntologyProperty:Commandant2027470359502014-07-08T13:02:15Z +{{ObjectProperty +| rdfs:label@en = commandant +| rdfs:label@de = Kommandant +| rdfs:range = Person +| rdfs:subPropertyOf = keyPerson, dul:sameSettingAs +}}OntologyProperty:Commander202703385382014-10-04T12:01:28Z{{ObjectProperty +| rdfs:label@en = commander +| rdfs:label@de = Befehlshaber +| rdfs:label@nl = commandant +| rdfs:range = Person +| rdfs:subPropertyOf = dul:coparticipatesWith +}}OntologyProperty:Comment2027103568632022-03-01T20:21:56Z{{DatatypeProperty +| labels = +{{label|en|comment}} +{{label|fr|commentaire}} +{{label|de|Kommentar}} +{{label|el|σχόλιο}} +| rdfs:range = xsd:string +| owl:equivalentProperty = schema:comment +}}OntologyProperty:Commissioner2027243528052018-02-08T13:28:28Z{{DatatypeProperty +| labels = +{{label|en|commissioner}} +{{label|de|Kommissar}} +{{label|nl|opdrachtgever}} +| rdfs:domain = Building +| rdfs:domain = Work +| rdfs:range = xsd:string +}}OntologyProperty:CommissionerDate2027244259002013-06-12T14:37:39Z{{DatatypeProperty +| labels = +{{label|en|commissioner date}} +| rdfs:domain = PopulatedPlace +| rdfs:range = xsd:string +}}OntologyProperty:CommissioningDate2023104376152014-08-25T15:59:08Z{{DatatypeProperty +| rdfs:label@en=commissioning date +| rdfs:label@es=fecha de entrada en servicio +| rdfs:domain = Ship +| rdfs:range = xsd:date +}}OntologyProperty:Committee2022352335312014-04-03T15:28:59Z{{DatatypeProperty +| rdfs:label@en = committee +| rdfs:label@de = Ausschuss +| rdfs:range = xsd:string +}}OntologyProperty:CommitteeInLegislature2023529359522014-07-08T13:02:39Z +{{ObjectProperty +| rdfs:label@en = committee in legislature +| rdfs:label@de = Ausschuss in der Legislative +| rdfs:domain = Legislature +| rdfs:range = owl:Thing +| rdfs:comment@en = Committee in the legislature (eg.: Committee on Economic and Monetary Affairs of the European Parliament). +| rdfs:subPropertyOf = dul:hasPart +}}OntologyProperty:CommonName2025046573632022-03-31T12:19:58Z{{DatatypeProperty +| labels = + {{label|en|common name}} + {{label|fr|nom d'usage}} + {{label|de|gewöhnlicher Name}} +| comments = + {{comment|en|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.}} + {{comment|fr|Nom habituel d'une entité. Souvent on utilise foaf:name pour tous les noms qu'une personne peut avoir; cette propriété précise le nom qui est habituellement utilisé.}} +| rdfs:domain = owl:Thing +| rdfs:range = rdf:langString +}}OntologyProperty:Commune202706359532014-07-08T13:02:47Z +{{ObjectProperty +| rdfs:label@en = commune +| rdfs:label@de = Kommune +| rdfs:label@fr = commune +| rdfs:domain = Settlement +| rdfs:range = Settlement +| rdfs:subPropertyOf = dul:hasPart +}}OntologyProperty:CommunityIsoCode2026881253132013-05-23T16:04:33Z{{DatatypeProperty +| labels = +{{label|en|iso code of a community}} +| rdfs:subPropertyOf = isoCode +| rdfs:domain = PopulatedPlace +| rdfs:range = xsd:string +}}OntologyProperty:Company202707568642022-03-01T20:29:59Z +{{ObjectProperty +| labels = + {{label|en|company}} + {{label|fr|compagnie}} + {{label|de|Firma}} + {{label|nl|organisatie}} + {{label|el|εταιρεία}} + {{label|ja|会社}} +| rdfs:domain = owl:Thing +| rdfs:range = Organisation +| rdfs:subPropertyOf = dul:sameSettingAs +}}OntologyProperty:Comparable202708359552014-07-08T13:03:05Z +{{ObjectProperty +| rdfs:label@en = comparable +| rdfs:label@de = vergleichbar +| rdfs:domain = Rocket +| rdfs:range = Rocket +| rdfs:comment@en = similar, unrelated rockets +| rdfs:subPropertyOf = dul:sameSettingAs +}}OntologyProperty:Competition2026057359562014-07-08T13:03:13Z +{{ObjectProperty +| labels = + {{label|en|competition}} + {{label|de|Wettbewerb}} + {{label|fr|competition}} + {{label|es|competición}} +| rdfs:domain = SportCompetitionResult +| rdfs:range = Event +| rdfs:subPropertyOf = dul:isParticipantIn +}}OntologyProperty:CompetitionTitle2027849519992017-03-22T16:41:38Z{{ObjectProperty +| labels = +{{label|en|competition title}} +{{label|de|Sterbeort}} +| rdfs:domain = Person +| rdfs:range = SportsEvent +}}OntologyProperty:Compiler202709573152022-03-30T15:23:55Z{{ObjectProperty +| labels = + {{label|en|compiler}} + {{label|fr|compilateur}} +| rdfs:domain = Album +| rdfs:range = Person +| comments = + {{comment|en|For compilation albums: the person or entity responsible for selecting the album's track listing.}} + {{comment|fr|Pour les albums qui sont des compilations, personne ou entité responsable du choix des pistes de l'album.}} +| rdfs:subPropertyOf = dul:coparticipatesWith +}}OntologyProperty:CompletionDate202710367542014-07-09T10:16:40Z{{DatatypeProperty +| labels = +{{label|en|completion date}} +{{label|el|ημερομηνία ολοκλήρωσης}} +{{label|de|Fertigstellungstermin}} +{{label|nl|datum van oplevering}} +| rdfs:domain = Work +| rdfs:range = xsd:date +}}OntologyProperty:Complexion2023294359582014-07-08T13:03:39Z +{{ObjectProperty +| rdfs:label@en = complexion +| rdfs:label@pt = cor da pele +| rdfs:domain = Person +| rdfs:subPropertyOf = dul:hasQuality +}}OntologyProperty:Complexity20211306487682015-08-13T10:20:07Z{{DatatypeProperty +| labels = +{{label|en|complexity}} +| rdfs:domain = Food +| rdfs:range = xsd:string +| comments = +{{comment|en|Complexity of preparing a Food (recipe)}} +}}OntologyProperty:Complications20211861521982017-10-07T14:00:21Z{{DatatypeProperty +| labels = +{{label|de |Komplikationen}} +{{label|en|complications}} +{{label|el|επιπλοκές}} +{{label|fr |complications}} +| rdfs:domain = Disease +| rdfs:range = xsd:string +}}OntologyProperty:Component202711567422022-02-28T15:46:05Z +{{ObjectProperty +| rdfs:label@en = component +| rdfs:label@de = Komponente +| rdfs:label@fr = composant +| rdfs:domain = Brain +| rdfs:range = AnatomicalStructure +| rdfs:subPropertyOf = dul:hasComponent +}}OntologyProperty:Composer202712475472015-04-03T08:54:40Z{{ObjectProperty +| rdfs:label@en = composer +| rdfs:label@de = Komponist +| rdfs:label@fr = compositeur +| rdfs:label@el = συνθέτης +| rdfs:label@nl = componist +| rdfs:label@pl = kompozytor +| rdfs:domain = Work +| rdfs:range = Person +| rdfs:subPropertyOf = dul:coparticipatesWith +| owl:equivalentProperty = wikidata:P86 +}}OntologyProperty:CompressionRatio202713572832022-03-30T13:36:47Z{{DatatypeProperty +| labels = + {{label|en|compression ratio}} + {{label|fr|taux de compression}} + {{label|de|Kompressionsverhältnis}} +| rdfs:domain = AutomobileEngine +| rdfs:range = xsd:string +| owl:equivalentProperty = wikidata:P1247 +}}OntologyProperty:ComputingInput2022126359612014-07-08T13:04:03Z +{{ObjectProperty +| rdfs:label@en = Computing input +| rdfs:domain = Software +| rdfs:subPropertyOf = dul:coparticipatesWith +}}OntologyProperty:ComputingMedia2022125359622014-07-08T13:04:11Z +{{ObjectProperty +| rdfs:label@en = Computing Media +| rdfs:domain = Software +| rdfs:subPropertyOf = dul:coparticipatesWith +}}OntologyProperty:ComputingPlatform2022120475492015-04-03T08:56:09Z{{ObjectProperty +| rdfs:label@en = computing platform +| rdfs:comment@en = some sort of hardware architecture or software framework, that allows this software to run +| rdfs:domain = Software +| rdfs:subPropertyOf = dul:coparticipatesWith +| owl:equivalentProperty = wikidata:P400 +}}OntologyProperty:Configuration202714528562018-02-08T20:46:17Z +{{DatatypeProperty +| rdfs:label@en = configuration +| rdfs:label@nl = configuratie +| rdfs:label@de = Konfiguration +| rdfs:label@fr = configuration +| rdfs:domain = AutomobileEngine +| rdfs:range = engineConfiguration +| rdfs:subPropertyOf = +}}OntologyProperty:ConfirmedCases20212295536062020-04-04T16:35:53Z{{DatatypeProperty +| labels = +{{label|en|Confirmed Cases}} +| rdfs:comment@en = Number of confirmed cases in a pandemic +| rdfs:domain = Outbreak +| rdfs:range = xsd:integer +}}OntologyProperty:Conflict2027556570142022-03-09T12:42:41Z{{ObjectProperty +| labels = + {{label|en|conflict}} + {{label|fr|conflit}} + {{label|de|Konflikt}} +| rdfs:range =MilitaryConflict +}}OntologyProperty:CongressionalDistrict2023216359652014-07-08T13:04:36Z +{{ObjectProperty +| rdfs:label@en = congressional district +| rdfs:domain = AdministrativeRegion +| rdfs:subPropertyOf = dul:isPartOf +}}OntologyProperty:ConnectsReferencedTo20211277487282015-08-12T08:35:55Z{{ObjectProperty +| labels = +{{label|en| connects referenced to }} +{{label|nl| verbindt referentieobject met}} +| comments = +{{comment|en| connects a referenced resource to another resource. This property is important to connect non-extracted resources to extracted ones }} +{{comment|nl| creëert een verwijzing van het gerefereerde objct naar een ander object. Speciaal van belang voor het verbinden van niet-geëxtraheerde resources met de gebruikelijke resources}} +| rdfs:domain = Reference +| rdfs:range = owl:Thing +}}OntologyProperty:Connotation2022271359662014-07-08T13:04:45Z +{{ObjectProperty +| rdfs:label@en = connotation +| rdfs:label@de = Konnotation +| rdfs:comment@en = A meaning of a word or phrase that is suggested or implied, as opposed to a denotation, or literal meaning. +| rdfs:subPropertyOf = dul:sameSettingAs +}}OntologyProperty:Consecration2027820572332022-03-28T20:36:05Z{{DatatypeProperty +| labels = + {{label|en|consecration}} + {{label|fr|consécration}} + {{label|de|Weihe}} + {{label|nl|wijding}} +| rdfs:domain = Cleric +| rdfs:range = xsd:string +}}OntologyProperty:ConservationStatus202715572342022-03-28T20:36:56Z{{DatatypeProperty +| labels = + {{label|en|conservation status}} + {{label|fr|état de conservation}} + {{label|ja|保全状況}} +| rdfs:domain = Species +| rdfs:range = xsd:string +}}OntologyProperty:ConservationStatusSystem20271679332010-05-28T12:55:33Z{{DatatypeProperty +| rdfs:label@en = conservation status system +| rdfs:domain = Species +| rdfs:range = xsd:string +}}OntologyProperty:Constellation2024447572352022-03-28T20:39:17Z{{ObjectProperty +| labels = + {{label|en|constellation}} + {{label|fr|constellation}} + {{label|de|Sternbild}} + {{label|pl|gwiazdozbiór}} + {{label|tr|Takımyıldız}} + {{label|nl|sterrenbeeld}} +| rdfs:range = owl:Thing +| rdfs:domain = CelestialBody +| rdfs:subPropertyOf = dul:hasPart +| owl:equivalentProperty = wikidata:P59 +}}OntologyProperty:ConstituencyDistrict20211948524842017-10-16T07:51:06Z{{ObjectProperty +| labels = + {{label|en|constituency district}} + {{label|de|Whalbezirk}} + {{label|fr|circonscription électorale}} +| rdfs:range = PopulatedPlace +}}OntologyProperty:Construction2026429572362022-03-28T20:40:25Z{{ObjectProperty +| labels = + {{label|en|construction}} + {{label|fr|construction}} + {{label|el|κατασκευή}} + {{label|de|Konstruktion}} +| rdfs:domain = ArchitecturalStructure +| rdfs:range = owl:Thing +| rdfs:subPropertyOf = dul:sameSettingAs +}}OntologyProperty:ConstructionMaterial2023436475512015-04-03T08:57:36Z{{ObjectProperty +| labels = + {{label|en|construction material}} +{{label|el|υλικό κατασκευής}} +{{label|nl|bouwmateriaal}} + {{label|de|Baumaterial}} +| rdfs:domain = ArchitecturalStructure +| rdfs:range = owl:Thing +| rdfs:comment@en = Construction material (eg. concrete, steel, iron, stone, brick, wood). +| rdfs:subPropertyOf = dul:hasConstituent +| owl:equivalentProperty = wikidata:P186 +}}OntologyProperty:Contest2028059572372022-03-28T20:42:05Z{{ObjectProperty +| labels = + {{label|en|contest}} + {{label|fr|concours}} + {{label|de|Wettbewerb}} +| rdfs:domain = Person +| rdfs:range = Contest +}}OntologyProperty:Continent2025941570162022-03-09T12:47:46Z{{ObjectProperty +| labels = + {{label|en|continent}} + {{label|fr|continent}} + {{label|de|Kontinent}} + {{label|el|ήπειρος}} + {{label|it|continente}} +| comments = + {{comment|en|links a country to the continent it belongs}} + {{comment|fr|relie un pays au continent auquel il appartient}} + {{comment|el|μεγάλες περιοχές ξηράς που περιστοιχίζονται από ωκεανούς}} +| rdfs:domain = Country +| rdfs:range = Continent +| rdfs:subPropertyOf = dul:isPartOf +| owl:equivalentProperty = wikidata:P30 +}}OntologyProperty:ContinentRank2026426234652013-01-22T12:56:31Z{{DatatypeProperty +| labels = +{{label|en|continent rank}} +{{label|de|Rang Kontinent}} +| comments = +{{comment|en|Place of the building in the list of the highest buildings in the continent}} +{{comment|de|Der Platz des Gebäudes in der Liste der höchsten Gebäude des Kontinents}} +| rdfs:domain = Skyscraper +| rdfs:range = xsd:nonNegativeInteger +}}OntologyProperty:ContinentalTournament2027568567912022-02-28T21:21:08Z{{ObjectProperty +| labels = +{{label|en|continental tournament}} +{{label|fr|tournoi continental}} +| rdfs:range = Tournament +| rdfs:domain = Person +}}OntologyProperty:ContinentalTournamentBronze2027578268042013-07-02T10:01:49Z{{DatatypeProperty +| labels = +{{label|en|continental tournament bronze}} +| rdfs:domain = Person +| rdfs:range = xsd:nonNegativeInteger +}}OntologyProperty:ContinentalTournamentGold2027576268022013-07-02T10:00:59Z{{DatatypeProperty +| labels = +{{label|en|continental tournament gold}} +| rdfs:domain = Person +| rdfs:range = xsd:nonNegativeInteger +}}OntologyProperty:ContinentalTournamentSilver2027577268032013-07-02T10:01:23Z{{DatatypeProperty +| labels = +{{label|en|continental tournament silver}} +| rdfs:domain = Person +| rdfs:range = xsd:nonNegativeInteger +}}OntologyProperty:ContractAward20271779342010-05-28T12:55:42Z{{DatatypeProperty +| rdfs:label@en = contract award +| rdfs:domain = SpaceShuttle +| rdfs:range = xsd:date +}}OntologyProperty:Contractor202718359712014-07-08T13:05:40Z +{{ObjectProperty +| rdfs:label@en = contractor +| rdfs:label@el = εργολάβος +| rdfs:label@de = Auftragnehmer +| rdfs:label@nl = aannemer +| rdfs:domain = Skyscraper +| rdfs:range = Company +| rdfs:subPropertyOf = dul:coparticipatesWith +}}OntologyProperty:ConvictionDate2028027281812013-09-03T17:58:43Z{{DatatypeProperty +| labels = +{{label|en|conviction date}} +| rdfs:domain = Person +| rdfs:range = xsd:date +}}OntologyProperty:ConvictionPenalty20211899522802017-10-08T18:03:37Z{{ObjectProperty +| labels = + {{label|en|conviction penalty}} + {{label|de|Strafe}} +| rdfs:domain = Criminal +| rdfs:range = owl:Thing +}}OntologyProperty:CoolingSystem202719573162022-03-30T15:26:05Z{{ObjectProperty +| labels = + {{label|en|cooling system}} + {{label|fr|système de refroidissement}} + {{label|de|Kühlsystem}} +| rdfs:domain = AutomobileEngine +| rdfs:subPropertyOf = dul:coparticipatesWith +}}OntologyProperty:Copilote2027804572382022-03-28T20:42:58Z{{ObjectProperty +| labels = + {{label|en|copilote}} + {{label|fr|copilote}} + {{label|de|Copilot}} +| rdfs:range = Person +| rdfs:domain = Person +}}OntologyProperty:CoronationDate2024213572392022-03-28T20:44:41Z{{DatatypeProperty +| labels = + {{label|en|coronation date}} + {{label|fr|date de couronnement}} + {{label|nl|kroningsdatum}} +| rdfs:domain = Royalty +| rdfs:range = xsd:date +}}OntologyProperty:CosparId202723528722018-02-13T10:36:14Z{{DatatypeProperty + +| labels = +{{label|en|COSPAR id}} +| comments = +{{comment|en|Described at http://en.wikipedia.org/wiki/International_Designator}} + +| rdfs:range = xsd:string +| owl:equivalentProperty = wikidata:P247 +| rdfs:subPropertyOf = code +}}OntologyProperty:Cost202724487012015-08-10T10:24:24Z{{DatatypeProperty +| labels = +{{label|en|cost}} +{{label|de|Kosten}} +{{label|nl|kosten}} +{{label|el|κόστος}} +| rdfs:comment@en = Cost of building an ArchitecturalStructure, Ship, etc +| rdfs:range = Currency +}}OntologyProperty:CostumeDesigner2025149359732014-07-08T13:05:56Z +{{ObjectProperty +| rdfs:domain = Film +| rdfs:range = Person +| rdfs:label@en = costume designer +| rdfs:label@it = costumista +| rdfs:comment@en = the person who is responsible for the film costume design +| rdfs:subPropertyOf = dul:coparticipatesWith +}}OntologyProperty:Council2026964254392013-05-25T14:04:00Z{{DatatypeProperty +| labels = +{{label|en|council of a liechtenstein settlement}} +| rdfs:domain = LiechtensteinSettlement +| rdfs:range = xsd:string +}}OntologyProperty:CouncilArea2022136359742014-07-08T13:06:04Z +{{ObjectProperty +| rdfs:label@en = Council area +| rdfs:domain = PopulatedPlace +| rdfs:range = PopulatedPlace +| rdfs:subPropertyOf = dul:isPartOf +}}OntologyProperty:Country202725474382015-04-01T14:35:43Z{{ObjectProperty +| labels = + {{label|en|country}} + {{label|ca|estat}} + {{label|de|Land}} + {{label|pt|país}} + {{label|el|χώρα}} + {{label|es|país}} + {{label|fr|pays}} + {{label|ga|tír}} + {{label|nl|land}} + {{label|pl|kraj}} +| comments = +{{comment|en|The country where the thing is located.}} +| rdfs:domain = owl:Thing +| rdfs:range = Country +| owl:equivalentProperty = wikidata:P17 +| rdfs:subPropertyOf = dul:hasLocation +}}OntologyProperty:CountryCode20211955568192022-02-28T22:41:31Z{{DatatypeProperty +| labels = +{{label|de|Ländervorwahl}} +{{label|en|country code}} +{{label|fr|code du pays}} +| comments = + {{comment|en|Country code for telephone numbers.}} + {{comment|fr|Code du pays dans la numérotation téléphonique.}} +| rdfs:domain = Place +| rdfs:range = xsd:string +| owl:equivalentProperty = gn:countryCode +}}OntologyProperty:CountryOrigin202726359762014-07-08T13:06:22Z +{{ObjectProperty +| rdfs:label@en = country origin +| rdfs:label@de = Land Herkunft +| rdfs:domain = Rocket +| rdfs:range = Country +| rdfs:subPropertyOf = dul:coparticipatesWith +}}OntologyProperty:CountryRank2026424234612013-01-22T12:44:23Z{{DatatypeProperty +| labels = +{{label|en|country rank}} +{{label|de|Rang Land}} +| comments = +{{comment|en|Place of the building in the list of the highest buildings in the country}} +{{comment|de|Der Platz des Gebäudes in der Liste der höchsten Gebäude des Landes}} +| rdfs:domain = Skyscraper +| rdfs:range = xsd:nonNegativeInteger +}}OntologyProperty:CountryWithFirstAstronaut202727359772014-07-08T13:06:30Z +{{ObjectProperty +| rdfs:label@en = country with first astronaut +| rdfs:domain = YearInSpaceflight +| rdfs:range = Country +| rdfs:subPropertyOf = dul:hasParticipant +}}OntologyProperty:CountryWithFirstSatellite202728359782014-07-08T13:06:38Z +{{ObjectProperty +| rdfs:label@en = country with first satellite +| rdfs:domain = YearInSpaceflight +| rdfs:range = Country +| rdfs:subPropertyOf = dul:hasParticipant +}}OntologyProperty:CountryWithFirstSatelliteLaunched202729359792014-07-08T13:06:47Z +{{ObjectProperty +| rdfs:label@en = country with first satellite launched +| rdfs:domain = YearInSpaceflight +| rdfs:range = Country +| rdfs:subPropertyOf = dul:hasParticipant +}}OntologyProperty:CountryWithFirstSpaceflight202730359802014-07-08T13:06:59Z +{{ObjectProperty +| rdfs:label@en = country with first spaceflight +| rdfs:domain = YearInSpaceflight +| rdfs:range = Country +| rdfs:subPropertyOf = dul:hasParticipant +}}OntologyProperty:County202731474392015-04-01T14:38:53Z{{ObjectProperty +| labels = + {{label|en|county}} + {{label|nl|provincie}} + {{label|de|Bezirk}} + {{label|el|Επαρχία}} + {{label|ga|contae}} + {{label|pl|hrabstwo}} +| rdfs:comment@en = The county where the thing is located. +| rdfs:domain = owl:Thing +| rdfs:range = PopulatedPlace +| rdfs:subPropertyOf = dul:hasLocation +| owl:equivalentProperty = wikidata:P131 +}}OntologyProperty:CountySeat2023215359822014-07-08T13:07:17Z +{{ObjectProperty +| labels = + {{label|en|county seat}} + {{label|nl|provincie zetel}} +| rdfs:domain = PopulatedPlace +| rdfs:subPropertyOf = dul:hasLocation +}}OntologyProperty:Course20273279382010-05-28T12:56:18Z{{DatatypeProperty +| rdfs:label@en = course +| rdfs:domain = GrandPrix +| rdfs:range = Length +}}OntologyProperty:CourseArea20211809519322017-02-20T12:13:24Z{{DatatypeProperty +| labels = +{{label|en|course area}} +{{label|ja|コース面積}} +| rdfs:range = Area +| rdfs:subProperty = area +| comments = +{{comment|en|The area of courses in square meters.}} +}}OntologyProperty:Cousurper2027637268832013-07-03T09:07:34Z{{ObjectProperty +| labels = +{{label|en|cousurper}} +| rdfs:domain = Person +| rdfs:range = Person +}}OntologyProperty:CoverArtist202733475542015-04-03T09:01:12Z{{ObjectProperty +| labels = + {{label|en|cover artist}} + {{label|nl|cover artist}} +| rdfs:domain = Work +| rdfs:range = Person +| rdfs:comment@en = Cover artist +| rdfs:subPropertyOf = dul:coparticipatesWith +| owl:equivalentProperty = wikidata:P736 +}}OntologyProperty:Cpu2022127574222022-04-17T20:42:29Z{{ObjectProperty +| labels = + {{label|en|CPU}} + {{label|fr|processeur(CPU)}} + {{label|de|CPU}} + {{label|nl|processor (CPU)}} + {{label|pl|procesor (CPU)}} +| comments = + {{comment|en|CPU of an InformationAppliance or VideoGame (which unfortunately is currently under Software)}} + {{comment|fr|Processeur d'un équipement d'information ou d'un jeu vidéo (qui malheureusement est actuellement en charge du logiciel)}} +| rdfs:subPropertyOf = dul:coparticipatesWith +| owl:equivalentProperty = wikidata:P880 +}}OntologyProperty:Created2027764574232022-04-17T20:43:42Z{{ObjectProperty +| labels = + {{label|en|created}} + {{label|fr|créé}} + {{label|de|erstellt}} +| rdfs:domain = Person +| rdfs:range = Work +}}OntologyProperty:CreationChristianBishop2027821491482015-10-13T10:00:50Z{{DatatypeProperty +| rdfs:label@en = creation christian bishop +| rdfs:domain = Bishop +| rdfs:range = xsd:string +}}OntologyProperty:CreationYear2022387567902022-02-28T21:20:14Z{{DatatypeProperty +| labels = +{{label|en|year of creation}} +{{label|fr|année de création}} +{{label|el|έτος δημιουργίας}} +{{label|de|Entstehungsjahr}} +{{label|nl|jaar van creatie}} +| rdfs:domain = +| rdfs:range = xsd:gYear +}}OntologyProperty:CreativeDirector202734359852014-07-08T13:07:42Z +{{ObjectProperty +| rdfs:label@en = creative director +| rdfs:domain = TelevisionShow +| rdfs:range = Person +| rdfs:subPropertyOf = dul:coparticipatesWith +}}OntologyProperty:Creator202735536792020-07-30T21:32:45Z{{ObjectProperty +| labels = + {{label|en|creator (agent)}} + {{label|de|Urheber}} + {{label|el|δημιουργός}} + {{label|nl|maker}} +| rdfs:range = Agent +| rdfs:comment@en=Creator/author of a work. For literal (string) use dc:creator; for object (URL) use creator +| rdfs:subPropertyOf = dul:coparticipatesWith +| owl:equivalentProperty = schema:creator, wikidata:P170 +}}OntologyProperty:CreatorOfDish2023930359872014-07-08T13:08:06Z +{{ObjectProperty +| rdfs:label@en = creator of dish +| rdfs:domain = Food +| rdfs:range = Person +| rdfs:comment@en = The person that creates (invents) the food (eg. Caesar Cardini is the creator of the Caesar salad). +| rdfs:subPropertyOf = dul:coparticipatesWith +}}OntologyProperty:Credit2026142462172015-03-18T11:04:15Z{{DatatypeProperty +| rdfs:label@en = credit +| rdfs:domain = Openswarm +| rdfs:range = xsd:string +}}OntologyProperty:Crest2029555353842014-06-20T13:39:46Z{{ObjectProperty +| labels = +{{label|en|crest}} +{{label|de|Wappen}} +{{label|pl|herb}} +| rdfs:domain = owl:Thing +| rdfs:range = owl:Thing +}}OntologyProperty:Crew202736572402022-03-28T20:47:50Z +{{ObjectProperty +| labels = + {{label|de|Crew}} + {{label|fr|équipage}} + {{label|el|πλήρωμα}} + {{label|en|crew}} +| rdfs:domain = Spacecraft +| rdfs:range = SpaceMission +| rdfs:subPropertyOf = dul:coparticipatesWith +}}OntologyProperty:CrewMember202737572412022-03-28T20:49:50Z{{ObjectProperty +| labels = + {{label|en|crew member}} + {{label|fr|membre d'équipage}} + {{label|de|Besatzungsmitglied}} +| rdfs:domain = SpaceMission +| rdfs:range = Astronaut +| rdfs:subPropertyOf = dul:hasParticipant +| owl:equivalentProperty = wikidata:P1029 +}}OntologyProperty:CrewSize202739572422022-03-28T20:51:49Z{{DatatypeProperty +| labels = + {{label|en|crew size}} + {{label|fr|taille de l'équipage}} + {{label|de|Besatzungsstärke}} +| rdfs:domain = SpaceMission +| rdfs:range = xsd:nonNegativeInteger +}}OntologyProperty:Crews202738572432022-03-28T20:53:33Z{{DatatypeProperty +| labels = + {{label|en|crews}} + {{label|fr|équipages}} + {{label|de|Besatzungen}} +| rdfs:domain = SpaceShuttle +| rdfs:range = xsd:nonNegativeInteger +}}OntologyProperty:CriminalCharge20211898522792017-10-08T17:55:06Z{{DatatypeProperty +| rdfs:label@en = criminal charge +| rdfs:label@de = Strafantrag +| rdfs:domain = Criminal +| rdfs:range = xsd:string +| rdfs:comment = The criminal charges for the crime(s) this individual is known for. +}}OntologyProperty:Criteria2023305347592014-05-12T06:46:51Z{{DatatypeProperty +| rdfs:label@en = criteria +| rdfs:label@el = κριτήριο +| rdfs:label@de = Kriterien +| rdfs:label@pt = critério +| rdfs:range = xsd:string +}}OntologyProperty:Crosses202740475572015-04-03T09:06:39Z{{ObjectProperty +| rdfs:label@en = crosses +| rdfs:label@el = διασχίζει +| rdfs:domain = Bridge +| rdfs:range = River +| rdfs:subPropertyOf = dul:hasLocation +| owl:equivalentProperty = wikidata:P177 +}}OntologyProperty:CrownDependency20274179412010-05-28T12:56:43Z{{DatatypeProperty +| rdfs:label@en = crown dependency +| rdfs:domain = City +| rdfs:range = xsd:string +}}OntologyProperty:Cuisine2022525487542015-08-13T09:55:26Z{{DatatypeProperty +| labels = +{{label|en|cuisine}} +{{label|de|Küche}} +{{label|nl|keuken}} +{{label|el|κουζίνα}} +{{label|fr|cuisine}} +| rdfs:comment@en = National cuisine of a Food or Restaurant +| rdfs:range = xsd:string +}}OntologyProperty:CultivatedVariety2026253359912014-07-08T13:08:38Z +{{ObjectProperty +| labels = + {{label|en|cultivar}} +| comments = + {{comment|en|Name of the cultivar (cultivated variety)}} +| rdfs:range = CultivatedVariety +| rdfs:domain = Plant +| rdfs:subPropertyOf = dul:isSpecializedBy +}}OntologyProperty:Curator2022519573002022-03-30T14:36:33Z +{{ObjectProperty +| labels = + {{label|en|curator}} + {{label|fr|conservateur}} + {{label|de|Kurator}} + {{label|nl|conservator}} +| rdfs:domain = Museum +| rdfs:range = Person +| rdfs:subPropertyOf = dul:coparticipatesWith +}}OntologyProperty:Currency202742474422015-04-01T14:52:43Z{{ObjectProperty +| labels = + {{label|en|currency}} + {{label|de|Währung}} + {{label|el|νομισματική μονάδα}} + {{label|fr|devise}} + {{label|ga|airgeadra}} + {{label|nl|valuta}} + {{label|pl|waluta}} + {{label|pt|moeda}} +| comments = + {{comment|el|υπολογίζει ή εκφράζει οικονομικές αξίες}} +| rdfs:range = Currency +| rdfs:subPropertyOf = dul:sameSettingAs +| owl:equivalentProperty = wikidata:P38 +}}OntologyProperty:CurrencyCode2025294474412015-04-01T14:48:34Z{{ DatatypeProperty + + | rdfs:label@en = currency code + | rdfs:label@de = Währungscode + | rdfs:label@ga = cód airgeadra + | rdfs:comment@en = ISO 4217 currency designators. + | rdfs:domain= Place + | rdfs:range = xsd:string + | owl:equivalentProperty = wikidata:P498 + +}}OntologyProperty:CurrentCity2027958574242022-04-17T20:45:06Z{{ObjectProperty +| labels = + {{label|en|current city}} + {{label|fr|ville actuelle}} + {{label|de|aktuelle Stadt}} +| rdfs:range = City +}}OntologyProperty:CurrentLeague2027782336222014-04-03T16:11:50Z{{ObjectProperty +| labels = +{{label|en|current league}} +{{label|de|aktuelle Liga}} +| rdfs:domain = Athlete +| rdfs:range = SportsLeague +}}OntologyProperty:CurrentMember202744359942014-07-08T13:09:07Z +{{ObjectProperty +| rdfs:label@en = current member +| rdfs:label@de = aktuelles Mitglied +| rdfs:range = Person +| rdfs:domain = SportsTeam +| rdfs:subPropertyOf = dul:hasMember +}}OntologyProperty:CurrentPartner202746572442022-03-28T20:55:32Z +{{ObjectProperty +| labels = + {{label|en|current partner}} + {{label|fr|partenaire actuel}} + {{label|de|aktueller Partner}} +| rdfs:domain = FigureSkater +| rdfs:range = Person +| rdfs:subPropertyOf = dul:coparticipatesWith +}}OntologyProperty:CurrentProduction2023839359962014-07-08T13:09:23Z +{{ObjectProperty +| rdfs:label@en = current production +| rdfs:domain = Theatre +| rdfs:range = owl:Thing +| rdfs:comment@en = The current production running in the theatre. +| rdfs:subPropertyOf = dul:coparticipatesWith +}}OntologyProperty:CurrentRank2023535126692011-05-07T13:25:03Z{{DatatypeProperty +| rdfs:label@en = current rank +| rdfs:label@de = aktueller Ranglistenplatz +| rdfs:domain = SnookerPlayer +| rdfs:range = xsd:integer +}}OntologyProperty:CurrentRecord20274879422010-05-28T12:56:51Z{{DatatypeProperty +| rdfs:label@en = current record +| rdfs:domain = CollegeCoach +| rdfs:range = xsd:string +}}OntologyProperty:CurrentSeason2022194572862022-03-30T13:42:51Z{{DatatypeProperty +| labls = + {{label|en|current season}} + {{label|fr|saison actuelle}} + {{label|de|aktuelle Spielzeit}} + {{label|el|Τρέχον Περίοδος}} +| rdfs:domain = SportsLeague +| rdfs:range = xsd:string +}}OntologyProperty:CurrentStatus202749335732014-04-03T15:32:35Z{{DatatypeProperty +| labels = +{{label|en|current status}} +{{label|de|aktueller Status}} +{{label|nl|huidige status}} +| rdfs:domain = owl:Thing +| rdfs:range = xsd:string +}}OntologyProperty:CurrentTeam2027665335742014-04-03T15:32:38Z{{ObjectProperty +| labels = +{{label|en|current team}} +{{label|de|aktuelle Mannschaft}} +{{label|ja|所属チーム}} +| rdfs:domain = Athlete +| rdfs:range = SportsTeam +}}OntologyProperty:CurrentTeamManager2027798271002013-07-05T13:20:12Z{{ObjectProperty +| labels = +{{label|en|current team manager}} +| rdfs:domain = Person +| rdfs:range = SportsTeam +}}OntologyProperty:CurrentTeamMember2025024359972014-07-08T13:09:31Z +{{ObjectProperty +| rdfs:label@en = current team member +| rdfs:comment@en = A current member of an athletic team. +| rdfs:domain = SportsTeam +| rdfs:range = TeamMember +| rdfs:subPropertyOf = dul:hasMember +}}OntologyProperty:CurrentWorldChampion2026058359982014-07-08T13:09:40Z +{{ObjectProperty +| labels = + {{label|en|current world champion}} + {{label|de|aktueller Weltmeister}} + {{label|fr|champion du monde actuel}} + {{label|es|actual Campeón del mundo}} + {{label|nl|huidig wereldkampioen}} +| rdfs:domain = Sport +| rdfs:range = Agent <!-- it could be a country ... --> +| rdfs:subPropertyOf = dul:hasParticipant +}}OntologyProperty:CurrentlyUsedFor2023838266622013-06-28T17:01:54Z{{DatatypeProperty +| labels = +{{label|en|currently used for}} +{{label|nl|huidig gebruik}} +{{label|fr|usage actuel}} +{{label|es|uso actual}} +| rdfs:domain = ArchitecturalStructure +| rdfs:range = xsd:string +| rdfs:comment@en = Current use of the architectural structure, if it is currently being used as anything other than its original purpose. +}}OntologyProperty:Custodian202751525832017-10-31T08:37:41Z +{{ObjectProperty +| rdfs:label@en = custodian +| rdfs:label@de = Aufsichtsperson +| rdfs:domain = EducationalInstitution +| rdfs:range = Person +| rdfs:subPropertyOf = dul:coparticipatesWith +}}OntologyProperty:CyclistGenre2027868272872013-07-10T10:16:12Z{{ObjectProperty +| labels = +{{label|en|cyclist genre}} +| rdfs:domain = Athlete, CareerStation +}}OntologyProperty:CylinderBore20275279442010-05-28T12:57:04Z{{DatatypeProperty +| rdfs:label@en = cylinder bore +| rdfs:domain = AutomobileEngine +| rdfs:range = Length +}}OntologyProperty:CylinderCount2022546102522010-11-09T16:26:37Z{{DatatypeProperty + |rdfs:label@en=cylinder count + |rdfs:domain=Locomotive + |rdfs:range=xsd:nonNegativeInteger +}}OntologyProperty:DailyVaccinationsPerMillion20213119548932021-07-26T04:00:29Z{{ObjectProperty +| labels = + {{label|en|Daily Vaccinations Per Million}} +| comments = + {{comment|en|VaccinationStatistics: people vaccinated percent.}} +| rdfs:domain = owl:Thing +| rdfs:range = VaccinationStatistics +}}OntologyProperty:DailyVaccinationsRaw20213116588152022-06-20T11:08:03Z{{ObjectProperty +| labels = + {{label|en|Daily Vaccinations Raw}} +{{label|ur|روزانہ ویکسین خام}} +| comments = + {{comment|en|VaccinationStatistics: Daily vaccinations (raw data).}} +{{comment|ur|ویکسینیشن کے اعدادوشمار: روزانہ ویکسینیشن (خام ڈیٹا)۔}} +| rdfs:domain = owl:Thing +| rdfs:range = VaccinationStatistics +}}OntologyProperty:Daira2026845360002014-07-08T13:09:58Z +{{ObjectProperty +| labels = + {{label|en|daira}} +| rdfs:domain = Settlement +| rdfs:range = Place +| rdfs:subPropertyOf = dul:hasLocation +}}OntologyProperty:Dam2026172360012014-07-08T13:10:06Z +{{ObjectProperty +| labels = + {{label|en|dam}} + {{label|de|Hirschkalb}} +| rdfs:domain = Animal +| rdfs:range = Animal +| rdfs:subPropertyOf = dul:sameSettingAs +}}OntologyProperty:Damage20211125588182022-06-20T11:17:43Z{{ObjectProperty +| labels = + {{label|en|damage amount}} + {{label|nl|schadebedrag}} +{{label|ur|نقصان کی رقم}} +| rdfs:domain = Event +| rdfs:range = Currency +}}OntologyProperty:Damsire2026174360022014-07-08T13:10:24Z +{{ObjectProperty +| labels = + {{label|en|damsire}} +| rdfs:domain = Animal +| rdfs:range = Animal +| rdfs:subPropertyOf = dul:sameSettingAs +}}OntologyProperty:DanseCompetition2028072282352013-09-04T09:14:44Z{{DatatypeProperty +| labels = +{{label|en|danse competition}} +| rdfs:domain = Person +| rdfs:range = xsd:string +}}OntologyProperty:DanseScore2028071588232022-06-20T11:41:27Z{{DatatypeProperty +| labels = +{{label|en|danse score}} +{{label|ur|ڈینس سکور}} +| rdfs:domain = Person +| rdfs:range = xsd:string +}}OntologyProperty:Date202753574252022-04-17T20:45:58Z{{DatatypeProperty +| labels = + {{label|en|date}} + {{label|fr|date}} + {{label|de|Datum}} + {{label|nl|datum}} + {{label|el|ημερομηνία}} +| rdfs:range = xsd:date +| owl:equivalentProperty = wikidata:P585 +}}OntologyProperty:DateAct202754115422011-04-01T11:05:12Z{{DatatypeProperty +| rdfs:label@en = date act +| rdfs:label@el = απόφαση_διάνοιξης +| rdfs:domain = Canal +| rdfs:range = xsd:date +}}OntologyProperty:DateAgreement2027042588242022-06-20T11:43:53Z{{DatatypeProperty +| labels = +{{label|en|date of an agreement}} +{{label|ur|تاریخ کا معاہدہ}} +| rdfs:domain = Place +| rdfs:range = xsd:date +}}OntologyProperty:DateBudget2027075255962013-05-26T12:21:25Z{{DatatypeProperty +| labels = +{{label|en|date budget}} +| rdfs:range = xsd:date +}}OntologyProperty:DateClosed202755115482011-04-01T11:09:49Z{{DatatypeProperty +| rdfs:label@en = date closed +| rdfs:label@el = τερματισμός_λειτουργίας +| rdfs:domain = Canal +| rdfs:range = xsd:date +}}OntologyProperty:DateCompleted202756588292022-06-20T11:48:04Z{{DatatypeProperty +| rdfs:label@en = date completed +| rdfs:label@el = ολοκλήρωση +| rdfs:label@ur =مکمل تاریخ +| rdfs:domain = Canal +| rdfs:range = xsd:date +}} +{{DatatypeProperty +| labels = + +{{label|ur|مکمل تاریخ }} +| rdfs:domain = Canal +| rdfs:range = xsd:date +}}OntologyProperty:DateConstruction202757335802014-04-03T15:33:01Z{{DatatypeProperty +| rdfs:label@en = date construction +| rdfs:label@de = Bauzeit +| rdfs:label@el = έναρξη_κατασκευής +| rdfs:domain = Canal +| rdfs:range = xsd:date +}}OntologyProperty:DateExtended202758115472011-04-01T11:08:51Z{{DatatypeProperty +| rdfs:label@en = date extended +| rdfs:label@el = επέκταση +| rdfs:domain = Canal +| rdfs:range = xsd:date +}}OntologyProperty:DateLastUpdated2027169588322022-06-20T11:54:33Z{{DatatypeProperty +| rdfs:domain = Document +| rdfs:range = xsd:date +| labels = + {{label|en|Date Last Updated}} + + {{label|ur|آخری تازہ کاری کی تاریخ}} + +{{label|de|Datum der letzten Aktualisierung}} + {{label|nl|datum laatste bewerking}} +}}OntologyProperty:DateOfAbandonment202214383662010-05-28T13:54:42Z{{DatatypeProperty +| rdfs:label@en = date of abandonment +| rdfs:range = xsd:date +}}OntologyProperty:DateOfBurial202759335822014-04-03T15:33:09Z{{DatatypeProperty +| rdfs:label@en = date of burial +| rdfs:label@de = Datum der Beerdigung +| rdfs:label@nl = datum begrafenis +| rdfs:domain = Person +| rdfs:range = xsd:date +}}OntologyProperty:DateUnveiled2026474588332022-06-20T11:58:20Z{{DatatypeProperty +| labels = +{{label|en|date unveiled}} +{{label|nl|datum onthulling}} +{{label|ur|تاریخ کی نقاب کشائی}} +| comments = +{{comment|en|Designates the unveiling date }} +{{comment|nl|Duidt de datum van onthulling aan}} +{{comment|ur|نقاب کشائی کی تاریخ مقرر کرتا ہے۔}} +| rdfs:domain = Monument +| rdfs:range = xsd:date +| rdf:type = +| rdfs:subPropertyOf = +| owl:equivalentProperty = +}}OntologyProperty:DateUse202761115452011-04-01T11:07:11Z{{DatatypeProperty +| rdfs:label@en = date use +| rdfs:label@el = έναρξη_χρήσης +| rdfs:domain = Canal +| rdfs:range = xsd:date +}}OntologyProperty:Daughter20212291574262022-04-17T20:47:07Z{{ObjectProperty +| labels = + {{label|en|daughter}} + {{label|fr|fille}} + {{label|nl|dochter}} + {{label|de|Tochter}} + {{label|el|κόρη}} + {{label|ja|娘}} + {{label|ar|ابنة}} +| rdfs:domain = Woman +| rdfs:range = Person +| owl:propertyDisjointWith = parent +}}OntologyProperty:DavisCup2027739588382022-06-20T12:05:16Z{{DatatypeProperty +| labels = +{{label|en|davis cup}} +{{{label|ur| کپ سالانہ بین الاقوامی ٹیم ٹینس مقابلہ کے لئے نوازا}} + + +| rdfs:domain = TennisPlayer +| rdfs:range = xsd:string +}}OntologyProperty:Day202762335832014-04-03T15:33:12Z{{DatatypeProperty +| labels = +{{label|en|day}} +{{label|de|Tag}} +{{label|el|ημέρα}} +{{label|fr|jour}} + +| rdfs:domain = Settlement +| rdfs:range = xsd:date +}}OntologyProperty:DaylightSavingTimeZone2022346360032014-07-08T13:10:32Z +{{ObjectProperty +| rdfs:label@en = daylight saving time zone +| rdfs:label@de = Sommerzeitzone +| rdfs:domain = Place +| rdfs:subPropertyOf = dul:isPartOf +}}OntologyProperty:DbnlCodeDutch2028143588412022-06-20T12:12:26Z{{DatatypeProperty +| labels = +{{label|en|Digital Library code NL}} +{{label|nl|DBNL code NL}} +| rdfs:domain = Writer +| rdfs:range = xsd:string +| rdfs:comment@en = identifier in Dutch digital library (dbnl) +| rdfs:comment@nl = ID in Digitale Bibliotheek voor de Nederlandse Letteren (dbnl) +}} +{{DatatypeProperty +| labels = + +{{label|ur| ڈیجیٹل لائبریری کوڈ NL}} +| rdfs:domain = Writer + +| rdfs:range = xsd:string +| comments = + + {{comment|ur|ڈچ ڈیجیٹل لائبریری (dbnl) میں شناخت کنندہ}} +}}OntologyProperty:Dbo:virus20213102568302022-03-01T00:34:44Z{{DatatypeProperty +| labels = +{{label|en|virus}} +{{label|fr|virus}} +| rdfs:domain = dbo:Disease +| rdfs:range = dbo:Virus +| rdf:type = +| rdfs:subPropertyOf = +| owl:equivalentProperty = +}}OntologyProperty:Dc:creator20211280486452015-08-06T15:12:03Z{{DatatypeProperty +| labels = + {{label|en|creator (literal)}} + {{label|de|Urheber}} + {{label|el|δημιουργός}} + {{label|nl|maker}} +| rdfs:range = xsd:string +| rdfs:comment@en=Creator/author of a work. For literal (string) use dc:creator; for object (URL) use creator +| rdfs:subPropertyOf = dul:coparticipatesWith +| owl:equivalentProperty = wikidata:P170 +}}OntologyProperty:Dc:description2021610588622022-06-20T13:43:49Z +{{DatatypeProperty +| labels = + +{{label|ur| ناشر کتب}} + +| rdfs:domain = کام +| rdfs:range = xsd:string +| comments = + + {{comment|ur| لیے ناشر استعمال کریں۔ (URL) استعمال کریں. آبجیکٹdc:publisherکسی کام کا ناشر۔ لغوی (سٹرنگ) کے لیے }} + +}}OntologyProperty:Dc:identifier2029569525532017-10-26T10:28:39Z{{ DatatypeProperty + | labels = +{{label|en|identifier}} + | comments = +{{comment|en|An identifier used to identify this thing.}} + | rdfs:range = xsd:string +}} + +[[Category:Identifier]]OntologyProperty:Dc:language2022307486722015-08-06T16:43:34Z{{DatatypeProperty +|rdfs:label@en = language (literal) +|rdfs:label@de = Sprache +|rdfs:comment@en = Language of the resource. Use dc:language for literal, language for object +|rdfs:domain = owl:Thing +|rdfs:range = xsd:string +}}OntologyProperty:Dc:publisher2025090588632022-06-20T13:45:39Z{{DatatypeProperty + |rdfs:label@en=publisher + |rdfs:label@de=Verlag + |rdfs:comment@en=Publisher of a work. For literal (string) use dc:publisher; for object (URL) use publisher + |rdfs:domain=Work + |rdfs:range=xsd:string +}} +{{DatatypeProperty +| labels = + +{{label|ur| ناشر کتب}} + +| rdfs:domain = کام +| rdfs:range = xsd:string +| comments = + + {{comment|ur| لیے ناشر استعمال کریں۔ (URL) استعمال کریں. آبجیکٹdc:publisherکسی کام کا ناشر۔ لغوی (سٹرنگ) کے لیے }} + +}}OntologyProperty:Dc:rights2021611185012012-05-19T15:44:55Z{{ObjectProperty +|rdfs:comment@en = Dublin Core (dc) properties should only be used for media resources compatible with a [http://dublincore.org/documents/dcmi-type-vocabulary/ Dublin Core type]. +|rdfs:label@en = rights +|rdfs:label@de = Rechte +}}OntologyProperty:Dc:subject2025091197232012-10-31T08:51:17Z{{ObjectProperty + |rdfs:label@en=subject + |rdfs:comment@en=Typically, the subject will be represented using keywords, key phrases, or classification codes. Recommended best practice is to use a controlled vocabulary. To describe the spatial or temporal topic of the resource, use the Coverage element. Dublin Core (dc) properties should only be used for media resources compatible with a [http://dublincore.org/documents/dcmi-type-vocabulary/ Dublin Core type]. + |rdfs:label@nl=onderwerp + |rdfs:comment@nl=Een onderwerp wordt in de regel aangeduid met trefwoorden of met een verwijzing naar een bepaalde classificatie. Het wordt aanbevolen hiervoor gebruik te maken van een verzameling termen en concepten die onder redactie staat. Om de dimensies in ruimte en tijd van het informatieobject aan te duiden kan beter het Coverage element worden gebruikt. Properties van de Dublin Core (dc) zijn in principe alleen van toepassing op het type informatieobjecten dat als [http://dublincore.org/documents/dcmi-type-vocabulary/ Dublin Core type] is benoemd. + |rdfs:domain=owl:Thing + |rdfs:range=owl:Thing +}}OntologyProperty:Dc:title2026762588802022-06-20T14:15:48Z{{DatatypeProperty +|rdfs:label@en = title +|rdfs:range = xsd:string +|rdfs:comment@en = Title that's a plain xsd:string, not rdf:langString (i.e. doesn't carry a language tag) +}} +{{DatatypeProperty +| labels = + +{{label|ur| عنوان}} + + +| rdfs:range = xsd:string +| comments = + + {{comment|ur|عنوان جو کہ ایک سادہ لفظ ہے، نہ کہ (یعنی اس میں الفاظ کی زبان نہیں ہے) }} + +}}OntologyProperty:Dc:type20210352391192015-01-09T19:15:39Z{{DatatypeProperty +| labels = +{{label|en|type (literal)}} +| comments = +{{comment|en|type as literal. If the template field is a string, use "dc:type". If it's a wikipedia page, use "type". If it can be either, use *both* "dc:type" and "type" (by mapping it twice)}} +| rdfs:domain = owl:Thing +| rdfs:range = xsd:string +| rdf:type = +| rdfs:subPropertyOf = +| owl:equivalentProperty = +}}OntologyProperty:Dc:عنوان20214170588782022-06-20T14:15:23Z{{DatatypeProperty +| labels = + +{{label|ur| عنوان}} + + +| rdfs:range = xsd:string +| comments = + + {{comment|ur|عنوان جو کہ ایک سادہ لفظ ہے، نہ کہ (یعنی اس میں الفاظ کی زبان نہیں ہے) }} + +}}OntologyProperty:Dcc2021719588882022-06-20T14:41:45Z{{DatatypeProperty +| rdfs:label@en = Dewey Decimal Classification +| rdfs:comment@en = The Dewey Decimal Classification is a proprietary system of library classification developed by Melvil Dewey in 1876. +| rdfs:domain = Work +| rdfs:range = xsd:string +| owl:equivalentProperty = wikidata:P1036 +}} +{{DatatypeProperty +| labels = + +{{label|ur| علم کتاب داری کی اعشاریہ درجہ بندی}} + +| rdfs:domain = کام +| rdfs:range = xsd:string +| comments = + + {{comment|ur|علم کتاب داری کی اعشاریہ درجہ بندی لائبریری کی درجہ بندی کا ایک ملکیتی نظام ہے جسے میلویل ڈیوی نے 1876 میں تیار کیا تھا۔}} + +}}OntologyProperty:Dcc:علم کتاب داری کی اعشاریہ درجہ بندی20214174588902022-06-20T14:43:46Z{{DatatypeProperty +| labels = + +{{label|ur| علم کتاب داری کی اعشاریہ درجہ بندی}} + +| rdfs:domain = کام +| rdfs:range = xsd:string +| comments = + + {{comment|ur|علم کتاب داری کی اعشاریہ درجہ بندی لائبریری کی درجہ بندی کا ایک ملکیتی نظام ہے جسے میلویل ڈیوی نے 1876 میں تیار کیا تھا۔}} + +}}OntologyProperty:Dct:created2029549588852022-06-20T14:26:40Z{{DatatypeProperty +| labels = +{{label|en|Date or range when this object was created}} +{{label|ur|تاریخ یا حد جب یہ آلہ بنایا گیا تھا}} +| comments = +{{comment|en|Based on http://purl.org/dc/terms/created}} +{{comment|ur|کی بنیاد پر http://purl.org/dc/terms/created}} +| rdfs:range = xsd:string +}}OntologyProperty:Dct:dateSubmitted2026001588912022-06-20T14:52:48Z{{DatatypeProperty +|labels= + {{label|en|date submitted}} +{{label|ur|جمع کرانے کی تاریخ}} +|rdfs:range = xsd:date +}}OntologyProperty:Dct:description2026761471922015-03-25T18:07:24Z{{DatatypeProperty +| labels = +{{label|en|Description}} +| rdfs:range = rdf:langString +}}OntologyProperty:Dct:extent20210400393392015-01-16T20:19:47Z{{DatatypeProperty +| comments= +{{comment|en|The size or duration of the resource. Use Use dct:format for file format, or dct:medium for material or physical carrier. Similar to http://purl.org/dc/terms/extent but that's an object property}} +| labels= +{{label|en|medium}} +| rdfs:domain = owl:Thing +| rdfs:range = xsd:string +}}OntologyProperty:Dct:format2029478588942022-06-20T15:04:31Z{{DatatypeProperty +| comments= +{{comment|en|File format of the resource. Use dct:medium for physical medium, or dct:extent for dimensions. Use dct:format for literal, format for object}} +{{comment|ur| dct:medium،وسائل کی فائل کی شکل۔ فزیکل میڈیم کے لیے + کو طول و عرض کے لیے استعمال کریں۔یاdct:extent + لفظی کے لیے ،آبجیکٹ کے لیے فارمیٹ کے لیے استعمال کریں dct:format}} +| labels= +{{label|en|format (literal)}} +{{label|ur|ترتیب (لفظی)}} +| rdfs:domain = owl:Thing +| rdfs:range = xsd:string +}}OntologyProperty:Dct:medium20210397393372015-01-16T20:19:12Z{{DatatypeProperty +| comments= +{{comment|en|The material or physical carrier of the resource. Use dct:format for file format, or dct:extent for dimensions. Similar to http://purl.org/dc/terms/medium but that's an object property}} +| labels= +{{label|en|medium}} +| rdfs:domain = owl:Thing +| rdfs:range = xsd:string +}}OntologyProperty:Dct:modified2026000335852014-04-03T15:33:20Z{{DatatypeProperty +|labels= + {{label|en|modified}} +{{label|de|geändert}} +|rdfs:range = xsd:date +}}OntologyProperty:Dct:references2029251588962022-06-20T15:14:18Z{{ObjectProperty + |rdfs:label@en=references + |rdfs:label@nl=verwijst naar + |rdfs:domain=Work + |rdfs:range=owl:Thing + |owl:equivalentProperty=http://purl.org/dc/terms/references +}} +{{DatatypeProperty +| labels = + +{{label|ur| حوالہ}} + +| rdfs:domain = work +| rdfs:range = xsd:string +| comments = + |owl:equivalentProperty=http://purl.org/dc/terms/references + + +}}OntologyProperty:Dct:source2029252322812014-03-06T15:13:58Z{{ObjectProperty + |rdfs:label@en=source + |rdfs:label@nl=heeft als bron + |rdfs:domain=Work + |rdfs:range=owl:Thing + |owl:equivalendProperty=http://purl.org/dc/terms/source +}}OntologyProperty:Dct:spatial2025763186362012-05-24T10:43:07Z{{ObjectProperty +|rdfs:label@en = spatial +}}OntologyProperty:Dct:subject2022899588992022-06-20T15:19:45Z{{ObjectProperty +|rdfs:label@en = subject +}} +{{ObjectProperty +| labels = + +{{label|ur|مضمون}} + + + + +}}OntologyProperty:Dct:temporal2026766250192013-04-18T11:15:36Z{{ObjectProperty +|rdfs:label@en = temporal +}}OntologyProperty:Dct:type20210463567892022-02-28T21:19:10Z{{ObjectProperty +|labels = + {{label|en|type}} + {{label|fr|type}} +}}OntologyProperty:Dct:ترتیب20214176588952022-06-20T15:09:13Z{{DatatypeProperty +| comments= +{{comment|ur| کو طول و عرض کے لیے استعمال کریں۔یاdct:extent، , dct:mediumوسائل کی فائل کی شکل فزیکل میڈیم کے لیے + کو طول و عرض کے لیے استعمال کریں۔یاdct:extent + لفظی کے لیے ،آبجیکٹ کے لیے فارمیٹ کے لیے استعمال کریں dct:format}} +| labels= + +{{label|ur|ترتیب (لفظی)}} +| rdfs:domain = owl:Thing +| rdfs:range = xsd:string +}}OntologyProperty:Dct:جمع کرانے کی تاریخ20214175588922022-06-20T14:53:54Z{{DatatypeProperty +|labels= + +{{label|ur|جمع کرانے کی تاریخ}} +|rdfs:range = xsd:date +}}OntologyProperty:Dct:حوالہ20214177588982022-06-20T15:16:48Z{{DatatypeProperty +| labels = + +{{label|ur| حوالہ}} + +| rdfs:domain = کام +| rdfs:range = xsd:string +| comments = + |owl:equivalentProperty=http://purl.org/dc/terms/references + + +}}OntologyProperty:Dct:مضمون20214178589002022-06-20T15:20:37Z{{ObjectProperty +| labels = + +{{label|ur|مضمون}} + + + + +}}OntologyProperty:Dct:پیدا کیا20214173588862022-06-20T14:27:10Z{{DatatypeProperty +| labels = + +{{label|ur|تاریخ یا حد جب یہ آلہ بنایا گیا تھا}} +| comments = + +{{comment|ur|کی بنیاد پر http://purl.org/dc/terms/created}} +| rdfs:range = xsd:string +}}OntologyProperty:DeFactoLanguage2027035255332013-05-25T22:45:01Z{{ObjectProperty +| labels = +{{label|en|de facto language}} +| rdfs:range = Language +| owl:equivalentProperty = language +}}OntologyProperty:DeadInFightDate2027801271042013-07-05T13:40:31Z{{DatatypeProperty +| labels = +{{label|en|dead in fight date}} +| rdfs:domain = Person +| rdfs:range = xsd:string +}}OntologyProperty:DeadInFightPlace2027802589012022-06-20T15:30:53Z{{DatatypeProperty +| labels = +{{label|en|dead in fight place}} +{{label|ur|مردہ لڑائی کی جگہ}} +| rdfs:domain = Person +| rdfs:range = xsd:string +}}OntologyProperty:Dean202763360042014-07-08T13:10:41Z +{{ObjectProperty +| rdfs:label@en = dean +| rdfs:label@de = Dekan +| rdfs:label@el = πρύτανης +| rdfs:label@nl = decaan +| rdfs:domain = EducationalInstitution +| rdfs:range = Person +| rdfs:subPropertyOf = dul:coparticipatesWith +}}OntologyProperty:Deanery2026481360052014-07-08T13:10:49Z +{{ObjectProperty +| labels = + {{label|en|deanery}} + {{label|de|Dekanat}} + {{label|nl|proosdij}} +| comments = + {{comment|en|Dioceses and parishes should know which deaneries there are }} +| rdfs:domain = Diocese, Parish +| rdfs:range = Deanery +| rdf:type = | rdfs:subPropertyOf = +| owl:equivalentProperty = +| rdfs:subPropertyOf = dul:isPartOf +}}OntologyProperty:DeathAge2027538589042022-06-20T15:33:46Z{{DatatypeProperty +| labels = +{{label|en|death age}} +{{label|ur|موت کی عمر}} +{{label|el|ηλικία θανάτου}} +{{label|de|Sterbealter}} +| rdfs:domain = Person +| rdfs:range = xsd:nonNegativeInteger +}}OntologyProperty:DeathCause202764360062014-07-08T13:10:58Z +{{ObjectProperty +| labels = + {{label|en|death cause}} + {{label|nl|doodsoorzaak}} + {{label|de|Todesursache}} + {{label|el|αιτία_θανάτου}} +| rdfs:domain = Person +| owl:equivalentProperty = wikidata:P509 +| rdfs:subPropertyOf = dul:coparticipatesWith +}}OntologyProperty:DeathDate202765560822021-10-02T16:38:37Z{{DatatypeProperty +| labels = +{{label|en|death date}} +{{label|de|Sterbedatum}} +{{label|fr|date de décès}} +{{label|el|ημερομηνία_θανάτου}} +{{label|ja|没年月日}} +{{label|nl|sterfdatum}} +| rdfs:domain = Animal +| rdfs:range = xsd:date +| rdf:type = owl:FunctionalProperty +| owl:equivalentProperty = schema:deathDate, wikidata:P570, gnd:dateOfDeath +}}OntologyProperty:DeathPlace202766589062022-06-20T15:36:57Z{{ObjectProperty +| labels = + {{label|en|death place}} + {{label|de|Sterbeort}} + {{label|fr|lieu de décès}} + {{label|el|τόπος_θανάτου}} + {{label|ja|死没地}} + {{label|nl|plaats van overlijden}} +{{label|ur|موت کی جگہ}} +| rdfs:domain = Animal +| comments = +{{comment|en|The place where the person died.}} +{{comment|ur|وہ جگہ جہاں شخص کی موت ہوئی۔}} +| rdfs:range = Place +| owl:equivalentProperty = schema:deathPlace, wikidata:P20 +| rdfs:subPropertyOf = dul:hasLocation +}}OntologyProperty:DeathYear202767537912020-10-26T19:57:47Z{{DatatypeProperty +| labels = +{{label|en|death year}} +{{label|nl|jaar van overlijden}} +{{label|de|Sterbejahr}} +{{label|ja|没年}} +{{label|el|έτος θανάτου}} +| rdfs:domain = Person +| rdfs:range = xsd:gYear +| rdf:type = owl:FunctionalProperty +| owl:equivalentProperty = gnd:dateOfDeath +}}OntologyProperty:Deaths20213105569752022-03-09T10:35:54Z{{ObjectProperty +| labels = + {{label|en|Deaths}} + {{label|fr|Décès}} + {{label|zh|死亡}} +| comments = + {{comment|en|Permanent, irreversible cessation of all biological functions that sustain a living organism}} + {{comment|fr|Arrêt permanent et irreversible de toutes les fonctions biologiques qui maintiennent en vie un organisme}} + {{comment|zh|是相對於生命體存在存活的生命現象,指维持一个生物生命存活的所有功能生物学功能的永久终止}} +| rdfs:domain = owl:Thing +| rdfs:range = Disease +}}OntologyProperty:Debut202768589082022-06-20T15:41:02Z{{DatatypeProperty +| rdfs:label@en = debut +| rdfs:label@el = ντεμπούτο +| rdfs:label@de = Debüt +| rdfs:label@ja = デビュー +| rdfs:domain = Wrestler +| rdfs:range = xsd:date +}} +{{DatatypeProperty +| labels = + +{{label|ur|شروع}} + +| rdfs:domain = Wrestler +| rdfs:range = xsd:date + +}}OntologyProperty:DebutTeam202770360082014-07-08T13:11:14Z +{{ObjectProperty +| rdfs:label@en = debut team +| rdfs:label@el = πρώτη ομάδα +| rdfs:domain = Athlete +| rdfs:range = SportsTeam +| rdfs:subPropertyOf = dul:isMemberOf +}}OntologyProperty:DebutWork20210414394042015-01-19T13:13:36Z{{ObjectProperty +| labels= +{{label|en|debutWork}} +| comments= +{{comment|en|First work of a person (may be notableWork or not)}} +| rdfs:domain = Person +| rdfs:range = Work +}}OntologyProperty:Dec2026143589102022-06-20T16:01:08Z{{DatatypeProperty +| rdfs:label@en = dec +| rdfs:domain = Openswarm +| rdfs:range = xsd:string +}} +{{DatatypeProperty +| labels = + +{{label|ur|یونانی لفظ سے ماخُوذ }} + +| rdfs:domain = Openswarm +| rdfs:range = xsd:string +| comments = + + +}}OntologyProperty:Decay202772216512013-01-02T19:17:51Z{{DatatypeProperty +| rdfs:label@en = decay +| rdfs:label@el = αποσύνθεση +| rdfs:domain = Spacecraft +| rdfs:range = xsd:date +}}OntologyProperty:DecideDate20277379592010-05-28T12:59:03Z{{DatatypeProperty +| rdfs:label@en = decide date +| rdfs:domain = SupremeCourtOfTheUnitedStatesCase +| rdfs:range = xsd:date +}}OntologyProperty:Declination2025342589122022-06-20T16:05:21Z{{ DatatypeProperty + + | rdfs:label@en = declination + | rdfs:domain = Constellation + | rdfs:range = xsd:nonNegativeInteger + +}} +{{DatatypeProperty +| labels = + +{{label|ur| زوال}} + +| rdfs:domain = Constellation +| rdfs:range = xsd:nonNegativeInteger + + +}}OntologyProperty:DecommissioningDate2023105376162014-08-25T15:59:53Z{{DatatypeProperty +| rdfs:label@en=decommissioning date +| rdfs:label@es=fecha de baja de servicio +| rdfs:domain = Ship +| rdfs:range = xsd:date +}}OntologyProperty:Decoration2027544271792013-07-09T09:56:13Z{{ObjectProperty +| labels = +{{label|en|decoration}} +| rdfs:domain = Person +}}OntologyProperty:Defeat2027588589272022-06-20T16:48:50Z{{DatatypeProperty +| labels = +{{label|en|defeat}} +{{label|el|ήττα}} +{{label|de|Niederlage}} +{{label|ur|شکست}} +| rdfs:domain = Boxer +| rdfs:range = xsd:nonNegativeInteger +}}OntologyProperty:DefeatAsMgr2027662491422015-10-13T09:49:25Z{{DatatypeProperty +| labels = +{{label|en|defeat as team manager}} +{{label|de|Niederlage als Trainer}} +| rdfs:domain = Coach +| rdfs:range = xsd:nonNegativeInteger +}}OntologyProperty:Definition2024442537832020-10-21T18:57:14Z{{DatatypeProperty +| rdfs:domain = Galaxy +| rdfs:range = xsd:string +| labels = + {{label|fr|définition}} + {{label|en|definition}} + {{label|tr|tanımlar}} +| owl:equivalentProperty = gnd:definition +}}OntologyProperty:Defunct20211892589322022-06-20T17:02:25Z{{DatatypeProperty +| labels = + +{{label|en|Defunct }} +{{label|ur|ناکارہ }} + +| rdfs:domain = company +| rdfs:range = xsd:boolean +| comments = +{{comment|en|If the company is defunct or not. Use end_date if a date is given}} + +{{comment|ur|اگر کمپنی ناکارہ ہے یا نہیں۔ اگر تاریخ دی گئی ہو تو اختتامی_تاریخ استعمال کریں۔}} +}}OntologyProperty:DelegateMayor2027108589622022-06-20T18:12:37Z +{{ObjectProperty +| labels = + {{label|en|delegate mayor}} +{{label|ur|مندوب ناظم}} + +| rdfs:domain = PopulatedPlace +| rdfs:range = Person +| rdfs:subPropertyOf = dul:sameSettingAs +}}OntologyProperty:Delegation2027284574272022-04-17T20:48:22Z{{DatatypeProperty +| labels = + {{label|en|delegation}} + {{label|fr|délégation}} +| rdfs:domain = PopulatedPlace +| rdfs:range = xsd:string +}}OntologyProperty:DeliveryDate2022548589352022-06-20T17:06:15Z{{DatatypeProperty + |rdfs:label@en=delivery date + |rdfs:label@nl=leverdatum + |rdfs:range=xsd:date +}} +{{DatatypeProperty +| labels = + +{{label|ur| ادئیگی کی تاریخ}} + |rdfs:range=xsd:date +}}OntologyProperty:Deme2027239589612022-06-20T18:09:24Z{{DatatypeProperty +| labels = +{{label|en|deme}} +{{label|ur|محلّہ}} +| rdfs:domain = PopulatedPlace +| rdfs:range = xsd:string +}}OntologyProperty:Demographics2027912335942014-04-03T15:34:01Z{{ObjectProperty +| labels = +{{label|en|demographics}} +{{label|de|Demografie}} +| rdfs:domain = PopulatedPlace +| rdfs:range = Demographics +}}OntologyProperty:DemographicsAsOf2023809589372022-06-20T17:18:05Z{{DatatypeProperty +| rdfs:label@en = demographics as of +| rdfs:label@pt = indicadores demograficos em +| rdfs:domain = PopulatedPlace +| rdfs:range = xsd:date +}} +{{DatatypeProperty +| labels = + +{{label|ur|آبادیاتی}} + +| rdfs:domain = PopulatedPlace +| rdfs:range = xsd:date + + +}}OntologyProperty:DemolitionDate202774589592022-06-20T18:05:55Z{{DatatypeProperty +| labels = + {{label|en|demolition date}} + {{label|fr|date de démolition}} + {{label|el|ημερομηνία κατεδάφισης}} + {{label|ur|انہدام کی تاریخ}} + +| rdfs:domain = ArchitecturalStructure +| rdfs:range = xsd:date +| comments = + {{comment|en|The date the building was demolished.}} + {{comment|fr|Date à laquelle l'immeuble a été démoli.}} + {{comment|ur|جس تاریخ کو عمارت گرائی گئی۔}} +}}OntologyProperty:DemolitionYear2023840574282022-04-17T20:51:15Z{{DatatypeProperty +| labels = + {{label|en|demolition year}} + {{label|fr|année de démolition}} + {{label|nl|sloop jaar}} +| rdfs:domain = ArchitecturalStructure +| rdfs:range = xsd:gYear +| comments = + {{comment|en|The year the building was demolished.}} + {{comment|fr|Année où le bâtiment a été démoli.}} +}}OntologyProperty:Demonym202775589452022-06-20T17:43:16Z{{DatatypeProperty +| rdfs:label@en = demonym +| rdfs:label@de = Volksbezeichnung +| rdfs:label@el = τοπονύμιο_πληθυσμού +| rdfs:label@gl = xentilicio +| rdfs:label@fr = gentilé +| rdfs:label@fr = démonyme +| rdfs:label@nl = naam bevolkingsgroep +| rdfs:range = rdf:langString +}} +{{DatatypeProperty +| labels = + +{{label|ur| ایک قصبے کے نام سے جانا جاتا}} + + +| rdfs:range = rdf:langString +}}OntologyProperty:Denomination202776589562022-06-20T17:59:07Z +{{ObjectProperty +| rdfs:label@en = denomination +|rdfs:comment@en = Religious denomination of a church, religious school, etc. Examples: Haredi_Judaism, Sunni_Islam, Seventh-day_Adventist_Church, Non-Denominational, Multi-denominational, Non-denominational_Christianity +| rdfs:subPropertyOf = dul:isExpressedBy +| rdfs:domain = Agent +}} +{{ObjectProperty +| labels = + +{{label|ur|فرقہ}} +| comments = + + {{comment|ur| چرچ، مذہبی اسکول، وغیرہ کا مذہبی فرقہ۔ مثالیں: ہریدی_یہودیت، سنی_اسلام، سیونتھ ڈے_ایڈونٹسٹ_چرچ، غیر فرقہ وارانہ، کثیر فرقہ، غیر فرقہ_عیسائیت}} + +| rdfs:subPropertyOf = dul:isExpressedBy +| rdfs:domain = Agent +}}OntologyProperty:Density202777353572014-06-18T22:31:54Z{{DatatypeProperty +| rdfs:label@en = density +| rdfs:label@de = Dichte +| rdfs:label@pt = densidade +| rdfs:label@el = πυκνότητα +| rdfs:label@fr = densité +| rdfs:label@ja = 密度 +| rdfs:label@it= densità +| rdfs:range = Density +}}OntologyProperty:Department202778589512022-06-20T17:46:51Z +{{ObjectProperty +| labels = + {{label|en|department}} + {{label|de|Abteilung}} + {{label|nl|afdeling}} + {{label|fr|département}} + {{label|eu|eskualdea}} + {{label|ur|شعبہ}} +| rdfs:domain = PopulatedPlace +| rdfs:range = Department +| rdfs:subPropertyOf = dul:isPartOf +}}OntologyProperty:DepartmentCode2029273589542022-06-20T17:53:54Z{{DatatypeProperty +| labels = +{{label|en|code of the department}} +{{label|en|محکمہ کا کوڈ}} +{{label|nl|departementcode}} +| rdfs:domain = Municipality +| rdfs:range = xsd:string +}}OntologyProperty:DepartmentPosition2026788250762013-04-21T14:45:47Z{{DatatypeProperty +| labels = +{{label|en|geolocDepartment}} +| rdfs:domain = PopulatedPlace +| rdfs:range = xsd:string +}}OntologyProperty:DepictionDescription2026140348412014-05-15T05:18:55Z{{DatatypeProperty +| labels = {{label|en|depiction description (caption)}} +| comments = {{comment|en|This property can be used to map image captions from Infoboxes}} +| rdfs:range = rdf:langString +}}OntologyProperty:Depth202779485072015-07-28T17:24:07Z{{DatatypeProperty +| labels = +{{label|en|depth}} +{{label|de|Tiefe}} +{{label|nl|diepte}} +{{label|el|βάθος}} +{{label|fr|profondeur}} +| comments = +{{comment|en|Is a measure of the distance between a reference height and a point underneath. The exact meaning for a place is unclear. If possible, use {{linkProperties|maximumDepth|}} or {{linkProperties|averageDepth|}} to be unambiguous.}} +| rdfs:domain = Place +| rdfs:range = Length +}}OntologyProperty:DepthQuote2027091256152013-05-26T13:33:31Z{{DatatypeProperty +| labels = +{{label|en|depth quote}} +| rdfs:domain = Place +| rdfs:range = xsd:string +}}OntologyProperty:Depths2027925276782013-07-15T15:05:02Z{{ObjectProperty +| labels = +{{label|en|depths}} +| rdfs:domain = Place +| rdfs:range = Depth +}}OntologyProperty:Deputy2022341360122014-07-08T13:11:56Z +{{ObjectProperty +| rdfs:label@en = deputy +| rdfs:label@de = Stellvertreter +| rdfs:range = Person +| rdfs:subPropertyOf = dul:coparticipatesWith +}}OntologyProperty:Derivative202780360132014-07-08T13:12:05Z{{DisclaimerOntologyProperty}} + + +{{ObjectProperty +| rdfs:label@en = derivative +| rdfs:domain = MusicGenre +| rdfs:range = MusicGenre +| rdfs:subPropertyOf = dul:specializes +}}OntologyProperty:DerivedWord2027746336002014-04-03T15:34:35Z{{DatatypeProperty +| labels = +{{label|en|derived word}} +{{label|de|abgeleitetes Wort}} +| rdfs:domain = Person +| rdfs:range = xsd:string +}}OntologyProperty:Description2025241568942022-03-02T18:12:00Z{{ DatatypeProperty + | comments = +{{comment|en|Short description of a person}} +{{comment|fr|description courte d'une personne}} + | labels = +{{label|en|description}} +{{label|fr|description}} +{{label|el|περιγραφή}} +{{label|de|Beschreibung}} +{{label|nl|omschrijving}} + | rdfs:range = rdf:langString + | owl:equivalentProperty = schema:description +}}OntologyProperty:DesignCompany202781525992017-10-31T10:21:44Z +{{ObjectProperty +| rdfs:label@en = designer company +| rdfs:range = Company +| rdfs:subPropertyOf = dul:coparticipatesWith +}}OntologyProperty:Designer202782475592015-04-03T09:09:30Z{{ObjectProperty +| rdfs:label@en = designer +| rdfs:label@el = σχεδιαστής +| rdfs:range = Person +| rdfs:subPropertyOf = dul:coparticipatesWith +| owl:equivalentProperty = wikidata:P287 +}}OntologyProperty:Destination202784522522017-10-08T09:28:15Z +{{ObjectProperty +| rdfs:label@en = destination +| rdfs:label@de = Ziel +| rdfs:label@el = προορισμός +| rdfs:domain = PublicTransitSystem +| rdfs:range = PopulatedPlace +| rdfs:subPropertyOf = dul:coparticipatesWith +}}OntologyProperty:DestructionDate202785574292022-04-17T20:52:36Z{{DatatypeProperty +| labels = + {{label|en|destruction date}} + {{label|fr|date de destruction}} + {{label|nl|sloopdatum}} + {{label|el|ημερομηνία καταστροφής}} +| rdfs:range = xsd:date +}}OntologyProperty:DetectionMethod2022146336022014-04-03T15:34:43Z{{DatatypeProperty +| rdfs:label@en = Method of discovery +| rdfs:label@de = Verfahren zur Entdeckung +| rdfs:domain = Planet +| rdfs:range = xsd:string +}}OntologyProperty:Detractor2027776336032014-04-03T15:34:47Z{{ObjectProperty +| labels = +{{label|en|detractor}} +{{label|de|Kritiker}} +| rdfs:domain = Person +| rdfs:range = Person +}}OntologyProperty:Developer202786487092015-08-10T10:33:56Z{{ObjectProperty +| labels = + {{label|en|developer}} + {{label|nl|ontwikkelaar}} + {{label|de|Entwickler}} + {{label|fr|développeur}} +| rdfs:comment@en = Developer of a Work (Artwork, Book, Software) or Building (Hotel, Skyscraper) +| rdfs:range = Agent +| rdfs:subPropertyOf = dul:coparticipatesWith +| owl:equivalentProperty = wikidata:P178 +}}OntologyProperty:DfE2023120528942018-02-13T12:27:26Z{{ObjectProperty + |rdfs:label@en=DfE + |rdfs:comment@en=Department for Education (UK) number of a school in England or Wales + |rdfs:domain=School + |rdfs:subPropertyOf=code +}}OntologyProperty:Diameter202787527732018-01-23T14:56:10Z{{DatatypeProperty +| labels = +{{label|en|diameter}} +{{label|de|Durchmesser}} +{{label|nl|diameter}} +{{label|fr|diamètre}} +{{label|el|διάμετρος}} +| rdfs:range = Length +| rdf:type = owl:FunctionalProperty +| owl:equivalentProperty = wikidata:P2386 +}}OntologyProperty:DifferentialDiagnosis20211863522002017-10-07T14:32:20Z{{ObjectProperty +| labels = + {{label|en|differential diagnosis}} + {{label|fr|diagnostic différentiel}} + {{label|de|Differentialdiagnose}} +| rdfs:domain = Disease +| rdfs:range = owl:Thing +}}OntologyProperty:DigitalChannel2023052347532014-05-11T19:58:21Z{{DatatypeProperty +| rdfs:label@en = digital channel +| rdfs:label@de = Digitalkanal +| rdfs:label@el = Ψηφιακό κανάλι +| rdfs:comment@el = Ένα ψηφιακό κανάλι επιτρέπει την μετάδοση δεδομένων σε ψηφιακή μορφή. +| rdfs:domain = Broadcaster +| rdfs:range = xsd:string +}}OntologyProperty:DigitalSubChannel2023183119122011-04-05T10:35:32Z{{DatatypeProperty +| rdfs:label@en = digital sub channel +| rdfs:domain = Broadcaster +| rdfs:range = xsd:string +| rdfs:comment@en = In broadcasting, digital subchannels are a means to transmit more than one independent program at the same time from the same digital radio or digital television station on the same radio frequency channel. (http://en.wikipedia.org/wiki/Digital_subchannel - 05/04/2011) +}}OntologyProperty:Diocese2026482568112022-02-28T22:24:27Z{{ObjectProperty +| labels = + {{label|en|diocese}} + {{label|fr|diocèse}} + {{label|de|Diözese}} + {{label|nl|bisdom}} +| comments = + {{comment|en|A religious administrative body above the parish level}} + {{comment|fr|Structure administrative religieuse au-dessus du niveau paroissial}} +| rdfs:domain = owl:Thing +| rdfs:range = Diocese +| rdf:type = | rdfs:subPropertyOf = +| owl:equivalentProperty = +<!--| rdfs:subPropertyOf = dul:isPartOf--> +| owl:equivalentProperty = wikidata:P708 +}}OntologyProperty:Diploma2027540336072014-04-03T15:35:04Z{{ObjectProperty +| labels = +{{label|en|diploma}} +{{label|de|Diplom}} +| rdfs:domain = Person +| rdfs:range = Diploma +}}OntologyProperty:Director202788525402017-10-23T10:16:53Z +{{ObjectProperty +| labels = + {{label|en|director}} + {{label|en|film director}} + {{label|nl|regisseur}} + {{label|da|instruktør}} + {{label|de|regisseur}} + {{label|ru|директор}} + {{label|el|σκηνοθέτης}} + {{label|es|director de cine}} + {{label|fr|réalisateur}} +| comments = + {{comment|en|A film director is a person who directs the making of a film.<ref>https://en.wikipedia.org/wiki/Film_director</ref>}} + {{comment|fr|Un réalisateur (au féminin, réalisatrice) est une personne qui dirige la fabrication d'une œuvre audiovisuelle, généralement pour le cinéma ou la télévision.<ref>https://fr.wikipedia.org/wiki/Réalisateur</ref>}} +| rdfs:domain = Film +| rdfs:range = Person +| owl:equivalentProperty = schema:director, wikidata:P57 +| rdfs:subPropertyOf = dul:coparticipatesWith +}} +'''Warning''': this property is used for film making. For a more general term see [[OntologyProperty:Head]]. + +== references == +<references/>OntologyProperty:DisappearanceDate2027072587832022-05-31T14:25:04Z{{DatatypeProperty +| labels = +{{label|en|date disappearance of a populated place}} +| rdfs:domain = PopulatedPlace +| rdfs:range = xsd:date +| owl:equivalentProperty = wikidata:P746 +}}OntologyProperty:Disbanded20278979662010-05-28T13:00:02Z{{DatatypeProperty +| rdfs:label@en = disbanded +| rdfs:domain = MilitaryUnit +| rdfs:range = xsd:date +}}OntologyProperty:Discharge202790486152015-08-06T12:27:35Z{{DatatypeProperty +| rdfs:label@en = discharge +| rdfs:label@el = εκροή +| rdfs:label@nl = uitstoot +| rdfs:domain = Stream +| rdfs:range = FlowRate +}}OntologyProperty:DischargeAverage202791328592014-03-20T22:03:12Z{{DatatypeProperty +| rdfs:label@en = discharge average +| rdfs:domain = MeanOfTransportation +| rdfs:range = FlowRate +}}OntologyProperty:Disciple2027338360202014-07-08T13:13:10Z +{{ObjectProperty +| labels = + {{label|en|disciple}} + {{label|fr|disciple}} + {{label|fr|élève}} +| rdfs:domain = Artist +| rdfs:range = Artist +| owl:inversePropertyOf = mentor +| comments = + {{comment|en|A person who learns from another, especially one who then teaches others..<ref>http://en.wiktionary.org/wiki/disciple</ref>}} + {{comment|fr|Celui qui apprend d’un maître quelque science ou quelque art libéral.<ref>http://fr.wiktionary.org/wiki/disciple</ref>}} +| rdfs:subPropertyOf = dul:sameSettingAs +}} +<references/>OntologyProperty:Discipline2026134475642015-04-03T09:13:23Z{{ObjectProperty +| labels = + {{label|en|discipline}} + {{label|de|Disziplin}} +| rdfs:domain = Agent +| rdfs:subPropertyOf = dul:isDescribedBy +| owl:equivalentProperty = wikidata:P101 +}}OntologyProperty:Discontinued20279279692010-05-28T13:00:28Z{{DatatypeProperty +| rdfs:label@en = discontinued +| rdfs:domain = Beverage +| rdfs:range = xsd:date +}}OntologyProperty:Discovered202793491972015-10-14T12:41:25Z{{DatatypeProperty +| labels = +{{label|en|discovered}} +{{label|de|entdeckt}} +{{label|en|discovery date}} +{{label|el|Ημερομηνία ανακάλυψης}} +{{label|fr|date de découverte}} +{{label|es|fecha de descubrimiento}} +{{label|pt|descobridor}} +| rdfs:domain = CelestialBody +| rdfs:range = xsd:date +| owl:equivalentProperty = wikidata:P575 +}}OntologyProperty:Discoverer202794360222014-07-08T13:13:25Z +{{ObjectProperty +| labels = + {{label|en|discoverer}} + {{label|de|Entdecker}} + {{label|el|Ανακαλύφθηκε από}} + {{label|fr|découvreur}} + {{label|es|descubridor}} +| rdfs:range = Person +| owl:equivalentProperty = wikidata:P61 <!-- P61 is somehow more general : discoverer or inventor --> +| rdfs:subPropertyOf = dul:coparticipatesWith +}}OntologyProperty:Discovery2027059336112014-04-03T15:35:22Z{{DatatypeProperty +| labels = +{{label|en|date when the island has been discovered}} +{{label|de|Datum als die Insel entdeckt wurde}} +{{label|nl|datum waarop het eiland is ontdekt}} +| rdfs:domain = Island +| rdfs:range = xsd:string +}}OntologyProperty:Disease20211907522952017-10-08T19:32:51Z{{ObjectProperty +| labels = + {{label|en|disease}} + {{label|de|Krankheit}} +| comments = + {{comment|en|Points to a disease pertaining to the subject at hand.}} + {{comment|de|Verweist auf eine Krankheit.}} +| rdfs:domain = owl:Thing +| rdfs:range = Disease +}}OntologyProperty:DiseasesDB20211870522072017-10-07T15:38:54Z{{DatatypeProperty +| labels = +{{label|en|DiseasesDB}} +{{label|nl|DiseasesDB}} +{{label|de|DiseasesDB}} +{{label|fr|DiseasesDB}} +| rdfs:domain = Disease +| rdfs:range = xsd:string +}}OntologyProperty:DiseasesDb202795476162015-04-03T10:25:50Z{{DatatypeProperty +| labels = +{{label|en|diseasesDb}} +{{label|nl|diseasesDb}} +{{label|ja|diseasesDb}} +| rdfs:domain = Disease +| rdfs:range = xsd:string +| owl:equivalentProperty = wikidata:P557 +}}OntologyProperty:Displacement202796376142014-08-25T15:06:07Z{{DatatypeProperty +| rdfs:label@en = displacement +| rdfs:label@es = cilindrada +| rdfs:domain = AutomobileEngine +| rdfs:range = Volume +| rdf:type = owl:FunctionalProperty +}}OntologyProperty:DissolutionDate2022318573682022-03-31T12:34:39Z{{merge|dissolved|dissolutionYear}} + +{{DatatypeProperty +| labels = + {{label|en|dissolution date}} + {{label|fr|date de dissolution}} + {{label|nl|ontbindingsdatum}} +| rdfs:domain = Organisation, PopulatedPlace +| rdfs:range = xsd:date +| owl:equivalentProperty = schema:dissolutionDate +}}OntologyProperty:DissolutionYear2022316466252015-03-20T08:24:08Z{{merge|dissolved|dissolutionDate}} + +{{DatatypeProperty +| rdfs:label@en = dissolution year +| rdfs:domain = Organisation, PopulatedPlace +| rdfs:range = xsd:gYear +}}OntologyProperty:Dissolved202797172682012-04-18T09:08:57Z{{merge|dissolutionDate|dissolutionYear}} + +{{DatatypeProperty +| rdfs:label@en = dissolved +| rdfs:domain = SoccerClub +| rdfs:range = xsd:date +}}OntologyProperty:Dist ly2026137462132015-03-18T11:03:48Z{{DatatypeProperty +| rdfs:label@en = dist_ly +| rdfs:domain = Openswarm +| rdfs:range = xsd:string +}}OntologyProperty:Dist pc2026141462162015-03-18T11:04:11Z{{DatatypeProperty +| rdfs:label@en = dist_pc +| rdfs:domain = Openswarm +| rdfs:range = xsd:integer +}}OntologyProperty:Distance202798574302022-04-17T20:54:21Z{{DatatypeProperty +| labels = + {{label|en|distance}} + {{label|fr|distance}} + {{label|de|Entfernung}} +| rdfs:range = Length +}}OntologyProperty:DistanceLaps202799103722010-11-10T14:28:31Z{{DatatypeProperty +| rdfs:label@en = distance laps +| rdfs:domain = GrandPrix +| rdfs:range = xsd:nonNegativeInteger +}}OntologyProperty:DistanceToBelfast20280079762010-05-28T13:01:23Z{{DatatypeProperty +| rdfs:label@en = distance to Belfast +| rdfs:domain = Settlement +| rdfs:range = Length +}}OntologyProperty:DistanceToCapital2023271247532013-04-05T07:34:22Z{{DatatypeProperty +| rdfs:label@en = distance to capital +| rdfs:label@de = entfernung zur hauptstadt +| rdfs:label@it = distanza alla capitale +| rdfs:label@el = απόσταση από την πρωτεύουσα +| rdfs:label@pt = distância até a capital +| rdfs:domain = Settlement +| rdfs:range = Length +| rdfs:subPropertyOf = Distance +}}OntologyProperty:DistanceToCardiff202801212232012-12-27T20:47:19Z{{DatatypeProperty +| rdfs:label@en = distance to Cardiff +| rdfs:label@el = απόσταση από το Cardiff +| rdfs:domain = Settlement +| rdfs:range = Length +}}OntologyProperty:DistanceToCharingCross202213283652010-05-28T13:54:28Z{{DatatypeProperty +| rdfs:label@en = distance to Charing Cross +| rdfs:domain = Settlement +| rdfs:range = Length +}}OntologyProperty:DistanceToDouglas202802212242012-12-27T20:48:20Z{{DatatypeProperty +| rdfs:label@en = distance to Douglas +| rdfs:label@el = απόσταση από το Douglas +| rdfs:domain = Settlement +| rdfs:range = Length +}}OntologyProperty:DistanceToDublin2022131212252012-12-27T20:49:03Z{{DatatypeProperty +| rdfs:label@en = distance to Dublin +| rdfs:label@el = απόσταση από το Δουβλίνο +| rdfs:domain = Settlement +| rdfs:range = Length +}}OntologyProperty:DistanceToEdinburgh202803212262012-12-27T20:50:11Z{{DatatypeProperty +| rdfs:label@en = distance to Edinburgh +| rdfs:label@el = απόσταση από το Εδιμβούργο +| rdfs:domain = Settlement +| rdfs:range = Length +}}OntologyProperty:DistanceToLondon202804212272012-12-27T20:51:06Z{{DatatypeProperty +| rdfs:label@en = distance to London +| rdfs:label@el = απόσταση από το Λονδίνο +| rdfs:domain = Settlement +| rdfs:range = Length +}}OntologyProperty:DistanceToNearestCity20211783572802022-03-30T13:29:33Z{{DatatypeProperty +| labels = + {{label|en|distance to nearest city}} + {{label|fr|distance à la ville la plus proche}} + {{label|cs|vzdálenost k nejbližšímu městu}} +| rdfs:domain = Settlement +| rdfs:range = Length +}}OntologyProperty:DistanceTraveled202805336122014-04-03T15:35:27Z{{DatatypeProperty +| rdfs:label@en = distance traveled +| rdfs:label@de = Zurückgelegte Entfernung +| rdfs:label@nl = afgelegde afstand +| rdfs:domain = SpaceMission +| rdfs:range = Length +}}OntologyProperty:DistributingCompany202806360232014-07-08T13:13:33Z +{{ObjectProperty +| rdfs:label@en = distributing company +| rdfs:domain = RecordLabel +| rdfs:range = Company +| rdfs:subPropertyOf = dul:coparticipatesWith +}}OntologyProperty:DistributingLabel202807360242014-07-08T13:13:43Z +{{ObjectProperty +| rdfs:label@en = distributing label +| rdfs:domain = RecordLabel +| rdfs:range = RecordLabel +| rdfs:subPropertyOf = dul:coparticipatesWith +}}OntologyProperty:Distributor202808475652015-04-03T09:14:40Z{{ObjectProperty +| rdfs:label@en = distributor +| rdfs:label@fr = allumeur +| rdfs:range = Organisation +| rdfs:subPropertyOf = dul:coparticipatesWith +| owl:equivalentProperty = wikidata:P750 +}}OntologyProperty:District202809517612016-12-19T10:16:42Z +{{ObjectProperty +| labels = + {{label|en|district}} + {{label|nl|streek}} + {{label|pt|distrito}} + {{label|de|Bezirk}} + {{label|el|περιοχή}} + {{label|hi|जिला}} +| rdfs:range = PopulatedPlace +| rdfs:domain = Place +| owl:equivalentProperty = wikidata:P131 +| rdfs:subPropertyOf = dul:isPartOf +}}OntologyProperty:Division202810360272014-07-08T13:14:17Z +{{ObjectProperty +| labels = + {{label|en|division}} + {{label|nl|verdeling}} +| rdfs:subPropertyOf = dul:isPartOf +}}OntologyProperty:DockedTime20281179822010-05-28T13:02:13Z{{DatatypeProperty +| rdfs:label@en = docked time +| rdfs:domain = Spacecraft +| rdfs:range = Time +}}OntologyProperty:DoctoralAdvisor202813475662015-04-03T09:15:38Z{{ObjectProperty +| rdfs:label@en = doctoral advisor +| rdfs:label@de = Doktorvater +| rdfs:label@el = διδακτορικός_σύμβουλος +| rdfs:domain = Scientist +| rdfs:range = Person +| rdfs:subPropertyOf = dul:coparticipatesWith +| owl:equivalentProperty = wikidata:P184 +}}OntologyProperty:DoctoralStudent202814475672015-04-03T09:16:21Z{{ObjectProperty +| rdfs:label@en = doctoral student +| rdfs:label@de = Doktorand +| rdfs:label@el = διδακτορικοί_φοιτητές +| rdfs:label@nl = doctoraalstudent +| rdfs:domain = Scientist +| rdfs:range = Person +| rdfs:subPropertyOf = dul:coparticipatesWith +| owl:equivalentProperty = wikidata:P185 +}}OntologyProperty:DocumentDesignation2029129316152014-02-10T14:21:08Z{{DatatypeProperty +| rdfs:label@en = String designation of the WrittenWork describing the resource +| rdfs:label@nl = Aanduiding beschrijvend document +| rdfs:domain = owl:Thing +| rdfs:range = xsd:string +}}OntologyProperty:DocumentNumber2028411513212016-06-30T10:16:57Z{{ DatatypeProperty + | rdfs:comment@en = Identification a document within a particular registry + | rdfs:label@en = document number +| rdfs:label@de = Dokumentnummer + | rdfs:label@nl = documentnummer + | rdfs:domain = Document + | rdfs:range = xsd:string + | rdfs:subPropertyOf = +}}OntologyProperty:Domain202815567672022-02-28T17:58:22Z +{{ObjectProperty +| labels = + {{label|en|domain}} + {{label|nl|domein}} + {{label|fr|domaine}} + {{label|ja|ドメイン_(分類学)}} +| rdfs:domain = Species +| rdfs:subPropertyOf = dul:specializes +}}OntologyProperty:DorlandsId20211902522852017-10-08T18:49:37Z{{DatatypeProperty +| labels = +{{label|en|DorlandsID}} +{{label|nl|DorlandsID}} +{{label|ja|DorlandsID}} +| rdfs:domain = AnatomicalStructure +| rdfs:range = xsd:string +}}OntologyProperty:DorlandsPrefix20281679842010-05-28T13:02:30Z{{DatatypeProperty +| rdfs:label@en = Dorlands prefix +| rdfs:domain = AnatomicalStructure +| rdfs:range = xsd:string +}}OntologyProperty:DorlandsSuffix20281779852010-05-28T13:02:39Z{{DatatypeProperty +| rdfs:label@en = Dorlands suffix +| rdfs:domain = AnatomicalStructure +| rdfs:range = xsd:string +}}OntologyProperty:Dose20213122569782022-03-09T10:38:51Z{{DatatypeProperty +| labels = + {{label|en|Dose}} + {{label|fr|Dose}} + {{label|zh|剂量}} +| comments = + {{comment|en|Dose means quantity (in units of energy/mass) in the fields of nutrition, medicine, and toxicology. Dosage is the rate of application of a dose, although in common and imprecise usage, the words are sometimes used synonymously.}} + {{comment|fr|Dose signifie quantité (en unités d'énergie/masse) dans les domaines de la nutrition, la médecine et la toxicologie. Le dosage est le taux d'application d'une dose, bien que dans l'utilisation habituelle et imprécise qui en est faite, les mots sont quelques fois synonymes.}} +| rdfs:domain = owl:Thing +| rdfs:range = xsd:integer +| owl:equivalentProperty = dose +}}OntologyProperty:DosesFirst20213123567362022-02-28T15:19:48Z{{DatatypeProperty +| labels = + {{label|en|DosesFirst}} + {{label|fr|Premières doses}} +| comments = + {{comment|en|Number of first vaccine doses.}} + {{comment|fr|Nombre de premières doses.}} +| rdfs:domain = owl:Thing +| rdfs:range = xsd:integer +}}OntologyProperty:DosesSecond20213124567312022-02-28T15:02:43Z{{DatatypeProperty +| labels = + {{label|en|DosesSecond}} + {{label|fr|Secondes doses}} +| comments = + {{comment|en|Number of second vaccine doses.}} + {{comment|fr|Nombre de secondes doses de vaccin.}} +| rdfs:domain = owl:Thing +| rdfs:range = xsd:integer +}}OntologyProperty:Draft202818185032012-05-19T15:47:08Z{{DatatypeProperty +| rdfs:label@en = draft +| rdfs:label@de = Entwurf +| rdfs:range = xsd:string +}}OntologyProperty:DraftLeague2027683269552013-07-04T09:27:33Z{{DatatypeProperty +| labels = +{{label|en|draft league}} +| rdfs:domain = Athlete +| rdfs:range = xsd:string +}}OntologyProperty:DraftPick20281979872010-05-28T13:02:59Z{{DatatypeProperty +| rdfs:label@en = draft pick +| rdfs:domain = GridironFootballPlayer +| rdfs:range = xsd:string +}}OntologyProperty:DraftPosition2027668269362013-07-03T14:43:47Z{{DatatypeProperty +| labels = +{{label|en|draft position}} +| rdfs:range = xsd:nonNegativeInteger +| rdfs:domain = Athlete +}}OntologyProperty:DraftRound20282079882010-05-28T13:03:10Z{{DatatypeProperty +| rdfs:label@en = draft round +| rdfs:domain = GridironFootballPlayer +| rdfs:range = xsd:string +}}OntologyProperty:DraftTeam202821360312014-07-08T13:14:50Z +{{ObjectProperty +| rdfs:label@en = draft team +| rdfs:domain = Athlete +| rdfs:range = SportsTeam +| rdfs:subPropertyOf = dul:isMemberOf +}}OntologyProperty:DraftYear20282279892010-05-28T13:03:19Z{{DatatypeProperty +| rdfs:label@en = draft year +| rdfs:range = xsd:gYear +}}OntologyProperty:DrainsFrom202823360322014-07-08T13:14:58Z +{{ObjectProperty +| rdfs:label@en = drains from +| rdfs:domain = AnatomicalStructure +| rdfs:range = AnatomicalStructure +| rdfs:subPropertyOf = dul:hasCommonBoundary +}}OntologyProperty:DrainsTo202824360332014-07-08T13:15:06Z +{{ObjectProperty +| rdfs:label@en = drains to +| rdfs:domain = AnatomicalStructure +| rdfs:range = AnatomicalStructure +| rdfs:subPropertyOf = dul:hasCommonBoundary +}}OntologyProperty:Drama2026827360342014-07-08T13:15:14Z +{{ObjectProperty +| labels = + {{label|en|drama}} + {{label|de|Drama}} +| rdfs:domain = FictionalCharacter +| rdfs:range = Drama +| rdfs:subPropertyOf = dul:isParticipantIn +}}OntologyProperty:DressCode202252693172010-08-05T14:31:43Z{{DatatypeProperty +| rdfs:label@en = dress code +| rdfs:comment@en = The recommended dress code for an establishment or event. +| rdfs:domain = Restaurant +| rdfs:range = xsd:string +}}OntologyProperty:Drug20213110569802022-03-09T10:40:50Z{{DatatypeProperty +| labels = + {{label|en|Drug}} + {{label|fr|drogue}} + {{label|zh|药物}} +| rdfs:range = rdf:langString +| owl:equivalentProperty = schema:drug +}}OntologyProperty:Drugbank202825191562012-07-31T19:18:39Z{{DatatypeProperty +| rdfs:label@en = DrugBank +| rdfs:label@ja = DrugBank +| rdfs:range = xsd:string +}}OntologyProperty:Drugs.com20211920523942017-10-15T12:18:36Z{{ObjectProperty +| labels = + {{label|en|drugs.com}} + {{label|de|drugs.com}} +| comments = + {{comment|en|external link to drug articles in the drugs.com website}} + {{comment|de|Verweist auf den drugs.com Artikel über ein Medikament.}} +| rdfs:domain = Drug +| rdfs:range = owl:Thing +}}OntologyProperty:DryCargo202826336262014-04-03T16:29:14Z{{DatatypeProperty +| rdfs:label@en = dry cargo +| rdfs:label@de = Trockenfracht +| rdfs:label@nl = droge last +| rdfs:domain = Spacecraft +| rdfs:range = Mass +}}OntologyProperty:Dubber2025204360352014-07-08T13:15:22Z +{{ObjectProperty +| rdfs:range = Person +| rdfs:domain = Person +| rdfs:label@en = dubber +| rdfs:comment@en = the person who dubs another person e.g. an actor or a fictional character in movies +| rdfs:subPropertyOf = dul:coparticipatesWith +}}OntologyProperty:Duration2025670573692022-03-31T12:38:27Z{{Merge|runtime}} + +{{DatatypeProperty +| labels = + {{label|en|duration}} + {{label|fr|durée}} + {{label|de|Dauer}} + {{label|nl|duur}} +| comments = + {{comment|en|The duration of the item (movie, audio recording, event, etc.) in ISO 8601 date format<ref name="schema:duration">http://schema.org/duration</ref>}} + {{comment|fr|Durée d'un élément (film, enregistrement audio, événement, etc.) au format de date ISO 8601<ref name="schema:duration"/>}} +| rdfs:domain = +| rdfs:range = Time +| owl:equivalentProperty = schema:duration +}} + +==References== +<references/>OntologyProperty:DutchArtworkCode20211710513112016-06-30T08:40:50Z{{DatatypeProperty +| labels = +{{label|en|Dutch artwork code}} +{{label|nl|code RKD}} +| rdfs:domain = Artwork +| rdfs:range = xsd:string +| rdfs:subPropertyOf = code +}}OntologyProperty:DutchCOROPCode2029122315862014-02-10T10:21:53Z{{DatatypeProperty +| labels = +{{label|en|Dutch COROP code}} +| rdfs:domain = Region +| rdfs:range = xsd:string +}}OntologyProperty:DutchMIPCode2026484237622013-02-18T09:20:38Z{{DatatypeProperty +| labels = +{{label|en|monument code for the Monuments Inventory Project}} +{{label|nl|monumentcode voor het Monumenten Inventarisatie Project}} +| comments = +{{comment|en|The Dutch MIP project was meant to take stock of all kinds of monuments }} +{{comment|nl|Code voor alle soorten monumenten gebezigd door het MI-project}} +| rdfs:domain = ArchitecturalStructure, Monument +| rdfs:range = xsd:string +| rdf:type = +| rdfs:subPropertyOf = Code +| owl:equivalentProperty = +}}OntologyProperty:DutchNAIdentifier20210246385302014-10-03T15:29:47Z{{DatatypeProperty +| labels = +{{label|en|Identifier for Duch National Archive}} + +{{label|nl|Code Nationaal Archief}} +| rdfs:domain = MemberResistanceMovement +| rdfs:range = xsd:string +| rdfs:subPropertyOf = code +}}OntologyProperty:DutchPPNCode20210194378282014-09-22T11:45:53Z{{DatatypeProperty +| rdfs:label@en = Dutch PPN code +| rdfs:domain = WrittenWork +| rdfs:range = xsd:string +| rdfs:subPropertyOf = code +| rdfs:comment@en = Dutch PPN code is a library cataloguing code for collection items (books, journals and the like). +| rdfs:comment@nl = Dutch PPN code is in de Nederlandse bibliotheekwereld een cataloguscode (PICA) voor items in de collectie. +}}OntologyProperty:DutchRKDCode2029277357362014-07-07T08:35:47Z{{DatatypeProperty +| labels = +{{label|en|Dutch RKD code}} +{{label|nl|Code Rijksbureau voor Kunsthistorische Documentatie}} +| rdfs:domain = Artist +| rdfs:range = xsd:string +}}OntologyProperty:DutchWinkelID20210195378292014-09-22T11:52:56Z{{DatatypeProperty +| rdfs:label@en = Dutch PPN code +| rdfs:domain = UndergroundJournal +| rdfs:range = xsd:string +| rdfs:subPropertyOf = code +| rdfs:comment@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. +| rdfs:comment@nl = Dutch Winkel ID is een code toegekend door Lydia Winkel in haar boek over De Ondergrondse Pers 1940-1945. +}}OntologyProperty:Dynasty2025636336282014-04-03T16:29:22Z{{ObjectProperty +| labels = +{{label|en|dynasty}} +{{label|de|Dynastie}} +{{label|nl|dynastie}} +| rdfs:range = owl:Thing +}}OntologyProperty:EMedicineSubject202833391462015-01-11T15:50:50Z{{DatatypeProperty +| labels = +{{label|en|eMedicine subject}} +{{label|nl|eMedicine onderwerp}} +| rdfs:domain = Disease +| rdfs:range = rdf:langString +}}OntologyProperty:EMedicineTopic202834391502015-01-11T15:59:56Z{{DatatypeProperty +| labels = +{{label|en|eMedicine topic}} +{{label|nl|eMedicine topic}} +|comments= +{{comment|en|Different from eMedicineSubject, which see}} +| rdfs:domain = Disease +| rdfs:range = rdf:langString +}}OntologyProperty:ETeatrId202247091642010-07-08T03:11:01Z{{DatatypeProperty +| rdfs:label@en = e-teatr.pl id +| rdfs:domain = Film +| rdfs:range = xsd:string +}}OntologyProperty:EastPlace20211084455972015-03-08T14:11:16Z{{ObjectProperty +| rdfs:label@en = east place +| rdfs:label@fr = lieu à l'est +| rdfs:comment@fr = indique un autre lieu situé à l'est. +| rdfs:comment@en = indicates another place situated east. +| rdfs:domain = Place +| rdfs:range = Place +| owl:inverseOf = westPlace +| rdfs:subPropertyOf = closeTo + +}}OntologyProperty:EcNumber202827475682015-04-03T09:17:41Z{{DatatypeProperty +| rdfs:label@en = EC number +| rdfs:label@ja = EC番号 +| rdfs:domain = Biomolecule +| rdfs:range = xsd:string +| owl:equivalentProperty = wikidata:P591 +}}OntologyProperty:Editing202828475092015-04-02T11:49:14Z{{ObjectProperty +| rdfs:label@en = editing +| rdfs:label@de = Bearbeitung +| rdfs:label@ga = eagarthóireacht +| rdfs:domain = Film +| rdfs:range = Person +| rdfs:subPropertyOf = dul:coparticipatesWith +| owl:equivalentProperty = wikidata:P1040 +}}OntologyProperty:Editor202829537512020-09-30T12:15:44Z{{ObjectProperty +| rdfs:label@en = editor +| rdfs:label@el = συντάκτης +| rdfs:label@de = Herausgeber +| rdfs:label@ga = eagarthóir +| rdfs:label@nl = redacteur +| rdfs:label@pl = redaktor +| rdfs:range = Agent +| rdfs:subPropertyOf = dul:coparticipatesWith +| owl:equivalentProperty = schema:editor, wikidata:P98, dblp2:editedBy +}}OntologyProperty:EditorTitle202830348322014-05-15T05:18:07Z{{DatatypeProperty +| rdfs:label@en = editor title +| rdfs:label@el = τίτλος συντάκτη +| rdfs:domain = Magazine +| rdfs:range = rdf:langString +}}OntologyProperty:Education202831475692015-04-03T09:18:55Z{{ObjectProperty +| labels = + {{label|en|education}} + {{label|de|Bildung}} + {{label|nl|opleiding}} + {{label|fr|éducation}} + {{label|ja|教育}} +| rdfs:domain = Person +| rdfs:subPropertyOf = dul:sameSettingAs +| owl:equivalentProperty = wikidata:P69 +}}OntologyProperty:EducationPlace2027757572922022-03-30T14:13:55Z{{ObjectProperty +| labels = + {{label|en|education place}} + {{label|fr|lieu d'enseignement}} + {{label|de|Bildungsstätte}} +| rdfs:domain = Person +| rdfs:range = Place +}}OntologyProperty:EducationSystem2023136360392014-07-08T13:16:07Z +{{ObjectProperty +| rdfs:label@en = education system +| rdfs:domain = EducationalInstitution +| rdfs:subPropertyOf = dul:isPartOf +}}OntologyProperty:EffectiveRadiatedPower2022433126292011-05-03T14:43:08Z{{DatatypeProperty +| rdfs:label@en = effectiveRadiatedPower +| rdfs:domain = Broadcaster +| rdfs:range = Power +| rdfs:comment@en = In radio telecommunications, effective radiated power or equivalent radiated power (ERP) is a standardized theoretical measurement of radio frequency (RF) energy using the SI unit watts (http://en.wikipedia.org/wiki/Effective_radiated_power). +}}OntologyProperty:EgafdId2023299121752011-04-15T09:58:00Z{{DatatypeProperty +| rdfs:label@en = egafd id +| rdfs:label@el = egafd id +| rdfs:label@pt = código no egafd +| rdfs:domain = Film +| rdfs:range = xsd:string +}}OntologyProperty:EinecsNumber2028940475712015-04-03T09:19:34Z{{DatatypeProperty +| rdfs:label@en = EINECS number +| rdfs:range = xsd:string +| owl:equivalentProperty = wikidata:P232 +}}OntologyProperty:EkatteCode2025235453442015-02-15T14:25:20Z{{ DatatypeProperty +| labels = {{label|en|EKATTE code}} +| rdfs:domain = PopulatedPlace +| rdfs:range = xsd:string +| comments = + {{comment|en|Indexing code used by the Bulgarian National Statistical Institute to identify populated places}} + {{comment|bg|Единен класификатор на административно-териториалните и териториалните единици}} +| rdfs:subPropertyOf = codeSettlement +}}OntologyProperty:ElectionDate2022365184182012-05-19T14:46:27Z{{DatatypeProperty +| rdfs:label@en = election date +| rdfs:label@de = Wahltermin +| rdfs:domain = Person +| rdfs:range = xsd:date +}}OntologyProperty:ElectionDateLeader2023531126622011-05-06T12:19:50Z{{DatatypeProperty +| rdfs:label@en = election date leader +| rdfs:label@de = Wahldatum des Vorsitzenden +| rdfs:domain = Legislature +| rdfs:range = xsd:date +| rdfs:comment@en = The date that leader was elected. +}}OntologyProperty:ElectionMajority2022332103552010-11-10T14:10:10Z{{DatatypeProperty +| rdfs:label@en = election majority +| rdfs:comment@en = number of votes the office holder attained +| rdfs:range = xsd:nonNegativeInteger +}}OntologyProperty:ElementAbove2024605574312022-04-17T21:01:48Z{{ObjectProperty +| labels = + {{label|en|element above}} + {{label|fr|élément supérieur}} + {{label|ru|элемент снизу}} + {{label|nl|hoger element}} +| comments = + {{comment|en|element placed above current element in D.I.Mendeleev's table}} + {{comment|fr|élément placé au-dessus de l'élément courant dans le tableau périodique des éléments de D.I.Mendeleev}} + {{comment|ru|Элемент снизу под текущим элементом в таблице Д.И.Менделеева}} +| rdfs:domain = owl:Thing +| rdfs:range = ChemicalSubstance +| rdfs:subPropertyOf = dul:sameSettingAs +}}OntologyProperty:ElementBlock20211023453102015-02-13T17:03:03Z{{DatatypeProperty +|labels= +{{label|en|element block}} +{{label|ca|bloc de la taula periòdica}} +{{label|de|Block des Periodensystems}} +{{label|pl|blok układu okresowego}} +{{label|ru|блок периодической таблицы}} +| comments = +{{comment|en|A block of the periodic table of elements is a set of adjacent groups.<ref>https://en.wikipedia.org/wiki/Block_(periodic_table)</ref>}} +{{comment|ca|La taula periòdica dels elements es pot dividir en blocs d'elements segons l'orbital que estiguen ocupant els electrons més externs<ref>https://ca.wikipedia.org/wiki/Bloc_de_la_taula_peri%C3%B2dica</ref>}} +{{comment|de|Als Block im Periodensystem werden chemische Elemente nach den energiereichsten Atomorbitalen ihrer Elektronenhülle zusammengefasst.<ref>https://de.wikipedia.org/wiki/Block_des_Periodensystems</ref>}} +{{comment|ru|совокупность химических элементов со сходным расположением валентных электронов в атоме.<ref>https://ru.wikipedia.org/wiki/%D0%91%D0%BB%D0%BE%D0%BA_%D0%BF%D0%B5%D1%80%D0%B8%D0%BE%D0%B4%D0%B8%D1%87%D0%B5%D1%81%D0%BA%D0%BE%D0%B9_%D1%82%D0%B0%D0%B1%D0%BB%D0%B8%D1%86%D1%8B</ref>}} +| rdfs:domain = ChemicalElement +| rdfs:range = xsd:string +}} + +<references/>OntologyProperty:ElementGroup20211022453082015-02-13T16:45:16Z{{DatatypeProperty +|labels= +{{label|en|element group}} +{{label|ca|grup de la taula periòdica}} +{{label|de|Gruppe des Periodensystems}} +{{label|ga|grúpa an tábla pheiriadaigh}} +{{label|pl|grupa układu okresowego}} +{{label|ru|группа периодической системы}} +| comments = +{{comment|en|In chemistry, a group (also known as a family) is a column of elements in the periodic table of the chemical elements. <ref>https://en.wikipedia.org/wiki/Group_(periodic_table)</ref>}} +{{comment|ca|Un grup d'elements equival a una columna de la taula periòdica.<ref>https://ca.wikipedia.org/wiki/Grup_de_la_taula_peri%C3%B2dica</ref>}} +{{comment|de|Unter einer Gruppe des Periodensystems versteht man in der Chemie jede Spalte des Periodensystems.<ref>https://de.wikipedia.org/wiki/Gruppe_des_Periodensystems</ref>}} +{{comment|ga|Séard atá i gceist le grúpa sa choimhthéacs seo ná colún ceartingearach i dtábla peiriadach na ndúl ceimiceach.<ref>https://ga.wikipedia.org/wiki/Gr%C3%BApa%C3%AD_an_t%C3%A1bla_pheiriadaigh</ref>}} +{{comment|pl|grupa jest pionową kolumną w układzie okresowym pierwiastków chemicznych.<ref>https://pl.wikipedia.org/wiki/Grupa_uk%C5%82adu_okresowego</ref>}} +{{comment|ru|последовательность атомов по возрастанию заряда ядра, обладающих однотипным электронным строением.<ref>https://ru.wikipedia.org/wiki/%D0%93%D1%80%D1%83%D0%BF%D0%BF%D0%B0_%D0%BF%D0%B5%D1%80%D0%B8%D0%BE%D0%B4%D0%B8%D1%87%D0%B5%D1%81%D0%BA%D0%BE%D0%B9_%D1%81%D0%B8%D1%81%D1%82%D0%B5%D0%BC%D1%8B</ref>}} +| rdfs:domain = ChemicalElement +| rdfs:range = xsd:nonNegativeInteger +}} + +<references/>OntologyProperty:ElementPeriod20211024453152015-02-13T17:35:20Z{{DatatypeProperty +|labels= +{{label|en|element period}} +{{label|ca|període de la taula periòdica}} +{{label|de|Periode des Periodensystems}} +{{label|ga|peiriad an tábla pheiriadaigh}} +{{label|pl|okres układu okresowego}} +{{label|ru|период периодической таблицы}} +| comments = +{{comment|en|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.<ref>https://en.wikipedia.org/wiki/Period_(periodic_table)</ref>}} +{{comment|ca|En la taula periòdica dels elements, un període és una filera de la taula<ref>https://ca.wikipedia.org/wiki/Per%C3%ADode_de_la_taula_peri%C3%B2dica</ref>}} +{{comment|de|Unter einer Periode des Periodensystems versteht man in der Chemie jede Zeile des Periodensystems der Elemente.<ref>https://de.wikipedia.org/wiki/Periode_des_Periodensystems</ref>}} +{{comment|ru|строка периодической системы химических элементов, последовательность атомов по возрастанию заряда ядра и заполнению электронами внешней электронной оболочки.<ref>https://ru.wikipedia.org/wiki/%D0%9F%D0%B5%D1%80%D0%B8%D0%BE%D0%B4_%D0%BF%D0%B5%D1%80%D0%B8%D0%BE%D0%B4%D0%B8%D1%87%D0%B5%D1%81%D0%BA%D0%BE%D0%B9_%D1%81%D0%B8%D1%81%D1%82%D0%B5%D0%BC%D1%8B</ref>}} +| rdfs:domain = ChemicalElement +| rdfs:range = xsd:nonNegativeInteger +}} + +<references/>OntologyProperty:Elevation202832538082020-12-01T18:03:02Z{{DatatypeProperty +| labels = +{{label|el|υψόμετρο}} +{{label|en|elevation}} +{{label|de|Höhe}} +{{label|es|altitud}} +{{label|fr|altitude}} +{{label|nl|hoogte}} +{{label|pt|altitude}} +{{label|hi|ऊँचाई}} +| rdfs:domain = Place +| rdfs:range = Length +| rdfs:comment@en = average elevation above the sea level +| rdfs:comment@pt = altitude média acima do nível do mar +| owl:equivalentProperty=wikidata:P2044 +}}OntologyProperty:ElevationQuote2027090256142013-05-26T13:33:06Z{{DatatypeProperty +| labels = +{{label|en|elevation quote}} +| rdfs:domain = Place +| rdfs:range = xsd:string +}}OntologyProperty:ElevatorCount2026425234632013-01-22T12:49:56Z{{DatatypeProperty +| labels = +{{label|en|elevator count}} +{{label|de|Aufzüge}} +| rdfs:domain = Building +| rdfs:range = xsd:nonNegativeInteger +}}OntologyProperty:Elo2025688475722015-04-03T09:20:29Z{{ DatatypeProperty + + | rdfs:label@en = ELO rating + | rdfs:domain = ChessPlayer + | rdfs:range = xsd:nonNegativeInteger + | owl:equivalentProperty = wikidata:P1087 +}}OntologyProperty:EloRecord2025689181542012-05-05T19:49:32Z{{ DatatypeProperty + + | rdfs:label@en = maximum ELO rating + | rdfs:domain = ChessPlayer + | rdfs:range = xsd:nonNegativeInteger + +}}OntologyProperty:Emblem2027307475732015-04-03T09:21:12Z{{DatatypeProperty +| labels = +{{label|en|emblem}} +| rdfs:domain = PopulatedPlace +| rdfs:range = xsd:string +| owl:equivalentProperty = wikidata:P158 +}}OntologyProperty:EmmyAward202835360412014-07-08T13:16:24Z +{{ObjectProperty +| rdfs:label@en = Emmy Award +| rdfs:label@de = Emmy Award +| rdfs:domain = Artist +| rdfs:range = Award +| rdfs:subPropertyOf = dul:coparticipatesWith +}}OntologyProperty:Employer202836360422014-07-08T13:16:32Z +{{ObjectProperty +| rdfs:label@en = employer +| rdfs:label@de = Arbeitgeber +| rdfs:label@ja = 雇用者 +| rdfs:label@el = θέσεις_εργασίας +| rdfs:domain = Person +| rdfs:range = Organisation +| owl:equivalentProperty = wikidata:P108 +| rdfs:subPropertyOf = dul:isMemberOf +}}OntologyProperty:EmployersCelebration2026853492152015-10-15T07:14:48Z{{DatatypeProperty +| labels = +{{label|en|employer's celebration}} +| rdfs:domain = Settlement +| rdfs:range = xsd:string +}}OntologyProperty:End20211916524562017-10-15T19:27:31Z{{DatatypeProperty +| labels = +{{label|en|end}} +{{label|de|Ende}} +| rdfs:range = xsd:date +| rdfs:domain = TimePeriod +}}OntologyProperty:EndCareer2027553267652013-07-01T14:39:51Z{{DatatypeProperty +| labels = +{{label|en|end career}} +| rdfs:domain = Person +| rdfs:range = xsd:string +}}OntologyProperty:EndDate202837536942020-09-04T15:19:05Z{{DatatypeProperty +| labels = + {{label|en|end date}} +{{label|de|Enddatum}} + {{label|nl|einddatum}} + {{label|fr|date de fin}} + {{label|es|fecha de fin}} +| rdfs:domain = Event +| rdfs:range = xsd:date +| rdfs:subPropertyOf = schema:endDate, ceo:einddatum +| owl:equivalentProperty = wikidata:P582 +| rdfs:comment@en = The end date of the event. +}}OntologyProperty:EndDateTime20210294387992014-12-02T10:50:43Z{{DatatypeProperty +| labels = + {{label|en|end date and time}} + {{label|nl|datum en tijd van einde}} +| rdfs:domain = Event +| rdfs:range = xsd:dateTime +| rdfs:comment@en = The end date and time of the event. +}}OntologyProperty:EndOccupation2027792273742013-07-10T14:37:11Z{{DatatypeProperty +| labels = +{{label|en|end occupation}} +| rdfs:range = xsd:string +}}OntologyProperty:EndPoint202840523812017-10-14T19:35:40Z +{{ObjectProperty +| rdfs:label@en = end point +| rdfs:label@de = Endpunkt +| rdfs:label@el = σημείο_τέλους +| rdfs:domain = Place +| rdfs:range = Place +| rdfs:subPropertyOf = dul:hasCommonBoundary +}}OntologyProperty:EndReign2027550271722013-07-09T09:22:30Z{{ObjectProperty +| labels = +{{label|en|end reign}} +| rdfs:domain = Person +| rdfs:range = skos:Concept +}}OntologyProperty:EndYear2027173520052017-03-22T20:14:33Z{{DatatypeProperty +| labels = +{{label|en|end year}} +{{label|de|Startjahr}} +| rdfs:range = xsd:gYear +}}OntologyProperty:EndYearOfInsertion20284179992010-05-28T13:04:53Z{{DatatypeProperty +| rdfs:label@en = end year of insertion +| rdfs:domain = AutomobileEngine +| rdfs:range = xsd:gYear +}}OntologyProperty:EndYearOfSales20284280002010-05-28T13:05:00Z{{DatatypeProperty +| rdfs:label@en = end year of sales +| rdfs:domain = Sales +| rdfs:range = xsd:gYear +}}OntologyProperty:EndangeredSince2023304336392014-04-03T16:30:15Z{{DatatypeProperty +| rdfs:label@en = endangered since +| rdfs:label@de = gefährdet seit +| rdfs:label@pt = em perigo desde +| rdfs:domain = Place +| rdfs:range = xsd:date +}}OntologyProperty:EndingTheme202838360442014-07-08T13:16:52Z{{DisclaimerOntologyProperty}} + + +{{ObjectProperty +| rdfs:label@en = ending theme +| rdfs:domain = TelevisionShow +| rdfs:range = Work +| rdfs:subPropertyOf = dul:coparticipatesWith +}}OntologyProperty:Endowment202839336882014-04-03T16:33:59Z{{DatatypeProperty +| rdfs:label@en = endowment +| rdfs:domain = Organisation +| rdfs:range = Currency +}}OntologyProperty:Enemy2026831360452014-07-08T13:16:59Z +{{ObjectProperty +| labels = + {{label|en|enemy}} + {{label|de|Feind}} +| rdfs:domain = FictionalCharacter +| rdfs:range = Species +| rdfs:subPropertyOf = dul:coparticipatesWith +}}OntologyProperty:Engine202843573712022-03-31T12:47:30Z{{ObjectProperty +| labels = + {{label|en|engine}} + {{label|fr|moteur}} + {{label|de|Motor}} + {{label|el|μηχανή}} + {{label|pt|motor}} +| rdfs:domain = Automobile +| rdfs:range = AutomobileEngine +| rdfs:subPropertyOf = dul:hasComponent +}}OntologyProperty:EnginePower20211094573732022-03-31T12:52:29Z{{DatatypeProperty +| labels = + {{label|en|engine power}} + {{label|fr|puissance du moteur}} + {{label|nl|motorvermogen}} +| comments = + {{comment|en|Power to be expressed in Watts (kiloWatt, megaWatt)}} + {{comment|fr|La puissance est exprimée en watts (kiloWatt, megaWatt)}} +| rdfs:domain = MeanOfTransportation +| rdfs:range = xsd:positiveInteger +}}OntologyProperty:EngineType2022538573742022-03-31T12:53:50Z{{ObjectProperty +| labels = + {{label|en|engine type}} + {{label|fr|type de moteur}} +| rdfs:domain = MeanOfTransportation +| rdfs:subPropertyOf = dul:isClassifiedBy +}}OntologyProperty:Engineer202844360482014-07-08T13:17:24Z +{{ObjectProperty +| labels = + {{label|en|engineer}} + {{label|nl|ingenieur}} + {{label|de|Ingenieur}} + {{label|el|μηχανικός}} +| rdfs:range = Person +| rdfs:subPropertyOf = dul:coparticipatesWith +}}OntologyProperty:Ensembl2025030191272012-07-31T11:10:58Z{{ DatatypeProperty +| rdfs:label@en = ensemble +| rdfs:label@ja = ensemble +| rdfs:domain = Biomolecule +| rdfs:range = xsd:string +}}OntologyProperty:EnshrinedDeity2026670360492014-07-08T13:17:33Z +{{ObjectProperty +| rdfs:label@en = enshrined deity +| rdfs:label@ja = 祭神 +| rdfs:domain = Shrine +| rdfs:range = Deity +| rdfs:subPropertyOf = dul:isLocationOf +}}OntologyProperty:Entourage2026822360502014-07-08T13:17:43Z +{{ObjectProperty +| labels = + {{label|en|entourage}} + {{label|de|Gefolge}} +| rdfs:domain = FictionalCharacter +| rdfs:range = Species +| rdfs:subPropertyOf = dul:sameSettingAs +}}OntologyProperty:Entrezgene202845191262012-07-31T11:10:45Z{{DatatypeProperty +| rdfs:label@en = EntrezGene +| rdfs:label@ja = EntrezGene +| rdfs:domain = Biomolecule +| rdfs:range = xsd:string +}}OntologyProperty:Eparchy20211236478562015-05-07T14:25:34Z{{ObjectProperty +| rdfs:label@en = eparchy +| rdfs:label@bg = епархия +| rdfs:label@el = metropoleis +| rdfs:domain = ReligiousBuilding +| rdfs:comment@en = Compare with bishopric +}}OntologyProperty:Episode2026830336452014-04-03T16:30:39Z{{DatatypeProperty +| labels = +{{label|en|episode}} +{{label|de|Folge}} +| rdfs:domain = FictionalCharacter +| rdfs:range = xsd:string +}}OntologyProperty:EpisodeNumber2022106136612011-06-14T14:19:27Z{{DatatypeProperty +| rdfs:label@en = episode number +| rdfs:domain = TelevisionEpisode +| rdfs:range = xsd:nonNegativeInteger +| owl:equivalentProperty = schema:episodeNumber +| rdfs:comment@en = The episode number of the TelevisionEpisode. +}}OntologyProperty:Epoch2024357146722011-07-29T13:21:55Z{{DatatypeProperty + |rdfs:label@en=epoch + |rdfs:comment@en=moment in time used as a referrence point for some time-vaying astronomical quantity + |rdfs:domain=Planet + |rdfs:range=xsd:string +}}OntologyProperty:EptFinalTable2028044281992013-09-03T18:18:00Z{{DatatypeProperty +| labels = +{{label|en|ept final table}} +| rdfs:domain = PokerPlayer +| rdfs:range = xsd:nonNegativeInteger +}}OntologyProperty:EptItm2028045282002013-09-03T18:18:16Z{{DatatypeProperty +| labels = +{{label|en|ept itm}} +| rdfs:domain = PokerPlayer +| rdfs:range = xsd:nonNegativeInteger +}}OntologyProperty:EptTitle2028043281982013-09-03T18:17:42Z{{DatatypeProperty +| labels = +{{label|en|ept title}} +| rdfs:domain = PokerPlayer +| rdfs:range = xsd:string +}}OntologyProperty:Equipment2022303466262015-03-20T08:26:40Z{{ObjectProperty +| labels = + {{label|en|equipment}} + {{label|de|Ausrüstung}} + {{label|el|εξοπλισμός}} + {{label|nl|uitrusting}} +| rdfs:domain = Activity +| rdfs:subPropertyOf = dul:hasParticipant +}}OntologyProperty:Equity202847336472014-04-03T16:30:46Z{{DatatypeProperty +| rdfs:label@en = equity +| rdfs:label@de = Gerechtigkeit +| rdfs:domain = Company +| rdfs:range = Currency +}}OntologyProperty:Era2022309587822022-05-31T14:24:02Z +{{ObjectProperty +| rdfs:label@en = era +| rdfs:label@el = εποχή +| rdfs:domain = owl:Thing +| rdfs:subPropertyOf = dul:isDescribedBy +| owl:equivalentProperty = wikidata:P2348 +}}OntologyProperty:Eruption2027062573222022-03-31T09:48:23Z{{DatatypeProperty +| labels = + {{label|en|eruption}} + {{label|fr|éruption}} + {{label|de|Ausbruch}} +| rdfs:domain = Island +| rdfs:range = xsd:string +}}OntologyProperty:EruptionYear2022418573232022-03-31T09:51:03Z{{DatatypeProperty +| labels = + {{label|en|eruption date}} + {{label|fr|année de la dernière éruption}} + {{label|de|Jahr des letzten Ausbruchs}} + {{label|nl|jaar uitbarsting}} +| rdfs:domain = Volcano +| rdfs:range = xsd:gYear +}}OntologyProperty:Escalafon2027838271542013-07-05T16:09:17Z{{DatatypeProperty +| labels = +{{label|en|escalafon}} +| rdfs:domain = Person +| rdfs:range = xsd:string +}}OntologyProperty:EscapeVelocity2024359146752011-07-29T14:46:30Z{{DatatypeProperty + |rdfs:label@en=escape velocity + |rdfs:domain=Planet + |rdfs:range=Speed +}}OntologyProperty:EspnId20284880042010-05-28T13:05:30Z{{DatatypeProperty +| rdfs:label@en = ESPN id +| rdfs:domain = Athlete +| rdfs:range = xsd:integer +}}OntologyProperty:Established2026161336492014-04-03T16:30:54Z{{DatatypeProperty +| rdfs:label@en = Established +| rdfs:label@de = etabliert +| rdfs:domain = ChristianDoctrine +| rdfs:range = xsd:string +}}OntologyProperty:Establishment2026164574322022-04-17T21:04:02Z{{DatatypeProperty +| labels = + {{label|en|Establishment}} + {{label|fr|Etablissement}} +| rdfs:domain = ChristianDoctrine +| rdfs:range = xsd:integer +| rdfs:label@el = ίδρυση + }}OntologyProperty:EthnicGroup202851569972022-03-09T12:12:28Z{{ObjectProperty +| labels = + {{label|en|ethnic group}} + {{label|fr|groupe ethnique}} + {{label|de|ethnie}} + {{label|it|etnia}} +| rdfs:domain = PopulatedPlace +| rdfs:range = EthnicGroup +| rdfs:subPropertyOf = dul:isLocationOf +}}OntologyProperty:EthnicGroupsInYear20285280052010-05-28T13:05:38Z{{DatatypeProperty +| rdfs:label@en = ethnic groups in year +| rdfs:range = xsd:gYear +}}OntologyProperty:Ethnicity202853360542014-07-08T13:18:28Z +{{ObjectProperty +| labels = + {{label|en|ethnicity}} + {{label|el|εθνότητα}} + {{label|de|ethnische zugehörigkeit }} + {{label|it|etnia}} +| comments = + {{comment|el|Μία ορισμένη κοινωνική κατηγορία ανθρώπων που έχουν κοινή καταγωγή ή εμπειρίες.}} +| rdfs:domain = Person +| rdfs:range = EthnicGroup +| owl:equivalentProperty = wikidata:P172 +| rdfs:subPropertyOf = dul:isMemberOf +}}OntologyProperty:EurobabeIndexId2023302121782011-04-15T10:20:21Z{{DatatypeProperty +| rdfs:label@en = eurobabe index id +| rdfs:label@el = eurobabeindex id +| rdfs:label@pt = código no eurobabeindex +| rdfs:domain = Film +| rdfs:range = xsd:string +}}OntologyProperty:EuropeanAffiliation2023343528402018-02-08T20:29:57Z{{ObjectProperty +| labels = + {{label|en|european affiliation}} + {{label|pt|afiliacao europeia}} +| rdfs:domain = PoliticalParty +| rdfs:subPropertyOf = +}}OntologyProperty:EuropeanChampionship2028055336522014-04-03T16:31:06Z{{DatatypeProperty +| labels = +{{label|en|european championship}} +{{label|de|Europameisterschaft}} +| rdfs:domain = Athlete +| rdfs:range = xsd:string +}}OntologyProperty:EuropeanParliamentGroup2023344360562014-07-08T13:18:45Z +{{ObjectProperty +| rdfs:label@en = european parliament group +| rdfs:label@pt = grupo parlamentar europeu +| rdfs:domain = PoliticalParty +| rdfs:subPropertyOf = dul:isMemberOf +}}OntologyProperty:EuropeanUnionEntranceDate2023330122132011-04-15T13:12:21Z{{DatatypeProperty +| rdfs:label@en = european union entrance date +| rdfs:label@pt = data de entrada na uniao europeia +| rdfs:domain = Country +| rdfs:range = xsd:date +}}OntologyProperty:Event202854573292022-03-31T10:10:19Z{{ObjectProperty +| labels = + {{label|en|event}} + {{label|fr|événement}} + {{label|de|Veranstaltung}} + {{label|pt|evento}} +| rdfs:range = Event +| rdfs:subPropertyOf = dul:hasParticipant +| owl:equivalentProperty = schema:event, ceo:heeftGebeurtenis +}}OntologyProperty:EventDate2027178573242022-03-31T09:53:21Z{{DatatypeProperty +| labels = + {{label|en|event date}} + {{label|fr|date de l'événement}} + {{label|de|Veranstaltungstermin}} +| rdfs:domain = Place +| rdfs:range = xsd:date +| owl:equivalentProperty = gnd:dateOfConferenceOrEvent +}}OntologyProperty:EventDescription20211318573252022-03-31T09:57:38Z{{DatatypeProperty +| labels = + {{label|en|event description}} + {{label|fr|description de l'événement}} + {{label|nl|beschrijving gebeurtenis}} +| rdfs:domain = HistoricPlace +| rdfs:range = xsd:string +| comments = + {{comment|en|This is to describe the event that hapened here (in case there is no event resource to be linked to)}} + {{comment|fr|Sert à décrire l'événement qui s'est passé ici (dans le cas où il n'y a pas de ressource liée d'événement)}} +}}OntologyProperty:ExecutiveHeadteacher202855360582014-07-08T13:19:13Z +{{ObjectProperty +| rdfs:label@en = executive headteacher +| rdfs:domain = School +| rdfs:range = Person +| rdfs:subPropertyOf = dul:coparticipatesWith +}}OntologyProperty:ExecutiveProducer202856360592014-07-08T13:19:21Z +{{ObjectProperty +| rdfs:label@en = executive producer +| rdfs:label@de = Ausführender Produzent +| rdfs:range = Person +| rdfs:subPropertyOf = dul:coparticipatesWith +}}OntologyProperty:Exhibition20210401573262022-03-31T10:00:57Z{{DatatypeProperty +| comments= + {{comment|en|Notes about an exhibition the object has been to}} + {{comment|fr|Notes relatives à l'exposition dont l'objet a fait partie}} +| labels= + {{label|en|exhibition}} + {{label|fr|exposition}} +| rdfs:domain = owl:Thing +| rdfs:range = xsd:string +}}OntologyProperty:Existence2027934336562014-04-03T16:31:22Z{{ObjectProperty +|labels = + {{label|en|existence}} +{{label|de|Existenz}} + {{label|el|είναι}} +|comments = + {{comment|el|Το είναι αντικατοπτρίζει αυτό που υπάρχει.}} +| rdfs:range = owl:Thing +}}OntologyProperty:Expedition2027631573272022-03-31T10:02:35Z{{DatatypeProperty +| labels = + {{label|en|expedition}} + {{label|fr|expédition}} + {{label|de|Expedition}} +| rdfs:domain = Person +| rdfs:range = xsd:string +}}OntologyProperty:Explorer2024443573282022-03-31T10:06:43Z{{ObjectProperty +| labels = + {{label|en|explorer}} + {{label|fr|explorateur}} + {{label|de|Erforscher}} + {{label|tr|kaşif}} +| rdfs:range = owl:Thing +| rdfs:domain = Galaxy +| rdfs:subPropertyOf = dul:coparticipatesWith +}}OntologyProperty:ExternalOrnament2027561267732013-07-01T14:44:43Z{{DatatypeProperty +| labels = +{{label|en|external ornament}} +| rdfs:domain = Person +| rdfs:range = xsd:string +}}OntologyProperty:ExtinctionDate202857523052017-10-09T12:29:41Z{{DatatypeProperty +| labels = +{{label|en|extinction date}} +{{label|nl|ontbindingsdatum}} +| rdfs:comment@en = !!! Do NOT use this property for non Species related dates!!! - Date when an Organization (eg PoliticalParty, Company) or Species ceased to exist +| rdfs:range = xsd:date +}}OntologyProperty:ExtinctionYear202858523062017-10-09T12:30:38Z{{DatatypeProperty +| rdfs:label@en = extinction year +| rdfs:domain = Species +| rdfs:range = xsd:gYear +| rdfs:comment@en = !!! Do NOT use this property for non Species related dates!!! - Year this species went extinct. +}}OntologyProperty:EyeColor2023292573302022-03-31T10:13:14Z{{DatatypeProperty +| labels = + {{label|en|eye color}} + {{label|fr|couleur des yeux}} + {{label|el|χρώμα ματιού}} + {{label|de|Augenfarbe}} + {{label|ga|dath súile}} + {{label|pl|kolor oczu}} + {{label|pt|cor dos olhos}} +| rdfs:domain = Person +| rdfs:range = xsd:string +| rdfs:subPropertyOf = +| owl:equivalentProperty = wikidata:P1340 +}}OntologyProperty:EyeColour2027749336592014-04-03T16:31:32Z{{DatatypeProperty +| labels = +{{label|en|eye colour}} +{{label|de|Augenfarbe}} +| rdfs:domain = Person +| rdfs:range = xsd:string +}}OntologyProperty:Eyes2026814573332022-03-31T10:34:11Z{{DatatypeProperty +| labels = + {{label|en|eyes}} + {{label|fr|yeux}} + {{label|de|Augen}} + {{label|el|μάτια}} + {{label|nl| ogen}} +| comments = + {{comment|en|The eye is called the sensory organ of sight in living organisms.}} + {{comment|el|Μάτι ονομάζεται το αισθητήριο όργανο της όρασης των ζωντανών οργανισμών.}} + {{comment|fr|L'œil est appelé l'organe sensoriel de la vue des organismes vivants.}} +| rdfs:domain = FictionalCharacter +| rdfs:range = xsd:string +}}OntologyProperty:FaaLocationIdentifier202215983722010-05-28T13:55:33Z{{DatatypeProperty +| rdfs:label@en = FAA Location Identifier +| rdfs:domain = Airport +| rdfs:range = xsd:string +}}OntologyProperty:FacilityId202859353622014-06-18T22:37:53Z{{DatatypeProperty +| rdfs:label@en = facility id +| rdfs:label@it = identificativo dell'impianto +| rdfs:domain = RadioStation +| rdfs:range = xsd:integer +}}OntologyProperty:FacultySize202860103672010-11-10T14:25:18Z{{DatatypeProperty +| rdfs:label@en = faculty size +| rdfs:comment@en = number of faculty members +| rdfs:domain = EducationalInstitution +| rdfs:range = xsd:nonNegativeInteger +}}OntologyProperty:FailedLaunches202861103682010-11-10T14:25:27Z{{DatatypeProperty +| rdfs:label@en = failed launches +| rdfs:range = xsd:nonNegativeInteger +}}OntologyProperty:Family202862587772022-05-31T13:50:34Z +{{ObjectProperty +| labels = + {{label|en|family}} + {{label|nl|familie}} + {{label|de|familie}} + {{label|el|οικογένεια}} + {{label|fr|famille}} + {{label|pl|rodzina}} + {{label|ja|科_(分類学)}} +| rdfs:domain = Species +| rdfs:range = Species +| owl:equivalentProperty = wikidata:P53 +| rdfs:subPropertyOf = dul:specializes +}}OntologyProperty:FamilyMember2029294336612014-04-03T16:31:40Z{{ObjectProperty +|labels = +{{label|en|family member}} +{{label|de|Familienmitglied}} +{{label|nl|familielid}} +| rdfs:domain = Family +| rdfs:range = Person +}}OntologyProperty:Fansgroup20286380112010-05-28T13:06:23Z{{DatatypeProperty +| rdfs:label@en = fansgroup +| rdfs:domain = SoccerClub +| rdfs:range = xsd:string +}}OntologyProperty:FareZone2023248568662022-03-01T20:38:53Z{{DatatypeProperty +| labels = + {{label|en|fare zone}} + {{label|fr|zone de tarification}} + {{label|de|Tarifzone}} +| rdfs:domain = Station +| rdfs:range = xsd:string +| comments = + {{comment|en|The fare zone in which station is located.}} + {{comment|fr|Zone de tarification à laquelle appartient la gare.}} + {{comment|de|Die Tarifzone zu der die Station gehört.}} +}}OntologyProperty:FastestDriver202864360632014-07-08T13:19:54Z +{{ObjectProperty +| rdfs:label@en = fastest driver +| rdfs:label@de = schnellster Fahrer +| rdfs:label@el = ταχύτερος οδηγός +| rdfs:domain = GrandPrix +| rdfs:range = Person +| rdfs:subPropertyOf = dul:hasParticipant +}}OntologyProperty:FastestDriverCountry202865360642014-07-08T13:20:03Z{{DisclaimerOntologyProperty}} + + +{{ObjectProperty +| rdfs:label@en = fastest driver country +| rdfs:label@de = schnellster Fahrer Land +| rdfs:domain = GrandPrix +| rdfs:range = Country +| rdfs:subPropertyOf = dul:hasParticipant +}}OntologyProperty:FastestDriverTeam202866360652014-07-08T13:20:18Z +{{ObjectProperty +| rdfs:label@en = fastest driver team +| rdfs:label@el = ομάδα ταχύτερου οδηγού +| rdfs:label@de = schnellster Fahrer Team +| rdfs:domain = GrandPrix +| rdfs:range = SportsTeam +| rdfs:subPropertyOf = dul:hasParticipant +}}OntologyProperty:FastestLap202867348002014-05-14T10:46:04Z{{DatatypeProperty +| rdfs:label@en = fastest lap +| rdfs:label@el = ταχύτερος γύρος +| rdfs:label@de = schnellste Runde +| rdfs:domain = FormulaOneRacer +| rdfs:range = xsd:nonNegativeInteger +}}OntologyProperty:Fat20211301487592015-08-13T10:12:58Z{{DatatypeProperty +| labels = +{{label|en|fat}} +| rdfs:domain = Food +| rdfs:range = Mass +| comments = +{{comment|en|Amount of fat per servingSize of a Food}} +}}OntologyProperty:FatalityRate20212302536162020-04-10T06:32:56Z{{DatatypeProperty +| labels = +{{label|en|Fatality Rate}} +| rdfs:comment@en = Number of deaths from pandemic compared to the total number of people diagnosed. +| rdfs:domain = Outbreak +| rdfs:range = xsd:integer +}}OntologyProperty:Fate202868357022014-06-30T21:30:47Z{{DatatypeProperty +| rdfs:label@en = fate +| rdfs:label@de = Schicksal +| rdfs:domain = Company +| rdfs:range = rdf:langString +}}OntologyProperty:Father2027545574332022-04-17T21:04:57Z{{ObjectProperty +| labels = + {{label|en|father}} + {{label|fr|père}} + {{label|de|Vater}} +| rdfs:domain = Man +| rdfs:range = Person +| rdfs:subPropertyOf = dul:sameSettingAs +| owl:equivalentProperty = wikidata:P22 +}}OntologyProperty:Fauna2027147336682014-04-03T16:32:07Z{{DatatypeProperty +| labels = +{{label|en|fauna}} +{{label|de|Fauna}} +{{label|nl|fauna}} +| rdfs:domain = Place +| rdfs:range = xsd:string +}}OntologyProperty:Fc202870107902011-01-14T22:58:09Z{{DatatypeProperty +| rdfs:label@en = FC +| rdfs:label@fr = FC +| rdfs:domain = Cricketer +| rdfs:range = xsd:nonNegativeInteger +}}OntologyProperty:FcRuns202871103642010-11-10T14:22:38Z{{DatatypeProperty +| rdfs:label@en = FC runs +| rdfs:domain = Cricketer +| rdfs:range = xsd:nonNegativeInteger +}}OntologyProperty:FdaUniiCode2025854528732018-02-13T10:37:51Z{{DatatypeProperty +| rdfs:label@en = FDA UNII code +| rdfs:label@pt = código FDA UNII +| rdfs:comment@en = FDA Unique Ingredient Identifier (UNII) code for a DBpedia Drug +| rdfs:domain = owl:Thing +| rdfs:range = xsd:string +| rdfs:subPropertyOf = code +}}OntologyProperty:FeastDay202872433252015-02-06T13:49:36Z{{DatatypeProperty +| labels = +{{label|en|feast day, holiday}} +{{label|de|Festtag}} +{{label|nl|feestdag}} +| rdfs:comment@en = A day of celebration associated with the entity. Applies to Saint, School etc +| rdfs:range = xsd:date +}}OntologyProperty:Feat2027557267692013-07-01T14:42:27Z{{DatatypeProperty +| labels = +{{label|en|feat}} +| rdfs:domain = Person +| rdfs:range = xsd:string +}}OntologyProperty:Feature2026816251632013-05-09T10:07:16Z{{DatatypeProperty +| labels = +{{label|en|feature}} +| rdfs:domain = FictionalCharacter +| rdfs:range = xsd:string +}}OntologyProperty:Features2026013360672014-07-08T13:20:33Z +{{ObjectProperty +| labels = + {{label|en|features}} + {{label|el|χαρακτηριστικό}} + {{label|nl|kenmerk}} +| rdfs:domain = ArchitecturalStructure +| rdfs:range = Work +| rdfs:comment@en = +| rdfs:subPropertyOf = dul:hasPart +}}OntologyProperty:Featuring20213819570882022-03-12T11:07:57Z{{ObjectProperty +| labels = + {{label|en|featuring}} + {{label|fr|featuring}} +| comments = + {{comment|en|Name of the second artist, apart the main artist, reserved preferently for singles, promotional singles and songs.}} + {{comment|fr|Nom du second artiste, autre que l'artiste principal. À réserver de préférence aux singles, singles promotionnels et chansons.}} +| rdfs:domain = MusicalWork +| rdfs:range = Agent +| rdfs:subPropertyOf = artist +}}OntologyProperty:FedCup2027740270222013-07-04T13:13:50Z{{DatatypeProperty +| labels = +{{label|en|fed cup}} +| rdfs:domain = Athlete +| rdfs:range = xsd:string +}}OntologyProperty:FederalState202873360682014-07-08T13:20:42Z +{{ObjectProperty +| labels = + {{label|de|Bundesland}} + {{label|en|federal state}} + {{label|nl|provincie}} +| rdfs:domain = Settlement +| rdfs:range = PopulatedPlace +| rdfs:subPropertyOf = dul:isPartOf +}}OntologyProperty:Federation2027599336702014-04-03T16:32:15Z{{ObjectProperty +| labels = +{{label|en|federation}} +{{label|de|Verband}} +| rdfs:domain = Person +| rdfs:range = Organisation +}}OntologyProperty:Fees202874336712014-04-03T16:32:18Z{{DatatypeProperty +| rdfs:label@en = fees +| rdfs:label@de = Gebühren +| rdfs:label@el = δίδακτρα +| rdfs:domain = School +| rdfs:range = Currency +}}OntologyProperty:Fibahof2027677269472013-07-04T08:02:28Z{{DatatypeProperty +| labels = +{{label|en|fibahof}} +| rdfs:range = xsd:string +| rdfs:domain = Athlete +}}OntologyProperty:Field202875360692014-07-08T13:20:50Z +{{ObjectProperty +| rdfs:label@en = field +| rdfs:label@de = Feld +| rdfs:domain = Artist +| rdfs:subPropertyOf = dul:isDescribedBy +}}OntologyProperty:Fight2027585337172014-04-03T16:37:16Z{{DatatypeProperty +| labels = +{{label|en|fight}} +{{label|de|Kampf}} +| rdfs:domain = Boxer +| rdfs:range = xsd:nonNegativeInteger +}}OntologyProperty:Fighter2027474336742014-04-03T16:32:30Z{{DatatypeProperty +| labels = +{{label|fr|combattant}} +{{label|en|fighter}} +{{label|de|Kämpfer}} +| rdfs:range = xsd:string +}}OntologyProperty:FileExtension2029398567872022-02-28T21:16:14Z{{DatatypeProperty +| labels= +{{label|en|The extension of this file}} +{{label|fr|Extension de ce fichier}} +| rdfs:domain = File +| rdfs:range = xsd:string +}}OntologyProperty:FileSize2021432511192016-05-25T12:07:58Z{{DatatypeProperty +| rdfs:label@en = size +| rdfs:label@el = μέγεθος αρχείου +| rdfs:label@de = Dateigröße +| rdfs:label@fr = taille de fichier +| rdfs:comment@en = size of a file or software +| rdfs:comment@el = μέγεθος ενός ηλεκτρονικού αρχείου +| rdfs:domain = Work +| rdfs:range = InformationUnit +}}OntologyProperty:FileURL2029684567882022-02-28T21:17:33Z{{ObjectProperty +|labels = +{{label|en|The URL at which this file can be downloaded}} +{{label|fr|URL de téléchargement du fichier}} +|rdfs:domain = File +|rdfs:range = File +}}OntologyProperty:Filename2026229511202016-05-25T12:09:10Z{{DatatypeProperty +| labels = +{{label|en| filename}} +{{label|nl| bestandsnaam}} +{{label|de| dateiname}} +{{label|el| όνομα αρχείου}} +{{label|fr| nom de fichier}} +| rdfs:domain = Work +| rdfs:range = xsd:string +}}OntologyProperty:FillingStation20211140573782022-03-31T13:03:35Z{{ObjectProperty +| labels = + {{label|en|filling station}} + {{label|fr|station service}} +| rdfs:domain = RestArea +| rdfs:range = FillingStation +}}OntologyProperty:Film202876523402017-10-10T13:41:29Z +{{ObjectProperty +| labels = + {{label|en|film}} + {{label|da|film}} + {{label|de|film}} + {{label|nl|film}} + {{label|el|ταινία}} + {{label|fr|film}} +| rdfs:domain = FilmFestival +| rdfs:range = Film +| rdfs:subPropertyOf = dul:hasPart +}}OntologyProperty:FilmAudioType2025145170282012-03-23T17:11:04Z{{DatatypeProperty +| rdfs:label@en = film audio type +| rdfs:comment@en = specifies the audio type of the film i.e. 'sound' or 'silent' +| rdfs:domain = Film +| rdfs:range = xsd:string +}}OntologyProperty:FilmColourType2025144170272012-03-23T17:06:54Z{{DatatypeProperty +| rdfs:label@en = film colour type +| rdfs:comment@en = specifies the colour type of the film i.e. 'colour' or 'b/w' +| rdfs:domain = Film +| rdfs:range = xsd:string +}}OntologyProperty:FilmFareAward202877360712014-07-08T13:21:05Z +{{ObjectProperty +| rdfs:label@en = Film Fare Award +| rdfs:domain = Artist +| rdfs:range = Award +| rdfs:subPropertyOf = dul:coparticipatesWith +}}OntologyProperty:FilmNumber2027815271232013-07-05T14:41:52Z{{DatatypeProperty +| labels = +{{label|en|film number}} +| rdfs:domain = Person +| rdfs:range = xsd:nonNegativeInteger +}}OntologyProperty:FilmPolskiId2022467567862022-02-28T21:14:54Z{{DatatypeProperty +| labels = + {{label|en|FilmPolski.pl id}} + {{label|fr|id de FilmPolski.pl}} +| rdfs:range = xsd:string +| rdfs:subPropertyOf = code +}}OntologyProperty:FilmRuntime2027865528312018-02-08T20:14:29Z{{Merge|duration}} + +{{DatatypeProperty +| labels = +{{label|en|film runtime}} +{{label|de|Filmlaufzeit}} +| rdfs:domain = Film +| rdfs:range = Time +| owl:equivalentProperty = +| rdfs:subPropertyOf = runtime +}}OntologyProperty:FilmVersion2029275325482014-03-10T20:31:19Z{{ObjectProperty +| labels = +{{label|en| film version}} +{{label|nl| verfilmd als}} +| rdfs:domain = WrittenWork +| rdfs:range = Film +}}OntologyProperty:FinalFlight202878336762014-04-03T16:32:50Z{{DatatypeProperty +| rdfs:label@en = final flight +| rdfs:label@de = letzter Flug +| rdfs:domain = Rocket +| rdfs:range = xsd:date +| rdfs:comment@en = date of final flight +}}OntologyProperty:FinalLost2028047500992016-01-04T12:57:45Z{{DatatypeProperty +| labels = +{{label|en|final lost}} +{{label|de|Finale verloren}} +| rdfs:domain = TennisPlayer +| rdfs:range = xsd:nonNegativeInteger +}}OntologyProperty:FinalLostDouble2027716500852016-01-04T12:47:32Z{{DatatypeProperty +| labels = +{{label|en|final lost double}} +| rdfs:domain = TennisPlayer +| rdfs:range = xsd:string +}}OntologyProperty:FinalLostSingle2027713500862016-01-04T12:48:09Z{{DatatypeProperty +| labels = +{{label|en|final lost single}} +| rdfs:domain = TennisPlayer +| rdfs:range = xsd:string +}}OntologyProperty:FinalLostTeam2028049282042013-09-03T18:48:58Z{{DatatypeProperty +| labels = +{{label|en|final lost team}} +| rdfs:domain = Athlete +| rdfs:range = xsd:string +}}OntologyProperty:FinalPublicationDate2023743222802013-01-11T09:54:00Z{{DatatypeProperty +| labels = +{{label|en|final publication date}} +{{label|nl|laatste publicatiedatum}} +{{label|de|Datum der finalen Ausgabe}} +| rdfs:domain = PeriodicalLiterature +| rdfs:range = xsd:date +| rdfs:comment@en = Date of the final publication. +| rdfs:comment@de = Datum der allerletzten Veröffentlichung des Periodikums. +}}OntologyProperty:FinalPublicationYear2023746132022011-05-25T16:49:00Z{{DatatypeProperty +| rdfs:label@en = final publication year +| rdfs:label@de = Jahr der finalen Ausgabe +| rdfs:domain = PeriodicalLiterature +| rdfs:range = xsd:gYear +| rdfs:comment@en = Year of the final publication. +| rdfs:comment@de = Jahr der allerletzten Veröffentlichung des Periodikums. +}}OntologyProperty:FipsCode2027288259632013-06-13T15:20:18Z{{DatatypeProperty +| labels = +{{label|en|fips code}} +| rdfs:domain = PopulatedPlace +| rdfs:range = xsd:string +}}OntologyProperty:FirstAirDate2023025113102011-03-30T13:42:00Z{{DatatypeProperty +| rdfs:label@en = first air date +| rdfs:label@de = Sendebeginn +| rdfs:domain = Broadcaster +| rdfs:range = xsd:date +| rdfs:comment@en = The date on which regular broadcasts began. +}}OntologyProperty:FirstAppearance2023098503522016-02-12T21:06:50Z +{{DatatypeProperty +| rdfs:label@en = first appearance +| rdfs:domain = FictionalCharacter +| rdfs:range = xsd:string +| rdfs:subPropertyOf = <!-- dul:isParticipantIn -- defined as object property, see https://github.com/dbpedia/ontology-tracker/issues/9 --> +}}OntologyProperty:FirstAscent2027919336792014-04-03T16:33:10Z{{DatatypeProperty +| labels = +{{label|en|first ascent}} +{{label|de|Erstbesteigung}} +| rdfs:domain = Mountain,Volcano +| rdfs:range = xsd:string +}}OntologyProperty:FirstAscentPerson2022422360732014-07-08T13:21:22Z +{{ObjectProperty +| rdfs:label@en = person that first ascented a mountain +| rdfs:label@de = Person , die zuerst einen Berg bestiegen hat +| rdfs:domain = Mountain +| rdfs:range = Person +| rdfs:subPropertyOf = dul:coparticipatesWith +}}OntologyProperty:FirstAscentYear2022421336812014-04-03T16:33:19Z{{DatatypeProperty +| labels = +{{label|en|year of first ascent}} +{{label|de|Jahr der Erstbesteigung}} +{{label|nl|jaar van de eerste beklimming}} +| rdfs:domain = Mountain +| rdfs:range = xsd:gYear +}}OntologyProperty:FirstBroadcast2027617535692020-01-28T06:09:27Z{{DatatypeProperty +| labels = +{{label|en|first broadcast}} +{{label|de|Erstausstrahlung}} +| rdfs:domain = Film +| rdfs:range = xsd:string +}}OntologyProperty:FirstDriver202880360742014-07-08T13:21:30Z +{{ObjectProperty +| rdfs:label@en = first driver +| rdfs:label@de = erster Fahrer +| rdfs:domain = GrandPrix +| rdfs:range = Person +| rdfs:subPropertyOf = dul:hasParticipant +}}OntologyProperty:FirstDriverCountry202881360752014-07-08T13:21:38Z +{{ObjectProperty +| rdfs:label@en = first driver country +| rdfs:domain = GrandPrix +| rdfs:range = Country +| rdfs:subPropertyOf = dul:hasParticipant +}}OntologyProperty:FirstDriverTeam2022759360762014-07-08T13:21:46Z +{{ObjectProperty +| rdfs:label@en = winning team +| rdfs:label@de = Siegerteam +| rdfs:domain = GrandPrix +| rdfs:range = SportsTeam +| rdfs:subPropertyOf = dul:hasParticipant +}}OntologyProperty:FirstFlight202883360772014-07-08T13:21:55Z +{{ObjectProperty +| rdfs:label@en = first flight +| rdfs:label@de = erster Flug +| rdfs:domain = SpaceShuttle +| rdfs:range = SpaceMission +| rdfs:subPropertyOf = dul:isParticipantIn +}}OntologyProperty:FirstFlightEndDate20288480192010-05-28T13:07:32Z{{DatatypeProperty +| rdfs:label@en = first flight end date +| rdfs:domain = SpaceShuttle +| rdfs:range = xsd:date +}}OntologyProperty:FirstFlightStartDate20288580202010-05-28T13:07:40Z{{DatatypeProperty +| rdfs:label@en = first flight start date +| rdfs:domain = SpaceShuttle +| rdfs:range = xsd:date +}}OntologyProperty:FirstGame202886336852014-04-03T16:33:46Z{{DatatypeProperty +| rdfs:label@en = first game +| rdfs:label@de = erstes Spiel +| rdfs:domain = SoccerClub +| rdfs:range = xsd:string +}}OntologyProperty:FirstLaunch202887574342022-04-17T21:07:00Z{{DatatypeProperty +| labels = + {{label|en|first launch}} + {{label|fr|premier lancement}} + {{label|de|erster Start}} +| rdfs:domain = YearInSpaceflight +| rdfs:range = xsd:date +}}OntologyProperty:FirstLaunchDate202888336872014-04-03T16:33:56Z{{DatatypeProperty +| rdfs:label@en = first launch date +| rdfs:label@de = erster Starttermin +| rdfs:domain = LaunchPad +| rdfs:range = xsd:date +}}OntologyProperty:FirstLaunchRocket202889360782014-07-08T13:22:03Z +{{ObjectProperty +| rdfs:label@en = first launch rocket +| rdfs:domain = LaunchPad +| rdfs:range = Rocket +| rdfs:subPropertyOf = dul:coparticipatesWith +}}OntologyProperty:FirstLeader2023125360792014-07-08T13:22:19Z +{{ObjectProperty +| labels = + {{label|en|firstLeader}} + {{label|el|πρώτος ηγέτης}} +| rdfs:range = Person +| rdfs:subPropertyOf = dul:coparticipatesWith +}}OntologyProperty:FirstMention2027258336892014-04-03T16:34:02Z{{DatatypeProperty +| labels = +{{label|en|first mention}} +{{label|de|erste Erwähnung}} +| rdfs:domain = PopulatedPlace +| rdfs:range = xsd:string +}}OntologyProperty:FirstOlympicEvent2026380360802014-07-08T13:22:27Z +{{ObjectProperty +| labels = + {{label|en|first olympic event}} + {{label|fr|première épreuve olympique}} +| rdfs:domain = Sport +| rdfs:range = OlympicEvent +| rdfs:subPropertyOf = dul:isParticipantIn +}}OntologyProperty:FirstOwner2027479360812014-07-08T13:22:35Z +{{ObjectProperty +| labels = + {{label|en|first owner}} + {{label|de|erster Besitzer}} + {{label|fr|premier propriétaire}} + {{label|es|primer dueño}} +| rdfs:range = Agent +| rdfs:subPropertyOf = dul:sameSettingAs +}}OntologyProperty:FirstPlace2028082567922022-02-28T21:32:31Z{{DatatypeProperty +| labels = +{{label|en|first place}} +{{label|fr|première place}} +{{label|de|erster Platz}} +| rdfs:domain = owl:Thing +| rdfs:range = xsd:string +}}OntologyProperty:FirstPopularVote2023127529292018-02-28T08:41:31Z +{{ObjectProperty +| rdfs:label@en = firstPopularVote +| rdfs:comment = There is no clear definition of what this means, if this property points to a date, it should be a datatype property with range xsd:date +| rdfs:range = Person +| owl:equivalentProperty = dul:sameSettingAs +}}OntologyProperty:FirstProMatch2027706336922014-04-03T16:34:17Z{{DatatypeProperty +| labels = +{{label|en|first pro match}} +{{label|de|erstes Profispiel}} +| rdfs:domain = Athlete +| rdfs:range = xsd:string +}}OntologyProperty:FirstPublicationDate2023742568252022-03-01T00:20:07Z{{DatatypeProperty +| labels = +{{label|en|first publication date}} +{{label|nl|eerste publicatiedatum}} +{{label|de|Datum der Erstausgabe}} +{{label|pl|data pierwszego wydania}} +{{label|fr|date de la première publication}} +| rdfs:domain = WrittenWork +| rdfs:range = xsd:date +| rdfs:comment@en = Date of the first publication. +| rdfs:comment@de = Datum der ersten Veröffentlichung des Periodikums. +}}OntologyProperty:FirstPublicationYear2023744232212013-01-18T15:49:03Z{{DatatypeProperty +| labels = +{{label|en|first publication year}} +{{label|de|Jahr der Erstausgabe}} +{{label|el|πρώτο έτος δημοσίευσης}} +| rdfs:domain = PeriodicalLiterature +| rdfs:range = xsd:gYear +|comments= +{{comment|en|Year of the first publication.}} +{{comment|de|Jahr der ersten Veröffentlichung des Periodikums.}} +{{comment|el|Έτος της πρώτης δημοσίευσης.}} +}}OntologyProperty:FirstPublisher2029276518022017-01-06T09:34:46Z{{ObjectProperty +| labels = +{{label|en|first publisher}} +{{label|de|erster Herausgeber}} +{{label|nl|oorspronkelijke uitgever}} +| rdfs:domain = WrittenWork +| rdfs:range = Agent +| rdfs:subPropertyOf = publisher +| owl:equivalentProperty = + +}}OntologyProperty:FirstRace202890360832014-07-08T13:22:52Z +{{ObjectProperty +| rdfs:label@en = first race +| rdfs:label@de = erstes Rennen +| rdfs:domain = FormulaOneRacer +| rdfs:range = GrandPrix +| rdfs:subPropertyOf = dul:isParticipantIn +}}OntologyProperty:FirstWin202891360842014-07-08T13:23:01Z +{{ObjectProperty +| rdfs:label@en = first win +| rdfs:label@de = erster Sieg +| rdfs:domain = FormulaOneRacer +| rdfs:range = GrandPrix +| rdfs:subPropertyOf = dul:isParticipantIn +}}OntologyProperty:FirstWinner202892360852014-07-08T13:23:15Z +{{ObjectProperty +| labels = + {{label|en|first winner}} + {{label|de|erster Gewinner}} + {{label|el|πρώτος νικητής}} +| rdfs:domain = Race +| rdfs:range = Person +| rdfs:subPropertyOf = dul:hasParticipant +}}OntologyProperty:Flag2024544394192015-01-19T15:41:34Z{{DatatypeProperty +| labels = +{{label|en|flag (image)}} +{{label|it|bandiera}} +{{label|de|Flagge}} +{{label|el|σημαία}} +{{label|nl|vlag (afbeelding)}} +{{label|tr|göndere çekmek}} +| comments = +{{comment|en|Wikimedia Commons file name representing the subject's flag}} +| rdfs:domain = owl:Thing +| rdfs:range = xsd:string +| owl:equivalentProperty = wikidata:P41 +}}OntologyProperty:FlagBearer202893360862014-07-08T13:23:23Z +{{ObjectProperty +| rdfs:label@en = flag bearer +| rdfs:label@de = Fahnenträger +| rdfs:domain = OlympicResult +| rdfs:range = Person +| rdfs:subPropertyOf = dul:coparticipatesWith +}}OntologyProperty:FlagBorder2027114256472013-05-26T14:54:20Z{{DatatypeProperty +| labels = +{{label|en|flag border}} +| rdfs:range = xsd:string +}}OntologyProperty:FlagCaption2026777278762013-07-16T15:14:21Z{{DatatypeProperty +| labels = +{{label|en|flag caption}} +| rdfs:domain = Flag +| rdfs:range = xsd:string +}}OntologyProperty:FlagLink2027115256482013-05-26T14:54:42Z{{DatatypeProperty +| labels = +{{label|en|flag Link}} +| rdfs:range = xsd:string +}}OntologyProperty:FlagSize2026778250592013-04-21T14:30:15Z{{DatatypeProperty +| labels = +{{label|en|flagSize}} +| rdfs:domain = Flag +| rdfs:range = xsd:integer +}}OntologyProperty:FlashPoint2029142317092014-02-10T23:02:17Z{{DatatypeProperty +|labels = + {{label|en|flash point}} + {{label|nl|vlampunt}} +| rdfs:comment@en = lowest temperature at which a substance can vaporize and start burning +| rdfs:domain = ChemicalSubstance +| rdfs:range = xsd:integer +}}OntologyProperty:FloodingDate2022197573812022-03-31T13:10:14Z{{DatatypeProperty +| labels = + {{label|en|flooding date}} + {{label|fr|date d'innondation}} +| rdfs:range = xsd:date +}}OntologyProperty:FloorArea202894224172013-01-11T22:43:01Z{{DatatypeProperty +| labels = +{{label|en|floor area}} +{{label|nl|vloeroppervlak}} +{{label|el|περιοχή ορόφων}} +| rdfs:domain = Building +| rdfs:range = Area +}}OntologyProperty:FloorCount202895199532012-11-22T20:54:11Z{{DatatypeProperty +| labels = +{{label|en|floor count}} +{{label|nl|verdiepingen}} +{{label|el|αριθμός ορόφων}} +| rdfs:domain = Building +| rdfs:range = xsd:positiveInteger +}}OntologyProperty:Flora2027148337002014-04-03T16:34:50Z{{DatatypeProperty +| labels = +{{label|en|flora}} +{{label|de|Flora}} +| rdfs:domain = Place +| rdfs:range = xsd:string +}}OntologyProperty:Flower2027134573792022-03-31T13:07:13Z{{ObjectProperty +| labels = + {{label|en|flower}} + {{label|fr|fleur}} + {{label|de|Blume}} + {{label|el|λουλούδι}} +| rdfs:domain = Place +| rdfs:range = Species +}}OntologyProperty:FlyingHours2022144337022014-04-03T16:35:00Z{{DatatypeProperty +| rdfs:label@en = flying hours +| rdfs:label@de = Flugstunden +| rdfs:domain = MilitaryUnit +| rdfs:range = Time +}}OntologyProperty:Foaf:based near2024365147042011-08-02T14:07:07Z{{ObjectProperty +| rdfs:label@en = based near +}}OntologyProperty:Foaf:depiction2021612357282014-07-04T20:58:47Z{{ObjectProperty +|labels = +{{label|en|depiction from http://xmlns.com/foaf/spec/#term_depiction}} +|rdfs:range = Image +}}OntologyProperty:Foaf:familyName2022296348142014-05-14T11:25:43Z{{DatatypeProperty +|rdfs:label@en = family name +|rdfs:label@de = Familienname +|rdfs:domain = owl:Thing +|rdfs:range = rdf:langString +}}OntologyProperty:Foaf:gender2025805337032014-04-03T16:35:04Z{{DatatypeProperty +| rdfs:label@en = gender +| rdfs:label@de = Geschlecht +| rdfs:range = xsd:string +}}OntologyProperty:Foaf:givenName2022295348132014-05-14T11:25:38Z{{DatatypeProperty +|labels= + {{label|en|given name}} + {{label|de|Vorname}} + {{label|fr|prénom}} +|rdfs:domain = owl:Thing +|rdfs:range = rdf:langString +}}OntologyProperty:Foaf:homepage2021614549192021-09-06T10:06:25Z{{ObjectProperty +| labels = +{{label|en|homepage}} +{{label|de|Homepage}} +{{label|gl|páxina web}} +{{label|nl|homepage}} +{{label|pt|homepage }} +{{label|el|ιστοσελίδα}} +{{label|ga|líonláithreán}} +{{label|ja|ホームページ}} +{{label|pl|strona domowa}} +| rdfs:domain = owl:Thing +| rdfs:range = Website +| owl:equivalentProperty = wikidata:P856 +}}OntologyProperty:Foaf:img2025086455482015-03-08T10:59:56Z{{ObjectProperty +| labels = +{{label|en|image}} +{{label|fr|image}} +{{label|de|Bild}} +{{label|nl|afbeelding}} +}}OntologyProperty:Foaf:isPrimaryTopicOf2025758184912012-05-19T15:40:20Z{{ObjectProperty +|labels = +{{label|en|A document that this thing is the primary topic of. <ref name="foaf:isPrimaryTopicOf">http://xmlns.com/foaf/spec/#term_isPrimaryTopicOf</ref>}} +|comments = +{{comment|en|Inverse of [[OntologyProperty:Foaf:primaryTopic|foaf:primaryTopic]]. <ref name="foaf:isPrimaryTopicOf"/>}} +|rdfs:domain = owl:Thing +|rdfs:range = foaf:Document +}} + +==References== +<references/>OntologyProperty:Foaf:logo2022922121052011-04-12T14:40:52Z{{ObjectProperty +|rdfs:label@en = logo +}}OntologyProperty:Foaf:mbox20210990433202015-02-06T13:28:12Z{{DatatypeProperty +| labels = +{{label|en|Email address (mbox)}} +|comments= +{{comment|en|foaf:mbox is supposed to be in URI form so we could prepend mailto: and declare it an ObjectProperty}} +|rdfs:range=xsd:string +}}OntologyProperty:Foaf:name2021615548962021-08-06T13:30:50Z{{DatatypeProperty +|labels= + {{label|en|name}} + {{label|de|Name}} + {{label|es|nombre}} + {{label|fr|nom}} + {{label|ga|ainm}} + {{label|pt|nome}} + {{label|el|όνομα}} + {{label|ja|名前}} + {{label|nl|naam}} + {{label|pl|nazwa}} + {{label|it|nome}} + {{label|ur|نام}} +| rdfs:domain = owl:Thing +| rdfs:range = rdf:langString +| owl:equivalentProperty = schema:name +}}OntologyProperty:Foaf:nick2022294348152014-05-14T11:25:50Z{{DatatypeProperty +|labels= + {{label|en|nickname}} +{{label|de|Spitzname}} + {{label|el|προσωνύμιο}} + {{label|fr|surnom}} + {{label|nl|bijnaam}} + {{label|ja|ニックネーム}} +|rdfs:domain = owl:Thing +|rdfs:range = rdf:langString +}}OntologyProperty:Foaf:page2021616224082013-01-11T22:19:37Z{{ObjectProperty +|labels= +{{label|en|A page or document about this thing.<ref name="foaf:page">http://xmlns.com/foaf/spec/#term_page</ref>}} +{{label|nl|document}} +|comments = +{{comment|en|Inverse of [[OntologyProperty:Foaf:topic|foaf:topic]]. <ref name="foaf:page"/>}} +|rdfs:range = foaf:Document +}} +==References== +<references/>OntologyProperty:Foaf:phone20210991433242015-02-06T13:37:22Z{{DatatypeProperty +| labels = +{{label|en|Telephone (phone) number}} +|comments= +{{comment|en|foaf:phone is supposed to be in URI form so we could prepend tel: and declare it an ObjectProperty}} +|rdfs:range=xsd:string +}}OntologyProperty:Foaf:primaryTopic2022308184962012-05-19T15:42:23Z{{ObjectProperty +|labels= +{{label|en|The primary topic of some page or document. <ref name="foaf:primaryTopic">http://xmlns.com/foaf/spec/#term_primaryTopic</ref>}} +|comments= +{{comment|en|Inverse of [[OntologyProperty:Foaf:isPrimaryTopicOf|foaf:isPrimaryTopicOf]]. <ref name="foaf:primaryTopic"/>}} +|rdfs:domain = foaf:Document +}} + +==References== +<references/>OntologyProperty:Foaf:surname2021618367612014-07-09T10:32:50Z{{DatatypeProperty +|labels= + {{label|en|surname}} +{{label|el|Επίθετο}} +{{label|de|Nachname}} +{{label|fr|nom de famille}} +|rdfs:range = rdf:langString +}}OntologyProperty:Foaf:thumbnail2021619388772014-12-14T14:06:33Z{{ObjectProperty +| labels = +{{label|en|thumbnail}} +{{label|nl|plaatje}} +{{label|fr|image}} +{{label|ja|画像}} +|rdfs:domain = owl:Thing +|rdfs:range = Image +}}OntologyProperty:Foaf:topic2025759567852022-02-28T21:12:35Z{{ObjectProperty +|labels= +{{label|en|A topic of some page or document. <ref name="foaf:topic">http://xmlns.com/foaf/spec/#term_topic</ref>}} +{{label|fr|Un sujet d'une page ou d'un document. <ref name="foaf:topic">http://xmlns.com/foaf/spec/#term_topic</ref>}} +|comments= +{{comment|en|Inverse of [[OntologyProperty:Foaf:page|foaf:page]]. <ref name="foaf:topic"/>}} +{{comment|fr|Inverse de [[OntologyProperty:Foaf:page|foaf:page]]. <ref name="foaf:topic"/>}} +|rdfs:domain = owl:Thing +}} + +==References== +<references/>OntologyProperty:FoalDate2026177207562012-12-23T14:03:04Z{{DatatypeProperty +| labels = +{{label|en|foal date}} +| rdfs:domain = Animal +| rdfs:range = xsd:date +| rdf:type = owl:FunctionalProperty +}}OntologyProperty:Focus20211903522892017-10-08T19:11:55Z{{ObjectProperty +| labels = + {{label|en|focus}} + {{label|de|Fokus}} +| comments = + {{comment|en|Points out the subject or thing someone or something is focused on.}} + {{comment|de|Verweist of den Gegenstand (auch fig.) auf welchen jemand oder etwas fokussiert ist.}} +| rdfs:domain = owl:Thing +| rdfs:range = owl:Thing +}}OntologyProperty:FollowedBy2028099337072014-04-03T16:35:22Z{{ObjectProperty +| labels = +{{label|en|followed by}} +{{label|de|gefolgt von}} +{{label|fr|suivi par}} +{{label|es|siguido de}} +| rdfs:domain = owl:Thing +| rdfs:range = owl:Thing +| owl:equivalentProperty = wikidata:P156 +}}OntologyProperty:FollowingEvent202896360872014-07-08T13:23:31Z{{DisclaimerOntologyProperty}} + + +{{ObjectProperty +| labels = + {{label|en|following event}} + {{label|fr|évènement suivant}} +| rdfs:domain = Event +| rdfs:range = Event +| rdfs:subPropertyOf = dul:precedes +}}OntologyProperty:Follows2026804337082014-04-03T16:35:27Z{{ObjectProperty +| labels = +{{label|en|follows}} +{{label|de|folgt}} +{{label|fr|vient après}} +{{label|es|sigue}} +| rdfs:domain = owl:Thing +| rdfs:range = owl:Thing +| owl:equivalentProperty = wikidata:P155 +}}OntologyProperty:Foot2027642268912013-07-03T09:39:47Z{{DatatypeProperty +| labels = +{{label|en|foot}} +| rdfs:domain = Person +| rdfs:range = xsd:string +}}OntologyProperty:Footedness2023354122402011-04-15T13:55:48Z{{ObjectProperty +| rdfs:label@en = Footedness +| rdfs:label@pt = habilidade com o pé +| rdfs:comment@en = 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. +| rdfs:domain = Sport +| rdfs:range = Person +}}OntologyProperty:Forces2027473337092014-04-03T16:35:34Z{{DatatypeProperty +| labels = +{{label|fr|forces}} +{{label|en|forces}} +{{label|de|Streitkräfte}} +| rdfs:range = xsd:string +}}OntologyProperty:ForesterDistrict2027079360882014-07-08T13:23:39Z +{{ObjectProperty +| labels = + {{label|en|foresterDistrict}} +| rdfs:domain = Place +| rdfs:subPropertyOf = dul:isPartOf +}}OntologyProperty:Format202897486592015-08-06T16:33:20Z{{ObjectProperty +| labels = + {{label|en|format (object)}} + {{label|de|Format}} + {{label|el|format}} + {{label|fr|format}} + {{label|ga|formáid}} + {{label|nl|formaat}} + {{label|pl|format}} +| rdfs:comment@en = Format of the resource (as object). Use dct:format for literal, format for object +| rdfs:subPropertyOf = dul:isClassifiedBy +}}OntologyProperty:FormationDate202898573832022-03-31T13:16:35Z{{DatatypeProperty +| labels = + {{label|en|formation date}} + {{label|fr|date de formation}} + {{label|nl|formatie datum}} + {{label|el|Ιδρύθηκε}} +| rdfs:domain = Organisation +| rdfs:range = xsd:date +| comments = + {{comment|en|same as [[OntologyProperty:FoundingDate]]?}} + {{comment|fr|est-ce la même chose que [[OntologyProperty:FoundingDate]] ?}} +| owl:equivalentProperty = wikidata:P571 +}}OntologyProperty:FormationYear202899573822022-03-31T13:13:56Z{{DatatypeProperty +| labels = + {{label|en|formation year}} + {{label|fr|année de formation}} + {{label|nl|formatie jaar}} +| comments = + {{comment|en|equivalent / sub property of [[OntologyProperty:foundingYear]]?}} + {{comment|fr|est-ce un équivalent ou une sous-propriété de [[OntologyProperty:foundingYear]]?}} +| rdfs:domain = Organisation +| rdfs:range = xsd:gYear +}}OntologyProperty:FormerBandMember2024347360902014-07-08T13:23:55Z +{{ObjectProperty +| labels = + {{label|en|former band member}} + {{label|de|ehemaliges Bandmitglied}} + {{label|nl|voormalig bandlid}} +| rdfs:domain = Band +| rdfs:range = Person +| rdfs:comment@en = A former member of the band. +| rdfs:subPropertyOf = dul:hasMember +}}OntologyProperty:FormerBroadcastNetwork2023028360912014-07-08T13:24:03Z +{{ObjectProperty +| rdfs:label@en = former broadcast network +| rdfs:label@de = ehemalige Sendergruppe +| rdfs:label@fr = ancienne chaîne de télévision généraliste +| rdfs:domain = Broadcaster +| rdfs:range = BroadcastNetwork +| rdfs:comment@en = A former parent broadcast network to which the broadcaster once belonged. +| rdfs:comment@de = Eine ehemalige Sendergruppe zu dem der Rundfunkveranstalter gehört hat. +| rdfs:subPropertyOf = dul:isMemberOf +}}OntologyProperty:FormerCallsign202900129182011-05-18T12:56:05Z{{DatatypeProperty +| rdfs:label@en = former call sign +| rdfs:domain = Broadcaster +| rdfs:range = xsd:string +| rdfs:comment@en = A former call sign is not a former 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 [http://en.wikipedia.org/wiki/Call_sign]. +}}OntologyProperty:FormerChannel2023185119142011-04-05T10:48:18Z{{DatatypeProperty +| rdfs:label@en = former channel +| rdfs:domain = Broadcaster +| rdfs:range = xsd:string +}}OntologyProperty:FormerChoreographer202901572932022-03-30T14:16:53Z +{{ObjectProperty +| labels = + {{label|en|former choreographer}} + {{label|fr|choréographe précédent}} + {{label|de|ehemaliger Choreograph}} +| rdfs:domain = FigureSkater +| rdfs:range = Person +| rdfs:subPropertyOf = dul:coparticipatesWith +}}OntologyProperty:FormerCoach202902360932014-07-08T13:24:21Z +{{ObjectProperty +| rdfs:label@en = former coach +| rdfs:label@de = Ex-Trainer +| rdfs:domain = FigureSkater +| rdfs:range = Person +| rdfs:subPropertyOf = dul:coparticipatesWith +}}OntologyProperty:FormerHighschool202903360942014-07-08T13:24:29Z +{{ObjectProperty +| rdfs:label@en = former highschool +| rdfs:label@de = ehemalige Highschool +| rdfs:domain = NationalCollegiateAthleticAssociationAthlete +| rdfs:range = EducationalInstitution +| rdfs:subPropertyOf = dul:isMemberOf +}}OntologyProperty:FormerName202904348352014-05-15T05:18:21Z{{DatatypeProperty +| rdfs:label@en = former name +| rdfs:label@de = früherer Name +| rdfs:label@el = προηγούμενο όνομα +| rdfs:range = rdf:langString +}}OntologyProperty:FormerPartner202905572942022-03-30T14:18:54Z +{{ObjectProperty +| labels = + {{label|en|former partner}} + {{label|fr|partenaire précédent}} + {{label|de|ehemaliger Partner}} +| rdfs:domain = FigureSkater +| rdfs:range = Person +| rdfs:subPropertyOf = dul:coparticipatesWith +}}OntologyProperty:FormerTeam202906360962014-07-08T13:24:45Z +{{ObjectProperty +| labels = + {{label|en|former team}} + {{label|nl|voormalig team}} +| rdfs:domain = Athlete +| rdfs:range = SportsTeam +| rdfs:subPropertyOf = dul:isMemberOf +}}OntologyProperty:Formula2028933307882014-01-22T13:48:40Z{{DatatypeProperty +| rdfs:label@en = formula +| rdfs:label@de = Formel +| rdfs:label@fr = formule +| rdfs:label@nl = formule +| rdfs:domain = ChemicalSubstance +| rdfs:range = xsd:string +}}OntologyProperty:Fossil20210210378852014-09-24T11:12:42Z{{ObjectProperty +| labels = + {{label|en|fossil}} + {{label|nl|fossiel}} +| rdfs:domain = Species +| rdfs:range = Species +| rdfs:subPropertyOf = dul:sameSettingAs +}}OntologyProperty:Foundation2027259337212014-04-04T13:51:51Z{{DatatypeProperty +| labels = +{{label|en|foundation}} +{{label|de|Gründung}} +| rdfs:domain = PopulatedPlace +| rdfs:range = xsd:string +}}OntologyProperty:FoundationPlace202909360972014-07-08T13:24:53Z +{{ObjectProperty +| rdfs:label@en = foundation place +| rdfs:label@de = Gründungsort +| rdfs:domain = Organisation +| rdfs:range = City +| rdfs:subPropertyOf = dul:hasLocation +}}OntologyProperty:FoundedBy2023884476342015-04-03T14:17:12Z{{ObjectProperty +| labels = + {{label|en|founded by}} + {{label|de|gegründet von}} + {{label|nl|gesticht door}} + {{label|fr|fondé par}} + {{label|ga|a bhunaigh}} + {{label|pl|założony przez}} +| rdfs:domain = owl:Thing +| rdfs:range = Agent +| owl:equivalentProperty = schema:founders +| rdfs:comment@en = Identifies the founder of the described entity. This can be a person or a organisation for instance. +| rdfs:subPropertyOf = dul:coparticipatesWith +| owl:equivalentProperty = wikidata:P112 +}}OntologyProperty:Founder2026162485272015-08-05T15:08:42Z{{ObjectProperty +| labels = + {{label|en|founder}} + {{label|de|Gründer}} + {{label|el|Ιδρυτής}} +| rdfs:domain = owl:Thing +| rdfs:range = Person +| comments = + {{comment|en|A founder or co-founder of the organization, religion or place.}} + {{comment|en|Ein Gründer oder Gründungsmitglied einer Organisation, Religion oder eines Ortes.}} +| rdfs:subPropertyOf = dul:sameSettingAs +| owl:equivalentProperty = wikidata:P112 +}}OntologyProperty:FoundingDate202910537372020-09-28T19:29:08Z{{DatatypeProperty +| rdfs:label@en = founding date +| rdfs:label@de = Gründungsdatum +| rdfs:label@el = ημερομηνία ίδρυσης +| rdfs:label@ga = dáta bunaithe +| rdfs:label@ja = 創立日 +| rdfs:label@pl = data założenia +| rdfs:range = xsd:date +| owl:equivalentProperty = schema:foundingDate, wikidata:P571 +}}OntologyProperty:FoundingYear202912537492020-09-30T12:14:36Z{{DatatypeProperty +| labels = +{{label|en|founding year}} +{{label|nl|oprichtingsjaar}} +{{label|de|Gründungsjahr}} +{{label|es|año de fundación}} +{{label|el|έτος ίδρυσης}} +| rdfs:domain = owl:Thing +| rdfs:range = xsd:gYear +| owl:equivalentProperty = bag:oorspronkelijkBouwjaar +}}OntologyProperty:FourthCommander2022145361012014-07-08T13:25:34Z +{{ObjectProperty +| rdfs:label@en = fourth commander +| rdfs:domain = MilitaryUnit +| rdfs:range = Person +| rdfs:subPropertyOf = dul:coparticipatesWith +}}OntologyProperty:Frazioni202913361022014-07-08T13:25:42Z +{{ObjectProperty +| rdfs:label@en = frazioni +| rdfs:domain = Settlement +| rdfs:range = PopulatedPlace +| rdfs:subPropertyOf = dul:hasPart +}}OntologyProperty:Free2026820567842022-02-28T21:10:15Z{{DatatypeProperty +| labels = +{{label|en|free}} +{{label|fr|libre}} +| rdfs:domain = FictionalCharacter +| rdfs:range = xsd:string +}}OntologyProperty:FreeDanseScore2028077282402013-09-04T09:18:12Z{{DatatypeProperty +| labels = +{{label|en|free danse score}} +| rdfs:domain = Person +| rdfs:range = xsd:string +}}OntologyProperty:FreeFlightTime20291480322010-05-28T13:09:15Z{{DatatypeProperty +| rdfs:label@en = free flight time +| rdfs:domain = Spacecraft +| rdfs:range = Time +}}OntologyProperty:FreeLabel2026819251662013-05-09T10:08:25Z{{DatatypeProperty +| labels = +{{label|en|freeLabel}} +| rdfs:domain = FictionalCharacter +| rdfs:range = xsd:string +}}OntologyProperty:FreeProgCompetition2028070282332013-09-04T09:12:52Z{{DatatypeProperty +| labels = +{{label|en|free prog competition}} +| rdfs:domain = Person +| rdfs:range = xsd:string +}}OntologyProperty:FreeProgScore2028069282322013-09-04T09:12:32Z{{DatatypeProperty +| labels = +{{label|en|free prog score}} +| rdfs:domain = Person +| rdfs:range = xsd:string +}}OntologyProperty:FreeScoreCompetition2028078282412013-09-04T09:18:40Z{{DatatypeProperty +| labels = +{{label|en|free score competition}} +| rdfs:domain = Person +| rdfs:range = xsd:string +}}OntologyProperty:Frequency202915337282014-04-04T13:52:18Z{{DatatypeProperty +| labels = +{{label|en|frequency}} +{{label|de|Frequenz}} +{{label|el|συχνότητα}} +{{label|fr|fréquence}} + +| rdfs:range = Frequency +}}OntologyProperty:FrequencyOfPublication2023741222762013-01-11T09:51:21Z{{DatatypeProperty +| labels = +{{label|en|frequency of publication}} +{{label|nl|frequentie van publicatie}} +{{label|de|Erscheinungsweise}} +| rdfs:domain = PeriodicalLiterature +| rdfs:range = xsd:string +| rdfs:comment@en = The frequency of periodical publication (eg. Weekly, Bimonthly). +| rdfs:comment@de = Die Häufigkeit der Erscheinungen des Periodikums (z.B. wöchentlich, monatlich). +}}OntologyProperty:FrequentlyUpdated202916573852022-03-31T13:20:46Z{{DatatypeProperty +| labels = + {{label|en|frequently updated}} + {{label|fr|mise à jour fréquente}} + {{label|de|häufig aktualisiert}} +| rdfs:domain = Software +| rdfs:range = xsd:string +}}OntologyProperty:Friend2027883337302014-04-04T13:52:27Z{{ObjectProperty +| labels = +{{label|en|friend}} +{{label|de|Freund}} +{{label|el|φίλος}} +| rdfs:domain = Person +| rdfs:range = Person +}}OntologyProperty:FrontierLength2027051255522013-05-25T23:21:54Z{{DatatypeProperty +| labels = +{{label|en|length of a frontier}} +| rdfs:domain = Place +| rdfs:range = xsd:float +}}OntologyProperty:Frozen202917503272016-02-05T08:22:32Z{{DatatypeProperty +| rdfs:label@en = frozen +| rdfs:label@de = gefroren +| rdfs:label@el = παγωμένη +| rdfs:domain = BodyOfWater +| rdfs:range = xsd:string +}}OntologyProperty:Fuel2022742361032014-07-08T13:25:51Z +{{ObjectProperty +| rdfs:label@en = fuel +| rdfs:label@el = καύσιμα +| rdfs:label@de = Treibstoff +| rdfs:label@fr = carburant +| rdfs:label@nl = brandstof +| rdfs:domain = owl:Thing +| rdfs:subPropertyOf = dul:sameSettingAs +}}OntologyProperty:FuelCapacity202918348942014-05-18T17:52:26Z{{DatatypeProperty +| rdfs:label@en = fuel capacity +| rdfs:label@el = χωρητικότητα καυσίμου +| rdfs:label@de = Kraftstoffkapazität +| rdfs:domain = Automobile +| rdfs:range = Volume +| rdf:type = owl:FunctionalProperty +}}OntologyProperty:FuelConsumption202919348952014-05-18T17:52:57Z{{DatatypeProperty +| rdfs:label@en = fuel consumption +| rdfs:label@el = κατανάλωση καυσίμου +| rdfs:label@de = Kraftstoffverbrauch +| rdfs:label@nl = brandstofverbruik +| rdfs:domain = AutomobileEngine +| rdfs:range = xsd:string +| rdf:type = owl:FunctionalProperty +}}OntologyProperty:FuelSystem202920475812015-04-03T09:30:08Z{{ObjectProperty +| rdfs:label@en = fuel system +| rdfs:label@de = Kraftstoffsystem +| rdfs:domain = AutomobileEngine +| rdfs:subPropertyOf = dul:hasComponent +| owl:equivalentProperty = wikidata:P1211 +}}OntologyProperty:FuelType202921522622017-10-08T10:34:21Z +{{ObjectProperty +| rdfs:label@en = fuel type +| rdfs:label@el = τύπος καυσίμου +| rdfs:label@de = Kraftstofftyp +| rdfs:domain = owl:Thing +| rdfs:range = owl:Thing +<!-- | rdfs:subPropertyOf = dul:isClassifiedBy -- defined as object property, see https://github.com/dbpedia/ontology-tracker/issues/9 --> +}}OntologyProperty:FuelTypeName2029588355182014-06-28T22:37:59Z{{DatatypeProperty +| labels = +{{label|en|fuel type}} +| rdfs:domain = PowerStation +| rdfs:range = rdf:langString +}}OntologyProperty:FullCompetition2028066282292013-09-04T09:10:49Z{{DatatypeProperty +| labels = +{{label|en|full competition}} +| rdfs:domain = Person +| rdfs:range = xsd:string +}}OntologyProperty:FullScore2028065282282013-09-04T09:10:29Z{{DatatypeProperty +| labels = +{{label|en|full score}} +| rdfs:domain = Person +| rdfs:range = xsd:string +}}OntologyProperty:FunctionEndDate20292380392010-05-28T13:10:07Z{{DatatypeProperty +| rdfs:label@en = function end date +| rdfs:domain = PersonFunction +| rdfs:range = xsd:date +}}OntologyProperty:FunctionEndYear202924204372012-12-20T15:03:23Z{{DatatypeProperty +| rdfs:label@en = function end year +| rdfs:label@nl = laatste jaar functie +| rdfs:domain = PersonFunction +| rdfs:range = xsd:gYear +}}OntologyProperty:FunctionStartDate20292580412010-05-28T13:10:22Z{{DatatypeProperty +| rdfs:label@en = function start date +| rdfs:domain = PersonFunction +| rdfs:range = xsd:date +}}OntologyProperty:FunctionStartYear202926538102020-12-01T18:05:49Z{{DatatypeProperty +| rdfs:label@en = function start year +| rdfs:domain = PersonFunction +| rdfs:range = xsd:gYear +| owl:equivalentProperty=wikidata:P2031 +}}OntologyProperty:FundedBy2023042361062014-07-08T13:26:29Z +{{ObjectProperty +| rdfs:label@en = funded by +| rdfs:label@el = ιδρύθηκε από +| rdfs:label@de = gefördert durch +| rdfs:domain = ResearchProject +| rdfs:range = Organisation +| rdfs:comment@en = A organisation financing the research project. +| rdfs:subPropertyOf = dul:isSettingFor +}}OntologyProperty:GalicianSpeakersDate20211361490942015-10-09T17:54:22Z{{DatatypeProperty +|labels = +{{label|en|galicianSpeakersDate}} +{{label|gl|data da enquisa sociolingüística}} + |rdfs:comment@en = The last inquiry date about linguistics uses. + |rdfs:comment@gl = data da última enquisa sociolingüística. + |rdfs:domain = Language + |rdfs:range = xsd:gYear +}}OntologyProperty:GalicianSpeakersPercentage20211360490882015-10-09T17:32:40Z{{DatatypeProperty +| labels = +{{label|en|galicianSpeakersPercentage}} +{{label|gl|porcentaxe de galegofalantes}} + | rdfs:comment@en = Percentage of Galician speakers. + | rdfs:comment@gl = porcentaxe de galegofalantes. + | rdfs:domain = Language + | rdfs:range = xsd:string +}}OntologyProperty:GalleryItem20210104453192015-02-13T17:43:26Z{{ObjectProperty +| labels= + {{label|en|gallery item}} + {{label|de|Galerieelement}} +| comments= + {{comment|en|A file contained in a [https://en.wikipedia.org/wiki/Help:Gallery_tag gallery]}} +| rdfs:domain = Document +| rdfs:range = File +}}OntologyProperty:GameArtist2023882361072014-07-08T13:26:38Z +{{ObjectProperty +| rdfs:label@en = game artist +| rdfs:label@ja = ゲームデザイナー +| rdfs:domain = VideoGame +| rdfs:range = Person +| rdfs:comment@en = 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. +| rdfs:subPropertyOf = dul:coparticipatesWith +}}OntologyProperty:GameEngine2022119475822015-04-03T09:32:03Z{{ObjectProperty +| rdfs:label@en = Game Engine +| rdfs:label@ja = ゲームエンジン +| rdfs:domain = VideoGame +| rdfs:subPropertyOf = dul:coparticipatesWith +| owl:equivalentProperty = wikidata:P408 +}}OntologyProperty:GameModus2026410235332013-01-23T23:51:35Z{{DatatypeProperty +| labels = +{{label|en|Modus the game can be played in }} +| rdfs:domain = owl:Thing +| rdfs:range = xsd:string +}}OntologyProperty:Games202928523592017-10-10T14:03:47Z{{DatatypeProperty +| rdfs:label@en = games +| rdfs:label@da = spil +| rdfs:label@de = Spiele +| rdfs:label@el = αγώνες +| rdfs:domain = OlympicResult +| rdfs:range = xsd:string +}}OntologyProperty:Garrison202929361092014-07-08T13:26:55Z +{{ObjectProperty +| rdfs:label@en = garrison +| rdfs:label@de = Garnison +| rdfs:domain = MilitaryUnit +| rdfs:range = PopulatedPlace +| rdfs:subPropertyOf = dul:hasLocation +}}OntologyProperty:GasChambers20211701567492022-02-28T16:37:28Z{{DatatypeProperty +| labels = + {{label|en|gas chambers}} + {{label|fr|chambres à gaz}} +| rdfs:domain = ConcentrationCamp +| rdfs:range = xsd:string +|comments = + {{comment|en|Number or description of gas chambers of a ConcentrationCamp}} + {{comment|fr|Nombre ou description des chambres à gaz d'un camp de concentration}} +}}OntologyProperty:GaudiAward2022496361102014-07-08T13:27:03Z +{{ObjectProperty +| rdfs:label@en = Gaudí Award +| rdfs:comment@en = Awards of the Catalan Academy of Cinema +| rdfs:label@ca = Premis Gaudí +| rdfs:domain = Artist +| rdfs:range = Award +| rdfs:subPropertyOf = dul:coparticipatesWith +}}OntologyProperty:GdpPerCapita20211956525172017-10-18T12:02:26Z{{DatatypeProperty +| rdfs:label@en = gross domestic product (GDP) per capita +| rdfs:label@de = Bruttoinlandsprodukt pro Einwohner +| rdfs:comment@en = The nominal gross domestic product of a country per capita. +| rdfs:comment@de = Das nominale Bruttoinlandsprodukt eines Landes pro Einwohner. +| rdfs:domain = PopulatedPlace +| rdfs:range = xsd:float +}}OntologyProperty:GeminiAward202930361112014-07-08T13:27:12Z +{{ObjectProperty +| rdfs:label@en = Gemini Award +| rdfs:domain = Actor +| rdfs:range = Award +| rdfs:subPropertyOf = dul:coparticipatesWith +}}OntologyProperty:Gender2023100537802020-10-20T14:18:21Z +{{ObjectProperty +| labels = + {{label|en|gender}} + {{label|el|φύλο}} + {{label|de|Geschlecht}} + {{label|nl|geslacht}} +| rdfs:subPropertyOf = dul:isClassifiedBy +| owl:equivalentProperty = schema:gender, gnd:gender +}}OntologyProperty:GeneLocation2025049361132014-07-08T13:27:36Z +{{ObjectProperty +| rdfs:label@en = Gene Location +| rdfs:label@ja = 遺伝子座 +| rdfs:domain = Gene +| rdfs:range = GeneLocation +| rdfs:subPropertyOf = dul:hasLocation +}}OntologyProperty:GeneLocationEnd2025054390972015-01-08T23:27:01Z{{DatatypeProperty +| rdfs:label@en = gene location end +| rdfs:label@nl = locus eindpunt +| rdfs:comment@en = the end of the gene +| rdfs:label@ja = 遺伝子座のエンド座標 +| rdfs:domain = GeneLocation +| rdfs:range = xsd:integer +}}OntologyProperty:GeneLocationStart2025053390962015-01-08T23:22:43Z{{DatatypeProperty +| rdfs:label@en = gene location start +| rdfs:label@nl = locus startpunt +| rdfs:label@ja = 遺伝子座のスタート座標 +| rdfs:comment@en = the start of the gene coordinates +| rdfs:domain = GeneLocation +| rdfs:range = xsd:integer +}}OntologyProperty:GeneReviewsId2026113391452015-01-11T15:49:56Z{{DatatypeProperty +| rdfs:label@en = geneReviewsId +| rdfs:domain = Disease +| rdfs:range = xsd:string +}}OntologyProperty:GeneReviewsName2026115391422015-01-11T15:48:29Z{{DatatypeProperty +| rdfs:label@en = geneReviewsName +| rdfs:domain = Disease +| rdfs:range = rdf:langString +}}OntologyProperty:GeneralCouncil2027024274692013-07-12T13:18:17Z{{ObjectProperty +| labels = +{{label|en|general council}} +| rdfs:domain = Agent +| rdfs:range = TermOfOffice +}}OntologyProperty:GeneralManager202931475832015-04-03T09:33:27Z{{ObjectProperty +| rdfs:label@en = general manager +| rdfs:label@de = Hauptgeschäftsführer +| rdfs:domain = SportsTeam +| rdfs:range = Person +| rdfs:subPropertyOf = dul:sameSettingAs +| owl:equivalentProperty = wikidata:P505 +}}OntologyProperty:GenerationUnits2029592355232014-06-28T22:50:15Z{{DatatypeProperty +| labels = +{{label|en|generation units}} +| rdfs:domain = PowerStation +| rdfs:range = rdf:langString +}}OntologyProperty:GenomeDB2025051191572012-07-31T19:25:19Z{{DatatypeProperty +| rdfs:label@en = Genome DB +| rdfs:label@ja = Genome DB +| rdfs:comment@en = the edition of the database used (i.e. hg19) +| rdfs:domain = GeneLocation +| rdfs:range = xsd:string +}}OntologyProperty:Genre202932570462022-03-09T15:56:57Z{{ObjectProperty +| labels = + {{label|en|genre}} + {{label|de|Genre}} + {{label|fr|genre}} + {{label|el|είδος}} + {{label|nl|genre}} + {{label|ja|ジャンル}} + {{label|pl|gatunek}} + {{label|es|género}} +| comments = + {{comment|en|The genre of the thing (music group, film, etc.)}} + {{comment|fr|Genre de chose (groupe musical, film, etc.)}} +| rdfs:range = Genre +| rdfs:domain = owl:Thing +| owl:equivalentProperty = schema:genre, wikidata:P136 +| rdfs:subPropertyOf = dul:isClassifiedBy +}}OntologyProperty:Genus202933361162014-07-08T13:28:01Z +{{ObjectProperty +| labels = + {{label|en|genus}} + {{label|de|Gattung}} + {{label|es|género (biología)}} + {{label|fr|genre (biologie)}} + {{label|nl|geslacht}} + {{label|ja|属_(分類学)}} +| comments = + {{comment|en|A rank in the classification of organisms, below family and above species; a taxon at that rank<ref>https://en.wiktionary.org/wiki/genus</ref>}} + {{comment|fr|Rang taxinomique (ou taxonomique) qui regroupe un ensemble d'espèces ayant en commun plusieurs caractères similaires.<ref>https://fr.wikipedia.org/wiki/Genre_(biologie)</ref>}} +| rdfs:domain = Species +| owl:equivalentProperty = wikidata:P74 +| rdfs:subPropertyOf = dul:specializes +}} +== references == +<references/>OntologyProperty:Geo:lat2021620136492011-06-14T13:45:19Z{{DatatypeProperty +|rdfs:label@en = latitude +|rdfs:domain = gml:_Feature +|rdfs:range = xsd:float +|rdf:type = owl:FunctionalProperty +|owl:equivalentProperty = schema:latitude +}}OntologyProperty:Geo:long2021621136502011-06-14T13:46:26Z{{DatatypeProperty +|rdfs:label@en = longitude +|rdfs:domain = gml:_Feature +|rdfs:range = xsd:float +|rdf:type = owl:FunctionalProperty +| owl:equivalentProperty = schema:longitude +}}OntologyProperty:GeolocDepartment2026787361172014-07-08T13:28:10Z +{{ObjectProperty +| labels = + {{label|en|geolocDepartment}} +| rdfs:domain = Settlement +| rdfs:range = PopulatedPlace +| rdfs:subPropertyOf = dul:isPartOf +}}OntologyProperty:GeolocDual2027158256992013-05-26T16:40:21Z{{DatatypeProperty +| labels = +{{label|en|geolocdual}} +| rdfs:domain = Place +| rdfs:range = xsd:string +}}OntologyProperty:GeologicPeriod2021274567502022-02-28T16:38:35Z{{DatatypeProperty +| rdfs:label@en = geologic period +| rdfs:label@fr = période géologique +| rdfs:domain = Place +| rdfs:range = xsd:string +}}OntologyProperty:Geology202934337442014-04-04T13:53:44Z{{DatatypeProperty +| rdfs:label@en = geology +| rdfs:label@de = Geologie +| rdfs:label@el = γεωλογία +| rdfs:label@fr = géologie +| rdfs:range = xsd:string +}}OntologyProperty:Georss:point2021623281282013-08-29T20:30:25Z{{DatatypeProperty +|rdfs:label@en = point +|rdfs:domain = gml:_Feature +|rdfs:range = xsd:string +|rdf:type = owl:FunctionalProperty +|owl:equivalentProperty = wikidata:P625 +}}OntologyProperty:GiniCoefficient2023325475852015-04-03T09:35:32Z{{DatatypeProperty +| rdfs:label@en = gini coefficient +| rdfs:label@de = Gini-Koeffizient +| rdfs:label@pt = coeficiente de Gini +| rdfs:comment@en = is a measure of the inequality of a distribution. It is commonly used as a measure of inequality of income or wealth. +| rdfs:domain = PopulatedPlace +| rdfs:range = xsd:float +| owl:equivalentProperty = wikidata:P1125 +}}OntologyProperty:GiniCoefficientAsOf2023327122092011-04-15T13:07:51Z{{DatatypeProperty +| rdfs:label@en = gini coefficient as of +| rdfs:label@pt = coeficiente de Gini em +| rdfs:domain = PopulatedPlace +| rdfs:range = xsd:date +}}OntologyProperty:GiniCoefficientCategory2023328122102011-04-15T13:08:39Z{{ObjectProperty +| rdfs:label@en = gini coefficient category +| rdfs:label@pt = categoria do coeficiente de Gini +| rdfs:domain = PopulatedPlace +}}OntologyProperty:GiniCoefficientRanking2023326122082011-04-15T13:05:59Z{{DatatypeProperty +| rdfs:label@en = gini coefficient ranking +| rdfs:label@pt = posição no ranking do coeficiente de Gini +| rdfs:domain = PopulatedPlace +| rdfs:range = xsd:positiveInteger +}}OntologyProperty:GlycemicIndex20211305487652015-08-13T10:16:20Z{{DatatypeProperty +| labels = +{{label|en|glycemic index}} +| rdfs:domain = Food +| rdfs:range = xsd:integer +| comments = +{{comment|en|Indicates a Food's effect on a person's blood glucose (blood sugar) level. Typically ranges between 50 and 100, where 100 represents the standard, an equivalent amount of pure glucose}} +}}OntologyProperty:GnisCode2027287259622013-06-13T15:20:03Z{{DatatypeProperty +| labels = +{{label|en|gnis code}} +| rdfs:domain = PopulatedPlace +| rdfs:range = xsd:string +}}OntologyProperty:Gnl2027274259442013-06-13T13:47:33Z{{DatatypeProperty +| labels = +{{label|en|gnl}} +| rdfs:domain = PopulatedPlace +| rdfs:range = xsd:string +}}OntologyProperty:GoalsInLeague202935514452016-08-16T07:38:18Z{{DatatypeProperty +| labels = +{{label|en|goals in league}} +{{label|de|Tore in der Liga}} +{{label|nl|doelpunten in de competitie}} +{{label|ja|リーグ得点}} +| rdfs:domain = SoccerPlayer +| rdfs:range = xsd:nonNegativeInteger +}}OntologyProperty:GoalsInNationalTeam202936514462016-08-16T07:39:05Z{{DatatypeProperty +| labels = +{{label|en|goals in national team}} +{{label|de|Tore in der Nationalmannschaft}} +{{label|nl|interland doelpunten}} +{{label|ja|代表得点}} +| rdfs:domain = SoccerPlayer +| rdfs:range = xsd:nonNegativeInteger +}}OntologyProperty:GoldMedalDouble2027733500822016-01-04T12:45:11Z{{DatatypeProperty +| labels = +{{label|en|gold medal double}} +| rdfs:domain = TennisPlayer +| rdfs:range = xsd:string +}}OntologyProperty:GoldMedalMixed2027736500832016-01-04T12:45:40Z{{DatatypeProperty +| labels = +{{label|en|gold medal mixed}} +| rdfs:domain = TennisPlayer +| rdfs:range = xsd:string +}}OntologyProperty:GoldMedalSingle2027730500842016-01-04T12:46:06Z{{DatatypeProperty +| labels = +{{label|en|gold medal single}} +| rdfs:domain = TennisPlayer +| rdfs:range = xsd:string +}}OntologyProperty:GoldMedalist2025665361182014-07-08T13:28:18Z +{{ObjectProperty +| rdfs:label@en = gold medalist +| rdfs:label@de = Goldmedaillengewinner +| rdfs:label@pt = medalha de ouro +| rdfs:label@nl = gouden medaille drager +| rdfs:domain = SportsEvent +| rdfs:range = Person +| rdfs:subPropertyOf = Medalist, dul:hasParticipant +}}OntologyProperty:GoldenCalfAward202937361192014-07-08T13:28:27Z +{{ObjectProperty +| rdfs:label@en = Golden Calf Award +| rdfs:domain = Actor +| rdfs:range = Award +| rdfs:subPropertyOf = dul:coparticipatesWith +}}OntologyProperty:GoldenGlobeAward202938361202014-07-08T13:28:34Z{{DisclaimerOntologyProperty}} + + +{{ObjectProperty +| rdfs:label@en = Golden Globe Award +| rdfs:domain = Artist +| rdfs:range = Award +| rdfs:subPropertyOf = dul:coparticipatesWith +}}OntologyProperty:GoldenRaspberryAward202939361212014-07-08T13:28:54Z +{{ObjectProperty +| rdfs:label@en = Golden Raspberry Award +| rdfs:domain = Actor +| rdfs:range = Award +| rdfs:subPropertyOf = dul:coparticipatesWith +}}OntologyProperty:GoverningBody2023224361222014-07-08T13:29:02Z +{{ObjectProperty +| labels = + {{label|en|governing body}} + {{label|nl|bestuursorgaan}} + {{label|de|Verwaltungsgremium}} +| rdfs:domain = Place +| rdfs:range = Organisation +| rdfs:comment@en = Body that owns/operates the Place. +| rdfs:subPropertyOf = dul:coparticipatesWith +}}OntologyProperty:Government202940361232014-07-08T13:29:11Z +{{ObjectProperty +| rdfs:label@en = government +| rdfs:label@de = Regierung +| rdfs:label@fr = gouvernement +| rdfs:domain = Island +| rdfs:subPropertyOf = dul:sameSettingAs +}}OntologyProperty:GovernmentCountry202941361242014-07-08T13:29:19Z +{{ObjectProperty +| rdfs:label@en = government country +| rdfs:domain = Island +| rdfs:range = Country +| rdfs:subPropertyOf = dul:sameSettingAs +}}OntologyProperty:GovernmentElevation20294280482010-05-28T13:11:24Z{{DatatypeProperty +| rdfs:label@en = government elevation +| rdfs:domain = Island +| rdfs:range = Length +}}OntologyProperty:GovernmentMountain202943361252014-07-08T13:29:27Z +{{ObjectProperty +| rdfs:label@en = government mountain +| rdfs:domain = Island +| rdfs:range = Mountain +| rdfs:subPropertyOf = dul:sameSettingAs +}}OntologyProperty:GovernmentPlace202944361262014-07-08T13:29:34Z +{{ObjectProperty +| rdfs:label@en = government place +| rdfs:domain = Island +| rdfs:range = PopulatedPlace +| rdfs:subPropertyOf = dul:sameSettingAs +}}OntologyProperty:GovernmentPosition202945361272014-07-08T13:29:53Z +{{ObjectProperty +| rdfs:label@en = government position +| rdfs:domain = Island +| rdfs:range = geo:SpatialThing +| rdfs:subPropertyOf = dul:sameSettingAs +}}OntologyProperty:GovernmentRegion202946361282014-07-08T13:30:01Z +{{ObjectProperty +| rdfs:label@en = government region +| rdfs:domain = Island +| rdfs:range = PopulatedPlace +| rdfs:subPropertyOf = dul:isPartOf +}}OntologyProperty:GovernmentType202947361292014-07-08T13:30:10Z +{{ObjectProperty +| labels = + {{label|de|Staatsform}} + {{label|en|government type}} + {{label|nl|staatsvorm}} + {{label|pt|tipo de governo}} +| rdfs:comment@en = broadly, the type of structure of its government +| rdfs:range = GovernmentType +| rdfs:subPropertyOf = dul:isClassifiedBy +}}OntologyProperty:Governor2022343361302014-07-08T13:30:18Z +{{ObjectProperty +| rdfs:label@en = governor +| rdfs:label@de = Gouverneur +| rdfs:label@el = κυβερνήτης +| rdfs:label@fr = gouverneur +| rdfs:range = Person +| rdfs:subPropertyOf = dul:coparticipatesWith +}}OntologyProperty:GovernorGeneral2022322361312014-07-08T13:30:28Z +{{ObjectProperty +| rdfs:label@en = governor general +| rdfs:range = Person +| rdfs:subPropertyOf = dul:coparticipatesWith +}}OntologyProperty:Governorate2026959259562013-06-13T14:56:43Z{{DatatypeProperty +| labels = +{{label|en|governorate}} +| rdfs:domain = PopulatedPlace +| rdfs:range = xsd:string +}}OntologyProperty:GoyaAward202948361322014-07-08T13:30:36Z +{{ObjectProperty +| rdfs:label@en = Goya Award +| rdfs:domain = Artist +| rdfs:range = Award +| rdfs:subPropertyOf = dul:coparticipatesWith +}}OntologyProperty:GradName20211875522122017-10-07T15:47:31Z{{DatatypeProperty +| labels = +{{label|en|GARDName}} +{{label|nl|GARDName}} +{{label|de|GARDName}} +{{label|fr|GARDName}} +| rdfs:domain = Disease +| rdfs:range = xsd:string +}}OntologyProperty:GradNum20211874522112017-10-07T15:46:54Z{{DatatypeProperty +| labels = +{{label|en|GARDNum}} +{{label|nl|GARDNum}} +{{label|de|GARDNum}} +{{label|fr|GARDNum}} +| rdfs:domain = Disease +| rdfs:range = xsd:string +}}OntologyProperty:Grades2023132525872017-10-31T08:47:19Z +{{ObjectProperty +| rdfs:label@en = grades +| rdfs:label@el = βαθμοί +| rdfs:domain = School +| rdfs:subPropertyOf = dul:sameSettingAs +}}OntologyProperty:GrammyAward202950361342014-07-08T13:30:52Z +{{ObjectProperty +| rdfs:label@en = Grammy Award +| rdfs:label@de = Grammy Award +| rdfs:domain = Artist +| rdfs:range = Award +| rdfs:subPropertyOf = dul:coparticipatesWith +}}OntologyProperty:Grandsire2026173361352014-07-08T13:31:01Z +{{ObjectProperty +| labels = + {{label|en|grandsire}} +| rdfs:domain = Animal +| rdfs:range = Animal +| rdfs:subPropertyOf = dul:sameSettingAs +}}OntologyProperty:Grave2028087392362015-01-13T21:53:23Z{{DatatypeProperty +| labels = +{{label|en|grave}} +{{label|nl|graf}} +{{label|de|Grab}} +| rdfs:domain = Person +| rdfs:range = xsd:string +}}OntologyProperty:GrayPage202951103582010-11-10T14:13:41Z{{DatatypeProperty +| rdfs:label@en = Gray page +| rdfs:domain = AnatomicalStructure +| rdfs:range = xsd:positiveInteger +| rdfs:comment@en = Refers to the famous 1918 edition of Gray's Anatomy. +}}OntologyProperty:GraySubject202952103592010-11-10T14:14:22Z{{DatatypeProperty +| rdfs:label@en = Gray subject +| rdfs:domain = AnatomicalStructure +| rdfs:range = xsd:positiveInteger +| rdfs:comment@en = Refers to the famous 1918 edition of Gray's Anatomy. +}}OntologyProperty:GreekName20211525522862017-10-08T18:54:16Z{{DatatypeProperty +| rdfs:label@en = name in ancient Greek +| rdfs:label@de = griechische Name +| rdfs:label@nl = oudgriekse naam +| rdfs:domain = owl:Thing +| rdfs:range = xsd:string +| rdfs:subPropertyOf = Name +}}OntologyProperty:GreenLongDistancePisteNumber2027203257532013-06-01T13:25:54Z{{DatatypeProperty +| labels = +{{label|en|green long distance piste number}} +| rdfs:domain = Place +| rdfs:range = xsd:nonNegativeInteger +}}OntologyProperty:GreenSkiPisteNumber2027196257462013-06-01T13:22:22Z{{DatatypeProperty +| labels = +{{label|en|green ski piste number}} +| rdfs:domain = Place +| rdfs:range = xsd:nonNegativeInteger +}}OntologyProperty:GridReference2023443199062012-11-21T18:13:04Z{{DatatypeProperty +| labels = +{{label|en|grid reference}} +{{label|nl|coördinaten}} +| rdfs:domain = Place +| rdfs:range = xsd:string +| rdfs:comment@en = Grid references define locations on maps using Cartesian coordinates. Grid lines on maps define the coordinate system, and are numbered to provide a unique reference to features (http://en.wikipedia.org/wiki/Grid_reference). +}}OntologyProperty:GrindingCapability2026014223672013-01-11T20:54:12Z{{DatatypeProperty +| labels = +{{label|en|grinding capability}} +{{label|nl|maal capaciteit}} +| rdfs:domain = Mill +| rdfs:range = xsd:string +| rdfs:comment@en = grinding capability for Mills +}}OntologyProperty:Gross202953538022020-12-01T17:57:05Z{{DatatypeProperty +| rdfs:label@en = gross +| rdfs:label@da = indtjening +| rdfs:label@el = ακαθάριστα +| rdfs:domain = Film +| rdfs:range = Currency +| owl:equivalentProperty=wikidata:P2139 +}}OntologyProperty:GrossDomesticProduct2022384525162017-10-18T12:00:25Z{{DatatypeProperty +| rdfs:label@en = gross domestic product (GDP) +| rdfs:label@de = Bruttoinlandsprodukt +| rdfs:comment@en = The nominal gross domestic product of a country (not per capita). +| rdfs:comment@de = Das nominale Bruttoinlandsprodukt eines Landes (nicht pro Einwohner). +| rdfs:domain = PopulatedPlace +| rdfs:range = xsd:float +}}OntologyProperty:GrossDomesticProductAsOf2023266121212011-04-13T13:26:22Z{{DatatypeProperty +| rdfs:label@en = gross domestic product as of +| rdfs:label@pt = produto interno bruto em +| rdfs:domain = PopulatedPlace +| rdfs:range = xsd:date +}}OntologyProperty:GrossDomesticProductNominalPerCapita2027927276852013-07-15T15:12:08Z{{ObjectProperty +| rdfs:label@en = gross domestic product nominal per capita +| rdfs:domain = PopulatedPlace +| rdfs:range = GrossDomesticProductPerCapita +}}OntologyProperty:GrossDomesticProductPerPeople2027160257012013-05-26T17:04:09Z{{DatatypeProperty +| labels = +{{label|en|gross domestic product per people}} +| rdfs:domain = Place +| rdfs:range = xsd:string +}}OntologyProperty:GrossDomesticProductPurchasingPowerParityPerCapita2027929276862013-07-15T15:12:58Z{{ObjectProperty +| rdfs:label@en = gross domestic product purchasing power parity per capita +| rdfs:domain = PopulatedPlace +| rdfs:range = GrossDomesticProductPerCapita +}}OntologyProperty:GrossDomesticProductRank2027123256562013-05-26T15:04:15Z{{DatatypeProperty +| labels = +{{label|en|gross domestic product rank}} +| rdfs:domain = Place +| rdfs:range = xsd:string +}}OntologyProperty:Ground202954361362014-07-08T13:31:09Z +{{ObjectProperty +| rdfs:label@en = ground +| rdfs:domain = SoccerClub +| rdfs:range = Place +| rdfs:subPropertyOf = dul:coparticipatesWith +}}OntologyProperty:GroundsForLiquidation2029372357032014-06-30T21:31:36Z{{DatatypeProperty +| rdfs:label@en = grounds for termination of activities +| rdfs:label@nl = reden van opheffing +| rdfs:domain = Company +| rdfs:range = rdf:langString +}}OntologyProperty:GroupCommemorated2026473237312013-02-14T09:53:17Z{{DatatypeProperty +| labels = +{{label|en|group commemorated}} +{{label|nl|groep mensen herdacht}} +| comments = +{{comment|en|Designates the category of people commemorated by a monument }} +{{comment|nl|Aanduiding van de categorie mensen die door dit monument worden herdacht}} +| rdfs:domain = Monument +| rdfs:range = xsd:string +| rdf:type = +| rdfs:subPropertyOf = +| owl:equivalentProperty = +}}OntologyProperty:GrowingGrape202955361372014-07-08T13:31:17Z +{{ObjectProperty +| rdfs:label@en = growing grape +| rdfs:domain = WineRegion +| rdfs:range = Grape +| rdfs:subPropertyOf = dul:isLocationOf +}}OntologyProperty:Guest202956361382014-07-08T13:31:26Z +{{ObjectProperty +| rdfs:label@en = guest +| rdfs:label@de = Gast +| rdfs:label@el = επισκέπτης +| rdfs:domain = TelevisionEpisode +| rdfs:range = Person +| rdfs:subPropertyOf = dul:hasParticipant +}}OntologyProperty:Gun2025624337542014-04-04T13:54:26Z{{ DatatypeProperty + + | rdfs:label@en = aircraft gun +| rdfs:label@de = Flugabwehrkanone + | rdfs:label@el = Πολυβόλο + | rdfs:domain = Aircraft + | rdfs:range = xsd:string + +}}OntologyProperty:GymApparatus2027652337552014-04-04T13:54:29Z{{ObjectProperty +| labels = +{{label|en|gym apparatus}} +{{label|de|Fitnessgerät}} +| rdfs:domain = Person +}}OntologyProperty:HairColor2023293587802022-05-31T14:04:03Z{{DatatypeProperty +| rdfs:label@en = hair color +| rdfs:label@de = Haarfarbe +| rdfs:label@ga = dath na gruaige +| rdfs:label@pl = kolor włosów +| rdfs:label@pt = cor do cabelo +| rdfs:domain = Person +| rdfs:range = xsd:string +| owl:equivalentProperty = wikidata:P1884 +| rdfs:subPropertyOf = +}}OntologyProperty:HairColour2027748568272022-03-01T00:27:05Z{{DatatypeProperty +| labels = +{{label|en|hair colour}} +{{label|fr|couleur des cheveux}} +{{label|de|Haarfarbe}} +| rdfs:domain = Person +| rdfs:range = xsd:string +}}OntologyProperty:Hairs2026813251602013-05-09T10:06:13Z{{DatatypeProperty +| labels = +{{label|en|hairs}} +| rdfs:domain = FictionalCharacter +| rdfs:range = xsd:string +}}OntologyProperty:HallOfFame202957337572014-04-04T13:54:39Z{{DatatypeProperty +| rdfs:label@en = hall of fame +| rdfs:label@de = Ruhmeshalle +| rdfs:domain = IceHockeyPlayer +| rdfs:range = xsd:string +}}OntologyProperty:Hand2027641337582014-04-04T13:54:43Z{{ObjectProperty +| labels = +{{label|en|hand}} +{{label|de|Hand}} +| rdfs:domain = Person +}}OntologyProperty:Handedness2023353475862015-04-03T09:36:22Z{{ObjectProperty +| rdfs:label@en = handedness +| rdfs:label@pt = habilidade com a mao +| rdfs:comment@en = an attribute of humans defined by their unequal distribution of fine motor skill between the left and right hands. +| rdfs:domain = Person +| rdfs:subPropertyOf = dul:hasQuality +| owl:equivalentProperty = wikidata:P552 +}}OntologyProperty:Handisport2027705269862013-07-04T12:20:13Z{{DatatypeProperty +| labels = +{{label|en|handisport}} +| rdfs:domain = Person +| rdfs:range = xsd:string +}}OntologyProperty:HasAbsorbedMunicipality2028174294612014-01-08T21:03:58Z{{ObjectProperty +| labels = +{{label|en|the previous municipality from which this one has been created or enlarged}} +{{label|nl|samengevoegde gemeente}} +| rdfs:domain = Municipality +| rdfs:range = FormerMunicipality +}}OntologyProperty:HasAnnotation20211451454162015-02-23T13:53:30Z'''{{Reserved for DBpedia}}''' + +{{ObjectProperty +| labels= +{{label|en|Indicates an annotation associated with this document}} +| rdfs:domain = Document +| rdfs:range = Annotation +}}OntologyProperty:HasChannel2026800511132016-05-25T08:43:48Z{{ObjectProperty +| rdfs:label@en = has channel +| rdfs:domain = owl:Thing +| rdfs:range = owl:Thing +<!--| rdfs:subPropertyOf = foaf:homepage --> +}}OntologyProperty:HasInput2026764250132013-04-18T10:45:37Z{{ObjectProperty +| rdfs:label@en = has input +| rdfs:domain = owl:Thing +| rdfs:range = owl:Thing +}}OntologyProperty:HasInsidePlace20211091455882015-03-08T13:57:42Z{{ObjectProperty +| rdfs:label@en = has inside place +| rdfs:label@fr = a un lieu intérieur +| rdfs:comment@fr = indique un autre lieu situé à l'intérieur. +| rdfs:comment@en = indicates another place situated inside. +| rdfs:domain = Place +| rdfs:range = Place +| owl:inverseOf = hasOutsidePlace +}}OntologyProperty:HasJunctionWith202958361412014-07-08T13:31:52Z +{{ObjectProperty +| rdfs:label@en = has junction with +| rdfs:label@el = σύνδεση +| rdfs:domain = Canal +| rdfs:range = Canal +| rdfs:subPropertyOf = dul:hasCommonBoundary +}}OntologyProperty:HasKMLData20210106454152015-02-23T13:53:15Z'''{{Reserved for DBpedia}}''' + +{{DatatypeProperty +| labels= +{{label|en|Has KML data associated with it (usually because of [https://commons.wikimedia.org/wiki/Commons:Geocoding/Overlay KML overlays])}} +| rdfs:domain = File +| rdfs:range = xsd:string +}}OntologyProperty:HasNaturalBust2023289121652011-04-15T09:47:05Z{{DatatypeProperty +| rdfs:label@en = has natural bust +| rdfs:label@pt = tem busto natural +| rdfs:domain = Person +| rdfs:range = xsd:string +}}OntologyProperty:HasOutsidePlace20211092537892020-10-23T09:50:39Z{{ObjectProperty +| rdfs:label@en = has outside place +| rdfs:label@fr = a un lieu extérieur +| rdfs:comment@fr = indique un autre lieu situé autour à l'extérieur. +| rdfs:comment@en = indicates another place situated around outside. +| rdfs:domain = Place +| rdfs:range = Place +| owl:inverseOf = hasInsidePlace +}}OntologyProperty:HasSurfaceForm2022441188302012-06-28T13:37:18Z'''{{Reserved for DBpedia}}''' + +{{DatatypeProperty +| rdfs:label@en = surface form, i.e the string after the pipe in internal links: <nowiki>[[resource|string]]</nowiki> +| rdfs:label@el = επιφάνεια από +| comments = +{{comment|en|Reserved for DBpedia. {{Reserved for DBpedia}}}} +| rdfs:range = xsd:string +}}OntologyProperty:HasVariant2022269361422014-07-08T13:32:00Z +{{ObjectProperty +| labels = + {{label|en|variant or variation}} + {{label|de|Variante oder Variation}} + {{label|nl|variant of variatie}} +| rdfs:comment@en = variant or variation, for example all variations of a color +| rdfs:subPropertyOf = dul:isSpecializedBy +}}OntologyProperty:Head202959361432014-07-08T13:32:16Z +{{ObjectProperty +| rdfs:label@en = head +| rdfs:domain = EducationalInstitution +| rdfs:range = Person +| rdfs:subPropertyOf = dul:coparticipatesWith +}}OntologyProperty:HeadAlloy202960361442014-07-08T13:32:24Z +{{ObjectProperty +| rdfs:label@en = head alloy +| rdfs:domain = AutomobileEngine +| rdfs:subPropertyOf = dul:hasConstituent +}}OntologyProperty:HeadChef2022524361452014-07-08T13:32:33Z +{{ObjectProperty +| labels = + {{label|en|head chef}} + {{label|de|Küchenchef}} + {{label|nl|chef-kok}} +| rdfs:domain = Restaurant +| rdfs:range = Person +| rdfs:subPropertyOf = dul:coparticipatesWith +}}OntologyProperty:HeadLabel202961348052014-05-14T11:24:53Z{{DatatypeProperty +| rdfs:label@en = head label +| rdfs:domain = School +| rdfs:range = rdf:langString +}}OntologyProperty:HeadOfFamily2029288337622014-04-04T13:55:00Z{{ObjectProperty +|labels = +{{label|en|family head}} +{{label|de|Familienoberhaupt}} +{{label|nl|hoofd van de familie}} +| rdfs:domain = Family +| rdfs:range = Person +}}OntologyProperty:Headquarter202962478192015-04-28T15:17:00Z{{ObjectProperty +| rdfs:label@en = headquarter +| rdfs:label@el = αρχηγείο +| rdfs:label@de = Firmensitz +| rdfs:label@de = Hauptsitz +| rdfs:label@fr = siège +| rdfs:label@ga = ceanncheathrú +| rdfs:label@pl = siedziba +| rdfs:range = PopulatedPlace +| rdfs:domain = Organisation +| rdfs:subPropertyOf = dul:hasLocation +| owl:equivalentProperty = wikidata:P159 +}}OntologyProperty:Headteacher202964361472014-07-08T13:32:50Z +{{ObjectProperty +| rdfs:label@en = head teacher +| rdfs:label@de = Schulleiter +| rdfs:domain = School +| rdfs:range = Person +| rdfs:subPropertyOf = dul:coparticipatesWith +}}OntologyProperty:Height202965536782020-07-30T21:31:37Z{{DatatypeProperty +| labels = +{{label|en|height}} +{{label|nl|hoogte}} +{{label|da|højde}} +{{label|de|Höhe}} +{{label|sl|višina}} +{{label|el|ύψος}} +{{label|pt|altura}} +{{label|fr|hauteur}} +{{label|ja|身長}} +| rdfs:range = Length +| rdf:type = owl:FunctionalProperty +| owl:equivalentProperty = schema:height, wikidata:P2048 +}}OntologyProperty:HeightAboveAverageTerrain2023085115922011-04-01T13:06:05Z{{DatatypeProperty +| rdfs:label@en = height above average terrain +| rdfs:domain = Broadcaster +| rdfs:range = Length +| rdfs:comment@en = Height above average terrain (HAAT) (or less popularly, EHAAT, Effective Height Above Average Terrain) is used extensively in FM radio and television, as it is actually much more important than effective radiated power (ERP) in determining the range of broadcasts (http://en.wikipedia.org/wiki/Height_above_average_terrain). +}}OntologyProperty:HeightAgainst2027695269712013-07-04T10:03:45Z{{DatatypeProperty +| labels = +{{label|en|height against}} +| rdfs:domain = Athlete +| rdfs:range = xsd:string +}}OntologyProperty:HeightAttack2027696269722013-07-04T10:04:06Z{{DatatypeProperty +| labels = +{{label|en|height attack}} +| rdfs:domain = Athlete +| rdfs:range = xsd:string +}}OntologyProperty:Heir202966361482014-07-08T13:32:59Z +{{ObjectProperty +| rdfs:label@en = heir +| rdfs:label@de = Erbe +| rdfs:comment = somebody who received a legacy +| rdfs:domain = Monarch +| rdfs:range = Person +| rdfs:subPropertyOf = dul:sameSettingAs +}}OntologyProperty:Heisman2027682269542013-07-04T09:27:15Z{{DatatypeProperty +| labels = +{{label|en|heisman}} +| rdfs:domain = Athlete +| rdfs:range = xsd:string +}}OntologyProperty:HeritageRegister2027481361492014-07-08T13:33:08Z +{{ObjectProperty +| labels = + {{label|en|heritage register}} + {{label|fr|inventaire du patrimoine}} +| comments = + {{comment|en|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.<ref>http://en.wikipedia.org/wiki/List_of_heritage_registers</ref>}} + {{comment|fr|inscrit à un inventaires dédiés à la conservation du patrimoine, naturel ou culturel, existants dans le monde.<ref>http://fr.wikipedia.org/wiki/Liste_des_inventaires_du_patrimoine</ref>}} +| rdfs:range = owl:Thing +| rdfs:domain = Place +| rdfs:subPropertyOf = dul:isMemberOf +}} +<references/>OntologyProperty:Hgncid202967191312012-07-31T11:18:32Z{{DatatypeProperty +| rdfs:label@en = HGNCid +| rdfs:label@ja = HGNCid +| rdfs:domain = Biomolecule +| rdfs:range = xsd:string +}}OntologyProperty:Highest20211910522992017-10-08T19:54:45Z{{ObjectProperty +| labels = + {{label|en|highest}} + {{label|de|höchster}} +| comments = + {{comment|en|The highest mountain of a mountain range.}} + {{comment|de|Der höchste Berg eines Gebirges.}} +| rdfs:domain = MountainRange +| rdfs:range = Mountain +}}OntologyProperty:HighestAltitude20211807519292017-02-20T12:02:27Z{{ObjectProperty +| labels = +{{label|en|highest altitude}} +{{label|ja|最高地点標高}} +| rdfs:domain = Place +| rdfs:range = Altitude +| rdfs:subPropertyOf = altitude +}}OntologyProperty:HighestBreak2023538126722011-05-07T13:41:25Z{{DatatypeProperty +| rdfs:label@en = highest break +| rdfs:label@de = Höchstes Break +| rdfs:domain = SnookerPlayer +| rdfs:range = xsd:integer +}}OntologyProperty:HighestBuildingInYear20296980572010-05-28T13:12:38Z{{DatatypeProperty +| rdfs:label@en = highest building in year +| rdfs:domain = Skyscraper +| rdfs:range = xsd:date +}}OntologyProperty:HighestMountain202971361502014-07-08T13:33:26Z +{{ObjectProperty +| rdfs:label@en = highest mountain +| rdfs:label@de = höchster Berg +| rdfs:range = Mountain +| rdfs:subPropertyOf = dul:isLocationOf +}}OntologyProperty:HighestPlace202972361512014-07-08T13:33:35Z +{{ObjectProperty +| rdfs:label@en = highest place +| rdfs:label@de = höchster Platz +| rdfs:range = PopulatedPlace +| rdfs:subPropertyOf = dul:isLocationOf +}}OntologyProperty:HighestPoint2026917475872015-04-03T09:37:27Z{{ObjectProperty +| labels = + {{label|en|highest point}} + {{label|el|υψηλότερο σημείο}} + {{label|de|höchste Erhebung}} +| rdfs:domain = Settlement +| rdfs:range = Place +| rdfs:subPropertyOf = dul:sameSettingAs +| owl:equivalentProperty = wikidata:P610 +}}OntologyProperty:HighestPointIsland2027066337972014-04-04T14:06:30Z{{DatatypeProperty +| labels = +{{label|en|highest point of the island}} +{{label|de|höchste Erhebung der Insel}} +| rdfs:domain = Island +| rdfs:range = xsd:string +}}OntologyProperty:HighestPosition202973361532014-07-08T13:33:51Z +{{ObjectProperty +| rdfs:label@en = highest position +| rdfs:label@de = Höchststand +| rdfs:range = geo:SpatialThing +| rdfs:subPropertyOf = dul:isLocationOf +}}OntologyProperty:HighestRank2023536126702011-05-07T13:35:27Z{{DatatypeProperty +| rdfs:label@en = highest rank +| rdfs:label@de = höchster Ranglistenplatz +| rdfs:domain = SnookerPlayer +| rdfs:range = xsd:integer +}}OntologyProperty:HighestRegion202974361542014-07-08T13:33:59Z +{{ObjectProperty +| labels = + {{label|en|highest region}} + {{label|nl|hoogste regio}} +| rdfs:domain = Island +| rdfs:range = PopulatedPlace +| rdfs:subPropertyOf = dul:isLocationOf +}}OntologyProperty:HighestState202975361552014-07-08T13:34:08Z +{{ObjectProperty +| rdfs:label@en = highest state +| rdfs:domain = Island +| rdfs:range = PopulatedPlace +| rdfs:subPropertyOf = dul:isLocationOf +}}OntologyProperty:Highschool202976361562014-07-08T13:34:16Z +{{ObjectProperty +| rdfs:label@en = highschool +| rdfs:label@de = Gymnasium +| rdfs:range = School +| rdfs:subPropertyOf = dul:coparticipatesWith +}}OntologyProperty:HighwaySystem2022110475882015-04-03T09:38:17Z{{ObjectProperty +| rdfs:label@en = highway system +| rdfs:comment@en = the highway system that a route is part of +| rdfs:domain = Road +| rdfs:subPropertyOf = dul:isPartOf +| owl:equivalentProperty = wikidata:P16 +}}OntologyProperty:HipSize2022485455012015-03-04T13:35:08Z{{DatatypeProperty + |rdfs:label@en=hip size + |rdfs:label@de = Hüftumfang + |rdfs:label@nl = heupomvang + |rdfs:label@ja = ヒップ +|label@bg = размер ханш + |rdfs:domain=Person + |rdfs:range=Length +}}OntologyProperty:HistoricalMap2027140337702014-04-04T13:55:30Z{{DatatypeProperty +| labels = +{{label|en|historical map}} +{{label|de|historische Karte}} +{{label|el|ιστορικός χάρτης}} +| rdfs:domain = Place +| rdfs:range = xsd:string +}}OntologyProperty:HistoricalName2027139348662014-05-15T05:21:05Z{{DatatypeProperty +| labels = +{{label|en|historical name}} +{{label|de|historischer Name}} +| rdfs:domain = Place +| rdfs:range = rdf:langString +}}OntologyProperty:HistoricalRegion2027314567482022-02-28T16:31:59Z{{DatatypeProperty +| labels = + {{label|en|historical region}} + {{label|fr|région historique}} + {{label|de|historische Region}} +| rdfs:domain = PopulatedPlace +| rdfs:range = xsd:string +}}OntologyProperty:Hof2027664269632013-07-04T09:31:54Z{{DatatypeProperty +| labels = +{{label|en|hof}} +| rdfs:domain = Athlete +| rdfs:range = xsd:string +}}OntologyProperty:Homage2027582570182022-03-09T12:54:47Z{{DatatypeProperty +| labels = + {{label|en|homage}} + {{label|fr|page d'accueil}} + {{label|de|Huldigung}} + {{label|nl|eerbetoon}} +| rdfs:domain = Person +| rdfs:range = xsd:string +}}OntologyProperty:HomeArena2022754361582014-07-08T13:54:02Z +{{ObjectProperty +| rdfs:label@en = home arena +| rdfs:label@de = Heimarena +| rdfs:range = Arena +| rdfs:subPropertyOf = dul:sameSettingAs +}}OntologyProperty:HomeColourHexCode2026406235382013-01-23T23:55:48Z{{DatatypeProperty +| labels = +{{label|en|colour hex code of home jersey or its parts}} +{{label|de|Farben Hex Code des Heimtrikots oder Teile dieses}} +| rdfs:domain = owl:Thing +| rdfs:range = xsd:string +| comments = +{{comment|en|A colour represented by its hex code (e.g.: #FF0000 or #40E0D0).}} +| rdfs:subPropertyOf = colourHexCode +}}OntologyProperty:HomeStadium2022292361592014-07-08T13:54:21Z +{{ObjectProperty +| rdfs:label@en = home stadium +| rdfs:label@de = Heimstadion +| rdfs:range = Stadium +| rdfs:subPropertyOf = dul:sameSettingAs +}}OntologyProperty:Homeport2023108475892015-04-03T09:39:29Z{{ObjectProperty +| rdfs:label@en = homeport +| rdfs:label@pl = port macierzysty +| rdfs:domain = Ship +| rdfs:range = Place +| rdfs:subPropertyOf = dul:hasLocation +| owl:equivalentProperty = wikidata:P504 +}}OntologyProperty:Hometown202977361612014-07-08T13:54:37Z +{{ObjectProperty +| rdfs:label@en = home town +| rdfs:label@de = Heimatort +| rdfs:domain = Agent +| rdfs:range = Settlement +| rdfs:subPropertyOf = dul:hasLocation +}}OntologyProperty:Honours202978486942015-08-10T10:17:49Z{{ObjectProperty +| rdfs:label@en = honours +| rdfs:label@de = Ehrungen +| rdfs:label@el = διακρίσεις +| rdfs:label@nl = eerbewijzen +| rdfs:comment@en = Honours bestowed upon a Person, Organization, RaceHorse, etc +| rdfs:subPropertyOf = dul:sameSettingAs +}}OntologyProperty:HopmanCup2027742270242013-07-04T13:16:42Z{{DatatypeProperty +| labels = +{{label|en|hopman cup}} +| rdfs:domain = Athlete +| rdfs:range = xsd:string +}}OntologyProperty:HorseRidingDiscipline2027862526442017-11-03T16:03:47Z{{ObjectProperty +| labels = +{{label|en|horse riding discipline}} +| rdfs:domain = Athlete +| rdfs:range = Sport +}}OntologyProperty:House202979574352022-04-17T21:08:59Z{{ObjectProperty +| labels = + {{label|en|house}} + {{label|fr|maison}} + {{label|el|σπίτι}} +| rdfs:domain = Legislature +| rdfs:range = Legislature +| rdfs:subPropertyOf = dul:sameSettingAs +}}OntologyProperty:HraState2027247259032013-06-12T14:38:32Z{{DatatypeProperty +| labels = +{{label|en|hra state}} +| rdfs:domain = PopulatedPlace +| rdfs:range = xsd:string +}}OntologyProperty:HsvCoordinateHue202238084112010-05-28T14:00:40Z{{DatatypeProperty +| rdfs:label@en = hue coordinate in the HSV colour space +| rdfs:domain = Colour +| rdfs:range = xsd:integer +}}OntologyProperty:HsvCoordinateSaturation202238284132010-05-28T14:00:55Z{{DatatypeProperty +| rdfs:label@en = saturation coordinate in the HSV colour space +| rdfs:domain = Colour +| rdfs:range = xsd:integer +}}OntologyProperty:HsvCoordinateValue202238184122010-05-28T14:00:48Z{{DatatypeProperty +| rdfs:label@en = value coordinate in the HSV colour space +| rdfs:domain = Colour +| rdfs:range = xsd:integer +}}OntologyProperty:HubAirport202980361642014-07-08T13:55:25Z +{{ObjectProperty +| rdfs:label@en = hub airport +| rdfs:domain = Airline +| rdfs:range = Airport +| rdfs:subPropertyOf = dul:hasLocation +}}OntologyProperty:HumanDevelopmentIndex2023263458552015-03-14T21:37:12Z{{DatatypeProperty +| rdfs:label@en = Human Development Index (HDI) +| rdfs:label@de = Index für menschliche Entwicklung (HDI) +| rdfs:label@pt = Índice de Desenvolvimento Humano (IDH) +| rdfs:comment@en = a composite statistic used to rank countries by level of "human development" +| rdfs:domain = PopulatedPlace +| rdfs:range = xsd:float +}}OntologyProperty:HumanDevelopmentIndexAsOf2023265121202011-04-13T13:20:45Z{{DatatypeProperty +| rdfs:label@en = human development index as of +| rdfs:label@pt = Índice de desenvolvimento humano em +| rdfs:domain = PopulatedPlace +| rdfs:range = xsd:date +}}OntologyProperty:HumanDevelopmentIndexRank2027125256582013-05-26T15:05:36Z{{DatatypeProperty +| labels = +{{label|en|human development index rank}} +| rdfs:domain = Place +| rdfs:range = xsd:string +}}OntologyProperty:HumanDevelopmentIndexRankingCategory2023329361652014-07-08T13:55:28Z +{{ObjectProperty +| rdfs:label@en = human development index (HDI) category +| rdfs:label@pt = categoria do indice de desenvolvimento humano (IDH) +| rdfs:domain = PopulatedPlace +| rdfs:subPropertyOf = dul:isClassifiedBy +}}OntologyProperty:Hybrid2026252361662014-07-08T13:55:32Z +{{ObjectProperty +| labels = + {{label|en|hybrid}} +| comments = + {{comment|en|Plants from which another plant (or cultivar) has been developed from}} +| rdfs:domain = Plant +| rdfs:range = Plant +| rdfs:subPropertyOf = dul:isSpecializedBy +}}OntologyProperty:IafdId2023298121742011-04-15T09:57:16Z{{DatatypeProperty +| rdfs:label@en = iafd id +| rdfs:label@el = iafd id +| rdfs:label@pt = código no iafd +| rdfs:domain = Film +| rdfs:range = xsd:string +}}OntologyProperty:IataAirlineCode2026471287252013-11-13T08:31:30Z{{DatatypeProperty +| labels = +{{label|en|IATA code}} +| comments = +{{comment|en|IATA designation for airline companies }} +| rdfs:domain = Airline +| rdfs:range = xsd:string +| rdf:type = +| rdfs:subPropertyOf = +| owl:equivalentProperty = wikidata:P229 +}}OntologyProperty:IataLocationIdentifier2022157287272013-11-13T08:36:20Z{{DatatypeProperty +| rdfs:label@en = IATA Location Identifier +| rdfs:label@el = ΙΑΤΑ +| rdfs:domain = Infrastructure +| rdfs:range = xsd:string +| rdfs:comment@en = An IATA airport code, also known as IATA location identifier, IATA station code or simply a location identifier, is a three-letter code designating many airports around the world, defined by the International Air Transport Association (IATA) (http://en.wikipedia.org/wiki/International_Air_Transport_Association_airport_code). +| owl:equivalentProperty = wikidata:P238 +}}OntologyProperty:IbdbId2023830133622011-06-06T11:47:20Z{{DatatypeProperty +| rdfs:label@en = IBDB ID +| rdfs:domain = Play +| rdfs:range = xsd:string +| rdfs:comment@en = The Internet Broadway Database ID (IBDB ID) from ibdb.com. +}}OntologyProperty:IcaoAirlineCode2026472287262013-11-13T08:33:47Z{{DatatypeProperty +| labels = +{{label|en|ICAO code}} +| comments = +{{comment|en|ICAO designation for airline companies }} +| rdfs:domain = Airline +| rdfs:range = xsd:string +| rdf:type = +| rdfs:subPropertyOf = +| owl:equivalentProperty = wikidata:P230 +}}OntologyProperty:IcaoLocationIdentifier2022158287282013-11-13T08:37:32Z{{DatatypeProperty +| rdfs:label@en = ICAO Location Identifier +| rdfs:label@el = ΙΚΑΟ +| rdfs:domain = Airport +| rdfs:range = xsd:string +| owl:equivalentProperty = wikidata:P239 +}}OntologyProperty:Icd120211200475222015-04-02T18:06:08Z{{DatatypeProperty +| labels = +{{label|en|ICD1}} +{{label|de|ICD1}} +{{label|nl|ICD1}} +| rdfs:domain = Disease +| rdfs:range = xsd:string +}}OntologyProperty:Icd10202981475902015-04-03T09:40:24Z{{DatatypeProperty +| labels = +{{label|en|ICD10}} +{{label|nl|ICD10}} +| rdfs:domain = Disease +| rdfs:range = xsd:string +| owl:equivalentProperty = wikidata:P494 +}}OntologyProperty:Icd9202982475912015-04-03T09:41:10Z{{DatatypeProperty +| labels = +{{label|en|ICD9}} +{{label|de|ICD9}} +{{label|nl|ICD9}} +| rdfs:domain = Disease +| rdfs:range = xsd:string +| owl:equivalentProperty = wikidata:P493 +}}OntologyProperty:Icdo202983237012013-02-11T09:20:29Z{{DatatypeProperty +| labels = +{{label|en|ICDO}} +{{label|nl|ICDO}} +| rdfs:domain = Disease +| rdfs:range = xsd:string +}}OntologyProperty:IconographicAttributes20210993433302015-02-06T14:51:14Z{{DatatypeProperty +| rdfs:label@en = iconographic attributes +| rdfs:domain = Saint +| rdfs:range = rdf:langString +| rdfs:comment@en = Standard iconographic elements used when depicting a Saint: pontifical, episcopal, insignia, martyrdom instruments +}}OntologyProperty:Id202984537132020-09-06T12:15:08Z{{DatatypeProperty +| rdfs:label@en = id +| rdfs:domain = WorldHeritageSite +| rdfs:range = xsd:string +| owl:equivalentProperty = bag:identificatiecode +}}OntologyProperty:IdAllocine20211070513172016-06-30T10:13:40Z{{DatatypeProperty +| labels = +{{label|en|Allocine ID}} +{{label|fr|ID Allocine }} +| rdfs:domain = Film +| rdfs:range = xsd:string +| rdfs:subPropertyOf = +| rdfs:comment@en = ID of a film on Allocine +| rdfs:comment@fr = ID d'un film sur Allocine +}}OntologyProperty:IdNumber2027769270602013-07-05T08:01:52Z{{DatatypeProperty +| labels = +{{label|en|id number}} +| rdfs:domain = Person +| rdfs:range = xsd:nonNegativeInteger +}}OntologyProperty:IdentificationSymbol20298580622010-05-28T13:13:15Z{{DatatypeProperty +| rdfs:label@en = identification symbol +| rdfs:domain = MilitaryUnit +| rdfs:range = xsd:string +}}OntologyProperty:Ideology2023259475922015-04-03T09:41:55Z{{ObjectProperty +| labels = + {{label|en|ideology}} + {{label|el|ιδεολογία}} + {{label|nl|ideologie}} + {{label|de|Ideologie}} + {{label|pt|ideologia}} +| rdfs:domain = Agent +| rdfs:range = Ideology +| rdfs:subPropertyOf = dul:conceptualizes +| owl:equivalentProperty = wikidata:P1142 +}}OntologyProperty:IftaAward202986361682014-07-08T13:55:53Z +{{ObjectProperty +| rdfs:label@en = IFTA Award +| rdfs:domain = Actor +| rdfs:range = Award +| rdfs:subPropertyOf = dul:coparticipatesWith +}}OntologyProperty:IihfHof2027794270952013-07-05T13:17:31Z{{DatatypeProperty +| labels = +{{label|en|lihf hof}} +| rdfs:domain = Person +| rdfs:range = xsd:string +}}OntologyProperty:Illiteracy2023807337932014-04-04T14:01:21Z{{DatatypeProperty +| rdfs:label@en = illiteracy +| rdfs:label@de = Analphabetismus +| rdfs:label@pt = analfabetismo +| rdfs:domain = PopulatedPlace +| rdfs:range = xsd:float +}}OntologyProperty:Illustrator202987476142015-04-03T10:06:59Z{{ObjectProperty +| labels = + {{label|en|illustrator}} + {{label|de|Illustrator}} + {{label|nl|illustrator}} + {{label|fr|illustrateur}} + {{label|nl|illustrator}} +| rdfs:domain = WrittenWork +| rdfs:range = Person +| owl:equivalentProperty = schema:illustrator, wikidata:P110 +| rdfs:comment@en = Illustrator (where used throughout and a major feature) +| rdfs:subPropertyOf = dul:coparticipatesWith +}}OntologyProperty:ImageSize2025194571122022-03-12T20:52:58Z{{DatatypeProperty +|labels = + {{label|en|image size (px)}} + {{label|nl|afbeeldingsgrootte (px)}} + {{label|de|Bildgröße (px)}} + {{label|el|μέγεθος εικόνας (px1)}} + {{label|ja|イメージサイズ (px2)}} + {{label|fr|taille de l'image (px)}} + {{label|es|tamaño de la imagen (px)}} +| comments = + {{comment|en|the image size expressed in pixels}} + {{comment|fr|taille de l'image en pixels}} +| rdfs:domain = owl:Thing +| rdfs:range = xsd:integer +}}OntologyProperty:ImdbId202988528632018-02-13T08:37:57Z{{DatatypeProperty +| labels = +{{label|en|IMDB id}} +{{label|nl|IMDB id}} +{{label|el|imdb id}} +{{label|ja|IMDb id}} +|comments= +{{comment|en|International Movie Database ID. Applies to Films, Actors, etc}} +| rdfs:range = xsd:string +| owl:equivalentProperty = wikidata:P345 +| rdfs:subPropertyOf = code +}}OntologyProperty:ImpactFactor2023748132042011-05-25T16:49:27Z{{DatatypeProperty +| rdfs:label@en = impact factor +| rdfs:label@de = Impact Factor +| rdfs:domain = AcademicJournal +| rdfs:range = xsd:double +| rdfs:comment@en = The impact factor, often abbreviated IF, is a measure reflecting the average number of citations to articles published in science and social science journals. +| rdfs:comment@de = 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öffentlichten Artikel zitieren. Je höher der Impact Factor, desto angesehener ist eine Fachzeitschrift. +}}OntologyProperty:ImpactFactorAsOf2023747132032011-05-25T16:49:13Z{{DatatypeProperty +| rdfs:label@en = impact factor as of +| rdfs:label@de = Impact Factor ist von +| rdfs:domain = AcademicJournal +| rdfs:range = xsd:gYear +| rdfs:comment@en = Census year of the imapct factor. +| rdfs:comment@de = Erhebungsjahr des Impact Factors. +}}OntologyProperty:ImportantStation20211893522562017-10-08T09:53:06Z{{ObjectProperty +| labels = + {{label|en|important station}} + {{label|fr|important nœud d'échanges}} + {{label|de|wichtiger Verkehrsknotenpunkt}} +| rdfs:domain = PublicTransitSystem +| rdfs:range = Station +| comments = +{{comment|en|Destinations, depots, junctions, major stops, hubs...}} +}}OntologyProperty:ImposedDanseCompetition2028074282372013-09-04T09:16:58Z{{DatatypeProperty +| labels = +{{label|en|imposed danse competition}} +| rdfs:domain = Person +| rdfs:range = xsd:string +}}OntologyProperty:ImposedDanseScore2028073282362013-09-04T09:15:47Z{{DatatypeProperty +| labels = +{{label|en|imposed danse score}} +| rdfs:domain = Person +| rdfs:range = xsd:string +}}OntologyProperty:InCemetery2029350342962014-04-08T09:38:17Z{{ObjectProperty +| labels = +{{label|en|in cemetery}} +{{label|nl|op kerkhof}} +| rdfs:domain = GraveMonument +| rdfs:range = Cemetery +}}OntologyProperty:Inchi2023005319282014-02-15T10:30:33Z{{DatatypeProperty +| rdfs:label@en = The IUPAC International Chemical Identifier +| rdfs:label@de = Internationale chemische Bezeichnung der IUPAC +| rdfs:label@nl = IUPAC internationale chemische identifier +| rdfs:domain = ChemicalCompound +| rdfs:range = xsd:string +}}OntologyProperty:Inclination20298980642010-05-28T13:13:30Z{{DatatypeProperty +| rdfs:label@en = inclination +| rdfs:domain = Spacecraft +| rdfs:range = xsd:float +}}OntologyProperty:Income2027292337802014-04-04T13:56:16Z{{DatatypeProperty +| labels = +{{label|en|income}} +{{label|de|Einkommen}} +| rdfs:domain = PopulatedPlace +| rdfs:range = xsd:string +}}OntologyProperty:Incumbent2022356361702014-07-08T13:55:58Z +{{ObjectProperty +| labels = + {{label|en|incumbent}} + {{label|de|Amtsinhaber}} + {{label|nl|plaatsbekleder}} +| rdfs:range = Person +| rdfs:subPropertyOf = dul:sameSettingAs +}}OntologyProperty:IndividualisedGnd2027367537702020-10-15T11:56:05Z{{DatatypeProperty +| rdfs:label@en = individualised GND number +| rdfs:label@de = Gemeinsame Normdatei +| rdfs:comment@en = 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. +| rdfs:range = xsd:string +| owl:equivalentProperty = wikidata:P227, gnd:gndIdentifier +| rdfs:subPropertyOf = code +}}OntologyProperty:IndividualisedPnd2024031181532012-05-05T19:48:53Z{{DatatypeProperty +| rdfs:label@en = individualised PND number +| rdfs:label@de = Personennamendatei +| rdfs:comment@en = 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. +| rdfs:domain = Person +| rdfs:range = xsd:nonNegativeInteger +}}OntologyProperty:Industry202990475932015-04-03T09:43:56Z{{ObjectProperty +| rdfs:label@en = industry +| rdfs:label@de = Industrie +| rdfs:label@fr = industrie +| rdfs:domain = Company +| rdfs:subPropertyOf = dul:isClassifiedBy +| owl:equivalentProperty = wikidata:P452 +}}OntologyProperty:InfantMortality2023806570192022-03-09T12:55:40Z{{DatatypeProperty +| labels = + {{label|en|infant mortality}} + {{label|fr|mortalité infantile}} + {{label|de|Säuglingssterblichkeit}} + {{label|pt|mortalidade infantil}} +| rdfs:domain = PopulatedPlace +| rdfs:range = xsd:float +}}OntologyProperty:Inflow202991524572017-10-15T20:46:33Z{{ObjectProperty +| rdfs:label@en = inflow +| rdfs:label@de = Zufluss +| rdfs:label@el = εισροή +| rdfs:domain = BodyOfWater +| rdfs:range = BodyOfWater +| rdfs:subPropertyOf = dul:hasCommonBoundary +| owl:equivalentProperty = wikidata:P200 +}}OntologyProperty:Influenced202992486272015-08-06T14:10:08Z{{ObjectProperty +| rdfs:label@en = influenced +| rdfs:label@de = beeinflusst +| rdfs:label@fr = a influencé +| rdfs:label@el = επηρέασε +| rdfs:subPropertyOf = dul:coparticipatesWith +| rdfs:comment@en = The subject influenced the object. inverseOf influencedBy. Subject and object can be Persons or Works (eg ProgrammingLanguage) +}}OntologyProperty:InfluencedBy202993486282015-08-06T14:10:41Z{{ObjectProperty +| labels = + {{label|en|influenced by}} + {{label|de|beeinflusst durch}} + {{label|fr|influencé par}} + {{label|el|επιρροές}} + {{label|nl|beïnvloed door}} +| rdfs:subPropertyOf = dul:sameSettingAs +| rdfs:comment@en = The subject was influenced by the object. inverseOf influenced. Subject and object can be Persons or Works (eg ProgrammingLanguage) +}}OntologyProperty:Information2027174537732020-10-19T16:27:29Z{{DatatypeProperty +| labels = +{{label|en|information}} +{{label|de|Informationen}} +| rdfs:domain = Place +| rdfs:range = xsd:string +| owl:equivalentProperty=gn:wikipediaArticle +}}OntologyProperty:InformationName2027175257242013-06-01T10:18:48Z{{DatatypeProperty +| labels = +{{label|en|information name}} +| rdfs:domain = Place +| rdfs:range = xsd:string +}}OntologyProperty:Ingredient2023932574372022-04-17T21:14:18Z{{ObjectProperty +| labels = + {{label|en|ingredient}} + {{label|fr|ingrédient}} + {{label|de|Zutat}} +| rdfs:domain = Food +| rdfs:range = owl:Thing +| comments = + {{comment|en|Main ingredient used to prepare a specific Food or Beverage. For strings use ingredientName, for objects use ingredient.}} + {{comment|fr|Ingrédient principal utilisé pour préparer une alimentation spécifique ou une boisson. Pour les chaînes de caractères, utiliser ingredientName, pour les objets utiliser ingredient.}} +| rdfs:subPropertyOf = dul:hasPart +}}OntologyProperty:IngredientName20211298487522015-08-13T09:52:02Z{{DatatypeProperty +| rdfs:label@en = ingredient name (literal) +| rdfs:domain = Food +| rdfs:range = xsd:string +| rdfs:comment@en = Main ingredient used to prepare a specific Food or Beverage. For strings use ingredientName, for objects use ingredient. +| rdfs:subPropertyOf = dul:hasPart +}}OntologyProperty:InitiallyUsedFor2027480337882014-04-04T13:56:55Z{{DatatypeProperty +| labels = +{{label|en|initally used for}} +{{label|de|anfänglich verwendet}} +{{label|fr|usage initial}} +{{label|es|uso inicial}} +| rdfs:domain = ArchitecturalStructure +| rdfs:range = xsd:string +| rdfs:comment@en = Initial use of the architectural structure. +}} + +See also [[OntologyProperty:CurrentlyUsedFor]]OntologyProperty:Inn2022928108472011-01-19T21:14:32Z{{DatatypeProperty +| rdfs:label@en = INN +| rdfs:label@fr = DCI +| rdfs:domain = ChemicalCompound +| rdfs:comment@en = International Nonproprietary Name given to a pharmaceutical substance +| rdfs:range = xsd:string +}}OntologyProperty:Innervates202994361762014-07-08T13:56:17Z +{{ObjectProperty +| rdfs:label@en = innervates +| rdfs:domain = Nerve +| rdfs:range = AnatomicalStructure +| rdfs:subPropertyOf = dul:hasCommonBoundary +}}OntologyProperty:Inscription20210402393452015-01-16T20:21:23Z{{DatatypeProperty +| labels= +{{label|en|inscription}} +| comments= +{{comment|en|Text of an inscription on the object}} +| rdfs:domain = owl:Thing +| rdfs:range = xsd:string +}}OntologyProperty:InseeCode2021689483712015-06-16T06:06:36Z{{DatatypeProperty +| labels = +{{label|en|INSEE code}} +{{label|nl|INSEE-code}} +| rdfs:subPropertyOf = codeSettlement +| rdfs:domain = Settlement +| rdfs:range = xsd:string +| rdfs:comment@en = numerical indexing code used by the French National Institute for Statistics and Economic Studies (INSEE) to identify various entities +| owl:equivalentProperty = wikidata:P374 +}}OntologyProperty:InstalledCapacity2029586527752018-01-23T15:02:05Z{{DatatypeProperty +| rdfs:label@en = installed capacity +| rdfs:domain = PowerStation +| rdfs:range = Power +| rdf:type = owl:FunctionalProperty +| owl:equivalentProperty = wikidata:P2109 +}}OntologyProperty:Institution2026135466112015-03-20T06:39:44Z{{ObjectProperty +| labels = + {{label|en|institution}} + {{label|de|Institution}} + {{label|nl|institutie}} +| rdfs:domain = +| rdfs:range = Organisation +| rdfs:subPropertyOf = dul:isMemberOf +}}OntologyProperty:Instrument202995475952015-04-03T09:47:06Z{{ObjectProperty +| labels = + {{label|en|instrument}} + {{label|de|Instrument}} + {{label|el|όργανο}} + {{label|nl|instrument}} +| rdfs:range = Instrument +| rdfs:domain = Artist +| rdfs:subPropertyOf = dul:coparticipatesWith +| owl:equivalentProperty = wikidata:P1303 +}}OntologyProperty:Intercommunality2021688361792014-07-08T13:56:26Z +{{ObjectProperty +| rdfs:label@en = intercommunality +| rdfs:range = PopulatedPlace +| rdfs:subPropertyOf = dul:isPartOf +}}OntologyProperty:Interest202996337912014-04-04T13:57:06Z{{DatatypeProperty +| rdfs:label@en = interest +| rdfs:label@de = Interesse +| rdfs:label@el = ενδιαφέρον +| rdfs:domain = SiteOfSpecialScientificInterest +| rdfs:range = xsd:string +}}OntologyProperty:InternationalAffiliation2023341361802014-07-08T13:56:30Z +{{ObjectProperty +| rdfs:label@en = international affiliation +| rdfs:label@pt = afiliacao internacional +| rdfs:domain = PoliticalParty +| rdfs:subPropertyOf = dul:isMemberOf +}}OntologyProperty:InternationalPhonePrefix2026925338672014-04-04T14:42:37Z{{DatatypeProperty +| labels = +{{label|en|international phone prefix}} +{{label|de|internationale Vorwahl}} +| rdfs:domain = PopulatedPlace +| rdfs:range = xsd:string +}}OntologyProperty:InternationalPhonePrefixLabel2026926253912013-05-25T10:52:23Z{{DatatypeProperty +| labels = +{{label|en|international phone prefix label}} +| rdfs:domain = PopulatedPlace +| rdfs:range = xsd:string +}}OntologyProperty:Internationally202997338022014-04-04T14:23:47Z{{DatatypeProperty +| rdfs:label@en = internationally +| rdfs:label@de = international +| rdfs:domain = Company +| rdfs:range = xsd:boolean +}}OntologyProperty:Introduced202998525542017-10-26T10:30:07Z{{DatatypeProperty +| rdfs:label@en = introduced +| rdfs:label@de = eingeführt +| rdfs:range = xsd:date +}}OntologyProperty:IntroductionDate202999338042014-04-04T14:23:55Z{{DatatypeProperty +| rdfs:label@en = introduction date +| rdfs:label@de = Einführungsdatum +| rdfs:domain = MeanOfTransportation +| rdfs:range = xsd:date +}}OntologyProperty:IobdbId2023833133652011-06-06T12:59:32Z{{DatatypeProperty +| rdfs:label@en = IOBDB ID +| rdfs:domain = Play +| rdfs:range = xsd:string +| rdfs:comment@en = Lortel Archives Internet Off-Broadway database "show id" from lortel.org. +}}OntologyProperty:IsCityState2026877492242015-10-15T07:21:04Z{{DatatypeProperty +| labels = +{{label|en|is a city state}} +{{label|de|ist ein Stadtstaat}} +| rdfs:domain = Settlement +| rdfs:range = xsd:string +}}OntologyProperty:IsHandicappedAccessible2023246568672022-03-01T20:42:20Z{{DatatypeProperty +| labels = + {{label|en|is handicapped accessible}} + {{label|fr|accessible aux handicapés}} + {{label|de|ist rollstuhlgerecht}} +| rdfs:domain = Station +| rdfs:range = xsd:boolean +| comments = + {{comment|en|True if the station is handicapped accessible.}} + {{comment|fr|Vrai si la station est accessible aux handicapés.}} +}}OntologyProperty:IsMinorRevision20214273591282022-12-01T17:37:10Z{{DatatypeProperty +| labels = +{{label|en|Is a minor revision }} +{{label|fr|Est une révision mineur}} +|comments = +| comments = + {{comment|en|This property is used by DBpedia History}} + {{comment|fr|Proprieté utilisée dans le cadre de DBpedia Historique}} +| rdfs:domain = Prov:Revision +| rdfs:range = xsd:boolean +}}OntologyProperty:IsPartOf2021003536632020-07-30T21:16:54Z{{ObjectProperty +| rdfs:label@en = is part of +| rdfs:label@es = es parte de +| rdfs:label@de = ist ein Teil von +| rdfs:label@pl = jest częścią +| rdfs:label@fr = fait partie de +| rdfs:domain = owl:Thing +| rdfs:range = owl:Thing +| rdfs:subPropertyOf = dul:isPartOf +| owl:equivalentProperty = schema:isPartOf, wikidata:P361 +}}OntologyProperty:IsPartOfAnatomicalStructure2023364396152015-01-20T15:01:58Z{{ObjectProperty +| rdfs:label@en = is part of anatomical structure +| rdfs:label@es = es parte de una estructura anatómica +| rdfs:label@de = ist ein Teil von anatomischer Struktur +| rdfs:domain = Brain +| rdfs:range = AnatomicalStructure +| rdfs:subPropertyOf = isPartOf, dul:isPartOf +}}OntologyProperty:IsPartOfMilitaryConflict2023365361832014-07-08T13:56:41Z +{{ObjectProperty +| rdfs:label@en = is part of military conflict +| rdfs:label@de = ist Teil des militärischen Konflikts +| rdfs:domain = MilitaryConflict +| rdfs:range = MilitaryConflict +| rdfs:subPropertyOf = isPartOf, dul:isPartOf +}}OntologyProperty:IsPartOfName2023338486612015-08-06T16:38:12Z{{DatatypeProperty +| rdfs:label@en = is part of (literal) +| rdfs:label@de = ist Teil +| rdfs:range = xsd:string +| rdfs:comment@en = Name of another thing that this thing is part of. Use for infobox "part of" properties given as text; for objects use isPartOf +}}OntologyProperty:IsPartOfWineRegion2021263361842014-07-08T13:56:45Z +{{ObjectProperty +| rdfs:label@en = is part of wine region +| rdfs:label@de = ist ein Teil der Weinregion +| rdfs:domain = WineRegion +| rdfs:range = WineRegion +| rdfs:subPropertyOf = isPartOf, dul:isPartOf +}}OntologyProperty:IsPeerReviewed2023740131962011-05-25T16:45:03Z{{DatatypeProperty +| rdfs:label@en = is peer reviewed +| rdfs:domain = AcademicJournal +| rdfs:range = xsd:boolean +| rdfs:comment@en = In academia peer review is often used to determine an academic papers suitability for publication. +}}OntologyProperty:IsRouteStop20211080455712015-03-08T13:04:56Z{{ObjectProperty +| labels = + {{label|en|is route stop}} + {{label|fr|est un arrêt}} +| rdfs:domain = Place +| rdfs:range = RouteStop +| rdfs:comment@en = indicate a place is a stop on a road. +| rdfs:comment@fr = indique qu'un lieu est un arrêt sur une route. + +}}OntologyProperty:Isbn2021001462652015-03-18T15:15:07Z{{DatatypeProperty +| labels = +{{label|en|ISBN}} +{{label|nl|ISBN}} +| rdfs:domain = WrittenWork +| rdfs:range = xsd:string +| owl:equivalentProperty = schema:isbn, wikidata:P212, wikidata:P957 +| rdfs:comment@en = The International Standard Book Number (ISBN) is a unique numeric commercial book identifier based upon the 9-digit Standard Book Numbering (SBN) code. +}}OntologyProperty:Isil2022937475962015-04-03T09:48:06Z{{DatatypeProperty +| rdfs:label@en = International Standard Identifier for Libraries and Related Organizations (ISIL) +| rdfs:domain = Library +| rdfs:range = xsd:string +| owl:equivalentProperty = wikidata:P791 +| rdfs:comment@en = An ISIL should internationally identify a library. At least German libraries (DE-*) can be mapped to http://lobid.org/ +}}OntologyProperty:Island2021002503292016-02-05T08:23:02Z{{ObjectProperty +| rdfs:label@en = island +| rdfs:label@de = Insel +| rdfs:label@el = νησιά +| rdfs:domain = BodyOfWater +| rdfs:range = Island +| rdfs:subPropertyOf = dul:isLocationOf +}}OntologyProperty:IsniId2028420528772018-02-13T10:44:36Z{{DatatypeProperty +| labels = +{{label|en|ISNI Id}} +| comments = +{{comment|en|ISNI is a method for uniquely identifying the public identities of contributors to media content such as books, TV programmes, and newspaper articles.}} +| rdfs:range = xsd:string +| owl:equivalentProperty = wikidata:P213 +| rdfs:subPropertyOf = code +}}OntologyProperty:Iso31661Code2025679456342015-03-12T09:21:01Z{{DatatypeProperty +| rdfs:label@en = ISO 3166-1 code +| rdfs:comment@en = defines codes for the names of countries, dependent territories, and special areas of geographical interest<ref name="iso31661Code">http://en.wikipedia.org/wiki/ISO_3166-1</ref> +| rdfs:domain = Place +| rdfs:range = xsd:string +| owl:equivalentProperty = wikidata:P297, wikidata:P298, wikidata:P299 +}} +==References== +<references/>OntologyProperty:Iso6391Code2023701503462016-02-12T20:57:19Z{{DatatypeProperty +| labels = + {{label|en|ISO 639-1 code}} + {{label|nl|ISO 639-1 code}} + {{label|pl|kod ISO 639-1}} +| rdfs:domain = Language +| rdfs:range = xsd:string +| rdfs:subPropertyOf = LanguageCode <!-- dul:isClassifiedBy -- defined as object property, see https://github.com/dbpedia/ontology-tracker/issues/9 --> +| owl:equivalentProperty = wikidata:P218 +}}OntologyProperty:Iso6392Code2023700503472016-02-12T20:58:02Z{{DatatypeProperty +| labels = + {{label|en|ISO 639-2 code}} + {{label|nl|ISO 639-2 code}} + {{label|pl|kod ISO 639-2}} +| rdfs:domain = Language +| rdfs:range = xsd:string +| rdfs:subPropertyOf = LanguageCode <!-- dul:isClassifiedBy -- defined as object property, see https://github.com/dbpedia/ontology-tracker/issues/9 --> +| owl:equivalentProperty = wikidata:P219 +}}OntologyProperty:Iso6393Code2023693503482016-02-12T20:59:06Z{{DatatypeProperty +| labels = + {{label|en|ISO 639-3 code}} + {{label|nl|ISO 639-3 code}} + {{label|pl|kod ISO 639-3}} +| rdfs:domain = Language +| rdfs:range = xsd:string +| rdfs:subPropertyOf = LanguageCode <!-- dul:isClassifiedBy -- defined as object property, see https://github.com/dbpedia/ontology-tracker/issues/9 --> +| owl:equivalentProperty = wikidata:P220 +}}OntologyProperty:IsoCode2026868338112014-04-04T14:24:23Z{{DatatypeProperty +| labels = +{{label|en|iso code of a place}} +{{label|de|ISO-Code eines Ortes}} +| rdfs:domain = Place +| rdfs:range = xsd:string +}}OntologyProperty:IsoCodeRegion2023181503532016-02-12T21:08:31Z +{{DatatypeProperty +| labels = + {{label|en|ISO region code}} + {{label|de|ISO-Ländercode}} + {{label|nl|ISO regiocode}} +| rdfs:domain = Settlement +| rdfs:range = xsd:string +| rdfs:subPropertyOf = <!-- dul:isPartOf -- defined as object property, see https://github.com/dbpedia/ontology-tracker/issues/9 --> +}}OntologyProperty:IssDockings2021004103542010-11-10T14:09:54Z{{DatatypeProperty +| rdfs:label@en = iss dockings +| rdfs:domain = SpaceShuttle +| rdfs:range = xsd:nonNegativeInteger +}}OntologyProperty:Issn2021005478302015-04-28T16:12:47Z{{DatatypeProperty +| labels = +{{label|en|issn}} +{{label|nl|ISSN}} +{{label|el|issn}} +{{label|de|ISSN}} +{{label|ga|ISSN}} +{{label|pl|ISSN}} +| rdfs:comment@en = International Standard Serial Number (ISSN) +| rdfs:domain = PeriodicalLiterature +| rdfs:range = xsd:string +| owl:equivalentProperty = http://purl.org/ontology/bibo/issn, wikidata:P236 +}}OntologyProperty:Ist2027245259012013-06-12T14:37:59Z{{DatatypeProperty +| labels = +{{label|en|ist}} +| rdfs:domain = PopulatedPlace +| rdfs:range = xsd:string +}}OntologyProperty:Istat2027005483722015-06-16T06:10:49Z{{DatatypeProperty +| labels = +{{label|en|code istat}} +| rdfs:domain = PopulatedPlace +| rdfs:range = xsd:string +| rdfs:comment@en = Indexing code used for Italian municipalities +| owl:equivalentProperty = wikidata:P635 +}}OntologyProperty:ItalicTitle20213822570992022-03-12T13:25:40Z{{DatatypeProperty +| labels = + {{label|en|italic title}} + {{label|fr|titre en italique}} +| comments = + {{comment|en|Controls whether the title of the article is shown in italics.}} + {{comment|fr|Indique si le titre de l'article doit être en italique. Valeur oui / non }} +| rdfs:domain = MusicalWork +| rdfs:range = xsd:string +}}OntologyProperty:IthfDate2027711269922013-07-04T12:24:40Z{{DatatypeProperty +| labels = +{{label|en|ithf date}} +| rdfs:domain = Athlete +| rdfs:range = xsd:string +}}OntologyProperty:IucnCategory2021006222032013-01-10T22:08:59Z{{DatatypeProperty +| labels = +{{label|en|iucn category}} +{{label|nl|IUCN categorie}} +| rdfs:domain = ProtectedArea +| rdfs:range = xsd:string +}}OntologyProperty:IupacName2021007348252014-05-15T05:05:57Z{{DatatypeProperty +| rdfs:label@en = IUPAC name +| rdfs:label@ja = IUPAC名 +| rdfs:domain = Drug +| rdfs:range = rdf:langString +}}OntologyProperty:Jockey2026175526482017-11-03T16:23:44Z{{ObjectProperty +| labels = + {{label|en|jockey}} + {{label|de|Jockey}} +| rdfs:domain = Horse +| rdfs:range = Jockey +| rdfs:subPropertyOf = dul:coparticipatesWith +}}OntologyProperty:JointCommunity2021008361912014-07-08T13:57:08Z +{{ObjectProperty +| rdfs:label@en = joint community +| rdfs:domain = Settlement +| rdfs:range = PopulatedPlace +| rdfs:subPropertyOf = dul:isPartOf +}}OntologyProperty:Jstor2023750132092011-05-25T16:52:32Z{{DatatypeProperty +| rdfs:label@en = JSTOR +| rdfs:domain = AcademicJournal +| rdfs:range = xsd:string +| rdfs:comment@en = JSTOR number (short for Journal Storage) is a United States-based online system number for archiving academic journals. +}}OntologyProperty:Judge2026607361922014-07-08T13:57:11Z +{{ObjectProperty +| labels = + {{label|en|judge}} + {{label|de|Richter}} + {{label|nl|rechter}} +| comments = + {{comment|en|leading judge }} +| rdfs:domain = LegalCase +| rdfs:range = Judge +| rdf:type = | rdfs:subPropertyOf = personFunction +| owl:equivalentProperty = +| rdfs:subPropertyOf = dul:isSettingFor +}}OntologyProperty:JuniorSeason2027666273342013-07-10T12:45:22Z{{ObjectProperty +| rdfs:label@en = junior season +| rdfs:domain = Agent +}}OntologyProperty:JuniorTeam2027667269352013-07-03T14:42:36Z{{ObjectProperty +| labels = +{{label|en|junior team}} +| rdfs:range = SportsTeam +| rdfs:domain = Athlete +}}OntologyProperty:JuniorYearsEndYear2027873273322013-07-10T12:43:13Z{{DatatypeProperty +| labels = +{{label|en|junior years end year}} +| rdfs:domain = Person +| rdfs:range = xsd:gYear +}}OntologyProperty:JuniorYearsStartYear2027872273312013-07-10T12:42:34Z{{DatatypeProperty +| labels = +{{label|en|junior years start year}} +| rdfs:domain = Person +| rdfs:range = xsd:gYear +}}OntologyProperty:JureLanguage2027034528582018-02-09T13:55:09Z{{ObjectProperty +| labels = +{{label|en|jure language}} +| rdfs:range = Language +| owl:equivalentProperty = +}}OntologyProperty:Jurisdiction2023729361932014-07-08T13:57:14Z +{{ObjectProperty +| rdfs:label@en = jurisdiction +| rdfs:label@de = Zuständigkeit +| rdfs:domain = owl:Thing +| rdfs:range = owl:Thing +| rdfs:comment@en = 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. +| rdfs:comment@de = Die Zuständigkeit oder Kompetenz legt im öffentlichen Recht fest, welche Behörde bzw. welches Gericht im Einzelfall rechtlich zu hoheitlichem Handeln ermächtigt und verpflichtet ist. +| rdfs:subPropertyOf = dul:isPartOf +}}OntologyProperty:Jutsu2027768270582013-07-05T08:00:48Z{{DatatypeProperty +| labels = +{{label|en|jutsu}} +| rdfs:domain = Person +| rdfs:range = xsd:string +}}OntologyProperty:Kegg20211926524052017-10-15T14:13:50Z{{DatatypeProperty +| rdfs:label@en = KEGG +| rdfs:comment@en = Bioinformatics resource for deciphering the genome. +| rdfs:domain = ChemicalSubstance +| rdfs:range = xsd:string +}}OntologyProperty:KeyPerson2022350361942014-07-08T13:57:17Z +{{ObjectProperty +| rdfs:label@en = key person +| rdfs:label@de = Schlüsselperson +| rdfs:range = Person +| rdfs:subPropertyOf = dul:sameSettingAs +}}OntologyProperty:KhlDraft2027785270842013-07-05T13:08:21Z{{DatatypeProperty +| rdfs:label@en = khl draft year +| rdfs:domain = IceHockeyPlayer +| rdfs:range = xsd:string +}}OntologyProperty:KhlDraftTeam2027783270822013-07-05T13:07:20Z{{ObjectProperty +| rdfs:label@en = khl draft team +| rdfs:domain = IceHockeyPlayer +| rdfs:range = HockeyTeam +}}OntologyProperty:KhlDraftYear2027784270832013-07-05T13:07:54Z{{DatatypeProperty +| rdfs:label@en = khl draft year +| rdfs:domain = IceHockeyPlayer +| rdfs:range = xsd:string +}}OntologyProperty:KilledBy2027837338162014-04-04T14:24:43Z{{DatatypeProperty +| labels = +{{label|en|killed by}} +{{label|de|getötet von}} +| rdfs:domain = Person +| rdfs:range = xsd:string +| owl:equivalentProperty = wikidata:P157 +}}OntologyProperty:KinOfLanguage2027117256502013-05-26T14:55:30Z{{DatatypeProperty +| labels = +{{label|en|kindOfLanguage}} +| rdfs:range = xsd:string +}}OntologyProperty:KindOfCoordinate2027157256982013-05-26T16:40:01Z{{DatatypeProperty +| labels = +{{label|en|kind of coordinate}} +| rdfs:domain = Place +| rdfs:range = xsd:string +}}OntologyProperty:KindOfCriminal2028024491512015-10-13T10:05:46Z{{DatatypeProperty +| labels = +{{label|en|kind of criminal}} +| rdfs:domain = Criminal +| rdfs:range = xsd:string +}}OntologyProperty:KindOfCriminalAction2028025501882016-01-04T21:19:12Z{{DatatypeProperty +| labels = +{{label|en|kind of criminal action}} +| rdfs:domain = Criminal +| rdfs:range = xsd:string +}}OntologyProperty:KindOfRock2027111338172014-04-04T14:24:47Z{{DatatypeProperty +| labels = +{{label|en|kind of rock}} +{{label|de|Art von Gestein}} +| rdfs:domain = Place +| rdfs:range = xsd:string +}}OntologyProperty:Kingdom2021009361952014-07-08T13:57:21Z +{{ObjectProperty +| labels = + {{label|en|kingdom}} + {{label|de|reich}} + {{label|it|regno}} + {{label|el|βασίλειο}} + {{label|fr|règne (biologie)}} + {{label|nl|rijk}} + {{label|ja|界_(分類学)}} +| comments = + {{comment|en|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.<ref>https://en.wikipedia.org/wiki/Kingdom_%28biology%29</ref>}} + {{comment|fr|Le règne (du latin « regnum ») est, dans les taxinomies classiques, le plus haut niveau de classification des êtres vivants, en raison de leurs caractères communs.<ref>https://fr.wikipedia.org/wiki/R%C3%A8gne_%28biologie%29</ref>}} +| rdfs:domain = Species +| owl:equivalentProperty = wikidata:P75 +| rdfs:subPropertyOf = dul:specializes +}} +== references == +<references/>OntologyProperty:KnownFor2021010572242022-03-24T19:21:52Z{{ObjectProperty +| labels = + {{label|en|known for}} + {{label|nl|bekend om}} + {{label|de|bekannt für}} + {{label|el|γνωστός_για}} + {{label|fr|connu pour}} + {{label|es|conocido por}} + {{label|pl|znany z powodu}} +| rdfs:domain = owl:Thing +| rdfs:subPropertyOf = dul:isDescribedBy +| comments = + {{comment|en|Work, historic event, etc that the subject is known for. Applies to Person, Organization, ConcentrationCamp, etc}} + {{comment|fr|Oeuvre, événement historique, etc pour lequel le sujet est connu. S'applique aux personnes, organisations, camps de concentration, etc}} +}}OntologyProperty:Ko2027587268152013-07-02T10:53:29Z{{DatatypeProperty +| labels = +{{label|en|ko}} +| rdfs:domain = Boxer +| rdfs:range = xsd:nonNegativeInteger +}}OntologyProperty:LahHof2027793270942013-07-05T13:17:11Z{{DatatypeProperty +| labels = +{{label|en|lah hof}} +| rdfs:domain = Person +| rdfs:range = xsd:string +}}OntologyProperty:Lake2027052361972014-07-08T13:57:27Z +{{ObjectProperty +| labels = + {{label|en|vastest lake}} + {{label|el|λίμνη}} +| rdfs:domain = Place +| rdfs:range = BodyOfWater +| rdfs:subPropertyOf = dul:nearTo +}}OntologyProperty:Land2027901274272013-07-12T10:18:05Z{{ObjectProperty | labels = {{label|en|land}} | rdfs:domain = Place | rdfs:range = Place }}OntologyProperty:LandArea2027038255372013-05-25T22:51:51Z{{DatatypeProperty +| labels = +{{label|en|area of a land}} +| rdfs:domain = Place +| rdfs:range = Area +| owl:equivalentProperty = area +}}OntologyProperty:LandPercentage2027049255502013-05-25T23:20:47Z{{DatatypeProperty +| labels = +{{label|en|land percentage of a place}} +| rdfs:domain = Place +| rdfs:range = xsd:float +}}OntologyProperty:LandRegistryCode2026854492162015-10-15T07:15:20Z{{DatatypeProperty +| labels = +{{label|en|land registry code}} +| rdfs:domain = Settlement +| rdfs:range = xsd:string +}}OntologyProperty:Landeshauptmann2026869492202015-10-15T07:19:53Z{{ObjectProperty +| labels = + {{label|en|landeshauptmann}} +| rdfs:domain = AdministrativeRegion +| rdfs:range = Person +| rdfs:subPropertyOf = dul:sameSettingAs +}}OntologyProperty:LandingDate2021012475982015-04-03T09:51:07Z{{DatatypeProperty +| rdfs:label@en = landing date +| rdfs:label@de = Landedatum +| rdfs:domain = SpaceMission +| rdfs:range = xsd:date +| owl:equivalentProperty = wikidata:P620 +}}OntologyProperty:LandingSite2021013338192014-04-04T14:24:54Z{{DatatypeProperty +| rdfs:label@en = landing site +| rdfs:label@de = Landeplatz +| rdfs:domain = SpaceMission +| rdfs:range = xsd:string +}}OntologyProperty:LandingVehicle2021014361992014-07-08T13:57:35Z +{{ObjectProperty +| rdfs:label@en = landing vehicle +| rdfs:domain = SpaceMission +| rdfs:range = SpaceMission +| rdfs:subPropertyOf = dul:hasParticipant +}}OntologyProperty:Landskap2026914253762013-05-24T22:25:35Z{{DatatypeProperty +| labels = +{{label|en|norwegian landskap}} +| rdfs:domain = NorwaySettlement +| rdfs:range = xsd:string +}}OntologyProperty:Landtag2026871492212015-10-15T07:20:23Z{{DatatypeProperty +| labels = +{{label|en|austrian land tag}} +| rdfs:domain = AdministrativeRegion +| rdfs:range = xsd:string +}}OntologyProperty:LandtagMandate2026872492222015-10-15T07:20:28Z{{DatatypeProperty +| labels = +{{label|en|austrian land tag mandate}} +| rdfs:domain = AdministrativeRegion +| rdfs:range = xsd:string +}}OntologyProperty:Language2021015536962020-09-04T15:21:30Z{{ObjectProperty +| labels = + {{label|en|language}} + {{label|gl|lingua}} + {{label|nl|taal}} + {{label|pt|língua}} + {{label|de|Sprache}} + {{label|fr|langue}} + {{label|el|γλώσσα}} + {{label|ga|teanga}} + {{label|pl|język}} +| rdfs:comment@en = Use dc:language for literal, language for object +| rdfs:domain = owl:Thing +| rdfs:range = Language +| rdfs:subPropertyOf = dul:coparticipatesWith +| owl:equivalentProperty = schema:inLanguage, ceo:taal +}}OntologyProperty:LanguageCode2023704503542016-02-12T21:09:02Z +{{DatatypeProperty +| rdfs:label@en = language code +| rdfs:label@de = Sprachcode +| rdfs:label@pl = kod językowy +| rdfs:domain = Language +| rdfs:range = xsd:string +| rdfs:subPropertyOf = <!-- dul:sameSettingAs -- defined as object property, see https://github.com/dbpedia/ontology-tracker/issues/9 --> +}}OntologyProperty:LanguageFamily2023703362022014-07-08T13:57:45Z +{{ObjectProperty +| labels = + {{label|en|family}} + {{label|de|Familie}} + {{label|nl|taalfamilie}} + {{label|pl|rodzina}} +| rdfs:domain = Language +| rdfs:subPropertyOf = dul:specializes +}}OntologyProperty:LanguageRegulator2024140362032014-07-08T13:57:47Z +{{ObjectProperty +| labels = + {{label|en|language regulator or academy}} + {{label|nl|taal instituut}} +| rdfs:range = Language +| rdfs:subPropertyOf = dul:sameSettingAs +}}OntologyProperty:LargestCity2021017362042014-07-08T13:57:50Z +{{ObjectProperty +| rdfs:label@en = largest city +| rdfs:label@de = größte Stadt +| rdfs:domain = PopulatedPlace +| rdfs:range = PopulatedPlace +| rdfs:subPropertyOf = dul:hasPart +}}OntologyProperty:LargestMetro2021018362062014-07-08T13:58:04Z +{{ObjectProperty +| rdfs:label@en = largest metro +| rdfs:domain = Settlement +| rdfs:range = PopulatedPlace +| rdfs:subPropertyOf = dul:isLocationOf +}}OntologyProperty:LargestSettlement2021019362072014-07-08T13:58:07Z +{{ObjectProperty +| labels = + {{label|en|largest settlement}} + {{label|de|größte Siedlung}} + {{label|nl|grootste plaats}} +| rdfs:domain = PopulatedPlace +| rdfs:range = PopulatedPlace +| rdfs:subPropertyOf = dul:hasPart +}}OntologyProperty:LargestWin202102180782010-05-28T13:15:25Z{{DatatypeProperty +| rdfs:label@en = largest win +| rdfs:domain = SoccerClub +| rdfs:range = xsd:string +}}OntologyProperty:LastAirDate2023051114162011-03-31T12:30:16Z{{DatatypeProperty +| rdfs:label@en = last air date +| rdfs:label@de = Sendeschluss +| rdfs:domain = Broadcaster +| rdfs:range = xsd:date +| rdfs:comment@en = The date on which the broadcaster made its last broadcast. +}}OntologyProperty:LastAppearance2023099362082014-07-08T13:58:09Z +{{ObjectProperty +| rdfs:label@en = last appearance +| rdfs:domain = FictionalCharacter +| rdfs:subPropertyOf = dul:isParticipantIn +}}OntologyProperty:LastElectionDate2023527126582011-05-06T10:45:46Z{{DatatypeProperty + |rdfs:label@en = last election date + |rdfs:comment@en = The last election date for the house. + |rdfs:domain = Legislature + |rdfs:range = xsd:date +}}OntologyProperty:LastFamilyMember2029291338252014-04-04T14:25:26Z{{ObjectProperty +|labels = +{{label|en|last family member}} +{{label|de|letztes Familienmitglied}} +{{label|nl|laatste drager familienaam}} +| rdfs:domain = Family +| rdfs:range = Person +}}OntologyProperty:LastFlight2021023362092014-07-08T13:58:13Z +{{ObjectProperty +| rdfs:label@en = last flight +| rdfs:label@de = letzter Flug +| rdfs:domain = SpaceShuttle +| rdfs:range = SpaceMission +| rdfs:subPropertyOf = dul:isParticipantIn +}}OntologyProperty:LastFlightEndDate202102480792010-05-28T13:15:33Z{{DatatypeProperty +| rdfs:label@en = last flight end date +| rdfs:domain = SpaceShuttle +| rdfs:range = xsd:date +}}OntologyProperty:LastFlightStartDate202102580802010-05-28T13:15:40Z{{DatatypeProperty +| rdfs:label@en = last flight start date +| rdfs:domain = SpaceShuttle +| rdfs:range = xsd:date +}}OntologyProperty:LastLaunch2021026338272014-04-04T14:25:36Z{{DatatypeProperty +| rdfs:label@en = last launch +| rdfs:label@de = letzter Start +| rdfs:domain = YearInSpaceflight +| rdfs:range = xsd:date +}}OntologyProperty:LastLaunchDate2021027338282014-04-04T14:25:43Z{{DatatypeProperty +| rdfs:label@en = last launch date +| rdfs:label@de = letzter Starttermin +| rdfs:domain = LaunchPad +| rdfs:range = xsd:date +}}OntologyProperty:LastLaunchRocket2021028362102014-07-08T13:58:16Z +{{ObjectProperty +| rdfs:label@en = last launch rocket +| rdfs:domain = LaunchPad +| rdfs:range = Rocket +| rdfs:subPropertyOf = dul:coparticipatesWith +}}OntologyProperty:LastPosition2021029231512013-01-18T11:06:35Z{{DatatypeProperty +| rdfs:label@en = last position +| rdfs:label@el = τελευταία θέση +| rdfs:domain = FormulaOneRacer +| rdfs:range = xsd:positiveInteger +}}OntologyProperty:LastProMatch2027707567982022-02-28T21:46:03Z{{DatatypeProperty +| labels = +{{label|en|last pro match}} +{{label|fr|dernier match professionnel}} +{{label|de|erstes Profispiel}} +| rdfs:domain = Athlete +| rdfs:range = xsd:string +}}OntologyProperty:LastPublicationDate2026182338302014-04-04T14:25:53Z{{DatatypeProperty +| rdfs:label@en = last publication date +| rdfs:label@de = letztes Veröffentlichungsdatum +| rdfs:domain = WrittenWork +| rdfs:range = xsd:date +| rdfs:comment@en = Date of the last publication. +}}OntologyProperty:LastRace2021030362112014-07-08T13:58:19Z +{{ObjectProperty +| rdfs:label@en = last race +| rdfs:label@de = letztes Rennen +| rdfs:label@el = τελευταίος αγώνας +| rdfs:domain = FormulaOneRacer +| rdfs:range = GrandPrix +| rdfs:subPropertyOf = dul:isParticipantIn +}}OntologyProperty:LastSeason2021031112332011-03-30T07:04:27Z{{DatatypeProperty +| rdfs:label@en = last season +| rdfs:label@el = Προηγούμενη Περίοδος +| rdfs:domain = FormulaOneRacer +| rdfs:range = xsd:date +}}OntologyProperty:LastWin2021032362122014-07-08T13:58:23Z +{{ObjectProperty +| rdfs:label@en = last win +| rdfs:label@de = letzter Sieg +| rdfs:label@el = τελευταία νίκη +| rdfs:domain = FormulaOneRacer +| rdfs:range = GrandPrix +| rdfs:subPropertyOf = dul:isParticipantIn +}}OntologyProperty:Laterality2027694269732013-07-04T10:04:34Z{{DatatypeProperty +| labels = +{{label|en|laterality}} +| rdfs:domain = Athlete +| rdfs:range = xsd:string +}}OntologyProperty:LatestElection20211486498312015-12-17T16:05:25Z{{DatatypeProperty +| labels = +{{label|en|date of latest election}} +| rdfs:domain = PopulatedPlace +| rdfs:range = xsd:date +}}OntologyProperty:LatestPreviewDate202103480852010-05-28T13:16:24Z{{DatatypeProperty +| rdfs:label@en = latest preview date +| rdfs:domain = Software +| rdfs:range = xsd:date +}}OntologyProperty:LatestPreviewVersion202103580862010-05-28T13:16:33Z{{DatatypeProperty +| rdfs:label@en = latest preview version +| rdfs:domain = Software +| rdfs:range = xsd:string +}}OntologyProperty:LatestReleaseDate2021036251352013-04-25T13:20:21Z{{DatatypeProperty +| rdfs:label@en = latest release date +| rdfs:label@fr = date de dernière version +| rdfs:domain = Software +| rdf:type = owl:FunctionalProperty +| rdfs:range = xsd:date +}}OntologyProperty:LatestReleaseVersion202103780882010-05-28T13:16:51Z{{DatatypeProperty +| rdfs:label@en = latest release version +| rdfs:domain = Software +| rdfs:range = xsd:string +}}OntologyProperty:LatinName20211524522872017-10-08T18:54:41Z{{DatatypeProperty +| rdfs:label@en = name in latin +| rdfs:label@de = lateinische Name +| rdfs:label@nl = latijnse naam +| rdfs:domain = owl:Thing +| rdfs:range = xsd:string +| rdfs:subPropertyOf = Name +}}OntologyProperty:Launch202103880892010-05-28T13:17:00Z{{DatatypeProperty +| rdfs:label@en = launch +| rdfs:domain = Spacecraft +| rdfs:range = xsd:date +}}OntologyProperty:LaunchDate2021039476012015-04-03T09:54:00Z{{DatatypeProperty +| rdfs:label@en = launch date +| rdfs:label@de = Starttermin +| rdfs:domain = SpaceMission +| rdfs:range = xsd:date +| owl:equivalentProperty = wikidata:P619 +}}OntologyProperty:LaunchPad2021041362132014-07-08T13:58:26Z +{{ObjectProperty +| rdfs:label@en = launch pad +| rdfs:label@de = Startrampe +| rdfs:domain = SpaceMission +| rdfs:range = LaunchPad +| rdfs:subPropertyOf = dul:hasParticipant +}}OntologyProperty:LaunchSite2021042476022015-04-03T09:55:16Z{{ObjectProperty +| rdfs:label@en = launch site +| rdfs:label@de = Startplatz +| rdfs:domain = SpaceMission +| rdfs:range = Building +| rdfs:subPropertyOf = dul:hasParticipant +| owl:equivalentProperty = wikidata:P448 +}}OntologyProperty:LaunchVehicle2021043476032015-04-03T09:56:25Z{{ObjectProperty +| rdfs:label@en = launch vehicle +| rdfs:domain = SpaceMission +| rdfs:subPropertyOf = dul:hasParticipant +| owl:equivalentProperty = wikidata:P375 +}}OntologyProperty:Launches2021040103502010-11-10T14:07:06Z{{DatatypeProperty +| rdfs:label@en = launches +| rdfs:domain = LaunchPad +| rdfs:range = xsd:nonNegativeInteger +}}OntologyProperty:LaurenceOlivierAward2021044362162014-07-08T13:58:37Z +{{ObjectProperty +| rdfs:label@en = Laurence Olivier Award +| rdfs:domain = Actor +| rdfs:range = Award +| rdfs:subPropertyOf = dul:coparticipatesWith +}}OntologyProperty:LawCountry2027150256912013-05-26T16:12:29Z{{DatatypeProperty +| labels = +{{label|en|law country}} +| rdfs:domain = Place +| rdfs:range = xsd:string +}}OntologyProperty:LayingDown2023107116522011-04-02T10:58:28Z{{DatatypeProperty +| rdfs:label@en=laying down +| rdfs:domain = Ship +| rdfs:range = xsd:date +}}OntologyProperty:Layout2021045362172014-07-08T13:58:40Z +{{ObjectProperty +| rdfs:label@en = layout +| rdfs:domain = Automobile +| rdfs:subPropertyOf = dul:hasQuality +}}OntologyProperty:Lcc2021720132072011-05-25T16:51:22Z{{DatatypeProperty +| rdfs:label@en = LCC +| rdfs:domain = WrittenWork +| rdfs:range = xsd:string +| rdfs:comment@en = The Library of Congress Classification (LCC) is a system of library classification developed by the Library of Congress. +}}OntologyProperty:Lccn2023749132082011-05-25T16:52:03Z{{DatatypeProperty +| rdfs:label@en = LCCN +| rdfs:domain = WrittenWork +| rdfs:range = xsd:string +| rdfs:comment@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. +}}OntologyProperty:LccnId2028419528782018-02-13T10:46:18Z{{DatatypeProperty +| labels = +{{label|en|LCCN Id}} +| comments = +{{comment|en|Library of Congress Control Number}} +| rdfs:range = xsd:string +| owl:equivalentProperty = wikidata:P244 +| rdfs:subPropertyOf = code +}}OntologyProperty:LchfDraft2027786270872013-07-05T13:09:45Z{{DatatypeProperty +| rdfs:label@en = lchf draft year +| rdfs:domain = IceHockeyPlayer +| rdfs:range = xsd:string +}}OntologyProperty:LchfDraftTeam2027788520062017-03-22T20:19:57Z{{ObjectProperty +| rdfs:label@en = lchf draft team +| rdfs:domain = IceHockeyPlayer +| rdfs:range = HockeyTeam +}}OntologyProperty:LchfDraftYear2027787270862013-07-05T13:09:27Z{{DatatypeProperty +| rdfs:label@en = lchf draft year +| rdfs:domain = IceHockeyPlayer +| rdfs:range = xsd:string +}}OntologyProperty:LeadTeam2027625268682013-07-03T07:59:57Z{{ObjectProperty +| labels = +{{label|en|lead team}} +| rdfs:range = SportsTeam +| rdfs:domain = Athlete, CareerStation +}}OntologyProperty:LeadYear2027628268712013-07-03T08:02:36Z{{DatatypeProperty +| labels = +{{label|en|lead year}} +| rdfs:range = xsd:string +| rdfs:domain = Athlete, CareerStation +}}OntologyProperty:Leader2021046362182014-07-08T13:58:43Z +{{ObjectProperty +| labels = + {{label|en|leader}} + {{label|de|Führer}} + {{label|nl|leider}} + {{label|el|ηγέτης}} + {{label|pt|lider}} +| rdfs:range = Person +| rdfs:subPropertyOf = dul:sameSettingAs +}}OntologyProperty:LeaderFunction2021047362192014-07-08T13:58:47Z +{{ObjectProperty +| rdfs:label@en = leaderFunction +| rdfs:domain = Organisation +| rdfs:range = PersonFunction +| rdfs:subPropertyOf = dul:coparticipatesWith +}}OntologyProperty:LeaderName2021048517712016-12-20T07:16:07Z +{{ObjectProperty +| labels = + {{label|en|leader name}} + {{label|nl|naam leider}} + {{label|fr|président}} + {{label|el|όνομα_αρχηγού}} + {{label|hi|शासक का नाम}} +| rdfs:domain = PopulatedPlace +| rdfs:range = Person +| rdfs:subPropertyOf = dul:coparticipatesWith +}}OntologyProperty:LeaderParty2021049362212014-07-08T13:58:53Z +{{ObjectProperty +| labels = + {{label|de|Regierungspartei}} + {{label|en|leader party}} + {{label|nl|regeringspartij}} + {{label|pt|partido do lider}} + {{label|el|κόμμα_αρχηγού}} +| rdfs:domain = PopulatedPlace +| rdfs:subPropertyOf = dul:coparticipatesWith +}}OntologyProperty:LeaderTitle2021050517702016-12-20T07:12:29Z{{DatatypeProperty +| rdfs:label@en = leader title +| rdfs:label@el = τίτλος_αρχηγού +| rdfs:label@hi = शासक पद +| rdfs:domain = PopulatedPlace +| rdfs:range = rdf:langString +}}OntologyProperty:Leadership2027554338382014-04-04T14:26:24Z{{DatatypeProperty +| labels = +{{label|en|leadership}} +{{label|de|Führung}} +| rdfs:domain = Person +| rdfs:range = xsd:string +}}OntologyProperty:League2021051568142022-02-28T22:30:51Z{{ObjectProperty +| labels = + {{label|en|league}} + {{label|fr|ligue}} + {{label|de|Liga}} + {{label|el|πρωτάθλημα}} +| rdfs:range = SportsLeague +| rdfs:subPropertyOf = dul:sameSettingAs +| owl:equivalentProperty = wikidata:P118 +}}OntologyProperty:LeagueManager2027797270982013-07-05T13:18:56Z{{ObjectProperty +| labels = +{{label|en|league manager}} +| rdfs:domain = Person +| rdfs:range = SportsLeague +}}OntologyProperty:LeftChild2021054362232014-07-08T13:59:00Z +{{ObjectProperty +| rdfs:label@en = left child +| rdfs:domain = Island +| rdfs:range = Island +| rdfs:subPropertyOf = dul:nearTo +}}OntologyProperty:LeftTributary2021055362242014-07-08T13:59:03Z +{{ObjectProperty +| rdfs:label@en = left tributary +| rdfs:label@de = linker Nebenfluss +| rdfs:label@el = αριστεροί_παραπόταμοι +| rdfs:domain = River +| rdfs:range = River +| rdfs:subPropertyOf = dul:hasCommonBoundary +}}OntologyProperty:LegalArrondissement2026887253252013-05-23T16:35:35Z{{DatatypeProperty +| labels = +{{label|en|legal arrondissement}} +| rdfs:domain = BelgiumSettlement +| rdfs:range = xsd:string +}}OntologyProperty:LegalArticle2026608243982013-03-15T15:25:02Z{{DatatypeProperty +| labels = +{{label|en|legal article}} +{{label|nl|wetsartikel}} +| comments = +{{comment|en| article in code book or statute book referred to in this legal case }} +| rdfs:domain = LegalCase +| rdfs:range = xsd:string +| rdf:type = +| rdfs:subPropertyOf = +| owl:equivalentProperty = +}}OntologyProperty:LegalForm2023731537202020-09-06T13:04:48Z +{{ObjectProperty +| labels = + {{label|en|legal form}} + {{label|nl|rechtsvorm}} + {{label|de|Rechtsform}} +| rdfs:domain = Organisation +| rdfs:range = owl:Thing +| rdfs:comment@en = 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. +| rdfs:comment@de = Die Rechtsform definiert die juristischen Rahmenbedingungen einer Organisation bzw. Unternehmens. +| rdfs:subPropertyOf = dul:isClassifiedBy +}}OntologyProperty:LegislativePeriodName2023528126592011-05-06T11:32:54Z{{DatatypeProperty +| rdfs:label@en = legislative period name +| rdfs:label@de = Name in der Legislaturperiode +| rdfs:domain = Legislature +| rdfs:range = xsd:string +| rdfs:comment@en = The term of the on-going session (e.g.: "40th Canadian Parliament"). +}}OntologyProperty:Legislature20211953525112017-10-18T09:42:52Z{{ObjectProperty +| labels = + {{label|en|legislature}} + {{label|de|Gesetzgeber}} +| rdfs:domain = PopulatedPlace +| rdfs:range = Legislature +}}OntologyProperty:Length2021056573762022-03-31T12:58:15Z{{DatatypeProperty +| labels = + {{label|en|length}} + {{label|nl|lengte}} + {{label|de|Länge}} + {{label|el|μήκος}} + {{label|fr|longueur}} +| rdfs:range = Length +| rdf:type = owl:FunctionalProperty +| owl:equivalentProperty = wikidata:P2043 +}}OntologyProperty:LengthQuote2027088256122013-05-26T13:29:13Z{{DatatypeProperty +| labels = +{{label|en|length quote}} +| rdfs:domain = Place +| rdfs:range = xsd:string +}}OntologyProperty:LengthReference2023339122232011-04-15T13:28:54Z{{DatatypeProperty +| rdfs:label@en = length reference +| rdfs:domain = RouteOfTransportation +| rdfs:range = xsd:string +}}OntologyProperty:LethalOnChickens2028936307932014-01-22T13:52:56Z{{DatatypeProperty +| rdfs:label@en = lethal when given to chickens +| rdfs:label@nl = dodelijk voor kippen +| rdfs:domain = ChemicalSubstance +| rdfs:range = xsd:string +}}OntologyProperty:LethalOnMice2028937307942014-01-22T13:54:03Z{{DatatypeProperty +| rdfs:label@en = lethal when given to mice +| rdfs:label@nl = dodelijk voor muizen +| rdfs:domain = ChemicalSubstance +| rdfs:range = xsd:string +}}OntologyProperty:LethalOnRabbits2028935307922014-01-22T13:52:21Z{{DatatypeProperty +| rdfs:label@en = lethal when given to rabbits +| rdfs:label@nl = dodelijk voor konijnen +| rdfs:domain = ChemicalSubstance +| rdfs:range = xsd:string +}}OntologyProperty:LethalOnRats2028934307912014-01-22T13:51:46Z{{DatatypeProperty +| rdfs:label@en = lethal when given to rats +| rdfs:label@nl = dodelijk voor ratten +| rdfs:domain = ChemicalSubstance +| rdfs:range = xsd:string +}}OntologyProperty:LiberationDate20210250512432016-06-09T10:48:47Z{{DatatypeProperty +| labels = +{{label|en|date of liberation}} +{{label|nl|datum bevrijding}} +| rdfs:domain = ConcentrationCamp +| rdfs:range = xsd:string +}}OntologyProperty:Libretto20210207378702014-09-23T13:59:13Z{{DatatypeProperty +| labels = +{{label|en|libretto}} +{{label|nl|libretto}} +| rdfs:domain = Opera +| rdfs:range = xsd:string +| rdf:type = +| rdfs:subPropertyOf = +}}OntologyProperty:LicenceLetter2026864253942013-05-25T10:56:45Z{{DatatypeProperty +| labels = +{{label|en|licence letter of a german settlement}} +| rdfs:domain = GermanSettlement +| rdfs:range = xsd:string +}}OntologyProperty:LicenceNumber2026928253962013-05-25T10:58:12Z{{DatatypeProperty +| labels = +{{label|en|licence number}} +| rdfs:domain = PopulatedPlace +| rdfs:range = xsd:string +}}OntologyProperty:LicenceNumberLabel2026929253972013-05-25T10:58:46Z{{DatatypeProperty +| labels = +{{label|en|licence number label}} +| rdfs:domain = PopulatedPlace +| rdfs:range = xsd:string +}}OntologyProperty:License2021057536752020-07-30T21:29:00Z{{ObjectProperty +| labels = + {{label|en|license}} + {{label|de|Lizenz}} + {{label|nl|licentie}} + {{label|el|άδεια}} + {{label|fr|licence}} +| rdfs:domain = Work +| rdfs:subPropertyOf = dul:isDescribedBy +| owl:equivalentProperty = schema:license, wikidata:P275 +}}OntologyProperty:Licensee2023088338412014-04-04T14:26:38Z{{DatatypeProperty +| rdfs:label@en = licensee +| rdfs:label@de = Lizenzinhaber +| rdfs:domain = owl:Thing +| rdfs:range = xsd:string +| rdfs:comment@en = Identify which company or entity holds the licence (mostly string are used in Wikipedia, therefore range is xsd:sting). +}}OntologyProperty:Lieutenancy2027305259822013-06-14T10:03:18Z{{DatatypeProperty +| labels = +{{label|en|lieutenancy}} +| rdfs:domain = PopulatedPlace +| rdfs:range = xsd:string +}}OntologyProperty:LieutenancyArea2022137362292014-07-08T13:59:21Z +{{ObjectProperty +| rdfs:label@en = Lieutenancy area +| rdfs:domain = PopulatedPlace +| rdfs:range = PopulatedPlace +| rdfs:subPropertyOf = dul:isPartOf +}}OntologyProperty:Lieutenant2022340362302014-07-08T13:59:23Z +{{ObjectProperty +| rdfs:label@en = lieutenant +| rdfs:label@de = Leutnant +| rdfs:label@fr = lieutenant +| rdfs:range = Person +| rdfs:subPropertyOf = dul:coparticipatesWith +}}OntologyProperty:LifeExpectancy2023272338432014-04-04T14:26:47Z{{DatatypeProperty +| rdfs:label@en = life expectancy +| rdfs:label@de = Lebenserwartung +| rdfs:label@pt = expectativa de vida +| rdfs:domain = PopulatedPlace +| rdfs:range = xsd:string +}}OntologyProperty:Limit2027153568922022-03-02T18:06:21Z{{DatatypeProperty +| labels = + {{label|en|limit}} + {{label|fr|limite}} +| rdfs:domain = Place +| rdfs:range = xsd:string +}}OntologyProperty:LineLength2023594128052011-05-16T15:53:14Z{{DatatypeProperty +| rdfs:label@en = line length +| rdfs:label@de = Linienlänge +| rdfs:domain = RouteOfTransportation +| rdfs:range = Length +| rdfs:comment@en = Length of the line. Wikipedians usually do not differentiate between track length and line lenght. +}}OntologyProperty:LinguisticsTradition2027745273592013-07-10T13:57:34Z{{ObjectProperty +| labels = +{{label|en|linguistics tradition}} +| rdfs:domain = Person +}}OntologyProperty:LinkedSpace2027151256922013-05-26T16:12:52Z{{DatatypeProperty +| labels = +{{label|en|linked space}} +| rdfs:domain = Place +| rdfs:range = xsd:string +}}OntologyProperty:LinkedTo2027186362312014-07-08T13:59:38Z +{{ObjectProperty +| labels = + {{label|en|linked to}} + {{label|de|verknüpft}} +| rdfs:domain = SkiResort +| rdfs:range = Place +| rdfs:subPropertyOf = dul:hasLocation +}}OntologyProperty:ListItemOf2026033362322014-07-08T13:59:41Z +{{ObjectProperty +| labels = + {{label|en|list item}} + {{label|nl|lijst items}} + {{label|el|αντικείμενο λίστας}} +| rdfs:domain = owl:Thing +| rdfs:range = owl:Thing +| rdfs:subPropertyOf = dul:isMemberOf +}}OntologyProperty:LiteraryGenre2023775568212022-03-01T00:02:40Z +{{ObjectProperty +| labels = + {{label|en|literary genre}} + {{label|fr|genre littéraire}} + {{label|nl|literair genre}} + {{label|de|literarische Gattung}} +| rdfs:domain = WrittenWork +| rdfs:range = owl:Thing +| rdfs:subPropertyOf = genre, dul:isClassifiedBy +| comments = + {{comment|en|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.}} + {{comment|fr|Un genre littéraire est une catégorie de composition littéraire. Les genres peuvent être déterminés par la technique littéraire employée, le ton, le contenu, ou même (comme dans le cas des fictions) la longueur.}} +}}OntologyProperty:LittlePoolRecord2027760270482013-07-04T14:46:51Z{{DatatypeProperty +| labels = +{{label|en|little pool record}} +| rdfs:domain = Person +| rdfs:range = xsd:string +}}OntologyProperty:LivingPlace2028022281762013-09-03T17:37:17Z{{ObjectProperty +| rdfs:label@en = livingPlace +| rdfs:domain = Person +| rdfs:range = Place +}}OntologyProperty:LoadLimit2023440124592011-04-27T14:32:20Z{{DatatypeProperty +| rdfs:label@en = load limit +| rdfs:label@de = Belastungsgrenze +| rdfs:domain = Bridge +| rdfs:range = Mass +| rdfs:comment@en = Load limit of the bridge. +}}OntologyProperty:LocalAuthority2023119362342014-07-08T13:59:46Z +{{ObjectProperty +| rdfs:label@en = local authority +| rdfs:subPropertyOf = dul:sameSettingAs +}}OntologyProperty:LocalPhonePrefix2027940338452014-04-04T14:26:54Z{{DatatypeProperty +| labels = +{{label|en|local phone prefix}} +{{label|de|lokale Vorwahl}} +| rdfs:domain = PopulatedPlace +| rdfs:range = xsd:nonNegativeInteger +}}OntologyProperty:Locality2026940492252015-10-15T07:21:24Z{{DatatypeProperty +| labels = +{{label|en|locality of a switzerland settlement}} +| rdfs:domain = Settlement +| rdfs:range = xsd:string +}}OntologyProperty:Localization2027055338662014-04-04T14:38:54Z{{DatatypeProperty +| labels = +{{label|en|localization of the island}} +| rdfs:domain = Island +| rdfs:range = xsd:string +}}OntologyProperty:LocalizationThumbnail2026855362352014-07-08T13:59:49Z +{{ObjectProperty +| labels = + {{label|en|thumbnail localization}} +| rdfs:domain = PopulatedPlace +| rdfs:range = owl:Thing +| rdfs:subPropertyOf = dul:isExpressedBy +}}OntologyProperty:LocalizationThumbnailCaption2026856252932013-05-23T15:24:25Z{{DatatypeProperty +| labels = +{{label|en|legend thumbnail localization}} +| rdfs:domain = PopulatedPlace +| rdfs:range = xsd:string +}}OntologyProperty:LocatedInArea2021058362362014-07-08T13:59:54Z +{{ObjectProperty +| labels = + {{label|en|located in area}} + {{label|nl|landstreek}} +| rdfs:domain = Place +| rdfs:range = Place +| owl:equivalentProperty = schema:containedIn , wikidata:P131 +| rdfs:subPropertyOf = dul:hasLocation +}}OntologyProperty:Location2021059536602020-07-30T21:13:17Z{{ObjectProperty +| labels = +{{label|de|Standort}} +{{label|en|location}} +{{label|nl|locatie}} +{{label|el|τοποθεσία}} +{{label|pt|localização}} +{{label|fr|emplacement}} +{{label|pl|lokalizacja}} +{{label|ja|所在地}} +| comments = +{{comment|en|The location of the thing.}} +| rdsf:domain = owl:Thing +| rdfs:range = Place +| rdfs:subPropertyOf = dul:hasLocation +| owl:equivalentProperty = schema:location +}}OntologyProperty:LocationCity2021060362382014-07-08T14:00:01Z +{{ObjectProperty +| labels = + {{label|en|location city}} + {{label|nl|locatie stad}} + {{label|fr|ville}} +| rdfs:domain = Organisation +| rdfs:range = City +| rdfs:subPropertyOf = location, dul:hasLocation +| comments = + {{comment|en|City the thing is located.}} +}}OntologyProperty:LocationCountry2021061362392014-07-08T14:00:05Z +{{ObjectProperty +| rdfs:label@en = location country +| rdfs:label@el = Χώρα +| rdfs:label@pt = país de localização +| rdfs:label@en = państwo +| rdfs:domain = owl:Thing +| rdfs:range = Country +| rdfs:subPropertyOf = location, dul:hasLocation +| rdfs:comment@en = Country the thing is located. +}}OntologyProperty:LocationIdentifier202216083732010-05-28T13:55:41Z{{DatatypeProperty +| rdfs:label@en = Location Identifier +| rdfs:domain = Airport +| rdfs:range = xsd:string +}}OntologyProperty:LocationName20210410537872020-10-21T21:50:06Z{{DatatypeProperty +| labels= +{{label|en|locationName}} +| comments= +{{comment|en|Location of the thing as string. Use "location" if the location is a resource}} +| rdfs:domain = owl:Thing +| rdfs:range = xsd:string +| owl:equivalentProperty = ceo:locatienaam, gnd:preferredNameForThePlaceOrGeographicName +}}OntologyProperty:Locomotive20211441495212015-11-14T14:50:26Z{{ObjectProperty +| rdfs:label@en = locomotive +| rdfs:label@nl = locomotief +| rdfs:domain = Train +| rdfs:range = Locomotive +}}OntologyProperty:LocusSupplementaryData202106280942010-05-28T13:17:43Z{{DatatypeProperty +| rdfs:label@en = locus supplementary data +| rdfs:domain = Protein +| rdfs:range = xsd:string +}}OntologyProperty:Logo2025647574382022-04-17T21:15:39Z{{ DatatypeProperty +| labels = + {{label|en|logo}} + {{label|fr|logo}} + {{label|el|λογότυπο}} + {{label|nl|logo}} +| rdfs:domain = owl:Thing +| rdfs:range = xsd:string +}}OntologyProperty:LongDistancePisteKilometre2027204261882013-06-18T11:05:22Z{{DatatypeProperty +| labels = +{{label|en|long distance piste kilometre}} +| rdfs:domain = Place +| rdfs:range = Length +}}OntologyProperty:LongDistancePisteNumber2027199257492013-06-01T13:23:43Z{{DatatypeProperty +| labels = +{{label|en|long distance piste number}} +| rdfs:domain = Place +| rdfs:range = xsd:nonNegativeInteger +}}OntologyProperty:LongName2024470347952014-05-13T12:46:44Z{{DatatypeProperty +| labels = +{{label|en|longName}} +{{label|nl|volledige naam}} +| rdfs:range = rdf:langString +}}OntologyProperty:Longtype202106380952010-05-28T13:17:50Z{{DatatypeProperty +| rdfs:label@en = longtype +| rdfs:domain = Album +| rdfs:range = xsd:string +| rdfs:comment@en = can be used to include more informations e.g. the name of the artist that a tribute album is in honor of +}}OntologyProperty:Lounge2021064362402014-07-08T14:00:08Z +{{ObjectProperty +| rdfs:label@en = lounge +| rdfs:domain = Airline +| rdfs:subPropertyOf = dul:sameSettingAs +}}OntologyProperty:LowerAge2021065103842010-11-10T14:32:54Z{{DatatypeProperty +| rdfs:label@en = lower age +| rdfs:domain = School +| rdfs:range = xsd:nonNegativeInteger +}}OntologyProperty:LowerEarthOrbitPayload202106680972010-05-28T13:18:05Z{{DatatypeProperty +| rdfs:label@en = lower earth orbit payload +| rdfs:domain = Rocket +| rdfs:range = Mass +| rdfs:comment@en = Payload mass in a typical Low Earth orbit +}}OntologyProperty:Lowest2021067235862013-01-27T19:18:39Z{{DatatypeProperty +| rdfs:label@en = lowest +| rdfs:label@el = χαμηλότερο +| rdfs:domain = Place +| rdfs:range = xsd:string +}}OntologyProperty:LowestAltitude20211808519302017-02-20T12:05:27Z{{ObjectProperty +| labels = +{{label|en|lowest altitude}} +{{label|ja|最低地点標高}} +| rdfs:domain = Place +| rdfs:range = Altitude +| rdfs:subPropertyOf = altitude +}}OntologyProperty:LowestMountain2021069511212016-05-25T12:26:02Z +{{ObjectProperty +| rdfs:label@en = lowest mountain +| rdfs:label@el = χαμηλώτερο βουνό +| rdfs:label@fr = montagne la plus basse +| rdfs:domain = Place +| rdfs:range = Mountain +| rdfs:subPropertyOf = dul:isLocationOf +}}OntologyProperty:LowestPlace2021070511222016-05-25T12:28:48Z +{{ObjectProperty +| rdfs:label@en = lowest place +| rdfs:label@fr = lieu le plus bas +| rdfs:domain = Place +| rdfs:range = PopulatedPlace +| rdfs:subPropertyOf = dul:isLocationOf +}}OntologyProperty:LowestPoint2027903274402013-07-12T10:48:23Z{{ObjectProperty +| labels = +{{label|en|lowest point}} +| rdfs:domain = Settlement +| rdfs:range = Place +}}OntologyProperty:LowestPosition2021071511232016-05-25T12:30:09Z +{{ObjectProperty +| rdfs:label@en = lowest position +| rdfs:label@fr = position la plus basse +| rdfs:domain = Place +| rdfs:range = geo:SpatialThing +| rdfs:subPropertyOf = dul:isLocationOf +}}OntologyProperty:LowestRegion2021072362442014-07-08T14:00:26Z +{{ObjectProperty +| rdfs:label@en = lowest region +| rdfs:domain = Island +| rdfs:range = PopulatedPlace +| rdfs:subPropertyOf = dul:isLocationOf +}}OntologyProperty:LowestState2021073362452014-07-08T14:00:29Z +{{ObjectProperty +| rdfs:label@en = lowest state +| rdfs:domain = Island +| rdfs:range = PopulatedPlace +| rdfs:subPropertyOf = dul:isPartOf +}}OntologyProperty:LunarEvaTime202107480992010-05-28T13:18:22Z{{DatatypeProperty +| rdfs:label@en = lunar EVA time +| rdfs:domain = SpaceMission +| rdfs:range = Time +}}OntologyProperty:LunarLandingSite202107581002010-05-28T13:18:32Z{{DatatypeProperty +| rdfs:label@en = lunar landing site +| rdfs:domain = SpaceMission +| rdfs:range = xsd:string +}}OntologyProperty:LunarModule2021076567342022-02-28T15:12:03Z{{DatatypeProperty +| labels = + {{label|en|lunar module}} + {{label|de|Mondfähre}} + {{label|fr|module lunaire}} +| rdfs:domain = SpaceMission +| rdfs:range = xsd:string +}}OntologyProperty:LunarOrbitTime2021077338482014-04-04T14:27:36Z{{DatatypeProperty +| rdfs:label@en = lunar orbit time +| rdfs:label@de = Mondumlaufzeit +| rdfs:domain = SpaceMission +| rdfs:range = Time +}}OntologyProperty:LunarRover2021078362462014-07-08T14:00:32Z +{{ObjectProperty +| rdfs:label@en = lunar rover +| rdfs:label@de = Mondfahrzeug +| rdfs:domain = SpaceMission +| rdfs:range = MeanOfTransportation +| rdfs:subPropertyOf = dul:hasParticipant +}}OntologyProperty:LunarSampleMass202107981032010-05-28T13:18:57Z{{DatatypeProperty +| rdfs:label@en = lunar sample mass +| rdfs:domain = SpaceMission +| rdfs:range = Mass +}}OntologyProperty:LunarSurfaceTime202108081042010-05-28T13:19:06Z{{DatatypeProperty +| rdfs:label@en = lunar surface time +| rdfs:domain = SpaceMission +| rdfs:range = Time +}}OntologyProperty:Lymph2021081362472014-07-08T14:00:34Z +{{ObjectProperty +| rdfs:label@en = lymph +| rdfs:domain = AnatomicalStructure +| rdfs:range = Lymph +| rdfs:subPropertyOf = dul:hasCommonBoundary +}}OntologyProperty:Lyrics2021082486252015-08-06T14:06:31Z{{ObjectProperty +| rdfs:label@en = lyrics +| rdfs:label@el = στίχοι +| rdfs:label@fr = parolier +| rdfs:label@ja = 歌詞 +| rdfs:domain = MusicalWork +| rdfs:range = Person +| rdfs:comment@en = Creator of the text of a MusicalWork, eg Musical, Opera or Song +| rdfs:subPropertyOf = dul:coparticipatesWith +}}OntologyProperty:Magazine2026183362492014-07-08T14:00:42Z +{{ObjectProperty +| labels = + {{label|en|magazine}} + {{label|de|Magazin}} + {{label|el|περιοδικό}} +| rdfs:domain = WrittenWork +| rdfs:range = Magazine +| rdfs:subPropertyOf = dul:sameSettingAs +}}OntologyProperty:MaidenFlight2021083338512014-04-04T14:27:50Z{{DatatypeProperty +| rdfs:label@en = maiden flight +| rdfs:label@de = Jungfernflug +| rdfs:domain = Rocket +| rdfs:range = xsd:date +| rdfs:comment@en = date of maiden flight +}}OntologyProperty:MaidenFlightRocket2021084362502014-07-08T14:00:46Z +{{ObjectProperty +| rdfs:label@en = maiden flight rocket +| rdfs:domain = YearInSpaceflight +| rdfs:range = Rocket +| rdfs:subPropertyOf = dul:hasParticipant +}}OntologyProperty:MaidenVoyage2023111116562011-04-02T11:08:47Z{{DatatypeProperty +| rdfs:label@en=maiden voyage +| rdfs:domain = Ship +| rdfs:range = xsd:date +}}OntologyProperty:MainArticleForCategory20213132549182021-09-03T06:33:56Z{{ObjectProperty +| rdfs:label@en = main article for Wikipedia category +| rdfs:label@de = Hauptartikel fuer Kategorie +| rdfs:comment@en = A property for linking Wikipedia categories to its main articles, derived from top templates of some category pages. +| rdfs:domain = skos:Concept +}}OntologyProperty:MainArtist20213820570942022-03-12T12:33:05Z{{ObjectProperty +| labels = + {{label|en|main artist}} + {{label|fr|artiste principal}} +| comments = + {{comment|en|Name of the main artist in the group.}} + {{comment|fr|Nom de l'artiste principal lorsque plusieurs artistes sont associés.}} +| rdfs:domain = MusicalWork +| rdfs:range = Agent +| rdfs:subPropertyOf = artist +}}OntologyProperty:MainBuilding2026667338522014-04-04T14:27:54Z{{DatatypeProperty +| rdfs:label@en = main building +| rdfs:label@de = Hauptgebäude +| rdfs:label@ja = 本殿 +| rdfs:domain = Shrine +| rdfs:range = xsd:string +}}OntologyProperty:MainCharacter2029584355032014-06-28T11:38:59Z{{ObjectProperty +| labels = +{{label|en|main character}} +{{label|fr|personnage principal}} +| rdfs:domain = Work +| rdfs:range = Person +}}OntologyProperty:MainDomain2027698273482013-07-10T13:26:17Z{{ObjectProperty +| labels = +{{label|en|main domain}} +| rdfs:domain = Person +}}OntologyProperty:MainFamilyBranch2029292338622014-04-04T14:32:05Z{{ObjectProperty +|labels = +{{label|en|main branch}} +{{label|nl|voornaamste tak}} +| rdfs:domain = NobleFamily +| rdfs:range = Family +}}OntologyProperty:MainInterest2022315362512014-07-08T14:00:50Z +{{ObjectProperty +| rdfs:label@en = main interest +| rdfs:domain = owl:Thing +| rdfs:subPropertyOf = dul:conceptualizes +}}OntologyProperty:MainIsland2027100338542014-04-04T14:28:02Z{{ObjectProperty +| labels = +{{label|en|main island}} +{{label|de|Hauptinsel}} +| rdfs:domain = Place +| rdfs:range = Place +}}OntologyProperty:MainIslands2027065338552014-04-04T14:28:06Z{{DatatypeProperty +| labels = +{{label|en|main islands}} +{{label|de|Hauptinseln}} +| rdfs:domain = Island +| rdfs:range = xsd:string +}}OntologyProperty:MainOrgan2021085362522014-07-08T14:00:54Z +{{ObjectProperty +| rdfs:label@en = main organ +| rdfs:domain = Organisation +| rdfs:subPropertyOf = dul:hasPart +}}OntologyProperty:Mainspan2021086204132012-12-20T10:38:46Z{{DatatypeProperty +|labels= + {{label|en|mainspan}} + {{label|fr|portée principale}} + {{label|el|κύρια καμάρα}} +| rdfs:domain = Bridge +| rdfs:range = Length +}}OntologyProperty:MaintainedBy2023257476062015-04-03T09:58:37Z{{ObjectProperty +| rdfs:label@en = maintained by +| rdfs:label@de = gewartet von +| rdfs:domain = ArchitecturalStructure +| rdfs:range = owl:Thing +| rdfs:subPropertyOf = dul:coparticipatesWith +| owl:equivalentProperty = wikidata:P126 +}}OntologyProperty:MajorIsland2021087362542014-07-08T14:01:00Z +{{ObjectProperty +| rdfs:label@en = major island +| rdfs:label@de = große Insel +| rdfs:label@pt = maior ilha +| rdfs:domain = Island +| rdfs:range = Island +| rdfs:subPropertyOf = dul:hasPart +}}OntologyProperty:MajorShrine2021088362562014-07-08T14:01:06Z +{{ObjectProperty +| labels = + {{label|en|major shrine}} + {{label|de|bedeutender Schrein}} + {{label|nl|schrijn}} +| rdfs:domain = Saint +| rdfs:subPropertyOf = dul:sameSettingAs +}}OntologyProperty:MajorityFloorLeader2022362338642014-04-04T14:33:44Z{{DatatypeProperty +| rdfs:label@en = majority floor leader +| rdfs:comment@en = number of office holder +| rdfs:range = xsd:integer +}}OntologyProperty:MajorityLeader2022360338632014-04-04T14:33:17Z{{DatatypeProperty +| rdfs:label@en = majority leader +| rdfs:comment@en = number of office holder +| rdfs:range = xsd:integer +}}OntologyProperty:MakeupArtist2025150362582014-07-08T14:01:23Z +{{ObjectProperty +| rdfs:domain = Film +| rdfs:range = Person +| rdfs:label@en = makeup artist +| rdfs:label@it = truccatore +| rdfs:comment@en = the person who is responsible for the actors makeup +| rdfs:subPropertyOf = dul:hasParticipant +}}OntologyProperty:Management2021089362592014-07-08T14:01:26Z +{{ObjectProperty +| rdfs:label@en = management +| rdfs:label@de = Management +| rdfs:label@fr = management +| rdfs:subPropertyOf = dul:sameSettingAs +}}OntologyProperty:ManagementCountry2021090362602014-07-08T14:01:28Z +{{ObjectProperty +| rdfs:label@en = management country +| rdfs:domain = Island +| rdfs:range = Country +| rdfs:subPropertyOf = dul:sameSettingAs +}}OntologyProperty:ManagementElevation202109181072010-05-28T13:19:28Z{{DatatypeProperty +| rdfs:label@en = management elevation +| rdfs:range = Length +}}OntologyProperty:ManagementMountain2021092362612014-07-08T14:01:32Z +{{ObjectProperty +| rdfs:label@en = management mountain +| rdfs:range = Mountain +| rdfs:subPropertyOf = dul:sameSettingAs +}}OntologyProperty:ManagementPlace2021093362622014-07-08T14:01:36Z +{{ObjectProperty +| rdfs:label@en = management place +| rdfs:range = PopulatedPlace +| rdfs:subPropertyOf = dul:sameSettingAs +}}OntologyProperty:ManagementPosition2021094362632014-07-08T14:01:40Z +{{ObjectProperty +| rdfs:label@en = management position +| rdfs:range = geo:SpatialThing +| rdfs:subPropertyOf = dul:hasSetting +}}OntologyProperty:ManagementRegion2021095362642014-07-08T14:01:43Z +{{ObjectProperty +| rdfs:label@en = management region +| rdfs:domain = Island +| rdfs:range = PopulatedPlace +| rdfs:subPropertyOf = dul:sameSettingAs +}}OntologyProperty:Manager2021096476072015-04-03T09:59:23Z{{ObjectProperty +| rdfs:label@en = manager +| rdfs:label@de = Manager +| rdfs:label@el = προπονητής +| rdfs:domain = SportsTeam +| rdfs:range = Person +| rdfs:subPropertyOf = dul:coparticipatesWith +| owl:equivalentProperty = wikidata:P286 +}}OntologyProperty:ManagerClub2022293514422016-08-16T07:35:27Z{{ObjectProperty +| rdfs:label@en = manager club +| rdfs:label@de = Clubmanager +| rdfs:label@ja = 監督チーム +| rdfs:domain = Athlete +| rdfs:range = SportsTeam +| rdfs:subPropertyOf = dul:coparticipatesWith +}}OntologyProperty:ManagerSeason2027876273372013-07-10T12:47:19Z{{ObjectProperty +| rdfs:label@en = manager season +| rdfs:domain = Agent +}}OntologyProperty:ManagerTitle202109881082010-05-28T13:19:36Z{{DatatypeProperty +| rdfs:label@en = manager title +| rdfs:domain = SoccerClub +| rdfs:range = xsd:string +}}OntologyProperty:ManagerYears2021099514442016-08-16T07:36:51Z{{DatatypeProperty +| rdfs:label@en = manager years +| rdfs:label@ja = 監督年 +| rdfs:domain = SoccerPlayer +| rdfs:range = xsd:date +}}OntologyProperty:ManagerYearsEndYear2027878273432013-07-10T13:12:29Z{{DatatypeProperty +| labels = +{{label|en|manager years end year}} +| rdfs:domain = owl:Thing +| rdfs:range = xsd:gYear +}}OntologyProperty:ManagerYearsStartYear2027877273422013-07-10T13:12:16Z{{DatatypeProperty +| labels = +{{label|en|manager years start year}} +| rdfs:domain = owl:Thing +| rdfs:range = xsd:gYear +}}OntologyProperty:ManagingEditor2021100362672014-07-08T14:01:54Z +{{ObjectProperty +| rdfs:label@en = managing editor +| rdfs:domain = Newspaper +| rdfs:range = Person +| rdfs:subPropertyOf = dul:coparticipatesWith +}}OntologyProperty:Mandate2027138338702014-04-04T14:56:45Z{{DatatypeProperty +| labels = +{{label|en|political mandate}} +{{label|de|politisches Mandat}} +| rdfs:range = xsd:string +}}OntologyProperty:Manufactory20211976525982017-10-31T10:17:53Z{{ObjectProperty +| rdfs:label@en = manufactory +| rdfs:label@de = Fabrik +| rdfs:range = Factory +}}OntologyProperty:Manufacturer2021101476082015-04-03T10:00:41Z{{ObjectProperty +| rdfs:label@en = manufacturer +| rdfs:label@de = Hersteller +| rdfs:label@el = κατασκευαστής +| rdfs:range = Organisation +| rdfs:subPropertyOf = dul:coparticipatesWith +| owl:equivalentProperty = wikidata:P176 +}}OntologyProperty:Map2023258537682020-10-14T22:28:38Z +{{ObjectProperty +| labels = + {{label|en|map}} + {{label|el|χάρτης}} + {{label|nl|kaart}} + {{label|de|Landkarte}} + {{label|fr|carte}} + {{label|pt|mapa}} +| rdfs:domain = Place +| rdfs:range = owl:Thing +| rdfs:comment@en = A map of the place. +| rdfs:comment@el = Χάρτης μιας περιοχής. +| rdfs:comment@de = Eine Landkarte des Ortes. +| owl:equivalentProperty = schema:maps, gn:locationMap +| rdfs:subPropertyOf = dul:hasLocation +}}OntologyProperty:MapCaption2027009254952013-05-25T19:25:13Z{{DatatypeProperty +| labels = +{{label|en|map caption}} +| rdfs:domain = Place +| rdfs:range = xsd:string +}}OntologyProperty:MapDescription2025258198982012-11-21T18:02:41Z{{DatatypeProperty +| labels = +{{label|en|map description}} +{{label|nl|kaart omschrijving}} +| rdfs:domain = Place +| rdfs:range = xsd:string +}}OntologyProperty:March2021104362702014-07-08T14:02:04Z +{{ObjectProperty +| rdfs:label@en = march +| rdfs:label@de = Marsch +| rdfs:label@pt = marcha +| rdfs:domain = MilitaryUnit +| rdfs:range = MusicalWork +| rdfs:subPropertyOf = dul:coparticipatesWith +}}OntologyProperty:MarketCapitalisation2021105338732014-04-04T14:56:57Z{{DatatypeProperty +| rdfs:label@en = market capitalisation +| rdfs:label@de = Marktkapitalisierung +| rdfs:domain = Company +| rdfs:range = Currency +| rdf:type = owl:FunctionalProperty +}}OntologyProperty:Mascot2021106338742014-04-04T14:57:01Z{{DatatypeProperty +| labels = + {{label|en|mascot}} +{{label|de|Maskottchen}} + {{label|pt|mascote}} + {{label|fr|mascotte}} +| comments = + {{comment|en|something, especially a person or animal, used to symbolize a sports team, company, organization or other group.<ref>http://en.wiktionary.org/wiki/mascot</ref>}} + {{comment|fr|Animal, poupée, objets divers servant de porte-bonheur ou d’emblème.<ref>http://fr.wiktionary.org/wiki/mascotte</ref>}} +| rdfs:range = xsd:string +}} + +== References == +<references/>OntologyProperty:Mass2021107338752014-04-04T14:57:05Z{{DatatypeProperty +| rdfs:label@en = mass +| rdfs:label@de = Masse +| rdfs:label@el = μάζα +| rdfs:range = Mass +}}OntologyProperty:Massif2027185362712014-07-08T14:02:07Z +{{ObjectProperty +| labels = + {{label|en|massif}} + {{label|de|Massiv}} +| rdfs:domain = SkiResort +| rdfs:range = Place +| rdfs:subPropertyOf = dul:hasLocation +}}OntologyProperty:MastersWins2027646273152013-07-10T11:26:49Z{{ObjectProperty +| labels = +{{label|en|masters wins}} +| rdfs:domain = Person +| rdfs:range = skos:Concept +}}OntologyProperty:MatchPoint2027826271392013-07-05T15:24:57Z{{DatatypeProperty +| labels = +{{label|en|match point}} +| rdfs:domain = Person +| rdfs:range = xsd:string +}}OntologyProperty:Material2021108536772020-07-30T21:30:37Z{{ObjectProperty +| rdfs:label@en = material +| rdfs:label@de = Material +| rdfs:label@fr = matériel +| owl:equivalentProperty = schema:material +}}OntologyProperty:Max2027917276222013-07-15T13:27:31Z{{DatatypeProperty +| labels = +{{label|en|max}} +| rdfs:range = xsd:nonNegativeInteger +}}OntologyProperty:MaxAbsoluteMagnitude2029169319192014-02-14T18:45:58Z{{DatatypeProperty + |rdfs:label@en=maximum absolute magnitude + |rdfs:label@de=maximale absolute Helligkeit + |rdfs:label@nl=maximale absolute magnitude + |rdfs:domain=CelestialBody + |rdfs:range=xsd:double +}}OntologyProperty:MaxApparentMagnitude2029170319202014-02-14T18:47:08Z{{DatatypeProperty +| labels = +{{label|en|maximum apparent magnitude}} +{{label|de|maximale scheinbare Helligkeit}} +{{label|nl|maximale schijnbare magnitude}} + |rdfs:domain=CelestialBody + |rdfs:range=xsd:double +}}OntologyProperty:MaxTime20211300568082022-02-28T22:18:33Z{{DatatypeProperty +| labels = + {{label|en|maximum preparation time}} + {{label|fr|temps de préparation maximum}} +| comments = + {{comment|en|Maximum preparation time of a recipe / Food}} + {{comment|fr|Temps de préparation maximum pour une recette / Aliments}} +| rdfs:domain = Food +| rdfs:range = Time +}}OntologyProperty:MaximumArea2027084338782014-04-04T14:57:18Z{{DatatypeProperty +| labels = +{{label|en|maximum area}} +{{label|de|maximale Fläche}} +| rdfs:domain = Place +| rdfs:range = xsd:string +}}OntologyProperty:MaximumAreaQuote2027085256092013-05-26T13:27:44Z{{DatatypeProperty +| labels = +{{label|en|maximum area quote}} +| rdfs:domain = Place +| rdfs:range = xsd:string +}}OntologyProperty:MaximumBoatBeam2021109115502011-04-01T11:12:15Z{{DatatypeProperty +| rdfs:label@en = maximum boat beam +| rdfs:label@el = μέγιστο_πλάτος_πλοίου +| rdfs:domain = Canal +| rdfs:range = Length +}}OntologyProperty:MaximumBoatLength2021110115492011-04-01T11:11:11Z{{DatatypeProperty +| rdfs:label@en = maximum boat length +| rdfs:label@el = μέγιστο_μήκος_πλοίου +| rdfs:domain = Canal +| rdfs:range = Length +}}OntologyProperty:MaximumDepth2021111493262015-10-23T13:00:29Z{{DatatypeProperty +| labels = +{{label|de|maximale Tiefe}} +{{label|el|μέγιστο_βάθος}} +{{label|en|maximum depth}} +{{label|fr|profondeur maximale}} +| comments = +{{comment|en|Source of the value can be declare by {{linkProperties|maximumDepthQuote|}}.}} +| rdfs:domain = Place +| rdfs:range = Length +| rdfs:subPropertyOf = depth +| owl:propertyDisjointWith = averageDepth +}}OntologyProperty:MaximumDepthQuote2027092493252015-10-23T12:51:24Z{{DatatypeProperty +| labels = +{{label|en|maximum depth quote}} +| comments = +{{comment|en|Source of the {{linkProperties|maximumDepth|}} value.}} +| rdfs:domain = Place +| rdfs:range = xsd:string +}}OntologyProperty:MaximumDischarge202111281182010-05-28T13:20:59Z{{DatatypeProperty +| rdfs:label@en = maximum discharge +| rdfs:range = FlowRate +}}OntologyProperty:MaximumElevation2021113112722011-03-30T09:40:00Z{{DatatypeProperty +| rdfs:label@en = maximum elevation +| rdfs:label@el = κορυφή +| rdfs:domain = Place +| rdfs:range = Length +| rdfs:comment@en = maximum elevation above the sea level +}}OntologyProperty:MaximumInclination202111481202010-05-28T13:21:16Z{{DatatypeProperty +| rdfs:label@en = maximum inclination +| rdfs:domain = LaunchPad +| rdfs:range = xsd:float +}}OntologyProperty:MaximumTemperature2021115338802014-04-04T14:57:26Z{{DatatypeProperty +| rdfs:label@en = maximum temperature +| rdfs:label@de = Maximaltemperatur +| rdfs:label@el = μέγιστη θερμοκρασία +| rdfs:domain = Planet +| rdfs:range = Temperature +}}OntologyProperty:Mayor2021116523082017-10-09T12:55:27Z +{{ObjectProperty +| labels = + {{label|en|mayor}} + {{label|de|Bürgermeister}} + {{label|el|δήμαρχος}} + {{label|nl|burgemeester}} + {{label|fr|maire}} +| rdfs:range = Mayor +| rdfs:subPropertyOf = dul:coparticipatesWith +| rdfs:subPropertyOf = Leader +}}OntologyProperty:MayorArticle2027156256972013-05-26T16:39:32Z{{DatatypeProperty +| labels = +{{label|en|mayor article}} +| rdfs:domain = Place +| rdfs:range = xsd:string +}}OntologyProperty:MayorCouncillor2026879274282013-07-12T10:19:17Z{{DatatypeProperty +| labels = +{{label|en|mayor councillor}} +| rdfs:range = xsd:string +}}OntologyProperty:MayorFunction2026941254122013-05-25T12:04:48Z{{DatatypeProperty +| labels = +{{label|en|mayor function of a switzerland settlement}} +| rdfs:domain = SwitzerlandSettlement +| rdfs:range = xsd:string +}}OntologyProperty:MayorMandate2026779250662013-04-21T14:35:49Z{{DatatypeProperty +| labels = +{{label|en|mayorMandate}} +| rdfs:domain = Mayor +| rdfs:range = xsd:string +}}OntologyProperty:MayorTitle2026903348472014-05-15T05:19:31Z{{DatatypeProperty +| labels = +{{label|en|mayor title of a hungarian settlement}} +| rdfs:domain = HungarySettlement +| rdfs:range = rdf:langString +}}OntologyProperty:MbaId2028428528792018-02-13T10:47:58Z{{DatatypeProperty +| labels = +{{label|en|MBA Id}} +| comments = +{{comment|en|MusicBrainz is an open music encyclopedia that collects music metadata and makes it available to the public.}} +| rdfs:range = xsd:string +| rdfs:subPropertyOf = code +}}OntologyProperty:MeanRadius2021118339522014-04-04T15:06:20Z{{DatatypeProperty +| rdfs:label@en = mean radius +| rdfs:label@de = durchschnittlicher Radius +| rdfs:label@el = μέση ακτίνα +| rdfs:domain = Planet +| rdfs:range = Length +}}OntologyProperty:MeanTemperature2021119338832014-04-04T14:57:39Z{{DatatypeProperty +| rdfs:label@en = mean temperature +| rdfs:label@de = Durchschnittstemperatur +| rdfs:label@el = μέση θερμοκρασία +| rdfs:domain = Planet +| rdfs:range = Temperature +}}OntologyProperty:Meaning2021117462532015-03-18T14:40:38Z{{DatatypeProperty +| rdfs:label@en = meaning +| rdfs:label@de = Bedeutung +| rdfs:range = xsd:string +}}OntologyProperty:Measurements2023290338852014-04-04T14:57:48Z{{DatatypeProperty +| rdfs:label@en = measurements +| rdfs:label@de = Messungen +| rdfs:label@pt = medidas +| rdfs:domain = Person +| rdfs:range = xsd:string +}}OntologyProperty:Medalist2025669362732014-07-08T14:02:14Z +{{ObjectProperty +| rdfs:label@en = medalist +| rdfs:label@de = Medaillengewinner +| rdfs:label@pt = medalhista +| rdfs:domain = SportsEvent +| rdfs:range = Person +| rdfs:subPropertyOf = dul:hasParticipant +}}OntologyProperty:Media2027701338872014-04-04T14:57:56Z{{ObjectProperty +| labels = +{{label|en|media}} +{{label|de|Medien}} +| rdfs:domain = Person +}}OntologyProperty:MediaItem20211724513662016-07-10T20:04:12Z{{ObjectProperty +| labels= + {{label|en|media item}} + {{label|de|Multimediaelement}} +| comments= + {{comment|en|A media file (such as audio, video or images) associated with the subject}} +| rdfs:domain = owl:Thing +| rdfs:range = File +}}OntologyProperty:MediaType2021120568072022-02-28T22:15:55Z{{ObjectProperty +| labels = + {{label|en|media type}} + {{label|fr|type de média}} + {{label|de|Medientyp}} + {{label|nl|mediatype}} +| rdfs:domain = WrittenWork +| owl:equivalentProperty = +| rdfs:subPropertyOf = +| comments = + {{comment|en|Print / On-line (then binding types etc. if relevant)}} + {{comment|fr|Imprimer / En-ligne (puis types associés etc. si nécessaire)}} +}}OntologyProperty:MedicalCause20211862521992017-10-07T14:20:14Z{{ObjectProperty +| labels = + {{label|en|medical cause}} + {{label|fr|médical cause}} + {{label|de|medizinische Ursache}} + {{label|el|αιτία Ιατρικός}} +| rdfs:domain = Disease +| rdfs:range = owl:Thing +}}OntologyProperty:MedicalDiagnosis20211864522012017-10-07T14:35:55Z{{ObjectProperty +| labels = + {{label|en|medical diagnosis}} + {{label|fr|diagnostic médical}} + {{label|de|medizinische Diagnose}} +| rdfs:domain = Disease +| rdfs:range = owl:Thing +}}OntologyProperty:MedicalSpecialty20211868522052017-10-07T14:57:35Z{{ObjectProperty +| labels = + {{label|de|medizinisches Fachgebiet}} + {{label|en|medical specialty}} + {{label|nl|medisch specialisme}} + {{label|el|ιατρική ειδικότητα}} + {{label|fr|spécialité médicale}} + {{label|ko|진료과}} + {{label|ja|診療科}} + {{label|it|specializzazione medica}} +| rdfs:domain = Disease +| rdfs:range = MedicalSpecialty +}}OntologyProperty:Medication20211866522032017-10-07T14:40:02Z{{ObjectProperty +| labels = + {{label|en|medication}} + {{label|fr|médication}} + {{label|de|Medikation}} +| rdfs:domain = Disease +| rdfs:range = owl:Thing +}}OntologyProperty:MedlinePlus2021121523952017-10-15T12:20:36Z{{DatatypeProperty +| labels = +{{label|en|MedlinePlus}} +{{label|nl|MedlinePlus}} +| rdfs:domain = owl:Thing +| rdfs:range = xsd:string +}}OntologyProperty:MeetingBuilding2021122362752014-07-08T14:02:20Z +{{ObjectProperty +| rdfs:label@en = meeting building +| rdfs:label@de = Tagungsgebäude +| rdfs:domain = Legislature +| rdfs:range = Building +| rdfs:subPropertyOf = dul:hasLocation +}}OntologyProperty:MeetingCity2021123362762014-07-08T14:02:23Z +{{ObjectProperty +| rdfs:label@en = meeting city +| rdfs:domain = Legislature +| rdfs:range = Settlement +| rdfs:subPropertyOf = dul:hasLocation +}}OntologyProperty:MeetingRoad2023381362772014-07-08T14:02:37Z +{{ObjectProperty +| rdfs:label@en = meeting road +| rdfs:label@de = zusammentreffende Straße +| rdfs:domain = RoadJunction +| rdfs:range = Road +| rdfs:comment@en = A road that crosses another road at the junction. +| rdfs:comment@de = Eine Straße die an der Kreuzung eine andere Straße kreuzt. +| rdfs:subPropertyOf = dul:hasCommonBoundary +}}OntologyProperty:MeltingPoint2021124191122012-07-31T07:47:44Z{{DatatypeProperty +| rdfs:label@en = melting point +| rdfs:label@de = Schmelzpunkt +| rdfs:label@fr = point de fusion +| rdfs:label@ja = 融点 +| rdfs:range = Temperature +}}OntologyProperty:Member2026823587902022-05-31T15:05:41Z{{DatatypeProperty +| labels = +{{label|en|member}} +{{label|de|Mitglied}} +{{label|nl|lid van}} +| rdfs:domain = Person +| rdfs:range = xsd:string +| owl:equivalentProperty = wikidata:P463 +}}OntologyProperty:MemberOfParliament2021125362782014-07-08T14:02:40Z +{{ObjectProperty +| rdfs:label@en = Member of Parliament +| rdfs:label@de = Abgeordnete +| rdfs:range = Person +| rdfs:subPropertyOf = dul:hasMember +}}OntologyProperty:Membership2021126357042014-06-30T21:32:17Z{{DatatypeProperty +| labels = +{{label|en|membership}} +{{label|de|Mitgliedschaft}} +{{label|nl|lidmaatschap}} +| rdfs:domain = Organisation +| rdfs:range = rdf:langString +}}OntologyProperty:MembershipAsOf2026478237482013-02-15T12:00:03Z{{DatatypeProperty +| labels = +{{label|en|date membership established}} +{{label|nl|datum vaststellen ledental}} +| rdfs:domain = Organisation, Parish +| rdfs:range = xsd:date +}}OntologyProperty:Mentor2027336362792014-07-08T14:02:43Z +{{ObjectProperty +| labels = + {{label|en|mentor}} + {{label|de|Mentor}} + {{label|fr|maître}} + {{label|fr|mentor}} +| rdfs:domain = Artist +| rdfs:range = Artist +| comments = + {{comment|en|A wise and trusted counselor or teacher<ref>http://en.wiktionary.org/wiki/mentor</ref>}} + {{comment|fr|Celui qui sert de guide, de conseiller à quelqu’un. <ref>http://fr.wiktionary.org/wiki/mentor</ref>}} +| rdfs:subPropertyOf = dul:coparticipatesWith +}} +<references/>OntologyProperty:MergedIntoParty20211952525002017-10-17T22:49:21Z#REDIRECT [[OntologyProperty:MergedWith]]OntologyProperty:MergedSettlement2027900274252013-07-12T10:15:10Z{{ObjectProperty +| labels = +{{label|en|merged settlement}} +| rdfs:domain = Settlement +| rdfs:range = Settlement +}}OntologyProperty:MergedWith2023725525022017-10-17T22:50:47Z +{{ObjectProperty +| rdfs:label@en = merged with +| rdfs:label@de = zusammengeschlossen +| rdfs:domain = Organisation +| rdfs:range = Organisation +| rdfs:subPropertyOf = dul:coparticipatesWith +}}OntologyProperty:MergerDate2027107256342013-05-26T13:54:39Z{{DatatypeProperty +| labels = +{{label|en|merger date}} +| rdfs:domain = Place +| rdfs:range = xsd:date +}}OntologyProperty:MeshId2021127476092015-04-03T10:01:48Z{{DatatypeProperty +| labels = +{{label|en|MeSH ID}} +{{label|nl|MeSH ID}} +| rdfs:domain = Disease +| rdfs:range = xsd:string +| owl:equivalentProperty = wikidata:P486 +}}OntologyProperty:MeshName2021128348242014-05-15T05:05:55Z{{DatatypeProperty +| rdfs:label@en = MeSH name +| rdfs:domain = AnatomicalStructure +| rdfs:range = rdf:langString +}}OntologyProperty:MeshNumber2021129501522016-01-04T20:18:55Z{{DatatypeProperty +| rdfs:label@en = MeSH number +| rdfs:domain = AnatomicalStructure +| rdfs:range = xsd:string +| rdfs:subPropertyOf = code +}}OntologyProperty:MessierName2028922307532014-01-22T11:52:39Z{{DatatypeProperty +| rdfs:label@en = Messier name +| rdfs:comment@en = Name for Messier objects +| rdfs:subPropertyOf = name +| rdfs:domain = CelestialBody +| rdfs:range = xsd:string +}}OntologyProperty:MetropolitanBorough2022141362812014-07-08T14:02:49Z +{{ObjectProperty +| labels = + {{label|en|metropolitan borough}} + {{label|nl|stadswijk}} +| rdfs:domain = PopulatedPlace +| rdfs:range = PopulatedPlace +| rdfs:subPropertyOf = dul:isPartOf +}}OntologyProperty:Mgiid2025029191322012-07-31T11:18:56Z{{DatatypeProperty +| rdfs:label@en = mgiid +| rdfs:label@ja = mgiid +| rdfs:comment@en = Mouse Genomic Informatics ID +| rdfs:domain = Biomolecule +| rdfs:range = xsd:string +}}OntologyProperty:MilitaryBranch2021703587912022-05-31T15:09:37Z{{ObjectProperty +| rdfs:label@en = military branch +| rdfs:comment@en = The service branch (Army, Navy, etc.) a person is part of. +| rdfs:domain = MilitaryPerson +| rdfs:range = MilitaryUnit +| owl:equivalentProperty = wikidata:P7779 +| rdfs:subPropertyOf = dul:isMemberOf +}}OntologyProperty:MilitaryCommand2021700338942014-04-04T14:58:26Z{{DatatypeProperty +| rdfs:label@en = military command +| rdfs:label@de = Militärkommando +| rdfs:domain = MilitaryPerson +| rdfs:comment@en = For persons who are notable as commanding officers, the units they commanded. Dates should be given if multiple notable commands were held. +| rdfs:range = xsd:string +}}OntologyProperty:MilitaryFunction2027886491502015-10-13T10:04:44Z{{DatatypeProperty +| labels = +{{label|en|military function}} +{{label|de|militärische Funktion}} +| rdfs:domain = MilitaryPerson +| rdfs:range = xsd:string +}}OntologyProperty:MilitaryGovernment2027555338962014-04-04T14:58:35Z{{DatatypeProperty +| labels = +{{label|en|military government}} +{{label|de|Militärregierung}} +| rdfs:range = xsd:string +}}OntologyProperty:MilitaryRank2021130362832014-07-08T14:02:56Z +{{ObjectProperty +| rdfs:label@en = military rank +| rdfs:label@de = militärischer Rang +| rdfs:comment@en = The highest rank achieved by a person. +| rdfs:domain = MilitaryPerson +| rdfs:subPropertyOf = dul:isMemberOf +}}OntologyProperty:MilitaryService20211951524902017-10-16T17:16:02Z{{ObjectProperty +| labels = + {{label|en|military service}} + {{label|de|Militärdienst}} + {{label|de|service militaire}} +| rdfs:domain = Person +| rdfs:range = MilitaryService +}}OntologyProperty:MilitaryUnit2021699362842014-07-08T14:02:59Z +{{ObjectProperty +| rdfs:label@en = military unit +| rdfs:label@de = Militäreinheit +| rdfs:domain = MilitaryPerson +| rdfs:comment@en = For persons who are not notable as commanding officers, the unit (company, battalion, regiment, etc.) in which they served. +| rdfs:range = MilitaryUnit +| rdfs:subPropertyOf = dul:isMemberOf +}}OntologyProperty:MilitaryUnitSize202210883612010-05-28T13:53:52Z{{DatatypeProperty +| rdfs:label@en = military unit size +| rdfs:comment@en = the size of the military unit +| rdfs:range = xsd:string +}}OntologyProperty:MillSpan2026012223492013-01-11T20:35:27Z{{DatatypeProperty +| labels = +{{label|en|mill span}} +{{label|nl|vlucht}} +{{label|el|Εκπέτασμα}} +| rdfs:domain = Mill +| rdfs:range = Length +}}OntologyProperty:MillType2026011362852014-07-08T14:03:02Z +{{ObjectProperty +| labels = + {{label|el|τύπος μύλου}} + {{label|en|mill type}} + {{label|nl|molen-type}} +| rdfs:domain = Mill +| rdfs:subPropertyOf = dul:isClassifiedBy +}}OntologyProperty:MillsCodeBE2026316223652013-01-11T20:52:16Z{{DatatypeProperty +| labels = +{{label|en|mill code BE}} +{{label|nl|molen code BE}} +| comments = +{{comment|en|mills code from the Belgian database on mills}} +{{comment|nl|unieke code voor molens in database www.molenechos.org}} +| rdfs:domain = Mill +| rdfs:range = xsd:string +| rdfs:comment@en = +}}OntologyProperty:MillsCodeDutch2026052223642013-01-11T20:50:22Z{{DatatypeProperty +| labels = +{{label|en|mill code NL}} +{{label|nl|molen code NL}} +| rdfs:domain = Mill +| rdfs:range = xsd:string +| rdfs:comment@en = +}}OntologyProperty:MillsCodeNL2026050223602013-01-11T20:45:13Z{{DatatypeProperty +| labels = +{{label|en|mill code NL}} +{{label|nl|molen code NL}} +| rdfs:domain = Mill +| rdfs:range = xsd:string +| comments = +{{comment|en|mills code from the central Dutch database on mills}} +{{comment|nl|unieke code voor molens in www.molendatabase.nl}} +}}OntologyProperty:MillsCodeNLVerdwenen2026051223622013-01-11T20:48:23Z{{DatatypeProperty +| labels = +{{label|en|mill dissapeared code NL }} +{{label|nl|verdwenen molen code NL}} +| rdfs:domain = Mill +| rdfs:range = xsd:string +| rdfs:comment@en = +}}OntologyProperty:MillsCodeNLWindmotoren2026053223662013-01-11T20:52:55Z{{DatatypeProperty +| labels = +{{label|en|millsCodeNLWindmotoren}} +{{label|nl|millsCodeNLWindmotoren}} +| rdfs:domain = Mill +| rdfs:range = xsd:string +| rdfs:comment@en = +}}OntologyProperty:Min2027918276232013-07-15T13:27:38Z{{DatatypeProperty +| labels = +{{label|en|min}} +| rdfs:range = xsd:nonNegativeInteger +}}OntologyProperty:MinTime20211299487722015-08-13T10:24:01Z{{DatatypeProperty +| labels = + {{label|en|minimum preparation time}} +| comments = + {{comment|en|Minimum preparation time of a recipe / Food}} +| rdfs:domain = Food +| rdfs:range = Time +}}OntologyProperty:MinimumArea2027086338992014-04-04T14:58:47Z{{DatatypeProperty +| labels = +{{label|en|minimum area}} +{{label|de|Mindestfläche}} +| rdfs:domain = Place +| rdfs:range = xsd:string +}}OntologyProperty:MinimumAreaQuote2027087256112013-05-26T13:28:25Z{{DatatypeProperty +| labels = +{{label|en|minimum area quote}} +| rdfs:domain = Place +| rdfs:range = xsd:string +}}OntologyProperty:MinimumDischarge202113181312010-05-28T13:22:50Z{{DatatypeProperty +| rdfs:label@en = minimum discharge +| rdfs:range = FlowRate +}}OntologyProperty:MinimumElevation2021132112742011-03-30T09:41:32Z{{DatatypeProperty +| rdfs:label@en = minimum elevation +| rdfs:label@el = βάση +| rdfs:domain = Place +| rdfs:range = Length +| rdfs:comment@en = minimum elevation above the sea level +}}OntologyProperty:MinimumInclination202113381332010-05-28T13:23:05Z{{DatatypeProperty +| rdfs:label@en = minimum inclination +| rdfs:domain = LaunchPad +| rdfs:range = xsd:float +}}OntologyProperty:MinimumTemperature2021134339002014-04-04T14:58:52Z{{DatatypeProperty +| rdfs:label@en = minimum temperature +| rdfs:label@de = geringste Temperatur +| rdfs:label@el = ελάχιστη θερμοκρασία +| rdfs:domain = Planet +| rdfs:range = Temperature +}}OntologyProperty:Minister20211949524882017-10-16T16:44:23Z{{ObjectProperty +| labels = + {{label|en|minister}} + {{label|de|Minister}} + {{label|fr|ministre}} +| rdfs:range = Politician +}}OntologyProperty:Minority2026909339012014-04-04T14:58:56Z{{ObjectProperty +| labels = +{{label|en|minority}} +{{label|de|Minderheit}} +| rdfs:domain = Settlement +| rdfs:range = Group +}}OntologyProperty:MinorityFloorLeader202236384022010-05-28T13:59:28Z{{DatatypeProperty +| rdfs:label@en = minority floor leader +| rdfs:comment@en = number of office holder +| rdfs:range = xsd:integer +}}OntologyProperty:MinorityLeader202236184002010-05-28T13:59:12Z{{DatatypeProperty +| rdfs:label@en = minority leader +| rdfs:comment@en = number of office holder +| rdfs:range = xsd:integer +}}OntologyProperty:MirDockings2021135103852010-11-10T14:33:03Z{{DatatypeProperty +| rdfs:label@en = mir dockings +| rdfs:domain = SpaceShuttle +| rdfs:range = xsd:nonNegativeInteger +}}OntologyProperty:Mission2021136515852016-11-04T12:53:04Z +{{ObjectProperty +| rdfs:label@en = mission +| rdfs:label@de = Mission +| rdfs:label@el = αποστολή +| rdfs:domain = +| rdfs:range = SpaceMission +| rdfs:subPropertyOf = dul:isParticipantIn +}}OntologyProperty:MissionDuration2021137339032014-04-04T14:59:06Z{{DatatypeProperty +| rdfs:label@en = mission duration +| rdfs:label@de = Missionsdauer +| rdfs:domain = SpaceMission +| rdfs:range = Time +}}OntologyProperty:Missions2021138339042014-04-04T14:59:11Z{{DatatypeProperty +| rdfs:label@en = missions +| rdfs:label@de = Missionen +| rdfs:label@el = αποστολές +| rdfs:domain = SpaceShuttle +| rdfs:range = xsd:nonNegativeInteger +}}OntologyProperty:Model2021139339052014-04-04T14:59:15Z{{DatatypeProperty +| rdfs:label@en = model +| rdfs:label@de = Modell +| rdfs:label@fr = modèle +| rdfs:domain = Sales +| rdfs:range = xsd:string +}}OntologyProperty:ModelEndDate202114081392010-05-28T13:23:50Z{{DatatypeProperty +| rdfs:label@en = model end date +| rdfs:domain = MeanOfTransportation +| rdfs:range = xsd:date +}}OntologyProperty:ModelEndYear202114181402010-05-28T13:23:56Z{{DatatypeProperty +| rdfs:label@en = model end year +| rdfs:domain = MeanOfTransportation +| rdfs:range = xsd:gYear +}}OntologyProperty:ModelLineVehicle20211176485232015-08-05T14:54:18Z{{DatatypeProperty +| labels = +{{label|en|type series}} +{{label|de|Baureihe}} +| rdfs:domain = MeanOfTransportation +| rdfs:range = xsd:string +}}OntologyProperty:ModelStartDate202114281412010-05-28T13:24:05Z{{DatatypeProperty +| rdfs:label@en = model start date +| rdfs:domain = MeanOfTransportation +| rdfs:range = xsd:date +}}OntologyProperty:ModelStartYear202114381422010-05-28T13:24:12Z{{DatatypeProperty +| rdfs:label@en = model start year +| rdfs:domain = MeanOfTransportation +| rdfs:range = xsd:gYear +}}OntologyProperty:Moderna20213126569772022-03-09T10:37:47Z{{DatatypeProperty +| labels = + {{label|en|Moderna}} + {{label|fr|Moderna}} + {{label|zh|莫德纳}} +| comments = + {{comment|en|Moderna, Inc is an American pharmaceutical and biotechnology company based in Cambridge, Massachusetts.}} + {{comment|fr|Moderna, Inc et une compagnie américaine pharmaceutique et de biotechnologie basée à Cambridge, Massachusetts.}} + {{comment|zh|莫德纳,是一家总部位于美国马萨诸塞州剑桥市的跨国制药、生物技术公司,专注于癌症免疫治疗,包括基于mRNA的药物发现、药物研发和疫苗技术}} +| rdfs:range = xsd:string +| owl:equivalentProperty = vaccine +| rdfs:domain = owl:Thing +}}OntologyProperty:ModernaCumul20213127549132021-08-12T06:23:43Z{{DatatypeProperty +| labels = +{{label|en|ModernaCumulativeDoses}} +| comments = + {{comment|en|Moderna, Inc is an American pharmaceutical and biotechnology company based in Cambridge, Massachusetts. }} + {{comment|en|莫德纳,是一家总部位于美国马萨诸塞州剑桥市的跨国制药、生物技术公司,专注于癌症免疫治疗,包括基于mRNA的药物发现、药物研发和疫苗技术}} +| rdfs:range = xsd:integer +| owl:equivalentProperty = moderna +| rdfs:domain = owl:Thing +}}OntologyProperty:MolarMass20212041531842018-09-28T14:26:56Z{{DatatypeProperty +| labels = +{{label|en|molar mass}} +{{label|de|Molare Masse}} +{{label|nl|Molaire massa}} +| rdfs:domain = ChemicalSubstance +| rdfs:range = xsd:double +| rdfs:subPropertyOf = mass +}}OntologyProperty:MolecularWeight2029141339062014-04-04T14:59:21Z{{DatatypeProperty +| labels = +{{label|en|molecular weight}} +{{label|de|Molekulargewicht}} +{{label|nl|molgewicht}} +| rdfs:domain = ChemicalSubstance +| rdfs:range = xsd:nonNegativeInteger +}}OntologyProperty:Monarch2022327362872014-07-08T14:03:08Z +{{ObjectProperty +| labels = + {{label|en|monarch}} + {{label|de|Monarch}} + {{label|nl|monarch}} +| rdfs:range = Person +| rdfs:subPropertyOf = dul:sameSettingAs +}}OntologyProperty:Month2025344225742013-01-14T21:24:19Z{{ DatatypeProperty + + | rdfs:label@en = month + | rdfs:label@el = μήνας + | rdfs:label@de = Monat + | rdfs:domain = owl:Thing + | rdfs:range = xsd:string + +}}OntologyProperty:Mood2027766339082014-04-04T14:59:29Z{{DatatypeProperty +| labels = +{{label|en|mood}} +{{label|de|Stimmung}} +| rdfs:domain = Person +| rdfs:range = xsd:string +}}OntologyProperty:MostDownPoint2026916362882014-07-08T14:03:11Z +{{ObjectProperty +| labels = + {{label|en|most down point of a norwegian settlement}} +| rdfs:domain = NorwaySettlement +| rdfs:range = Place +| rdfs:subPropertyOf = dul:hasPart +}}OntologyProperty:MostSuccessfulPlayer20211839520412017-05-06T16:23:13Z +{{ObjectProperty +| labels = + {{label|en|most successful player}} + {{label|es|mejor jugador}} +| rdfs:domain = SportsEvent +| rdfs:range = Athlete +| comments = + {{comment|en|the best player in a certain sport competition. E.g, in a football competition, the player that scored more goals.}} + {{comment|es|el mejor jugador de una cierta competición deportiva. Por ejemplo, en una competición de fútbol, aquel jugador que ha marcado más goles. }} +}}OntologyProperty:MostWins2021144362892014-07-08T14:03:15Z +{{ObjectProperty +| rdfs:label@en = most wins +| rdfs:label@de = die meisten Siege +| rdfs:domain = Race +| rdfs:subPropertyOf = dul:hasParticipant +}}OntologyProperty:Mother2027546535852020-01-30T18:04:33Z{{ObjectProperty +| labels = + {{label|en|mother}} + {{label|de|Mutter}} +| rdfs:domain = Woman +| rdfs:range = Person +| rdfs:subPropertyOf = dul:sameSettingAs +| owl:equivalentProperty = wikidata:P25 +}}OntologyProperty:Motive20211897568222022-03-01T00:09:04Z{{DatatypeProperty +| labels = + {{label|en|motive}} + {{label|fr|motif}} + {{label|de|Motiv}} +| rdfs:domain = Criminal +| rdfs:range = xsd:string +| comments = + {{comment|en|The motive of the crime(s) this individual is known for.}} + {{comment|fr|Motif du ou des crimes pour lesquels cette personne est connue.}} +}}OntologyProperty:Motto2021146339132014-04-04T15:00:15Z{{DatatypeProperty +| labels = +{{label|en|motto}} +{{label|de|Motto}} +{{label|nl|motto}} +{{label|el|σύνθημα}} +{{label|pt|lema}} +{{label|fr|devise}} +| rdfs:range = xsd:string +}}OntologyProperty:Mount2027851272492013-07-09T14:23:13Z{{DatatypeProperty +| rdfs:label@en = mount +| rdfs:domain = Person +| rdfs:range = xsd:string +}}OntologyProperty:MountainRange2022415362912014-07-08T14:03:22Z +{{ObjectProperty +| labels = + {{label|en|mountain range}} + {{label|de|Gebirge}} + {{label|nl|bergketen}} +| rdfs:domain = Mountain +| rdfs:range = MountainRange +| rdfs:subPropertyOf = dul:isPartOf +}}OntologyProperty:MouthCountry2021148362922014-07-08T14:03:25Z +{{ObjectProperty +| rdfs:label@en = mouth country +| rdfs:label@el = χώρες_λεκάνης +| rdfs:domain = River +| rdfs:range = Country +| rdfs:subPropertyOf = dul:hasLocation +}}OntologyProperty:MouthDistrict2021149362932014-07-08T14:03:28Z +{{ObjectProperty +| rdfs:label@en = mouth district +| rdfs:domain = River +| rdfs:range = PopulatedPlace +| rdfs:subPropertyOf = dul:hasLocation +}}OntologyProperty:MouthElevation2021150114622011-03-31T21:54:23Z{{DatatypeProperty +| rdfs:label@en = mouth elevation +| rdfs:label@el = ύψος_εκβολών +| rdfs:range = Length +}}OntologyProperty:MouthMountain2021151362942014-07-08T14:03:31Z +{{ObjectProperty +| rdfs:label@en = mouth mountain +| rdfs:domain = River +| rdfs:range = Mountain +| rdfs:subPropertyOf = dul:hasLocation +}}OntologyProperty:MouthPlace2021152362952014-07-08T14:03:48Z +{{ObjectProperty +| rdfs:label@en = mouth place +| rdfs:domain = River +| rdfs:range = PopulatedPlace +| rdfs:subPropertyOf = dul:hasLocation +}}OntologyProperty:MouthPosition2021153362962014-07-08T14:03:52Z +{{ObjectProperty +| rdfs:label@en = mouth position +| rdfs:label@it = foce (di un fiume) +| rdfs:label@es = lugar de desembocadura +| rdfs:domain = River +| rdfs:range = geo:SpatialThing +| rdfs:subPropertyOf = dul:hasLocation +}}OntologyProperty:MouthRegion2021154362972014-07-08T14:03:56Z +{{ObjectProperty +| rdfs:label@en = mouth region +| rdfs:domain = River +| rdfs:range = PopulatedPlace +| rdfs:subPropertyOf = dul:hasLocation +}}OntologyProperty:MouthState2021155362982014-07-08T14:03:59Z +{{ObjectProperty +| rdfs:label@en = mouth state +| rdfs:domain = River +| rdfs:range = PopulatedPlace +| rdfs:subPropertyOf = dul:hasLocation +}}OntologyProperty:Movement2021156476102015-04-03T10:03:18Z{{ObjectProperty +| labels = + {{label|en|movement}} + {{label|de|Bewegung}} + {{label|nl|beweging}} + {{label|fr|mouvement artistique}} +| rdfs:domain = Artist +| rdfs:comment@en = artistic movement or school with which artist is associated +| rdfs:subPropertyOf = dul:isMemberOf +| owl:equivalentProperty = wikidata:P135 +}}OntologyProperty:Movie2026825363002014-07-08T14:04:06Z +{{ObjectProperty +| labels = + {{label|en|movie}} + {{label|de|Film}} +| rdfs:domain = Person +| rdfs:range = Film +| rdfs:subPropertyOf = dul:isParticipantIn +}}OntologyProperty:Mukhtar2026960254342013-05-25T13:45:32Z{{DatatypeProperty +| labels = +{{label|en|mukthar of a lebanon settlement}} +| rdfs:domain = LebanonSettlement +| rdfs:range = xsd:string +}}OntologyProperty:Municipality2021157536982020-09-04T15:25:28Z +{{ObjectProperty +| labels = + {{label|en|municipality}} + {{label|de|Gemeinde}} + {{label|nl|plaats}} + {{label|fr|municipalité}} +| rdfs:range = PopulatedPlace +| rdfs:subPropertyOf = dul:isPartOf +| owl:equivalentProperty = ceo:heeftGemeente +}}OntologyProperty:MunicipalityAbsorbedBy2028145339512014-04-04T15:04:04Z{{ObjectProperty +| labels = +{{label|en|absorbed by}} +{{label|nl|opgegaan in}} +| rdfs:domain = FormerMunicipality +| rdfs:range = Municipality +}}OntologyProperty:MunicipalityCode2022439536992020-09-04T15:26:26Z{{DatatypeProperty +| labels = +{{label|en|municipality code}} +{{label|de|Gemeindecode}} +{{label|nl|gemeente-code}} +| rdfs:comment@en = The [http://en.wikipedia.org/wiki/Community_Identification_Number Official Municipality Key], formerly also known as the Official Municipality Characteristic Number or Municipality Code Number, is a number sequence for the identification of politically independent municipalities or unincorporated areas. It is used in Germany, Austria and Switzerland. +| rdfs:domain = Place +| rdfs:range = xsd:string +| owl:equivalentProperty = ceo:gemeenteCode +}}OntologyProperty:MunicipalityRenamedTo2028148339202014-04-04T15:00:55Z{{DatatypeProperty +| labels = +{{label|en|a municipality's new name}} +{{label|de|neuer Name einer Gemeinde}} +{{label|nl|nieuwe gemeentenaam}} +| rdfs:domain = Municipality +| rdfs:range = xsd:string +}}OntologyProperty:MunicipalityType2024203339212014-04-04T15:01:03Z{{DatatypeProperty +| labels = +{{label|en|type of municipality}} +{{label|de|Gemeindetyp}} +{{label|nl|type gemeente}} +| rdfs:domain = Municipality +| rdfs:range = xsd:string +}}OntologyProperty:Museum2025622363022014-07-08T14:04:12Z +{{ObjectProperty +| labels = + {{label|en|museum}} + {{label|el|μουσείο}} + {{label|de|museum}} + {{label|ja|博物館}} +| rdfs:domain = Artwork +| rdfs:range = Museum +| rdfs:subPropertyOf = dul:hasLocation +}}OntologyProperty:MuseumType2026271363032014-07-08T14:04:15Z +{{ObjectProperty +| labels = + {{label|en|museumType}} + {{label|nl|soort museum}} +| comments = + {{comment|en|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}} + {{comment|nl|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 }} +| rdfs:domain = Museum +| rdfs:range = owl:Thing +| rdf:type = | rdfs:subPropertyOf = Type +| owl:equivalentProperty = +| rdfs:subPropertyOf = dul:isClassifiedBy +}}OntologyProperty:MusicBand2029274568852022-03-02T17:34:26Z{{ObjectProperty +| labels = + {{label|en|Music Band}} + {{label|fr|orchestre}} +| rdfs:domain = MusicalArtist +| rdfs:range = Band +}}OntologyProperty:MusicBrainzArtistId20212328536482020-07-12T09:50:34Z{{DatatypeProperty +| labels = +{{label|en|MusicBrainz artist id}} +{{label|nl|MusicBrainz artist id}} +{{label|el|MusicBrainz artist id}} +{{label|ja|MusicBrainz artist id}} +|comments= +{{comment|en|MusicBrainz artist. Applies to artists}} +| rdfs:range = xsd:string +| owl:equivalentProperty = wikidata:P434 +| rdfs:subPropertyOf = code +}}OntologyProperty:MusicBy2021161476112015-04-03T10:04:05Z{{ObjectProperty +| rdfs:label@en = music by +| rdfs:label@de = Musik von +| rdfs:domain = Musical +| rdfs:range = Person +| rdfs:subPropertyOf = dul:coparticipatesWith +| owl:equivalentProperty = wikidata:P86 +}}OntologyProperty:MusicComposer2021158363052014-07-08T14:04:22Z +{{ObjectProperty +| labels = + {{label|en|music composer}} + {{label|de|komponist}} + {{label|nl|componist}} + {{label|el|μουσική}} +| rdfs:domain = Work +| rdfs:range = MusicalArtist +| owl:equivalentProperty = schema:musicBy +| rdfs:subPropertyOf = dul:coparticipatesWith +}}OntologyProperty:MusicFormat2026433571042022-03-12T19:33:50Z{{DatatypeProperty +| labels = + {{label|en|musicFormat}} + {{label|de|musikFormate}} + {{label|fr|format de la musique}} +| comments = + {{comment|en|The format of the album: EP, Single etc.}} + {{comment|fr|Format de l'album: EP, 45tours (single), etc.}} +| rdfs:domain = Album +| rdfs:range = xsd:string +}}OntologyProperty:MusicFusionGenre2021162363062014-07-08T14:04:25Z +{{ObjectProperty +| rdfs:label@en = music fusion genre +| rdfs:domain = MusicGenre +| rdfs:range = MusicGenre +| rdfs:subPropertyOf = dul:overlaps +}}OntologyProperty:MusicSubgenre2021163363072014-07-08T14:04:28Z +{{ObjectProperty +| rdfs:label@en = music subgenre +| rdfs:label@de = Musik Subgenre +| rdfs:domain = MusicGenre +| rdfs:range = MusicGenre +| rdfs:subPropertyOf = dul:isSpecializedBy +}}OntologyProperty:MusicType2026258363082014-07-08T14:04:31Z +{{ObjectProperty +| labels = + {{label|en|musicType}} + {{label|nl|soort muziekwerk}} +| comments = + {{comment|en|Type is too general. We should be able to distinguish types of music from types of architecture}} + {{comment|nl|Type is te algemeen. We moeten soorten muziek van soorten gebouwen kunnen onderscheiden}} +| rdfs:domain = MusicalWork +| rdfs:range = owl:Thing +| rdf:type = | rdfs:subPropertyOf = Type +| owl:equivalentProperty = +| rdfs:subPropertyOf = dul:isClassifiedBy +}}OntologyProperty:MusicalArtist2021159476122015-04-03T10:04:50Z{{ObjectProperty +| rdfs:label@en = musical artist +| rdfs:domain = Single +| rdfs:range = MusicalArtist +| rdfs:subPropertyOf = dul:coparticipatesWith +| owl:equivalentProperty = wikidata:P175 +}}OntologyProperty:MusicalBand2021160363102014-07-08T14:04:39Z +{{ObjectProperty +| rdfs:label@en = musical band +| rdfs:domain = Single +| rdfs:range = Band +| rdfs:subPropertyOf = dul:coparticipatesWith +}}OntologyProperty:MusicalKey2026285391162015-01-09T18:33:18Z{{DatatypeProperty +| labels = +{{label|en|musical key}} +{{label|de|Tonart}} +{{label|el|μουσικό κλειδί}} +{{label|nl|toonsoort}} +| rdfs:domain = MusicalWork +| rdfs:range = xsd:string +| rdf:type = +| rdfs:subPropertyOf = +| owl:equivalentProperty = +}}OntologyProperty:Musicians2022635574392022-04-17T21:18:37Z +{{ObjectProperty +| labels = + {{label|en|musicians}} + {{label|fr|musiciens}} + {{label|de|Musiker}} + {{label|el|μουσικοί}} +| rdfs:domain = Instrument +| rdfs:comment@en = | rdfs:range = MusicalArtist +| rdfs:subPropertyOf = dul:coparticipatesWith +}}OntologyProperty:MuteCharacterInPlay2023826133462011-06-06T10:22:32Z{{DatatypeProperty +| rdfs:label@en = mute character in play +| rdfs:domain = Play +| rdfs:range = xsd:string +| rdfs:subPropertyOf = characterInPlay +| rdfs:comment@en = Name of a mute character in play. +}}OntologyProperty:Mvp2027688269602013-07-04T09:29:48Z{{DatatypeProperty +| labels = +{{label|en|mvp}} +| rdfs:domain = Athlete +| rdfs:range = xsd:string +}}OntologyProperty:Mythology2028200339262014-04-04T15:01:31Z{{ObjectProperty +| labels = +{{label|en|mythology}} +{{label|de|Mythologie}} +{{label|it|mitologia}} +{{label|el|μυθολογία}} +| rdfs:domain = MythologicalFigure +| rdfs:range = owl:Thing +}}OntologyProperty:NaacpImageAward2021164363122014-07-08T14:04:47Z +{{ObjectProperty +| rdfs:label@en = NAACP Image Award +| rdfs:domain = Actor +| rdfs:range = Award +| rdfs:subPropertyOf = dul:coparticipatesWith +}}OntologyProperty:Name2026811536582020-07-30T21:11:09Z{{DatatypeProperty +| labels = +{{label|en|name}} +{{label|de|Name}} +| rdfs:range = rdf:langString +| owl:equivalentProperty = schema:name +}}OntologyProperty:NameAsOf2028912339282014-04-04T15:01:50Z{{DatatypeProperty +| labels = +{{label|en|so named since}} +{{label|de|so genannt seit}} +{{label|nl|zo genoemd sinds}} +| rdfs:domain = owl:Thing +| rdfs:range = xsd:gYear +}}OntologyProperty:NameDay2024133231532013-01-18T11:10:49Z{{DatatypeProperty +| rdfs:label@en = name day +| rdfs:label@el = ονομαστική εορτή +| rdfs:label@pl = imieniny +| rdfs:domain = GivenName +| rdfs:range = xsd:date +}}OntologyProperty:NameInCantoneseChinese20211716513302016-06-30T11:15:09Z{{DatatypeProperty +| labels = +{{label|en|name in Yue Chinese}} +{{label|nl|naam in het Kantonees Chinees}} +| rdfs:range = rdf:langString +| rdfs:subPropertyOf = name +}}OntologyProperty:NameInHangulKorean20211720513412016-06-30T11:37:05Z{{DatatypeProperty +| labels = +{{label|en|name in Hangul-written Korean}} +{{label|nl|naam in Hangul-geschreven Koreaans}} +| rdfs:range = rdf:langString +| rdfs:subPropertyOf = name +}}OntologyProperty:NameInHanjaKorean20211721513422016-06-30T11:38:08Z{{DatatypeProperty +| labels = +{{label|en|name in Hanja-written (traditional) Korean}} +{{label|nl|naam in Hanja-geschreven Koreaans}} +| rdfs:range = rdf:langString +| rdfs:subPropertyOf = name +}}OntologyProperty:NameInJapanese20211712513182016-06-30T10:14:23Z{{DatatypeProperty +| labels = +{{label|en|name in Japanese}} +{{label|de|Name auf japanisch}} +{{label|nl|naam in het Japans}} +| rdfs:range = rdf:langString +| rdfs:subPropertyOf = name +}}OntologyProperty:NameInMindongyuChinese20211718513342016-06-30T11:22:05Z{{DatatypeProperty +| labels = +{{label|en|name in Mindongyu Chinese}} +{{label|nl|naam in Mindongyu Chinees}} +| rdfs:range = rdf:langString +| rdfs:subPropertyOf = name +}}OntologyProperty:NameInMinnanyuChinese20211719513362016-06-30T11:27:30Z{{DatatypeProperty +| labels = +{{label|en|name in Minnanyu Chinese}} +{{label|nl|naam in Minnanyu Chinees}} +| rdfs:range = rdf:langString +| rdfs:subPropertyOf = name +}}OntologyProperty:NameInPinyinChinese20211714513262016-06-30T11:06:09Z{{DatatypeProperty +| labels = +{{label|en|name in Pinyin Chinese}} +{{label|nl|naam in het Pinyin Chinees}} +| rdfs:range = rdf:langString +| rdfs:subPropertyOf = name +}}OntologyProperty:NameInSimplifiedChinese20211715513272016-06-30T11:08:35Z{{DatatypeProperty +| labels = +{{label|en|name in Simplified Chinese}} +{{label|nl|naam in het Vereenvoudigd Chinees}} +| rdfs:range = rdf:langString +| rdfs:subPropertyOf = name +}}OntologyProperty:NameInTraditionalChinese20211713513252016-06-30T11:04:00Z{{DatatypeProperty +| labels = +{{label|en|name in Traditional Chinese}} +{{label|nl|naam in het Traditioneel Chinees}} +| rdfs:range = rdf:langString +| rdfs:subPropertyOf = name +}}OntologyProperty:NameInWadeGilesChinese20211717513322016-06-30T11:18:01Z{{DatatypeProperty +| labels = +{{label|en|name in the Wade-Giles transscription of Chinese}} +{{label|nl|naam in het Wade-Giles transscriptie van het Chinees}} +| rdfs:range = rdf:langString +| rdfs:subPropertyOf = name +}}OntologyProperty:NamedAfter2021165476132015-04-03T10:05:58Z{{ObjectProperty +| rdfs:label@en = named after +| rdfs:label@de = benannt nach +| rdfs:domain = owl:Thing +| rdfs:subPropertyOf = dul:sameSettingAs +| owl:equivalentProperty = wikidata:P138 +}}OntologyProperty:NamedByLanguage2027931277042013-07-16T09:25:15Z{{ObjectProperty +| labels = +{{label|en|named by language}} +| rdfs:domain = Place +| rdfs:range = Place +}}OntologyProperty:Names2026138462142015-03-18T11:03:53Z{{DatatypeProperty +| rdfs:label@en = names +| rdfs:label@de = Namen +| rdfs:domain = Openswarm +| rdfs:range = rdf:langString +}}OntologyProperty:Narrator2021166567972022-02-28T21:42:04Z{{ObjectProperty +| labels = + {{label|en|narrator}} + {{label|fr|narrateur}} + {{label|de|Erzähler}} +| rdfs:domain = Work +| rdfs:range = Person +| rdfs:subPropertyOf = dul:coparticipatesWith +}}OntologyProperty:Nation2027300339322014-04-04T15:02:08Z{{DatatypeProperty +| labels = +{{label|en|nation}} +{{label|de|Nation}} +| rdfs:domain = PopulatedPlace +| rdfs:range = xsd:string +}}OntologyProperty:NationalAffiliation2023340528412018-02-08T20:31:05Z{{ObjectProperty +| labels = + {{label|en|national affiliation}} + {{label|pt|afiliacao nacional}} +| rdfs:domain = PoliticalParty +| rdfs:subPropertyOf = +}}OntologyProperty:NationalChampionship2028054339332014-04-04T15:02:12Z{{DatatypeProperty +| labels = +{{label|en|national championship}} +{{label|de|nationale Meisterschaft}} +| rdfs:domain = Athlete +| rdfs:range = xsd:string +}}OntologyProperty:NationalFilmAward2021167363162014-07-08T14:05:02Z +{{ObjectProperty +| rdfs:label@en = National Film Award +| rdfs:label@de = Nationaler Filmpreis +| rdfs:domain = Actor +| rdfs:range = Award +| rdfs:subPropertyOf = dul:coparticipatesWith +}}OntologyProperty:NationalOlympicCommittee2021169363172014-07-08T14:05:07Z +{{ObjectProperty +| rdfs:label@en = National Olympic Committee +| rdfs:label@de = Nationales Olympisches Komitee +| rdfs:label@nl = nationaal Olympisch commité +| rdfs:domain = OlympicResult +| rdfs:subPropertyOf = dul:hasParticipant +}}OntologyProperty:NationalRanking2021171525882017-10-31T08:54:03Z{{DatatypeProperty +| rdfs:label@en = national ranking +| rdfs:domain = EducationalInstitution +| rdfs:range = xsd:positiveInteger +}}OntologyProperty:NationalSelection2027875339362014-04-04T15:02:25Z{{ObjectProperty +| rdfs:label@en = national selection +| rdfs:label@de = nationale Auswahl +| rdfs:domain = Agent +}}OntologyProperty:NationalTeam2021172514402016-08-16T07:33:29Z +{{ObjectProperty +| labels = + {{label|en|national team}} + {{label|de|Nationalmannschaft}} + {{label|nl|nationaal team}} + {{label|ja|代表国}} +| rdfs:domain = Athlete +| rdfs:range = SportsTeam +| rdfs:subPropertyOf = dul:isMemberOf +}}OntologyProperty:NationalTeamMatchPoint2027828271412013-07-05T15:25:34Z{{DatatypeProperty +| labels = +{{label|en|national team match point}} +| rdfs:domain = Person +| rdfs:range = xsd:string +}}OntologyProperty:NationalTeamYear2027827271402013-07-05T15:25:11Z{{DatatypeProperty +| labels = +{{label|en|national team year}} +| rdfs:domain = Person +| rdfs:range = xsd:string +}}OntologyProperty:NationalTopographicSystemMapNumber202241790492010-06-01T15:06:17Z{{DatatypeProperty +| rdfs:label@en = National Topographic System map number +| rdfs:domain = Place +| rdfs:range = xsd:string +}}OntologyProperty:NationalTournament2027569520002017-03-22T16:48:30Z{{ObjectProperty +| labels = +{{label|en|National tournament}} +| rdfs:range = Tournament +| rdfs:domain = Person +}}OntologyProperty:NationalTournamentBronze2027581268072013-07-02T10:03:09Z{{DatatypeProperty +| labels = +{{label|en|national tournament bronze}} +| rdfs:domain = Person +| rdfs:range = xsd:nonNegativeInteger +}}OntologyProperty:NationalTournamentGold2027579268052013-07-02T10:02:11Z{{DatatypeProperty +| labels = +{{label|en|national tournament gold}} +| rdfs:domain = Person +| rdfs:range = xsd:nonNegativeInteger +}}OntologyProperty:NationalTournamentSilver2027580268062013-07-02T10:02:48Z{{DatatypeProperty +| labels = +{{label|en|national tournament silver}} +| rdfs:domain = Person +| rdfs:range = xsd:nonNegativeInteger +}}OntologyProperty:NationalYears2021173514412016-08-16T07:34:18Z{{DatatypeProperty +| rdfs:label@en = national years +| rdfs:label@ja = 代表年 +| rdfs:domain = SoccerPlayer +| rdfs:range = xsd:gYear +}}OntologyProperty:Nationality2021168587782022-05-31T13:55:16Z +{{ObjectProperty +| labels = + {{label|en|nationality}} + {{label|nl|nationaliteit}} + {{label|de|Nationalität}} + {{label|fr|nationalité}} + {{label|pt|nacionalidade}} + {{label|el|εθνικότητα}} + {{label|ja|国籍}} +| rdfs:domain = Person +| rdfs:range = Country +| owl:equivalentProperty = schema:nationality, wikidata:P27 +| rdfs:subPropertyOf = dul:hasLocation +}}OntologyProperty:NbRevPerMonth20214281591352022-12-02T12:01:11Z{{DatatypeProperty +| labels = +{{label|en| Number of revision per month }} +{{label|fr| Nombre de révisions par mois}} +| comments = +{{comment|en| used for DBpedia History > Subject must be a blank node containing a dc:date and a rdfs:value }} +{{comment|fr| utilisé par DBpedia Historique > Le sujet de cette relation doit être un noeud blanc contenant une dc:date et une rdfs:value }} +| rdfs:domain = prov:Entity +| rdfs:range = xsd:anyURI +}}OntologyProperty:NbRevPerYear20214283591342022-12-02T12:01:01Z{{DatatypeProperty +| labels = +{{label|en| Number of revision per year }} +{{label|fr| Nombre de révisions par année}} +| comments = +{{comment|en| used for DBpedia History > Subject must be a blank node containing a dc:date and a rdfs:value }} +{{comment|fr| utilisé par DBpedia Historique > Le sujet de cette relation doit être un noeud blanc contenant une dc:date et une rdfs:value }} +| rdfs:domain = prov:Entity +| rdfs:range = xsd:anyURI +}}OntologyProperty:NbUniqueContrib20214286591272022-12-01T17:35:03Z{{DatatypeProperty +| labels = +{{label|en| Number of unique contributors }} +{{label|fr| Nombre de contributeurs uniques }} +| comments = +{{comment|en| used for DBpedia History }} +{{comment|fr| utilisé par DBpedia Historique }} +| rdfs:domain = prov:Entity +| rdfs:range = xsd:integer +}}OntologyProperty:NcaaSeason2027680269522013-07-04T09:25:39Z{{DatatypeProperty +| labels = +{{label|en|ncaa season}} +| rdfs:domain = Athlete +| rdfs:range = xsd:string +}}OntologyProperty:NcaaTeam2027681520072017-03-22T20:23:52Z{{ObjectProperty +| labels = +{{label|en|ncaa team}} +| rdfs:domain = Athlete +| rdfs:range = SportsTeam +}}OntologyProperty:Ncbhof2027676269462013-07-04T08:02:04Z{{DatatypeProperty +| labels = +{{label|en|ncbhof}} +| rdfs:range = xsd:string +| rdfs:domain = Athlete +}}OntologyProperty:NciId20211877522142017-10-07T15:53:42Z{{DatatypeProperty +| labels = +{{label|en|NCI}} +{{label|nl|NCI}} +{{label|de|NCI}} +{{label|fr|NCI}} +| rdfs:domain = Disease +| rdfs:range = xsd:string +| owl:equivalentProperty = wikidata:P1395 +}}OntologyProperty:NdlId20211042528802018-02-13T10:49:24Z{{DatatypeProperty +| labels = +{{label|en|NDL id}} +| comments = +{{comment|en|National Diet Library of Japan identificator. http://id.ndl.go.jp/auth/ndlna/$1}} +| rdfs:domain = owl:Thing +| rdfs:range = xsd:string +| owl:equivalentProperty = wikidata:P349 +| rdfs:subPropertyOf = code +}}OntologyProperty:NearestCity2021175363202014-07-08T14:05:19Z +{{ObjectProperty +| labels = + {{label|en|nearest city}} + {{label|de|nächstgelegene Stadt}} + {{label|nl|dichtstbijzijnde stad}} + {{label|el|πόλη}} +| rdfs:domain = Place +| rdfs:range = PopulatedPlace +| rdfs:subPropertyOf = dul:nearTo +}}OntologyProperty:NeighboringMunicipality2021176363212014-07-08T14:05:24Z +{{ObjectProperty +| labels = + {{label|en|neighboring municipality}} + {{label|de|Nachbargemeinde}} + {{label|nl|aangrenzende gemeente}} + {{label|pt|municipío adjacente}} +| rdfs:domain = PopulatedPlace +| rdfs:range = PopulatedPlace +| rdfs:subPropertyOf = dul:nearTo +}}OntologyProperty:NeighbourConstellations2025341339402014-04-04T15:02:41Z{{ DatatypeProperty + + | rdfs:label@en = neighbour constellations +| rdfs:label@de = Nachbarsternbilder + | rdfs:domain = Constellation + | rdfs:range = xsd:string + +}}OntologyProperty:NeighbourRegion2027149339412014-04-04T15:02:46Z{{DatatypeProperty +| labels = +{{label|en|neighbour region}} +{{label|de|Nachbarregion}} +| rdfs:domain = Place +| rdfs:range = xsd:string +}}OntologyProperty:Neighbourhood2026902253522013-05-24T21:16:34Z{{DatatypeProperty +| labels = +{{label|en|neighbourhood of a hungarian settlement}} +| rdfs:domain = HungarySettlement +| rdfs:range = xsd:string +}}OntologyProperty:Nerve2021177363222014-07-08T14:05:40Z +{{ObjectProperty +| rdfs:label@en = nerve +| rdfs:label@de = Nerv +| rdfs:domain = AnatomicalStructure +| rdfs:range = Nerve +| rdfs:subPropertyOf = dul:isLocationOf +}}OntologyProperty:NetIncome2021178527822018-01-23T15:30:31Z{{DatatypeProperty +| rdfs:label@en = net income +| rdfs:label@de = Nettoergebnis +| rdfs:domain = Company +| rdfs:range = Currency +| rdf:type = owl:FunctionalProperty +| owl:equivalentProperty = wikidata:P2295 +}}OntologyProperty:Network2021179363232014-07-08T14:05:43Z +{{ObjectProperty +| rdfs:label@en = network +| rdfs:label@de = Sendergruppe +| rdfs:label@el = δίκτυο +| rdfs:domain = Broadcaster +| rdfs:range = Broadcaster +| rdfs:subPropertyOf = dul:isMemberOf +}}OntologyProperty:Networth202118081482010-05-28T13:25:00Z{{DatatypeProperty +| rdfs:label@en = networth +| rdfs:domain = Person +| rdfs:range = Currency +}}OntologyProperty:Newspaper2027702525702017-10-30T23:49:12Z{{ObjectProperty +| labels = +{{label|en|newspaper}} +{{label|de|Zeitung}} +| rdfs:range = PeriodicalLiterature +}}OntologyProperty:NextEntity2027182363242014-07-08T14:05:45Z +{{ObjectProperty +| labels = + {{label|en|next entity}} +| rdfs:domain = Place +| rdfs:range = Place +| rdfs:subPropertyOf = dul:sameSettingAs +}}OntologyProperty:NextEvent2026086363252014-07-08T14:05:48Z +{{ObjectProperty +| labels = + {{label|en|next event}} + {{label|de|nächste Veranstaltung}} + {{label|nl|volgende evenement}} + {{label|el|επόμενο γεγονός}} +| rdfs:domain = Event +| rdfs:range = Event +| rdfs:subPropertyOf = followedBy, dul:precedes +}}OntologyProperty:NextMission2021181363262014-07-08T14:05:52Z +{{ObjectProperty +| labels = + {{label|en|next mission}} + {{label|de|nächste Mission}} + {{label|fr|mission suivante}} + {{label|fr|mision siguiente}} +| rdfs:domain = SpaceMission +| rdfs:range = SpaceMission +| rdfs:subPropertyOf = followedBy, dul:precedes +}}OntologyProperty:NextTrackNumber20213813570652022-03-09T19:04:19Z{{DatatypeProperty +| labels = + {{label|en|number of the next track}} + {{label|fr|numéro de la piste suivante}} +| rdfs:domain = Work +| rdfs:range = xsd:nonNegativeInteger +| comments = + {{comment|en|number of the next track in the recorded work.}} + {{comment|fr|numéro de la piste suivante du support.}} +}}OntologyProperty:NflCode2027690269642013-07-04T09:32:39Z{{DatatypeProperty +| labels = +{{label|en|nfl code}} +| rdfs:domain = Athlete +| rdfs:range = xsd:string +}}OntologyProperty:NflSeason2027684269562013-07-04T09:27:54Z{{DatatypeProperty +| labels = +{{label|en|nfl season}} +| rdfs:domain = Athlete +| rdfs:range = xsd:string +}}OntologyProperty:NflTeam2027685269572013-07-04T09:28:24Z{{ObjectProperty +| labels = +{{label|en|nfl team}} +| rdfs:domain = Athlete +| rdfs:range = SportsTeam +}}OntologyProperty:NgcName2028924307572014-01-22T11:53:51Z{{DatatypeProperty +| rdfs:label@en = NGC name +| rdfs:comment@en = Name for NGC objects +| rdfs:subPropertyOf = name +| rdfs:domain = CelestialBody +| rdfs:range = xsd:string +}}OntologyProperty:NisCode2025682517832016-12-22T14:39:09Z{{DatatypeProperty +| rdfs:label@en = NIS code +| rdfs:domain = PopulatedPlace +| rdfs:range = xsd:string +| rdfs:comment@en = Indexing code used by the Belgium National Statistical Institute to identify populated places. +| rdfs:subPropertyOf = +| owl:equivalentProperty = wikidata:P1567 +}}OntologyProperty:NlaId2028429528812018-02-13T10:51:13Z{{DatatypeProperty +| labels = +{{label|en|NLA Id}} +| comments = +{{comment|en|NLA Trove’s People and Organisation view allows the discovery of biographical and other contextual information about people and organisations. Search also available via VIAF.}} +| rdfs:range = xsd:string +| owl:equivalentProperty = wikidata:P409 +| rdfs:subPropertyOf = code +}}OntologyProperty:NndbId2023690130182011-05-19T01:45:22Z{{DatatypeProperty +| rdfs:label@en = NNDB id +| rdfs:domain = Person +| rdfs:range = xsd:string +}}OntologyProperty:NoContest2027590268182013-07-02T10:54:34Z{{DatatypeProperty +| labels = +{{label|en|no contest}} +| rdfs:domain = Boxer +| rdfs:range = xsd:nonNegativeInteger +}}OntologyProperty:NobelLaureates2021183363282014-07-08T14:05:59Z +{{ObjectProperty +| rdfs:label@en = nobel laureates +| rdfs:label@de = Nobelpreisträger +| rdfs:domain = School +| rdfs:range = Person +| rdfs:subPropertyOf = dul:coparticipatesWith +}}OntologyProperty:Nominee2022357363292014-07-08T14:06:02Z +{{ObjectProperty +| rdfs:label@en = nominee +| rdfs:label@de = Kandidat +| rdfs:range = Person +| rdfs:subPropertyOf = dul:sameSettingAs +}}OntologyProperty:NonFictionSubject2021484486892015-08-10T10:12:28Z{{ObjectProperty +| labels = + {{label|en|non-fiction subject}} + {{label|nl|non-fictie onderwerp}} +| rdfs:domain = WrittenWork +| rdfs:range = owl:Thing +| rdfs:comment@en = The subject of a non-fiction book (e.g.: History, Biography, Cookbook, Climate change, ...). +| rdfs:subPropertyOf = dul:isAbout +}}OntologyProperty:NonProfessionalCareer2027789270902013-07-05T13:12:31Z{{DatatypeProperty +| labels = +{{label|en|non professional career}} +| rdfs:domain = Person +| rdfs:range = xsd:string +}}OntologyProperty:Nord20211873522102017-10-07T15:45:29Z{{DatatypeProperty +| labels = +{{label|en|NORD}} +{{label|nl|NORD}} +{{label|de|NORD}} +{{label|fr|NORD}} +| rdfs:domain = Disease +| rdfs:range = xsd:string +}}OntologyProperty:NorthEastPlace20211089455922015-03-08T14:06:23Z{{ObjectProperty +| rdfs:label@en = north-east place +| rdfs:label@fr = lieu au nord-est +| rdfs:comment@fr = indique un autre lieu situé au nord-est. +| rdfs:comment@en = indicates another place situated north-east. +| rdfs:domain = Place +| rdfs:range = Place +| owl:inverseOf = southWestPlace +| rdfs:subPropertyOf = closeTo +}}OntologyProperty:NorthPlace20211082455912015-03-08T14:05:31Z{{ObjectProperty +| rdfs:label@en = north place +| rdfs:label@fr = lieu au nord +| rdfs:comment@fr = indique un autre lieu situé au nord. +| rdfs:comment@en = indicates another place situated north. +| rdfs:domain = Place +| rdfs:range = Place +| owl:inverseOf = southPlace +| rdfs:subPropertyOf = closeTo +}}OntologyProperty:NorthWestPlace20211087455932015-03-08T14:07:04Z{{ObjectProperty +| rdfs:label@en = north-west place +| rdfs:label@fr = lieu au nord-ouest +| rdfs:comment@fr = indique un autre lieu situé au nord-ouest. +| rdfs:comment@en = indicates another place situated north-west. +| rdfs:domain = Place +| rdfs:range = Place +| owl:inverseOf = southEastPlace +| rdfs:subPropertyOf = closeTo + +}}OntologyProperty:NotSolubleIn2028932307822014-01-22T13:43:01Z{{ObjectProperty +| rdfs:label@en = not soluble in +| rdfs:label@nl = niet oplosbaar in +| rdfs:domain = ChemicalSubstance +| rdfs:range = ChemicalSubstance +}}OntologyProperty:NotableCommander2021184363312014-07-08T14:06:08Z +{{ObjectProperty +| rdfs:label@en = notable commander +| rdfs:domain = MilitaryUnit +| rdfs:range = Person +| rdfs:subPropertyOf = dul:coparticipatesWith +}}OntologyProperty:NotableFeatures2024441150252011-09-08T07:26:50Z{{DatatypeProperty +| rdfs:label@en = notable features +| rdfs:label@tr = notlar +| rdfs:domain = Galaxy +| rdfs:range = xsd:string +}}OntologyProperty:NotableIdea2022314363322014-07-08T14:06:11Z +{{ObjectProperty +| rdfs:label@en = notableIdea +| rdfs:domain = Person +| rdfs:subPropertyOf = dul:coparticipatesWith +}}OntologyProperty:NotableStudent2021185363332014-07-08T14:06:15Z +{{ObjectProperty +| rdfs:label@en = notable student +| rdfs:label@el = σημαντικοί_φοιτητές +| rdfs:domain = Scientist +| rdfs:range = Person +| rdfs:subPropertyOf = dul:coparticipatesWith +}}OntologyProperty:NotableWine2021186363342014-07-08T14:06:18Z +{{ObjectProperty +| rdfs:label@en = notable wine +| rdfs:domain = Grape +| rdfs:subPropertyOf = dul:coparticipatesWith +}}OntologyProperty:NotableWork2021187587952022-05-31T15:22:30Z{{ObjectProperty +| labels = + {{label|en|notable work}} + {{label|fr|oeuvre majeure}} + {{label|ja|代表作}} + {{label|nl|bekende werken}} +| rdfs:domain = owl:Thing +| rdfs:range = Work +| owl:equivalentProperty = wikidata:P800 +| rdfs:subPropertyOf = dul:coparticipatesWith +| comments = + {{comment|en|Notable work created by the subject (eg Writer, Artist, Engineer) or about the subject (eg ConcentrationCamp)}} +}}OntologyProperty:Note2021188339502014-04-04T15:03:23Z{{DatatypeProperty +| rdfs:label@en = note +| rdfs:label@de = Anmerkung +| rdfs:domain = AutomobileEngine +| rdfs:range = xsd:string +}}OntologyProperty:NoteOnPlaceOfBurial202118981502010-05-28T13:25:18Z{{DatatypeProperty +| rdfs:label@en = note on place of burial +| rdfs:domain = MilitaryPerson +| rdfs:range = xsd:string +}}OntologyProperty:NoteOnRestingPlace2021190340692014-04-04T15:54:48ZNote: This property is currently (April 2012) not used anywhere. Maybe we should delete it. + +{{DatatypeProperty +| rdfs:label@en = note on resting place +| rdfs:domain = Person +| rdfs:range = xsd:string +}}OntologyProperty:Notes2021191340682014-04-04T15:54:05Z{{DatatypeProperty +| labels = + {{label|en|notes}} +{{label|de|Anmerkungen}} + {{label|el|σημειώσεις}} + {{label|fr|notes}} +| comments = + {{comment|en|additional notes that better describe the entity.}} + {{comment|el|συμπληρωματικές σημειώσεις που περιγράφουν καλύτερα την οντότητα.}} +| rdfs:domain = owl:Thing +| rdfs:range = xsd:string +}}OntologyProperty:NotifyDate2021192339582014-04-04T15:27:33Z{{DatatypeProperty +| rdfs:label@en = notify date +| rdfs:label@de = Benachrichtigungsdatum +| rdfs:domain = SiteOfSpecialScientificInterest +| rdfs:range = xsd:date +}}OntologyProperty:Novel2026826363362014-07-08T14:06:25Z +{{ObjectProperty +| labels = + {{label|en|novel}} + {{label|de|Roman}} +| rdfs:domain = FictionalCharacter +| rdfs:range = Novel +| rdfs:subPropertyOf = dul:isParticipantIn +}}OntologyProperty:NrhpReferenceNumber2023223537982020-12-01T17:52:27Z{{DatatypeProperty +| rdfs:label@en = NRHP Reference Number +| rdfs:domain = HistoricPlace +| rdfs:range = xsd:string +| owl:equivalentProperty=wikidata:P649 +}}OntologyProperty:NrhpType2023218363372014-07-08T14:06:28Z +{{ObjectProperty +| rdfs:label@en = NRHP type +| rdfs:domain = HistoricPlace +| rdfs:range = owl:Thing +| rdfs:comment@en = Type of historic place as defined by the US National Park Service. For instance National Historic Landmark, National Monument or National Battlefield. +| rdfs:subPropertyOf = dul:isClassifiedBy +}}OntologyProperty:NssdcId202119381542010-05-28T13:25:52Z{{DatatypeProperty +| rdfs:label@en = NSSDC ID +| rdfs:domain = SpaceStation +| rdfs:range = xsd:string +}}OntologyProperty:Number2021194537592020-09-30T13:16:27Z{{DatatypeProperty +| labels = +{{label|en|number}} +{{label|de|Anzahl}} +{{label|nl|nummer}} +{{label|el|αριθμός}} +{{label|ja|番号}} +| rdfs:range = xsd:nonNegativeInteger +| rdfs:domain = owl:Thing +| owl:equivalentProperty=bag:huisnummer +}}OntologyProperty:NumberBuilt2021195529312018-03-01T11:12:21Z{{DatatypeProperty +| rdfs:label@en = number built +| rdfs:label@de = Anzahl gebaut +| rdfs:label@nl = aantal gebouwd +| rdfs:domain = Aircraft +| rdfs:range = xsd:nonNegativeInteger +}}OntologyProperty:NumberOfAcademicStaff2025300339622014-04-04T15:27:47Z{{ DatatypeProperty + + | rdfs:label@en = number of academic staff +| rdfs:label@de = Anzahl der wissenschaftlichen Mitarbeiter + | rdfs:label@el = αριθμός ακαδημαϊκού προσωπικού + | rdfs:domain = EducationalInstitution + | rdfs:range = xsd:nonNegativeInteger + +}}OntologyProperty:NumberOfAlbums2025193568842022-03-02T17:31:44Z{{DatatypeProperty +| labels = + {{label|en|number of albums}} + {{label|fr|nombre d'albums}} + {{label|de|Anzahl der Alben}} +| comments = + {{comment|en|the total number of albums released by the musical artist}} + {{comment|fr|nombre total d'albums que cet artiste musical a réalisés}} +| rdfs:domain = MusicalArtist +| rdfs:range = xsd:nonNegativeInteger +}}OntologyProperty:NumberOfArrondissement2027954278952013-07-17T08:43:29Z{{DatatypeProperty +| labels = +{{label|en|number of arrondissement}} +| rdfs:domain = Department +| rdfs:range = xsd:nonNegativeInteger +}}OntologyProperty:NumberOfBombs2025625531752018-07-19T08:51:56Z{{ DatatypeProperty + + | rdfs:label@en = number of bombs +| rdfs:label@de = Anzahl der Bomben + | rdfs:label@el = αριθμός των βομβών + | rdfs:domain = MilitaryAircraft + | rdfs:range = xsd:nonNegativeInteger + +}}OntologyProperty:NumberOfBronzeMedalsWon2021196339652014-04-04T15:28:01Z{{DatatypeProperty +|labels = + {{label|en|number of bronze medals won}} +{{label|de|Anzahl der gewonnenen Bronzemedaillen}} + {{label|fr|nomber de médailles de bronze gagnées}} + {{label|es|cantidad de medallas de bronce ganadas}} + {{label|nl|aantal gewonnen bronzen medailles}} +| rdfs:domain = SportCompetitionResult +| rdfs:range = xsd:nonNegativeInteger +}}OntologyProperty:NumberOfCanton2027952278932013-07-17T08:42:52Z{{DatatypeProperty +| labels = +{{label|en|number of canton}} +| rdfs:domain = Department +| rdfs:range = xsd:nonNegativeInteger +}}OntologyProperty:NumberOfCantons2029302327182014-03-14T10:38:17Z{{DatatypeProperty +| labels = +{{label|en|Number Of Cantons}} +{{label|nl|Aantal kantons}} +| rdfs:domain = PopulatedPlace +| rdfs:range = xsd:nonNegativeInteger +}}OntologyProperty:NumberOfCapitalDeputies2023360122472011-04-15T14:07:48Z{{DatatypeProperty +| rdfs:label@en = Number Of Capital Deputies +| rdfs:label@pt = numero de deputados distritais +| rdfs:domain = PopulatedPlace +| rdfs:range = xsd:nonNegativeInteger +}}OntologyProperty:NumberOfCity2027012255002013-05-25T19:31:33Z{{DatatypeProperty +| labels = +{{label|en|number of contries inside en continent}} +| rdfs:domain = Continent +| rdfs:range = xsd:nonNegativeInteger +}}OntologyProperty:NumberOfClasses20212240569092022-03-02T19:27:59Z{{DatatypeProperty +| labels = + {{label|en|numberOfClasses}} + {{label|fr|nombre de classes}} +| comments = + {{comment|en|number of defined Classes}} + {{comment|fr|nombre de classes définies}} +| rdfs:range = xsd:nonNegativeInteger +}}OntologyProperty:NumberOfClassesWithResource20212241569102022-03-02T19:32:46Z{{DatatypeProperty +| labels = + {{label|en|numberOfClassesWithResource}} + {{label|fr|nombre de classes avec ressource}} +| comments = + {{comment|en|number of class in DBpedia with at least single resource (class entity)}} + {{comment|fr|nombre de classes de DBpedia ayant au moins une ressource unique (entité de classe)}} +| rdfs:range = xsd:nonNegativeInteger + +}}OntologyProperty:NumberOfClassrooms2023137573062022-03-30T14:50:11Z{{ObjectProperty +| labels = + {{label|en|number of classrooms}} + {{label|el|αριθμός αιθουσών}} + {{label|fr|nombre de salles de classe}} +| rdfs:domain = School +| rdfs:subPropertyOf = dul:hasRegion +}}OntologyProperty:NumberOfClubs2026059339662014-04-04T15:28:05Z{{DatatypeProperty +|labels= +{{label|en|number of clubs}} +{{label|de|Anzahl der Clubs}} +{{label|fr|nombre de clubs}} +{{label|es|numero de clubs}} +|comments= +| rdfs:domain = Activity +| rdfs:range = xsd:nonNegativeInteger +}}OntologyProperty:NumberOfCollectionItems2026403339672014-04-04T15:28:10Z{{DatatypeProperty +| labels = +{{label|en|number of items in collection}} +{{label|de|Anzahl der Elemente in der Sammlung}} +{{label|nl|aantal titels/items}} +| comments = +{{comment|en| Indication as to the size of the collection of this library }} +{{comment|nl| Aanduiding van omvang van de collectie van deze bibliotheek}} +| rdfs:domain = Library +| rdfs:range = xsd:integer +| rdf:type = +| rdfs:subPropertyOf = +| owl:equivalentProperty = +}}OntologyProperty:NumberOfCompetitors2021197339682014-04-04T15:28:14Z{{DatatypeProperty +| rdfs:label@en = number of competitors +| rdfs:label@de = Anzahl der Wettbewerber +| rdfs:domain = OlympicResult +| rdfs:range = xsd:nonNegativeInteger +}}OntologyProperty:NumberOfCounties2023306339692014-04-04T15:28:24Z{{DatatypeProperty +| rdfs:label@en = number of counties +| rdfs:label@de = Anzahl der Landkreise +| rdfs:label@pt = número de condados +| rdfs:domain = PopulatedPlace +| rdfs:range = xsd:nonNegativeInteger +}}OntologyProperty:NumberOfCountries2023321233112013-01-20T10:43:32Z{{DatatypeProperty +| rdfs:label@en = number of countries +| rdfs:label@el = αριθμός χωρών +| rdfs:label@pt = número de países +| rdfs:domain = AdministrativeRegion +| rdfs:range = xsd:positiveInteger +}}OntologyProperty:NumberOfCrew2025629233132013-01-20T10:51:15Z{{ DatatypeProperty + + | rdfs:label@en = number of crew + | rdfs:label@el = αριθμός πληρώματος + | rdfs:label@nl = aantal bemanningsleden + | rdfs:domain = MeanOfTransportation + | rdfs:range = xsd:nonNegativeInteger + +}}OntologyProperty:NumberOfDeaths20210249385372014-10-04T12:00:29Z{{DatatypeProperty +| labels = +{{label|en|number of deaths}} +{{label|de|Totenzahl}} +{{label|nl|Aantal doden}} +| rdfs:domain = ConcentrationCamp +| rdfs:range = xsd:string}}OntologyProperty:NumberOfDependency2027011278872013-07-17T08:33:37Z{{DatatypeProperty +| labels = +{{label|en|number of dependency}} +| rdfs:domain = Continent +| rdfs:range = xsd:nonNegativeInteger +}}OntologyProperty:NumberOfDisambiguates20212266534942018-11-30T20:21:24Z{{DatatypeProperty +| rdfs:label@en = numberOfDisambiguates +| rdfs:comment@en = number of disambiguation pages in DBpedia +| rdfs:range = xsd:nonNegativeInteger + +}}OntologyProperty:NumberOfDistrict2027953278942013-07-17T08:43:16Z{{DatatypeProperty +| labels = +{{label|en|number of district}} +| rdfs:domain = Department +| rdfs:range = xsd:nonNegativeInteger +}}OntologyProperty:NumberOfDistricts2026789339702014-04-04T15:28:28Z{{DatatypeProperty +| labels = +{{label|en|number of districts }} +{{label|de|Anzahl der Bezirke}} +{{label|id|jumlah kecamatan }} +| comments = +| rdfs:domain = Regency +| rdfs:range = xsd:nonNegativeInteger +}}OntologyProperty:NumberOfDoctoralStudents202812339712014-04-04T15:28:31Z{{DatatypeProperty +| rdfs:label@en = number of doctoral students +| rdfs:label@de = Anzahl der Doktoranden +| rdfs:domain = University +| rdfs:range = xsd:nonNegativeInteger +}}OntologyProperty:NumberOfDoors20211977526012017-10-31T10:44:54Z{{DatatypeProperty +| rdfs:label@en = number of doors +| rdfs:label@pt = Türenanzahl +| rdfs:domain = Automobile +| rdfs:range = xsd:positiveInteger +}}OntologyProperty:NumberOfEmployees2021198538052020-12-01T17:59:59Z{{DatatypeProperty +| labels = +{{label|en|number of employees}} +{{label|de|Anzahl der Mitarbeiter}} +{{label|el|αριθμός εργαζομένων}} +{{label|nl|aantal medewerkers}} +{{label|fr|nombre d'employés}} +{{label|es|número de empleados}} +| rdfs:domain = Organisation +| rdfs:range = xsd:nonNegativeInteger +| owl:equivalentProperty=wikidata:P1128 +}}OntologyProperty:NumberOfEntrances2021199339732014-04-04T15:28:39Z{{DatatypeProperty +| rdfs:label@en = number of entrances +| rdfs:label@de = Anzahl der Eingänge +| rdfs:label@el = αριθμός εισόδων +| rdfs:label@nl = aantal ingangen +| rdfs:domain = Cave +| rdfs:range = xsd:nonNegativeInteger +}}OntologyProperty:NumberOfEpisodes202846339742014-04-04T15:28:44Z{{DatatypeProperty +| rdfs:label@en = number of episodes +| rdfs:label@de = Anzahl der Episoden +| rdfs:label@el = αριθμός επειδοδίων +| rdfs:domain = TelevisionShow +| rdfs:range = xsd:nonNegativeInteger +| owl:equivalentProperty = schema:numberOfEpisodes +}}OntologyProperty:NumberOfEtoilesMichelin20214266590962022-10-13T09:39:42Z{{ DatatypeProperty + + | labels = + {{label|en|number of étoiles Michelin}} + {{label|fr|nombre d'étoiles Michelin}} + | rdfs:domain = Restaurant + | rdfs:range = xsd:nonNegativeInteger + +}}OntologyProperty:NumberOfFederalDeputies2023359339752014-04-04T15:28:49Z{{DatatypeProperty +| rdfs:label@en = Number Of Federal Deputies +| rdfs:label@de = Anzahl der Bundesabgeordneten +| rdfs:label@pt = numero de deputados federais +| rdfs:domain = PopulatedPlace +| rdfs:range = xsd:nonNegativeInteger +}}OntologyProperty:NumberOfFilms2021200339762014-04-04T15:28:53Z{{DatatypeProperty +| rdfs:label@en = number of films +| rdfs:label@de = Anzahl der Filme +| rdfs:label@el = αριθμός ταινιών +| rdfs:domain = AdultActor +| rdfs:range = xsd:nonNegativeInteger +}}OntologyProperty:NumberOfGoals2026507486772015-08-07T14:18:32Z{{DatatypeProperty +| labels = +{{label|en|number of goals scored}} +{{label|de|Anzahl der erzielten Tore}} +{{label|it|numero di goal segnati}} +| rdfs:domain = CareerStation +| rdfs:range = xsd:integer +}}OntologyProperty:NumberOfGoldMedalsWon2021201339782014-04-04T15:29:02Z{{DatatypeProperty +|labels = + {{label|en|number of gold medals won}} +{{label|de|Anzahl der Goldmedaillen}} + {{label|fr|nomber de médailles d'or gagnées}} + {{label|es|cantidad de medallas de oro ganadas}} + {{label|nl|aantal gewonnen gouden medailles}} +| rdfs:domain = SportCompetitionResult +| rdfs:range = xsd:nonNegativeInteger +}}OntologyProperty:NumberOfGraduateStudents202949339792014-04-04T15:29:05Z{{DatatypeProperty +| rdfs:label@en = number of graduate students +| rdfs:label@de = Zahl der Studenten +| rdfs:domain = EducationalInstitution +| rdfs:range = xsd:nonNegativeInteger +}}OntologyProperty:NumberOfGraves2029256339802014-04-04T15:29:18Z{{DatatypeProperty +| labels = +{{label|en|number of graves}} +{{label|de|Anzahl der Gräber}} +{{label|nl|aantal graven}} +| rdfs:domain = Cemetery +| rdfs:range = xsd:string +}}OntologyProperty:NumberOfHoles20210203574402022-04-17T21:20:15Z{{DatatypeProperty +| labels = + {{label|en|number of holes}} + {{label|fr|nombre de trous}} +| rdfs:domain = GolfCourse +| rdfs:range = xsd:integer +}}OntologyProperty:NumberOfHouses2026294339812014-04-04T15:29:22Z{{DatatypeProperty +| labels = +{{label|en|number of houses present)}} +{{label|de|Anzahl der vorhandenen Häuser}} +{{label|nl|aantal huizen aanwezig}} +| comments = +{{comment|en| Count of the houses in the Protected Area }} +{{comment|nl| Aantal huizen in afgegrensd gebied }} +| rdfs:domain = ProtectedArea +| rdfs:range = xsd:string +| rdf:type = +| rdfs:subPropertyOf = +| owl:equivalentProperty = +}}OntologyProperty:NumberOfIndegree20212248534312018-10-25T21:21:49Z +{{DatatypeProperty +| rdfs:label@en = number of all indegrees in dbpedia (same ourdegrees are counting repeatedly) +| rdfs:label@cs = počet indegree odkazů v dbpedii (stejné započítané opakovaně) +| rdfs:range = xsd:nonNegativeInteger + +}}OntologyProperty:NumberOfIntercommunality2027951278912013-07-17T08:42:33Z{{DatatypeProperty +| labels = +{{label|en|number of intercommunality}} +| rdfs:domain = Department +| rdfs:range = xsd:nonNegativeInteger +}}OntologyProperty:NumberOfIsland2027099339822014-04-04T15:29:26Z{{DatatypeProperty +| labels = +{{label|en|number of islands}} +{{label|de|Anzahl der Inseln}} +| rdfs:domain = Place +| rdfs:range = xsd:string +}}OntologyProperty:NumberOfIslands2021202339832014-04-04T15:29:30Z{{DatatypeProperty +| labels = +{{label|en|number of islands}} +{{label|de|Anzahl der Inseln}} +{{label|el|αριθμός νησιών}} +{{label|nl|aantal eilanden}} +| rdfs:domain = Island +| rdfs:range = xsd:nonNegativeInteger +}}OntologyProperty:NumberOfLanes2023430197632012-11-07T14:35:56Z{{DatatypeProperty +|labels= + {{label|en|number of lanes}} + {{label|de|Anzahl der Fahrstreifen}} + {{label|fr|nombre de voies}} +| rdfs:domain = RouteOfTransportation +| rdfs:range = xsd:nonNegativeInteger +}}OntologyProperty:NumberOfLaps2025333339842014-04-04T15:29:34Z{{ DatatypeProperty + + | rdfs:label@en = number of laps +| rdfs:label@de = Anzahl der Runden + | rdfs:domain = FormulaOneRacing + | rdfs:range = xsd:nonNegativeInteger + +}}OntologyProperty:NumberOfLaunches2025633339852014-04-04T15:29:38Z{{ DatatypeProperty + + | rdfs:label@en = number of launches +| rdfs:label@de = Anzahl von Starts + | rdfs:domain = MeanOfTransportation + | rdfs:range = xsd:nonNegativeInteger + +}}OntologyProperty:NumberOfLawyers2023732131742011-05-23T16:49:34Z{{DatatypeProperty +| rdfs:label@en = number of lawyers +| rdfs:label@de = Anzahl Rechtsanwälte +| rdfs:domain = LawFirm +| rdfs:range = xsd:nonNegativeInteger +| rdfs:comment@en = Number of lawyers or attorneys in the company. +}}OntologyProperty:NumberOfLifts20211806519232017-02-20T11:47:53Z{{DatatypeProperty +| rdfs:label@en = number of lifts +| rdfs:label@ja = 索道数 +| rdfs:domain = SkiArea +| rdfs:range = xsd:nonNegativeInteger +| rdfs:comment@en = Number of lifts. +}}OntologyProperty:NumberOfLines2023623573132022-03-30T15:12:24Z{{DatatypeProperty +| labels = + {{label|en|number of lines}} + {{label|de|Anzahl der Linien}} + {{label|fr|nombre de lignes}} +| rdfs:domain = PublicTransitSystem +| rdfs:range = xsd:nonNegativeInteger +| comments = + {{comment|en|Number of lines in the transit system.}} + {{comment|fr|Nombre de lignes dans le système de transport.}} +}}OntologyProperty:NumberOfLiveAlbums2025195568062022-02-28T22:12:30Z{{DatatypeProperty +| labels = + {{label|en|number of live albums}} + {{label|fr|nombre d'albums live}} + {{label|de|Anzahl von Live-Alben}} +| comments = + {{comment|en|the number of live albums released by the musical artist}} + {{comment|fr|nombre d'albums enregistrés en public et réalisés par l'artiste de musique}} +| rdfs:domain = MusicalArtist +| rdfs:range = xsd:nonNegativeInteger +}}OntologyProperty:NumberOfLocations2026038339872014-04-04T15:29:46Z{{ DatatypeProperty +| labels = + {{label|en|number of locations}} +{{label|de|Anzahl der Standorte}} + {{label|fr|nombre de sites}} +| rdfs:domain = Organisation +| rdfs:range = xsd:nonNegativeInteger +}}OntologyProperty:NumberOfMatches2026506238332013-02-21T16:12:00Z{{DatatypeProperty +| labels = +{{label|en|number of matches or caps}} +| rdfs:domain = CareerStation +| rdfs:range = xsd:integer +}}OntologyProperty:NumberOfMembers2021203339882014-04-04T15:29:51Z{{DatatypeProperty +| labels = + {{label|en|number of members}} +{{label|de|Anzahl der Mitglieder}} + {{label|el|αριθμός μελών}} +{{label|pt|número de membros}} + {{label|fr|nombre de membres}} + {{label|es|numero de miembros}} +| rdfs:domain = Legislature +| rdfs:range = xsd:nonNegativeInteger +}}OntologyProperty:NumberOfMembersAsOf2023345122302011-04-15T13:47:59Z{{DatatypeProperty +| rdfs:label@en = number of members as of +| rdfs:label@pt = numero de membros em +| rdfs:domain = PoliticalParty +| rdfs:range = xsd:date +}}OntologyProperty:NumberOfMinistries2023331339892014-04-04T15:29:55Z{{DatatypeProperty +| rdfs:label@en = number of ministries +| rdfs:label@de = Zahl der Ministerien +| rdfs:label@pt = numero de ministerios +| rdfs:domain = Country +| rdfs:range = xsd:nonNegativeInteger +}}OntologyProperty:NumberOfMunicipalities2023357339902014-04-04T15:30:00Z{{DatatypeProperty +| labels = +{{label|en|Number Of Municipalities}} +{{label|de|Anzahl der Gemeinden}} +{{label|nl|Aantal gemeenten}} +{{label|pt|numero de municipios}} +| rdfs:domain = PopulatedPlace +| rdfs:range = xsd:nonNegativeInteger +}}OntologyProperty:NumberOfMusicalArtistEntities20212258534512018-10-28T12:23:04Z{{DatatypeProperty +| rdfs:label@en = number of MuscialArtist class (entities) in DBpedia +| rdfs:label@cs = počet entit třídy MuscialArtist v DBpedii +| rdfs:range = xsd:nonNegativeInteger +| rdfs:domain = Country +}}OntologyProperty:NumberOfMusicalArtistInstrument20212256534492018-10-28T11:46:02Z +{{DatatypeProperty +| rdfs:label@en = number of all MuscialArtist playing the instrument +| rdfs:label@cs = počet hudebních umělců hrající na konkrétní nástroj +| rdfs:range = xsd:nonNegativeInteger +| rdfs:domain = Instrument +}}OntologyProperty:NumberOfMusicalArtistStyle20212257534502018-10-28T11:58:36Z +{{DatatypeProperty +| rdfs:label@en = number of all MuscialArtist playing the style +| rdfs:label@cs = počet hudebních umělců hrající konkrétní styl +| rdfs:range = xsd:nonNegativeInteger +| rdfs:domain = MusicGenre +}}OntologyProperty:NumberOfNeighbourhood2026861252662013-05-23T13:39:19Z{{DatatypeProperty +| labels = +{{label|en|number of neighbourhood}} +| rdfs:domain = GermanSettlement +| rdfs:range = xsd:nonNegativeInteger +}}OntologyProperty:NumberOfNewlyIntroducedSports2026375227912013-01-15T10:38:35Z{{DatatypeProperty +| labels = + {{label|en|number of newly introduced sports}} + {{label|fr|numbre de sports nouvellement ajoutés}} + {{label|es|numero de deportes nuevamente añadidos}} +| rdfs:domain = Olympics +| rdfs:range = xsd:nonNegativeInteger +}}OntologyProperty:NumberOfOffices2023733233182013-01-20T11:00:57Z{{DatatypeProperty +| rdfs:label@en = number of offices +| rdfs:label@de = Anzahl Büros +| rdfs:label@el = αριθμός γραφείων +| rdfs:domain = LawFirm +| rdfs:range = xsd:nonNegativeInteger +| rdfs:comment@en = Number of the company's offices. +| rdfs:comment@el = Αριθμός γραφείων εταιρείας. +}}OntologyProperty:NumberOfOfficials2021204339912014-04-04T15:30:04Z{{DatatypeProperty +| rdfs:label@en = number of officials +| rdfs:label@de = Zahl der Beamten +| rdfs:domain = OlympicResult +| rdfs:range = xsd:nonNegativeInteger +}}OntologyProperty:NumberOfOrbits2021205339922014-04-04T15:30:07Z{{DatatypeProperty +| rdfs:label@en = number of orbits +| rdfs:label@de = Anzahl der Bahnen +| rdfs:domain = SpaceMission +| rdfs:range = xsd:nonNegativeInteger +}}OntologyProperty:NumberOfOutdegree20212247534952018-11-30T20:21:56Z +{{DatatypeProperty +| rdfs:label@en = numberOfOutdegree +| rdfs:comment@en = number of all outdegrees in DBpedia (same ourdegrees are counting repeatedly). This number is equal to number of all links (every link is OutDegree link) +| rdfs:range = xsd:nonNegativeInteger + +}}OntologyProperty:NumberOfPads2021206103992010-11-10T14:41:04Z{{DatatypeProperty +| rdfs:label@en = number of pads +| rdfs:domain = LaunchPad +| rdfs:range = xsd:nonNegativeInteger +}}OntologyProperty:NumberOfPages2021255568152022-02-28T22:33:03Z{{DatatypeProperty +| labels = +{{label|en|number of pages}} +{{label|fr|nombre de pages}} +{{label|nl|aantal pagina's}} +{{label|de|Anzahl der Seiten}} +| rdfs:domain = WrittenWork +| comments = + {{comment|en|The books number of pages.}} + {{comment|fr|Nombre de pages des livres.}} +| rdfs:range = xsd:positiveInteger +| owl:equivalentProperty = schema:numberOfPages +}}OntologyProperty:NumberOfParkingSpaces2022744568242022-03-01T00:18:41Z{{DatatypeProperty +| labels = + {{label|en|number of parking spaces}} + {{label|fr|nombre de places de parking}} + {{label|de|Anzahl der Parkplätze}} +| rdfs:domain = Hotel +| rdfs:range = xsd:nonNegativeInteger +}}OntologyProperty:NumberOfParticipatingAthletes2021207339942014-04-04T15:30:18Z{{DatatypeProperty +| labels = + {{label|en|number of participating athletes}} +{{label|de|Anzahl der teilnehmenden Athleten}} + {{label|fr|nombre d'athlètes participant}} +| rdfs:domain = Olympics +| rdfs:range = xsd:nonNegativeInteger +}}OntologyProperty:NumberOfParticipatingFemaleAthletes2026378339952014-04-04T15:30:22Z{{DatatypeProperty +| labels = + {{label|en|number of participating female athletes}} +{{label|de|Zahl der teilnehmenden Sportlerinnen}} + {{label|el|αριθμός συμμετεχόντων γυναικών αθλητριών}} + {{label|fr|nombre d'athlètes participant féminins}} +| rdfs:domain = Olympics +| rdfs:range = xsd:nonNegativeInteger +}}OntologyProperty:NumberOfParticipatingMaleAthletes2026377339962014-04-04T15:30:27Z{{DatatypeProperty +| labels = + {{label|en|number of participating male athletes}} +{{label|de|Anzahl der teilnehmenden männlichen Athleten}} + {{label|fr|nombre d'athlètes masculins participant}} +| rdfs:domain = Olympics +| rdfs:range = xsd:nonNegativeInteger +}}OntologyProperty:NumberOfParticipatingNations2021208339972014-04-04T15:30:32Z{{DatatypeProperty +| rdfs:label@en = number of participating nations +| rdfs:label@de = Anzahl der teilnehmenden Nationen +| rdfs:domain = Olympics +| rdfs:range = xsd:nonNegativeInteger +}}OntologyProperty:NumberOfPassengers20211850573032022-03-30T14:45:56Z{{ DatatypeProperty +| labels = + {{label|en|number of passengers}} + {{label|fr|nombre de passagers}} + {{label|nl|aantal passagiers}} +| rdfs:domain = Ship +| rdfs:range = xsd:nonNegativeInteger +}}OntologyProperty:NumberOfPeopleAttending2023307339982014-04-04T15:30:37Z{{DatatypeProperty +| labels = + {{label|en|number of people attending}} +{{label|de|Zahl der Teilnehmer}} + {{label|pt|número de participantes}} + {{label|fr|nombre de participants}} +| rdfs:domain = Event +| rdfs:range = xsd:nonNegativeInteger +}}OntologyProperty:NumberOfPeopleLicensed2025996200732012-11-30T16:47:33Z{{DatatypeProperty +|labels= +{{label|en|number of licensed}} +{{label|fr|nombre de licenciés}} +|comments= +{{comment|en|number of people that have a license to perform this activity}} +{{comment|en|nombre de personnes ayant une license pour pratiquer cette activité}} +| rdfs:domain = Activity +| rdfs:range = xsd:nonNegativeInteger +}}OntologyProperty:NumberOfPersonBornInPlace20212254534462018-10-28T11:07:17Z{{DatatypeProperty +| rdfs:label@en = number of entities of Person class born in the place +| rdfs:label@cs = počet entit třídy Osoba narozených na konkrétním místě +| rdfs:range = xsd:nonNegativeInteger +| rdfs:domain = Place +}}OntologyProperty:NumberOfPersonEntities20212251534432018-10-28T10:09:20Z{{DatatypeProperty +| rdfs:label@en = number of Person class (entities) in DBpedia +| rdfs:label@cs = počet entit třídy Osoba v DBpedii +| rdfs:range = xsd:nonNegativeInteger +| rdfs:domain = Country +}}OntologyProperty:NumberOfPersonFromUniversity20212253534452018-10-28T11:00:55Z{{DatatypeProperty +| rdfs:label@en = number of entities of Person class who graduated from the university +| rdfs:label@cs = počet entit třídy Osoba s vystudovanou konkrétní univerzitou +| rdfs:range = xsd:nonNegativeInteger +| rdfs:domain = University +}}OntologyProperty:NumberOfPersonInOccupation20212252534442018-10-28T10:50:07Z +{{DatatypeProperty +| rdfs:label@en = number of person in one occupation +| rdfs:label@cs = počet lidí v konkrétním zaměstnání +| rdfs:range = xsd:nonNegativeInteger +| rdfs:domain = PersonFunction +}}OntologyProperty:NumberOfPiersInWater2023438124562011-04-27T14:30:45Z{{DatatypeProperty +| rdfs:label@en = number of piers in water +| rdfs:label@de = Anzahl der Pfeiler in Wasser +| rdfs:domain = Bridge +| rdfs:range = xsd:nonNegativeInteger +| rdfs:comment@en = Number of piers standing in a river or other water in normal conditions. +}}OntologyProperty:NumberOfPixels20211545535532019-08-26T13:15:29Z{{DatatypeProperty +| labels = +{{label|en|number of pixels (millions)}} +{{label|fr|nombre de pixels (millions)}} +{{label|de|Anzahl der Pixel (Millionen)}} +| rdfs:subPropertyOf = number +| rdfs:range = xsd:nonNegativeInteger +}}OntologyProperty:NumberOfPlatformLevels2023232120552011-04-07T15:53:45Z{{DatatypeProperty +| rdfs:label@en = number of platform levels +| rdfs:domain = Station +| rdfs:range = xsd:integer +| rdfs:comment@en = Number of levels of platforms at the station. +}}OntologyProperty:NumberOfPlayers2026385339992014-04-04T15:30:43Z{{DatatypeProperty +| labels = + {{label|en|number of players}} +{{label|de|Anzahl der Spieler}} + {{label|el|αριθμός παιχτών}} + {{label|fr|nombre de joueurs}} + {{label|es|numero de jugadores}} +| comment = + {{comment|en|number of people playing at some activity like sports or games.}} +| rdfs:domain = Activity +| rdfs:range = xsd:nonNegativeInteger +}}OntologyProperty:NumberOfPostgraduateStudents2021309104172010-11-10T14:48:27Z{{DatatypeProperty +| rdfs:label@en = number of postgraduate students +| rdfs:domain = University +| rdfs:range = xsd:nonNegativeInteger +}}OntologyProperty:NumberOfPredicates20212236573092022-03-30T15:02:39Z +{{DatatypeProperty +| labels = + {{label|en|numberOfPredicates}} + {{label|fr|nombre de prédicats}} +| comments = + {{comment|en|number of predicates in DBpedia (including properties without rdf:type of rdf:Property)}} + {{comment|fr|nombre de prédicats dans DBpedia (y compris les propriétés sans rdf:type de rdf:Property)}} +| rdfs:range = xsd:nonNegativeInteger +}}OntologyProperty:NumberOfProfessionals2026386340002014-04-04T15:30:49Z{{DatatypeProperty +| labels = + {{label|en|number of professionals}} +{{label|de|Anzahl von Fachleuten}} + {{label|fr|nombre de professionnels}} + {{label|es|numero de profesionales}} +| comments = + {{comment|en|number of people who earns his living from a specified activity.<ref>http://en.wiktionary.org/wiki/professional</ref>}} +| rdfs:domain = Activity +| rdfs:range = xsd:nonNegativeInteger +}} + +== References == +<references/>OntologyProperty:NumberOfProperties20212243573102022-03-30T15:05:11Z +{{DatatypeProperty +| labels = + {{label|en|numberOfProperties}} + {{label|fr|nombre de propriétés}} +| comments = + {{comment|en|number of defined properties in DBpedia ontology}} + {{comment|fr|nombre de propriétés défines dans l'ontologie DBpedia}} +| rdfs:range = xsd:nonNegativeInteger + +}}OntologyProperty:NumberOfPropertiesUsed20212244573112022-03-30T15:07:03Z{{DatatypeProperty +| labels = + {{label|en|numberOfPropertiesUsed}} + {{label|fr|nombre de propriétés utilisées}} +| comments = + {{comment|en|number of all properties used as predicate in DBpedia}} + {{comment|fr|nombre total de propriétés utilisées comme prédicat dans DBpedia}} +| rdfs:range = xsd:nonNegativeInteger + +}}OntologyProperty:NumberOfReactors2029145317222014-02-11T10:55:21Z{{DatatypeProperty +| labels = +{{label|en|number of reactors}} +{{label|de|Anzahl der Reaktoren}} +{{label|fr|nombre de réacteurs}} +{{label|nl|aantal reactoren}} +| rdfs:domain = NuclearPowerStation +| rdfs:range = xsd:nonNegativeInteger +}}OntologyProperty:NumberOfRedirectedResource20212267572542022-03-28T21:22:10Z +{{DatatypeProperty +| labels = + {{label|en|numberOfRedirectedResource}} + {{label|fr|nombre de ressources redirigées}} +| comments = + {{comment|en|number of redirected resource to another one}} + {{comment|fr|nombre de ressources qui redirigent vers d'autres ressources}} + {{comment|cs|počet redirectů - zdrojů přesměrovaných na jiný zdroj}} +| rdfs:range = xsd:nonNegativeInteger + +}}OntologyProperty:NumberOfResource20212235534892018-11-30T20:17:43Z +{{DatatypeProperty +| rdfs:label@en = numberOfResource +| rdfs:comment@en = number of all resource in DBpedia (including disambiguation pages and rediretcs) +| rdfs:range = xsd:nonNegativeInteger + +}}OntologyProperty:NumberOfResourceOfClass20212242534212018-10-25T18:34:32Z +{{DatatypeProperty +| rdfs:label@en = number of all resource / entities of a class +| rdfs:label@cs = celkový počet zdrojů / entit v dané tříde +| rdfs:range = xsd:nonNegativeInteger + +}}OntologyProperty:NumberOfResourceOfType20212239534132018-10-24T20:01:03Z{{DatatypeProperty +| rdfs:label@en = number of resource / entities for concrete type of subject +| rdfs:label@cs = počet zdrojů / entint pro konkrétní typ subjectu +| rdfs:range = xsd:nonNegativeInteger +}}OntologyProperty:NumberOfResourceWithType20212264534912018-11-30T20:18:54Z{{DatatypeProperty +| rdfs:label@en = nmberOfResourceWithType +| rdfs:comment@en = number of resource in DBpedia with Class type (= Class entity) +| rdfs:range = xsd:nonNegativeInteger + +}}OntologyProperty:NumberOfRestaurants2022512572512022-03-28T21:11:32Z{{DatatypeProperty +| labels = + {{label|en|number of restaurants}} + {{label|fr|nombre de restaurants}} + {{label|de|Anzahl der Restaurants}} + {{label|el|αριθμός εστιατορίων}} +| rdfs:domain = Hotel +| rdfs:range = xsd:nonNegativeInteger +}}OntologyProperty:NumberOfRockets2025626531762018-07-19T08:54:45Z{{ DatatypeProperty + + | rdfs:label@en = number of rockets +| rdfs:label@de = Anzahl der Raketen + | rdfs:domain = MilitaryAircraft + | rdfs:range = xsd:nonNegativeInteger + +}}OntologyProperty:NumberOfRooms2022513573022022-03-30T14:42:23Z{{DatatypeProperty +| labels = + {{label|en|number of rooms}} + {{label|fr|nombre de pièces}} + {{label|de|Anzahl der Zimmer}} + {{label|el|αριθμός δωματίων}} + {{label|nl|aantal kamers}} +| rdfs:domain = Building +| rdfs:range = xsd:nonNegativeInteger +}}OntologyProperty:NumberOfRun2027805271112013-07-05T14:02:02Z{{DatatypeProperty +| labels = +{{label|en|number of run}} +| rdfs:range = xsd:nonNegativeInteger +| rdfs:domain = Person +}}OntologyProperty:NumberOfSeasons2021402574412022-04-17T21:22:57Z{{DatatypeProperty +| labels = + {{label|en|number of seasons}} + {{label|fr|nombre de saisons}} + {{label|de|Anzahl der Staffeln}} +| rdfs:domain = TelevisionShow +| rdfs:range = xsd:nonNegativeInteger +}}OntologyProperty:NumberOfSeats2029327572522022-03-28T21:14:51Z{{ DatatypeProperty + | labels = + {{label|en|number of seats}} + {{label|fr|nombre de places}} + {{label|de|Anzahl der Sitze}} + {{label|nl|aantal plaatsen}} + | rdfs:domain = MeanOfTransportation + | rdfs:range = xsd:nonNegativeInteger + +}}OntologyProperty:NumberOfSeatsInParliament2028265340062014-04-04T15:31:24Z{{DatatypeProperty +| labels = +{{label|en|number of seats in parliament}} +{{label|de|Anzahl der Sitze im Parlament}} +{{label|nl|aantal zetels in parlement}} +| comments = +{{comment|en| number of seats in House of Commons-like parliaments }} +{{comment|nl| aantal zetels in Tweede-Kamer-achtig parlement }} +| rdfs:domain = PoliticalParty +| rdfs:range = xsd:nonNegativeInteger +}}OntologyProperty:NumberOfSettlement2027018340072014-04-04T15:31:29Z{{DatatypeProperty +| labels = +{{label|en|number of settlement}} +{{label|de|Zahl der Siedlungen}} +| rdfs:domain = Department +| rdfs:range = xsd:nonNegativeInteger +}}OntologyProperty:NumberOfSettlementsInCountry20212255534472018-10-28T11:30:23Z +{{DatatypeProperty +| rdfs:label@en = number of entities of Settlement class in country +| rdfs:label@cs = počet entit třídy Sídlo v dané zemi +| rdfs:range = xsd:nonNegativeInteger +| rdfs:domain = Country +}}OntologyProperty:NumberOfSilverMedalsWon2021209340082014-04-04T15:31:35Z{{DatatypeProperty +|labels = + {{label|en|number of silver medals won}} +{{label|de|Anzahl der Silbermedaillen}} + {{label|fr|nomber de médailles d'argent gagnées}} + {{label|es|cantidad de medallas de plata ganadas}} + {{label|nl|aantal gewonnen zilveren medailles}} +| rdfs:domain = SportCompetitionResult +| rdfs:range = xsd:nonNegativeInteger +}}OntologyProperty:NumberOfSoccerPlayerInCountryRepre20212260534532018-10-28T21:05:00Z +{{DatatypeProperty +| rdfs:label@en = number of SoccerPlayers in Country Repre +| rdfs:label@cs = celkový počet fotbalový hráčů v reprezentaci +| rdfs:range = xsd:nonNegativeInteger +| rdfs:domain = SoccerClub +}}OntologyProperty:NumberOfSoccerPlayersBornInPlace20212261534542018-10-28T21:13:22Z +{{DatatypeProperty +| rdfs:label@en = number of SoccerPlayers born in Place +| rdfs:label@cs = počet fotbalistů narozen na daném místě +| rdfs:range = xsd:nonNegativeInteger +| rdfs:domain = Place +}}OntologyProperty:NumberOfSoccerPlayersInTeam20212259534522018-10-28T20:34:05Z +{{DatatypeProperty +| rdfs:label@en = number of SoccerPlayers in entity of SoccerClub +| rdfs:label@cs = počet fotbalových hráčů ve fotbalovém týmu +| rdfs:range = xsd:nonNegativeInteger +| rdfs:domain = SoccerClub +}}OntologyProperty:NumberOfSpans2023439124582011-04-27T14:31:38Z{{DatatypeProperty +| rdfs:label@en = number of spans +| rdfs:label@de = Anzahl der Bögen +| rdfs:domain = Bridge +| rdfs:range = xsd:nonNegativeInteger +| rdfs:comment@en = Number of spans or arches. +}}OntologyProperty:NumberOfSpeakers2025290248052013-04-09T11:17:16Z{{ DatatypeProperty +| labels = +{{label|en|number of speakers}} +{{label|nl|aantal sprekers}} +{{label|de|Anzahl Sprecher}} +| rdfs:domain = Language +| rdfs:range = xsd:nonNegativeInteger +}}OntologyProperty:NumberOfSports2021210227892013-01-15T10:37:39Z{{DatatypeProperty +| labels = + {{label|en|number of sports}} + {{label|fr|numbre de sports}} + {{label|es|numero de deportes}} +| rdfs:range = xsd:nonNegativeInteger +}}OntologyProperty:NumberOfSportsEvents2026372520402017-05-06T16:05:44Z{{DatatypeProperty +| labels = + {{label|en|number of sports events}} +{{label|de|Anzahl der Sportveranstaltungen}} + {{label|el|αριθμός αθλητικών γεγονότων}} + {{label|fr|numbre d'épreuves sportives}} + {{label|es|numero de pruebas deportivas}} +| domain = SportsEvent +| rdfs:range = xsd:nonNegativeInteger +}}OntologyProperty:NumberOfStaff2021211340102014-04-04T15:31:47Z{{DatatypeProperty +| labels = +{{label|en|number of staff}} +{{label|de|Personalbestand}} +{{label|el|αριθμός προσωπικού}} +{{label|nl|aantal medewerkers}} +| rdfs:domain = Organisation +| rdfs:range = xsd:nonNegativeInteger +}}OntologyProperty:NumberOfStars2025340572552022-03-28T21:24:28Z{{ DatatypeProperty + + | labels = + {{label|en|number of stars}} + {{label|fr|nombre d'étoiles}} + {{label|de|Anzahl der Sterne}} + | rdfs:domain = Constellation + | rdfs:range = xsd:nonNegativeInteger + +}}OntologyProperty:NumberOfStateDeputies2023358122452011-04-15T14:01:12Z{{DatatypeProperty +| rdfs:label@en = Number Of State Deputies +| rdfs:label@pt = numero de deputados estaduais +| rdfs:domain = PopulatedPlace +| rdfs:range = xsd:nonNegativeInteger +}}OntologyProperty:NumberOfStations2023610572562022-03-28T21:27:23Z{{DatatypeProperty +| labels = + {{label|en|number of stations}} + {{label|fr|nombre de stations}} + {{label|de|Anzahl der Stationen}} +| rdfs:domain = RouteOfTransportation +| rdfs:range = xsd:nonNegativeInteger +| comments = + {{comment|en|Number of stations or stops.}} + {{comment|fr|Nombre de stations, gares ou arrêts.}} +}}OntologyProperty:NumberOfStores20211981526132017-10-31T13:40:38Z{{DatatypeProperty +| rdfs:label@en = number of sores +| rdfs:label@de = Anzahl an Geschäften +| rdfs:domain = ShoppingMall +| rdfs:range = xsd:nonNegativeInteger +}}OntologyProperty:NumberOfStudents2022149572452022-03-28T20:58:10Z{{DatatypeProperty +|labels= + {{label|en|number of students}} + {{label|fr|nombre d'étudiants}} + {{label|de|Zahl der Studierenden}} + {{label|el|αριθμός φοιτητών}} +| rdfs:domain = EducationalInstitution +| rdfs:range = xsd:nonNegativeInteger +| owl:equivalentProperty=wikidata:P2196 +}}OntologyProperty:NumberOfStudioAlbums2025196568862022-03-02T17:40:09Z{{DatatypeProperty +| labels = + {{label|en|number of studio albums}} + {{label|fr|nombre d'albums studio}} + {{label|de|Zahl der Studio-Alben}} +| comments = + {{comment|en|the number of studio albums released by the musical artist}} + {{comment|fr|nombre d'albums que l'artiste musical a réalisés en studio}} +| rdfs:domain = MusicalArtist +| rdfs:range = xsd:nonNegativeInteger +}}OntologyProperty:NumberOfSuites2022514104532010-11-10T15:04:04Z{{DatatypeProperty +| rdfs:label@en = number of suites +| rdfs:domain = Hotel +| rdfs:range = xsd:nonNegativeInteger +}}OntologyProperty:NumberOfTeams2027316572462022-03-28T21:00:59Z{{DatatypeProperty +| labels = + {{label|en|number of teams}} + {{label|fr|nombre d'équipes}} + {{label|de|Anzahl der Teams}} + {{label|it|numero di squadre}} +| rdfs:domain = SportsLeague +| rdfs:range = xsd:nonNegativeInteger +}}OntologyProperty:NumberOfTracks2023234572662022-03-28T21:47:55Z{{DatatypeProperty +| labels = + {{label|en|number of tracks}} + {{label|fr|nombre de voies}} + {{label|de|Anzahl der Gleise}} +| rdfs:domain = Infrastructure +| rdfs:range = xsd:nonNegativeInteger +| comments = + {{comment|en|Number of tracks of a railway or railway station.}} + {{comment|fr|Nombre de voies d'un chemin de fer ou d'une gare.}} +}}OntologyProperty:NumberOfTrails20211804519212017-02-20T11:21:21Z{{DatatypeProperty +| rdfs:label@en = number of trails +| rdfs:label@ja = コース数 +| rdfs:domain = SkiArea +| rdfs:range = xsd:nonNegativeInteger +| rdfs:comment@en = Number of trails in ski area. +}}OntologyProperty:NumberOfTriples20212237572572022-03-28T21:30:10Z{{DatatypeProperty +| labels = + {{label|en|numberOfTriples}} + {{label|fr|nombre de triplets}} +| comments = + {{comment|en|number of triples in DBpedia}} + {{comment|fr|nombre de triplets dans DBpedia}} +| rdfs:range = xsd:nonNegativeInteger +}}OntologyProperty:NumberOfTurns2025956197642012-11-07T14:42:07Z{{DatatypeProperty +|labels= + {{label|en|number of turns}} + {{label|fr|nombre de virages}} +<!--| rdfs:domain = RouteOfTransportation--> +| rdfs:domain = RaceTrack +| rdfs:range = xsd:nonNegativeInteger +}}OntologyProperty:NumberOfUndergraduateStudents2021541340162014-04-04T15:32:16Z{{DatatypeProperty +| rdfs:label@en = number of undergraduate students +| rdfs:label@de = Zahl der Studenten +| rdfs:domain = EducationalInstitution +| rdfs:range = xsd:nonNegativeInteger +}}OntologyProperty:NumberOfUniqeResources20212265534902018-11-30T20:18:14Z +{{DatatypeProperty +| rdfs:label@en = numberOfUniqeResources +| rdfs:comment@en = number of unique resource without redirecting +| rdfs:range = xsd:nonNegativeInteger + +}}OntologyProperty:NumberOfUseOfProperty20212246534272018-10-25T20:57:45Z +{{DatatypeProperty +| rdfs:label@en = number of use of a property +| rdfs:label@cs = počet použití property +| rdfs:range = xsd:nonNegativeInteger + +}}OntologyProperty:NumberOfVehicles2023622567532022-02-28T17:04:38Z{{DatatypeProperty +| labels = + {{label|en|number of vehicles}} + {{label|de|Anzahl der Fahrzeuge}} + {{label|fr|nombre de véhicules}} +| rdfs:domain = PublicTransitSystem +| rdfs:range = xsd:nonNegativeInteger +| comments = + {{comment|en|Number of vehicles used in the transit system.}} + {{comment|fr|Nombre de véhicules dans le système de transition.}} +}}OntologyProperty:NumberOfVillages2026790340172014-04-04T15:32:21Z{{DatatypeProperty +| labels = +{{label|en|number of villages }} +{{label|de|Anzahl der Dörfer}} +{{label|id|jumlah desa/kelurahan }} +| comments = +| rdfs:domain = District +| rdfs:range = xsd:nonNegativeInteger +}}OntologyProperty:NumberOfVineyards2021212572652022-03-28T21:43:35Z{{DatatypeProperty +| labels = + {{label|en|number of vineyards}} + {{label|fr|nombre de vignobles}} + {{label|de|Anzahl von Weinbergen}} +| rdfs:domain = WineRegion +| rdfs:range = xsd:nonNegativeInteger +}}OntologyProperty:NumberOfVisitors2021213572642022-03-28T21:41:28Z{{DatatypeProperty +| labels = + {{label|en|number of visitors}} + {{label|fr|nombre de visiteurs}} + {{label|de|Besucherzahl}} + {{label|el|αριθμός επισκεπτών}} + {{label|nl|bezoekersaantal}} +| rdfs:range = xsd:nonNegativeInteger +}}OntologyProperty:NumberOfVisitorsAsOf2023222120362011-04-07T14:24:23Z{{DatatypeProperty +| rdfs:label@en = number of visitors as of +| rdfs:domain = HistoricPlace +| rdfs:range = xsd:gYear +| rdfs:comment@en = The year in which number of visitors occurred. +}}OntologyProperty:NumberOfVolumes2025988572622022-03-28T21:37:53Z{{DatatypeProperty +| labels = + {{label|en|number of volumes}} + {{label|fr|nombre de volumes}} +| rdfs:domain = WrittenWork +| rdfs:range = xsd:nonNegativeInteger +| rdfs:comment@en = +}}OntologyProperty:NumberOfVolunteers2021214572632022-03-28T21:40:28Z{{DatatypeProperty +| labels = + {{label|en|number of volunteers}} + {{label|fr|nombre de bénévoles}} + {{label|de|Anzahl der Freiwilligen}} + {{label|el|αριθμός εθελοντών}} +| rdfs:domain = Organisation +| rdfs:range = xsd:nonNegativeInteger +}}OntologyProperty:NumberOfWineries2021215104082010-11-10T14:43:26Z{{DatatypeProperty +| rdfs:label@en = number of wineries +| rdfs:domain = WineRegion +| rdfs:range = xsd:nonNegativeInteger +}}OntologyProperty:NumberSold20211625509662016-04-26T14:44:19Z{{DatatypeProperty +| rdfs:label@en = number sold +| rdfs:domain = Sales +| rdfs:range = xsd:nonNegativeInteger +| rdfs:comment@en = Number of things (eg vehicles) sold +}}OntologyProperty:NutsCode2022436483772015-06-16T06:21:33Z{{DatatypeProperty +| labels = +{{label|en|NUTS code}} +{{label|nl|NUTS-code:}} +| rdfs:comment@en = 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. +| rdfs:domain = Place +| rdfs:range = xsd:string +| owl:equivalentProperty = wikidata:P605 +}}OntologyProperty:Observatory2027064572472022-03-28T21:02:21Z{{DatatypeProperty +| labels = + {{label|en|observatory}} + {{label|fr|observatoire}} + {{label|de|Observatorium}} + {{label|el|αστεροσκοπείο}} +| comments = + {{comment|el|επιστημονικά ιδρύματα που παρατηρούν και μελετάνε ουράνια σώματα και φαινόμενα.}} +| rdfs:domain = Island +| rdfs:range = xsd:string +}}OntologyProperty:Occupation2021216587872022-05-31T14:50:55Z +{{ObjectProperty +| labels = + {{label|en|occupation}} + {{label|de|Beschäftigung}} + {{label|fr|activité}} + {{label|ja|職業}} + {{label|nl|beroep}} +| rdfs:range = PersonFunction +| owl:equivalentProperty = wikidata:P106, dbo:activity +| rdfs:subPropertyOf = dul:hasRole +}}OntologyProperty:Oclc2021718132062011-05-25T16:50:57Z{{DatatypeProperty +| rdfs:label@en = OCLC +| rdfs:domain = WrittenWork +| rdfs:range = xsd:string +| rdfs:comment@en = Online Computer Library Center number +}}OntologyProperty:Odor20212044528002018-02-07T19:10:39Z{{DatatypeProperty +| labels = +{{label|en|Odor}} +{{label|de|Geruch}} +| rdfs:range = xsd:string +}}OntologyProperty:OfferedClasses2021217525822017-10-31T08:33:23Z{{DatatypeProperty +| rdfs:label@en = offered classes +| rdfs:domain = EducationalInstitution +| rdfs:range = xsd:string +}}OntologyProperty:Office2022324524822017-10-16T07:27:04Z{{DatatypeProperty +| rdfs:label@en = (political) office +| rdfs:label@el = υπηρεσία +| rdfs:label@de = (politisches) Amt +| rdfs:range = xsd:string +}}OntologyProperty:OfficerInCharge2021218363402014-07-08T14:06:39Z +{{ObjectProperty +| rdfs:label@en = officer in charge +| rdfs:domain = University +| rdfs:range = Person +| rdfs:subPropertyOf = dul:coparticipatesWith +}}OntologyProperty:OfficialLanguage2022763572612022-03-28T21:36:30Z +{{ObjectProperty +| labels = + {{label|en|official language}} + {{label|fr|langue officielle}} + {{label|de|Amtssprache}} +| rdfs:domain = PopulatedPlace +| rdfs:range = Language +| rdfs:subPropertyOf = dul:coparticipatesWith +}}OntologyProperty:OfficialName2026939572582022-03-28T21:31:43Z{{DatatypeProperty +| labels = + {{label|en|official name}} + {{label|fr|nom officiel}} + {{label|de|offizieller Name}} +| rdfs:domain = Settlement +| rdfs:range = rdf:langString +| owl:equivalentProperty = gn:officialName +}}OntologyProperty:OfficialOpenedBy2021219363422014-07-08T14:06:53Z +{{ObjectProperty +| rdfs:label@en = official opened by +| rdfs:domain = Olympics +| rdfs:range = Person +| rdfs:subPropertyOf = dul:hasParticipant +}}OntologyProperty:OfficialSchoolColour202700131232011-05-23T10:45:01Z{{DatatypeProperty +| rdfs:label@en = official school colour +| rdfs:label@de = offizielle Schulfarbe +| rdfs:domain = EducationalInstitution +| rdfs:range = xsd:string +| rdfs:subPropertyOf = ColourName +| rdfs:comment@en = The official colour of the EducationalInstitution represented by the colour name (e.g.: red or green). +}}OntologyProperty:OfsCode2026942483742015-06-16T06:14:48Z{{DatatypeProperty +| labels = +{{label|en|ofs code of a settlement}} +| rdfs:domain = Settlement +| rdfs:range = xsd:string +| rdfs:subPropertyOf = isoCode +| rdfs:comment@en = Identifier used by the Swiss Federal Institute for Statistics +| owl:equivalentProperty = wikidata:P771 +}}OntologyProperty:OilSystem2021220363432014-07-08T14:06:56Z +{{ObjectProperty +| rdfs:label@en = oil system +| rdfs:label@de = Ölsystem +| rdfs:domain = AutomobileEngine +| rdfs:subPropertyOf = dul:hasComponent +}}OntologyProperty:OkatoCode2027280483752015-06-16T06:16:20Z{{DatatypeProperty +| labels = +{{label|en|okato code}} +| rdfs:domain = PopulatedPlace +| rdfs:range = xsd:string +| rdfs:comment@en = Code used to indentify populated places in Russia +| owl:equivalentProperty = wikidata:P721 +}}OntologyProperty:OldDistrict2026979572602022-03-28T21:34:18Z +{{ObjectProperty +| labels = + {{label|en|old district}} + {{label|fr|ancienne région}} + {{label|de|Altstadt}} +| rdfs:range = PopulatedPlace +| rdfs:domain = PopulatedPlace +| rdfs:subPropertyOf = dul:isPartOf +}}OntologyProperty:OldName2027278572482022-03-28T21:03:31Z{{DatatypeProperty +| labels = + {{label|en|old name}} + {{label|fr|ancien nom}} + {{label|el|παλιό όνομα}} + {{label|de|alter Name}} +| rdfs:domain = PopulatedPlace +| rdfs:range = xsd:string +}}OntologyProperty:OldProvince2026978572592022-03-28T21:32:57Z +{{ObjectProperty +| labels = + {{label|en|old province}} + {{label|fr|ancienne province}} + {{label|de|alte Provinz}} +| rdfs:range = PopulatedPlace +| rdfs:domain = PopulatedPlace +| rdfs:subPropertyOf = dul:isPartOf +}}OntologyProperty:OldTeamCoached2027692269662013-07-04T09:33:41Z{{ObjectProperty +| labels = +{{label|en|old team coached}} +| rdfs:domain = Athlete +| rdfs:range = SportsTeam +}}OntologyProperty:Oldcode2021221572492022-03-28T21:04:52Z{{DatatypeProperty +| labels = + {{label|en|oldcode}} + {{label|fr|ancien code}} +| rdfs:domain = OlympicResult +| rdfs:range = xsd:string +}}OntologyProperty:OlivierAward2021222363462014-07-08T14:07:07Z +{{ObjectProperty +| rdfs:label@en = Olivier Award +| rdfs:domain = Comedian +| rdfs:range = Award +| rdfs:subPropertyOf = dul:coparticipatesWith +}}OntologyProperty:OlympicGames2027565340292014-04-04T15:33:14Z{{ObjectProperty +| labels = +{{label|en|olympic games}} +{{label|de|olympische Spiele}} +{{label|nl|Olympische Spelen}} +| rdfs:range = Tournament +| rdfs:domain = Person +}}OntologyProperty:OlympicGamesBronze2027572317352014-02-11T13:32:23Z{{DatatypeProperty +| labels = +{{label|en|olympic games bronze}} +{{label|nl|brons op de Olympische Spelen}} +| rdfs:domain = Person +| rdfs:range = xsd:nonNegativeInteger +}}OntologyProperty:OlympicGamesGold2027570317342014-02-11T13:31:32Z{{DatatypeProperty +| labels = +{{label|en|olympic games gold}} +{{label|nl|goud op de Olympische Spelen}} +| rdfs:domain = Person +| rdfs:range = xsd:nonNegativeInteger +}}OntologyProperty:OlympicGamesSilver2027571317332014-02-11T13:30:23Z{{DatatypeProperty +| labels = +{{label|en|olympic games silver}} +{{label|nl|zilver op de Olympische Spelen}} +| rdfs:domain = Person +| rdfs:range = xsd:nonNegativeInteger +}}OntologyProperty:OlympicGamesWins2027650317372014-02-11T13:34:12Z{{DatatypeProperty +| labels = +{{label|en|olympic games wins}} +{{label|nl|overwinningen op de Olympische Spelen}} +| rdfs:domain = Person +| rdfs:range = xsd:string +}}OntologyProperty:OlympicOathSwornBy2026374363472014-07-08T14:07:10Z +{{ObjectProperty +| labels = + {{label|de|Olympischer Eid}} + {{label|en|olympic oath sworn by}} + {{label|fr|lecteur du serment olympique}} +| rdfs:domain = Olympics +| rdfs:range = Person +| rdfs:subPropertyOf = dul:hasParticipant +}}OntologyProperty:OlympicOathSwornByAthlete2021223363482014-07-08T14:07:13Z +{{ObjectProperty +| rdfs:label@en = olympic oath sworn by athlete +| rdfs:domain = Olympics +| rdfs:range = Person +| rdfs:subPropertyOf = olympicOathSwornBy, dul:hasParticipant +}}OntologyProperty:OlympicOathSwornByJudge2021224363492014-07-08T14:07:17Z +{{ObjectProperty +| rdfs:label@en = olympic oath sworn by judge +| rdfs:domain = Olympics +| rdfs:range = Person +| rdfs:subPropertyOf = olympicOathSwornBy, dul:hasParticipant +}}OntologyProperty:Omim2021225237022013-02-11T09:21:03Z{{DatatypeProperty +| labels = +{{label|en|OMIM id}} +{{label|nl|OMIM id}} +{{label|ja|OMIM id}} +| rdfs:domain = Biomolecule +| rdfs:range = xsd:integer +}}OntologyProperty:OnChromosome2025052391242015-01-09T23:40:30Z{{DatatypeProperty +| rdfs:label@en = on chromosome +| rdfs:label@nl = chromosoom nummer +| rdfs:comment@en = the number corresponding to the chromosome on which the gene is located +| rdfs:domain = GeneLocation +| rdfs:range = xsd:integer +}}OntologyProperty:Ons2026848528592018-02-09T14:10:34Z{{DatatypeProperty +| labels = +{{label|en|ONS ID (Office national des statistiques) Algeria}} +| rdfs:domain = Settlement +| rdfs:range = xsd:nonNegativeInteger +}}OntologyProperty:OpenAccessContent2023745132012011-05-25T16:48:41Z{{DatatypeProperty +| rdfs:label@en = open access content +| rdfs:label@de = frei zugänglicher Inhalten +| rdfs:domain = PeriodicalLiterature +| rdfs:range = xsd:string +| rdfs:comment@en = Availability of open access content. +| rdfs:comment@de = Verfügbarkeit von frei zugänglichem Inhalten. +}}OntologyProperty:OpeningDate2021226462582015-03-18T14:56:38Z{{DatatypeProperty +| rdfs:label@en = opening date +| rdfs:label@el = ημερομηνία ανοίγματος +| rdfs:label@fr = date d'ouverture +| rdfs:label@de = Eröffnungsdatum +| rdfs:range = xsd:date +}}OntologyProperty:OpeningFilm2021227363502014-07-08T14:07:20Z +{{ObjectProperty +| rdfs:label@en = opening film +| rdfs:label@de = Eröffnungsfilm +| rdfs:domain = FilmFestival +| rdfs:range = Film +| rdfs:subPropertyOf = dul:hasParticipant +}}OntologyProperty:OpeningTheme2021228363512014-07-08T14:07:24Z +{{ObjectProperty +| rdfs:label@en = opening theme +| rdfs:domain = TelevisionShow +| rdfs:range = Work +| rdfs:subPropertyOf = dul:hasPart +}}OntologyProperty:OpeningYear2023382462602015-03-18T14:58:20Z{{DatatypeProperty +| rdfs:label@en = opening year +| rdfs:label@nl = openingsjaar +| rdfs:label@de = Eröffnungsjahr +| rdfs:range = xsd:gYear +}}OntologyProperty:OperatingIncome2021229527772018-01-23T15:03:10Z{{DatatypeProperty +| rdfs:label@en = operating income +| rdfs:label@de = Betriebsergebnis +| rdfs:domain = Company +| rdfs:range = Currency +| rdf:type = owl:FunctionalProperty +| owl:equivalentProperty = wikidata:P3362 +}}OntologyProperty:OperatingSystem2021230367732014-07-09T16:34:38Z{{ObjectProperty +| labels = + {{label|en|operating system}} + {{label|el|λειτουργικό σύστημα}} + {{label|de|Betriebssystem}} + {{label|nl|besturingssysteem}} +| rdfs:domain = Software +| rdfs:subPropertyOf = dul:hasParticipant +}}OntologyProperty:Operator2021231512012016-06-08T13:09:23Z +{{ObjectProperty +| labels = + {{label|en|operator}} + {{label|de|Betreiber}} + {{label|nl|exploitant}} +| rdfs:domain = owl:Thing +| rdfs:range = owl:Thing +| rdfs:subPropertyOf = dul:coparticipatesWith +| rdfs:comment@en = Organisation or City who is the operator of an ArchitecturalStructure, PublicTransitSystem, ConcentrationCamp, etc. Not to confuse with builder, owner or maintainer. +Domain is unrestricted since Organization is Agent but City is Place. Range is unrestricted since anything can be operated. +}}OntologyProperty:Opponent2021232363552014-07-08T14:07:37Z +{{ObjectProperty +| rdfs:label@en = opponent +| rdfs:label@ja = 敵対者 +| rdfs:label@de = Gegner +| rdfs:domain = Person +| rdfs:range = Person +| rdfs:subPropertyOf = dul:coparticipatesWith +}}OntologyProperty:Opponents2027467363562014-07-08T14:07:41Z +{{ObjectProperty +| rdfs:label@en = opponents +| rdfs:label@de = Gegner +| rdfs:comment@en = "opponent in a military conflict, an organisation, country, or group of countries. " +| rdfs:domain = MilitaryConflict +| rdfs:range = owl:Thing +| rdfs:subPropertyOf = dul:hasParticipant +}}OntologyProperty:OrbitalEccentricity2027964567932022-02-28T21:34:58Z{{DatatypeProperty +| labels = + {{label|en|orbital eccentricity}} + {{label|fr|excentricité orbitale}} +| rdfs:domain = CelestialBody +| rdfs:range = xsd:float +}}OntologyProperty:OrbitalFlights2021233104092010-11-10T14:43:37Z{{DatatypeProperty +| rdfs:label@en = orbital flights +| rdfs:domain = YearInSpaceflight +| rdfs:range = xsd:nonNegativeInteger +}}OntologyProperty:OrbitalInclination2021234340352014-04-04T15:33:41Z{{DatatypeProperty +| rdfs:label@en = orbital inclination +| rdfs:label@de = Bahnneigung +| rdfs:domain = SpaceMission +| rdfs:range = xsd:float +}}OntologyProperty:OrbitalPeriod2021235340362014-04-04T15:33:47Z{{DatatypeProperty +| rdfs:label@en = orbital period +| rdfs:label@de = Umlaufzeit +| rdfs:label@el = Περίοδος περιφοράς +| rdfs:domain = Planet +| rdfs:range = Time +}}OntologyProperty:Orbits2021236340372014-04-04T15:33:52Z{{DatatypeProperty +| rdfs:label@en = orbits +| rdfs:label@de = Bahnen +| rdfs:range = xsd:integer +}}OntologyProperty:OrcidId2028421528822018-02-13T10:53:15Z{{DatatypeProperty +| labels = +{{label|en|ORCID Id}} +| comments = +{{comment|en|Authority data on researchers, academics, etc. The ID range has been defined as a subset of the forthcoming ISNI range.}} +| rdfs:range = xsd:string +| owl:equivalentProperty = wikidata:P496 +| rdfs:subPropertyOf = code +}}OntologyProperty:Order2021237486182015-08-06T12:36:58Z{{ObjectProperty +| labels = + {{label|en|order (taxonomy)}} + {{label|de|Ordnung}} + {{label|el|διαταγή}} + {{label|fr|ordre (taxonomie)}} + {{label|nl|orde}} + {{label|ja|目_(分類学)}} +| rdfs:domain = Species +| owl:equivalentProperty = wikidata:P70 +| rdfs:subPropertyOf = dul:isSpecializedBy +}}OntologyProperty:OrderDate2023110116552011-04-02T11:06:18Z{{DatatypeProperty +| rdfs:label@en=order date +| rdfs:domain = Ship +| rdfs:range = xsd:date +}}OntologyProperty:OrderInOffice202232383912010-05-28T13:57:55Z{{DatatypeProperty +| rdfs:label@en = order in office +| rdfs:range = xsd:string +}}OntologyProperty:Ordination202266695672010-09-20T08:24:07Z{{DatatypeProperty +| rdfs:label@en = Ordination +| rdfs:domain = Priest +| rdfs:range = xsd:date +}}OntologyProperty:Organ2029342329812014-03-26T11:49:20Z{{ObjectProperty +| labels = +{{label|en|organ}} +{{label|nl|orgel}} +| comments = +{{comment|en|Name and/or description of the organ}} +{{comment|nl|Naam en/of beschrijving van het orgel}} +| rdfs:domain = ReligiousBuilding +| rdfs:range = Organ +| rdf:type = +| rdfs:subPropertyOf = +| owl:equivalentProperty = +}}OntologyProperty:OrganSystem2022111363582014-07-08T14:07:48Z +{{ObjectProperty +| rdfs:label@en = organ system +| rdfs:comment@en = the organ system that a anatomical structure belongs to +| rdfs:domain = AnatomicalStructure +| rdfs:range = AnatomicalStructure +| rdfs:subPropertyOf = dul:isPartOf +}}OntologyProperty:Organisation2027126574422022-04-17T21:24:08Z{{ObjectProperty +| labels = + {{label|en|organisation}} + {{label|fr|organisation}} + {{label|de|Organisation}} +| rdfs:range = Organisation +| rdfs:subPropertyOf = dul:sameSettingAs +}}OntologyProperty:OrganisationMember2025040363602014-07-08T14:07:57Z +{{ObjectProperty +| rdfs:label@en = organisation member +| rdfs:label@de = Organisationsmitglied +| rdfs:comment@en = Identify the members of an organisation. +| rdfs:domain = Organisation +| rdfs:range = OrganisationMember +| rdfs:subPropertyOf = dul:hasMember +}}OntologyProperty:Orientation2027818567782022-02-28T18:35:56Z{{DatatypeProperty +| labels = + {{label|en|orientation}} + {{label|fr|orientation}} + {{label|de|Orientierung}} +| rdfs:domain = Person +| rdfs:range = xsd:string +| owl:equivalentProperty = wikidata:P91 +}}OntologyProperty:Origin2021239363612014-07-08T14:08:01Z +{{ObjectProperty +| labels = + {{label|en|origin}} + {{label|el|προέλευση}} + {{label|nl|oorsprong}} + {{label|de|Herkunft}} + {{label|fr|origine}} + {{label|pt|origem}} +| rdfs:range = PopulatedPlace +| rdfs:subPropertyOf = dul:hasCommonBoundary +}}OntologyProperty:OriginalDanseCompetition2028076282392013-09-04T09:17:38Z{{DatatypeProperty +| labels = +{{label|en|original danse competititon}} +| rdfs:domain = Person +| rdfs:range = xsd:string +}}OntologyProperty:OriginalDanseScore2028075282382013-09-04T09:17:17Z{{DatatypeProperty +| labels = +{{label|en|original danse score}} +| rdfs:domain = Person +| rdfs:range = xsd:string +}}OntologyProperty:OriginalEndPoint2021240363622014-07-08T14:08:16Z +{{ObjectProperty +| rdfs:label@en = original end point +| rdfs:label@el = πρωταρχικό_σημείο_τέλους +| rdfs:domain = Canal +| rdfs:range = Place +| rdfs:subPropertyOf = dul:hasCommonBoundary +}}OntologyProperty:OriginalLanguage2023831363632014-07-08T14:08:20Z +{{ObjectProperty +| labels = + {{label|en|original language}} + {{label|nl|oorspronkelijke taal}} + {{label|de|Originalsprache}} + {{label|fr|langue originale}} + {{label|es|idioma original}} +| rdfs:domain = Work +| rdfs:range = Language +| rdfs:subPropertyOf = language, dul:isExpressedBy +| rdfs:comment@en = The original language of the work. +| owl:equivalentProperty = wikidata:P364 +}}OntologyProperty:OriginalMaximumBoatBeam202124181862010-05-28T13:30:14Z{{DatatypeProperty +| rdfs:label@en = original maximum boat beam +| rdfs:domain = Canal +| rdfs:range = Length +}}OntologyProperty:OriginalMaximumBoatLength202124281872010-05-28T13:30:23Z{{DatatypeProperty +| rdfs:label@en = original maximum boat length +| rdfs:domain = Canal +| rdfs:range = Length +}}OntologyProperty:OriginalName2025251537002020-09-04T15:27:50Z{{ DatatypeProperty +| labels = +{{label|en|original name}} +{{label|de|ursprünglicher Namen}} +{{label|nl|oorspronkelijke naam}} +| rdfs:comment@en = The original name of the entity, e.g. film, settlement, etc. +| rdfs:domain = owl:Thing +| rdfs:range = rdf:langString +| owl:equivalentProperty = ceo:oorspronkelijkeNaam +}}OntologyProperty:OriginalNotLatinTitle20213834572262022-03-24T20:46:58Z{{ DatatypeProperty +| labels = +{{label|en|original title not latin}} +{{label|en|titre original non latin}} +| comments = + {{comment|en|The original non latin title of the work}} + {{comment|fr|Titre original non latin de l'oeuvre}} +| rdfs:domain = Work +| rdfs:range = rdf:langString +}}OntologyProperty:OriginalStartPoint2021243363642014-07-08T14:08:25Z +{{ObjectProperty +| rdfs:label@en = original start point +| rdfs:label@de = ursprünglicher Ausgangspunkt +| rdfs:label@el = πρωταρχική_αρχή +| rdfs:domain = Canal +| rdfs:range = Place +| rdfs:subPropertyOf = dul:hasCommonBoundary +}}OntologyProperty:OriginalTitle2026794572272022-03-24T20:51:58Z{{ DatatypeProperty +| labels = + {{label|en|original title}} + {{label|fr|titre original}} + {{label|de|Originaltitel}} + {{label|nl|oorspronkelijke titel}} +| comments = + {{comment|en|The original title of the work, most of the time in the original language as well}} + {{comment|fr|Titre original de l'oeuvre, le plus souvent aussi dans la langue d'origine}} +| rdfs:domain = Work +| rdfs:range = rdf:langString +}}OntologyProperty:OriginallyUsedFor2026007512292016-06-09T09:54:32Z{{DatatypeProperty +| labels = +{{label|en|originally used for}} +{{label|de|ursprünglich verwendet für}} +{{label|nl|oorspronkelijk gebruik}} +| rdfs:domain = owl:Thing +| rdfs:range = xsd:string +| rdfs:comment@en = Original use of ArchitecturalStructure or ConcentrationCamp, if it is currently being used as anything other than its original purpose. +}}OntologyProperty:Origo2029283325972014-03-11T09:26:31Z{{ObjectProperty +| rdfs:label@en = origo +| rdfs:domain = Muscle +| rdfs:range = AnatomicalStructure +}}OntologyProperty:Orogeny2021244363652014-07-08T14:08:27Z +{{ObjectProperty +| rdfs:label@en = orogeny +| rdfs:label@fr = orogenèse +| rdfs:subPropertyOf = dul:isClassifiedBy +}}OntologyProperty:Orpha20211876522132017-10-07T15:49:16Z{{DatatypeProperty +| labels = +{{label|en|ORPHA}} +{{label|nl|ORPHA}} +{{label|de|ORPHA}} +{{label|fr|ORPHA}} +| rdfs:domain = Disease +| rdfs:range = xsd:string +}}OntologyProperty:OrthologousGene2025048363662014-07-08T14:08:31Z +{{ObjectProperty +| rdfs:label@en = Orthologous Gene +| rdfs:label@ja = オーソロガス遺伝子 +| rdfs:domain = Gene +| rdfs:range = Gene +| rdfs:subPropertyOf = dul:sameSettingAs +}}OntologyProperty:Other202124581882010-05-28T13:30:32Z{{DatatypeProperty +| rdfs:label@en = other +| rdfs:domain = University +| rdfs:range = xsd:integer +}}OntologyProperty:OtherActivity2027699572672022-03-28T21:50:04Z{{DatatypeProperty +| labels = + {{label|en|other activity}} + {{label|fr|autre activité}} + {{label|de|andere Aktivität}} +| rdfs:domain = Person +| rdfs:range = xsd:string +}}OntologyProperty:OtherAppearances2021246363672014-07-08T14:08:34Z +{{ObjectProperty +| rdfs:label@en = other appearances +| rdfs:domain = OlympicResult +| rdfs:range = OlympicResult +| rdfs:subPropertyOf = dul:sameSettingAs +}}OntologyProperty:OtherChannel2023184119132011-04-05T10:38:02Z{{DatatypeProperty +| rdfs:label@en = other channel +| rdfs:domain = Broadcaster +| rdfs:range = xsd:string +}}OntologyProperty:OtherFamilyBranch2029293326592014-03-13T16:27:55Z{{ObjectProperty +|labels = +{{label|en|other branch}} +{{label|nl|zijtak}} +| rdfs:domain = NobleFamily +| rdfs:range = Family +}}OntologyProperty:OtherFuelType2029590355162014-06-28T22:03:15Z{{ObjectProperty +|rdfs:label@en = secondary/other fuel type +|rdfs:domain = PowerStation +}}OntologyProperty:OtherFunction2027558572682022-03-28T21:51:05Z{{ObjectProperty +| labels = + {{label|en|other function}} + {{label|fr|autre fonction}} + {{label|de|andere Funktion}} +| rdfs:domain = Person +}}OntologyProperty:OtherInformation2026904340482014-04-04T15:34:44Z{{DatatypeProperty +| labels = +{{label|en|other information of a settlement}} +{{label|de|andere Informationen einer Siedlung}} +| rdfs:domain = Settlement +| rdfs:range = xsd:string +}}OntologyProperty:OtherLanguage2026895572692022-03-28T21:53:23Z{{DatatypeProperty +| labels = + {{label|en|other language of a settlement}} + {{label|fr|autre langue de la colonie}} + {{label|de|anderen Sprache einer Siedlung}} +| rdfs:domain = Settlement +| rdfs:range = xsd:string +}}OntologyProperty:OtherMedia2027880340502014-04-04T15:34:55Z{{ObjectProperty +| labels = +{{label|en|other media}} +{{label|de|andere Medien}} +| rdfs:domain = Person +| rdfs:range = PeriodicalLiterature +}}OntologyProperty:OtherName2026894348452014-05-15T05:19:13Z{{DatatypeProperty +| labels = +{{label|en|other name}} +{{label|de|anderer Name}} +| rdfs:domain = PopulatedPlace +| rdfs:range = rdf:langString +}}OntologyProperty:OtherOccupation2027882273642013-07-10T14:08:48Z{{ObjectProperty +| labels = +{{label|en|other occupation}} +| rdfs:domain = Person +| rdfs:range = PersonFunction +}}OntologyProperty:OtherParty2021248363682014-07-08T14:08:37Z +{{ObjectProperty +| rdfs:label@en = other party +| rdfs:label@de = andere Partei +| rdfs:domain = OfficeHolder +| rdfs:range = PoliticalParty +| rdfs:subPropertyOf = dul:isMemberOf +}}OntologyProperty:OtherServingLines2023228222742013-01-11T00:22:36Z{{DatatypeProperty +| labels = +{{label|en|other serving lines}} +{{label|nl|andere verbindingen}} +{{label|de|andere Verbindungen}} +| rdfs:domain = Station +| rdfs:range = xsd:string +| rdfs:comment@en = Connecting services that serve the station such as bus, etc. +}}OntologyProperty:OtherSportsExperience2027976280242013-08-11T04:34:43Z{{ObjectProperty +| labels = +{{label|en|otherSportsExperience}} +{{label|ja|スポーツ歴}} +| rdfs:domain = Athlete +| rdfs:range = Athletics +}}OntologyProperty:OtherWins2023541126752011-05-07T14:10:02Z{{DatatypeProperty +| rdfs:label@en = other wins +| rdfs:label@de = Sonstige Siege +| rdfs:domain = SnookerPlayer +| rdfs:range = xsd:nonNegativeInteger +| rdfs:subPropertyOf = Wins +}}OntologyProperty:OtherWorks20213833572162022-03-18T19:13:12Z{{ObjectProperty +| labels = + {{label|en|other works}} + {{label|fr|autres oeuvres}} +| rdfs:domain = Work +| rdfs:range = WorkSequence +| comments = + {{comment|en|Tells about existence of other works.}} + {{comment|fr|Indique l'existence d'autres oeuvres antérieures/postérieures. }} +}}OntologyProperty:Outflow2021249503262016-02-05T08:21:54Z{{ObjectProperty +| rdfs:label@en = outflow +| rdfs:label@de = Abfluss +| rdfs:label@el = εκροή +| rdfs:domain = BodyOfWater +| rdfs:range = River +| rdfs:subPropertyOf = dul:hasCommonBoundary +}}OntologyProperty:Output2027191257412013-06-01T13:20:18Z{{DatatypeProperty +| labels = +{{label|en|output}} +| rdfs:domain = Place +| rdfs:range = xsd:float +}}OntologyProperty:OutputHistory20213824571232022-03-13T19:52:41Z{{DatatypeProperty +| labels = + {{label|en|output history}} + {{label|fr|historique de sortie}} +| comments = + {{comment|en|Existence of multiple output dates.}} + {{comment|fr|Indique qu'il existe plusieurs dates de sortie. Valeur oui / non. +}} +| rdfs:domain = MusicalWork +| rdfs:range = xsd:string +}}OntologyProperty:Outskirts2027238258942013-06-12T14:03:14Z{{DatatypeProperty +| labels = +{{label|en|outskirts}} +| rdfs:domain = PopulatedPlace +| rdfs:range = xsd:string +}}OntologyProperty:OverallRecord2021250340542014-04-04T15:35:13Z{{DatatypeProperty +| rdfs:label@en = overall record +| rdfs:label@de = Gesamtbilanz +| rdfs:domain = CollegeCoach +| rdfs:range = xsd:string +}}OntologyProperty:Oversight202125181912010-05-28T13:30:58Z{{DatatypeProperty +| rdfs:label@en = oversight +| rdfs:domain = School +| rdfs:range = xsd:string +}}OntologyProperty:Owl:differentFrom20210468397472015-02-03T08:58:41Z{{ObjectProperty +| labels = + {{label|en|An owl:differentFrom statement indicates that two URI references refer to different individuals}} +}}OntologyProperty:Owl:sameAs2024030138302011-06-22T10:09:51Z{{ObjectProperty +| rdfs:label@en = same as +}}OntologyProperty:Owner2021252478202015-04-28T15:20:20Z{{Merge|OntologyProperty:owningOrganisation}} + + +{{ObjectProperty +| labels = + {{label|en|owner}} + {{label|nl|eigenaar}} + {{label|de|Eigentümer}} + {{label|el|ιδιοκτήτης}} + {{label|fr|propriétaire}} + {{label|es|dueño}} + {{label|ga|úinéir}} + {{label|pl|właściciel}} +| rdfs:comment@en = Used as if meaning: owned by, has as its owner +| rdfs:domain = +| rdfs:range = Agent +| rdfs:subPropertyOf = dul:sameSettingAs +| owl:equivalentProperty = wikidata:P127 +}}OntologyProperty:OwningCompany2021253363712014-07-08T14:08:47Z +{{ObjectProperty +| rdfs:label@en = owning company +| rdfs:label@de = Besitzerfirma +| rdfs:range = Company +| rdfs:subPropertyOf = dul:sameSettingAs +}}OntologyProperty:OwningOrganisation2021254587842022-05-31T14:34:20Z{{Merge|OntologyProperty:owner}} + + +{{ObjectProperty +| rdfs:label@en = owning organisation +| rdfs:label@el = οργανισμός +| rdfs:range = Organisation +| rdfs:subPropertyOf = owner +| owl:equivalentProperty = wikidata:P1830 +}}OntologyProperty:Owns20210202536662020-07-30T21:19:33Z{{ObjectProperty +| labels = + {{label|en|owns}} + {{label|nl|in bezit van}} +| rdfs:comment@en = Used as if meaning: has property rights over +| rdfs:domain= Agent +| rdfs:range = Thing +| rdfs:subPropertyOf = dul:sameSettingAs +| owl:equivalentProperty = schema:owns +}}OntologyProperty:Painter2025621572502022-03-28T21:07:22Z +{{ObjectProperty +| labels = + {{label|en|painter}} + {{label|fr|peintre}} + {{label|de|Maler}} + {{label|el|ζωγράφος}} +| rdfs:domain = Artwork +| rdfs:range = Person +| rdfs:subPropertyOf = dul:coparticipatesWith +}}OntologyProperty:Pandemic20213104569812022-03-09T10:41:43Z{{ObjectProperty +| labels = + {{label|en|Pandemic}} + {{label|fr|Pandémie}} + {{label|zh|瘟疫}} +| comments = + {{comment|en|Global epidemic of infectious disease}} + {{comment|fr|Epidémie globale de maladie infectieuse}} + {{comment|zh|也称大流行,是指某种流行病的大范围疾病爆发,其规模涉及多个大陆甚至全球(即全球大流行),并有大量人口患病}} +| rdfs:domain = owl:Thing +| rdfs:range = Disease +}}OntologyProperty:PandemicDeaths20213106548762021-07-22T02:54:09Z{{DatatypeProperty +| labels = +{{label|en|Deaths}} +| rdfs:comment@en = Number of deaths caused by pandemic +| rdfs:domain = Outbreak +| rdfs:range = xsd:integer +}}OntologyProperty:Parent2021256535962020-02-04T05:26:28Z +{{ObjectProperty +| labels = + {{label|en|parent}} + {{label|de|Elternteil}} + {{label|nl|ouder}} + {{label|fr|parent}} + {{label|ja|親}} +| rdfs:domain = Person +| rdfs:range = Person +| owl:propertyDisjointWith = child +| rdfs:subPropertyOf = dul:sameSettingAs +}}OntologyProperty:ParentCompany2021257363752014-07-08T14:09:00Z +{{ObjectProperty +| rdfs:label@en = parent company +| rdfs:label@de = Muttergesellschaft +| rdfs:range = Company +| rdfs:subPropertyOf = dul:sameSettingAs +}}OntologyProperty:ParentMountainPeak2022416363762014-07-08T14:09:04Z +{{ObjectProperty +| rdfs:label@en = parent mountain peak +| rdfs:domain = Mountain +| rdfs:range = Mountain +| rdfs:subPropertyOf = dul:sameSettingAs +}}OntologyProperty:ParentOrganisation2021258363772014-07-08T14:09:07Z +{{ObjectProperty +| labels = + {{label|en|parent organisation}} + {{label|nl|moederorganisatie}} +| rdfs:domain = Organisation +| rdfs:range = Organisation +| owl:equivalentProperty = schema:branchOf +| rdfs:subPropertyOf = dul:sameSettingAs +}}OntologyProperty:Parentheses20211993574432022-04-17T21:25:20Z{{ObjectProperty +| labels = + {{label|en|parentheses}} + {{label|fr|parenthèses}} + {{label|nl|haakjes}} +| rdfs:domain = Species + +}}OntologyProperty:Parish2022139363782014-07-08T14:09:10Z +{{ObjectProperty +| rdfs:label@en = parish +| rdfs:label@de = Gemeinde +| rdfs:domain = PopulatedPlace +| rdfs:range = PopulatedPlace +| rdfs:subPropertyOf = dul:isPartOf +}}OntologyProperty:ParkingInformation2023235120582011-04-07T15:59:55Z{{DatatypeProperty +| rdfs:label@en = parking information +| rdfs:label@de = Parkplatzinformationen +| rdfs:domain = Station +| rdfs:range = xsd:string +| rdfs:comment@en = Information on station's parking facilities. +}}OntologyProperty:ParkingLotsCars20211143461852015-03-18T08:57:41Z{{DatatypeProperty +| rdfs:label@en = number of parking lots for cars +| rdfs:label@nl = aantal parkeerplaatsen personenauto's +| rdfs:domain = RestArea +| rdfs:range = xsd:nonNegativeInteger +}}OntologyProperty:ParkingLotsTrucks20211144461862015-03-18T08:58:40Z{{DatatypeProperty +| rdfs:label@en = number of parking lots for trucks +| rdfs:label@nl = aantal parkeerplaatsen vrachtwagens +| rdfs:domain = RestArea +| rdfs:range = xsd:nonNegativeInteger +}}OntologyProperty:Parliament2027179524852017-10-16T08:01:24Z{{ObjectProperty +| labels = +{{label|en|parliament}} +{{label|de|Parlament}} +| rdfs:domain = owl:Thing +| rdfs:range = Parliament +}}OntologyProperty:ParliamentType2027180257292013-06-01T10:21:10Z{{DatatypeProperty +| labels = +{{label|en|parliament type}} +| rdfs:domain = Place +| rdfs:range = xsd:string +}}OntologyProperty:ParliamentaryGroup2027813340612014-04-04T15:35:50Z{{DatatypeProperty +| labels = +{{label|en|parliamentary group}} +{{label|de|Fraktion}} +| rdfs:domain = Person +| rdfs:range = xsd:string +}}OntologyProperty:Part2021259523072017-10-09T12:48:28Z +{{ObjectProperty +| rdfs:label@en = part +| rdfs:label@de = Teil +| rdfs:subPropertyOf = dul:hasPart +}}OntologyProperty:PartialFailedLaunches2021260104112010-11-10T14:45:25Z{{DatatypeProperty +| rdfs:label@en = partial failed launches +| rdfs:range = xsd:nonNegativeInteger +| rdfs:comment@en = total number of launches resulting in partial failure +}}OntologyProperty:Participant2025280574442022-04-17T21:26:17Z{{ DatatypeProperty +| labels = + {{label|en|participant}} + {{label|fr|participant}} + {{label|nl|deelnemer}} + {{label|de|Teilnehmer}} +| rdfs:domain = Event +| rdfs:range = xsd:string +}}OntologyProperty:ParticipatingIn20210243385262014-10-03T14:49:21Z{{ObjectProperty +| labels = + {{label|en|participates/participated in}} + {{label|de|nimmt Teil an}} + {{label|nl|neemt deel aan}} +| rdfs:domain = MemberResistanceMovement +| rdfs:range = SocietalEvent +| rdfs:subPropertyOf = dul:sameSettingAs +}}OntologyProperty:ParticularSign2027819271282013-07-05T14:44:17Z{{DatatypeProperty +| labels = +{{label|en|particular sign}} +| rdfs:domain = Person +| rdfs:range = xsd:string +}}OntologyProperty:PartitionCoefficient20212042527982018-02-07T19:02:56Z{{DatatypeProperty +| labels = +{{label|en|Partition coefficient}} +{{label|de|Verteilungskoeffizient}} +{{label|nl|Verdelingscoëfficiënt}} +| rdfs:domain = ChemicalSubstance +| rdfs:range = xsd:float +}}OntologyProperty:Partner2021261572702022-03-28T21:55:05Z +{{ObjectProperty +| labels = + {{label|en|partner}} + {{label|fr|partenaire}} + {{label|nl|partner}} + {{label|el|συνέταιρος}} + {{label|de|Partner}} +| rdfs:domain = Person +| rdfs:range = Person +| rdfs:subPropertyOf = dul:sameSettingAs +}}OntologyProperty:Party2021264363812014-07-08T14:09:31Z +{{ObjectProperty +| labels = + {{label|en|party}} + {{label|el|πάρτυ}} + {{label|nl|partij}} + {{label|de|Partei}} + {{label|ja|政党}} +| rdfs:domain = owl:Thing +| rdfs:range = PoliticalParty +| owl:equivalentProperty = wikidata:P102 +| rdfs:subPropertyOf = dul:isMemberOf +}}OntologyProperty:PartyNumber2023261121132011-04-13T10:11:35Z{{DatatypeProperty +| rdfs:label@en = party number +| rdfs:label@pt = número do partido +| rdfs:range = xsd:integer +}}OntologyProperty:PassengersPerDay2023574568682022-03-01T20:45:22Z{{DatatypeProperty +| labels = + {{label|en|passengers per day}} + {{label|fr|passagers par jour}} + {{label|de|Passagiere pro Tag}} +| rdfs:domain = Infrastructure +| rdfs:range = xsd:nonNegativeInteger +| comments = + {{comment|en|Number of passengers per day.}} + {{comment|fr|Nombre de passagers par jour.}} +}}OntologyProperty:PassengersPerYear2023575572712022-03-28T21:57:30Z{{DatatypeProperty +| labels = + {{label|en|passengers per year}} + {{label|fr|passagers par an}} + {{label|nl|passagiers per jaar}} + {{label|de|Passagiere pro Jahr}} +| rdfs:domain = Infrastructure +| rdfs:range = xsd:nonNegativeInteger +| comments = + {{comment|en|Number of passengers per year.}} + {{comment|fr|Nombre de passagers par an.}} +}}OntologyProperty:PassengersUsedSystem2023251120772011-04-08T12:30:21Z{{DatatypeProperty +| rdfs:label@en = passengers used system +| rdfs:label@de = benutztes System der Passagiere +| rdfs:domain = Station +| rdfs:range = xsd:string +| rdfs:comment@en = System the passengers are using (from which the passenger statistics are). +}}OntologyProperty:PastMember2021265363822014-07-08T14:09:33Z +{{ObjectProperty +| rdfs:label@en = past member +| rdfs:range = Person +| rdfs:subPropertyOf = dul:hasMember +}}OntologyProperty:Pastor2022783363832014-07-08T14:09:35Z +{{ObjectProperty +| rdfs:label@en = pastor +| rdfs:domain = HistoricBuilding +| rdfs:range = Person +| rdfs:subPropertyOf = dul:sameSettingAs +}}OntologyProperty:Patent2023352363842014-07-08T14:09:38Z +{{ObjectProperty +| rdfs:label@en = patent +| rdfs:label@de = Patent +| rdfs:label@pt = patente +| rdfs:domain = Person +| rdfs:subPropertyOf = dul:sameSettingAs +}}OntologyProperty:Patron2021267363852014-07-08T14:09:42Z +{{ObjectProperty +| rdfs:label@en = patron +| rdfs:label@de = Patron +| rdfs:label@pt = patrono +| rdfs:domain = MilitaryUnit +| rdfs:range = Person +| rdfs:subPropertyOf = dul:sameSettingAs +}}OntologyProperty:PatronSaint2026852525902017-10-31T08:59:33Z +{{ObjectProperty +| labels = {{label|en|patron saint}} +| rdfs:range = Person +| rdfs:subPropertyOf = dul:sameSettingAs +}}OntologyProperty:PccSecretary2027229258772013-06-11T12:57:31Z{{DatatypeProperty +| labels = +{{label|en|pcc secretary}} +| rdfs:range = xsd:string +}}OntologyProperty:Pdb2021269515682016-11-01T15:07:13Z{{DatatypeProperty +| labels = + {{label|en|PDB ID}} + {{label|ja|PDB ID}} +| comments = + {{comment|en|gene entry for 3D structural data as per the PDB (Protein Data Bank) database}} +| rdfs:domain = Protein +| rdfs:range = xsd:string +| owl:equivalentProperty = wikidata:P638 +}}OntologyProperty:PeabodyAward2021270363872014-07-08T14:09:49Z +{{ObjectProperty +| rdfs:label@en = Peabody Award +| rdfs:domain = Comedian +| rdfs:range = Award +| rdfs:subPropertyOf = dul:coparticipatesWith +}}OntologyProperty:PenaltiesTeamA2026196251522013-05-05T22:18:26Z{{DatatypeProperty +| rdfs:label@en = Penalties Team A +| rdfs:domain = PenaltyShootOut +| rdfs:range = xsd:string +}}OntologyProperty:PenaltiesTeamB2026197251532013-05-05T22:18:41Z{{DatatypeProperty +| rdfs:label@en = Penalties Team B +| rdfs:domain = PenaltyShootOut +| rdfs:range = xsd:string +}}OntologyProperty:PenaltyScore2026122251502013-05-05T22:16:08Z{{DatatypeProperty +| rdfs:label@en = penalty score +| rdfs:domain = PenaltyShootOut +| rdfs:range = xsd:integer +}}OntologyProperty:PendamicDeaths20212301536142020-04-10T06:28:51Z{{DatatypeProperty +| labels = +{{label|en|Deaths}} +| rdfs:comment@en = Number of deaths caused by pandemic +| rdfs:domain = Outbreak +| rdfs:range = xsd:integer +}}OntologyProperty:PenisLength2027816567772022-02-28T18:34:42Z{{DatatypeProperty +| labels = + {{label|en|penis length}} + {{label|fr|longeur du pénis}} +| rdfs:domain = Person +| rdfs:range = xsd:string +}}OntologyProperty:PeopleFullyVaccinated20213115548892021-07-26T03:53:53Z{{ObjectProperty +| labels = + {{label|en|People Fully Vaccinated}} +| comments = + {{comment|en|VaccinationStatistics: Number of people fully vaccinated.}} +| rdfs:domain = owl:Thing +| rdfs:range = VaccinationStatistics +}}OntologyProperty:PeopleName2026897396752015-01-22T07:55:59Z{{DatatypeProperty +| labels = +{{label|en|peopleName}} +|comments= +{{comment|en|Name for the people inhabiting a place, eg Ankara->Ankariotes, Bulgaria->Bulgarians}} +| rdfs:domain = PopulatedPlace +| rdfs:range = rdf:langString +}}OntologyProperty:PeopleVaccinated20213114548882021-07-26T03:52:37Z{{ObjectProperty +| labels = + {{label|en|People Vaccinated}} +| comments = + {{comment|en|VaccinationStatistics: Number of people vaccinated.}} +| rdfs:domain = owl:Thing +| rdfs:range = VaccinationStatistics +}}OntologyProperty:PeopleVaccinatedPerHundred20213118548922021-07-26T03:59:19Z{{ObjectProperty +| labels = + {{label|en|People Vaccinated Per Hundred}} +| comments = + {{comment|en|VaccinationStatistics: total vaccination percent.}} +| rdfs:domain = owl:Thing +| rdfs:range = VaccinationStatistics +}}OntologyProperty:PerCapitaIncome2023268340702014-04-04T16:26:31Z{{DatatypeProperty +| rdfs:label@en = per capita income +| rdfs:label@de = Pro-Kopf-Einkommen +| rdfs:label@pt = renda per capita +| rdfs:domain = PopulatedPlace +| rdfs:range = Currency +}}OntologyProperty:PerCapitaIncomeAsOf2023269121242011-04-13T13:33:27Z{{DatatypeProperty +| rdfs:label@en = per capita income as of +| rdfs:label@pt = renda per capita em +| rdfs:domain = PopulatedPlace +| rdfs:range = xsd:date +}}OntologyProperty:PerCapitaIncomeRank2027124499172015-12-29T10:54:21Z{{DatatypeProperty +| labels = +{{label|en|per capital income rank}} +| rdfs:domain = PopulatedPlace +| rdfs:range = xsd:string +}}OntologyProperty:Percentage2029186319182014-02-14T18:44:37Z{{ObjectProperty +| rdfs:label@en = percentage +| rdfs:label@de = Prozent +| rdfs:label@nl = percentage +}}OntologyProperty:PercentageAlcohol2026718340712014-04-04T16:26:35Z{{DatatypeProperty +| rdfs:label@en = percentage of alcohol +| rdfs:label@de = Anteil von Alkohol +| rdfs:label@nl = alcoholpercentage +| rdfs:comment@en = percentage of alcohol present in a beverage +| rdfs:domain = Beverage +| rdfs:range = xsd:nonNegativeInteger +}}OntologyProperty:PercentageFat2026738487582015-08-13T10:08:38Z{{DatatypeProperty +| rdfs:label@en = percentage of fat +| rdfs:label@de = Fettgehalt +| rdfs:label@nl = vetgehalte +| rdfs:comment@en = how much fat (as a percentage) does this food contain. Mostly applies to Cheese +| rdfs:domain = Food +| rdfs:range = xsd:nonNegativeInteger +}}OntologyProperty:PercentageLiteracyMen20211428569072022-03-02T19:16:41Z{{DatatypeProperty +| labels = + {{label|en|percentage of a place's male population that is literate, degree of analphabetism}} + {{label|fr|pourcentage de la population masculine alphabétisée d'un lieu, degré d'analphabétisme}} + {{label|nl|percentage van de mannelijke bevolking dat geletterd is}} +| rdfs:domain = PopulatedPlace +| rdfs:range = xsd:float +| rdfs:subPropertyOf = percentageLiterate +}}OntologyProperty:PercentageLiteracyWomen20211429569082022-03-02T19:19:59Z{{DatatypeProperty +| labels = + {{label|en|percentage of a place's female population that is literate, degree of analphabetism}} + {{label|fr|pourcentage de la population féminine alphabétisée d'un lieu, degré d'analphabétisme}} + {{label|nl|percentage van de vrouwelijke bevolking dat geletterd is}} +| rdfs:domain = PopulatedPlace +| rdfs:range = xsd:float +| rdfs:subProperty = percentageLiterate +}}OntologyProperty:PercentageLiterate20211427494392015-11-03T09:46:13Z{{DatatypeProperty +| labels = +{{label|en|percentage of a place's population that is literate, degree of analphabetism}} +{{label|nl|percentage van de bevolking dat geletterd is}} +| rdfs:domain = PopulatedPlace +| rdfs:range = xsd:float +}}OntologyProperty:PercentageOfAreaWater2021271252062013-05-16T13:19:51Z{{DatatypeProperty +| rdfs:label@en = percentage of area water +| rdfs:label@el = ποσοστό_υδάτων +| rdfs:label@nl = percentage wateroppervlak +| rdfs:range = xsd:float +}}OntologyProperty:Performer2026824363882014-07-08T14:09:53Z +{{ObjectProperty +| labels = + {{label|en|performer}} + {{label|de|Künstler}} +| rdfs:domain = FictionalCharacter +| rdfs:range = Person +| rdfs:subPropertyOf = dul:coparticipatesWith +}}OntologyProperty:Periapsis2021273353362014-06-17T12:50:40Z{{DatatypeProperty +| labels = +{{label|en|periapsis}} +{{label|de|Periapsisdistanz}} +| rdfs:domain = CelestialBody +| rdfs:range = Length +}}OntologyProperty:Perifocus20211493499192015-12-29T11:03:50Z{{DatatypeProperty +| labels = +{{label|en|perifocus}} +{{label|nl|perifocus}} +| rdfs:domain = CelestialBody +| rdfs:range = xsd:string +}}OntologyProperty:Perimeter20211556504482016-03-07T20:51:31Z{{DatatypeProperty +| labels = +{{label|en|perimeter}} +{{label|nl|omtrek}} +| rdfs:domain = Place +| rdfs:range = Length +}}OntologyProperty:Period2025281537462020-09-30T11:41:23Z{{ ObjectProperty +| labels = +{{label|en|event period}} +{{label|de|Veranstaltungsdauer}} +{{label|nl|periode}} +{{label|fr|période}} +| owl:equivalentProperty = ceo:heeftPeriode +}}OntologyProperty:Perpetrator20212048528642018-02-13T10:17:27Z{{ ObjectProperty +| labels = +{{label|en|perpetrator}} +{{label|nl|dader}} +{{label|de|Täter}} +{{label|fr|auteur}} +| rdfs:domain = Attack +| rdfs:range = Agent +}}OntologyProperty:Person2021275363892014-07-08T14:09:57Z +{{ObjectProperty +| rdfs:label@en = person +| rdfs:label@de = Person +| rdfs:label@el = άτομο +| rdfs:domain = PersonFunction +| rdfs:range = Person +| rdfs:subPropertyOf = dul:isRoleOf +}}OntologyProperty:PersonFunction202922485182015-08-05T14:38:11Z{{ObjectProperty +| labels = + {{label|en|person function}} + {{label|de|Amt}} + {{label|nl|persoon functie}} +| rdfs:range = PersonFunction +| rdfs:domain = Person +| rdfs:subPropertyOf = dul:hasRole +}}OntologyProperty:PersonName2021276568162022-02-28T22:34:41Z{{DatatypeProperty +| labels = + {{label|en|personName}} + {{label|fr|nom de personne}} +| rdfs:domain = PersonFunction +| rdfs:range = xsd:string +| owl:equivalentProperty=wikidata:P1448 +}}OntologyProperty:PersonsFirstDosesCumul20213130549162021-08-12T06:36:52Z{{DatatypeProperty +| labels = +{{label|en|PersonsFirstDosesCumul}} +| comments = + {{comment|en|Number of persons received first vaccine doses}} +| rdfs:range = xsd:integer +| owl:equivalentProperty = vaccine +| rdfs:domain = owl:Thing +}}OntologyProperty:PersonsFullDosesCumul20213131549172021-08-12T06:38:27Z{{DatatypeProperty +| labels = +{{label|en|PersonsFullDosesCumul}} +| comments = + {{comment|en|Number of persons received full vaccine doses}} +| rdfs:range = xsd:integer +| owl:equivalentProperty = vaccine +| rdfs:domain = owl:Thing +}}OntologyProperty:Pfizer20213111569792022-03-09T10:39:48Z{{DatatypeProperty +| labels = + {{label|en|Pfizer}} + {{label|fr|Pfizer}} + {{label|zh|辉瑞}} +| comments = + {{comment|en|American multinational pharmaceutical corporation the COVID-19 vaccine Pfizer–BioNTech COVID-19 vaccine}} + {{comment|fr|Corporation pharmaceutique multinationale américaine, vaccin contre le COVID-19, vaccin Pfizer–BioNTech COVID-19}} + {{comment|zh|辉瑞是源自美国的跨国制药、生物技术公司,营运总部位于纽约,研发总部位于康涅狄格州的格罗顿市}} +| rdfs:range = xsd:string +| owl:equivalentProperty = vaccine +| rdfs:domain = owl:Thing +}}OntologyProperty:PfizerCumul20213125549102021-08-12T06:12:49Z{{DatatypeProperty +| labels = +{{label|en|PfizerCumulativeDoses}} +| comments = + {{comment|en|American multinational pharmaceutical corporation the COVID-19 vaccine Pfizer–BioNTech COVID-19 vaccine}} + {{comment|en|辉瑞是源自美国的跨国制药、生物技术公司,营运总部位于纽约,研发总部位于康涅狄格州的格罗顿市}} + +| rdfs:range = xsd:integer +| owl:equivalentProperty = pfizer +| rdfs:domain = owl:Thing +}}OntologyProperty:PgaWins2027649273182013-07-10T11:27:55Z{{ObjectProperty +| labels = +{{label|en|pga wins}} +| rdfs:domain = Person +| rdfs:range = skos:Concept +}}OntologyProperty:PhilosophicalSchool2022311363912014-07-08T14:10:03Z +{{ObjectProperty +| rdfs:label@en = philosophicalSchool +| rdfs:domain = Person +| rdfs:subPropertyOf = dul:isMemberOf +}}OntologyProperty:PhonePrefix2026849451602015-02-11T08:52:45Z{{DatatypeProperty +| labels = +{{label|en|phone prefix}} +{{label|de|Telefonvorwahl}} +| rdfs:comment@en = Don't use this, use areaCode +| rdfs:domain = PopulatedPlace +| rdfs:range = xsd:nonNegativeInteger +}}OntologyProperty:PhonePrefixLabel2026927348502014-05-15T05:19:54Z{{DatatypeProperty +| labels = +{{label|en|phone prefix label of a settlement}} +| rdfs:domain = Settlement +| rdfs:range = rdf:langString +}}OntologyProperty:Photographer2021277572732022-03-28T22:01:08Z +{{ObjectProperty +| labels = + {{label|en|photographer}} + {{label|fr|photographe}} + {{label|de|Fotograf}} +| rdfs:domain = TelevisionEpisode +| rdfs:range = Person +| rdfs:subPropertyOf = dul:coparticipatesWith +| owl:equivalentProperty = gnd:photographer +}}OntologyProperty:Phylum2021278363932014-07-08T14:10:09Z +{{ObjectProperty +| labels = + {{label|en|phylum}} + {{label|es|filo}} + {{label|fr|Embranchement phylogénétique}} + {{label|ja|門_(分類学)}} +| comments = + {{comment|en|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.<ref>https://en.wiktionary.org/wiki/phylum</ref>}} + {{comment|fr|En systématique, l'embranchement (ou phylum) est le deuxième niveau de classification classique des espèces vivantes.<ref>https://fr.wikipedia.org/wiki/Embranchement_%28biologie%29</ref>}} +| rdfs:domain = Species +| rdfs:subPropertyOf = dul:isSpecializedBy +}} +== references == +<references/>OntologyProperty:Picture2023217570912022-03-12T11:33:45Z{{ObjectProperty +| labels = + {{label|en|picture}} + {{label|el|εικόνα}} + {{label|nl|afbeelding}} + {{label|pt|figura}} + {{label|de|bild}} + {{label|ru|рисунок}} + {{label|fr|image}} +| rdfs:domain = owl:Thing +| rdfs:range = owl:Thing +| comments = + {{comment|en|A picture of something or someone.}} + {{comment|fr|Image de quelque chose ou quelqu'un.}} +| owl:equivalentProperty = schema:image +| rdfs:subPropertyOf = dul:concretelyExpresses +}}OntologyProperty:PictureDescription2025272340782014-04-04T16:27:09Z{{ ObjectProperty + + | rdfs:label@en = picture description +| rdfs:label@de = Bildbeschreibung + | rdfs:domain = owl:Thing + | rdfs:range = owl:Thing + +}}OntologyProperty:PictureFormat2023055572722022-03-28T21:59:26Z +{{ObjectProperty +| labels = + {{label|en|picture format}} + {{label|fr|format d'image}} + {{label|de|Bildformat}} +| rdfs:domain = Broadcaster +| rdfs:range = owl:Thing +| rdfs:subPropertyOf = dul:hasQuality +}}OntologyProperty:PicturesCommonsCategory2029300433322015-02-06T15:01:18Z{{DatatypeProperty +| labels = +{{label|en|pictures Commons category}} +| rdfs:comment@en=Wikimedia CommonsCategory for pictures of this resource +| rdfs:range = xsd:string +}}OntologyProperty:Piercing2023287340792014-04-04T16:27:15Z{{DatatypeProperty +| rdfs:label@en = piercing +| rdfs:label@de = Piercing +| rdfs:label@pt = piercing +| rdfs:domain = Person +| rdfs:range = xsd:string +}}OntologyProperty:PisciculturalPopulation2027101256252013-05-26T13:38:14Z{{DatatypeProperty +| labels = +{{label|en|piscicultural population}} +| rdfs:domain = Place +| rdfs:range = xsd:string +}}OntologyProperty:PistonStroke202127982002010-05-28T13:32:15Z{{DatatypeProperty +| rdfs:label@en = piston stroke +| rdfs:domain = AutomobileEngine +| rdfs:range = Length +}}OntologyProperty:Place2021280537642020-10-08T23:09:12Z +{{ObjectProperty +| rdfs:label@en = Relates an entity to the populated place in which it is located. +| rdfs:domain = owl:Thing +| rdfs:range = PopulatedPlace +| rdfs:subPropertyOf = dul:hasLocation +| owl:equivalentProperty = event:place +}}OntologyProperty:PlaceOfBurial2021281474492015-04-01T16:11:10Z{{ObjectProperty +| labels = + {{label|en|place of burial}} + {{label|ca|lloc d'enterrament}} + {{label|de|Ort der Bestattung}} + {{label|el|τόπος θαψίματος}} + {{label|nl|begraafplaats}} + {{label|pl|miejsce pochówku}} +| rdfs:domain = Person +| rdfs:range = Place +| comments = + {{comment|en|The place where the person has been buried.}} + {{comment|el|Ο τόπος όπου το πρόσωπο έχει θαφτεί.}} + {{comment|nl|De plaats waar een persoon is begraven.}} +| rdfs:subPropertyOf = dul:hasLocation +| owl:equivalentProperty = wikidata:P119 +}}OntologyProperty:PlaceOfWorship2026479574462022-04-17T21:30:06Z{{ObjectProperty +| labels = + {{label|en|place of worship}} + {{label|fr|lieu de culte}} + {{label|de|Kultstätte}} + {{label|nl|gebedsplaats}} +| comments = + {{comment|en|A religious administrative body needs to know which places of worship it }} + {{comment|fr|Une structure administrative religieuse doit connaître ses lieux de culte }} + {{comment|nl|Een kerkelijke organisatie houdt bij welke gebedshuizen ze heeft}} +| rdfs:domain = ClericalAdministrativeRegion +| rdfs:range = ReligiousBuilding +| rdf:type = | rdfs:subPropertyOf = +| owl:equivalentProperty = +| rdfs:subPropertyOf = dul:sameSettingAs +}}OntologyProperty:Plant2021283363992014-07-08T14:10:31Z +{{ObjectProperty +| rdfs:label@en = plant +| rdfs:label@de = Pflanze +| rdfs:label@el = φυτό +| rdfs:label@ja = 植物 +| rdfs:domain = Place +| rdfs:range = Plant +| rdfs:subPropertyOf = dul:isLocationOf +}}OntologyProperty:PlayRole2026803364002014-07-08T14:10:35Z +{{ObjectProperty +| rdfs:label@en = play role +| rdfs:domain = owl:Thing +| rdfs:range = owl:Thing +| rdfs:subPropertyOf = uses, dul:hasRole +}}OntologyProperty:PlayerInTeam2024317485112015-08-05T14:19:45Z{{ObjectProperty +| labels = + {{label|en|player in team}} + {{label|de|Spieler im Team}} + {{label|el|παίχτης σε ομάδα}} +| rdfs:domain = SportsTeam +| rdfs:range = Person +| comments = + {{comment|en|A person playing for a sports team. inverseOf team}} + {{comment|el|Άτομο που παίζει για αθλητική ομάδα.}} +| rdfs:subPropertyOf = dul:hasMember +| owl:inverseOf = team +}}OntologyProperty:PlayerSeason2027874273352013-07-10T12:46:14Z{{ObjectProperty +| rdfs:label@en = player season +| rdfs:domain = Agent +}}OntologyProperty:PlayerStatus2027790340842014-04-04T16:27:50Z{{DatatypeProperty +| labels = +{{label|en|player status}} +{{label|de|Spielerstatus}} +| rdfs:domain = Person +| rdfs:range = xsd:string +}}OntologyProperty:PlayingTime2022301340852014-04-04T16:27:54Z{{DatatypeProperty +| labels = +{{label|en|playing time}} +{{label|de|Spielzeit}} +{{label|nl|speeltijd}} +| rdfs:range = Time +}}OntologyProperty:Plays2021285224552013-01-12T22:51:48Z{{DatatypeProperty +| labels = +{{label|en|plays}} +{{label|nl|slaghand}} +| rdfs:domain = TennisPlayer +| rdfs:range = xsd:string +}}OntologyProperty:Pluviometry2027230340862014-04-04T16:27:58Z{{DatatypeProperty +| labels = +{{label|en|pluviometry}} +{{label|de|Regenmessung}} +| rdfs:domain = PopulatedPlace +| rdfs:range = xsd:string +}}OntologyProperty:Podium2027808340872014-04-04T16:28:03Z{{DatatypeProperty +| labels = +{{label|en|podium}} +{{label|de|Podest}} +| rdfs:range = xsd:nonNegativeInteger +| rdfs:domain = Person +}}OntologyProperty:Podiums2021286340882014-04-04T16:28:07Z{{DatatypeProperty +| rdfs:label@en = podiums +| rdfs:label@de = Podestplätze +| rdfs:domain = FormulaOneRacer +| rdfs:range = xsd:nonNegativeInteger +}}OntologyProperty:Pole2027653340892014-04-04T16:28:12Z{{DatatypeProperty +| labels = +{{label|en|pole}} +{{label|de|Pol}} +| rdfs:range = xsd:string +}}OntologyProperty:PoleDriver2021287364022014-07-08T14:10:53Z +{{ObjectProperty +| rdfs:label@en = pole driver +| rdfs:domain = GrandPrix +| rdfs:range = Person +| rdfs:subPropertyOf = dul:hasParticipant +}}OntologyProperty:PoleDriverCountry2021288364032014-07-08T14:10:55Z +{{ObjectProperty +| rdfs:label@en = pole driver country +| rdfs:domain = GrandPrix +| rdfs:range = Country +| rdfs:subPropertyOf = dul:hasParticipant +}}OntologyProperty:PoleDriverTeam2021289364042014-07-08T14:10:59Z +{{ObjectProperty +| rdfs:label@en = pole driver team +| rdfs:domain = GrandPrix +| rdfs:range = SportsTeam +| rdfs:subPropertyOf = dul:hasParticipant +}}OntologyProperty:PolePosition2027806341152014-04-04T16:30:17Z{{DatatypeProperty +| labels = +{{label|en|pole position}} +| rdfs:range = xsd:nonNegativeInteger +| rdfs:domain = Person +}}OntologyProperty:Poles2021290340912014-04-04T16:28:20Z{{DatatypeProperty +| rdfs:label@en = poles +| rdfs:label@de = Pole +| rdfs:label@fr = pôle +| rdfs:domain = FormulaOneRacer +| rdfs:range = xsd:nonNegativeInteger +}}OntologyProperty:PoliceName2027298391832015-01-11T19:04:44Z{{DatatypeProperty +| labels = +{{label|en|police name}} +| comments = +{{comment|en|The police detachment serving a UK place, eg Wakefield -> "West Yorkshire Police"}} +| rdfs:domain = PopulatedPlace +| rdfs:range = xsd:string +}}OntologyProperty:PolishFilmAward2022468364052014-07-08T14:11:02Z +{{ObjectProperty +| rdfs:label@en = Polish Film Award +| rdfs:label@de = Polnischer Filmpreis +| rdfs:label@pl = Polska Nagroda Filmowa (Orzeł) +| rdfs:domain = Artist +| rdfs:range = Award +| rdfs:subPropertyOf = dul:coparticipatesWith +}}OntologyProperty:PoliticGovernmentDepartment2023349364062014-07-08T14:11:05Z +{{ObjectProperty +| rdfs:label@en = politic government department +| rdfs:label@pt = ministerio do politico +| rdfs:domain = PopulatedPlace +| rdfs:subPropertyOf = Department, dul:hasPart +}}OntologyProperty:PoliticalFunction2027887340932014-04-04T16:28:30Z{{DatatypeProperty +| labels = +{{label|en|political function}} +{{label|de|politische Funktion}} +| rdfs:domain = Person +| rdfs:range = xsd:string +}}OntologyProperty:PoliticalLeader2027896340942014-04-04T16:28:34Z{{ObjectProperty +| labels = +{{label|en|political leader}} +{{label|de|politischer Führer}} +| rdfs:domain = Place +| rdfs:range = PersonFunction +}}OntologyProperty:PoliticalMajority2027898340952014-04-04T16:28:50Z{{ObjectProperty +| labels = +{{label|en|political majority}} +{{label|de|politische Mehrheit}} +| rdfs:domain = Settlement +| rdfs:range = PoliticalParty +}}OntologyProperty:PoliticalPartyInLegislature2023530364072014-07-08T14:11:08Z +{{ObjectProperty +| rdfs:label@en = political party in legislature +| rdfs:label@de = politische Partei in der Legislative +| rdfs:domain = Legislature +| rdfs:range = PoliticalParty +| rdfs:comment@en = Political party in the legislature (eg.: European People's Party in the European Parliament). +| rdfs:subPropertyOf = dul:hasPart +}}OntologyProperty:PoliticalPartyOfLeader2023532364082014-07-08T14:11:11Z +{{ObjectProperty +| rdfs:label@en = political party of leader +| rdfs:label@de = politische Partei des Vorsitzenden +| rdfs:domain = Legislature +| rdfs:range = PoliticalParty +| rdfs:comment@en = The Political party of leader. +| rdfs:subPropertyOf = dul:hasPart +}}OntologyProperty:PoliticalSeats2027899274242013-07-12T10:14:39Z{{DatatypeProperty +| labels = +{{label|en|political seats}} +| rdfs:domain = Settlement +| rdfs:range = xsd:nonNegativeInteger +}}OntologyProperty:Politician20211911523122017-10-09T13:53:04Z{{ObjectProperty +| labels = + {{label|en|politician}} + {{label|de|Politiker}} +| comments = + {{comment|en|The politician exercising this function.}} + {{comment|de|Der Politiker welcher dieses Amt hält (hielt).}} +| rdfs:domain = PoliticalFunction +| rdfs:range = Politician +}}OntologyProperty:PopularVote2022507340972014-04-04T16:28:59Z{{DatatypeProperty +| rdfs:label@en = Number of votes given to candidate +| rdfs:label@de = Anzahl der Stimmen für Kandidaten +| rdfs:domain = Election +| rdfs:range = xsd:nonNegativeInteger +}}OntologyProperty:Population2027908571152022-03-12T21:03:18Z{{ObjectProperty +| labels = + {{label|en|population}} + {{label|fr|population}} +| comments = + {{comment|en|all the inhabitants of a particular place; ex: 14200}} + {{comment|fr|nombre total d'habitants du lieu; ex: 14200}} +| rdfs:domain = PopulatedPlace +| rdfs:range = Population +| owl:equivalentProperty = gn:population +}}OntologyProperty:PopulationAsOf2021291198932012-11-21T17:44:12Z{{DatatypeProperty +| labels = +{{label|en|population as of}} +{{label|nl|bevolking vanaf}} +{{label|fr|population en date de}} +{{label|el|χρονιά_απογραφής}} +| rdfs:domain = PopulatedPlace +| rdfs:range = xsd:date +}}OntologyProperty:PopulationDensity2021292517772016-12-20T13:03:13Z{{DatatypeProperty +| labels = +{{label|en|population density}} +{{label|nl|bevolkingsdichtheid}} +{{label|de|Bevölkerungsdichte}} +{{label|el|πυκνότητα_πληθυσμού}} +{{label|hi|घनत्व}} +| rdfs:domain = PopulatedPlace +| rdfs:range = PopulationDensity +}}OntologyProperty:PopulationMetro2021293104152010-11-10T14:48:10Z{{DatatypeProperty +| rdfs:label@en = population metro +| rdfs:domain = PopulatedPlace +| rdfs:range = xsd:nonNegativeInteger +}}OntologyProperty:PopulationMetroDensity2021294224002013-01-11T21:51:11Z{{DatatypeProperty +| labels = +{{label|en|population metro density}} +{{label|nl|bevolkingsdichtheid}} +| rdfs:domain = PopulatedPlace +| rdfs:range = PopulationDensity +}}OntologyProperty:PopulationPctChildren2028921307402014-01-22T11:22:17Z{{DatatypeProperty + |rdfs:label@en=population percentage under 12 years + |rdfs:domain = PopulatedPlace + |rdfs:range=xsd:nonNegativeInteger +}}OntologyProperty:PopulationPctMen2028919307382014-01-22T11:20:57Z{{DatatypeProperty + |rdfs:label@en=population percentage male + |rdfs:domain = PopulatedPlace + |rdfs:range=xsd:nonNegativeInteger +}}OntologyProperty:PopulationPctWomen2028920307392014-01-22T11:21:32Z{{DatatypeProperty + |rdfs:label@en=population percentage female + |rdfs:domain = PopulatedPlace + |rdfs:range=xsd:nonNegativeInteger +}}OntologyProperty:PopulationPlace2021295364102014-07-08T14:11:18Z +{{ObjectProperty +| rdfs:label@en = population place +| rdfs:domain = EthnicGroup +| rdfs:range = PopulatedPlace +| rdfs:comment@en = a place were members of an ethnic group are living +| rdfs:subPropertyOf = dul:hasLocation +}}OntologyProperty:PopulationQuote2027133256672013-05-26T15:26:24Z{{DatatypeProperty +| labels = +{{label|en|population quote}} +| rdfs:domain = Place +| rdfs:range = xsd:string +}}OntologyProperty:PopulationRural2024349146152011-07-28T12:52:10Z{{DatatypeProperty + |rdfs:label@en=population rural + |rdfs:domain = PopulatedPlace + |rdfs:range=xsd:nonNegativeInteger +}}OntologyProperty:PopulationRuralDensity2024350146162011-07-28T12:52:55Z{{DatatypeProperty + |rdfs:label@en=population density rural + |rdfs:domain = PopulatedPlace + |rdfs:range=PopulationDensity +}}OntologyProperty:PopulationTotal2021296495592015-11-22T15:02:14Z{{DatatypeProperty +| labels = +{{label|de|Einwohnerzahl}} +{{label|pt|população total}} +{{label|en|population total}} +{{label|nl|inwonersaantal}} +{{label|fr|population totale}} +{{label|el|συνολικός_πληθυσμός}} +| rdfs:range = xsd:nonNegativeInteger +| rdf:type = owl:FunctionalProperty +| owl:equivalentProperty = wikidata:P1082 + +}}OntologyProperty:PopulationTotalRanking2023363122502011-04-15T14:10:28Z{{DatatypeProperty +| rdfs:label@en = total population ranking +| rdfs:label@pt = posição no ranking do total da populacao +| rdfs:domain = PopulatedPlace +| rdfs:range = xsd:positiveInteger +}}OntologyProperty:PopulationTotalReference2023362122492011-04-15T14:09:25Z{{ObjectProperty +| rdfs:label@en = total population reference +| rdfs:label@pt = referencia do total da populacao +| rdfs:domain = Settlement +}}OntologyProperty:PopulationUrban2021297340982014-04-04T16:29:05Z{{DatatypeProperty +| rdfs:label@en = population urban +| rdfs:label@de = Stadtbevölkerung +| rdfs:domain = PopulatedPlace +| rdfs:range = xsd:nonNegativeInteger +}}OntologyProperty:PopulationUrbanDensity202129882102010-05-28T13:33:32Z{{DatatypeProperty +| rdfs:label@en = population urban density +| rdfs:domain = PopulatedPlace +| rdfs:range = PopulationDensity +}}OntologyProperty:PopulationYear2026782259612013-06-13T15:19:46Z{{DatatypeProperty +| labels = +{{label|en|population year}} +| rdfs:domain = PopulatedPlace +| rdfs:range = xsd:string +}}OntologyProperty:Portfolio2022353340992014-04-04T16:29:09Z{{DatatypeProperty +| rdfs:label@en = portfolio +| rdfs:label@de = Portfolio +| rdfs:range = xsd:string +}}OntologyProperty:Portrayer2023096364132014-07-08T14:11:28Z +{{ObjectProperty +| rdfs:label@en = portrayer +| rdfs:domain = FictionalCharacter +| rdfs:subPropertyOf = dul:coparticipatesWith +}}OntologyProperty:Position2021307538112020-12-01T18:07:02Z{{ObjectProperty +| labels = +{{label|en|position}} +{{label|de|Position}} +{{label|el|Θέση}} +{{label|nl|positie}} +{{label|ja|ポジション}} +| owl:equivalentProperty = schema:position, wikidata:P413 +}}OntologyProperty:PostalCode2021308537992020-12-01T17:53:25Z{{DatatypeProperty +| labels = +{{label|en|postal code}} +{{label|nl|postcode}} +{{label|de|Postleitzahl}} +{{label|pt|código postal}} +{{label|el|ταχυδρομικός κώδικας}} +{{label|fr|code postal}} +| rdfs:comment@en = 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. +| rdfs:range = xsd:string +| rdfs:subPropertyOf = code +| owl:equivalentProperty = ceo:postcode, bag:postcode, gn:postalCode, wikidata:P281 +}}OntologyProperty:Power2026818341012014-04-04T16:29:16Z{{DatatypeProperty +| labels = +{{label|en|power}} +{{label|de|Macht}} +| rdfs:domain = FictionalCharacter +| rdfs:range = xsd:string +}}OntologyProperty:PowerOutput2021310568292022-03-01T00:32:45Z{{DatatypeProperty +| labels = + {{label|en|power output}} + {{label|fr|puissance de sortie}} + {{label|de|Ausgangsleistung}} +| rdfs:domain = Engine +| rdfs:range = Power +| rdf:type = owl:FunctionalProperty +}}OntologyProperty:PowerType2022535364142014-07-08T14:11:31Z +{{ObjectProperty +| rdfs:label@en = power type +| rdfs:domain = MeanOfTransportation +| rdfs:subPropertyOf = dul:isClassifiedBy +}}OntologyProperty:Precursor2021311364152014-07-08T14:11:34Z +{{ObjectProperty +| rdfs:label@en = precursor +| rdfs:label@de = Vorläufer +| rdfs:domain = AnatomicalStructure +| rdfs:range = Embryology +| rdfs:subPropertyOf = dul:sameSettingAs +}}OntologyProperty:Predecessor2021312364162014-07-08T14:11:37Z +{{ObjectProperty +| labels = + {{label|en|predecessor}} + {{label|nl|voorganger}} + {{label|de|Vorgänger}} + {{label|ja|前任者}} +| rdfs:subPropertyOf = dul:sameSettingAs +}}OntologyProperty:PrefaceBy2029321341042014-04-04T16:29:30Z{{ObjectProperty +| labels = +{{label|en|author of preface}} +{{label|de|Autor des Vorworts}} +{{label|nl|schrijver voorwoord}} +| rdfs:domain = WrittenWork +| rdfs:range = Person +}}OntologyProperty:Prefect2026922364172014-07-08T14:11:40Z +{{ObjectProperty +| labels = + {{label|en|prefect}} + {{label|de|Präfekt}} +| rdfs:domain = Politician +| rdfs:range = Person +| rdfs:subPropertyOf = dul:sameSettingAs +}}OntologyProperty:PrefectMandate2026923253882013-05-25T10:49:26Z{{DatatypeProperty +| labels = +{{label|en|mandate of a prefect of a romanian settlement}} +| rdfs:domain = RomaniaSettlement +| rdfs:range = xsd:string +}}OntologyProperty:Prefecture2027016364182014-07-08T14:11:43Z +{{ObjectProperty +| labels = + {{label|en|prefecture}} + {{label|de|Präfektur}} +| rdfs:domain = Department +| rdfs:range = PopulatedPlace +| rdfs:subPropertyOf = dul:isPartOf +}}OntologyProperty:Prefix2027227341072014-04-04T16:29:43Z{{DatatypeProperty +| labels = +{{label|en|prefix}} +{{label|de|Präfix}} +| rdfs:range = xsd:string +}}OntologyProperty:PremiereDate2023822133422011-06-06T10:12:08Z{{DatatypeProperty +| rdfs:label@en = premiere date +| rdfs:domain = Play +| rdfs:range = xsd:date +| rdfs:subPropertyOf = releaseDate +| rdfs:comment@en = Date the play was first performed. +}}OntologyProperty:PremierePlace2023824364192014-07-08T14:11:46Z +{{ObjectProperty +| rdfs:label@en = premiere place +| rdfs:domain = Play +| rdfs:range = owl:Thing +| rdfs:comment@en = The theatre and/or city the play was first performed in. +| rdfs:subPropertyOf = dul:coparticipatesWith +}}OntologyProperty:PremiereYear2023823133432011-06-06T10:13:39Z{{DatatypeProperty +| rdfs:label@en = premiere year +| rdfs:domain = Play +| rdfs:range = xsd:gYear +| rdfs:subPropertyOf = releaseYear +| rdfs:comment@en = Year the play was first performed. +}}OntologyProperty:PresentMunicipality2029125341082014-04-04T16:29:47Z{{ObjectProperty +| labels = +{{label|en|present municipality}} +{{label|de|aktuelle Gemeinde}} +{{label|nl|ligt nu in gemeente}} +| rdfs:domain = FormerMunicipality +| rdfs:range = Municipality +}}OntologyProperty:PresentName2029124341092014-04-04T16:29:52Z{{DatatypeProperty +| labels = +{{label|en|a municipality's present name}} +{{label|de|heutiger Name einer Gemeinde}} +{{label|nl|huidige gemeentenaam}} +| rdfs:domain = FormerMunicipality +| rdfs:range = xsd:string +}}OntologyProperty:Presenter2021313364202014-07-08T14:11:49Z +{{ObjectProperty +| labels = + {{label|en|presenter}} + {{label|de|Moderator}} + {{label|el|παρουσιαστής}} +| rdfs:domain = TelevisionShow +| rdfs:range = Person +| rdfs:subPropertyOf = dul:hasParticipant +}}OntologyProperty:President2021314524832017-10-16T07:28:45Z{{ObjectProperty +| labels = + {{label|en|president}} + {{label|de|Präsident}} + {{label|fr|président}} + {{label|nl|president}} + {{label|el|πρόεδρος}} + {{label|pt|presidente}} +| rdfs:domain = owl:Thing +| rdfs:range = Person +| rdfs:subPropertyOf = dul:sameSettingAs +}}OntologyProperty:PresidentGeneralCouncil2027025364222014-07-08T14:11:56Z +{{ObjectProperty +| labels = + {{label|en|president general council}} +| rdfs:domain = TermOfOffice +| rdfs:range = Person +| rdfs:subPropertyOf = dul:sameSettingAs +}}OntologyProperty:PresidentGeneralCouncilMandate2027026255192013-05-25T20:22:11Z{{DatatypeProperty +| labels = +{{label|en|mandate of the president of the general council}} +| rdfs:domain = Place +| rdfs:range = xsd:string +}}OntologyProperty:PresidentRegionalCouncil2027022364232014-07-08T14:11:59Z +{{ObjectProperty +| labels = + {{label|en|president regional council}} +| rdfs:domain = TermOfOffice +| rdfs:range = Person +| rdfs:subPropertyOf = dul:sameSettingAs +}}OntologyProperty:PresidentRegionalCouncilMandate2027023255162013-05-25T20:20:28Z{{DatatypeProperty +| labels = +{{label|en|mandate of the president council of the regional council}} +| rdfs:domain = Place +| rdfs:range = xsd:string +}}OntologyProperty:PreviousDemographics2027916341902014-04-04T16:36:02Z{{ObjectProperty +| labels = +{{label|en|previous demographics}} +{{label|de|frühere Demografie}} +| rdfs:domain = PopulatedPlace +| rdfs:range = Demographics +}}OntologyProperty:PreviousEditor2021315364242014-07-08T14:12:01Z +{{ObjectProperty +| rdfs:label@en = previous editor +| rdfs:label@el = πρώην συντάκτης +| rdfs:domain = Magazine +| rdfs:range = Person +| rdfs:subPropertyOf = dul:sameSettingAs +}}OntologyProperty:PreviousEntity2027181364252014-07-08T14:12:04Z +{{ObjectProperty +| labels = + {{label|en|previous entity}} +| rdfs:domain = Place +| rdfs:range = Place +| rdfs:subPropertyOf = dul:sameSettingAs +}}OntologyProperty:PreviousEvent2021316568992022-03-02T18:23:54Z +{{ObjectProperty +| labels = + {{label|en|previous event}} + {{label|de|Vorveranstaltung}} + {{label|nl|vorige evenement}} + {{label|pt|evento anterior}} + {{label|fr|événement précédent}} +| rdfs:domain = Event +| rdfs:range = Event +| rdfs:subPropertyOf = dul:follows +}}OntologyProperty:PreviousInfrastructure2021317364272014-07-08T14:12:11Z +{{ObjectProperty +| labels = + {{label|en|previous infrastructure}} + {{label|de|vorherige Infrastruktur}} + {{label|nl|vorige infrastructuur}} +| rdfs:domain = Infrastructure +| rdfs:range = Infrastructure +| rdfs:subPropertyOf = dul:sameSettingAs +}}OntologyProperty:PreviousMission2021318364282014-07-08T14:12:14Z +{{ObjectProperty +| rdfs:label@en = previous mission +| rdfs:label@de = frührere Mission +| rdfs:domain = SpaceMission +| rdfs:range = SpaceMission +| rdfs:subPropertyOf = dul:follows +}}OntologyProperty:PreviousName2028147341162014-04-04T16:30:17Z{{DatatypeProperty +| labels = +{{label|en|previous name}} +{{label|de|früheren Namen}} +{{label|nl|vorige naam}} +| rdfs:domain = PopulatedPlace +| rdfs:range = xsd:string +}}OntologyProperty:PreviousPopulation2027911275692013-07-15T10:51:17Z{{ObjectProperty +| labels = +{{label|en|previous population}} +| rdfs:domain = PopulatedPlace +| rdfs:range = Population +}}OntologyProperty:PreviousPopulationTotal2026972254482013-05-25T14:45:37Z{{DatatypeProperty +| labels = +{{label|en|previous population total}} +| rdfs:domain = PopulatedPlace +| rdfs:range = xsd:nonNegativeInteger +}}OntologyProperty:PreviousTrackNumber20213814570642022-03-09T19:01:41Z{{DatatypeProperty +| labels = + {{label|en|number of the previous track}} + {{label|fr|numéro de la piste précédente}} +| rdfs:domain = Work +| rdfs:range = xsd:nonNegativeInteger +| comments = + {{comment|en|number of the previous track of the recorded work.}} + {{comment|fr|numéro de la piste précédente du support.}} +}}OntologyProperty:PreviousWork2021319570472022-03-09T16:00:36Z{{ObjectProperty +| labels = + {{label|en|previous work}} + {{label|fr|oeuvre précédente}} + {{label|de|früheren Arbeiten}} + {{label|nl|vorig werk}} + {{label|el|προηγούμενη δημιουργία}} +| rdfs:domain = Work +| rdfs:range = Work +| rdfs:subPropertyOf = dul:sameSettingAs +}}OntologyProperty:PreviousWorkDate20213812570582022-03-09T17:14:29Z{{ObjectProperty +| labels = + {{label|en|previous work date}} + {{label|fr|année de sortie oeuvre précédente}} +| rdfs:domain = Work +| rdfs:range = year +| comments = + {{comment|en|Year when previous work was released}} + {{comment|fr|Année de sortie de l'oeuvre précédente}} +}}OntologyProperty:Price2023537483852015-06-16T14:00:12Z{{DatatypeProperty +| rdfs:label@en = price +| rdfs:comment@en = The price of something, eg a journal. For "total money earned by an Athlete" use gross +| rdfs:label@de = Preis +| rdfs:domain = owl:Thing +| rdfs:range = Currency +}}OntologyProperty:PrimaryFuelType2029589355152014-06-28T22:02:39Z{{ObjectProperty +|rdfs:label@en = primary fuel type +|rdfs:domain = PowerStation +}}OntologyProperty:Primate2026163207342012-12-23T13:00:09Z{{DatatypeProperty +| rdfs:label@en = Primite +| rdfs:domain = ChristianDoctrine +| rdfs:range = xsd:string +}}OntologyProperty:PrimeMinister2022342474442015-04-01T14:59:42Z{{ObjectProperty +| labels = + {{label|en|prime minister}} + {{label|nl|minister-president}} + {{label|de|Premierminister}} +| rdfs:range = Person +| rdfs:subPropertyOf = dul:sameSettingAs +| owl:equivalentProperty = wikidata:P6 +}}OntologyProperty:Primogenitor2029290326562014-03-13T16:20:03Z{{ObjectProperty +|labels = +{{label|en|primogenitor, first forebear}} +{{label|nl|stamvader}} +| rdfs:domain = Family +| rdfs:range = Person +}}OntologyProperty:Principal2021320433222015-02-06T13:31:19Z{{ObjectProperty +| rdfs:label@en = principal +| rdfs:label@bg = директор (на училище) +| rdfs:domain = EducationalInstitution +| rdfs:range = Person +| rdfs:comment@en = Principal of an educational institution (school) +| rdfs:comment@bg = Директор на училище +| rdfs:subPropertyOf = dul:sameSettingAs +}}OntologyProperty:PrincipalArea2022134364322014-07-08T14:12:26Z +{{ObjectProperty +| rdfs:label@en = principal area +| rdfs:label@de = Hauptbereich +| rdfs:domain = PopulatedPlace +| rdfs:range = PopulatedPlace +| rdfs:subPropertyOf = dul:isLocationOf +}}OntologyProperty:PrincipalEngineer2021321364332014-07-08T14:12:29Z +{{ObjectProperty +| rdfs:label@en = principal engineer +| rdfs:label@el = πρώτος_μηχανικός +| rdfs:domain = Canal +| rdfs:range = Person +| rdfs:subPropertyOf = dul:coparticipatesWith +}}OntologyProperty:ProTeam2027624268672013-07-03T07:59:37Z{{ObjectProperty +| labels = +{{label|en|pro team}} +| rdfs:range = SportsTeam +| rdfs:domain = Athlete, CareerStation +}}OntologyProperty:ProbowlPick2027687269592013-07-04T09:29:31Z{{DatatypeProperty +| labels = +{{label|en|pro bowl pick}} +| rdfs:domain = Athlete +| rdfs:range = xsd:string +}}OntologyProperty:Procedure2026600341192014-04-04T16:30:30Z{{DatatypeProperty +| labels = +{{label|en|procedure}} +{{label|de|Verfahren}} +{{label|nl|procedure}} +| comments = +{{comment|en|The name designating a formal collection of steps to be taken to complete the case }} +{{comment|nl|De naam die verwijst naar de formele definitie van een verzameling stappen die in de juiste volgorde leiden tot de afronding van de zaak}} +| rdfs:domain = Case +| rdfs:range = xsd:string +| rdf:type = +| rdfs:subPropertyOf = +| owl:equivalentProperty = +}}OntologyProperty:ProducedBy2027866341202014-04-04T16:30:33Z{{ObjectProperty +| rdfs:label@en = produced by +| rdfs:label@de = hergestellt durch +| rdfs:domain = Film +| rdfs:range = Company +}}OntologyProperty:Producer2021322570412022-03-09T15:40:07Z{{ObjectProperty +| labels = + {{label|en|producer}} + {{label|fr|producteur}} + {{label|nl|producent}} + {{label|de|Produzent}} + {{label|el|παραγωγός}} + {{label|pl|producent}} + {{label|ru|продюсер}} +| comments = + {{comment|en|The producer of the creative work.}} + {{comment|fr|Producteur de l'oeuvre créative.}} +| rdfs:domain = Work +| rdfs:range = Agent +| owl:equivalentProperty = schema:producer +| rdfs:subPropertyOf = dul:coparticipatesWith +}}OntologyProperty:Produces2026763364352014-07-08T14:12:37Z +{{ObjectProperty +| rdfs:label@en = produces +| rdfs:label@de = produziert +| rdfs:domain = owl:Thing +| rdfs:range = owl:Thing +| rdfs:subPropertyOf = dul:coparticipatesWith +}}OntologyProperty:Product2021323570342022-03-09T13:56:25Z{{ObjectProperty +| labels = + {{label|en|product}} + {{label|fr|produit}} + {{label|nl|product}} + {{label|de|Produkt}} + {{label|el|προϊόν}} +| rdfs:domain = Organisation +| rdfs:subPropertyOf = dul:coparticipatesWith +}}OntologyProperty:ProductShape20211448495362015-11-15T10:38:02Z{{DatatypeProperty +| labels = + {{label|en|product shape}} +| rdfs:domain = Food +| rdfs:range = xsd:string +| rdfs:subPropertyOf = dul:hasQuality +}}OntologyProperty:Production2021324341222014-04-04T16:30:41Z{{DatatypeProperty +| rdfs:label@en = production +| rdfs:label@de = Produktion +| rdfs:domain = Company +| rdfs:range = xsd:nonNegativeInteger +}}OntologyProperty:ProductionCompany2025146364372014-07-08T14:12:45Z +{{ObjectProperty +| labels = + {{label|en|production company}} + {{label|de|Produktionsfirma}} + {{label|nl|productiebedrijf}} +| rdfs:domain = Work +| rdfs:range = Company +| rdfs:comment@en = the company that produced the work e.g. Film, MusicalWork, Software +| rdfs:subPropertyOf = dul:coparticipatesWith +}}OntologyProperty:ProductionEndDate202132582222010-05-28T13:35:11Z{{DatatypeProperty +| rdfs:label@en = production end date +| rdfs:range = xsd:date +}}OntologyProperty:ProductionEndYear2021326568972022-03-02T18:20:39Z{{DatatypeProperty +| labels = + {{label|en|production end year}} + {{label|nl|productie eindjaar}} + {{label|fr|dernière année de production}} +| rdfs:range = xsd:gYear +}}OntologyProperty:ProductionStartDate2021327341242014-04-04T16:30:49Z{{DatatypeProperty +| rdfs:label@en = production start date +| rdfs:label@de = Produktionsbeginn +| rdfs:range = xsd:date +}}OntologyProperty:ProductionStartYear2021328221812013-01-10T21:01:12Z{{DatatypeProperty +| labels = +{{label|en|production start year}} +{{label|nl|productie beginjaar}} +| rdfs:range = xsd:gYear +}}OntologyProperty:ProductionYears2021329568982022-03-02T18:22:24Z{{DatatypeProperty +| labels = + {{label|en|production years}} + {{label|de|Produktionsjahre}} + {{label|fr|années de production}} +| rdfs:domain = Aircraft +| rdfs:range = xsd:date +}}OntologyProperty:Profession2021330568952022-03-02T18:18:24Z +{{ObjectProperty +| labels = + {{label|en|profession}} + {{label|de|Beruf}} + {{label|fr|profession}} + {{label|el|επάγγελμα}} + {{label|nl|beroep}} +| rdfs:domain = Person +| rdfs:subPropertyOf = dul:hasRole +| owl:equivalentProperty = gnd:academicDegree +}}OntologyProperty:ProgramCost202133182272010-05-28T13:35:55Z{{DatatypeProperty +| rdfs:label@en = program cost +| rdfs:domain = Aircraft +| rdfs:range = Currency +}}OntologyProperty:ProgrammeFormat2023084364392014-07-08T14:12:51Z +{{ObjectProperty +| rdfs:label@en = programme format +| rdfs:domain = Broadcaster +| rdfs:range = owl:Thing +| rdfs:comment@en = The programming format describes the overall content broadcast on a radio or television station. +| rdfs:subPropertyOf = dul:isClassifiedBy +}}OntologyProperty:ProgrammingLanguage2021332521062017-06-19T10:56:37Z +{{ObjectProperty +| rdfs:label@en = programming language +| rdfs:label@da = programmeringssprog +| rdfs:label@de = Programmiersprache +| rdfs:label@fr = langage de programmation +| rdfs:domain = Software +| rdfs:subPropertyOf = dul:isExpressedBy +}}OntologyProperty:Project2027543568962022-03-02T18:19:28Z{{ObjectProperty +| labels = + {{label|en|project}} + {{label|de|Projekt}} + {{label|fr|projet}} +| rdfs:domain = Person +| rdfs:range = Project +}}OntologyProperty:ProjectBudgetFunding2023049114122011-03-31T12:11:42Z{{DatatypeProperty +| rdfs:label@en = project budget funding +| rdfs:domain = ResearchProject +| rdfs:range = Currency +| rdfs:comment@en = The part of the project budget that is funded by the Organistaions given in the "FundedBy" property. +}}OntologyProperty:ProjectBudgetTotal2023048341292014-04-04T16:31:10Z{{DatatypeProperty +| rdfs:label@en = project budget total +| rdfs:label@de = Gesamtprojektbudget +| rdfs:domain = ResearchProject +| rdfs:range = Currency +| rdfs:comment@en = The total budget of the research project. +}}OntologyProperty:ProjectCoordinator2023046568052022-02-28T22:07:23Z +{{ObjectProperty +| labels = + {{label|en|project coordinator}} + {{label|de|Projektkoordinator}} + {{label|fr|régisseur}} +| rdfs:domain = ResearchProject +| rdfs:range = Organisation +| comments = + {{comment|en|The coordinating organisation of the project.}} + {{comment|fr|Organisation coordinatrice du project.}} +| rdfs:subPropertyOf = dul:isSettingFor +}}OntologyProperty:ProjectEndDate2023037341312014-04-04T16:31:18Z{{DatatypeProperty +| rdfs:label@en = project end date +| rdfs:label@de = Projektende +| rdfs:domain = Project +| rdfs:range = xsd:date +| rdfs:comment@en = The end date of the project. +}}OntologyProperty:ProjectKeyword2023041113832011-03-31T10:41:47Z{{DatatypeProperty +| rdfs:label@en = project keyword +| rdfs:domain = Project +| rdfs:range = xsd:string +| rdfs:comment@en = A key word of the project. +}}OntologyProperty:ProjectObjective2023039113802011-03-31T10:34:32Z{{DatatypeProperty +| rdfs:label@en = project objective +| rdfs:label@de = Projektziel +| rdfs:domain = Project +| rdfs:range = xsd:string +| rdfs:comment@en = A defined objective of the project. +}}OntologyProperty:ProjectParticipant2023047364422014-07-08T14:13:03Z +{{ObjectProperty +| rdfs:label@en = project participant +| rdfs:label@de = Projektteilnehmer +| rdfs:domain = ResearchProject +| rdfs:range = Organisation +| rdfs:comment@en = A participating organisation of the project. +| rdfs:subPropertyOf = dul:isSettingFor +}}OntologyProperty:ProjectReferenceID2023044113912011-03-31T10:53:31Z{{DatatypeProperty +| rdfs:label@en = project reference ID +| rdfs:domain = ResearchProject +| rdfs:range = xsd:string +| rdfs:comment@en = The reference identification of the project. +}}OntologyProperty:ProjectStartDate2023038341332014-04-04T16:31:28Z{{DatatypeProperty +| rdfs:label@en = project start date +| rdfs:label@de = Projektstart +| rdfs:domain = Project +| rdfs:range = xsd:date +| rdfs:comment@en = The start date of the project. +}}OntologyProperty:ProjectType2023043341342014-04-04T16:31:33Z{{DatatypeProperty +| rdfs:label@en = project type +| rdfs:label@de = Projekttyp +| rdfs:domain = ResearchProject +| rdfs:range = xsd:string +| rdfs:comment@en = 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. +}}OntologyProperty:Prominence2021333342712014-04-04T16:52:11Z{{DatatypeProperty +| rdfs:label@en = prominence +| rdfs:range = Length +}}OntologyProperty:Promotion2021334364432014-07-08T14:13:07Z +{{ObjectProperty +| rdfs:label@en = promotion +| rdfs:label@de = Förderung +| rdfs:domain = WrestlingEvent +| rdfs:subPropertyOf = dul:coparticipatesWith +}}OntologyProperty:Pronunciation2027112587972022-05-31T15:32:13Z{{DatatypeProperty +| labels = +{{label|en|pronunciation}} +{{label|de|Aussprache}} +| rdfs:range = xsd:string +| owl:equivalentProperty = wikidata:P443 +}}OntologyProperty:ProspectLeague2021335270812013-07-05T13:06:02Z{{ObjectProperty +| rdfs:label@en = prospect league +| rdfs:domain = IceHockeyPlayer +| rdfs:range = SportsLeague +}}OntologyProperty:ProspectTeam2021336364442014-07-08T14:13:10Z +{{ObjectProperty +| rdfs:label@en = prospect team +| rdfs:domain = IceHockeyPlayer +| rdfs:range = HockeyTeam +| rdfs:subPropertyOf = dul:isMemberOf +}}OntologyProperty:ProtectionStatus2026262325062014-03-10T13:11:24Z{{DatatypeProperty +| labels = +{{label|en|monument protection status}} +{{label|nl|monumentStatus}} +| comments = +{{comment|en|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. }} +{{comment|nl|Aanduiding van het soort beschermingsregime. Bijv. 'rijksmonument' in Nederland of 'Monument Historique' in Belgie of Frankrijk}} +| rdfs:domain = Place +| rdfs:range = xsd:string +| rdf:type = +| rdfs:subPropertyOf = Status +| owl:equivalentProperty = +}}OntologyProperty:Protein20211303487612015-08-13T10:14:15Z{{DatatypeProperty +| labels = +{{label|en|protein}} +| rdfs:domain = Food +| rdfs:range = Mass +| comments = +{{comment|en|Amount of proteins per servingSize of a Food}} +}}OntologyProperty:ProtestantPercentage2027312260612013-06-14T11:47:52Z{{DatatypeProperty +| labels = +{{label|en|protestant percentage}} +| rdfs:domain = PopulatedPlace +| rdfs:range = xsd:string +}}OntologyProperty:Prov:qualifiedRevision20214277591112022-12-01T14:42:45Z{{DatatypeProperty +| labels = +{{label|en| qualified Revision}} +{{label|fr|est dérivé de}} +| comments = +{{comment|fr|http://www.w3.org/ns/prov#qualifiedRevision}} +{{comment|en|http://www.w3.org/ns/prov#qualifiedRevision}} +| rdfs:domain = Prov:Entity +| rdfs:range = Prov:Revision +}}OntologyProperty:Prov:wasRevisionOf20214278591162022-12-01T15:28:50Z{{DatatypeProperty +| labels = +{{label|en|was revision of }} +{{label|en| était la révision de }} +| comments = +{{comment|en|http://www.w3.org/ns/prov#wasRevisionOf}} +| rdfs:domain = prov:Revision +| rdfs:range = prov:Revision +}}OntologyProperty:ProvCode2027922276652013-07-15T14:48:21Z{{DatatypeProperty +| labels = +{{label|en|prove code}} +|rdfs:domain=Settlement +|rdfs:range=xsd:string +}}OntologyProperty:Provides2026802364452014-07-08T14:13:13Z +{{ObjectProperty +| rdfs:label@en = provides +| rdfs:label@de = bietet +| rdfs:domain = owl:Thing +| rdfs:range = owl:Thing +| rdfs:subPropertyOf = dul:hasCommonBoundary +}}OntologyProperty:Province2021337537032020-09-04T15:30:46Z +{{ObjectProperty +| labels = + {{label|en|province}} + {{label|de|Provinz}} + {{label|el|επαρχία}} + {{label|nl|provincie}} +| rdfs:domain = Place +| rdfs:range = Province +| owl:equivalentProperty = wikidata:P131, ceo:heeftProvincie +| rdfs:subPropertyOf = dul:isPartOf +}}OntologyProperty:ProvinceIsoCode2026882537042020-09-04T15:32:36Z{{DatatypeProperty +| labels = +{{label|en|iso code of a province}} +| rdfs:subPropertyOf = isoCode +| rdfs:domain = PopulatedPlace +| rdfs:range = xsd:string +| owl:equivalentProperty = ceo:provincieCode +}}OntologyProperty:ProvinceLink2027078364472014-07-08T14:13:20Z +{{ObjectProperty +| labels = + {{label|en|province link}} +| rdfs:domain = Place +| rdfs:range = Province +| rdfs:subPropertyOf = dul:isPartOf +}}OntologyProperty:Provost2021338364482014-07-08T14:13:23Z +{{ObjectProperty +| rdfs:label@en = provost +| rdfs:domain = University +| rdfs:range = Person +| rdfs:subPropertyOf = dul:sameSettingAs +}}OntologyProperty:Pseudonym2021339587792022-05-31T13:57:07Z{{DatatypeProperty +| labels = + {{label|en|pseudonym}} + {{label|nl|pseudoniem}} + {{label|de|Pseudonym}} + {{label|fr|pseudonyme}} +| rdfs:domain = Person +| rdfs:range = rdf:langString +| owl:equivalentProperty = wikidata:P742 +}}OntologyProperty:Pubchem2021340388572014-12-08T21:47:57Z{{DatatypeProperty +| rdfs:label@en = PubChem +| rdfs:label@fr = PubChem +| rdfs:label@ja = PubChem +| rdfs:domain = ChemicalSubstance +| rdfs:range = xsd:string +}}OntologyProperty:Publication2027956567752022-02-28T18:31:41Z{{DatatypeProperty +| labels = + {{label|en|publication}} + {{label|de|Veröffentlichung}} + {{label|fr|publication}} +| rdfs:domain = Person +| rdfs:range = xsd:string +| owl:equivalentProperty = schema:publication, gnd:publication +}}OntologyProperty:PublicationDate2021342537532020-09-30T12:16:16Z{{DatatypeProperty +| labels = +{{label|en|publication date}} +{{label|de|Veröffentlichungsdatum}} +{{label|nl|publicatiedatum}} +| rdfs:range = xsd:date +| owl:equivalentProperty = dblp2:yearOfPublication +}}OntologyProperty:PubliclyAccessible2021341341432014-04-04T16:32:11Z{{DatatypeProperty +| rdfs:label@en = publicly accessible +| rdfs:label@de = öffentlich zugänglich +| rdfs:comment@en = describes in what way this site is accessible for public +| rdfs:range = xsd:string +}}OntologyProperty:Publisher2021343570502022-03-09T16:09:48Z{{ObjectProperty +| labels = + {{label|en|publisher}} + {{label|fr|éditeur}} + {{label|nl|uitgever}} + {{label|de|Herausgeber}} + {{label|el|εκδότης}} +| comments = + {{comment|en|Publisher of a work. For literal (string) use dc:publisher; for object (URL) use publisher}} + {{comment|fr|Editeur d'une oeuvre. Pour le littéral (string) utilisez dc:publisher; pour l'objet (URL) utilisez l'éditeur}} +| rdfs:domain = Work +| rdfs:range = Agent +| owl:equivalentProperty = schema:publisher, dblp2:publishedBy +| rdfs:subPropertyOf = dul:coparticipatesWith +}}OntologyProperty:PurchasingPowerParity2027353261962013-06-18T11:57:31Z{{DatatypeProperty +| labels = +{{label|en|purchasing power parity}} +| rdfs:domain = PopulatedPlace +| rdfs:range = xsd:string +}}OntologyProperty:PurchasingPowerParityRank2027354261982013-06-18T12:02:19Z{{DatatypeProperty +| labels = +{{label|en|purchasing power parity rank}} +| rdfs:domain = PopulatedPlace +| rdfs:range = xsd:string +}}OntologyProperty:PurchasingPowerParityYear2027355261992013-06-18T12:03:09Z{{DatatypeProperty +| labels = +{{label|en|purchasing power parity year}} +| rdfs:domain = PopulatedPlace +| rdfs:range = xsd:string +}}OntologyProperty:Purpose2021344341442014-04-04T16:32:14Z{{DatatypeProperty +| labels = +{{label|en|purpose}} +{{label|de|Zweck}} +{{label|nl|doel}} +{{label|fr|objectif}} +| rdfs:range = xsd:string +}}OntologyProperty:QatarClassic2028052282072013-09-03T18:50:05Z{{DatatypeProperty +| labels = +{{label|en|qatar classic}} +| rdfs:domain = Athlete +| rdfs:range = xsd:string +}}OntologyProperty:QuebecerTitle2027616268532013-07-02T13:37:07Z{{DatatypeProperty +| labels = +{{label|en|quebecer title}} +| rdfs:domain = Film +| rdfs:range = xsd:string +}}OntologyProperty:Quotation2026416341452014-04-04T16:32:19Z{{DatatypeProperty +| labels = +{{label|en|quotation}} +{{label|de|Zitat}} +{{label|fr|citation}} +{{label|es|cita}} +| comments = +{{comment|en|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.<ref>http://en.wikipedia.org/wiki/Quotation</ref>}} +{{comment|fr|Une citation est la reproduction d'un court extrait d'un propos ou d'un écrit antérieur dans la rédaction d'un texte ou dans une forme d'expression orale.<ref>http://fr.wikipedia.org/wiki/Citation_%28litt%C3%A9rature%29</ref>}} +{{comment|es|En su acepción más amplia, una cita es un recurso retórico que consiste en reproducir un fragmento de una expresión humana respetando su formulación original.<ref>http://es.wikipedia.org/wiki/Cita</ref>}} +| rdfs:domain = owl:Thing +| rdfs:range = xsd:string +}} + +== References == +<references/>OntologyProperty:Quote2027207342702014-04-04T16:51:36Z{{DatatypeProperty +| labels = +{{label|en|quote}} +| rdfs:domain = Place +| rdfs:range = xsd:string +}}OntologyProperty:Ra2026144462192015-03-18T11:04:22Z{{DatatypeProperty +| rdfs:label@en = ra +| rdfs:domain = Openswarm +| rdfs:range = xsd:string +}}OntologyProperty:Race2026168364502014-07-08T14:13:29Z +{{ObjectProperty +| labels = + {{label|en|race}} + {{label|de|Rennen}} +| rdfs:range = Race +| rdfs:subPropertyOf = dul:isParticipantIn +}}OntologyProperty:RaceHorse2026170526472017-11-03T16:23:20Z{{ObjectProperty +| labels = + {{label|en|race horse}} + {{label|de|Rennpferd}} +| rdfs:range = Horse +| rdfs:subPropertyOf = dul:coparticipatesWith +}}OntologyProperty:RaceLength2025335341492014-04-04T16:32:36Z{{ DatatypeProperty + + | rdfs:label@en = race length +| rdfs:label@de = Rennlänge + | rdfs:domain = FormulaOneRacing + | rdfs:range = Length +<!-- | rdf:type = owl:FunctionalProperty --> + +}}OntologyProperty:RaceResult20211626509692016-04-26T15:01:38Z{{ObjectProperty +| rdfs:label@en = race result +| rdfs:domain = Race +| rdfs:range = SportCompetitionResult +| rdfs:comment@en = Result of one racer in a sport competition +}}OntologyProperty:RaceTrack2025952364522014-07-08T14:13:35Z +{{ObjectProperty +| labels = + {{label|en|race track}} + {{label|de|Rennstrecke}} + {{label|fr|circuit}} +| rdfs:domain = SportsEvent +| rdfs:range = RaceTrack +| rdfs:subPropertyOf = dul:hasPart +}}OntologyProperty:RaceWins2027809341512014-04-04T16:32:45Z{{DatatypeProperty +| labels = +{{label|en|race wins}} +{{label|de|Siege}} +| rdfs:range = xsd:nonNegativeInteger +| rdfs:domain = Person +}}OntologyProperty:Races2021345341522014-04-04T16:32:50Z{{DatatypeProperty +| labels = +{{label|en|races}} +{{label|de|Rennen}} +{{label|el|αγώνας}} + +| rdfs:domain = FormulaOneRacer +| rdfs:range = xsd:nonNegativeInteger +}}OntologyProperty:RacketCatching2027708500812016-01-04T12:44:17Z{{DatatypeProperty +| labels = +{{label|en|racket catching}} +| rdfs:domain = TennisPlayer +| rdfs:range = xsd:string +}}OntologyProperty:Radio2027703572752022-03-28T22:03:45Z{{ObjectProperty +| labels = + {{label|en|radio}} + {{label|fr|radio}} + {{label|de|Radio}} + {{label|el|ραδιόφωνο}} +| comments = + {{comment|el|To ραδιόφωνο είναι η συσκευή που λειτουργεί ως "ραδιοδέκτης - μετατροπέας" όπου λαμβάνοντας τις ραδιοφωνικές εκπομπές των ραδιοφωνικών σταθμών τις μετατρέπει σε ήχο.}} +| rdfs:domain = Person +| rdfs:range = RadioStation +}}OntologyProperty:RadioStation20211145572742022-03-28T22:02:50Z{{DatatypeProperty +| labels = + {{label|en|radio station}} + {{label|fr|station de radio}} + {{label|nl|radiozender}} +| rdfs:domain = RadioStation +| rdfs:range = xsd:string +}}OntologyProperty:Radius ly2026152207162012-12-23T12:32:30Z{{DatatypeProperty +| rdfs:label@en = Radius_ly +| rdfs:domain = Globularswarm +| rdfs:range = xsd:integer +}}OntologyProperty:RailGauge2023593128042011-05-16T15:48:39Z{{DatatypeProperty +| rdfs:label@en = rail gauge +| rdfs:label@de = Spurweite Eisenbahn +| rdfs:domain = RouteOfTransportation +| rdfs:range = Length +| rdfs:comment@en = Track gauge or rail gauge is the distance between the inner sides of the heads of the two load bearing rails that make up a single railway line (http://en.wikipedia.org/wiki/Track_gauge). +}}OntologyProperty:RailwayLineUsingTunnel2023431364532014-07-08T14:13:39Z +{{ObjectProperty +| rdfs:label@en = railway line using tunnel +| rdfs:label@de = Tunnel benutzende Eisenbahnlinie +| rdfs:domain = RailwayTunnel +| rdfs:range = owl:Thing +| rdfs:comment@en = Railway line that is using the tunnel. +| rdfs:subPropertyOf = dul:coparticipatesWith +}}OntologyProperty:RailwayPlatforms2022122341542014-04-04T16:32:58Z{{DatatypeProperty +| labels = +{{label|en|railway platforms}} +{{label|de|Bahnsteige}} +{{label|nl|perrons}} +{{label|el|αποβάθρα}} +| rdfs:domain= Station +| rdfs:range = xsd:string +| rdfs:comment@en = Information on the type of platform(s) at the station. +}}OntologyProperty:RailwayRollingStock2023613364542014-07-08T14:13:42Z +{{ObjectProperty +| rdfs:label@en = railway rolling stock +| rdfs:label@de = Operierende Schienenfahrzeuge +| rdfs:domain = RouteOfTransportation +| rdfs:range = owl:Thing +| rdfs:comment@en = Types of rolling stock used on the rail line (http://en.wikipedia.org/wiki/Template:Infobox_rail_line). Stock of engins and vehicles that run on the railway (International Union of Railways - www.uic.org/IMG/doc/listealph_en.doc). +| rdfs:subPropertyOf = dul:coparticipatesWith +}}OntologyProperty:Range2021346526002017-10-31T10:39:10Z{{DatatypeProperty +| labels = +{{label|en|range}} +{{label|nl|bereik}} +| rdfs:domain = MeanOfTransportation +| rdfs:comment@en = Maximum distance without refueling +| rdfs:range = xsd:positiveInteger +}}OntologyProperty:Rank2026421570512022-03-09T16:15:03Z{{DatatypeProperty +| labels = +{{label|en|rank}} +{{label|fr|rang}} +{{label|de|Platzierung}} +| comments = + {{comment|en|Rank of something among other things of the same kind, eg Constellations by Area; MusicalAlbums by popularity, etc}} + {{comment|fr|Rang d'un élément parmi d'autres éléments du même type, par ex. les constellations par zone; les albums de musique par popularité, etc...}} +| rdfs:range = xsd:string +}}OntologyProperty:RankAgreement2027043255422013-05-25T22:56:05Z{{DatatypeProperty +| labels = +{{label|en|rank of an agreement}} +| rdfs:domain = Place +| rdfs:range = xsd:nonNegativeInteger +}}OntologyProperty:RankArea2027037255352013-05-25T22:50:19Z{{DatatypeProperty +| labels = +{{label|en|rank of an area}} +| rdfs:domain = PopulatedPlace +| rdfs:range = xsd:nonNegativeInteger +}}OntologyProperty:RankInFinalMedalCount2021347104192010-11-10T14:48:50Z{{DatatypeProperty +| rdfs:label@en = rank in final medal count +| rdfs:domain = OlympicResult +| rdfs:range = xsd:positiveInteger +}}OntologyProperty:RankPopulation2027041255402013-05-25T22:54:16Z{{DatatypeProperty +| labels = +{{label|en|rank of a population}} +| rdfs:domain = PopulatedPlace +| rdfs:range = xsd:nonNegativeInteger +}}OntologyProperty:Ranking2021348568172022-02-28T22:38:00Z{{DatatypeProperty +| labels = + {{label|en|ranking}} + {{label|fr|classement}} + {{label|de|Rangliste}} +| rdfs:domain = Organisation +| rdfs:range = xsd:positiveInteger +}}OntologyProperty:RankingWins2023540126742011-05-07T13:48:35Z{{DatatypeProperty +| rdfs:label@en = ranking wins +| rdfs:label@de = Siege in Ranglistenturnieren +| rdfs:domain = SnookerPlayer +| rdfs:range = xsd:nonNegativeInteger +| rdfs:subPropertyOf = Wins +}}OntologyProperty:RankingsDoubles2025657341562014-04-04T16:33:07Z{{ DatatypeProperty + + | rdfs:label@en = doubles rankings +| rdfs:label@de = Doppelrangliste + | rdfs:domain = TennisPlayer + | rdfs:range = xsd:nonNegativeInteger + +}}OntologyProperty:RankingsSingles2025656341572014-04-04T16:33:12Z{{ DatatypeProperty + + | rdfs:label@en = single rankings +| rdfs:label@de = Einzelrangliste + | rdfs:domain = TennisPlayer + | rdfs:range = xsd:nonNegativeInteger +}}OntologyProperty:Rating2022527341582014-04-04T16:33:15Z{{DatatypeProperty +| labels = +{{label|en|rating}} +{{label|de|Wertung}} +{{label|nl|cijfer}} +| rdfs:domain = owl:Thing +| rdfs:range = xsd:float +}}OntologyProperty:Ratio2021349342692014-04-04T16:50:05Z{{DatatypeProperty +| rdfs:label@en = ratio +| rdfs:domain = School +| rdfs:range = xsd:string +}}OntologyProperty:Rdfs:seeAlso20210471568612022-03-01T20:17:20Z{{ObjectProperty +| labels = + {{label|en|is used to indicate a resource that might provide additional information about the subject resource}} + {{label|fr|utilisé pour indiquer une ressource pouvant fournir des informations supplémentaires concernant la ressource sujet}} +}}OntologyProperty:Rdfs:subClassOf20211208568622022-03-01T20:19:19Z{{ObjectProperty +| labels = + {{label|en|subclass of}} + {{label|fr|sous-classe de}} + +}}OntologyProperty:RebuildDate2022549223462013-01-11T20:28:04Z{{DatatypeProperty +| labels = +{{label|en|rebuild date}} +{{label|nl|herbouw datum}} + |rdfs:range=xsd:date +}}OntologyProperty:Rebuilder2022550364552014-07-08T14:13:44Z +{{ObjectProperty +| rdfs:label@en = rebuilder +| rdfs:domain = MeanOfTransportation +| rdfs:subPropertyOf = dul:coparticipatesWith +}}OntologyProperty:RebuildingDate2021350123392011-04-20T15:56:16Z{{DatatypeProperty +| rdfs:label@en = rebuilding date +| rdfs:domain = ArchitecturalStructure +| rdfs:range = xsd:date +}}OntologyProperty:RebuildingYear2023385199402012-11-22T12:29:27Z{{DatatypeProperty +| labels = +{{label|en|rebuilding year}} +{{label|nl|herbouw jaar}} +| rdfs:domain = ArchitecturalStructure +| rdfs:range = xsd:gYear +}}OntologyProperty:RecentWinner2021351364562014-07-08T14:13:48Z +{{ObjectProperty +| rdfs:label@en = recent winner +| rdfs:label@de = letzter Gewinner +| rdfs:domain = Race +| rdfs:range = Person +| rdfs:subPropertyOf = dul:hasParticipant +}}OntologyProperty:RecommissioningDate2023106116512011-04-02T10:56:48Z{{DatatypeProperty +| rdfs:label@en=recommissioning date +| rdfs:domain = Ship +| rdfs:range = xsd:date +}}OntologyProperty:RecordDate2021352570452022-03-09T15:53:50Z{{DatatypeProperty +| labels = + {{label|en|record date}} + {{label|fr|date d'enregistrement}} + {{label|de|Stichtag}} + {{label|nl|opname datum}} + {{label|el|ηχογράφηση}} +| rdfs:domain = MusicalWork +| rdfs:range = xsd:date +| owl:equivalentProperty = ceo:registratiedatum +}}OntologyProperty:RecordLabel2021011364572014-07-08T14:14:04Z +{{ObjectProperty +| labels = + {{label|en|record label}} + {{label|es|compañía discográfica}} + {{label|fr|label discographique}} + {{label|nl|platenlabel}} + {{label|el|δισκογραφική}} +| rdfs:range = RecordLabel +| owl:equivalentProperty = wikidata:P264 +| rdfs:subPropertyOf = dul:coparticipatesWith +}}OntologyProperty:RecordedIn2021353364582014-07-08T14:14:07Z +{{ObjectProperty +| labels = + {{label|en|recorded in}} + {{label|nl|opgenomen in}} + {{label|el|ηχογράφηση}} + {{label|fr|enregistré à}} +| rdfs:domain = MusicalWork +| rdfs:range = PopulatedPlace +| rdfs:subPropertyOf = dul:coparticipatesWith +}}OntologyProperty:RecoveryCases20212300536122020-04-10T06:25:30Z{{DatatypeProperty +| labels = +{{label|en|Recovery Cases}} +| rdfs:comment@en = Number of recovered cases in a pandemic +| rdfs:domain = Outbreak +| rdfs:range = xsd:integer +}}OntologyProperty:Rector2021354364592014-07-08T14:14:10Z +{{ObjectProperty +| rdfs:label@en = rector +| rdfs:label@de = Rektor +| rdfs:domain = EducationalInstitution +| rdfs:range = Person +| rdfs:subPropertyOf = dul:sameSettingAs +}}OntologyProperty:RedListIdNL20210385392092015-01-12T20:58:20Z{{DatatypeProperty +| labels = +{{label|en|red list ID NL}} +{{label|nl|rode lijst ID NL}} +| rdfs:domain = Species +| rdfs:range = xsd:integer +| comments = +{{comment|en|red list code for treatened species NL (different from IUCN)}} +{{comment|nl|rode lijst ID van bedreigde soorten in Nederland}} +}}OntologyProperty:RedLongDistancePisteNumber2027201257512013-06-01T13:24:47Z{{DatatypeProperty +| labels = +{{label|en|red long distance piste number}} +| rdfs:domain = Place +| rdfs:range = xsd:nonNegativeInteger +}}OntologyProperty:RedSkiPisteNumber2027194257442013-06-01T13:21:26Z{{DatatypeProperty +| labels = +{{label|en|red ski piste number}} +| rdfs:domain = Place +| rdfs:range = xsd:nonNegativeInteger +}}OntologyProperty:Redline2021355104292010-11-10T14:54:43Z{{DatatypeProperty +| rdfs:label@en = redline +| rdfs:domain = AutomobileEngine +| rdfs:range = Speed +| rdf:type = owl:FunctionalProperty +}}OntologyProperty:Refcul2026986254692013-05-25T16:06:35Z{{DatatypeProperty +| labels = +{{label|en|reference for cultural data}} +| rdfs:range = xsd:string +| rdfs:domain = Place +}}OntologyProperty:Reference2027081490972015-10-10T16:05:30Z{{DatatypeProperty +| labels = +{{label|en|reference}} +{{label|de|Referenz}} +| rdfs:comment@en = Structured reference providing info about the subject +| rdfs:domain = Reference +| rdfs:range = xsd:string +}}OntologyProperty:ReffBourgmestre2027897274222013-07-12T10:13:28Z{{ObjectProperty +| labels = +{{label|en|referent bourgmestre}} +| rdfs:domain = Settlement +| rdfs:range = Person +}}OntologyProperty:Refgen2026985341642014-04-04T16:33:42Z{{DatatypeProperty +| labels = +{{label|en|reference for general data}} +{{label|de|Referenz für allgemeine Daten}} +| rdfs:range = xsd:string +| rdfs:domain = Place +}}OntologyProperty:Refgeo2026987479052015-05-13T11:22:06Z{{DatatypeProperty +| labels = +{{label|en|reference for geographic data}} +{{label|de|Referenz für geographische Daten}} +{{label|nl|geometrie}} +| rdfs:range = xsd:string +| rdfs:domain = Place +}}OntologyProperty:Refpol2026988341662014-04-04T16:33:52Z{{DatatypeProperty +| labels = +{{label|en|reference for politic data}} +{{label|de|Referenz für politische Daten}} +| rdfs:range = xsd:string +| rdfs:domain = Place +}}OntologyProperty:Refseq202135682432010-05-28T13:37:59Z{{DatatypeProperty +| rdfs:label@en = RefSeq +| rdfs:domain = Protein +| rdfs:range = xsd:string +}}OntologyProperty:Refseqmrna2025031191332012-07-31T11:19:25Z{{DatatypeProperty +| rdfs:label@en = refseq mRNA +| rdfs:label@ja = refseq mRNA +| rdfs:domain = Biomolecule +| rdfs:range = xsd:string +}}OntologyProperty:Refseqprotein2025032191342012-07-31T11:19:52Z{{DatatypeProperty +| rdfs:label@en = refseq protein +| rdfs:label@ja = refseq protein +| rdfs:domain = Biomolecule +| rdfs:range = xsd:string +}}OntologyProperty:Regency2026791364602014-07-08T14:14:13Z +{{ObjectProperty +| labels = + {{label|en|regency }} + {{label|de|Regentschaft}} + {{label|id|kabupaten }} +| comments = + +| rdfs:domain = Place +| rdfs:range = PopulatedPlace +| rdfs:subPropertyOf = dul:sameSettingAs +}}OntologyProperty:RegentOf20211286487172015-08-10T11:25:44Z{{ObjectProperty +| labels = + {{label|en|regent of}} +| rdfs:comment@en = Subject has served as the regent of another monarch +| rdfs:domain = Monarch +| rdfs:range = Monarch +}}OntologyProperty:Regime2021357342682014-04-04T16:49:17Z{{DatatypeProperty +| rdfs:label@en = regime +| rdfs:domain = Spacecraft +| rdfs:range = xsd:string +}}OntologyProperty:Region2021358364612014-07-08T14:14:16Z +{{ObjectProperty +| labels = + {{label|en|region}} + {{label|de|Region}} + {{label|nl|regio}} + {{label|el|περιοχή}} + {{label|pl|region}} +| rdfs:comment@en = The regin where the thing is located or is connected to. +| rdfs:domain = owl:Thing +| rdfs:range = Place +| rdfs:subPropertyOf = dul:hasLocation +}}OntologyProperty:RegionLink2027109256392013-05-26T14:16:44Z{{DatatypeProperty +| labels = +{{label|en|region link}} +| rdfs:domain = Place +| rdfs:range = xsd:string +}}OntologyProperty:RegionServed2021361364622014-07-08T14:14:18Z +{{ObjectProperty +| labels = + {{label|en|region served}} + {{label|nl|werkgebied}} +| rdfs:domain = Organisation +| rdfs:range = Place +| rdfs:subPropertyOf = dul:coparticipatesWith +}}OntologyProperty:RegionType2021362221982013-01-10T21:16:42Z{{DatatypeProperty +| labels = +{{label|en|region type}} +{{label|nl|regio-type}} +| rdfs:domain = Place +| rdfs:range = xsd:string +}}OntologyProperty:RegionalCouncil2027021341712014-04-04T16:34:21Z{{ObjectProperty +| labels = +{{label|en|regional council}} +{{label|de|Gemeinderat}} +| rdfs:domain = Agent +| rdfs:range = TermOfOffice +}}OntologyProperty:RegionalLanguage2021360364632014-07-08T14:14:22Z +{{ObjectProperty +| rdfs:label@en = regional language +| rdfs:label@de = Regionalsprache +| rdfs:domain = PopulatedPlace +| rdfs:range = Language +| rdfs:subPropertyOf = dul:isLocationOf +}}OntologyProperty:RegionalPrefecture2027137341732014-04-04T16:34:31Z{{DatatypeProperty +| labels = +{{label|en|regional prefecture}} +{{label|de|regionale Präfektur}} +| rdfs:domain = Place +| rdfs:range = xsd:string +}}OntologyProperty:Registration2021363572762022-03-28T22:05:44Z{{DatatypeProperty +| labels = + {{label|en|registration}} + {{label|fr|enregistrement}} + {{label|de|Anmeldung}} +| rdfs:domain = Company +| rdfs:range = xsd:string +}}OntologyProperty:Registry2026535525612017-10-26T13:16:08Z{{DatatypeProperty +| labels = +{{label|en|registry}} +{{label|de|Register}} +{{label|fr|registre}} +| comments = +{{comment|en|A registry recording entires with associated codes. }} +{{comment|de|Ein Register welches Einträge mit Kennungen versieht. }} +| rdfs:range = xsd:string +| owl:equivalentProperty = +}}OntologyProperty:RegistryNumber2028410537562020-09-30T13:09:26Z{{ DatatypeProperty + | rdfs:comment@en = Identification of the registry a document is in + | rdfs:label@en = registry number + | rdfs:label@de = Registrierungsnummer + | rdfs:label@nl = registernummer + | rdfs:domain = Document + | rdfs:range = xsd:string +|owl:equivalentProperty=ceo:kennisregistratienummer +}}OntologyProperty:Reign2027638268842013-07-03T09:08:22Z{{DatatypeProperty +| labels = +{{label|en|reign}} +| rdfs:domain = Person +| rdfs:range = xsd:string +}}OntologyProperty:ReignName2028086282512013-09-04T10:23:47Z{{DatatypeProperty +| labels = +{{label|en|reign name}} +| rdfs:domain = Person +| rdfs:range = xsd:string +}}OntologyProperty:ReigningPope20211362492142015-10-14T20:19:16Z{{ObjectProperty +|labels = + {{label|en|reigning pope}} + {{label|nl|regerende paus}} +| rdfs:domain = Cleric <!-- Cardinal , Priest--> +| rdfs:range = Pope +}}OntologyProperty:Related2021364537062020-09-04T15:35:43Z{{ObjectProperty +| labels = + {{label|en|related}} + {{label|de|verbunden}} + {{label|nl|gerelateerd}} +| rdfs:subPropertyOf = dul:associatedWith +| owl:equivalentProperty = schema:isRelatedTo, ceo:heeftBetrekkingOp +}}OntologyProperty:RelatedFunctions2026454364652014-07-08T14:14:29Z +{{ObjectProperty +| labels = + {{label|en|related functions}} + {{label|nl|soortgelijke functies}} +| comments = + {{comment|en|This property is to accommodate the list field that contains a list of related personFunctions a person holds or has held }} + {{comment|nl|Deze property is voor de lijst van persoonfuncties die een persoon (bv. een politicus) bekleedt of heeft bekleed}} +| rdfs:domain = Person +| rdfs:range = List +| rdf:type = | rdfs:subPropertyOf = +| owl:equivalentProperty = +| rdfs:subPropertyOf = dul:unifies +}}OntologyProperty:RelatedMeanOfTransportation2021365364662014-07-08T14:14:32Z +{{ObjectProperty +| rdfs:label@en = related mean of transportation +| rdfs:domain = MeanOfTransportation +| rdfs:range = MeanOfTransportation +| rdfs:subPropertyOf = dul:sameSettingAs +}}OntologyProperty:RelatedPlaces2026327364672014-07-08T14:14:35Z +{{ObjectProperty +| labels = + {{label|en|related places}} + {{label|nl|soortgelijke plaatsen}} +| comments = + {{comment|en|This property is to accommodate the list field that contains a list of, e.g., monuments in the same town }} + {{comment|nl|Deze property is voor de lijst van monumenten die horen bij het monument van de infobox}} +| rdfs:domain = Place +| rdfs:range = List +| rdf:type = | rdfs:subPropertyOf = +| owl:equivalentProperty = +| rdfs:subPropertyOf = dul:unifies +}}OntologyProperty:Relation2021366364682014-07-08T14:14:39Z +{{ObjectProperty +| labels = + {{label|en|relation}} + {{label|de|Beziehung}} + {{label|el|σχέση}} + {{label|nl|relatie}} +| rdfs:domain = Person +| rdfs:range = Person +| rdfs:subPropertyOf = dul:sameSettingAs +}}OntologyProperty:Relative2021367490462015-10-08T15:38:14Z{{ObjectProperty +| rdfs:label@en = relative +| rdfs:label@el = συγγενής +| rdfs:label@de = Verwandter +| rdfs:label@gl = parente +| rdfs:label@ja = 親戚 +| rdfs:domain = Person +| rdfs:range = Person +| owl:equivalentProperty = schema:relatedTo +| rdfs:subPropertyOf = dul:sameSettingAs +}}OntologyProperty:RelativeAtomicMass20211018453172015-02-13T17:39:52Z{{DatatypeProperty +| labels = +{{label|en|atomic weight}} +{{label|ga|Mais adamhach choibhneasta}} +| comments = +{{comment|en|the ratio of the average mass of atoms of an element (from a single given sample or source) to 1⁄12 of the mass of an atom of carbon-12<ref>https://en.wikipedia.org/wiki/Relative_atomic_mass</ref>}} +{{comment|ga|Maiseanna adamh, a chuirtear síos i dtéarmaí aonaid maise adamhaí u.<ref>https://ga.wikipedia.org/wiki/Mais_adamhach_choibhneasta</ref>}} +| rdfs:domain = ChemicalElement +| rdfs:range = xsd:nonNegativeInteger +}} + +<references/>OntologyProperty:ReleaseDate2021368570442022-03-09T15:52:16Z{{DatatypeProperty +| labels = + {{label|en|release date}} + {{label|fr|date de sortie}} + {{label|da|udgivet}} + {{label|nl|release datum}} + {{label|el|ημερομηνία κυκλοφορίας}} + {{label|pl|data wydania}} +| comments = + {{comment|en|Release date of a Work or another product (eg Aircraft or other MeansOfTransportation}} + {{comment|fr|Date de sortie d'un travail ou d'un autre produit (un avion, d'autres moyens de transport...}} +| rdfs:range = xsd:date +| owl:equivalentProperty = wikidata:P577 +}}OntologyProperty:ReleaseLocation20211038453932015-02-18T16:26:07Z{{ObjectProperty +| labels = +{{label|en|release location}} +| rdfs:domain = Work +| rdfs:range = Place +| rdfs:comment@en = Usually used with releaseDate, particularly for Films. Often there can be several pairs so our modeling is not precise here... +}}OntologyProperty:Relics20211237478432015-05-04T16:37:50Z{{DatatypeProperty +| rdfs:label@en = relics +| rdfs:label@bg = реликви +| rdfs:domain = ReligiousBuilding +| rdfs:range = xsd:string +| rdfs:comment@en = Physical remains or personal effects of a saint or venerated person, preserved in a religious building +}}OntologyProperty:Relief2027145256842013-05-26T16:09:08Z{{DatatypeProperty +| labels = +{{label|en|relief}} +| rdfs:domain = Place +| rdfs:range = xsd:string +}}OntologyProperty:Religion2021369364702014-07-08T14:14:45Z +{{ObjectProperty +| labels = + {{label|en|religion}} + {{label|de|Religion}} + {{label|el|θρησκεία}} + {{label|nl|religie}} + {{label|fr|religion}} + {{label|pt|religião}} + {{label|ja|宗教}} +| owl:equivalentProperty = wikidata:P140 +| rdfs:subPropertyOf = dul:conceptualizes +}}OntologyProperty:ReligiousHead2023116525922017-10-31T09:09:15Z +{{ObjectProperty +| rdfs:label@en = religious head +| rdfs:range = Person +| rdfs:subPropertyOf = dul:hasMember +}}OntologyProperty:ReligiousHeadLabel2023115364722014-07-08T14:14:53Z +{{ObjectProperty +| rdfs:label@en = religious head label +| rdfs:domain = School +| rdfs:subPropertyOf = dul:sameSettingAs +}}OntologyProperty:ReligiousOrder2026031587892022-05-31T15:01:06Z +{{ObjectProperty +| labels = + {{label|en|religious order}} + {{label|nl|religieuze orde}} +| rdfs:domain = Monastry +| rdfs:range = ClericalOrder +| rdfs:subPropertyOf = dul:sameSettingAs +}}OntologyProperty:Reopened2021370525932017-10-31T09:10:25Z{{DatatypeProperty +| rdfs:label@en = reopened +| rdfs:label@de = wieder eröffnet +| rdfs:range = xsd:date +}}OntologyProperty:ReopeningDate2023836341802014-04-04T16:35:12Z{{DatatypeProperty +| rdfs:label@en = reopening date +| rdfs:label@de = Wiedereröffnungdatum +| rdfs:domain = ArchitecturalStructure +| rdfs:range = xsd:date +| rdfs:comment@en = Date of reopening the architectural structure. +}}OntologyProperty:ReopeningYear2023837222672013-01-11T00:17:24Z{{DatatypeProperty +| labels = +{{label|en|reopening year}} +{{label|nl|heropening jaar}} +| rdfs:domain = ArchitecturalStructure +| rdfs:range = xsd:gYear +| rdfs:comment@en = Year of reopening the architectural structure. +}}OntologyProperty:ReportingMark2023705130652011-05-19T13:11:08Z{{DatatypeProperty +| rdfs:label@en = reporting mark +| rdfs:domain = PublicTransitSystem +| rdfs:range = xsd:string +| rdfs:comment@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. +}}OntologyProperty:Representative2027044341812014-04-04T16:35:16Z{{DatatypeProperty +| labels = +{{label|en|number of representatives}} +{{label|de|Zahl der Vertreter}} +| rdfs:domain = Place +| rdfs:range = xsd:nonNegativeInteger +}}OntologyProperty:Requirement2022128341822014-04-04T16:35:21Z{{DatatypeProperty +| rdfs:label@en = requirement +| rdfs:label@de = Anforderung +| rdfs:range = xsd:string +}}OntologyProperty:Reservations2022529341832014-04-04T16:35:25Z{{DatatypeProperty +| rdfs:label@en = reservations +| rdfs:label@de = Reservierungen +| rdfs:comment@en = Are reservations required for the establishment or event? +| rdfs:domain = Restaurant +| rdfs:range = xsd:boolean +}}OntologyProperty:Residence2021371587752022-05-31T13:38:17Z +{{ObjectProperty +| labels = + {{label|en|residence}} + {{label|de|Residenz}} + {{label|nl|verblijfplaats}} + {{label|el|κατοικία}} + {{label|ja|居住地}} + {{label|pl|miejsce zamieszkania}} +| rdfs:comment@en = Place of residence of a person. +| rdfs:domain = Person +| rdfs:range = Place +| owl:equivalentProperty = wikidata:P551 +| rdfs:subPropertyOf = dul:hasLocation +}}OntologyProperty:Resolution2022124364752014-07-08T14:15:14Z +{{ObjectProperty +| labels = + {{label|en|resolution}} + {{label|de|Auflösung}} + {{label|el|ανάλυση}} + {{label|fr|résolution}} +| rdfs:domain = Software +| rdfs:comment@en = Native Resolution +| rdfs:subPropertyOf = dul:hasQuality +}}OntologyProperty:Restaurant20214267590972022-10-13T09:50:19Z +{{ObjectProperty +| rdfs:label@en = hotel +| rdfs:label@fr = hotêl +| rdfs:domain = Hotel +| rdfs:range = Building +}}OntologyProperty:RestingDate2027978528372018-02-08T20:23:04Z{{DatatypeProperty +| labels = + {{label|en|resting date}} + {{label|de|Bestattungsdatum}} + {{label|ja|埋葬年月日}} +| rdfs:domain = Person +| rdfs:range = xsd:date +| rdf:type = owl:FunctionalProperty +| owl:equivalentProperty = +}}OntologyProperty:RestingPlace2021373364762014-07-08T14:15:18Z +{{ObjectProperty +| rdfs:label@en = resting place +| rdfs:label@de = Ruhestätte +| rdfs:label@ja = 埋葬地 +| rdfs:domain = Person +| rdfs:range = Place +| rdfs:subPropertyOf = dul:hasLocation +}}OntologyProperty:RestingPlacePosition2021374364772014-07-08T14:15:20Z +{{ObjectProperty +| rdfs:label@en = resting place position +| rdfs:domain = Person +| rdfs:range = geo:SpatialThing +| rdfs:subPropertyOf = dul:hasLocation +}}OntologyProperty:RestoreDate2022551113312011-03-30T15:23:30Z{{DatatypeProperty +|rdfs:label@en=restore date +| rdfs:label@el = ημερομηνία ανακαίνισης +|rdfs:range=xsd:date +}}OntologyProperty:Restriction20211972525592017-10-26T10:44:38Z{{DatatypeProperty +| rdfs:label@en = restriction +| rdfs:label@de = Beschränkung +| rdfs:comment@en = The use of a thing is restricted in a way. +| rdfs:comment@de = Die Verwendung von etwas ist beschränkt. +| rdfs:domain = owl:Thing +| rdfs:range = xsd:string +}}OntologyProperty:Result2021375342732014-04-04T17:08:38Z{{DatatypeProperty +| labels = +{{label|en|result}} +{{label|de|Folge}} +{{label|el|αποτέλεσμα}} + +| rdfs:domain = MilitaryConflict +| rdfs:range = xsd:string +}}OntologyProperty:RetentionTime2027098256222013-05-26T13:36:52Z{{DatatypeProperty +| labels = +{{label|en|relation time}} +| rdfs:domain = Place +| rdfs:range = xsd:string +}}OntologyProperty:Retired2021376217492013-01-03T17:33:58Z{{DatatypeProperty +| rdfs:label@en = retired +| rdfs:label@el = συνταξιούχος +| rdfs:range = xsd:date +}}OntologyProperty:RetiredRocket2021378364782014-07-08T14:15:23Z +{{ObjectProperty +| rdfs:label@en = retired rocket +| rdfs:domain = YearInSpaceflight +| rdfs:range = Rocket +| rdfs:subPropertyOf = dul:isSettingFor +}}OntologyProperty:RetirementDate2025640224122013-01-11T22:28:02Z{{ DatatypeProperty +| labels = +{{label|en|retirement date}} +{{label|nl|pensioendatum}} +| rdfs:domain = Person +| rdfs:range = xsd:date +| rdf:type = owl:FunctionalProperty +}}OntologyProperty:RevPerYear20214282591202022-12-01T17:27:38Z#REDIRECT [[OntologyProperty:NbRevPerYear]]OntologyProperty:Revenue2021379538072020-12-01T18:01:57Z{{DatatypeProperty +| labels = + {{label|en|revenue}} +{{label|de|Einnahmen}} + {{label|el|έσοδα}} + {{label|fr|chiffre d'affaire}} +| rdfs:domain = Organisation +| rdfs:range = Currency +| owl:equivalentProperty = wikidata:P2139 +}}OntologyProperty:RevenueYear20212331536542020-07-27T08:48:15Z{{DatatypeProperty +| labels = +{{label|en|year of reported revenue}} +| rdfs:domain = Organization +| rdfs:range = xsd:gYear +}}OntologyProperty:Review2021380570422022-03-09T15:48:01Z{{DatatypeProperty +| labels = + {{label|en|review}} + {{label|fr|évaluation}} + {{label|de|Rezension}} +| rdfs:domain = Album +| rdfs:range = xsd:anyURI +}}OntologyProperty:RgbCoordinateBlue2022371104482010-11-10T15:01:49Z{{DatatypeProperty +| rdfs:label@en = bluecoordinate in the RGB space +| rdfs:domain = Colour +| rdfs:range = xsd:nonNegativeInteger +}}OntologyProperty:RgbCoordinateGreen2022372104492010-11-10T15:01:57Z{{DatatypeProperty +| rdfs:label@en = green coordinate in the RGB space +| rdfs:domain = Colour +| rdfs:range = xsd:nonNegativeInteger +}}OntologyProperty:RgbCoordinateRed2022370104472010-11-10T15:01:31Z{{DatatypeProperty +| rdfs:label@en = red coordinate in the RGB space +| rdfs:domain = Colour +| rdfs:range = xsd:nonNegativeInteger +}}OntologyProperty:RidId2028425528842018-02-13T10:56:11Z{{DatatypeProperty +| labels = +{{label|en|RID Id}} +| comments = +{{comment|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.}} +| rdfs:range = xsd:string +| rdfs:subPropertyOf = code +}}OntologyProperty:RightAscension2025343491532015-10-13T11:07:58Z{{ DatatypeProperty + + | rdfs:label@en = right ascension + | rdfs:domain = CelestialBody + | rdfs:range = xsd:nonNegativeInteger + +}}OntologyProperty:RightChild2021383364792014-07-08T14:15:26Z +{{ObjectProperty +| rdfs:label@en = right child +| rdfs:domain = Island +| rdfs:range = Island +| rdfs:subPropertyOf = dul:hasCommonBoundary +}}OntologyProperty:RightTributary2021384364802014-07-08T14:15:30Z +{{ObjectProperty +| rdfs:label@en = right tributary +| rdfs:label@de = rechter Nebenfluss +| rdfs:label@el = δεξιοί_παραπόταμοι +| rdfs:domain = River +| rdfs:range = River +| rdfs:subPropertyOf = dul:hasCommonBoundary +}}OntologyProperty:Rival20211975525952017-10-31T09:11:26Z#REDIRECT [[OntologyProperty:RivalSchool]]OntologyProperty:RivalSchool2021385525942017-10-31T09:11:26Z +{{ObjectProperty +| rdfs:label@en = rival +| rdfs:label@de = Rivale +| rdfs:domain = School +| rdfs:range = School +| rdfs:subPropertyOf = dul:coparticipatesWith +}}OntologyProperty:River2021386364822014-07-08T14:15:36Z +{{ObjectProperty +| labels = + {{label|en|river}} + {{label|de|Fluss}} + {{label|el|ποτάμι}} + {{label|fr|rivière}} +| rdfs:domain = Place +| rdfs:range = River +| rdfs:subPropertyOf = dul:nearTo +}}OntologyProperty:RiverBranch202620364832014-07-08T14:15:40Z +{{ObjectProperty +| labels = + {{label|en|branch}} + {{label|nl|riviertak}} + {{label|el|διακλαδώσεις}} +| rdfs:domain = River +| rdfs:range = River +| rdfs:subPropertyOf = dul:hasCommonBoundary +}}OntologyProperty:RiverBranchOf202622364842014-07-08T14:15:43Z +{{ObjectProperty +| rdfs:label@en = branch of +| rdfs:label@el = διακλάδωση_του +| rdfs:domain = River +| rdfs:range = River +| rdfs:subPropertyOf = dul:hasCommonBoundary +}}OntologyProperty:RiverMouth2021147364852014-07-08T14:15:47Z +{{ObjectProperty +| labels = + {{label|en|river mouth}} + {{label|de|Flussmündung}} + {{label|nl|riviermonding}} + {{label|el|εκβολές}} +| rdfs:domain = River +| rdfs:range = BodyOfWater +| rdfs:subPropertyOf = dul:hasCommonBoundary +}}OntologyProperty:RkdArtistsId20211041528852018-02-13T10:57:26Z{{DatatypeProperty +| labels = +{{label|en|RKDartists id}} +| comments = +{{comment|en|Rijksbureau voor Kunsthistorische Documentatie (RKD) artists database id. +http://rkd.nl/explore/artists/$1}} +| rdfs:domain = owl:Thing +| rdfs:range = xsd:string +| owl:equivalentProperty = wikidata:P650 +| rdfs:subPropertyOf = code +}}OntologyProperty:Road20211138461702015-03-18T08:26:22Z{{ObjectProperty +| labels = + {{label|en|road}} + {{label|nl|weg}} +| rdfs:domain = Infrastructure +| rdfs:range = Road +}}OntologyProperty:Rocket2021387364862014-07-08T14:15:51Z +{{ObjectProperty +| rdfs:label@en = rocket +| rdfs:label@de = Rakete +| rdfs:label@fr = fusée +| rdfs:label@el = ρουκέτα +| rdfs:domain = Spacecraft +| rdfs:range = Rocket +| rdfs:subPropertyOf = dul:coparticipatesWith +}}OntologyProperty:RocketFunction2021684364872014-07-08T14:15:54Z +{{ObjectProperty +| rdfs:label@en = rocket function +| rdfs:domain = Rocket +| rdfs:comment@en = purpose of the rocket +| rdfs:subPropertyOf = dul:isClassifiedBy +}}OntologyProperty:RocketStages2021462341982014-04-04T16:36:37Z{{DatatypeProperty +| rdfs:label@en = number of rocket stages +| rdfs:label@de = Anzahl von Raketenstufen +| rdfs:comment@en = number of stages, not including boosters +| rdfs:domain = Rocket +| rdfs:range = xsd:nonNegativeInteger +}}OntologyProperty:RolandGarrosDouble2027723500702016-01-04T12:32:27Z{{DatatypeProperty +| labels = +{{label|en|roland garros double}} +| rdfs:domain = TennisPlayer +| rdfs:range = xsd:string +}}OntologyProperty:RolandGarrosMixed2027727500712016-01-04T12:33:02Z{{DatatypeProperty +| labels = +{{label|en|roland garros mixed}} +| rdfs:domain = TennisPlayer +| rdfs:range = xsd:string +}}OntologyProperty:RolandGarrosSingle2027719500722016-01-04T12:33:38Z{{DatatypeProperty +| labels = +{{label|en|roland garros single}} +| rdfs:domain = TennisPlayer +| rdfs:range = xsd:string +}}OntologyProperty:Role2021388537072020-09-04T15:36:28Z{{DatatypeProperty +| rdfs:label@en = role +| rdfs:label@de = Rolle +| rdfs:label@el = ρόλος +| rdfs:label@fr = rôle +| rdfs:range = xsd:string +| owl:equivalentProperty = schema:role, ceo:rol +}}OntologyProperty:RoleInEvent20210105375852014-08-07T09:29:39Z{{ObjectProperty +| rdfs:label@en = A Person's role in an event +| rdfs:label@nl = Rol van een persoon in een gebeurtenis +| rdfs:label@fr = rôle d'une personne dans un événement +| rdfs:domain = Agent +| rdfs:range = Event +}}OntologyProperty:RoofHeight2026431234782013-01-22T13:34:31Z{{DatatypeProperty +| labels = +{{label|en|roof height}} +{{label|de|Höhe Dach}} +| rdfs:domain = Skyscraper +| rdfs:range = xsd:nonNegativeInteger +}}OntologyProperty:RotationPeriod2024361146812011-07-29T15:36:01Z{{DatatypeProperty + |rdfs:label@en=rotation period + |rdfs:domain=Planet + |rdfs:range=Time +}}OntologyProperty:Route2027110342002014-04-04T16:36:46Z{{DatatypeProperty +| labels = +{{label|en|route}} +{{label|de|Route}} +| rdfs:domain = Place +| rdfs:range = xsd:string +}}OntologyProperty:RouteActivity20211079455682015-03-08T12:55:34Z{{ObjectProperty +| rdfs:label@en = route activity +| rdfs:label@fr = activité de route +| rdfs:domain = RouteStop +| rdfs:comment@en = details of the activity for a road. +| rdfs:comment@fr = détail de l'activité sur une route. +}}OntologyProperty:RouteDirection2023337122202011-04-15T13:26:23Z{{DatatypeProperty +| rdfs:label@en = route direction +| rdfs:label@de = Himmelsrichtung des Verkehrsweges +| rdfs:domain = RouteOfTransportation +| rdfs:range = xsd:string +| rdfs:comment@en = The general direction of the route (eg. North-South). +| rdfs:comment@de = Himmelsrichtung des Verkehrsweges (z.B. North-South). +}}OntologyProperty:RouteEnd2023334522532017-10-08T09:42:42Z +{{ObjectProperty +| rdfs:label@en = route end +| rdfs:label@de = Wegende +| rdfs:domain = RouteOfTransportation +| rdfs:range = Station +| rdfs:comment@en = End of the route. This is where the route ends and, for U.S. roads, is either at the northern terminus or eastern terminus. +| rdfs:comment@de = Ende des Verkehrswegs. +| rdfs:subPropertyOf = dul:hasCommonBoundary +}}OntologyProperty:RouteEndDirection2023335122182011-04-15T13:17:42Zhttp://mappings.dbpedia.org/index.php/OntologyProperty:routeEndDirection +{{DatatypeProperty +| rdfs:label@en = road end direction +| rdfs:label@de = Himmelsrichtung des Wegendes +| rdfs:domain = RouteOfTransportation +| rdfs:range = xsd:string +| rdfs:comment@en = End of the route. The opposite of OntologyProperty:routeStartDirection. +| rdfs:comment@de = Himmelsrichtung des Endes des Verkehrsweges. Der Gegensatz zur OntologyProperty:routeStartDirection. +}}OntologyProperty:RouteEndLocation2023393364892014-07-08T14:16:00Z +{{ObjectProperty +| rdfs:label@en = route end location +| rdfs:label@de = Ort des Wegendes +| rdfs:domain = RouteOfTransportation +| rdfs:range = Place +| rdfs:comment@en = The end location of the route. +| rdfs:comment@de = End-Ort des Verkehrswegs. +| rdfs:subPropertyOf = dul:hasCommonBoundary +}}OntologyProperty:RouteJunction2023319522542017-10-08T09:43:08Z +{{ObjectProperty +| rdfs:label@en = route junction +| rdfs:label@de = Wegabzweigung +| rdfs:domain = RouteOfTransportation +| rdfs:range = Station +| rdfs:comment@en = A junction or cross to another route. +| rdfs:comment@de = Eine Abzweigung oder Kreuzung zu einem anderen Verkehrsweg. +| rdfs:subPropertyOf = dul:hasCommonBoundary +}}OntologyProperty:RouteLine20211078455642015-03-08T12:47:18Z{{ObjectProperty +| rdfs:label@en = line +| rdfs:label@fr = ligne +| rdfs:domain = RouteStop +| rdfs:comment@fr = ligne d'un arrêt sur une route. +| rdfs:comment@en = line of a stop on a route. +}}OntologyProperty:RouteNext20211077455672015-03-08T12:50:15Z{{ObjectProperty +| rdfs:label@en = route next stop +| rdfs:label@fr = arrêt suivant +| rdfs:domain = RouteStop +| rdfs:range = RouteStop +| rdfs:comment@en = next stop on a route. +| rdfs:comment@fr = arrêt suivant sur une route. +}}OntologyProperty:RouteNumber2024352342012014-04-04T16:36:51Z{{DatatypeProperty +| rdfs:label@en = route number +| rdfs:label@de = Routennummer +| rdfs:domain = RouteOfTransportation +| rdfs:range = xsd:string +| rdfs:comment@en = The number of the route. +}}OntologyProperty:RoutePrevious20211075455662015-03-08T12:49:38Z{{ObjectProperty +| rdfs:label@en = route previous stop +| rdfs:label@fr = arrêt précédent +| rdfs:domain = RouteStop +| rdfs:range = RouteStop +| rdfs:comment@en = previous stop on a route. +| rdfs:comment@fr = arrêt précédent sur une route. +}}OntologyProperty:RouteStart2023332522552017-10-08T09:43:46Z{{ObjectProperty +| rdfs:label@en = route start +| rdfs:label@fr = point de départ +| rdfs:label@de = Weganfang +| rdfs:domain = RouteOfTransportation +| rdfs:range = Station +| rdfs:comment@en = Start of the route. This is where the route begins and, for U.S. roads, is either at the southern terminus or western terminus. +| rdfs:comment@fr = point de départ d'une route. +| rdfs:comment@de = Anfang des Verkehrswegs. +| rdfs:subPropertyOf = dul:hasCommonBoundary +}}OntologyProperty:RouteStartDirection2023333122162011-04-15T13:16:18Z{{DatatypeProperty +| rdfs:label@en = road start direction +| rdfs:label@de = Himmelsrichtung des Wegstarts +| rdfs:domain = RouteOfTransportation +| rdfs:range = xsd:string +| rdfs:comment@en = 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. +| rdfs:comment@de = Himmelsrichtung des Anfangs des Verkehrsweges. +}}OntologyProperty:RouteStartLocation2023394364922014-07-08T14:16:10Z +{{ObjectProperty +| rdfs:label@en = route start location +| rdfs:label@de = Ort des Weganfangs +| rdfs:domain = RouteOfTransportation +| rdfs:range = Place +| rdfs:comment@en = The start location of the route. +| rdfs:comment@de = Der Startort des Verkehrswegs. +| rdfs:subPropertyOf = dul:hasCommonBoundary +}}OntologyProperty:RouteTypeAbbreviation2024353146612011-07-28T15:03:58Z{{DatatypeProperty +| rdfs:label@en = route type abbreviation +| rdfs:domain = RouteOfTransportation +| rdfs:range = xsd:string +| rdfs:comment@en = The route type abbreviation (eg.: I for Interstate, M for Motorway or NJ for New Jersey Route). +}}OntologyProperty:RoyalAnthem2021389364932014-07-08T14:16:14Z +{{ObjectProperty +| rdfs:label@en = royal anthem +| rdfs:subPropertyOf = dul:sameSettingAs +}}OntologyProperty:Ruling2026605342022014-04-04T16:36:56Z{{DatatypeProperty +| labels = +{{label|en|ruling}} +{{label|de|Entscheidung}} +{{label|nl|relevante regelgeving}} +| comments = +{{comment|en| Ruling referred to in this legal case }} +| rdfs:domain = LegalCase +| rdfs:range = xsd:string +| rdf:type = +| rdfs:subPropertyOf = +| owl:equivalentProperty = +}}OntologyProperty:RunningMate2022355376062014-08-25T09:23:49Z{{ObjectProperty +| rdfs:label@en = running mate +| rdfs:label@es = compañero de candidatura +| rdfs:range = Person +| rdfs:subPropertyOf = dul:sameSettingAs +}}OntologyProperty:Runtime2021390528302018-02-08T20:13:51Z{{Merge|duration}} + +{{DatatypeProperty +| labels = +{{label|en|runtime}} +{{label|de|Laufzeit}} +{{label|nl|duur}} +{{label|el|διάρκεια}} +{{label|fr|durée}} +| rdfs:domain = Work +| rdfs:range = Time +| owl:equivalentProperty = wikidata:P2047 +| rdfs:subPropertyOf = schema:duration +}}OntologyProperty:RunwayDesignation2024363146932011-08-01T13:00:53Z{{DatatypeProperty + |rdfs:label@en=designation of runway + |rdfs:domain=Airport + |rdfs:range=xsd:string +}}OntologyProperty:RunwayLength2024362146912011-08-01T12:56:04Z{{DatatypeProperty + |rdfs:label@en=length of runway + |rdfs:label@de=Start- und Landebahnlänge + |rdfs:domain=Airport + |rdfs:range=Length +}}OntologyProperty:RunwaySurface2024364146952011-08-01T13:04:05Z{{DatatypeProperty + |rdfs:label@en=surface of runway + |rdfs:domain=Airport + |rdfs:range=xsd:string +}}OntologyProperty:RunwayWidth2026676246062013-03-27T02:30:00Z{{DatatypeProperty + |rdfs:label@en=width of runway + |rdfs:label@ja=滑走路の全幅 + |rdfs:domain=Airport + |rdfs:range=Length +}}OntologyProperty:RuralMunicipality2021391364952014-07-08T14:16:21Z +{{ObjectProperty +| rdfs:label@en = rural municipality +| rdfs:label@de = Landgemeinde +| rdfs:domain = Road +| rdfs:range = PopulatedPlace +| rdfs:subPropertyOf = dul:hasLocation +}}OntologyProperty:Saint2021392364962014-07-08T14:16:23Z +{{ObjectProperty +| labels = + {{label|en|saint}} + {{label|de|Heiliger}} + {{label|el|άγιος}} + {{label|nl|heilige}} + {{label|pt|santo}} +| rdfs:domain = PopulatedPlace +| rdfs:range = Saint +| rdfs:subPropertyOf = dul:sameSettingAs +}}OntologyProperty:Salary2021393215092012-12-30T12:54:17Z{{DatatypeProperty +| rdfs:label@en = salary +| rdfs:label@el = μισθός +| rdfs:label@de = Gehalt +| rdfs:label@ja = 給料 +| rdfs:domain = Person +| rdfs:range = Currency +}}OntologyProperty:Sales2021394364972014-07-08T14:16:27Z +{{ObjectProperty +| rdfs:label@en = sales +| rdfs:label@de = Vertrieb +| rdfs:label@el = πώληση +| rdfs:label@fr = vente +| rdfs:range = Sales +| rdfs:comment@en = This property holds an intermediate node of the type Sales. +| rdfs:subPropertyOf = dul:hasSetting +}}OntologyProperty:SameName2026936348532014-05-15T05:20:08Z{{DatatypeProperty +| labels = +{{label|en|same name}} +{{label|de|gleicher Name}} +| rdfs:domain = Settlement +| rdfs:range = rdf:langString +}}OntologyProperty:SatScore2023138364982014-07-08T14:16:30Z +{{ObjectProperty +| rdfs:label@en = SAT score +| rdfs:comment@en = most recent average SAT scores +| rdfs:domain = School +| rdfs:subPropertyOf = dul:isClassifiedBy +}}OntologyProperty:Satcat20211895522672017-10-08T12:53:12Z{{DatatypeProperty +| rdfs:label@en = SATCAT +| rdfs:label@sr = SATCAT +| rdfs:label@de = SATCAT +| rdfs:label@fr = SATCAT +| rdfs:domain = SpaceMission +| rdfs:range = xsd:string +| comments = +{{comment|en|satellite catalogue number, omit leading zeroes (e.g. 25544)}} +}}OntologyProperty:Satellite2025644357342014-07-07T08:32:49Z{{ DatatypeProperty + + | rdfs:label@en = satellite +| rdfs:label@de = Satellit +| labels = + {{label|el|δορυφόρος}} + | rdfs:domain = Planet + | rdfs:range = xsd:string + +}}OntologyProperty:SatellitesDeployed2021395104222010-11-10T14:50:30Z{{DatatypeProperty +| rdfs:label@en = satellites deployed +| rdfs:domain = SpaceShuttle +| rdfs:range = xsd:nonNegativeInteger +}}OntologyProperty:Scale2027080342092014-04-04T16:37:30Z{{DatatypeProperty +| labels = +{{label|en|scale}} +{{label|de|Maßstab}} +| rdfs:domain = Place +| rdfs:range = xsd:string +}}OntologyProperty:ScaleFactor20213821571542022-03-15T11:48:19Z{{DatatypeProperty +| labels = + {{label|en|scale factor}} + {{label|fr|facteur d'échelle}} +| comments = + {{comment|en|Scale factor (ex: for images) to zoom out (value > 1) or reduce (0 < value < 1) the proportions. Decimal numbers use dot séparator; ex : 0.75 }} + {{comment|fr|Facteur d'échelle (par exemple pour des images) pour aggrandir (valeur > 1) ou réduire (0 < valeur < 1 les proportions. Pour les nombres décimaux, utiliser un point comme séparateur; ex : 0.75 }} +| rdfs:range = xsd:float +}}OntologyProperty:Scene2027758342102014-04-04T16:37:34Z{{DatatypeProperty +| labels = +{{label|en|scene}} +{{label|de|Szene}} +| rdfs:domain = Person +| rdfs:range = xsd:string +}}OntologyProperty:School2021396364992014-07-08T14:16:33Z +{{ObjectProperty +| labels = + {{label|en|school}} + {{label|nl|school}} + {{label|de|schule}} + {{label|it|scuola}} + {{label|el|σχολείο}} + {{label|fr|école}} +| rdfs:domain = Person +| rdfs:range = EducationalInstitution +| comments = + {{comment|en|school a person goes or went to}} + {{comment|el|σχολείο στο οποίο πηγαίνει ή πήγε κάποιος}} +| rdfs:subPropertyOf = dul:coparticipatesWith +}}OntologyProperty:SchoolBoard2023123365002014-07-08T14:16:36Z +{{ObjectProperty +| rdfs:label@en = school board +| rdfs:domain = School +| rdfs:subPropertyOf = dul:sameSettingAs +}}OntologyProperty:SchoolCode2021397528962018-02-13T12:29:57Z{{DatatypeProperty +| rdfs:label@en = school code +| rdfs:domain = School +| rdfs:range = xsd:string +| rdfs:subPropertyOf = code +}}OntologyProperty:SchoolNumber202139882592010-05-28T13:40:18Z{{DatatypeProperty +| rdfs:label@en = school number +| rdfs:domain = School +| rdfs:range = xsd:string +}}OntologyProperty:SchoolPatron2023122529322018-03-01T11:15:33Z +{{ObjectProperty +| rdfs:label@en = school patron +| rdfs:domain = School +| rdfs:range = Agent +| rdfs:subPropertyOf = dul:sameSettingAs +}}OntologyProperty:ScientificName2029285342112014-04-04T16:37:50Z{{DatatypeProperty +| rdfs:label@en = scientific name +| rdfs:label@de = wissenschaftlicher Name +| rdfs:label@nl = wetenschappelijke naam +| rdfs:domain = Species +| rdfs:range = xsd:string +}}OntologyProperty:Score20210466518062017-01-06T13:37:31Z{{DatatypeProperty +| rdfs:label@en = score +| rdfs:comment@en = Score or points of something (eg a SportCompetitionResult) +| rdfs:range = xsd:double +}}OntologyProperty:ScreenActorsGuildAward2021400365022014-07-08T14:16:41Z +{{ObjectProperty +| rdfs:label@en = Screen Actors Guild Award +| rdfs:domain = Actor +| rdfs:range = Award +| rdfs:subPropertyOf = dul:coparticipatesWith +}}OntologyProperty:Sea2026982567332022-02-28T15:09:03Z{{ObjectProperty +| labels = + {{label|en|sea}} + {{label|de|Meer}} + {{label|fr|mer}} +| rdfs:range = Sea +| rdfs:domain = Place +| rdfs:subPropertyOf = dul:nearTo +}}OntologyProperty:Season2021401365042014-07-08T14:16:50Z +{{ObjectProperty +| rdfs:label@en = season +| rdfs:label@de = Saison +| rdfs:label@el = σαιζόν +| rdfs:domain = Agent +| rdfs:subPropertyOf = dul:hasSetting +}}OntologyProperty:SeasonManager2027829271422013-07-05T15:25:42Z{{DatatypeProperty +| labels = +{{label|en|season manager}} +| rdfs:domain = Person +| rdfs:range = xsd:string +}}OntologyProperty:SeasonNumber2022105136592011-06-14T14:16:34Z{{DatatypeProperty +| rdfs:label@en = season number +| rdfs:domain = TelevisionEpisode +| rdfs:range = xsd:nonNegativeInteger +| rdfs:comment@en = The season number to which the TelevisionEpisode belongs. +}}OntologyProperty:SeatNumber2026870492232015-10-15T07:20:56Z{{DatatypeProperty +| labels = +{{label|en|number of seats in the land parlement}} +| rdfs:domain = AdministrativeRegion +| rdfs:range = xsd:nonNegativeInteger +}}OntologyProperty:SeatingCapacity2022528342142014-04-04T16:38:09Z{{DatatypeProperty +| labels = +{{label|en|seating capacity}} +{{label|de|Sitzplatzkapazität}} +{{label|nl|zitplaatsen}} +| rdfs:domain = Building +| rdfs:range = xsd:nonNegativeInteger +}}OntologyProperty:Second2027891273962013-07-10T15:23:31Z{{DatatypeProperty +| labels = +{{label|en|second}} +| rdfs:range = xsd:nonNegativeInteger +| rdfs:domain = Person +}}OntologyProperty:SecondCommander2021403365052014-07-08T14:16:53Z +{{ObjectProperty +| rdfs:label@en = second commander +| rdfs:label@de = zweiter Kommandant +| rdfs:domain = MilitaryUnit +| rdfs:range = Person +| rdfs:subPropertyOf = dul:sameSettingAs +}}OntologyProperty:SecondDriver2021404365062014-07-08T14:16:56Z +{{ObjectProperty +| rdfs:label@en = second driver +| rdfs:label@de = zweiter Fahrer +| rdfs:label@el = δεύτερος οδηγός +| rdfs:label@it = secondo pilota +| rdfs:domain = GrandPrix +| rdfs:range = Person +| rdfs:subPropertyOf = dul:hasParticipant +}}OntologyProperty:SecondDriverCountry2021405365072014-07-08T14:17:00Z +{{ObjectProperty +| rdfs:label@en = second driver country +| rdfs:domain = GrandPrix +| rdfs:range = Country +| rdfs:subPropertyOf = dul:hasParticipant +}}OntologyProperty:SecondLeader2023126365082014-07-08T14:17:03Z +{{ObjectProperty +| labels = + {{label|en|secondLeader}} + {{label|nl|vice-voorzitter}} +| rdfs:range = Person +| rdfs:subPropertyOf = dul:sameSettingAs +}}OntologyProperty:SecondPlace2028081342822014-04-04T17:21:38Z{{DatatypeProperty +| labels = +{{label|en|second place}} +{{label|de|zweiter Platz}} +| rdfs:domain = owl:Thing +| rdfs:range = xsd:string +}}OntologyProperty:SecondPopularVote2023128365092014-07-08T14:17:06Z +{{ObjectProperty +| rdfs:label@en = secondPopularVote +| rdfs:range = Person +| rdfs:subPropertyOf = dul:sameSettingAs +}}OntologyProperty:SecondTeam2021406365102014-07-08T14:17:10Z +{{ObjectProperty +| rdfs:label@en = second team +| rdfs:label@de = zweites Team +| rdfs:label@el = δεύτερη ομάδα +| rdfs:domain = GrandPrix +| rdfs:range = SportsTeam +| rdfs:subPropertyOf = dul:hasParticipant +}}OntologyProperty:SecretaryGeneral2023348365112014-07-08T14:17:13Z +{{ObjectProperty +| labels = + {{label|en|secretary}} + {{label|de|Sekretärin}} + {{label|nl|secretaris}} + {{label|pt|secretario}} +| rdfs:domain = Organisation +| rdfs:range = Person +| rdfs:subPropertyOf = dul:sameSettingAs +}}OntologyProperty:Security2026428349542014-05-24T07:26:48Z{{DatatypeProperty +| labels = +{{label|en|security}} +{{label|de|Sicherheit}} +{{label|el|ασφάλεια}} +| comments = +{{comment|en|Safety precautions that are used in the building.}} +{{comment|de|Sicherheitsmaßnahmen, die für das Gebäude getroffen wurden.}} +{{comment|el|Μέτρα ασφαλείας για την προστασία ενός κτιρίου.}} +| rdfs:domain = Building +| rdfs:range = xsd:string +}}OntologyProperty:Seiyu2027772270632013-07-05T08:03:43Z{{ObjectProperty +| labels = +{{label|en|seiyu}} +| rdfs:domain = Person +| rdfs:range = Person +}}OntologyProperty:Selection2021407365122014-07-08T14:17:27Z +{{ObjectProperty +| rdfs:label@en = selection +| rdfs:label@de = Auswahl +| rdfs:domain = Astronaut +| rdfs:comment@en = when (or in which project) the person was selected to train as an astronaut +| rdfs:subPropertyOf = dul:hasSetting +}}OntologyProperty:SelectionPoint2027673269432013-07-04T07:55:11Z{{DatatypeProperty +| labels = +{{label|en|selection point}} +| rdfs:range = xsd:nonNegativeInteger +| rdfs:domain = Athlete +}}OntologyProperty:SelectionYear2027672342212014-04-04T16:39:01Z{{DatatypeProperty +| labels = +{{label|en|selection year}} +{{label|de|Auswahljahr}} +| rdfs:range = xsd:string +| rdfs:domain = Athlete +}}OntologyProperty:SelibrId2028422528862018-02-13T10:59:29Z{{DatatypeProperty +| labels = +{{label|en|SELIBR Id}} +| comments = +{{comment|en|Authority data from the National Library of Sweden}} +| rdfs:range = xsd:string +| owl:equivalentProperty = wikidata:P906 +| rdfs:subPropertyOf = code +}}OntologyProperty:Senator2023361365132014-07-08T14:17:30Z +{{ObjectProperty +| rdfs:label@en = senator +| rdfs:label@de = Senator +| rdfs:label@pt = senador +| rdfs:range = Person +| rdfs:subPropertyOf = MemberOfParliament, dul:sameSettingAs +}}OntologyProperty:Senior2027256342802014-04-04T17:20:32Z{{DatatypeProperty +| labels = +{{label|en|senior}} +| rdfs:domain = PopulatedPlace +| rdfs:range = xsd:string +}}OntologyProperty:Seniority202235983982010-05-28T13:58:58Z{{DatatypeProperty +| rdfs:label@en = seniority +| rdfs:range = xsd:string +}}OntologyProperty:Seniunija2027252259122013-06-13T08:49:48Z{{DatatypeProperty +| labels = +{{label|en|seniunija}} +| rdfs:domain = PopulatedPlace +| rdfs:range = xsd:string +}}OntologyProperty:Sentence2028029342242014-04-04T16:39:26Z{{DatatypeProperty +| labels = +{{label|en|sentence}} +{{label|de|Satz}} +| rdfs:domain = Person +| rdfs:range = xsd:string +}}OntologyProperty:Series2021408520022017-03-22T18:52:31Z +{{ObjectProperty +| labels = + {{label|en|series}} + {{label|fr|série}} + {{label|de|Serie}} + {{label|nl|reeks}} + {{label|el|σειρά}} +| rdfs:subPropertyOf = dul:isParticipantIn +}}OntologyProperty:Service2021409525082017-10-17T23:06:34Z +{{ObjectProperty +| rdfs:label@en = service +| rdfs:label@de = Dienst +| rdfs:domain = Organisation +| rdfs:subPropertyOf = dul:sameSettingAs +}}OntologyProperty:ServiceEndDate202141082632010-05-28T13:40:47Z{{DatatypeProperty +| rdfs:label@en = service end date +| rdfs:domain = MilitaryPerson +| rdfs:range = xsd:date +}}OntologyProperty:ServiceEndYear202141182642010-05-28T13:40:54Z{{DatatypeProperty +| rdfs:label@en = service end year +| rdfs:domain = MilitaryPerson +| rdfs:range = xsd:gYear +}}OntologyProperty:ServiceModule202141282652010-05-28T13:41:02Z{{DatatypeProperty +| rdfs:label@en = service module +| rdfs:domain = SpaceMission +| rdfs:range = xsd:string +}}OntologyProperty:ServiceNumber202170283542010-05-28T13:52:54Z{{DatatypeProperty +| rdfs:label@en = service number +| rdfs:domain = MilitaryPerson +| rdfs:comment@en = The service number held by the individual during military service. +| rdfs:range = xsd:string +}}OntologyProperty:ServiceStartDate202141382662010-05-28T13:41:08Z{{DatatypeProperty +| rdfs:label@en = service start date +| rdfs:domain = MilitaryPerson +| rdfs:range = xsd:date +}}OntologyProperty:ServiceStartYear202141482672010-05-28T13:41:18Z{{DatatypeProperty +| rdfs:label@en = service start year +| rdfs:domain = MilitaryPerson +| rdfs:range = xsd:gYear +}}OntologyProperty:ServingRailwayLine2023227365162014-07-08T14:17:38Z +{{ObjectProperty +| labels = + {{label|en|serving railway line}} + {{label|nl|spoorlijnen}} + {{label|de|angebundene Eisenbahnlinie}} +| rdfs:domain = Station +| rdfs:range = owl:Thing +| rdfs:comment@en = Railway services that serve the station. +| rdfs:subPropertyOf = dul:sameSettingAs +}}OntologyProperty:ServingSize20211297487712015-08-13T10:23:03Z{{DatatypeProperty +| labels = +{{label|en|serving size}} +| rdfs:domain = Food +| rdfs:range = Mass +| comments = +{{comment|en|Default serving size (eg "100 g" for the standard 100 g serving size). approximateCalories apply to this serving size}} +}}OntologyProperty:ServingTemperature2023931136692011-06-16T14:53:01Z{{DatatypeProperty +| rdfs:label@en = serving temperature +| rdfs:domain = Food +| rdfs:range = xsd:string +| rdfs:comment@en = Serving temperature for the food (e.g.: hot, cold, warm or room temperature). +}}OntologyProperty:SessionNumber2023303121792011-04-15T10:24:15Z{{DatatypeProperty +| rdfs:label@en = session number +| rdfs:label@pt = número da sessão +| rdfs:range = Event +| rdfs:range = xsd:integer +}}OntologyProperty:SetDesigner2025148365172014-07-08T14:17:41Z +{{ObjectProperty +| rdfs:domain = Film +| rdfs:range = Person +| rdfs:label@en = set designer +| rdfs:label@de = Bühnenbildner +| rdfs:label@it = scenografo +| rdfs:comment@en = the person who is responsible for the film set design +| rdfs:subPropertyOf = dul:coparticipatesWith +}}OntologyProperty:SettingOfPlay2023832133642011-06-06T12:55:04Z{{DatatypeProperty +| rdfs:label@en = setting of play +| rdfs:domain = Play +| rdfs:range = xsd:string +| rdfs:comment@en = The places and time where the play takes place. +}}OntologyProperty:Settlement2026981365182014-07-08T14:17:44Z +{{ObjectProperty +| labels = + {{label|en|settlement}} + {{label|de|Siedlung}} + {{label|it|luogo abitato (insediamento)}} +| rdfs:range = PopulatedPlace +| rdfs:domain = Place +| owl:equivalentProperty = wikidata:P131 +| rdfs:subPropertyOf = dul:hasLocation +}}OntologyProperty:SettlementAttached2026846492182015-10-15T07:16:19Z{{ObjectProperty +| labels = +{{label|en|settlement attached}} +| rdfs:domain = Settlement +| rdfs:range = Place +}}OntologyProperty:SetupTime202230083852010-05-28T13:57:09Z{{DatatypeProperty +| rdfs:label@en = setup time +| rdfs:range = Time +}}OntologyProperty:SevereCases20212299536112020-04-10T06:23:53Z{{DatatypeProperty +| labels = +{{label|en|Severe Cases}} +| rdfs:comment@en = Number of severe cases in a pandemic +| rdfs:domain = Outbreak +| rdfs:range = xsd:integer +}}OntologyProperty:Sex2025275455432015-03-08T10:48:10Z{{ DatatypeProperty + + | rdfs:label@en = sex + | rdfs:label@el = φύλο + | rdfs:label@de = Geschlecht + | rdfs:label@fr = sexe + | rdfs:domain = Person + | rdfs:range = xsd:string + | owl:equivalentProperty = wikidata:P21 + +}}OntologyProperty:SexualOrientation2023296365192014-07-08T14:17:47Z +{{ObjectProperty +| rdfs:label@en = sexual orientation +| rdfs:label@de = sexuelle Orientierung +| rdfs:label@pt = orientação sexual +| rdfs:domain = Person +| rdfs:subPropertyOf = dul:hasQuality +}}OntologyProperty:Shape2027076365202014-07-08T14:17:51Z +{{ObjectProperty +| labels = + {{label|en|intercommunality shape}} +| rdfs:domain = Intercommunality +| rdfs:range = Community +| rdfs:subPropertyOf = dul:hasQuality +}}OntologyProperty:ShareDate2021416116022011-04-01T13:37:31Z{{DatatypeProperty +| rdfs:label@en = share date +| rdfs:domain = Broadcaster +| rdfs:range = xsd:gYearMonth +}}OntologyProperty:ShareOfAudience2021415113262011-03-30T14:36:46Z{{DatatypeProperty +| rdfs:label@en = share of audience +| rdfs:label@de = Anteil der Zuschauer/Zuhörer +| rdfs:domain = Broadcaster +| rdfs:range = xsd:float +}}OntologyProperty:ShareSource2021417116012011-04-01T13:31:07Z{{DatatypeProperty +| rdfs:label@en = share source +| rdfs:domain = Broadcaster +| rdfs:range = xsd:string +}}OntologyProperty:SharingOutPopulation2027233258892013-06-12T13:32:29Z{{DatatypeProperty +| labels = +{{label|en|sharing out population}} +| rdfs:domain = PopulatedPlace +| rdfs:range = xsd:nonNegativeInteger +}}OntologyProperty:SharingOutPopulationYear2027234258902013-06-12T13:33:14Z{{DatatypeProperty +| labels = +{{label|en|sharing out year}} +| rdfs:domain = PopulatedPlace +| rdfs:range = xsd:string +}}OntologyProperty:Sheading2022140365212014-07-08T14:17:55Z +{{ObjectProperty +| rdfs:label@en = sheading +| rdfs:domain = PopulatedPlace +| rdfs:range = PopulatedPlace +| rdfs:subPropertyOf = dul:isPartOf +}}OntologyProperty:ShipBeam2022265166012012-01-15T22:32:27Z{{DatatypeProperty +| rdfs:label@en = ship beam +| rdfs:comment@en = The beam of a ship is its width at the widest point. +| rdfs:domain = Ship +| rdfs:range = Length +}}OntologyProperty:ShipCrew2024547365222014-07-08T14:17:59Z +{{ObjectProperty +| rdfs:label@en = crew +| rdfs:label@de = Crew +| rdfs:range = Person +| rdfs:domain = Ship +| rdfs:subPropertyOf = dul:coparticipatesWith +}}OntologyProperty:ShipDisplacement2022275342752014-04-04T17:15:56Z{{DatatypeProperty +| rdfs:label@en = displacement +| rdfs:label@de = Deplacement +| rdfs:domain = Ship +| rdfs:range = Mass +| rdfs:comment@en = A ship's displacement is its mass at any given time. +}}OntologyProperty:ShipDraft2022273342332014-04-04T16:40:17Z{{DatatypeProperty +| rdfs:label@en = ship draft +| rdfs:label@de = Schiffsentwurf +| rdfs:domain = Ship +| rdfs:range = Length +| rdfs:comment@en = 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. +}}OntologyProperty:ShipLaunch2023109116542011-04-02T11:04:40Z{{DatatypeProperty +| rdfs:label@en=ship launched +| rdfs:domain = Ship +| rdfs:range = xsd:date +}}OntologyProperty:ShoeNumber2023291572772022-03-28T22:08:09Z{{DatatypeProperty +| labels = + {{label|en|shoe number}} + {{label|fr|pointure}} + {{label|nl|schoenmaat}} + {{label|pt|número do sapato}} +| rdfs:domain = Person +| rdfs:range = xsd:positiveInteger +}}OntologyProperty:ShoeSize2027751567712022-02-28T18:22:50Z{{DatatypeProperty +| labels = +{{label|en|shoe size}} +{{label|fr|pointure}} +{{label|de|Schuhgröße}} +{{label|nl|schoenmaat}} +{{label|pt|número do sapato}} +| rdfs:domain = Person +| rdfs:range = xsd:string +}}OntologyProperty:Shoot2027780342772014-04-04T17:18:01Z{{DatatypeProperty +| labels = +{{label|en|shoot}} +| rdfs:domain = Person +| rdfs:range = xsd:string +}}OntologyProperty:Shoots202141882712010-05-28T13:41:48Z{{DatatypeProperty +| rdfs:label@en = shoots +| rdfs:domain = IceHockeyPlayer +| rdfs:range = xsd:string +}}OntologyProperty:ShoreLength2021419503252016-02-05T08:21:40Z{{DatatypeProperty +| rdfs:label@en = shore length +| rdfs:label@de = Uferlänge +| rdfs:label@el = μήκος_όχθης +| rdfs:domain = BodyOfWater +| rdfs:range = Length +}}OntologyProperty:ShortProgCompetition2028068282312013-09-04T09:12:13Z{{DatatypeProperty +| labels = +{{label|en|short prog competition}} +| rdfs:domain = Person +| rdfs:range = xsd:string +}}OntologyProperty:ShortProgScore2028067282302013-09-04T09:11:35Z{{DatatypeProperty +| labels = +{{label|en|short prog score}} +| rdfs:domain = Person +| rdfs:range = xsd:string +}}OntologyProperty:Show2021422365232014-07-08T14:18:02Z +{{ObjectProperty +| rdfs:label@en = show +| rdfs:label@de = Sendung +| rdfs:label@fr = spectacle +| rdfs:range = TelevisionShow +| rdfs:subPropertyOf = dul:isParticipantIn +}}OntologyProperty:ShowJudge2022103365242014-07-08T14:18:05Z +{{ObjectProperty +| rdfs:label@en = showJudge +| rdfs:domain = TelevisionShow +| rdfs:range = Person +| rdfs:subPropertyOf = dul:hasParticipant +}}OntologyProperty:Shuttle2021423365252014-07-08T14:18:08Z +{{ObjectProperty +| rdfs:label@en = shuttle +| rdfs:domain = SpaceMission +| rdfs:range = SpaceShuttle +| rdfs:subPropertyOf = dul:hasParticipant +}}OntologyProperty:Sibling2026692587942022-05-31T15:18:40Z +{{ObjectProperty +| labels = + {{label|en|sibling}} + {{label|nl|broer of zus}} + {{label|fr|frère ou soeur}} + {{label|de|Geschwister}} + {{label|ja|兄弟}} +| rdfs:domain = Person +| rdfs:range = Person +| rdfs:subPropertyOf = dul:sameSettingAs +| owl:equivalentProperty = wikidata:P3373 +}}OntologyProperty:SignName2026905348462014-05-15T05:19:26Z{{DatatypeProperty +| labels = +{{label|en|sign name of a hungarian settlement}} +| rdfs:domain = HungarySettlement +| rdfs:range = rdf:langString +}}OntologyProperty:Signature2027560342392014-04-04T16:40:42Z{{DatatypeProperty +| labels = +{{label|en|signature}} +{{label|de|Unterschrift}} +| rdfs:domain = Person +| rdfs:range = xsd:string +| owl:equivalentProperty = wikidata:P109 +}}OntologyProperty:SignificantBuilding2021424365272014-07-08T14:18:14Z +{{ObjectProperty +| rdfs:label@en = significant building +| rdfs:label@de = bedeutendes Gebäude +| rdfs:domain = Architect +| rdfs:range = Building +| rdfs:subPropertyOf = dul:coparticipatesWith +}}OntologyProperty:SignificantDesign2021425365282014-07-08T14:18:17Z +{{ObjectProperty +| rdfs:label@en = significant design +| rdfs:label@de = bedeutendes Design +| rdfs:domain = Architect +| rdfs:subPropertyOf = dul:coparticipatesWith +}}OntologyProperty:SignificantProject2021426365292014-07-08T14:18:20Z +{{ObjectProperty +| rdfs:label@en = significant project +| rdfs:label@de = bedeutendes Projekt +| rdfs:label@pl = istotne osiągnięcie +| rdfs:comment@en = A siginificant artifact constructed by the person. +| rdfs:domain = Person +| rdfs:subPropertyOf = dul:coparticipatesWith +}}OntologyProperty:SilCode2023702365302014-07-08T14:18:23Z +{{ObjectProperty +| labels = + {{label|en|SIL code}} + {{label|nl|SIL-code}} + {{label|pl|kod SIL}} +| rdfs:domain = Language +| rdfs:subPropertyOf = LanguageCode, dul:isClassifiedBy +}}OntologyProperty:SilverMedalDouble2027734500752016-01-04T12:37:08Z{{DatatypeProperty +| labels = +{{label|en|silver medal double}} +{{label|de|Silbermedaille Doppel}} +| rdfs:domain = TennisPlayer +| rdfs:range = xsd:string +}}OntologyProperty:SilverMedalMixed2027737500762016-01-04T12:37:51Z{{DatatypeProperty +| labels = +{{label|en|silver medal mixed}} +{{label|de|Silbermedaille gemischt}} +| rdfs:domain = TennisPlayer +| rdfs:range = xsd:string +}}OntologyProperty:SilverMedalSingle2027731500772016-01-04T12:38:32Z{{DatatypeProperty +| labels = +{{label|en|silver medal single}} +{{label|de|Silbermedaille Einzel}} +| rdfs:domain = TennisPlayer +| rdfs:range = xsd:string +}}OntologyProperty:SilverMedalist2025667365312014-07-08T14:18:25Z +{{ObjectProperty +| rdfs:label@en = siler medalist +| rdfs:label@de = Silbermedaillengewinner +| rdfs:label@pt = medalha de prata +| rdfs:label@nl = zilveren medaille drager +| rdfs:domain = SportsEvent +| rdfs:range = Person +| rdfs:subPropertyOf = Medalist, dul:hasParticipant +}}OntologyProperty:SimcCode2023403529282018-02-28T08:38:07Z +{{ObjectProperty +| rdfs:label@en = SIMC code +| rdfs:domain = PopulatedPlace +| rdfs:comment@en = indexing code used by the Polish National Official Register of the Territorial Division of the Country (TERYT) to identify various entities +| rdfs:subPropertyOf = code +| owl:equivalentProperty = dul:isClassifiedBy +| rdfs:comment@en = Should be a datatype property +}}OntologyProperty:Similar2021427365332014-07-08T14:18:34Z +{{ObjectProperty +| rdfs:label@en = similar +| rdfs:label@de = ähnlich +| rdfs:label@el = παρόμοιος +| rdfs:label@pl = podobny +| rdfs:subPropertyOf = dul:sameSettingAs +}}OntologyProperty:SingleList20213818571312022-03-14T17:38:10Z{{ObjectProperty +| labels = + {{label|en|list of singles}} + {{label|fr|liste de singles}} +| comments = + {{comment|en|set of singles}} + {{comment|fr|suite de disques 45tours}} +| rdfs:domain = Album +| rdfs:range = SingleList +}}OntologyProperty:SingleOf20213817571942022-03-18T13:56:18Z{{ObjectProperty +| labels= + {{label|en|singleOf}} + {{label|fr|single extrait}} +| rdfs:domain = SingleList +| rdfs:range = Work +| comments = + {{comment|en|single produced from an album}} + {{comment|fr|single extrait d'un album}} +}}OntologyProperty:Sire2026171365342014-07-08T14:18:37Z +{{ObjectProperty +| labels = + {{label|en|sire}} +| rdfs:domain = Animal +| rdfs:range = Animal +| rdfs:subPropertyOf = dul:sameSettingAs +}}OntologyProperty:Siren2027073255932013-05-26T12:15:44Z{{DatatypeProperty +| labels = +{{label|en|siren number}} +| rdfs:range = xsd:nonNegativeInteger +}}OntologyProperty:Sister20212289535832020-01-30T10:19:55Z{{ObjectProperty +| labels = + {{label|en|sister}} + {{label|nl|zus}} + {{label|de|Schwester}} + {{label|el|αδελφή}} + {{label|ja|シスター}} + {{label|ar|أخت}} +| rdfs:domain = Woman +| rdfs:range = Person +| owl:propertyDisjointWith = parent +}}OntologyProperty:SisterCollege2021428365352014-07-08T14:18:40Z +{{ObjectProperty +| rdfs:label@en = sister college +| rdfs:domain = College +| rdfs:range = College +| rdfs:subPropertyOf = dul:sameSettingAs +}}OntologyProperty:SisterNewspaper2021429365362014-07-08T14:18:43Z +{{ObjectProperty +| rdfs:label@en = sister newspaper +| rdfs:domain = Newspaper +| rdfs:range = Newspaper +| rdfs:subPropertyOf = dul:sameSettingAs +}}OntologyProperty:SisterStation2021430365372014-07-08T14:18:47Z +{{ObjectProperty +| rdfs:label@en = sister station +| rdfs:domain = Broadcaster +| rdfs:range = Broadcaster +| rdfs:subPropertyOf = dul:sameSettingAs +}}OntologyProperty:SixthFormStudents2021431342482014-04-04T16:41:18Z{{DatatypeProperty +| rdfs:label@en = sixth form students +| rdfs:label@de = Schüler der Oberstufe +| rdfs:domain = School +| rdfs:range = xsd:string +}}OntologyProperty:SizeBlazon2027563267772013-07-01T14:46:40Z{{DatatypeProperty +| labels = +{{label|en|size blazon}} +| rdfs:range = xsd:string +}}OntologyProperty:SizeLogo2027070255882013-05-26T12:01:16Z{{DatatypeProperty +| labels = +{{label|en|size logo}} +| rdfs:range = xsd:nonNegativeInteger +}}OntologyProperty:SizeMap2026993342492014-04-04T16:41:23Z{{DatatypeProperty +| labels = +{{label|en|size map}} +{{label|de|Größe der Karte}} +| rdfs:range = xsd:string +}}OntologyProperty:SizeThumbnail2026901268972013-07-03T10:17:41Z{{DatatypeProperty +| labels = +{{label|en|size thumbnail}} +| rdfs:range = xsd:string +}}OntologyProperty:Size v2026139462152015-03-18T11:03:58Z{{DatatypeProperty +| rdfs:label@en = size_v +| rdfs:label@el = μέγεθος +| rdfs:domain = Openswarm +| rdfs:range = xsd:integer +}}OntologyProperty:SkiLift2027189342502014-04-04T16:41:27Z{{DatatypeProperty +| labels = +{{label|en|ski lift}} +{{label|de|Skilift}} +| rdfs:domain = Place +| rdfs:range = xsd:nonNegativeInteger +}}OntologyProperty:SkiPisteKilometre2027197342512014-04-04T16:41:30Z{{DatatypeProperty +| labels = +{{label|en|ski piste kilometre}} +{{label|de|Skipiste km}} +| rdfs:domain = Place +| rdfs:range = Length +}}OntologyProperty:SkiPisteNumber2027192342522014-04-04T16:41:34Z{{DatatypeProperty +| labels = +{{label|en|ski piste number}} +{{label|de|Skipistennummer}} +| rdfs:domain = Place +| rdfs:range = xsd:nonNegativeInteger +}}OntologyProperty:SkiTow2027190257402013-06-01T13:19:41Z{{DatatypeProperty +| labels = +{{label|en|ski tow}} +| rdfs:domain = Place +| rdfs:range = xsd:nonNegativeInteger +}}OntologyProperty:Skills2026557365382014-07-08T14:18:51Z +{{ObjectProperty +| labels = + {{label|en|skills}} + {{label|de|Fähigkeiten}} + {{label|fr|compétences}} + {{label|nl|bekwaamheden}} +| rdfs:subPropertyOf = dul:isDescribedBy +}}OntologyProperty:SkinColor20210478567722022-02-28T18:24:32Z{{DatatypeProperty +| labels = + {{label|en|skin color}} + {{label|fr|couleur de peau}} +| rdfs:domain = Person +| rdfs:range = xsd:string +<!-- | rdfs:subPropertyOf = dul:hasQuality commented, dul:hasQuality defined as object property, see https://github.com/dbpedia/ontology-tracker/issues/9 --> +}}OntologyProperty:Skos:broader2021625247582013-04-05T08:00:06Z{{ObjectProperty +|rdfs:label@en = broader +|rdfs:label@de = weiter +|rdfs:label@it = più ampio +}}OntologyProperty:Skos:notation20211069491212015-10-10T20:51:09Z{{DatatypeProperty +|rdfs:label@en = notation +|rdfs:label@fr = notation +|rdfs:domain = Work +|rdfs:range = xsd:string +}}OntologyProperty:Skos:prefLabel2021627348122014-05-14T11:25:32Z{{DatatypeProperty +|rdfs:label@en = prefLabel +|rdfs:label@de = bevorzugtes Label +|rdfs:label@it = Label preferito +|rdfs:range = rdf:langString +}}OntologyProperty:Skos:related2022906342542014-04-04T16:41:42Z{{ObjectProperty +| labels = +{{label|en|related}} +{{label|de|verbunden}} +{{label|nl|gerelateerd}} +}}OntologyProperty:Skos:subject2021628503322016-02-12T14:07:12ZWrong property!!!, use dct:subject +<!-- +{{ObjectProperty +|rdfs:label@en = subject +|rdfs:label@de = subjekt +|rdfs:label@it = soggetto +|rdfs:comment@en = DEPRECATED +}}-->OntologyProperty:Slogan2021434433332015-02-06T15:06:44Z{{DatatypeProperty +| labels = +{{label|en|slogan}} +{{label|nl|slogan}} +{{label|de|Slogan}} +{{label|bg|Девиз}} + +| rdfs:range = rdf:langString +}}OntologyProperty:Smiles2028170287502013-11-20T11:16:18Z{{DatatypeProperty +| rdfs:label@en = SMILES +| rdfs:domain = ChemicalCompound +| rdfs:range = xsd:string +| rdfs:comment@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. +}}OntologyProperty:SnowParkNumber2027198257482013-06-01T13:23:16Z{{DatatypeProperty +| labels = +{{label|en|snow park number}} +| rdfs:domain = Place +| rdfs:range = xsd:nonNegativeInteger +}}OntologyProperty:SoccerLeaguePromoted2024573365402014-07-08T14:18:57Z +{{ObjectProperty +| rdfs:label@en = promoted +| rdfs:label@tr = yükselenler +| rdfs:domain = SoccerLeagueSeason +| rdfs:range = SportsTeam +| rdfs:subPropertyOf = dul:isSettingFor +}}OntologyProperty:SoccerLeagueRelegated2024574365412014-07-08T14:19:00Z +{{ObjectProperty +| rdfs:label@en = relegated teams +| rdfs:label@de = Absteiger +| rdfs:label@tr = düşenler +| rdfs:domain = SoccerLeagueSeason +| rdfs:range = SportsTeam +| rdfs:subPropertyOf = dul:isSettingFor +}}OntologyProperty:SoccerLeagueSeason2024575365422014-07-08T14:19:04Z +{{ObjectProperty +| rdfs:label@en = season +| rdfs:label@de = Saison +| rdfs:label@tr = sezon +| rdfs:domain = SoccerLeagueSeason +| rdfs:range = SoccerLeagueSeason +| rdfs:subPropertyOf = dul:sameSettingAs +}}OntologyProperty:SoccerLeagueWinner2024572365432014-07-08T14:19:07Z +{{ObjectProperty +| rdfs:label@en = league champion +| rdfs:label@de = Liga-Meister +| rdfs:label@tr = şampiyon +| rdfs:domain = SoccerLeagueSeason +| rdfs:range = SportsTeam +| rdfs:subPropertyOf = dul:isSettingFor +}}OntologyProperty:SoccerTournamentClosingSeason2024579365442014-07-08T14:19:11Z +{{ObjectProperty +| rdfs:label@en = closing season +| rdfs:label@tr = kapanış sezonu +| rdfs:domain = SoccerTournament +| rdfs:range = SoccerTournament +| rdfs:subPropertyOf = dul:sameSettingAs +}}OntologyProperty:SoccerTournamentLastChampion2024581365452014-07-08T14:19:15Z +{{ObjectProperty +| rdfs:label@en = last champion +| rdfs:label@de = letzter Sieger +| rdfs:label@tr = son şampiyon +| rdfs:domain = SoccerTournament +| rdfs:range = SoccerClub +| rdfs:subPropertyOf = dul:isSettingFor +}}OntologyProperty:SoccerTournamentMostSteady2024583365462014-07-08T14:19:19Z +{{ObjectProperty +| rdfs:label@en = most steady +| rdfs:label@tr = en istikrarlı +| rdfs:domain = SoccerTournament +| rdfs:range = SoccerClub +| rdfs:subPropertyOf = dul:isSettingFor +}}OntologyProperty:SoccerTournamentMostSuccesfull2024582365472014-07-08T14:19:22Z +{{ObjectProperty +| rdfs:label@en = most successfull +| rdfs:label@de = am erfolgreichsten +| rdfs:label@tr = en başarılı +| rdfs:domain = SoccerTournament +| rdfs:range = SoccerClub +| rdfs:subPropertyOf = dul:isSettingFor +}}OntologyProperty:SoccerTournamentOpeningSeason2024578365482014-07-08T14:19:36Z +{{ObjectProperty +| rdfs:label@en = opening season +| rdfs:label@tr = açılış sezonu +| rdfs:domain = SoccerTournament +| rdfs:range = SoccerTournament +| rdfs:subPropertyOf = dul:sameSettingAs +}}OntologyProperty:SoccerTournamentThisSeason2024580365492014-07-08T14:19:39Z +{{ObjectProperty +| rdfs:label@en = this season +| rdfs:label@tr = bu sezon +| rdfs:domain = SoccerTournament +| rdfs:range = SoccerTournament +| rdfs:subPropertyOf = dul:sameSettingAs +}}OntologyProperty:SoccerTournamentTopScorer2024584365502014-07-08T14:19:41Z +{{ObjectProperty +| rdfs:label@en = top scorer +| rdfs:label@de = Torschützenkönig +| rdfs:label@tr = en golcü +| rdfs:domain = SoccerTournament +| rdfs:range = SoccerPlayer +| rdfs:subPropertyOf = dul:hasParticipant +}}OntologyProperty:SolicitorGeneral2026602365512014-07-08T14:19:44Z +{{ObjectProperty +| labels = + {{label|en|solicitor general}} + {{label|de|Generalstaatsanwalt}} + {{label|nl|advocaat-generaal}} +| comments = + {{comment|en|high-ranking solicitor }} + {{comment|nl|de advocaat-generaal}} +| rdfs:domain = LegalCase +| rdfs:range = Person +| rdf:type = | rdfs:subPropertyOf = personFunction +| owl:equivalentProperty = +| rdfs:subPropertyOf = dul:isSettingFor +}}OntologyProperty:Solubility2028927342642014-04-04T16:42:33Z{{DatatypeProperty +| rdfs:label@en = solubility +| rdfs:label@de = Löslichkeit +| rdfs:label@nl = oplosbaarheid +| rdfs:domain = ChemicalSubstance +| rdfs:range = xsd:integer +}}OntologyProperty:Solvent20212045528012018-02-07T19:13:49Z{{ObjectProperty +| rdfs:label@en = solvent +| rdfs:label@de = Lösungsmittel +| rdfs:domain = ChemicalSubstance +| rdfs:range = ChemicalSubstance +}}OntologyProperty:SolventWithBadSolubility2028930342652014-04-04T16:42:37Z{{ObjectProperty +| rdfs:label@en = solvent with bad solubility +| rdfs:label@de = Lösungsmittel mit schlechter Löslichkeit +| rdfs:label@nl = slecht oplosbaar in +| rdfs:domain = ChemicalSubstance +| rdfs:range = ChemicalSubstance +}}OntologyProperty:SolventWithGoodSolubility2028928342662014-04-04T16:42:41Z{{ObjectProperty +| rdfs:label@en = solvent with good solubility +| rdfs:label@de = Lösungsmittel mit guter Löslichkeit +| rdfs:label@nl = goed oplosbaar in +| rdfs:domain = ChemicalSubstance +| rdfs:range = ChemicalSubstance +}}OntologyProperty:SolventWithMediocreSolubility2028931342672014-04-04T16:42:45Z{{ObjectProperty +| rdfs:label@en = solvent with mediocre solubility +| rdfs:label@de = Lösungsmittel mit mittelmäßiger Löslichkeit +| rdfs:label@nl = matig oplosbaar in +| rdfs:domain = ChemicalSubstance +| rdfs:range = ChemicalSubstance +}}OntologyProperty:Son20212290535862020-01-30T18:19:07Z{{ObjectProperty +| labels = + {{label|en|son}} + {{label|nl|zoon}} + {{label|de|Sohn}} + {{label|el|υιός}} + {{label|ja|息子}} + {{label|ar|ابن}} +| rdfs:domain = Man +| rdfs:range = Person +| owl:propertyDisjointWith = parent +}}OntologyProperty:SoundRecording20211030453562015-02-16T09:14:28Z{{ObjectProperty +| labels = + {{label|en|sound recording}} +| rdfs:range = Sound +| rdfs:comment@en = Sound recording somehow related to the subject +}}OntologyProperty:Source2021704537082020-09-04T15:38:08Z +{{ObjectProperty +| rdfs:label@en = source +| rdfs:label@de = Quelle +| rdfs:label@el = πηγή +| rdfs:subPropertyOf = dul:hasCommonBoundary +| owl:equivalentProperty = ceo:bronidentificatie +}}OntologyProperty:SourceConfluence2021437365532014-07-08T14:19:51Z +{{ObjectProperty +| rdfs:label@en = source confluence +| rdfs:label@es = lugar de nacimiento +| rdfs:label@el = πηγές +| rdfs:domain = River +| rdfs:subPropertyOf = dul:hasCommonBoundary +}}OntologyProperty:SourceConfluenceCountry2021438365542014-07-08T14:19:54Z +{{ObjectProperty +| rdfs:label@en = source confluence country +| rdfs:domain = River +| rdfs:range = Country +| rdfs:subPropertyOf = dul:hasLocation +}}OntologyProperty:SourceConfluenceElevation202143982762010-05-28T13:42:27Z{{DatatypeProperty +| rdfs:label@en = source confluence elevation +| rdfs:range = Length +}}OntologyProperty:SourceConfluenceMountain2021440365552014-07-08T14:19:57Z +{{ObjectProperty +| rdfs:label@en = source confluence mountain +| rdfs:domain = River +| rdfs:range = Mountain +| rdfs:subPropertyOf = dul:nearTo +}}OntologyProperty:SourceConfluencePlace2021441365562014-07-08T14:20:00Z +{{ObjectProperty +| rdfs:label@en = source confluence place +| rdfs:domain = River +| rdfs:range = Place +| rdfs:subPropertyOf = dul:hasLocation +}}OntologyProperty:SourceConfluencePosition2021442365572014-07-08T14:20:03Z +{{ObjectProperty +| rdfs:label@en = source confluence position +| rdfs:domain = River +| rdfs:range = geo:SpatialThing +| rdfs:subPropertyOf = dul:hasLocation +}}OntologyProperty:SourceConfluenceRegion2021443365582014-07-08T14:20:06Z +{{ObjectProperty +| rdfs:label@en = source confluence region +| rdfs:domain = River +| rdfs:range = Place +| rdfs:subPropertyOf = dul:hasLocation +}}OntologyProperty:SourceConfluenceState2021444365592014-07-08T14:20:09Z +{{ObjectProperty +| rdfs:label@en = source confluence state +| rdfs:domain = River +| rdfs:range = PopulatedPlace +| rdfs:subPropertyOf = dul:hasLocation +}}OntologyProperty:SourceCountry2021445529302018-02-28T09:04:07Z +{{ObjectProperty +| rdfs:label@en = source country +| rdfs:domain = Stream +| rdfs:range = Country +| owl:equivalentProperty = dul:hasLocation +}}OntologyProperty:SourceDistrict2021446365612014-07-08T14:20:15Z +{{ObjectProperty +| rdfs:label@en = source district +| rdfs:range = PopulatedPlace +| rdfs:subPropertyOf = dul:hasLocation +}}OntologyProperty:SourceElevation202144782772010-05-28T13:42:36Z{{DatatypeProperty +| rdfs:label@en = source elevation +| rdfs:range = Length +}}OntologyProperty:SourceMountain2021448365622014-07-08T14:20:18Z +{{ObjectProperty +| rdfs:label@en = source mountain +| rdfs:range = Mountain +| rdfs:subPropertyOf = dul:hasLocation +}}OntologyProperty:SourceName20213120548942021-07-26T04:03:09Z{{ObjectProperty +| labels = + {{label|en|Source Name}} +| comments = + {{comment|en|VaccinationStatistics: Source Authority name.}} +| rdfs:domain = owl:Thing +| rdfs:range = VaccinationStatistics +}}OntologyProperty:SourcePlace2021449365632014-07-08T14:20:21Z +{{ObjectProperty +| rdfs:label@en = source place +| rdfs:range = PopulatedPlace +| rdfs:subPropertyOf = dul:hasLocation +}}OntologyProperty:SourcePosition2021450365642014-07-08T14:20:25Z +{{ObjectProperty +| rdfs:label@en = source position +| rdfs:range = geo:SpatialThing +| rdfs:subPropertyOf = dul:hasLocation +}}OntologyProperty:SourceRegion2021451365652014-07-08T14:20:28Z +{{ObjectProperty +| rdfs:label@en = source region +| rdfs:range = PopulatedPlace +| rdfs:subPropertyOf = dul:hasLocation +}}OntologyProperty:SourceState2021452365662014-07-08T14:20:32Z +{{ObjectProperty +| rdfs:label@en = source state +| rdfs:range = PopulatedPlace +| rdfs:subPropertyOf = dul:hasLocation +}}OntologyProperty:SourceText20210419394232015-01-19T17:02:05Z{{DatatypeProperty +| labels= +{{label|en|sourceText}} +| comments= +{{comment|en|Source of something (eg an image) as text. Use dct:source if the source is described using a resource}} +| rdfs:domain = owl:Thing +| rdfs:range = rdf:langString +}}OntologyProperty:SourceWebsite20213121548952021-07-26T04:05:37Z{{ObjectProperty +| labels = + {{label|en|Source Website}} +| comments = + {{comment|en|VaccinationStatistics: source website.}} +| rdfs:domain = owl:Thing +| rdfs:range = VaccinationStatistics +}}OntologyProperty:SouthEastPlace20211088455962015-03-08T14:10:40Z{{ObjectProperty +| rdfs:label@en = south-east place +| rdfs:label@fr = lieu au sud-est +| rdfs:comment@fr = indique un autre lieu situé au sud-est. +| rdfs:comment@en = indicates another place situated south-east. +| rdfs:domain = Place +| rdfs:range = Place +| owl:inverseOf = northWestPlace +| rdfs:subPropertyOf = closeTo + +}}OntologyProperty:SouthPlace20211083455942015-03-08T14:08:55Z{{ObjectProperty +| rdfs:label@en = south place +| rdfs:label@fr = lieu au sud +| rdfs:comment@fr = indique un autre lieu situé au sud. +| rdfs:comment@en = indicates another place situated south. +| rdfs:domain = Place +| rdfs:range = Place +| owl:inverseOf = northPlace +| rdfs:subPropertyOf = closeTo +}}OntologyProperty:SouthWestPlace20211090455952015-03-08T14:09:48Z{{ObjectProperty +| rdfs:label@en = south-west place +| rdfs:label@fr = lieu au sud-ouest +| rdfs:comment@fr = indique un autre lieu situé au sud-ouest. +| rdfs:comment@en = indicates another place situated south-west. +| rdfs:domain = Place +| rdfs:range = Place +| owl:inverseOf = northEastPlace +| rdfs:subPropertyOf = closeTo + +}}OntologyProperty:SovereignCountry2027054365672014-07-08T14:20:35Z +{{ObjectProperty +| labels = + {{label|en|sovereign country}} + {{label|de|souveräner Staat}} +| rdfs:domain = Place +| rdfs:range = PopulatedPlace +| rdfs:subPropertyOf = dul:isPartOf +}}OntologyProperty:Space2026427234692013-01-22T13:09:07Z{{DatatypeProperty +| labels = +{{label|en|space}} +{{label|de|Raum}} +| rdfs:domain = Building +| rdfs:range = xsd:nonNegativeInteger +}}OntologyProperty:Spacecraft2021453365682014-07-08T14:20:38Z +{{ObjectProperty +| rdfs:label@en = spacecraft +| rdfs:label@de = Raumfahrzeug +| rdfs:label@el = διαστημόπλοιο +| rdfs:label@fr = véhicule spatial +| rdfs:domain = SpaceMission +| rdfs:range = Spacecraft +| rdfs:subPropertyOf = dul:hasParticipant +}}OntologyProperty:Spacestation20210461397242015-01-27T16:48:28Z{{ObjectProperty +| labels = + {{label|en|spacestation}} + {{label|de|raumstation}} +| comments = + {{comment|en|space station that has been visited during a space mission}} + {{comment|de|Raumstation, die während einer Raummission besucht wurde}} +| rdfs:domain = SpaceMission +| rdfs:range = SpaceStation +}}OntologyProperty:SpacewalkBegin2021454343082014-04-08T13:36:12Z{{DatatypeProperty +| rdfs:label@en = spacewalk begin +| rdfs:label@de = Beginn Weltraumspaziergang +| rdfs:domain = SpaceMission +| rdfs:range = xsd:date +}}OntologyProperty:SpacewalkEnd2021455343092014-04-08T13:36:15Z{{DatatypeProperty +| rdfs:label@en = spacewalk end +| rdfs:label@de = Ende Weltraumspaziergang +| rdfs:domain = SpaceMission +| rdfs:range = xsd:date +}}OntologyProperty:Speaker2022358344602014-04-08T14:49:29Z{{DatatypeProperty +| rdfs:label@en = speaker +| rdfs:comment@en = number of office holder +| rdfs:range = xsd:integer +}}OntologyProperty:SpecialEffects2025147365692014-07-08T14:20:41Z +{{ObjectProperty +| rdfs:domain = Film +| rdfs:range = Person +| rdfs:label@en = special effects +| rdfs:label@de = Spezialeffekte +| rdfs:comment@en = the person who is responsible for the film special effects +| rdfs:subPropertyOf = dul:coparticipatesWith +}}OntologyProperty:SpecialTrial2027889273942013-07-10T15:23:18Z{{DatatypeProperty +| labels = +{{label|en|special trial}} +| rdfs:range = xsd:nonNegativeInteger +| rdfs:domain = Person +}}OntologyProperty:Specialist2021456522962017-10-08T19:37:56Z{{ObjectProperty +| rdfs:label@en = specialist +| rdfs:label@de = Spezialist +| rdfs:domain = owl:Thing +| rdfs:range = PersonFunction +}}OntologyProperty:Speciality2027700343132014-04-08T13:36:34Z{{DatatypeProperty +| labels = +{{label|en|speciality}} +{{label|de|Spezialität}} +| rdfs:domain = Person +| rdfs:range = xsd:string +}}OntologyProperty:Specialization20211904522902017-10-08T19:15:30Z{{ObjectProperty +| labels = + {{label|en|specialization}} + {{label|de|Spezialisierung}} +| comments = + {{comment|en|Points out the subject or thing someone or something is specialized in (for).}} + {{comment|de|Verweist of den Gegenstand (auch fig.) auf welchen jemand oder etwas spezialisiert ist.}} +| rdfs:domain = owl:Thing +| rdfs:range = owl:Thing +}}OntologyProperty:Species2021457520162017-04-07T09:29:00Z{{ObjectProperty +| labels = + {{label|en|species}} + {{label|de|Spezies}} + {{label|nl|soort}} + {{label|ja|種_(分類学) }} + {{label|fr|espèce}} +| rdfs:domain = Species +| rdfs:range = Species +| rdfs:subPropertyOf = dul:specializes +}}OntologyProperty:SpeedLimit2023427124272011-04-26T13:14:35Z{{DatatypeProperty +| rdfs:label@en = speed limit +| rdfs:label@de = Tempolimit +| rdfs:domain= RouteOfTransportation +| rdfs:range = Speed +}}OntologyProperty:Spike2024438344592014-04-08T14:48:09Z{{DatatypeProperty +| rdfs:label@en = spike +| rdfs:label@de = schmettern +| rdfs:label@el = καρφί +| rdfs:label@tr = smaç +| rdfs:domain = VolleyballPlayer +| rdfs:range = xsd:string +}}OntologyProperty:SplitFromParty2023724365712014-07-08T14:20:48Z +{{ObjectProperty +| rdfs:label@en = split from party +| rdfs:label@de = Abspaltung von Partei +| rdfs:domain = PoliticalParty +| rdfs:range = PoliticalParty +| rdfs:subPropertyOf = dul:sameSettingAs +}}OntologyProperty:SpokenIn2021470365722014-07-08T14:20:52Z +{{ObjectProperty +| labels = + {{label|en|spoken in}} + {{label|de|gesprochen in}} + {{label|nl|gesproken in}} +| rdfs:domain = Language +| rdfs:range = PopulatedPlace +| rdfs:subPropertyOf = dul:hasLocation +}}OntologyProperty:Spokesperson2023347365732014-07-08T14:20:56Z +{{ObjectProperty +| rdfs:label@en = spokesperson +| rdfs:label@de = Sprecher +| rdfs:label@pt = porta-voz +| rdfs:domain = PoliticalParty +| rdfs:range = Person +| rdfs:subPropertyOf = dul:sameSettingAs +}}OntologyProperty:Sport2021458365742014-07-08T14:21:00Z +{{ObjectProperty +| labels = + {{label|en|sport}} + {{label|de|Sport}} + {{label|el|άθλημα}} + {{label|fr|sport}} +| rdfs:range = Sport +| rdfs:subPropertyOf = dul:isParticipantIn +}}OntologyProperty:SportCountry2023534365752014-07-08T14:21:05Z +{{ObjectProperty +| rdfs:label@en = sport country +| rdfs:label@de = Sportnation +| rdfs:comment@en = The country, for which the athlete is participating in championships +| rdfs:comment@de = Das Land, für das der Sportler an Wettkämpfen teilnimmt +| rdfs:domain = Athlete +| rdfs:range = Country +| rdfs:subPropertyOf = dul:coparticipatesWith +}}OntologyProperty:SportDiscipline2025136365762014-07-08T14:21:21Z +{{ObjectProperty +| rdfs:domain = Person +| rdfs:range = Sport +| labels = + {{label|en|sport discipline}} + {{label|de|Sportdisziplin}} + {{label|fr|discipline sportive}} + {{label|nl|tak van sport}} +| comments = + {{comment|en|the sport discipline the athlete practices, e.g. Diving, or that a board member of a sporting club is focussing at}} +| rdfs:subPropertyOf = dul:isParticipantIn +}}OntologyProperty:SportGoverningBody2022306365772014-07-08T14:21:24Z +{{ObjectProperty +| rdfs:label@en = sport governing body +| rdfs:subPropertyOf = dul:sameSettingAs +}}OntologyProperty:SportSpecialty2025137365782014-07-08T14:21:26Z +{{ObjectProperty +| labels = + {{label|en|sport specialty}} + {{label|nl|sport specialiteit}} +| rdfs:domain = Athlete +| rdfs:range = Sport +| rdfs:comment@en = the sport specialty the athlete practices, e.g. 'Ring' for a men's artistic gymnastics athlete +| rdfs:subPropertyOf = dul:isParticipantIn +}}OntologyProperty:SportsFunction2027888273882013-07-10T15:02:06Z{{DatatypeProperty +| labels = +{{label|en|sports function}} +| rdfs:domain = Person +| rdfs:range = xsd:string +}}OntologyProperty:Spouse2021459535972020-02-17T07:43:22Z{{ObjectProperty +| labels = + {{label|en|spouse}} + {{label|de|Ehepartner}} + {{label|nl|echtgenoot}} + {{label|ja|配偶者}} + {{label|el|σύζυγος}} +| rdfs:domain = Person +| rdfs:range = Person +| owl:equivalentProperty = schema:spouse, wikidata:P26 +| owl:propertyDisjointWith = child +| rdfs:comment@en = the person they are married to +| comments = + {{comment|el|Το άτομο με το οποίο κάποιος είναι παντρεμένος}} +| rdfs:subPropertyOf = dul:sameSettingAs +}}OntologyProperty:SpouseName2027704343212014-04-08T13:37:25Z{{DatatypeProperty +| labels = +{{label|en|spouse name}} +{{label|de|Name des Ehepartners}} +{{label|el|όνομα συζύγου}} +| rdfs:domain = Person +| rdfs:range = xsd:string +}}OntologyProperty:SpurOf2022762365802014-07-08T14:21:33Z +{{ObjectProperty +| rdfs:label@en = spur of +| rdfs:domain = Road +| rdfs:range = Road +| rdfs:subPropertyOf = dul:hasCommonBoundary +}}OntologyProperty:SpurType2021460365812014-07-08T14:21:36Z +{{ObjectProperty +| rdfs:label@en = spur type +| rdfs:domain = Road +| rdfs:subPropertyOf = dul:isClassifiedBy +}}OntologyProperty:SquadNumber2025023165912012-01-14T19:16:55Z{{DatatypeProperty +| rdfs:label@en = squad number +| rdfs:domain = SportsTeamMember +| rdfs:range = xsd:nonNegativeInteger +| rdfs:comment@en = The number that an athlete wears in a team sport. +}}OntologyProperty:Stadium2026091365822014-07-08T14:21:39Z +{{ObjectProperty +| labels = + {{label|en|Stadium}} + {{label|de|Stadion}} + {{label|el|στάδιο}} +| rdfs:range = Stadium +| rdfs:subPropertyOf = dul:sameSettingAs +}}OntologyProperty:Staff2021461525892017-10-31T08:56:00Z{{DatatypeProperty +| rdfs:label@en = staff +| rdfs:label@de = Personal +| rdfs:label@el = προσωπικό +| rdfs:domain = Organisation +| rdfs:range = xsd:nonNegativeInteger +}}OntologyProperty:StarRating2022510100132010-10-25T09:40:59Z{{DatatypeProperty +| rdfs:label@en = star rating +| rdfs:domain = Hotel +| rdfs:range = xsd:float +}}OntologyProperty:Starring2021463536862020-09-02T18:35:05Z +{{ObjectProperty +| labels = + {{label|en|starring}} + {{label|da|skuespillere}} + {{label|nl|met in de hoofdrol}} + {{label|el|ηθοποιοί}} + {{label|fr|acteur}} +| rdfs:domain = Work +| rdfs:range = Actor +| owl:equivalentProperty = schema:actor,schema:actors, wikidata:P161 +| rdfs:subPropertyOf = dul:sameSettingAs +}}OntologyProperty:Start2027890524552017-10-15T19:27:09Z{{DatatypeProperty +| labels = +{{label|en|start}} +{{label|de|Start}} +| rdfs:range = xsd:date +| rdfs:domain = TimePeriod +}}OntologyProperty:StartCareer2027552267642013-07-01T14:39:14Z{{DatatypeProperty +| labels = +{{label|en|start career}} +| rdfs:domain = Person +| rdfs:range = xsd:string +}}OntologyProperty:StartDate2021464537092020-09-04T15:39:35Z{{DatatypeProperty +| labels = + {{label|en|start date}} +{{label|de|Startdatum}} + {{label|nl|startdatum}} + {{label|fr|date de début}} + {{label|es|fecha de inicio}} +| rdfs:domain = Event +| rdfs:range = xsd:date +| owl:equivalentProperty = schema:startDate, wikidata:P580, ceo:startdatum +| rdfs:comment@en = The start date of the event. +}}OntologyProperty:StartDateTime20210293387982014-12-02T10:49:29Z{{DatatypeProperty +| labels = + {{label|en|start date and time}} + {{label|nl|datum en tijd van begin}} +| rdfs:domain = Event +| rdfs:range = xsd:dateTime +| rdfs:comment@en = The start date and time of the event. +}}OntologyProperty:StartOccupation2027791273752013-07-10T14:37:30Z{{DatatypeProperty +| labels = +{{label|en|start occupation}} +| rdfs:range = xsd:string +}}OntologyProperty:StartPoint2021465568312022-03-01T00:37:18Z +{{ObjectProperty +| labels = + {{label|en|start point}} + {{label|fr|point de départ}} + {{label|de|Startpunkt}} + {{label|el|σημείο_αρχής}} +| rdfs:domain = Place +| rdfs:range = Place +| rdfs:subPropertyOf = dul:hasCommonBoundary +}}OntologyProperty:StartReign2027549271702013-07-09T09:21:56Z{{ObjectProperty +| labels = +{{label|en|start reign}} +| rdfs:domain = Person +| rdfs:range = skos:Concept +}}OntologyProperty:StartWct2027834271502013-07-05T15:57:17Z{{DatatypeProperty +| labels = +{{label|en|start xct}} +| rdfs:domain = Person +| rdfs:range = xsd:string +}}OntologyProperty:StartWqs2027833271492013-07-05T15:57:06Z{{DatatypeProperty +| labels = +{{label|en|start wqs}} +| rdfs:domain = Person +| rdfs:range = xsd:string +}}OntologyProperty:StartYear2027172343282014-04-08T13:37:51Z{{DatatypeProperty +| labels = +{{label|en|start year}} +{{label|de|Startjahr}} +| rdfs:range = xsd:gYear +}}OntologyProperty:StartYearOfInsertion202146682842010-05-28T13:43:38Z{{DatatypeProperty +| rdfs:label@en = start year of insertion +| rdfs:domain = AutomobileEngine +| rdfs:range = xsd:gYear +}}OntologyProperty:StartYearOfSales202146782852010-05-28T13:43:47Z{{DatatypeProperty +| rdfs:label@en = start year of sales +| rdfs:domain = Sales +| rdfs:range = xsd:gYear +}}OntologyProperty:StatName2027655269122013-07-03T12:17:17Z{{DatatypeProperty +| labels = +{{label|en|stat name}} +| rdfs:domain = owl:Thing +| rdfs:range = xsd:string +}}OntologyProperty:StatValue2027656269152013-07-03T12:20:30Z{{DatatypeProperty +| labels = +{{label|en|stat value}} +| rdfs:domain = owl:Thing +| rdfs:range = xsd:double +}}OntologyProperty:State2021468365852014-07-08T14:21:49Z +{{ObjectProperty +| labels = + {{label|en|state}} + {{label|de|Staat}} + {{label|nl|staat}} + {{label|el|νομός}} + {{label|pl|stan}} +| rdfs:domain = owl:Thing +| rdfs:range = PopulatedPlace +| rdfs:subPropertyOf = dul:hasLocation +}}OntologyProperty:StateDelegate2022364365862014-07-08T14:21:52Z +{{ObjectProperty +| rdfs:label@en = state delegate +| rdfs:range = Person +| rdfs:subPropertyOf = dul:sameSettingAs +}}OntologyProperty:StateOfOrigin2021469365872014-07-08T14:21:55Z +{{ObjectProperty +| rdfs:label@en = state of origin +| rdfs:domain = Person +| rdfs:range = Country +| rdfs:subPropertyOf = dul:hasLocation +}}OntologyProperty:StateOfOriginPoint2027895274082013-07-10T15:51:50Z{{DatatypeProperty +| labels = +{{label|en|state of origin point}} +| rdfs:range = xsd:nonNegativeInteger +| rdfs:domain = Athlete +}}OntologyProperty:StateOfOriginTeam2027894274072013-07-10T15:50:48Z{{ObjectProperty +| labels = +{{label|en|state of origin team}} +| rdfs:domain = Athlete +| rdfs:range = SportsTeam +}}OntologyProperty:StateOfOriginYear2027893274062013-07-10T15:49:57Z{{DatatypeProperty +| labels = +{{label|en|state of origin year}} +| rdfs:range = xsd:string +| rdfs:domain = Athlete +}}OntologyProperty:StationEvaDuration202147282862010-05-28T13:43:55Z{{DatatypeProperty +| rdfs:label@en = station EVA duration +| rdfs:domain = SpaceMission +| rdfs:range = Time +}}OntologyProperty:StationStructure2023229222662013-01-11T00:16:45Z{{DatatypeProperty +| labels = +{{label|en|station structure}} +{{label|nl|station structuur}} +| rdfs:domain = Station +| rdfs:range = xsd:string +| rdfs:comment@en = Type of station structure (underground, at-grade, or elevated). +}}OntologyProperty:StationVisitDuration202147382872010-05-28T13:44:01Z{{DatatypeProperty +| rdfs:label@en = station visit duration +| rdfs:domain = SpaceMission +| rdfs:range = Time +}}OntologyProperty:Statistic2027870343302014-04-08T13:38:00Z{{ObjectProperty +| labels = +{{label|en|statistic}} +{{label|de|statistisch}} +| rdfs:domain = Statistic +}}OntologyProperty:StatisticLabel202147489072010-05-28T16:30:01Z{{ObjectProperty +| rdfs:label@en = statistic label +| rdfs:domain = BaseballPlayer +}}OntologyProperty:StatisticValue2021475343312014-04-08T13:38:04Z{{DatatypeProperty +| rdfs:label@en = statistic value +| rdfs:label@de = Statistikwert +| rdfs:domain = BaseballPlayer +| rdfs:range = xsd:float +}}OntologyProperty:StatisticYear202147682892010-05-28T13:44:16Z{{DatatypeProperty +| rdfs:label@en = statistic year +| rdfs:domain = BaseballPlayer +| rdfs:range = xsd:date +}}OntologyProperty:Status2021477537822020-10-21T08:20:35Z{{DatatypeProperty +| labels = +{{label|en|status}} +{{label|de|Status}} +{{label|nl|status}} +{{label|fr|statut}} +{{label|es|estatus}} +| rdfs:range = xsd:string +}}OntologyProperty:StatusManager2027800271022013-07-05T13:20:53Z{{DatatypeProperty +| labels = +{{label|en|status manager}} +| rdfs:domain = Person +| rdfs:range = xsd:string +}}OntologyProperty:StatusYear2027299486122015-08-06T12:17:59Z{{DatatypeProperty +| labels = +{{label|en|status year}} +| rdfs:domain = Place +| rdfs:range = xsd:string +}}OntologyProperty:StellarClassification20211154465382015-03-19T08:45:39Z{{ObjectProperty +| labels = +{{label|en|stellar classification}} +{{label|nl|spectraalklasse}} +| rdfs:domain = CelestialBody +| rdfs:range = skos:OrderedCollection +}}OntologyProperty:StockExchange2029373347442014-05-09T09:24:43Z{{DatatypeProperty +| labels = +{{label|en|Registered at Stock Exchange}} +{{label|nl|beurs waaraan genoteerd}} +| rdfs:domain = Company +| rdfs:range = xsd:string +}}OntologyProperty:StoryEditor2021478365882014-07-08T14:21:58Z +{{ObjectProperty +| rdfs:label@en = story editor +| rdfs:domain = TelevisionShow +| rdfs:range = Person +| rdfs:subPropertyOf = dul:sameSettingAs +}}OntologyProperty:Strength2021479343332014-04-08T13:38:13Z{{DatatypeProperty +| rdfs:label@en = strength +| rdfs:label@de = Stärke +| rdfs:label@el = δύναμη +| rdfs:domain = MilitaryConflict +| rdfs:range = xsd:string +}}OntologyProperty:StructuralSystem2021480365892014-07-08T14:22:02Z +{{ObjectProperty +| labels = + {{label|en|structural system}} + {{label|de|Tragsystem}} + {{label|nl|bouwmethode}} + {{label|el|κατασκευαστικό σύστημα}} +| rdfs:domain = Building +| rdfs:subPropertyOf = dul:hasConstituent +}}OntologyProperty:Student2027541520012017-03-22T16:51:09Z +{{ObjectProperty +| labels = + {{label|en|student}} +| rdfs:domain = Person +| rdfs:range = Person +| rdfs:subPropertyOf = dul:coparticipatesWith +}}OntologyProperty:Style2024780273652013-07-10T14:10:08Z{{ObjectProperty +| rdfs:label@en = style +| rdfs:label@de = stil +| rdfs:label@it = stile +| rdfs:label@es = estilo +| rdfs:domain = Artist +}}OntologyProperty:StylisticOrigin2021483365912014-07-08T14:22:08Z +{{ObjectProperty +| rdfs:label@en = stylistic origin +| rdfs:label@de = stilistische Herkunft +| rdfs:label@pt = origens estilísticas +| rdfs:domain = MusicGenre +| rdfs:range = MusicGenre +| rdfs:subPropertyOf = dul:sameSettingAs +}}OntologyProperty:SubClassis2029312327562014-03-17T13:49:28Z{{ObjectProperty +| labels = +{{label|en|sub-classis}} +{{label|nl|onderklasse}} +| rdfs:domain = Species +| rdfs:range = owl:Thing +| rdfs:subPropertyOf = classis +|comments = +{{comment|en|a subdivision within a Species classis}} +}}OntologyProperty:SubFamily2029328343362014-04-08T13:38:25Z{{ObjectProperty +| labels = +{{label|en|sub-family}} +{{label|de|Unterfamilie}} +{{label|nl|onderfamilie}} +| rdfs:domain = Species +| rdfs:range = Taxon +}}OntologyProperty:SubGenus20210211378872014-09-24T11:18:42Z{{ObjectProperty +| labels = + {{label|en|subgenus}} + {{label|de|Untergattung}} + {{label|nl|ondergeslacht}} +| comments = + {{comment|en|A rank in the classification of organisms, below genus ; a taxon at that rank}} +| rdfs:domain = Species +| rdfs:subPropertyOf = dul:specializes +}}OntologyProperty:SubMunicipalityType2026573343372014-04-08T13:38:38Z{{DatatypeProperty +| labels = +{{label|en|type of municipality}} +{{label|de|Art der Gemeinde}} +{{label|nl|type gemeente}} +| rdfs:domain = SubMunicipality +| rdfs:range = xsd:string +}}OntologyProperty:SubOrder20210212568202022-02-28T22:58:42Z{{ObjectProperty +| labels = +{{label|en|sub-order}} +{{label|fr|sous-ordre}} +{{label|nl|onderorde}} +| rdfs:domain = Species +}}OntologyProperty:SubPrefecture2027131256642013-05-26T15:24:48Z{{DatatypeProperty +| labels = +{{label|en|subprefecture}} +| rdfs:domain = Place +| rdfs:range = xsd:string +}}OntologyProperty:SubTribus2029310327532014-03-17T10:24:57Z{{ObjectProperty +| labels = +{{label|en|subtribus}} +{{label|nl|onderstam}} +| comments = +| rdfs:domain = Species +| rdfs:range = Species +| rdfs:subPropertyOf = Tribus +}}OntologyProperty:Subdivision2027058522922017-10-08T19:18:00Z{{ObjectProperty +| labels = +{{label|en|subdivision}} +| rdfs:domain = owl:Thing +| rdfs:range = owl:Thing +}}OntologyProperty:SubdivisionLink2027056256382013-05-26T14:16:18Z{{DatatypeProperty +| labels = +{{label|en|subdivision link}} +| rdfs:domain = Place +| rdfs:range = xsd:string +}}OntologyProperty:SubdivisionName2027057365922014-07-08T14:22:11Z +{{ObjectProperty +| labels = + {{label|en|subdivision name of the island}} +| rdfs:domain = Island +| rdfs:range = Place +| rdfs:subPropertyOf = dul:hasPart +}}OntologyProperty:Subdivisions2021687568042022-02-28T21:59:58Z{{DatatypeProperty +| labels = + {{label|en|subdivisions}} + {{label|fr|sous-divisions}} +| rdfs:domain = owl:Thing +| rdfs:range = xsd:nonNegativeInteger +}}OntologyProperty:SubjectOfPlay2023829133612011-06-06T11:37:02Z{{DatatypeProperty +| rdfs:label@en = subject of play +| rdfs:domain = Play +| rdfs:range = xsd:string +| rdfs:comment@en = The overall subject matter dealt with by the play. +}}OntologyProperty:SubjectTerm2029127316122014-02-10T13:59:07Z{{ DatatypeProperty +| labels = +{{label|en|subject term}} +{{label|nl|onderwerpsaanduiding}} +| rdfs:comment@en = The subject as a term, possibly a term from a formal classification +| rdfs:domain = Work +| rdfs:range = xsd:string +}}OntologyProperty:SublimationPoint202250392352010-07-21T11:01:32Z{{DatatypeProperty +| rdfs:label@en = sublimation point +| rdfs:range = Temperature +}}OntologyProperty:SuborbitalFlights2021485104262010-11-10T14:51:17Z{{DatatypeProperty +| rdfs:label@en = suborbital flights +| rdfs:domain = YearInSpaceflight +| rdfs:range = xsd:nonNegativeInteger +}}OntologyProperty:Subprefecture2027017365932014-07-08T14:22:16Z +{{ObjectProperty +| labels = + {{label|en|subprefecture}} +| rdfs:domain = Department +| rdfs:range = PopulatedPlace +| rdfs:subPropertyOf = dul:hasPart +}}OntologyProperty:Subregion2021486365942014-07-08T14:22:20Z +{{ObjectProperty +| rdfs:label@en = subregion +| rdfs:domain = Place +| rdfs:range = Place +| rdfs:subPropertyOf = dul:hasPart +}}OntologyProperty:SubsequentInfrastructure2021487365952014-07-08T14:22:37Z +{{ObjectProperty +| labels = + {{label|en|subsequent infrastructure}} + {{label|de|spätere Infrastruktur}} + {{label|nl|volgende infrastructuur}} +| rdfs:domain = Infrastructure +| rdfs:range = Infrastructure +| rdfs:subPropertyOf = dul:sameSettingAs +}}OntologyProperty:SubsequentWork2021488570482022-03-09T16:01:31Z +{{ObjectProperty +| labels = + {{label|en|subsequent work}} + {{label|fr|oeuvre suivante}} + {{label|de|nachfolgende Arbeiten}} + {{label|nl|vervolg werk}} + {{label|el|επόμενη δημιουργία}} +| rdfs:domain = Work +| rdfs:range = Work +| rdfs:subPropertyOf = dul:sameSettingAs +}}OntologyProperty:SubsequentWorkDate20213811570572022-03-09T17:13:00Z{{ObjectProperty +| labels = + {{label|en|subsequent work date}} + {{label|fr|année de sortie oeuvre suivante}} +| rdfs:domain = Work +| rdfs:range = year +| comments = + {{comment|en|Year when subsequent work is released}} + {{comment|fr|Année de sortie de l'oeuvre suivante}} +}}OntologyProperty:Subsidiary2021489365972014-07-08T14:22:43Z +{{ObjectProperty +| labels = + {{label|en|subsidiary}} + {{label|pt|treinador}} + {{label|fr|filiale}} +| rdfs:domain = Company +| rdfs:range = Company +| rdfs:subPropertyOf = dul:sameSettingAs +}}OntologyProperty:Subsystem2027144343402014-04-08T13:38:48Z{{DatatypeProperty +| labels = +{{label|en|subsystem}} +{{label|de|Teilsystem}} +| rdfs:domain = Place +| rdfs:range = xsd:string +}}OntologyProperty:SubsystemLink2027143256822013-05-26T16:08:22Z{{DatatypeProperty +| labels = +{{label|en|subsystem link}} +| rdfs:domain = Place +| rdfs:range = xsd:string +}}OntologyProperty:Subtitle2022299221762013-01-10T20:57:19Z{{DatatypeProperty +| labels = +{{label|en|subtitle}} +{{label|de|Untertitel}} +{{label|el|υπότιτλος}} +{{label|nl|onderschrift}} +{{label|pt|legenda}} +| rdfs:range = xsd:string +}}OntologyProperty:SuccessfulLaunches2021490343412014-04-08T13:38:51Z{{DatatypeProperty +| rdfs:label@en = successful launches +| rdfs:label@de = erfolgreiche Starts +| rdfs:range = xsd:nonNegativeInteger +}}OntologyProperty:Successor2021491365982014-07-08T14:22:46Z +{{ObjectProperty +| labels = + {{label|en|successor}} + {{label|nl|opvolger}} + {{label|de|Nachfolger}} + {{label|ja|後任者}} +| rdfs:subPropertyOf = dul:sameSettingAs +}}OntologyProperty:SudocId20211043528872018-02-13T11:00:45Z{{DatatypeProperty +| labels = +{{label|en|SUDOC id}} +| comments = +{{comment|en|Système universitaire de documentation id (French collaborative library catalog). +http://www.idref.fr/$1}} +| rdfs:domain = owl:Thing +| rdfs:range = xsd:string +| owl:equivalentProperty = wikidata:P269 +| rdfs:subPropertyOf = code +}}OntologyProperty:SummerAppearances2021492365992014-07-08T14:22:49Z +{{ObjectProperty +| rdfs:label@en = summer appearances +| rdfs:domain = OlympicResult +| rdfs:range = OlympicResult +| rdfs:subPropertyOf = dul:sameSettingAs +}}OntologyProperty:SummerTemperature202149382942010-05-28T13:44:53Z{{DatatypeProperty +| rdfs:label@en = summer temperature +| rdfs:domain = Settlement +| rdfs:range = Temperature +}}OntologyProperty:SuperFamily2029329328982014-03-23T20:22:12Z{{ObjectProperty +| labels = +{{label|en|super-family}} +{{label|nl|superfamilie}} +| rdfs:domain = Species +| rdfs:range = Taxon +}}OntologyProperty:SuperOrder20210213378982014-09-24T11:53:55Z{{ObjectProperty +| labels = +{{label|en|super-order}} +{{label|nl|bovenorde}} +| rdfs:domain = Species +}}OntologyProperty:SuperTribus2029311327542014-03-17T10:25:37Z{{ObjectProperty +| labels = +{{label|en|supertribus}} +{{label|nl|bovenstam}} +| comments = +| rdfs:domain = Species +| rdfs:range = Species +| rdfs:subPropertyOf = Tribus +}}OntologyProperty:SuperbowlWin2027686269582013-07-04T09:29:06Z{{DatatypeProperty +| labels = +{{label|en|superbowl win}} +| rdfs:domain = Athlete +| rdfs:range = xsd:string +}}OntologyProperty:Superintendent2021494366002014-07-08T14:22:52Z +{{ObjectProperty +| labels = + {{label|en|superintendent}} + {{label|de|Leiter}} + {{label|nl|opzichter}} +| rdfs:domain = Organisation +| rdfs:range = Person +| rdfs:subPropertyOf = dul:sameSettingAs +}}OntologyProperty:SupplementalDraftRound2021495174762012-04-27T22:09:22Z{{DatatypeProperty +| rdfs:label@en = supplemental draft round +| rdfs:domain = Athlete +| rdfs:range = xsd:string +}}OntologyProperty:SupplementalDraftYear202149682962010-05-28T13:45:10Z{{DatatypeProperty +| rdfs:label@en = supplemental draft year +| rdfs:domain = GridironFootballPlayer +| rdfs:range = xsd:gYear +}}OntologyProperty:Supplies2021497366012014-07-08T14:22:56Z +{{ObjectProperty +| rdfs:label@en = supplies +| rdfs:label@el = παροχές +| rdfs:domain = Artery +| rdfs:range = AnatomicalStructure +| rdfs:subPropertyOf = dul:coparticipatesWith +}}OntologyProperty:Supply2027097344512014-04-08T14:38:21Z{{ObjectProperty +| labels = +{{label|en|supply}} +| rdfs:domain = Place +| rdfs:range = Place +}}OntologyProperty:SuppreddedDate2021498433312015-02-06T14:56:37Z{{DatatypeProperty +| labels = +{{label|en|suppredded date}} +{{label|nl|oppressie datum}} +{{label|bg|дата на забраната}} +| rdfs:domain = Saint +| rdfs:range = xsd:date +|rdfs:comment@en=Date when the Church forbade the veneration of this saint. +(I hope that's what it means, I don't know why the original author didn't document it) +}}OntologyProperty:SurfaceArea2021499537882020-10-23T09:44:25Z{{DatatypeProperty +| rdfs:label@en = surface area +| rdfs:label@de = Oberfläche +| rdfs:label@el = έκταση +| rdfs:domain = Planet +| rdfs:range = Area +}}OntologyProperty:SurfaceFormOccurrenceOffset202244591382010-06-23T15:03:54Z{{DatatypeProperty +| rdfs:label@en = position in which a surface occurs in a text +| rdfs:range = xsd:string +}}OntologyProperty:SurfaceGravity2024360236632013-02-07T07:17:00Z{{DatatypeProperty + |rdfs:label@en=surface gravity + |rdfs:domain=Planet + |rdfs:range=Mass +}}OntologyProperty:SurfaceType20211781518372017-01-13T22:57:56Z{{DatatypeProperty +| labels = + {{label|en|type of surface}} + {{label|fr|type de surface}} + {{label|es|tipo de surperficie}} + {{label|cs|typ povrchu}} +| rdfs:range = xsd:string +}}OntologyProperty:SuspectedCases20212298536092020-04-10T06:20:32Z{{DatatypeProperty +| labels = +{{label|en|Suspected Cases}} +| rdfs:comment@en = Number of suspected cases in a pandemic +| rdfs:domain = Outbreak +| rdfs:range = xsd:integer +}}OntologyProperty:SwimmingStyle2029268343462014-04-08T13:39:13Z{{DatatypeProperty +| rdfs:label@en = Swimming style +| rdfs:label@de = Schwimmstil +| rdfs:label@nl = Zwemslag +| rdfs:domain = Swimmer +| rdfs:range = xsd:string +}}OntologyProperty:Symbol2021500572792022-03-28T22:13:27Z{{DatatypeProperty +| labels = + {{label|en|Symbol}} + {{label|fr|symbole}} + {{label|nl|symbool}} + {{label|de|Symbol}} +| rdfs:comment@en = HUGO Gene Symbol +| rdfs:domain = Biomolecule +| rdfs:range = xsd:string +}}OntologyProperty:Symptom20211880522172017-10-07T22:21:07Z{{ObjectProperty +| labels = +{{label|de |Symptome}} +{{label|en|symptoms}} +{{label|el|σύμπτωμα}} +{{label|fr |symptômes}} +| rdfs:domain = Disease +| rdfs:range = owl:Thing +}}OntologyProperty:Synonym2021247572782022-03-28T22:11:13Z{{DatatypeProperty +| labels = + {{label|en|synonym}} + {{label|fr|synonyme}} + {{label|de|Synonym}} + {{label|el|συνώνυμο}} + {{label|ja|シノニム}} +| rdfs:range = xsd:string +| owl:equivalentProperty=wikidata:P5973 +}}OntologyProperty:SystemOfLaw2026604366022014-07-08T14:22:59Z +{{ObjectProperty +| labels = + {{label|en|system of law}} + {{label|de|Rechtssystem}} + {{label|nl|rechtssysteem}} +| comments = + {{comment|en|A referral to the relevant system of law }} +| rdfs:domain = LegalCase +| rdfs:range = SystemOfLaw +| rdf:type = | rdfs:subPropertyOf = +| owl:equivalentProperty = +| rdfs:subPropertyOf = dul:isSettingFor +}}OntologyProperty:SystemRequirements2026411343502014-04-08T13:39:39Z{{DatatypeProperty +| labels = +{{label|en|minimum system requirements}} +{{label|de|Mindestsystemanforderungen}} +| rdfs:domain = owl:Thing +| rdfs:range = xsd:string +}}OntologyProperty:Tag2027074255942013-05-26T12:17:07Z{{DatatypeProperty +| labels = +{{label|en|tag}} +| rdfs:range = xsd:date +}}OntologyProperty:Taoiseach2022333474452015-04-01T15:00:29Z{{ObjectProperty +| rdfs:label@en = taoiseach +| rdfs:label@ga = taoiseach +| rdfs:range = Person +| rdfs:comment@en = head of government of Ireland +| owl:equivalentProperty = wikidata:P6 +}}OntologyProperty:TargetAirport2021502366032014-07-08T14:23:03Z +{{ObjectProperty +| rdfs:label@en = target airport +| rdfs:domain = Airline +| rdfs:range = Airport +| rdfs:subPropertyOf = dul:hasLocation +}}OntologyProperty:TargetSpaceStation2021471366042014-07-08T14:23:06Z +{{ObjectProperty +| rdfs:label@en = target space station station +| rdfs:domain = Spacecraft +| rdfs:range = SpaceStation +| rdfs:subPropertyOf = dul:hasLocation +}}OntologyProperty:Taste2028914343512014-04-08T13:39:47Z{{DatatypeProperty +| labels = +{{label|en|taste or flavour}} +{{label|de|Geschmack oder Aroma}} +{{label|nl|smaak}} +| rdfs:domain = Food +| rdfs:range = xsd:string +}}OntologyProperty:Tattoo2023288567792022-02-28T18:39:33Z{{DatatypeProperty +| labels = + {{label|en|tattoo}} + {{label|fr|tatouage}} + {{label|el|τατουάζ}} + {{label|de|Tätowierung}} + {{label|pt|tatuagem}} +| rdfs:domain = Person +| rdfs:range = xsd:string +}}OntologyProperty:Taxon2029309327432014-03-15T11:01:45Z{{ObjectProperty +| labels = +{{label|en|has taxon}} +{{label|nl|taxon}} +| rdfs:domain = Species +| rdfs:range = Taxon +}}OntologyProperty:TeachingStaff2023131366052014-07-08T14:23:09Z +{{ObjectProperty +| rdfs:label@en = teaching staff +| rdfs:domain = School +| rdfs:subPropertyOf = dul:hasMember +}}OntologyProperty:Team2021503514472016-08-16T07:40:03Z +{{ObjectProperty +| labels = + {{label|en|team}} + {{label|de|Team}} + {{label|nl|team}} + {{label|el|ομάδα}} + {{label|fr|équipe}} + {{label|ja|チーム}} +| rdfs:range = SportsTeam +| owl:equivalentProperty = wikidata:P54 +| rdfs:subPropertyOf = dul:isSettingFor +}}OntologyProperty:TeamCoached2027691343532014-04-08T13:40:05Z{{ObjectProperty +| labels = +{{label|en|team coached}} +{{label|de|Team gecoacht}} +| rdfs:domain = Athlete +| rdfs:range = SportsTeam +}}OntologyProperty:TeamManager2027799343542014-04-08T13:40:20Z{{ObjectProperty +| labels = +{{label|en|team manager}} +{{label|de|Team-Manager}} +| rdfs:domain = Person +| rdfs:range = SportsTeam +}}OntologyProperty:TeamName2021504348102014-05-14T11:25:22Z{{DatatypeProperty +| rdfs:label@en = team name +| rdfs:label@de = Teamname +| rdfs:label@el = όνομα ομάδας +| rdfs:domain = School +| rdfs:range = rdf:langString +}}OntologyProperty:TeamPoint2027671269412013-07-04T07:47:06Z{{DatatypeProperty +| labels = +{{label|en|team point}} +| rdfs:range = xsd:nonNegativeInteger +| rdfs:domain = Athlete +}}OntologyProperty:TeamSize2022304343562014-04-08T13:40:26Z{{DatatypeProperty +| rdfs:label@en = team size +| rdfs:label@de = Teamgröße +| rdfs:range = xsd:nonNegativeInteger +}}OntologyProperty:TeamTitle2028048282032013-09-03T18:48:43Z{{DatatypeProperty +| labels = +{{label|en|team title}} +| rdfs:domain = Athlete +| rdfs:range = xsd:string +}}OntologyProperty:Technique2024782474432015-04-01T14:55:39Z{{DatatypeProperty +| rdfs:label@en = technique +| rdfs:label@de = technisch +| rdfs:label@el = τεχνική +| rdfs:label@es = técnica +| rdfs:domain = Painting +| rdfs:range = xsd:string +}}OntologyProperty:TelevisionSeries2026097366072014-07-08T14:23:16Z +{{ObjectProperty +| labels = + {{label|en|television series}} + {{label|de|Fernsehserie}} + {{label|el|τηλεοπτικές σειρές}} +| rdfs:range = TelevisionShow +| rdfs:subPropertyOf = dul:hasMember +}}OntologyProperty:TempPlace2029174318582014-02-13T20:17:54Z{{DatatypeProperty +| rdfs:label@en = Temporary Placement in the Music Charts +| rdfs:label@de = vorläufige Chartplatzierung +| rdfs:domain = ChartsPlacements +| rdfs:range = xsd:string +}}OntologyProperty:Temperature2021507343592014-04-08T13:40:37Z{{DatatypeProperty +| rdfs:label@en = temperature +| rdfs:label@de = Temperatur +| rdfs:label@el = θερμοκρασία +| rdfs:label@fr = température +| rdfs:range = Temperature +}}OntologyProperty:TemplateName20211967525462017-10-25T11:37:03Z{{DatatypeProperty +| labels = + {{label|en|template name}} + {{label|de|Templatename}} +| comments = + {{comment|en|DO NOT USE THIS PROPERTY! For internal use only.}} +| rdfs:domain = WikimediaTemplate +| rdfs:range = xsd:string +}}OntologyProperty:Temple2027795343602014-04-08T13:40:41Z{{DatatypeProperty +| labels = +{{label|en|temple}} +{{label|de|Tempel}} +| rdfs:domain = Person +| rdfs:range = xsd:string +}}OntologyProperty:TempleYear2027796270972013-07-05T13:18:11Z{{DatatypeProperty +| labels = +{{label|en|temple year}} +| rdfs:domain = Person +| rdfs:range = xsd:string +}}OntologyProperty:Tenant2021508492012015-10-14T13:03:12Z{{ObjectProperty +| labels = + {{label|en|tenant}} + {{label|de|Mieter}} + {{label|nl|huurder}} + {{label|el|ενοικιαστής}} + {{label|fr|locataire}} +| rdfs:domain = ArchitecturalStructure +| rdfs:range = Organisation +| rdfs:subPropertyOf = dul:sameSettingAs +}}OntologyProperty:TennisSurfaceType2026391236622013-02-05T18:49:38Z{{DatatypeProperty +| labels = + {{label|en|type of tennis surface}} + {{label|fr|type de surface (tennis)}} + {{label|es|tipo de surperficie(tennis}} + {{label|nl|type speelgrond}} +| comments = + {{comment|en|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.<ref>http://en.wikipedia.org/wiki/Tennis#Surface</ref>}} +| rdfs:range = xsd:string +}} + +== References == + +<references/>OntologyProperty:TermOfOffice2027271343622014-04-08T13:40:50Z{{DatatypeProperty +| labels = +{{label|en|term of office}} +{{label|de|Amtszeit}} +| rdfs:domain = PopulatedPlace +| rdfs:range = xsd:string +}}OntologyProperty:TermPeriod2025937366092014-07-08T14:23:24Z +{{ObjectProperty +| labels = + {{label|en|term period}} + {{label|el|χρονική περίοδος}} +| rdfs:range = TimePeriod +| rdfs:subPropertyOf = dul:hasSetting +}}OntologyProperty:Territory2021509567292022-02-28T14:55:13Z{{ObjectProperty +| labels = + {{label|en|territory}} + {{label|de|Gebiet}} + {{label|es|territorio}} + {{label|fr|territoire}} +| rdfs:domain = MilitaryConflict, AdministrativeRegion +| rdfs:range = PopulatedPlace +| rdfs:subPropertyOf = dul:hasParticipant +}}OntologyProperty:TerytCode2024204483762015-06-16T06:18:10Z{{ObjectProperty +| rdfs:label@en = TERYT code +| rdfs:label@pl = kod TERYT +| rdfs:domain = PopulatedPlace +| rdfs:comment@en = indexing code used by the Polish National Official Register of the Territorial Division of the Country (TERYT) to identify various entities +| rdfs:subPropertyOf = dul:isClassifiedBy +| owl:equivalentProperty = wikidata:P1653 +}}OntologyProperty:Tessitura2027755567732022-02-28T18:26:39Z{{DatatypeProperty +| labels = + {{label|en|tessitura}} + {{label|fr|tessiture}} +| rdfs:domain = Person +| rdfs:range = xsd:string +}}OntologyProperty:Testaverage202151083022010-05-28T13:45:57Z{{DatatypeProperty +| rdfs:label@en = testaverage +| rdfs:domain = School +| rdfs:range = xsd:float +}}OntologyProperty:Theology2026166343642014-04-08T13:40:57Z{{DatatypeProperty +| rdfs:label@en = Theology +| rdfs:label@de = Theologie +| rdfs:label@el = Θεολογία +| rdfs:domain = ChristianDoctrine +| rdfs:range = xsd:string +}}OntologyProperty:Third2027892273972013-07-10T15:23:39Z{{DatatypeProperty +| labels = +{{label|en|third}} +| rdfs:range = xsd:nonNegativeInteger +| rdfs:domain = Person +}}OntologyProperty:ThirdCommander2021511366122014-07-08T14:23:33Z +{{ObjectProperty +| rdfs:label@en = third commander +| rdfs:domain = MilitaryUnit +| rdfs:range = Person +| rdfs:subPropertyOf = dul:sameSettingAs +}}OntologyProperty:ThirdDriver2021512366132014-07-08T14:23:36Z +{{ObjectProperty +| rdfs:label@en = third driver +| rdfs:label@de = dritter Fahrer +| rdfs:domain = GrandPrix +| rdfs:range = Person +| rdfs:subPropertyOf = dul:hasParticipant +}}OntologyProperty:ThirdDriverCountry2021513366142014-07-08T14:23:40Z +{{ObjectProperty +| rdfs:label@en = third driver country +| rdfs:domain = GrandPrix +| rdfs:range = Country +| rdfs:subPropertyOf = dul:hasParticipant +}}OntologyProperty:ThirdPlace2028080343662014-04-08T13:41:06Z{{DatatypeProperty +| labels = +{{label|en|third place}} +{{label|de|dritter Platz}} +| rdfs:domain = owl:Thing +| rdfs:range = xsd:string +}}OntologyProperty:ThirdTeam2021514366152014-07-08T14:23:43Z +{{ObjectProperty +| labels = + {{label|en|third team}} + {{label|de|dritte Mannschaft}} + {{label|el|τρίτη ομάδα}} +| rdfs:domain = GrandPrix +| rdfs:range = SportsTeam +| rdfs:subPropertyOf = dul:hasParticipant +}}OntologyProperty:ThrowingSide2021515132352011-05-30T15:28:39Z{{DatatypeProperty +| rdfs:label@en = throwing side +| rdfs:domain = BaseballPlayer +| rdfs:range = xsd:string +| rdfs:comment = The side the player throws, Left, Right, or Unknown. +}}OntologyProperty:Thumbnail2024377388762014-12-14T14:05:42Z{{Reserved for DBpedia}} + + +{{ObjectProperty +| labels = + {{label|en|thumbnail}} +| comments = + {{comment|en|Reserved for DBpedia. {{Reserved for DBpedia}}}} +| rdfs:range = Image +| rdfs:subPropertyOf = dul:isExpressedBy +}}OntologyProperty:ThumbnailCaption2026774270282013-07-04T13:49:15Z{{DatatypeProperty +| labels = +{{label|en|thumbnail caption}} +| rdfs:domain = owl:Thing +| rdfs:range = xsd:string +}}OntologyProperty:Tie2027589344642014-04-08T14:58:11Z{{DatatypeProperty +| labels = +{{label|en|tie}} +{{label|de|Unentschieden}} +| rdfs:domain = Boxer +| rdfs:range = xsd:nonNegativeInteger +}}OntologyProperty:Time2028085515102016-09-18T10:51:49Z{{DatatypeProperty +| labels = + {{label|en|time}} + {{label|nl|tijd}} + {{label|de|Zeit}} + {{label|el|χρόνος}} +| comments = + {{comment|el|Χρόνος χαρακτηρίζεται η ακριβής μέτρηση μιας διαδικασίας από το παρελθόν στο μέλλον.}} +| rdfs:domain = owl:Thing +| rdfs:range = xsd:string +}}OntologyProperty:TimeInSpace2021517568092022-02-28T22:21:24Z{{DatatypeProperty +| labels = + {{label|en|total time person has spent in space}} + {{label|fr|temps total passé dans l'espace par la personne}} + {{label|de|Gesamtzeit welche die Person im Weltraum verbracht hat}} +| rdfs:range = Time +}}OntologyProperty:TimeZone2021686366172014-07-08T14:23:50Z +{{ObjectProperty +| labels = + {{label|ca|zona horària}} + {{label|en|time zone}} + {{label|de|Zeitzone}} + {{label|nl|tijdzone}} + {{label|pt|fuso horario}} + {{label|el|ζώνη_ώρας1}} + {{label|es|huso horario}} + {{label|pl|strefa czasowa}} + {{label|fr|fuseau horaire}} +| rdfs:domain = Place +| rdfs:subPropertyOf = dul:sameSettingAs +}}OntologyProperty:TimeshiftChannel2023212120092011-04-06T14:53:13Z{{DatatypeProperty +| rdfs:label@en = timeshift channel +| rdfs:domain = TelevisionStation +| rdfs:range = xsd:string +| rdfs:comment@en = A timeshift channel is a television channel carrying a time-delayed rebroadcast of its "parent" channel's output. (http://en.wikipedia.org/wiki/Timeshift_channel) +}}OntologyProperty:Title2021520536802020-07-30T21:34:36Z{{DatatypeProperty +| labels = +{{label|en|title}} +{{label|nl|titel}} +{{label|it|denominazione}} +{{label|de|Titel}} +{{label|el|Τίτλος}} +{{label|es|título}} +{{label|ja|タイトル}} +| rdfs:range = rdf:langString +| owl:equivalentProperty = schema:title +}}OntologyProperty:TitleDate2023351222092013-01-10T22:16:34Z{{DatatypeProperty +| labels = +{{label|en|title date}} +{{label|nl|titel datum}} +{{label|pt|data do titulo}} +|rdfs:domain = Person +|rdfs:range = xsd:date +}}OntologyProperty:TitleDouble2027715500872016-01-04T12:49:26Z{{DatatypeProperty +| labels = +{{label|en|title double}} +{{label|de|Doppeltitel}} +| rdfs:domain = TennisPlayer +| rdfs:range = xsd:string +}}OntologyProperty:TitleLanguage2027615268522013-07-02T13:36:00Z{{DatatypeProperty +| labels = +{{label|en|title language}} +| rdfs:domain = Film +| rdfs:range = xsd:string +}}OntologyProperty:TitleSingle2027712500882016-01-04T12:49:56Z{{DatatypeProperty +| labels = +{{label|en|title single}} +{{label|de|Einzeltitel}} +| rdfs:domain = TennisPlayer +| rdfs:range = xsd:string +}}OntologyProperty:Toll2023428124372011-04-26T15:05:30Z{{DatatypeProperty +| rdfs:label@en = toll +| rdfs:label@de = Maut +| rdfs:domain= RouteOfTransportation +| rdfs:range = Currency +}}OntologyProperty:TonyAward2021521366182014-07-08T14:23:53Z +{{ObjectProperty +| rdfs:label@en = Tony Award +| rdfs:domain = Artist +| rdfs:range = Award +| rdfs:subPropertyOf = dul:coparticipatesWith +}}OntologyProperty:TopFloorHeight2026432521712017-08-09T09:52:31Z{{DatatypeProperty +| labels = +{{label|en|top floor height}} +{{label|de|Höhe der höchsten Etage}} +| rdfs:domain = Skyscraper +| rdfs:range = xsd:nonNegativeInteger +}}OntologyProperty:TopLevelDomain2023323525522017-10-26T10:27:05ZTopLevelDomain +{{ObjectProperty +| rdfs:label@en = country top level (tld) +| rdfs:label@pt = domínio de topo (tld) +| rdfs:label@fr = domaine de premier niveau (tld) +| rdfs:domain = Country +| rdfs:range = TopLevelDomain +}}OntologyProperty:TopSpeed2021522185502012-05-19T16:21:26Z{{DatatypeProperty +| rdfs:label@en = top speed +| rdfs:label@de = Höchstgeschwindigkeit +| rdfs:range = Speed +| rdf:type = owl:FunctionalProperty +}}OntologyProperty:Topic2027277343742014-04-08T13:41:40Z{{DatatypeProperty +| labels = +{{label|en|topic}} +{{label|de|Thema}} +| rdfs:domain = PopulatedPlace +| rdfs:range = xsd:string +}}OntologyProperty:TorchBearer2021523366192014-07-08T14:23:56Z +{{ObjectProperty +| labels = + {{label|de|Fackelträger}} + {{label|en|torch bearer}} +| rdfs:domain = Olympics +| rdfs:range = Person +| rdfs:subPropertyOf = dul:hasParticipant +}}OntologyProperty:TorqueOutput202152483072010-05-28T13:46:39Z{{DatatypeProperty +| rdfs:label@en = torque output +| rdfs:domain = AutomobileEngine +| rdfs:range = Torque +| rdf:type = owl:FunctionalProperty +}}OntologyProperty:TotalCargo202152583082010-05-28T13:46:47Z{{DatatypeProperty +| rdfs:label@en = total cargo +| rdfs:domain = Spacecraft +| rdfs:range = Mass +}}OntologyProperty:TotalDiscs2025142170222012-03-23T14:39:14Z{{DatatypeProperty +| rdfs:label@en = total discs +| rdfs:comment@en = the total number of discs contained in the album +| rdfs:domain = Album +| rdfs:range = xsd:integer +}}OntologyProperty:TotalIliCases20212303536172020-04-10T06:37:58Z{{DatatypeProperty +| labels = +{{label|en|Total Pandemic Cases}} +| rdfs:comment@en = Total number of cases in a pandemic +| rdfs:domain = Outbreak +| rdfs:range = xsd:integer +}}OntologyProperty:TotalLaunches2021526104302010-11-10T14:55:16Z{{DatatypeProperty +| rdfs:label@en = total launches +| rdfs:range = xsd:nonNegativeInteger +}}OntologyProperty:TotalMass2021527343752014-04-08T13:41:44Z{{DatatypeProperty +| rdfs:label@en = total mass +| rdfs:label@de = Gesamtmasse +| rdfs:domain = Spacecraft +| rdfs:range = Mass +}}OntologyProperty:TotalPopulation2021528343762014-04-08T13:41:49Z{{DatatypeProperty +| rdfs:label@en = total population +| rdfs:label@de = Gesamtbevölkerung +| rdfs:domain = EthnicGroup +| rdfs:range = xsd:nonNegativeInteger +}}OntologyProperty:TotalTracks2025141537672020-10-14T17:54:05Z{{DatatypeProperty +| rdfs:label@en = total tracks +| rdfs:comment@en = the total number of tracks contained in the album +| rdfs:domain = Album +| rdfs:range = xsd:integer +| owl:equivalentProperty = mo:track_count +}}OntologyProperty:TotalTravellers2021529104322010-11-10T14:55:44Z{{DatatypeProperty +| rdfs:label@en = total travellers +| rdfs:domain = YearInSpaceflight +| rdfs:range = xsd:nonNegativeInteger +}}OntologyProperty:TotalVaccinations20213113548872021-07-26T03:51:20Z{{ObjectProperty +| labels = + {{label|en|Total Vaccinations}} +| comments = + {{comment|en|VaccinationStatistics: Total vaccinations per date and country.}} +| rdfs:domain = owl:Thing +| rdfs:range = VaccinationStatistics +}}OntologyProperty:TotalVaccinationsPerHundred20213117548912021-07-26T03:57:48Z{{ObjectProperty +| labels = + {{label|en|Total Vaccinations Per Hundred}} +| comments = + {{comment|en|VaccinationStatistics: vaccinations per hundred.}} +| rdfs:domain = owl:Thing +| rdfs:range = VaccinationStatistics +}}OntologyProperty:TouristicSite2026931366202014-07-08T14:23:59Z +{{ObjectProperty +| labels = + {{label|en|touristic site}} +| rdfs:domain = PopulatedPlace +| rdfs:range = Place +| rdfs:subPropertyOf = dul:hasPart +}}OntologyProperty:TournamentOfChampions2028053343772014-04-08T13:41:53Z{{DatatypeProperty +| labels = +{{label|en|tournament of champions}} +{{label|de|Turnier der Meister}} +| rdfs:domain = Athlete +| rdfs:range = xsd:string +}}OntologyProperty:TournamentRecord2021530343782014-04-08T13:41:57Z{{DatatypeProperty +| rdfs:label@en = tournament record +| rdfs:label@de = Turnierrekord +| rdfs:domain = CollegeCoach +| rdfs:range = xsd:string +}}OntologyProperty:TowerHeight2029341568322022-03-01T00:38:47Z{{DatatypeProperty +| labels = +{{label|en|tower height}} +{{label|fr|hauteur de la tour}} +{{label|de|Turmhöhe}} +{{label|nl|hoogte van de toren}} +| rdfs:domain = Building +| rdfs:range = xsd:positiveInteger +}}OntologyProperty:TrackLength2023595128062011-05-16T15:54:44Z{{DatatypeProperty +| rdfs:label@en = track length +| rdfs:label@de = Streckenlänge +| rdfs:domain = RouteOfTransportation +| rdfs:range = Length +| rdfs:comment@en = Length of the track. Wikipedians usually do not differentiate between track length and line lenght. +}}OntologyProperty:TrackNumber2021531537652020-10-14T17:48:52Z{{DatatypeProperty +| rdfs:label@en = track number +| rdfs:label@de = Titelnummer +| rdfs:label@el = νούμερο τραγουδιού +| rdfs:domain = Song +| rdfs:range = xsd:positiveInteger +| owl:equivalentProperty = mo:track_number +}}OntologyProperty:TrackWidth20211445495272015-11-14T15:18:15Z{{DatatypeProperty +| rdfs:label@en = track width +| rdfs:label@nl = spoorbreedte +| rdfs:domain = RouteOfTransportation +| rdfs:range = Length +| rdfs:comment@en = Width of the track, e.g., the track width differing in Russia from (Western and Middle) European track width +}}OntologyProperty:TradeMark2024783567432022-02-28T15:47:30Z{{ObjectProperty +| rdfs:label@en = TradeMark +| rdfs:label@es = Marca +| rdfs:label@fr = Marque commerciale +| rdfs:subPropertyOf = dul:sameSettingAs +}}OntologyProperty:TradingName20211901522832017-10-08T18:18:03Z{{DatatypeProperty +| rdfs:label@en = trading name +| rdfs:label@de = Handelsname +| rdfs:domain = Company +| rdfs:range = xsd:string +| rdfs:comment = Trade name, doing business as, d/b/a or fictitious business name under which a company presents itself to the public. This parameter is used only when the company has a legally registered trade name that is different from the company's full, legal name. +}}OntologyProperty:Trainer2021532366222014-07-08T14:24:06Z +{{ObjectProperty +| labels = + {{label|en|trainer}} + {{label|de|Trainer}} + {{label|el|εκπαιδευτής}} + {{label|fr|entraîneur}} + {{label|nl|trainer}} +| rdfs:domain = Athlete +| rdfs:range = Person +| rdfs:subPropertyOf = dul:coparticipatesWith +}}OntologyProperty:TrainerClub2025642366232014-07-08T14:24:18Z +{{ObjectProperty +| rdfs:label@en = trainer club +| rdfs:domain = SoccerPlayer +| rdfs:range = SportsTeam +| rdfs:subPropertyOf = dul:coparticipatesWith +}}OntologyProperty:TrainerYears2025643224602013-01-12T22:56:01Z{{ DatatypeProperty +| labels = +{{label|en|trainer years}} +{{label|nl|trainersjaren}} +| rdfs:domain = SoccerPlayer +| rdfs:range = xsd:gYear + +}}OntologyProperty:Training2021533366242014-07-08T14:24:20Z +{{ObjectProperty +| rdfs:label@en = training +| rdfs:label@de = Ausbildung +| rdfs:label@el = προπόνηση +| rdfs:domain = Artist +| rdfs:range = EducationalInstitution +| rdfs:subPropertyOf = dul:coparticipatesWith +}}OntologyProperty:TranslatedMotto2027432264712013-06-25T10:48:04Z{{DatatypeProperty +| labels = +{{label|en|translated motto}} +| rdfs:range = xsd:string +}}OntologyProperty:Translator2021534536722020-07-30T21:26:18Z +{{ObjectProperty +| labels = + {{label|en|translator}} + {{label|de|Übersetzer}} + {{label|nl|vertaler}} + {{label|el|μεταφραστής}} + {{label|fr|traducteur}} +| rdfs:domain = Work +| rdfs:range = Person +| rdfs:comment@en = Translator(s), if original not in English +| rdfs:subPropertyOf = dul:coparticipatesWith +| owl:equivalentProperty = schema:translator +}}OntologyProperty:Transmission2021535344652014-04-08T15:05:21Z{{DatatypeProperty +| rdfs:label@en = transmission +| rdfs:label@de = Getriebe +| rdfs:label@el = μετάδοση +| rdfs:domain = Automobile +| rdfs:range = xsd:string +}}OntologyProperty:Treatment20211865522022017-10-07T14:39:06Z{{ObjectProperty +| labels = + {{label|en|treatment}} + {{label|fr|traitement}} + {{label|de|Behandlung}} +| rdfs:domain = Disease +| rdfs:range = owl:Thing +}}OntologyProperty:Tree2027135343852014-04-08T13:42:34Z{{ObjectProperty +| labels = +{{label|en|tree}} +{{label|de|Baum}} +{{label|el|δέντρο}} +| rdfs:domain = Place +| rdfs:range = Species +}}OntologyProperty:Tribus2029286343862014-04-08T13:42:38Z{{ObjectProperty +| labels = +{{label|en|tribus}} +{{label|de|Stämme}} +{{label|nl|stam}} +| comments = +| rdfs:domain = Species +| rdfs:range = Species +}}OntologyProperty:Trustee2021536366262014-07-08T14:24:27Z +{{ObjectProperty +| rdfs:label@en = trustee +| rdfs:label@de = Treuhänder +| rdfs:domain = Organisation +| rdfs:range = Person +| rdfs:subPropertyOf = dul:sameSettingAs +}}OntologyProperty:Tuition2021537344662014-04-08T15:06:26Z{{DatatypeProperty +| rdfs:label@en = tuition +| rdfs:label@de = Schulgeld +| rdfs:domain = School +| rdfs:range = Currency +}}OntologyProperty:TvComId2022104529332018-03-01T12:35:57Z{{DatatypeProperty +| rdfs:label@en = tv.com id +| rdfs:domain = TelevisionShow +| rdfs:range = xsd:integer +| rdfs:subPropertyOf = code +}}OntologyProperty:TvShow2026828366272014-07-08T14:24:30Z +{{ObjectProperty +| labels = + {{label|en|tvShow}} + {{label|de|Fernsehsendung}} +| rdfs:domain = Person +| rdfs:range = TelevisionShow +| rdfs:subPropertyOf = dul:isParticipantIn +}}OntologyProperty:TwinCountry2021539366292014-07-08T14:24:36Z +{{ObjectProperty +| rdfs:label@en = twin country +| rdfs:label@de = Partnerland +| rdfs:domain = Country +| rdfs:range = Country +| rdfs:subPropertyOf = dul:sameSettingAs +}}OntologyProperty:TwinTown2021538476362015-04-03T14:53:33Z +{{ObjectProperty +| labels = + {{label|en|twin city}} + {{label|de|Partnerstadt}} + {{label|nl|tweeling stad}} +| rdfs:domain = Settlement +| rdfs:range = Settlement +| rdfs:subPropertyOf = dul:sameSettingAs +}}OntologyProperty:Type2021540517742016-12-20T07:28:44Z{{ObjectProperty +| labels = + {{label|en|type}} + {{label|de|Typ}} + {{label|el|τύπος}} + {{label|es|tipo}} + {{label|fr|type}} + {{label|nl|type}} + {{label|hi|प्रकार}} +| owl:equivalentProperty = <!-- not wikidata:P31, see Discussion page --> +| rdfs:subPropertyOf = dul:isClassifiedBy +}}OntologyProperty:TypeCoordinate2027208391172015-01-09T19:00:17Z{{DatatypeProperty +| labels = +{{label|en|type coordinate}} +| comments = +{{comment|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èle:Infobox_Subdivision_administrative for examples, and https://fr.wikipedia.org/wiki/Modèle:GeoTemplate/Utilisation#La_mention_Type:... for a complete list}} +| rdfs:domain = Place +| rdfs:range = xsd:string +}}OntologyProperty:TypeOfElectrification2023591366312014-07-08T14:24:42Z +{{ObjectProperty +| rdfs:label@en = type of electrification +| rdfs:label@de = Art der Elektrifizierung +| rdfs:domain = RouteOfTransportation +| rdfs:range = owl:Thing +| rdfs:comment@en = Electrification system (e.g. Third rail, Overhead catenary). +| rdfs:subPropertyOf = dul:isClassifiedBy +}}OntologyProperty:TypeOfGrain2028915343932014-04-08T13:43:18Z{{DatatypeProperty +| labels = +{{label|en|type of grain (wheat etc.)}} +{{label|de|Getreideart (Weizen usw.)}} +{{label|nl|graansoort}} +| rdfs:domain = Food +| rdfs:range = xsd:string +}}OntologyProperty:TypeOfStorage2028918343942014-04-08T13:43:22Z{{DatatypeProperty +| labels = +{{label|en|type of storage}} +{{label|de|Art der Lagerung}} +{{label|nl|lagering}} +| rdfs:domain = Food +| rdfs:range = xsd:string +}}OntologyProperty:TypeOfYeast2028916344672014-04-08T15:07:11Z{{DatatypeProperty +| labels = +{{label|en|type of yeast}} +{{label|de|Hefearte}} +{{label|nl|gistsoort}} +| rdfs:domain = Food +| rdfs:range = xsd:string +}}OntologyProperty:URN2023121528972018-02-13T12:34:18Z +{{ObjectProperty +| rdfs:label@en = unique reference number (URN) +| rdfs:comment@en = DfE unique reference number of a school in England or Wales +| rdfs:domain = School +| rdfs:subPropertyOf = code +}}OntologyProperty:UciCode2027358262042013-06-18T13:08:18Z{{DatatypeProperty +| labels = +{{label|en|UCI code}} +{{label|it|codice UCI}} +| comments = +{{comment|en|Official UCI code for cycling teams}} +| rdfs:domain = CyclingTeam +| rdfs:range = xsd:string +}}OntologyProperty:UlanId2028427528882018-02-13T11:02:02Z{{DatatypeProperty +| labels = +{{label|en|ULAN id}} +| comments = +{{comment|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). +http://vocab.getty.edu/ulan/$1}} +| rdfs:range = xsd:string +| owl:equivalentProperty = wikidata:P245 +| rdfs:subPropertyOf = code +}}OntologyProperty:UmbrellaTitle2025987348212014-05-15T05:05:32Z{{DatatypeProperty +| labels = +{{label|en|umbrella title}} +{{label|nl|overkoepelende titel}} +| rdfs:domain = MultiVolumePublication +| rdfs:range = rdf:langString +| rdfs:comment@en = +}}OntologyProperty:UnNumber20212040527942018-02-07T09:45:54Z{{DatatypeProperty +| rdfs:label@en = UN number +| rdfs:label@de = UN Nummer +| rdfs:label@fr = numéro ONU +| rdfs:comment@en = four-digit numbers that identify hazardous substances, and articles in the framework of international transport +| rdfs:domain = ChemicalSubstance +| rdfs:range = xsd:string +}}OntologyProperty:Uncle20212293535932020-01-30T18:46:01Z{{ObjectProperty +| labels = + {{label|en|uncle}} + {{label|nl|oom}} + {{label|de|Onkel}} + {{label|el|θείος}} + {{label|ja|おじさん}} + {{label|ar|اخو الام}} +| rdfs:domain = Man +| rdfs:range = Person +| owl:propertyDisjointWith = Aunt +}}OntologyProperty:UndraftedYear202154383182010-05-28T13:48:06Z{{DatatypeProperty +| rdfs:label@en = undrafted year +| rdfs:domain = GridironFootballPlayer +| rdfs:range = xsd:gYear +}}OntologyProperty:Unesco2026983366332014-07-08T14:24:49Z +{{ObjectProperty +| labels = + {{label|en|unesco}} +| rdfs:range = PopulatedPlace +| rdfs:domain = Place +| rdfs:subPropertyOf = dul:hasPart +}}OntologyProperty:Unicode2025349343962014-04-08T13:43:30Z{{ DatatypeProperty +| labels = + {{label|en|unicode}} +{{label|de|Unicode}} + {{label|el|unicode}} +| comments = + {{comment|el|το διεθνές πρότυπο Unicode στοχεύει στην κωδικοποίηση όλων των συστημάτων γραφής που χρησιμοποιούνται στον πλανήτη.}} +| rdfs:domain = Letter +| rdfs:range = xsd:string +}}OntologyProperty:Uniprot2021544191292012-07-31T11:14:37Z{{DatatypeProperty +| rdfs:label@en = UniProt +| rdfs:label@ja = UniProt +| rdfs:domain = Biomolecule +| rdfs:range = xsd:string +}}OntologyProperty:UnitCost2021545343972014-04-08T13:43:43Z{{DatatypeProperty +| rdfs:label@en = unit cost +| rdfs:label@de = Stückkosten +| rdfs:domain = Aircraft +| rdfs:range = Currency +}}OntologyProperty:UnitaryAuthority2022142366342014-07-08T14:24:54Z +{{ObjectProperty +| rdfs:label@en = unitary authority +| rdfs:label@sr = унитарна власт +| rdfs:domain = PopulatedPlace +| rdfs:range = PopulatedPlace +| rdfs:subPropertyOf = dul:sameSettingAs +}}OntologyProperty:UnitedStatesNationalBridgeId2021546306252014-01-22T08:18:56Z{{DatatypeProperty +| rdfs:label@en = United States National Bridge ID +| rdfs:label@sr = ID националног моста у Сједињеним Америчким Државама +| rdfs:domain = Bridge +| rdfs:range = xsd:string +}}OntologyProperty:University2021547525692017-10-30T23:24:56Z +{{ObjectProperty +| labels = + {{label|en|university}} + {{label|de|Universität}} + {{label|el|πανεπιστήμιο}} + {{label|sr|универзитет}} + {{label|ja|大学}} +| comments = + {{comment|en|university a person goes or went to.}} + {{comment|el|To πανεπιστήμιο είναι εκπαιδευτικό ίδρυμα ανώτατης εκπαίδευσης και επιστημονικής έρευνας που παρέχει πτυχίο πιστοποίησης ακαδημαϊκής εκπαίδευσης.}} +| rdfs:range = EducationalInstitution +| rdfs:subPropertyOf = dul:coparticipatesWith +}}OntologyProperty:UnknownOutcomes2021548306182014-01-22T08:11:42Z{{DatatypeProperty +| rdfs:label@en = unknown outcomes +| rdfs:label@sr = непознати исходи +| rdfs:domain = Rocket +| rdfs:range = xsd:nonNegativeInteger +| rdfs:comment@en = number of launches with unknown outcomes (or in progress) +| rdfs:comment@sr = број лансирања са непознатим исходом или број лансирања који су у току +}}OntologyProperty:UnloCode2022438483702015-06-16T06:01:53Z{{DatatypeProperty +| rdfs:label@en = UN/LOCODE +| rdfs:label@sr = UN/LOCODE +| rdfs:comment@en = 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. +| rdfs:comment@sr = UN/LOCODE је код Уједињених нација за трговинске и транспортне локације. Као што су луке, железнички и путни терминали, аеродроми, поште и гранични прелази. +| rdfs:domain = Place +| rdfs:range = xsd:string +| owl:equivalentProperty = wikidata:P1937 +}}OntologyProperty:Updated2025138306052014-01-22T07:55:23Z{{DatatypeProperty +| rdfs:label@en = updated +| rdfs:label@sr = ажуриран +| rdfs:comment@en = The last update date of a resource +| rdfs:comment@sr = датум последње измене +| rdfs:domain = owl:Thing +| rdfs:range = xsd:date +}}OntologyProperty:UpperAge2021549305972014-01-22T07:47:48Z{{DatatypeProperty +| rdfs:label@en = upper age +| rdfs:label@sr= горња старосна граница +| rdfs:domain = School +| rdfs:range = xsd:nonNegativeInteger +}}OntologyProperty:UrbanArea2026851492192015-10-15T07:16:22Z{{DatatypeProperty +| labels = +{{label|en|urban area}} +{{label|de|Stadtgebiet}} +{{label|sr|урбано подручје}} +| rdfs:domain = Settlement +| rdfs:range = xsd:string +}}OntologyProperty:UsOpenDouble2027725500732016-01-04T12:34:55Z{{DatatypeProperty +| labels = +{{label|en|us open double}} +{{label|sr|US Open дубл}} +| rdfs:domain = TennisPlayer +| rdfs:range = xsd:string +}}OntologyProperty:UsOpenMixed2027729500742016-01-04T12:35:50Z{{DatatypeProperty +| labels = +{{label|en|us open mixed}} +{{label|sr|US Open микс дубл}} +| rdfs:domain = TennisPlayer +| rdfs:range = xsd:string +}}OntologyProperty:UsOpenSingle2027721500892016-01-04T12:50:44Z{{DatatypeProperty +| labels = +{{label|en|us open single}} +{{label|sr|US Open појединачно}} +| rdfs:domain = TennisPlayer +| rdfs:range = xsd:string +}}OntologyProperty:UsSales2021551509672016-04-26T14:45:15Z{{DatatypeProperty +| rdfs:label@en = US sales +| rdfs:label@de = US-Verkäufe +| rdfs:label@sr = продаја у САД +| rdfs:domain = Sales +| rdfs:range = xsd:nonNegativeInteger +| rdfs:comment@en = Number of things (eg vehicles) sold in the US +}}OntologyProperty:UsedInWar2021570366362014-07-08T14:25:01Z +{{ObjectProperty +| rdfs:label@en = used in war +| rdfs:label@de = im Krieg eingesetzt +| rdfs:label@sr = коришћено у рату +| rdfs:domain = Weapon +| rdfs:range = MilitaryConflict +| rdfs:comment@en = wars that were typical for the usage of a weapon +| rdfs:subPropertyOf = dul:isParticipantIn +}}OntologyProperty:Uses2026801366372014-07-08T14:25:05Z +{{ObjectProperty +| rdfs:label@en = uses +| rdfs:label@sr = користи +| rdfs:domain = owl:Thing +| rdfs:range = owl:Thing +| rdfs:subPropertyOf = dul:isParticipantIn +}}OntologyProperty:UsingCountry2021550366382014-07-08T14:25:10Z +{{ObjectProperty +| rdfs:label@en = using country +| rdfs:domain = Currency +| rdfs:range = Country +| rdfs:subPropertyOf = dul:sameSettingAs +}}OntologyProperty:Usk2026413344022014-04-08T13:44:02Z{{DatatypeProperty +| labels = +{{label|en|approved rating of the Entertainment Software Self-Regulation Body in Germany}} +{{label|de|zugelassene Bewertung der Unterhaltungssoftware Selbstkontrolle in Deutschland}} +{{label|sr|одобрени рејтинг од стране регулаторног тела за забавни софтвер у Немачкој }} +| rdfs:domain = owl:Thing +| rdfs:range = xsd:integer +}}OntologyProperty:UsopenWins2027647306062014-01-22T07:56:21Z{{ObjectProperty +| labels = +{{label|en|usopen wins}} +{{label|sr|победе на US Open-у}} +| rdfs:domain = Person +| rdfs:range = skos:Concept +}}OntologyProperty:Usurper2027636305752014-01-22T07:15:48Z{{ObjectProperty +| labels = +{{label|en|usurper}} +{{label|sr|узурпатор}} +| rdfs:domain = Person +| rdfs:range = Person +}}OntologyProperty:UtcOffset2024200305742014-01-22T07:10:27Z{{DatatypeProperty +| rdfs:label@en = UTC offset +| rdfs:label@sr = UTC офсет +| rdfs:domain = Place +| rdfs:range = xsd:string +| rdfs:comment = The UTC offset is the time offset from Coordinated Universal Time (UTC). It is mostly given as hour or hour and minute. +| rdfs:comment = UTC офсет је временски офсет који се мери од Универзалне временске координате. Најчешће се приказује у сатима и минутима. +}}OntologyProperty:V hb2026156207212012-12-23T12:34:42Z{{DatatypeProperty +| rdfs:label@en = V_hb +| rdfs:domain = Globularswarm +| rdfs:range = xsd:integer +}}OntologyProperty:Vaccination20213093548292021-07-07T19:02:28Z{{ObjectProperty +| rdfs:label@en = vaccination +| rdfs:domain = Disease +| rdfs:range = Vaccine +}}OntologyProperty:Vaccine20213109569762022-03-09T10:36:48Z{{DatatypeProperty +| labels = + {{label|en|Vaccine}} + {{label|fr|Vaccin}} + {{label|zh|疫苗}} +| rdfs:domain = owl:Thing +| rdfs:range = xsd:string +}}OntologyProperty:Value2027907510912016-05-14T15:28:09Z{{DatatypeProperty +| labels = +{{label|en|value}} +{{label|de|Wert}} +{{label|fr|valeur}} +{{label|sr|вредност}} +| rdfs:range = xsd:nonNegativeInteger +}}OntologyProperty:Valvetrain2021552510642016-05-11T08:50:34Z +{{DatatypeProperty +| rdfs:label@en = valvetrain +| rdfs:label@de = Ventilsteuerung +| rdfs:label@fr = distribution (moteur) +| rdfs:domain = AutomobileEngine +| rdfs:range = valvetrain +| rdfs:subPropertyOf = <!-- dul:hasComponent -- defined as object property, see https://github.com/dbpedia/ontology-tracker/issues/9 --> +}}OntologyProperty:VaporPressure20211849528032018-02-07T19:33:00Z{{DatatypeProperty +| labels = +{{label|en|vapor pressure}} +{{label|nl|dampdruk}} +| rdfs:domain = ChemicalSubstance +| rdfs:range = hectopascal +}}OntologyProperty:VariantOf2021554366402014-07-08T14:25:18Z +{{ObjectProperty +| labels = + {{label|en|variant or variation}} + {{label|de|Variante oder Variation}} + {{label|sr|варијанта}} + {{label|nl|variant}} +| rdfs:comment@en = variant or variation of something, for example the variant of a car +| rdfs:subPropertyOf = dul:sameSettingAs +}} +варијантаOntologyProperty:Varietals2021555366412014-07-08T14:25:30Z +{{ObjectProperty +| rdfs:label@en = varietals +| rdfs:label@de = Rebsorten +| rdfs:domain = WineRegion +| rdfs:subPropertyOf = dul:isLocationOf +}}OntologyProperty:Vehicle2021556366422014-07-08T14:25:33Z +{{ObjectProperty +| rdfs:label@en = vehicle +| rdfs:label@sr = возило +| rdfs:label@el = όχημα +| rdfs:label@de = Vehikel +| rdfs:range = Automobile +| rdfs:comment@en = vehicle that uses a specific automobile platform +| rdfs:comment@el = όχημα που χρησιμοποιεί μια συγκεκριμένη πλατφόρμα αυτοκινήτων +| rdfs:subPropertyOf = dul:sameSettingAs +}}OntologyProperty:VehicleCode2022437305562014-01-21T15:10:56Z{{DatatypeProperty +| labels = +{{label|de|KFZ-Kennzeichen}} +{{label|en|vehicle code}} +{{label|sr|код возила}} +{{label|nl|voertuig code}} +| rdfs:comment@en = Region related vehicle code on the vehicle plates. +| rdfs:domain = Place +| rdfs:range = xsd:string +}}OntologyProperty:VehiclesInFleet20211894522572017-10-08T10:03:30Z{{ObjectProperty +| labels = + {{label|en|vehicle types in fleet}} + {{label|de|Fahrzeugtypen der Flotte}} +| rdfs:domain = PublicTransitSystem +| rdfs:range = MeanOfTransportation +| comments = +{{comment|en|Points out means of transport contained in the companies vehicle fleet.}} +}}OntologyProperty:VehiclesPerDay2023429306152014-01-22T08:09:54Z{{DatatypeProperty +| rdfs:label@en = vehicles per day +| rdfs:label@sr = број возила по дану +| rdfs:label@de = Fahrzeuge pro Tag +| rdfs:domain= RouteOfTransportation +| rdfs:range = xsd:nonNegativeInteger +}}OntologyProperty:Vein2021557366432014-07-08T14:25:35Z +{{ObjectProperty +| rdfs:label@en = vein +| rdfs:label@de = Vene +| rdfs:label@sr = вена +| rdfs:domain = AnatomicalStructure +| rdfs:range = Vein +| rdfs:subPropertyOf = dul:hasCommonBoundary +}}OntologyProperty:VeneratedIn2021558366442014-07-08T14:25:39Z +{{ObjectProperty +| labels = + {{label|en|venerated in}} + {{label|sr|поштован у}} + {{label|nl|vereerd in}} +| rdfs:domain = Saint +| rdfs:range = Organisation +| rdfs:subPropertyOf = dul:sameSettingAs +}}OntologyProperty:Version2029133316822014-02-10T17:26:28Z{{ObjectProperty +| rdfs:label@en = version +| rdfs:label@de = Version +| rdfs:label@nl = versie +| rdfs:domain = MeanOfTransportation +}}OntologyProperty:ViafId2028417528892018-02-13T11:02:59Z{{DatatypeProperty +| labels = +{{label|en|VIAF Id}} +{{label|sr|VIAF Id}} +{{label|nl|VIAF code}} +| comments = +{{comment|en|Virtual International Authority File ID (operated by Online Computer Library Center, OCLC). Property range set to Agent because of corporate authors }} +| rdfs:range = xsd:string +| owl:equivalentProperty = wikidata:P214 +| rdfs:subPropertyOf = code +}}OntologyProperty:ViceChancellor2021559366452014-07-08T14:25:42Z +{{ObjectProperty +| rdfs:label@en = vice chancellor +| rdfs:label@sr = потканцелар +| rdfs:label@de = Vizekanzler +| rdfs:range = Person +| rdfs:subPropertyOf = dul:sameSettingAs +}}OntologyProperty:ViceLeader2023355366462014-07-08T14:25:45Z +{{ObjectProperty +| rdfs:label@en = vice leader +| rdfs:label@pt = vicelider +| rdfs:domain = PopulatedPlace +| rdfs:range = Person +| rdfs:subPropertyOf = dul:sameSettingAs +}}OntologyProperty:ViceLeaderParty2023356366472014-07-08T14:25:49Z +{{ObjectProperty +| rdfs:label@en = vice leader party +| rdfs:label@de = stellvertretender Parteivorsitzende +| rdfs:label@pt = partido do vicelider +| rdfs:domain = PopulatedPlace +| rdfs:range = PoliticalParty +| rdfs:subPropertyOf = dul:sameSettingAs +}}OntologyProperty:VicePresident2022344568232022-03-01T00:14:37Z{{ObjectProperty +| labels = + {{label|en|vice president}} + {{label|fr|vice président}} + {{label|sr|потпредседник}} + {{label|de|Vizepräsident}} +| rdfs:range = Person +| rdfs:subPropertyOf = dul:sameSettingAs +}}OntologyProperty:VicePrimeMinister2022345366492014-07-08T14:25:56Z +{{ObjectProperty +| labels = + {{label|en|vice prime minister}} + {{label|de|Vizeministerpräsident}} + {{label|sr|заменик премијера}} + {{label|nl|vice premier}} +| rdfs:range = Person +| rdfs:subPropertyOf = dul:sameSettingAs +}}OntologyProperty:VicePrincipal2021561366502014-07-08T14:26:00Z +{{ObjectProperty +| rdfs:label@en = vice principal +| rdfs:label@sr = заменик директора +| rdfs:domain = School +| rdfs:range = Person +| rdfs:subPropertyOf = dul:sameSettingAs +}}OntologyProperty:VicePrincipalLabel2023117366512014-07-08T14:26:04Z +{{ObjectProperty +| rdfs:label@en = vice principal label +| rdfs:domain = School +| rdfs:subPropertyOf = dul:sameSettingAs +}}OntologyProperty:Victim2028030512392016-06-09T10:16:20Z{{ObjectProperty +| labels = +{{label|en|victim (resource)}} +{{label|de|das Opfer (resource)}} +{{label|sr|жртва (resource)}} +| rdfs:domain = owl:Thing +| rdfs:range = owl:Thing +| rdfs:comment@en = Specific (eg notable) person, or specific class of people (eg Romani) that are victim of a ConcentrationCamp, Criminal, SerialKiller, or some other atrocity +}}OntologyProperty:Victims20211700512372016-06-09T10:03:39Z{{DatatypeProperty +| labels = +{{label|en|victims (string)}} +{{label|de|die Opfer (string)}} +{{label|sr|жртви (string)}} +| rdfs:domain = owl:Thing +| rdfs:range = xsd:string +| rdfs:comment@en = Type, description, or name(s) of victims of a ConcentrationCamp, Criminal, SerialKiller, or some other atrocity +}}OntologyProperty:Victory2027586344112014-04-08T13:44:39Z{{DatatypeProperty +| labels = +{{label|en|victory}} +{{label|de|Sieg}} +{{label|sr|победа}} +| rdfs:domain = Person +| rdfs:range = xsd:nonNegativeInteger +}}OntologyProperty:VictoryAsMgr2027661269202013-07-03T12:23:46Z{{DatatypeProperty +| labels = +{{label|en|victory as manager}} +| rdfs:domain = Person +| rdfs:range = xsd:nonNegativeInteger +}}OntologyProperty:VictoryPercentageAsMgr2027663305352014-01-21T14:53:15Z{{DatatypeProperty +| labels = +{{label|en|victory percentage as manager}} +{{label|sr|проценат победа на месту менаџера}} +| rdfs:domain = Person +| rdfs:range = xsd:double +}}OntologyProperty:VirtualChannel2023182306282014-01-22T08:21:33Z{{DatatypeProperty +| rdfs:label@en = virtual channel +| rdfs:label@sr = виртуелни канал +| rdfs:label@el = εικονικό κανάλι +| rdfs:domain = Broadcaster +| rdfs:range = xsd:string +}}OntologyProperty:VisitorStatisticsAsOf2023239306322014-01-22T08:26:51Z{{DatatypeProperty +| rdfs:label@en = visitor statistics as of +| rdfs:label@sr = статистика посетилаца од +| rdfs:domain = ArchitecturalStructure +| rdfs:range = xsd:gYear +| rdfs:comment@en = Year visitor information was gathered. +}}OntologyProperty:VisitorsPerDay2023451305292014-01-21T14:47:28Z{{DatatypeProperty +| rdfs:label@en = visitors per day +| rdfs:label@sr= број посетилаца по дану +| rdfs:label@de = Besucher pro Tag +| rdfs:domain = ArchitecturalStructure +| rdfs:range = xsd:nonNegativeInteger +}}OntologyProperty:VisitorsPerYear2021565305282014-01-21T14:46:14Z{{DatatypeProperty +| labels = +{{label|en|visitors per year}} +{{label|sr|годишњи број посетилаца}} +{{label|nl|bezoekers per jaar}} +{{label|de|Besucher pro Jahr}} +| rdfs:domain = ArchitecturalStructure +| rdfs:range = xsd:nonNegativeInteger +}}OntologyProperty:VisitorsPercentageChange2023250305252014-01-21T14:45:07Z{{DatatypeProperty +| rdfs:label@en = visitor percentage change +| rdfs:label@sr= промена процента посетилаца +| rdfs:label@de = prozentuale Veränderung der Besucherzahl +| rdfs:domain = ArchitecturalStructure +| rdfs:range = xsd:double +| rdfs:comment@en = Percentage increase or decrease. +}}OntologyProperty:VisitorsTotal2021566344122014-04-08T13:44:47Z{{DatatypeProperty +| rdfs:label@en = visitors total +| rdfs:label@de = Gesamtbesucher +| rdfs:label@sr= укупан број посетилаца +| rdfs:label@el = επιβατική κίνηση +| rdfs:domain = ArchitecturalStructure +| rdfs:range = xsd:nonNegativeInteger +}}OntologyProperty:Voice2021567587962022-05-31T15:31:26Z{{ObjectProperty +| rdfs:label@en = voice +| rdfs:label@de = Stimme +| rdfs:label@sr = глас +| rdfs:comment@en = Voice artist used in a TelevisionShow, Movie, or to sound the voice of a FictionalCharacter +| rdfs:range = Person +| rdfs:subPropertyOf = dul:sameSettingAs +| owl:equivalentProperty = wikidata:P990 +}}OntologyProperty:VoiceType2021568568032022-02-28T21:58:02Z +{{ObjectProperty +| labels = + {{label|en|voice type}} + {{label|fr|type de voix}} + {{label|de|Stimmlage}} + {{label|sr|тип гласа}} + {{label|nl|stemtype}} +| rdfs:domain = Artist +| comments = + {{comment|en|voice type of a singer or an actor}} + {{comment|fr|type de voix pour un chanteur ou un acteur}} +| rdfs:subPropertyOf = dul:isClassifiedBy +}}OntologyProperty:VolcanicActivity2027061570362022-03-09T13:59:59Z{{DatatypeProperty +| labels = + {{label|en|volcanic activity}} + {{label|fr|activité volcanique}} + {{label|de|vulkanische Aktivität}} + {{label|sr|вулканска активност}} +| rdfs:domain = Island +| rdfs:range = xsd:string +}}OntologyProperty:VolcanicType2027060344162014-04-08T13:45:07Z{{DatatypeProperty +| labels = +{{label|en|volcanic type}} +{{label|de|Vulkantyp}} +{{label|sr|тип вулкана}} +| rdfs:domain = Island +| rdfs:range = xsd:string +}}OntologyProperty:VolcanoId2027063306362014-01-22T08:29:56Z{{DatatypeProperty +| labels = +{{label|en|volcano id}} +{{label|sr|id вулкана}} +| rdfs:domain = Island +| rdfs:range = xsd:string +}}OntologyProperty:VoltageOfElectrification2023592306372014-01-22T08:30:37Z{{DatatypeProperty +| rdfs:label@en = voltage of electrification +| rdfs:label@de = Voltzahl der Elektrifizierung +| rdfs:domain = RouteOfTransportation +| rdfs:range = Voltage +| rdfs:comment@en = Voltage of the electrification system. +}}OntologyProperty:Volume2021569344172014-04-08T13:45:11Z{{DatatypeProperty +| labels = +{{label|en|volume}} +{{label|de|Volumen}} +{{label|sr|запремина}} +{{label|nl|volume}} +{{label|el|όγκος}} +{{label|fr|volume}} +| rdfs:range = Volume +}}OntologyProperty:VolumeQuote2027095256192013-05-26T13:35:04Z{{DatatypeProperty +| labels = +{{label|en|volume quote}} +| rdfs:domain = Place +| rdfs:range = xsd:string +}}OntologyProperty:Volumes2025989366542014-07-08T14:26:13Z +{{ObjectProperty +| labels = + {{label|en|volumes}} + {{label|sr|томови}} + {{label|nl|delen}} +| rdfs:domain = MultiVolumePublication +| rdfs:range = WrittenWork +| rdfs:comment@en = +| rdfs:subPropertyOf = dul:hasMember +}}OntologyProperty:VonKlitzingConstant2029120458452015-03-14T20:09:45Z{{DatatypeProperty +| labels = +{{label|en|von Klitzing electromagnetic constant (RK)}} +{{label|de|von Klitzing elektromagnetisch Konstant (RK)}} +| rdfs:domain = CelestialBody +| rdfs:range = xsd:double +}}OntologyProperty:VotesAgainst2029130344182014-04-08T13:45:16Z{{DatatypeProperty +| rdfs:label@en = Votes against the resolution +| rdfs:label@de = Stimmen gegen die Resolution +| rdfs:label@nl = Aantal stemmen tegen +| rdfs:domain = StatedResolution +| rdfs:range = xsd:nonNegativeInteger +}}OntologyProperty:VotesFor2029131344192014-04-08T13:45:20Z{{DatatypeProperty +| rdfs:label@en = Number of votes in favour of the resolution +| rdfs:label@de = Anzahl der Stimmen für die Resolution +| rdfs:label@nl = Aantal stemmen voor +| rdfs:domain = StatedResolution +| rdfs:range = xsd:nonNegativeInteger +}}OntologyProperty:Wagon20211442495222015-11-14T14:52:00Z{{ObjectProperty +| rdfs:label@en = train carriage +| rdfs:label@nl = wagon +| rdfs:domain = Train +| rdfs:range = TrainCarriage +}}OntologyProperty:WaistSize2022411433142015-02-06T12:17:27Z{{DatatypeProperty + |rdfs:label@en=waist size + |rdfs:label@sr=димензије струка + |rdfs:label@de=Taillenumfang + |rdfs:label@ja=ウエスト + |rdfs:label@bg=размер талия + |rdfs:domain=Person + |rdfs:range=Length +}}OntologyProperty:War2025659344202014-04-08T13:45:24Z{{ DatatypeProperty +| labels = + {{label|en|wars}} +{{label|de|Kriege}} + {{label|sr|ратови}} + {{label|el|πολέμους}} + + | rdfs:domain = MilitaryPerson + | rdfs:range = xsd:string + +}}OntologyProperty:Ward2026963306392014-01-22T08:35:07Z{{DatatypeProperty +| labels = +{{label|en|ward of a liechtenstein settlement}} +| rdfs:domain = LiechtensteinSettlement +| rdfs:range = xsd:string +}} +штићеник од Лихтенштајна насељаOntologyProperty:Water2027146570352022-03-09T13:58:20Z{{DatatypeProperty +| labels = + {{label|en|water}} + {{label|fr|eau}} + {{label|de|Wasser}} + {{label|sr|вода}} +| rdfs:domain = Place +| rdfs:range = xsd:string +}}OntologyProperty:WaterArea2027039305052014-01-21T14:10:57Z{{DatatypeProperty +| labels = +{{label|en|area of water}} +{{label|sr|површина воде}} +| rdfs:domain = Place +| rdfs:range = Area +| owl:equivalentProperty = area +}}OntologyProperty:WaterPercentage2027040344222014-04-08T13:45:32Z{{DatatypeProperty +| labels = +{{label|en|water percentage of a place}} +{{label|de|Wasseranteil von einem Ort}} +{{label|sr|проценат воде неког места}} +| rdfs:domain = Place +| rdfs:range = xsd:float +}}OntologyProperty:Watercourse2027279344232014-04-08T13:45:36Z{{DatatypeProperty +| labels = +{{label|en|watercourse}} +{{label|de|Wasserlauf}} +{{label|sr|водоток}} +| rdfs:domain = PopulatedPlace +| rdfs:range = xsd:string +}}OntologyProperty:Watershed2021571344242014-04-08T13:45:45Z{{DatatypeProperty +| labels = +{{label|en|watershed}} +{{label|de|Wasserscheide}} +{{label|nl|waterscheiding}} +{{label|es|cuenca hidrográfica}} +{{label|el|λεκάνη_απορροής}} +| rdfs:domain = Stream +| rdfs:range = Area +}}OntologyProperty:WaterwayThroughTunnel2023432366552014-07-08T14:26:16Z +{{ObjectProperty +| rdfs:label@en = waterway through tunnel +| rdfs:label@sr = пловни пут кроз тунел +| rdfs:label@de = Wasserweg durch Tunnel +| rdfs:domain = WaterwayTunnel +| rdfs:range = owl:Thing +| rdfs:comment@en = Waterway that goes through the tunnel. +| rdfs:subPropertyOf = dul:hasCommonBoundary +}}OntologyProperty:Wavelength2022192344252014-04-08T13:45:54Z{{DatatypeProperty +| rdfs:label@en = wavelength +| rdfs:label@de = Wellenlänge +| rdfs:label@sr= таласна дужина +| rdfs:label@fr = longueur d'onde +| rdfs:range = Length +| rdfs:domain = Colour +}}OntologyProperty:Weapon2026817528672018-02-13T10:28:11Z{{ObjectProperty +| labels = +{{label|en|weapon}} +{{label|de|Waffe}} +{{label|sr|оружје}} +{{label|nl|wapen}} +{{label|fr|arme}} +| rdfs:domain = MilitaryConflict , Attack +| rdfs:range = Weapon +}}OntologyProperty:Webcast2023089366562014-07-08T14:26:19Z +{{ObjectProperty +| labels = + {{label|en|webcast}} + {{label|de|webcast}} + {{label|nl|webcast}} +| rdfs:domain = owl:Thing +| rdfs:range = owl:Thing +| rdfs:comment@en = The URL to the webcast of the Thing. +| rdfs:subPropertyOf = dul:isClassifiedBy +}}OntologyProperty:WebsiteLabel2026932348522014-05-15T05:20:03Z{{DatatypeProperty +| labels = +{{label|en|label of a website}} +| rdfs:range = rdf:langString +}}OntologyProperty:WeddingParentsDate2023350567742022-02-28T18:29:37Z{{DatatypeProperty +| labels = + {{label|en|Parents Wedding Date}} + {{label|fr|date de marriage des parents}} + {{label|sr|датум венчања родитеља}} + {{label|de|Hochzeitstag der Eltern}} + {{label|pt|data do casamento dos pais}} +|rdfs:domain = Person +|rdfs:range = xsd:date +}}OntologyProperty:Weight2021572527782018-01-23T15:03:37Z{{DatatypeProperty +| labels = +{{label|en|weight}} +{{label|sr|тежина}} +{{label|fr|poids}} +{{label|nl|gewicht}} +{{label|da|vægt}} +{{label|de|Gewicht}} +{{label|pt|peso}} +{{label|el|βάρος}} +{{label|ja|体重}} +| rdfs:range = Mass +| rdf:type = owl:FunctionalProperty +| owl:equivalentProperty = wikidata:P2067 +}}OntologyProperty:WestPlace20211085455982015-03-08T14:11:57Z{{ObjectProperty +| rdfs:label@en = west place +| rdfs:label@fr = lieu à l'ouest +| rdfs:comment@fr = indique un autre lieu situé à l'ouest. +| rdfs:comment@en = indicates another place situated west. +| rdfs:domain = Place +| rdfs:range = Place +| owl:inverseOf = eastPlace +| rdfs:subPropertyOf = closeTo +}}OntologyProperty:WhaDraft2021574304822014-01-21T13:49:11Z{{DatatypeProperty +| rdfs:label@en = wha draft +| rdfs:label@sr = WHA драфт +| rdfs:domain = IceHockeyPlayer +| rdfs:range = xsd:string +}}OntologyProperty:WhaDraftTeam2021575366572014-07-08T14:26:22Z +{{ObjectProperty +| rdfs:label@en = wha draft team +| rdfs:label@sr = WHA тим који је драфтовао играча +| rdfs:domain = IceHockeyPlayer +| rdfs:range = HockeyTeam +| rdfs:subPropertyOf = dul:isMemberOf +}}OntologyProperty:WhaDraftYear2021576304802014-01-21T13:48:29Z{{DatatypeProperty +| rdfs:label@en = wha draft year +| rdfs:label@sr = WHA година драфта +| rdfs:domain = IceHockeyPlayer +| rdfs:range = xsd:date +}}OntologyProperty:Wheelbase2021577527792018-01-23T15:04:03Z{{DatatypeProperty +| rdfs:label@en = wheelbase +| rdfs:label@de = Radstand +| rdfs:label@sr= међуосовинско растојање +| rdfs:domain = Automobile +| rdfs:range = Length +| rdf:type = owl:FunctionalProperty +| owl:equivalentProperty = wikidata:P3039 +}}OntologyProperty:WholeArea2027942344302014-04-08T13:46:34Z{{ObjectProperty +| labels = +{{label|en|whole area}} +{{label|de|gesamter Bereich}} +| rdfs:domain = Place +| rdfs:range = Area +}}OntologyProperty:Width2021578536762020-07-30T21:29:56Z{{DatatypeProperty +| labels = +{{label|en|width}} +{{label|es|ancho}} +{{label|sr|ширина}} +{{label|nl|breedte}} +{{label|de|Breite}} +{{label|el|πλάτος}} +| rdfs:range = Length +| rdf:type = owl:FunctionalProperty +| owl:equivalentProperty = schema:width, wikidata:P2049 +}}OntologyProperty:WidthQuote2027089256132013-05-26T13:32:39Z{{DatatypeProperty +| labels = +{{label|en|width quote}} +| rdfs:domain = Place +| rdfs:range = xsd:string +}}OntologyProperty:WikiPageCharacterSize2029354570372022-03-09T14:02:57Z'''{{Reserved for DBpedia}}''' + +{{DatatypeProperty +| labels = + {{label|en|Character size of wiki page}} + {{label|fr|Taille des caractères des pages wiki}} +| rdfs:domain = owl:Thing +| rdfs:range = xsd:nonNegativeInteger +| comments = +{{comment|en|Needs to be removed, left at the moment to not break DBpedia Live}} +{{comment|fr|A supprimer, laisser encore pour ne pas casser DBpedia Live}} +}}OntologyProperty:WikiPageDisambiguates2022426186922012-05-28T19:35:13Z'''{{Reserved for DBpedia}}''' + +{{ObjectProperty +| rdfs:label@en = Wikipage disambiguates +| rdfs:domain = owl:Thing +| rdfs:range = owl:Thing +| comments = +{{comment|en|Reserved for DBpedia. {{Reserved for DBpedia}}}} +}}OntologyProperty:WikiPageEditLink2028156287212013-11-06T15:33:22Z'''{{Reserved for DBpedia}}''' + +{{ObjectProperty +| rdfs:label@en = Link to the Wikipage edit URL +| rdfs:domain = owl:Thing +| rdfs:range = owl:Thing +| comments = +{{comment|en|Reserved for DBpedia. {{Reserved for DBpedia}}}} +}}OntologyProperty:WikiPageExternalLink2022430186932012-05-28T19:35:34Z'''{{Reserved for DBpedia}}''' + +{{ObjectProperty +| rdfs:label@en = Link from a Wikipage to an external page +| rdfs:domain = owl:Thing +| rdfs:range = owl:Thing +| comments = +{{comment|en|Reserved for DBpedia. {{Reserved for DBpedia}}}} +}}OntologyProperty:WikiPageExtracted2028154287182013-11-06T15:29:56Z'''{{Reserved for DBpedia}}''' + +{{DatatypeProperty +| rdfs:label@en = extraction datetime +| rdfs:range = xsd:dateTime +| comments = +{{comment|en|Date a page was extracted '''{{Reserved for DBpedia}}'''}} +}}OntologyProperty:WikiPageHistoryLink2028158287232013-11-06T18:20:28Z'''{{Reserved for DBpedia}}''' + +{{ObjectProperty +| rdfs:label@en = Link to the Wikipage history URL +| rdfs:domain = owl:Thing +| rdfs:range = owl:Thing +| comments = +{{comment|en|Reserved for DBpedia. {{Reserved for DBpedia}}}} +}}OntologyProperty:WikiPageID2022429186942012-05-28T19:35:43Z'''{{Reserved for DBpedia}}''' + +{{DatatypeProperty +| rdfs:label@en = Wikipage page ID +| rdfs:range = xsd:integer +| comments = +{{comment|en|Reserved for DBpedia. {{Reserved for DBpedia}}}} +}}OntologyProperty:WikiPageInDegree2029352345812014-04-16T19:24:05Z'''{{Reserved for DBpedia}}''' + +{{DatatypeProperty +| rdfs:label@en = Wiki page in degree +| rdfs:domain = owl:Thing +| rdfs:range = xsd:nonNegativeInteger +| comments = +{{comment|en|Reserved for DBpedia. {{Reserved for DBpedia}}}} +}}OntologyProperty:WikiPageInterLanguageLink2025779186982012-05-28T19:40:06Z'''{{Reserved for DBpedia}}''' + +{{ObjectProperty +| rdfs:label@en = Link from a Wikipage to a Wikipage in a different language about the same or a related subject. +| rdfs:domain = owl:Thing +| rdfs:range = owl:Thing +| comments = +{{comment|en|Reserved for DBpedia. {{Reserved for DBpedia}}}} +}}OntologyProperty:WikiPageLength2029376347982014-05-14T08:47:50Z'''{{Reserved for DBpedia}}''' + +{{DatatypeProperty +| rdfs:label@en = page length (characters) of wiki page +| rdfs:domain = owl:Thing +| rdfs:range = xsd:nonNegativeInteger +| comments = +{{comment|en|Reserved for DBpedia. {{Reserved for DBpedia}}}} +}}OntologyProperty:WikiPageLengthDelta20214274591062022-12-01T13:51:36Z{{DatatypeProperty +| labels = +{{label|en| Delta size of a revision with last one }} +{{label|fr| Delta de revision avec la précédante}} +|comments = +{‌{comment|en|This property is used by DBpedia History}‌} +{‌{comment|fr|Proprieté utilisée dans le cadre de DBpedia Historique}‌} +| rdfs:domain = Prov:Revision +| rdfs:range = xsd:integer +}}OntologyProperty:WikiPageModified2028157287222013-11-06T15:38:56Z'''{{Reserved for DBpedia}}''' + +{{DatatypeProperty +| rdfs:label@en = Wikipage modification datetime +| rdfs:range = xsd:dateTime +| comments = +{{comment|en|Reserved for DBpedia '''{{Reserved for DBpedia}}'''}} +}}OntologyProperty:WikiPageOutDegree2029353345822014-04-16T19:24:39Z'''{{Reserved for DBpedia}}''' + +{{DatatypeProperty +| rdfs:label@en = Wiki page out degree +| rdfs:domain = owl:Thing +| rdfs:range = xsd:nonNegativeInteger +| comments = +{{comment|en|Reserved for DBpedia. {{Reserved for DBpedia}}}} +}}OntologyProperty:WikiPageRedirects2022425186952012-05-28T19:36:13Z'''{{Reserved for DBpedia}}''' + +{{ObjectProperty +| rdfs:label@en = Wikipage redirect +| rdfs:domain = owl:Thing +| rdfs:range = owl:Thing +| comments = +{{comment|en|Reserved for DBpedia. {{Reserved for DBpedia}}}} +}}OntologyProperty:WikiPageRevisionID2022427186962012-05-28T19:36:22Z'''{{Reserved for DBpedia}}''' + +{{DatatypeProperty +| rdfs:label@en = Wikipage revision ID +| rdfs:range = xsd:integer +| comments = +{{comment|en|Reserved for DBpedia. {{Reserved for DBpedia}}}} +}}OntologyProperty:WikiPageRevisionLink2028155287202013-11-06T15:32:54Z'''{{Reserved for DBpedia}}''' + +{{ObjectProperty +| rdfs:label@en = Link to the Wikipage revision URL +| rdfs:domain = owl:Thing +| rdfs:range = owl:Thing +| comments = +{{comment|en|Reserved for DBpedia. {{Reserved for DBpedia}}}} +}}OntologyProperty:WikiPageUsesTemplate20211966574052022-04-11T18:16:54Z{{ObjectProperty +| labels = + {{label|en|wiki page uses template}} + {{label|fr|page wiki transcluant un modèle}} + {{label|de|Wikiseite verwendet Template}} +| comments = + {{comment|en|DO NOT USE THIS PROPERTY! For internal use only.}} + {{comment|fr|NE PAS UTILISER CETTE PROPRIETE! Réservé à l'usage interne uniquement.}} +| rdfs:range = WikimediaTemplate +}}OntologyProperty:WikiPageWikiLink2022431366582014-07-08T14:26:25Z'''{{Reserved for DBpedia}}''' + + +{{ObjectProperty +| rdfs:label@en = Link from a Wikipage to another Wikipage +| rdfs:domain = owl:Thing +| rdfs:range = owl:Thing +| comments = + {{comment|en|Reserved for DBpedia. {{Reserved for DBpedia}}}} +| rdfs:subPropertyOf = dul:associatedWith +}}OntologyProperty:WikiPageWikiLinkText20210113377362014-09-08T13:44:53Z'''{{Reserved for DBpedia}}''' + + +{{ObjectProperty +| rdfs:label@en = Text used to link from a Wikipage to another Wikipage +| rdfs:domain = owl:Thing +| rdfs:range = owl:Thing +| comments = + {{comment|en|Reserved for DBpedia. {{Reserved for DBpedia}}}} +| rdfs:subPropertyOf = +}}OntologyProperty:WikidataSplitIri20211440495202015-11-13T15:01:35Z{{ObjectProperty +| labels = + {{label|en|Wikidata IRI slit }} +| comments = + {{comment|en|is used to denote splitting of a Wikidata IRI to one or more IRIs }} +}}OntologyProperty:Wilaya2026844366592014-07-08T14:26:28Z +{{ObjectProperty +| labels = + {{label|en|wilaya}} + {{label|sr|вилајет}} +| rdfs:domain = Settlement +| rdfs:range = Place +| rdfs:subPropertyOf = dul:hasLocation +}}OntologyProperty:WimbledonDouble2027724500782016-01-04T12:40:41Z{{DatatypeProperty +| labels = +{{label|en|wimbledon double}} +{{label|sr|вимблдон дубл}} +| rdfs:domain = TennisPlayer +| rdfs:range = xsd:string +}}OntologyProperty:WimbledonMixed2027728500792016-01-04T12:42:47Z{{DatatypeProperty +| labels = +{{label|en|wimbledon mixed}} +{{label|sr|вимблдон микс дубл}} +| rdfs:domain = TennisPlayer +| rdfs:range = xsd:string +}}OntologyProperty:WimbledonSingle2027720500802016-01-04T12:43:15Z{{DatatypeProperty +| labels = +{{label|en|wimbledon single}} +{{label|sr|вимблдон појединачно}} +| rdfs:domain = TennisPlayer +| rdfs:range = xsd:string +}}OntologyProperty:WineProduced2021579366602014-07-08T14:26:31Z +{{ObjectProperty +| rdfs:label@en = wine produced +| rdfs:label@sr = производи вино +| rdfs:domain = WineRegion +| rdfs:subPropertyOf = dul:isLocationOf +}}OntologyProperty:WineRegion2021580366612014-07-08T14:26:34Z +{{ObjectProperty +| rdfs:label@en = wine region +| rdfs:label@de = Weinregion +| rdfs:label@sr = регион вина +| rdfs:domain = Grape +| rdfs:range = WineRegion +| rdfs:subPropertyOf = dul:hasLocation +}}OntologyProperty:WineYear2021581344332014-04-08T13:46:56Z{{DatatypeProperty +| rdfs:label@en = wine year +| rdfs:label@de = Weinjahr +| rdfs:label@sr = година флаширања вина +| rdfs:domain = WineRegion +| rdfs:range = xsd:date +}}OntologyProperty:WingArea2025630344342014-04-08T13:47:00Z{{ DatatypeProperty + + | rdfs:label@en = wing area +| rdfs:label@de = Flügelfläche + | rdfs:label@sr = површина крила + | rdfs:domain = Aircraft + | rdfs:range = Area + +}}OntologyProperty:Wingspan2025627344352014-04-08T13:47:04Z{{ DatatypeProperty + + | rdfs:label@en = wingspan +| rdfs:label@de = Spannweite + | rdfs:label@sr = распон крила + | rdfs:domain = Aircraft + | rdfs:range = Length + +}}OntologyProperty:Wins2021582524602017-10-15T21:26:46Z{{DatatypeProperty +| labels = +{{label|en|wins}} +{{label|de|Siege}} +{{label|sr|победе}} +{{label|el|νίκες}} +{{label|nl|zeges}} +| rdfs:domain = owl:Thing +| rdfs:range = xsd:nonNegativeInteger +}}OntologyProperty:WinsAtAlpg2022554366622014-07-08T14:26:37Z +{{ObjectProperty +| rdfs:label@en = wins at ALPG +| rdfs:label@sr = победе на ALPG +| rdfs:domain = GolfPlayer +| rdfs:subPropertyOf = dul:isParticipantIn +}}OntologyProperty:WinsAtAsia2022555366632014-07-08T14:26:41Z +{{ObjectProperty +| rdfs:label@en = wins at ASIA +| rdfs:domain = GolfPlayer +| rdfs:subPropertyOf = dul:isParticipantIn +}}OntologyProperty:WinsAtAus2022557366642014-07-08T14:26:44Z +{{ObjectProperty +| rdfs:label@en = wins at AUS +| rdfs:domain = GolfPlayer +| rdfs:subPropertyOf = dul:isParticipantIn +}}OntologyProperty:WinsAtChallenges2022559366652014-07-08T14:26:47Z +{{ObjectProperty +| rdfs:label@en = wins at challenges +| rdfs:domain = GolfPlayer +| rdfs:subPropertyOf = dul:isParticipantIn +}}OntologyProperty:WinsAtChampionships2022560366662014-07-08T14:26:50Z +{{ObjectProperty +| rdfs:label@en = wins at championships +| rdfs:domain = GolfPlayer +| rdfs:subPropertyOf = dul:isParticipantIn +}}OntologyProperty:WinsAtJLPGA2022563366672014-07-08T14:26:54Z +{{ObjectProperty +| rdfs:label@en = wins at JLPGA +| rdfs:label@sr = победе на JLPGA +| rdfs:domain = GolfPlayer +| rdfs:subPropertyOf = dul:isParticipantIn +}}OntologyProperty:WinsAtJapan2022562366682014-07-08T14:26:57Z +{{ObjectProperty +| rdfs:label@en = wins at japan +| rdfs:domain = GolfPlayer +| rdfs:subPropertyOf = dul:isParticipantIn +}}OntologyProperty:WinsAtKLPGA2022564366692014-07-08T14:27:15Z +{{ObjectProperty +| rdfs:label@en = wins at KLPGA +| rdfs:label@sr = победе на KLPGA +| rdfs:domain = GolfPlayer +| rdfs:subPropertyOf = dul:isParticipantIn +}}OntologyProperty:WinsAtLAGT2022565366702014-07-08T14:27:18Z +{{ObjectProperty +| rdfs:label@en = wins at LAGT +| rdfs:label@sr = победе на LAGT +| rdfs:domain = GolfPlayer +| rdfs:subPropertyOf = dul:isParticipantIn +}}OntologyProperty:WinsAtLET2022566366712014-07-08T14:27:22Z +{{ObjectProperty +| rdfs:label@en = wins at LET +| rdfs:label@sr = победе на LET +| rdfs:domain = GolfPlayer +| rdfs:subPropertyOf = dul:isParticipantIn +}}OntologyProperty:WinsAtLPGA2022567366722014-07-08T14:27:26Z +{{ObjectProperty +| rdfs:label@en = wins at LPGA +| rdfs:label@sr = победе на LPGA +| rdfs:domain = GolfPlayer +| rdfs:subPropertyOf = dul:isParticipantIn +}}OntologyProperty:WinsAtMajors2022568366732014-07-08T14:27:29Z +{{ObjectProperty +| rdfs:label@en = wins at majors +| rdfs:domain = GolfPlayer +| rdfs:subPropertyOf = dul:isParticipantIn +}}OntologyProperty:WinsAtNWIDE2022569366742014-07-08T14:27:33Z +{{ObjectProperty +| rdfs:label@en = wins at NWIDE +| rdfs:label@sr = победе на NWIDE +| rdfs:domain = GolfPlayer +| rdfs:subPropertyOf = dul:isParticipantIn +}}OntologyProperty:WinsAtOtherTournaments2022570366752014-07-08T14:27:36Z +{{ObjectProperty +| rdfs:label@en = wins at other tournaments +| rdfs:label@sr = победе на осталим турнирима +| rdfs:domain = GolfPlayer +| rdfs:subPropertyOf = dul:isParticipantIn +}}OntologyProperty:WinsAtPGA2022571366762014-07-08T14:27:40Z +{{ObjectProperty +| rdfs:label@en = wins at pga +| rdfs:label@sr = победе на PGA +| rdfs:domain = GolfPlayer +| rdfs:subPropertyOf = dul:isParticipantIn +}}OntologyProperty:WinsAtProTournaments2022572366772014-07-08T14:27:42Z +{{ObjectProperty +| rdfs:label@en = wins at pro tournaments +| rdfs:label@sr = победе на професионалним турнирима +| rdfs:domain = GolfPlayer +| rdfs:subPropertyOf = dul:isParticipantIn +}}OntologyProperty:WinsAtSenEuro2022573366782014-07-08T14:27:46Z +{{ObjectProperty +| rdfs:label@en = wins at Senior Euro +| rdfs:domain = GolfPlayer +| rdfs:subPropertyOf = dul:isParticipantIn +}}OntologyProperty:WinsAtSun2022574366792014-07-08T14:27:49Z +{{ObjectProperty +| rdfs:label@en = wins at sun +| rdfs:label@sr = победе на SUN +| rdfs:domain = GolfPlayer +| rdfs:subPropertyOf = dul:isParticipantIn +}}OntologyProperty:WinsInEurope2022561366802014-07-08T14:27:52Z +{{ObjectProperty +| rdfs:label@en = wins in Europe +| rdfs:label@sr = победе у Европи +| rdfs:label@de = Siege in Europa +| rdfs:domain = GolfPlayer +| rdfs:subPropertyOf = dul:isParticipantIn +}}OntologyProperty:WinterAppearances2021583366812014-07-08T14:27:55Z +{{ObjectProperty +| rdfs:label@en = winter appearances +| rdfs:label@sr = зимски наступи +| rdfs:domain = OlympicResult +| rdfs:range = OlympicResult +| rdfs:subPropertyOf = dul:sameSettingAs +}}OntologyProperty:WinterTemperature2021584344372014-04-08T13:47:14Z{{DatatypeProperty +| rdfs:label@en = winter temperature +| rdfs:label@de = Wintertemperatur +| rdfs:label@sr = зимска температура +| rdfs:domain = Settlement +| rdfs:range = Temperature +}}OntologyProperty:WoRMS20210349567962022-02-28T21:40:05Z{{ObjectProperty +| labels = +{{label|en|WoRMS}} +{{label|nl|WoRMS}} +{{label|fr|WoRMS}} +| comments = +{{comment|en|World Register of Marine Species}} +{{comment|fr|Registre mondial des espèces marines}} +| rdfs:domain = Species +}}OntologyProperty:WordBefore2027113303862014-01-21T10:56:51Z{{DatatypeProperty +| labels = +{{label|en|word before the country}} +{{label|sr|реч пре државе}} +| rdfs:domain = Country +| rdfs:range = xsd:string +}}OntologyProperty:Work2026812344382014-04-08T13:47:19Z{{DatatypeProperty +| labels = +{{label|en|work}} +{{label|de|Arbeit}} +| rdfs:domain = FictionalCharacter +| rdfs:range = xsd:string +}}OntologyProperty:WorkArea2026430303762014-01-21T10:49:21Z{{DatatypeProperty +| labels = +{{label|en|work area}} +{{label|sr|радни простор}} +{{label|de|Arbeitsplätze}} +| rdfs:domain = Building +| rdfs:range = Area +}}OntologyProperty:World2027765570302022-03-09T13:47:52Z{{ObjectProperty +| labels = +{{label|en|world}} +{{label|fr|monde}} +{{label|de|Welt}} +{{label|sr|свет}} +| rdfs:domain = Person +| rdfs:range = skos:Concept +}}OntologyProperty:WorldChampionTitleYear2023542303742014-01-21T10:44:32Z{{DatatypeProperty +| labels = + {{label|en|year of world champion title}} + {{label|sr|година освајања светског шампионата}} + {{label|nl|jaar van wereldkampioen titel}} + {{label|fr|année d'obtention du titre de champion du monde}} +| comments = + {{comment|en|can be one or several years}} + {{comment|sr|може бити једна или више година}} + {{comment|fr|il peut s'agir d'une ou de plusieurs années}} +| rdfs:domain = Athlete +| rdfs:range = xsd:string +}}OntologyProperty:WorldOpen2028050303702014-01-21T10:40:39Z{{DatatypeProperty +| labels = +{{label|en|world open}} +{{label|sr|светско отворено првенство}} +| rdfs:domain = Athlete +| rdfs:range = xsd:string +}}OntologyProperty:WorldTeamCup2027741303672014-01-21T10:37:27Z{{DatatypeProperty +| labels = +{{label|en|world team cup}} +{{label|sr|светско клупско првенство}} +| rdfs:domain = Athlete +| rdfs:range = xsd:string +}}OntologyProperty:WorldTournament2027567344402014-04-08T13:47:27Z{{ObjectProperty +| labels = +{{label|en|world tournament}} +{{label|de|Weltturnier}} +{{label|sr|светски турнир}} +| rdfs:range = Tournament +| rdfs:domain = Person +}}OntologyProperty:WorldTournamentBronze2027575303602014-01-21T10:31:26Z{{DatatypeProperty +| labels = +{{label|en|world tournament bronze}} +{{label|sr|број бронзаних медаља са светских турнира}} +| rdfs:domain = Person +| rdfs:range = xsd:nonNegativeInteger +}}OntologyProperty:WorldTournamentGold2027573307022014-01-22T10:41:42Z{{DatatypeProperty +| labels = +{{label|en|world tournament gold}} +{{label|sr|број златних медаља са светских турнира}} +| rdfs:domain = Person +| rdfs:range = xsd:nonNegativeInteger +}}OntologyProperty:WorldTournamentSilver2027574303552014-01-21T10:27:30Z{{DatatypeProperty +| labels = +{{label|en|world tournament silver}} +{{label|sr|број сребрних медаља са светских турнира}} +| rdfs:domain = Person +| rdfs:range = xsd:nonNegativeInteger +}}OntologyProperty:WorstDefeat2021585344502014-04-08T14:33:01Z{{DatatypeProperty +| rdfs:label@en = worst defeat +| rdfs:label@de = höchste Niederlage +| rdfs:label@sr = најтежи пораз +| rdfs:domain = SoccerClub +| rdfs:range = xsd:string +}}OntologyProperty:WptFinalTable2028041307042014-01-22T10:42:25Z{{DatatypeProperty +| labels = +{{label|en|wpt final table}} +{{label|sr|WPT финале}} +| rdfs:domain = PokerPlayer +| rdfs:range = xsd:nonNegativeInteger +}}OntologyProperty:WptItm2028042303482014-01-21T10:22:39Z{{DatatypeProperty +| labels = +{{label|en|wpt itm}} +{{label|sr|WPT ITM}} +| rdfs:domain = PokerPlayer +| rdfs:range = xsd:nonNegativeInteger +}}OntologyProperty:WptTitle2028040303462014-01-21T10:19:40Z{{DatatypeProperty +| labels = +{{label|en|wpt title}} +{{label|sr|WPT титула}} +| rdfs:domain = PokerPlayer +| rdfs:range = xsd:string +}}OntologyProperty:Writer2021586570492022-03-09T16:05:19Z{{ObjectProperty +| labels = + {{label|en|writer}} + {{label|en|auteur}} + {{label|sr|писац}} + {{label|de|schriftsteller}} + {{label|it|scrittore}} + {{label|nl|schrijver}} + {{label|el|σεναριογράφος}} +| rdfs:domain = Work +| rdfs:range = Person +| rdfs:subPropertyOf = dul:coparticipatesWith +}}OntologyProperty:WsopItm2028036303422014-01-21T10:17:02Z{{DatatypeProperty +| labels = +{{label|en|wsop itm}} +{{label|sr|WSOP ITM}} +| rdfs:domain = PokerPlayer +| rdfs:range = xsd:nonNegativeInteger +}}OntologyProperty:WsopWinYear2028039307062014-01-22T10:43:36Z{{DatatypeProperty +| labels = +{{label|en|wsop win year}} +{{label|sr|година освајања WSOP-а}} +| rdfs:domain = PokerPlayer +| rdfs:range = xsd:gYear +}}OntologyProperty:WsopWristband2028035303402014-01-21T10:02:59Z{{DatatypeProperty +| labels = +{{label|en|wsop wristband}} +{{label|sr|WSOP наруквица}} +| rdfs:domain = PokerPlayer +| rdfs:range = xsd:nonNegativeInteger +| rdfs:comment@sr = Наруквица коју осваја шампион WSOP-a. +}}OntologyProperty:Year2021587538062020-12-01T18:00:52Z{{DatatypeProperty +| labels = +{{label|en|year}} +{{label|sr|година}} +{{label|de|Jahr}} +{{label|it|anno}} +{{label|es|año}} +{{label|nl|jaar}} +{{label|el|έτος}} +{{label|fr|année}} +| rdfs:range = xsd:gYear +| owl:equivalentProperty=wikidata:P2257 +}}OntologyProperty:YearElevationIntoNobility2029289344422014-04-08T13:47:34Z{{DatatypeProperty +| labels = +{{label|en|year of elevation into the nobility}} +{{label|de|Jahr der Erhebung in den Adelsstand}} +{{label|nl|jaar van verheffing in de adelstand}} +| rdfs:domain = NobleFamily +| rdfs:range = xsd:string +}}OntologyProperty:YearOfConstruction2023221537182020-09-06T12:42:45Z{{DatatypeProperty +| labels = +{{label|en|year of construction}} +{{label|sr|година изградње}} +{{label|nl|bouwjaar}} +{{label|de|Baujahr}} +{{label|el|έτος κατασκευής}} +| rdfs:domain = Place +| rdfs:range = xsd:gYear +| rdfs:comment@en = The year in which construction of the Place was finished. +| rdfs:comment@sr = Година када је изградња нечега завршена. +| rdfs:comment@el = Το έτος στο οποίο ολοκληρώθηκε η κατασκευή ενός μέρους. +| owl:equivalentProperty = bag:oorspronkelijkBouwjaar +}}OntologyProperty:YearOfElectrification2023245303252014-01-21T09:51:21Z{{DatatypeProperty +| rdfs:label@en = year of electrification +| rdfs:label@sr = година електрификације +| rdfs:label@de = Jahr der Elektrifizierung +| rdfs:domain = Station +| rdfs:range = xsd:gYear +| rdfs:comment@en = Year station was electrified, if not previously at date of opening. +| rdfs:comment@sr = Година када је станица електрифицирана, уколико није била при отварању. +}}OntologyProperty:Years2021588514382016-08-16T07:30:44Z{{DatatypeProperty +| labels = +{{label|en|years}} +{{label|el|χρόνια}} +{{label|de|Jahre}} +{{label|sr|сезона}} +{{label|nl|seizoen}} +{{label|ja|年}} +| rdfs:domain = SoccerPlayer +| rdfs:range = xsd:gYear +}}OntologyProperty:YouthClub2021589514392016-08-16T07:31:49Z +{{ObjectProperty +| labels = + {{label|en|youth club}} + {{label|de|Jugendclub}} + {{label|sr|омладински клуб}} + {{label|nl|jeugdclub}} + {{label|ja|ユースクラブ}} +| rdfs:domain = Athlete +| rdfs:range = SportsTeam +| rdfs:subPropertyOf = dul:isMemberOf +}}OntologyProperty:YouthWing2023346366842014-07-08T14:28:05Z +{{ObjectProperty +| rdfs:label@en = youth wing +| rdfs:label@sr = омладинско крило +| rdfs:label@pt = ala jovem +| rdfs:domain = PoliticalParty +| rdfs:subPropertyOf = dul:hasPart +}}OntologyProperty:YouthYears2021590514432016-08-16T07:36:12Z{{DatatypeProperty +| rdfs:label@en = youth years +| rdfs:label@de = Jugendjahre +| rdfs:label@sr = омладинске године +| rdfs:label@ja = ユース年 +| rdfs:domain = SoccerPlayer +| rdfs:range = xsd:gYear +}}OntologyProperty:Zdb2025093303112014-01-21T09:26:54Z{{DatatypeProperty + |rdfs:label@en=zdb + |rdfs:label@sr=zdb + |rdfs:comment@en=Identifier for serial titles. More precise than issn + |rdfs:comment@sr=zdb је серијски број који се користи за индетификацију. Прецизнији је од issn. + |rdfs:domain=PeriodicalLiterature + |rdfs:range= xsd:string +}}OntologyProperty:ZipCode2027289527812018-01-23T15:05:06Z{{DatatypeProperty +| labels = +{{label|sr|Поштански код}} +{{label|en|zip code}} +{{label|el|ταχυδρομικός κώδικας}} +{{label|de| Postleitzahl}} +{{label|gl|código postal}} +{{label|nl|postcode}} +| rdfs:domain = PopulatedPlace +| rdfs:range = xsd:string +| rdfs:subPropertyOf = postalCode +| rdf:type =owl:FunctionalProperty +| owl:equivalentProperty = wikidata:P281 +}}OntologyProperty:ZodiacSign20210476488522015-09-08T18:06:20Z{{ObjectProperty +| rdfs:label@en = zodiac sign +| rdfs:label@gl = signo zodiacal +| rdfs:label@bg = зодия +| rdfs:comment@en = Zodiac Sign. Applies to persons, planets, etc +| rdfs:comment@bg = Зодиакален знак. Приложимо за хора, планети и пр +}}OntologyProperty:آب گیری اقتباس کا علاقہ20214254590692022-06-21T18:42:37Z{{DatatypeProperty +| labels = +{{label|ur|آب گیری اقتباس کا علاقہ}} +| rdfs:domain = جگہ +| rdfs:range = xsd:string +}}OntologyProperty:آبادیاتی20214194589362022-06-20T17:17:23Z{{DatatypeProperty +| labels = + +{{label|ur|آبادیاتی}} + +| rdfs:domain =آبادی والی جگہ +| rdfs:range = xsd:date + + +}}OntologyProperty:آخری تازہ کاری کی تاریخ20214152588312022-06-20T11:52:57Z{{DatatypeProperty +| rdfs:domain = دستاویز +| rdfs:range = xsd:date +| labels = + + + {{label|ur|آخری تازہ کاری کی تاریخ}} + + +}}OntologyProperty:آسٹریلیا اوپن ڈبل20214242590442022-06-21T17:44:35Z{{DatatypeProperty +| labels = +{{label|ur|آسٹریلیا اوپن ڈبل}} +| rdfs:domain = ٹینس کا کھلاڑی +| rdfs:range = xsd:string +}}OntologyProperty:ابی چرچ کی برکت20214197589442022-06-20T17:41:47Z{{DatatypeProperty +| rdfs:label@en = abbey church blessing +| labels = +{{label|ur|ابی چرچ کی برکت}} +| rdfs:domain = پادری +| rdfs:range = xsd:string +}}OntologyProperty:اثاثے20214248590572022-06-21T18:09:36Z{{DatatypeProperty +| labels = +{{label|ur|اثاثے}} +| rdfs:domain = تِجارتی اِدارہ +| rdfs:range = Currency +| comments = +{{comment|ur|اثاثے اور واجبات کمپنی کی بیلنس شیٹ کا حصہ ہیں۔ مالیاتی اکاؤنٹنگ میں، اثاثے اقتصادی وسائل ہیں۔ کوئی بھی ٹھوس یا غیر محسوس چیز جو قدر پیدا کرنے کے لیے ملکیت یا کنٹرول کرنے کے قابل ہو اور جس کی مثبت اقتصادی قدر ہو اسے اثاثہ سمجھا جاتا ہے۔}} +}}OntologyProperty:ادئیگی کی تاریخ20214193589342022-06-20T17:06:07Z{{DatatypeProperty +| labels = + +{{label|ur| ادئیگی کی تاریخ}} + |rdfs:range=xsd:date +}}OntologyProperty:الحاق20214230590202022-06-21T16:54:54Z{{DatatypeProperty +| labels = +{{label|ur|الحاق}} +| rdfs:domain = خیالی کردار +| rdfs:range = xsd:string +}}OntologyProperty:انتظامی اجتماعیت20214172588822022-06-20T14:23:18Z +{{ObjectProperty +| labels = + {{label|en|administrative collectivity}} +{{label|ur|انتظامی اجتماعیت}} +| rdfs:domain = بستی +| rdfs:range = آبادی والی جگہ +| rdfs:subPropertyOf = dul:coparticipatesWith +}}OntologyProperty:انتظامی درجہ20214185589142022-06-20T16:08:18Z{{DatatypeProperty +| labels = + +{{label|ur|انتظامی درجہ}} +{{label|en|administrative status}} +| rdfs:range = xsd:string +}}OntologyProperty:انتظامی ضلع20214228590162022-06-21T16:51:39Z + +{{ObjectProperty +| labels = +{{label|ur|انتظامی ضلع}} +| rdfs:domain = بستی +| rdfs:range = آبادی والی جگہ +| rdfs:subPropertyOf = http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#isPartOf, dul:isPartOf +}}OntologyProperty:انعام20214221590022022-06-21T10:22:33Z{{ObjectProperty +| labels = + {{label|ur|انعام}} +| rdfs:range = انعام +| owl:equivalentProperty = schema:awards , wikidata:P166, rkd:Award +| rdfs:subPropertyOf = dul:coparticipatesWith +}}OntologyProperty:اوسط سالانہ پیداوار20214223590062022-06-21T10:38:13Z{{DatatypeProperty +|labels={{label|ur|اوسط سالانہ پیداوار}} +|comments={{comment|ur|اوسط سالانہ مجموعی بجلی کی پیداوار}} +| rdfs:domain = بجلی گھر +| rdfs:range = Energy +| rdf:type = owl:FunctionalProperty +}}OntologyProperty:اوسط گہرائی اقتباس20214222590042022-06-21T10:28:00Z{{DatatypeProperty +| labels = +{{label|ur|اوسط گہرائی اقتباس}} +| rdfs:domain = جگہ +| rdfs:range = xsd:string +}}OntologyProperty:اکیڈمی ایوارڈ20214216589922022-06-21T07:26:46Z{{ObjectProperty +|labels={{label|ur|اکیڈمی ایوارڈ}} +| rdfs:domain = فنکار +| rdfs:range = انعام +| rdfs:subPropertyOf = dul:coparticipatesWith +|comments={{comment|ur|موشن تصویر پروڈکشن اور کارکردگی میں کامیابیوں کے لئے اکیڈمی آف موشن تصویر آرٹس اور سائنسز کے ذریعہ ایک سالانہ اعزاز}} +}}OntologyProperty:ایجنسی20214188589202022-06-20T16:26:11Z{{ObjectProperty +| labels = +{{label|en|agency}} + {{label|ur|ایجنسی}} +| rdfs:domain = شخص +}}OntologyProperty:ایجنسی اسٹیشن کوڈ20214232590242022-06-21T17:01:07Z{{DatatypeProperty +| labels = +{{label|ur|ایجنسی اسٹیشن کوڈ}} +| rdfs:domain = اڈا +| rdfs:range = xsd:string +|comments={{comment|ur|ایجنسی اسٹیشن کوڈ (ٹکٹ/مخصوص کرنے کا عمل وغیرہ پر استعمال کیا جاتا ہے)۔}} +}}OntologyProperty:ایک طرف20214225590092022-06-21T16:14:47Z{{DatatypeProperty +| labels = +{{label|ur| ایک طرف}} + + +| rdfs:domain = سنگل +| rdfs:range = xsd:string +| rdfs:comment@ur = +}}OntologyProperty:اے ایف آئی انعام20214187589182022-06-20T16:21:09Z +{{ObjectProperty +| rdfs:label@en = AFI Award +| labels = + {{label|ur|اے ایف آئی انعام}} +| rdfs:domain = فنکار +| rdfs:range = انعام +| rdfs:subPropertyOf = dul:coparticipatesWith +}}OntologyProperty:اے سی تی سکور20214218589962022-06-21T10:03:40Z +{{ObjectProperty +|labels={{label|ur|اے سی تی سکور}} +| rdfs:domain = مدرسه +| rdfs:subPropertyOf = dul:hasQuality +}}OntologyProperty:اے ٹی سی کوڈ20214245590502022-06-21T17:56:04Z{{DatatypeProperty +| labels = +{{label|ur|اے ٹی سی کوڈ}} +| rdfs:range = xsd:string +| rdfs:subPropertyOf = ضابطہ +}}OntologyProperty:بحث کی تاریخ20214238590362022-06-21T17:24:59Z{{DatatypeProperty +|labels={{label|ur|بحث کی تاریخ}} +| rdfs:domain = ریاستہائے متحدہ کی سپریم کورٹ کیس +| rdfs:range = xsd:date +}}OntologyProperty:تاریخ کا معاہدہ20214150588272022-06-20T11:45:19Z{{DatatypeProperty +| labels = + +{{label|ur|تاریخ کا معاہدہ}} +| rdfs:domain = جگہ +| rdfs:range = xsd:date +}}OntologyProperty:تاریخ کی نقاب کشائی20214153588362022-06-20T12:03:35Z{{DatatypeProperty +| labels = + +{{label|ur|تاریخ کی نقاب کشائی}} +| comments = + +{{comment|ur|نقاب کشائی کی تاریخ مقرر کرتا ہے۔}} +| rdfs:domain = یادگار +| rdfs:range = xsd:date +| rdf:type = +| rdfs:subPropertyOf = +| owl:equivalentProperty = +}}OntologyProperty:تعارفی علامت کا مطلب20214211589762022-06-21T06:12:56Z{{DatatypeProperty +|labels= +{{label|ur|تعارفی علامت کا مطلب}} +| rdfs:domain = ناشَر +| rdfs:range = xsd:string +|comments={{comment|ur|باہر لکھا ہوا کال سائن۔}} +}}OntologyProperty:تعارفی نشان20214209589722022-06-21T06:07:13Z{{DatatypeProperty +|labels= +{{label|ur|تعارفی نشان}} +|comments={{comment|ur|تعارفی نشان (جسے کال کا نام یا کال لیٹر بھی کہا جاتا ہے، یا مختصراً کال کے طور پر جانا جاتا ہے) ٹرانسمیٹنگ اسٹیشن کے لیے ایک منفرد عہدہ ہے۔}} +| rdfs:range = xsd:string +}}OntologyProperty:تعلیمی نظم و ضبط20214161588542022-06-20T13:17:29Z{{ObjectProperty +| rdfs:label@en = academic discipline +| labels = + {{label|ur|تعلیمی نظم و ضبط}} +| rdfs:domain =تعلیمی جریدہ +| rdfs:range = owl:Thing +| comments = +{{comment|ur|ایک قرارداد میٹنگ یا کنونشن کے ذریعہ اختیار کردہ ایک رسمی بیان کی وضاحت کرتی ہے}} +| rdfs:comment@en = 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. + +| rdfs:subPropertyOf = dul:isAbout +}}OntologyProperty:تفصیل20214157588422022-06-20T12:23:06Z{{DatatypeProperty +| labels = + +{{label|ur| تفصیل}} + +| rdfs:domain =کام +| rdfs:range = xsd:string +| comments = + + {{comment|ur| + ڈبلن کور ٹائپ کے ساتھ ہم آہنگ ہوں[http://dublincore.org/documents/dcmi-type-vocabulary/ڈبلن کور (ڈی سی) کی خصوصیات صرف میڈیا وسائل کے لیے استعمال کی جانی چاہیے جو کہ }} + +}}OntologyProperty:جامع کا علقه20214212589812022-06-21T06:18:03Z{{ObjectProperty +| labels = + {{label|ur|جامع کا علقه}} +| comments = + {{comment|ur|جامع کا علقه کا مطلب ہے کوئی بھی شہری جامع کا علقه جو جامع کے طلباء کو رہائشی، تدریسی اور تحقیقی سہولیات فراہم کرتا ہے۔}} +| rdfs:domain =جامع درس گاہ +| rdfs:subPropertyOf = dul:hasLocation +}}OntologyProperty:جامعہ کا ناپ20214213589852022-06-21T06:34:36Z{{DatatypeProperty +| rdfs:label@en = campus size +|labels={{label|ur|جامعہ کا ناپ}} +| rdfs:domain = مدرسه +| rdfs:range = Area +}}OntologyProperty:جامعہ کی قسم20214214589872022-06-21T06:38:20Z{{DatatypeProperty +|labels={{label|ur|جامعہ کی قسم}} +| rdfs:domain = تعلیمی ادارے +| rdfs:range = rdf:langString +}}OntologyProperty:جمع آبادیات20214233590262022-06-21T17:04:25Z{{ObjectProperty +| labels = +{{label|ur|جمع آبادیات}} +| rdfs:domain = آبادی والی جگہ +| rdfs:range = آبادیاتی +}}OntologyProperty:جمع کا علاقہ20214189589252022-06-20T16:43:08Z{{ObjectProperty +| labels = +{{label|en|agglomeration area}} +{{label|ur|جمع کا علاقہ}} +| rdfs:domain = آبادی والی جگہ +| rdfs:range = رقبہ +}}OntologyProperty:جوہری عدد20214243590462022-06-21T17:52:00Z{{DatatypeProperty +| labels = +{{label|ur|جوہری عدد}} +| comments = +{{comment|ur|کسی عنصر کے ایٹموں کی اوسط کمیت کا تناسب (ایک دیے گئے نمونے یا ماخذ سے) کاربن 12 کے ایٹم کے بڑے پیمانے پر}} +| rdfs:domain = کیمیائی عنصر +| rdfs:range = xsd:nonNegativeInteger +| owl:equivalentProperty = wikidata:P1086 +}} + +<references/>OntologyProperty:حساب کی ضرورت20214208589682022-06-21T06:00:23Z +{{ObjectProperty +|labels= +{{label|ur|حساب کی ضرورت}} +| rdfs:domain = owl:Thing +| rdfs:range = owl:Thing +}}OntologyProperty:حصول کی تاریخ20214164588652022-06-20T13:46:31Z{{DatatypeProperty +| rdfs:label@en=date of acquirement +| rdfs:label@de=Anschaffungszeitpunkt +| rdfs:label@el=ημερομηνία απόκτησης +| labels = + {{label|ur|حصول کی تاریخ}} +| rdfs:domain = جہاز +| rdfs:range = xsd:date + +}}OntologyProperty:خلاصہ20214201589522022-06-20T17:47:04Z'''{{Reserved for DBpedia}}''' + +{{DatatypeProperty +| labels = +{{label|en|has abstract}} +{{label|ur|خلاصہ}} +| rdfs:range = rdf:langString +}}OntologyProperty:رسائی20214163588612022-06-20T13:43:22Z{{DatatypeProperty +| labels = + {{label|en|access}} +{{label|ur|رسائی}} +| rdfs:range = xsd:string +}}OntologyProperty:رسائی کی تاریخ20214217589942022-06-21T09:56:27Z{{DatatypeProperty +| labels = +{{label|ur|رسائی کی تاریخ}} +| rdfs:range = xsd:date +}}OntologyProperty:رفیقه مدیر20214249590592022-06-21T18:31:08Z +{{ObjectProperty +| labels = + {{label|ur|رفیقه مدیر}} +| rdfs:domain = اخبار +| rdfs:range = شخص +| rdfs:subPropertyOf = dul:coparticipatesWith +}}OntologyProperty:رقبہ20214256590732022-06-21T18:48:49Z{{DatatypeProperty +| labels = +{{label|ur|رقبہ}} +| rdfs:range = Area +}}OntologyProperty:روزانہ ویکسین خام20214147588162022-06-20T11:10:01Z{{ObjectProperty +| labels = + +{{label|ur|روزانہ ویکسین خام}} +| comments = + +{{comment|ur|ویکسینیشن کے اعدادوشمار: روزانہ ویکسینیشن (خام ڈیٹا)۔}} +| rdfs:domain = owl:Thing +| rdfs:range = ویکسینیشن کے اعدادوشمار +}}OntologyProperty:رومانیہ کی تصفیہ کا اقتدار کا موضوع20214235590302022-06-21T17:13:17Z{{DatatypeProperty +| labels = +{{label|ur|رومانیہ کی تصفیہ کا اقتدار کا موضوع}} +| rdfs:domain = RomaniaSettlement +| rdfs:range = xsd:string +}}OntologyProperty:رہائی کی تاریخ20214196589412022-06-20T17:34:45Z{{DatatypeProperty +| rdfs:label@en = airdate +| labels = + {{label|ur|رہائی کی تاریخ}} +| rdfs:domain = ریڈیو سٹیشن +| rdfs:range = xsd:date +}}OntologyProperty:زمین کا علاقہ20214255590712022-06-21T18:46:06Z{{DatatypeProperty +| labels = +{{label|ur|زمین کا علاقہ}} +| rdfs:domain = جگہ +| rdfs:range = Area +}}OntologyProperty:زوال20214184589112022-06-20T16:04:55Z{{DatatypeProperty +| labels = + +{{label|ur| زوال}} + +| rdfs:domain =نکشتر +| rdfs:range = xsd:nonNegativeInteger + + +}}OntologyProperty:سامان کی جانچ پڑتال کر سکتے ہیں20214215589892022-06-21T06:40:54Z{{DatatypeProperty +|labels={{label|ur|سامان کی جانچ پڑتال کر سکتے ہیں}} +| rdfs:domain = اڈا +| rdfs:range = xsd:boolean +}}OntologyProperty:سرگرمی20214224590082022-06-21T15:38:32Z{{ObjectProperty +| labels = +{{label|ur|سرگرمی}} +| rdfs:domain = شخص +| owl:equivalentProperty = wikidata:P106 +}}OntologyProperty:سڑک میں واقع ہے20214171588792022-06-20T14:15:45Z +{{ObjectProperty +| rdfs:label@en = address in road +| labels = +{{label|ur|سڑک میں واقع ہے}} +| rdfs:domain = سڑک +| rdfs:range = owl:Thing +{{comment|ur|ایک عمارت، تنظیم یا دوسری چیز جو سڑک میں واقع ہے}} +| rdfs:comment@en = A building, organisation or other thing that is located in the road. +| rdfs:subPropertyOf = dul:isLocationOf +}}OntologyProperty:شروع20214182589072022-06-20T15:40:58Z{{DatatypeProperty +| labels = + +{{label|ur|شروع}} + +| rdfs:domain = پہلوان +| rdfs:range = xsd:date + +}}OntologyProperty:شکست20214190589262022-06-20T16:48:41Z{{DatatypeProperty +| labels = + +{{label|ur|شکست}} +| rdfs:domain =مکے باز +| rdfs:range = xsd:nonNegativeInteger +}}OntologyProperty:ضابطہ20214244590492022-06-21T17:55:54Z{{DatatypeProperty +| labels = +{{label|ur|ضابطہ}} +| rdfs:range = xsd:string +| owl:equivalentProperty=gn:featureCode +}}OntologyProperty:طَنابی گاڑی20214207589652022-06-21T05:53:09Z{{DatatypeProperty +| labels = +{{label|en|cable car}} +{{label|de|Drahtseilbahn}} +{{label|ur|طَنابی گاڑی}} +| rdfs:domain = جگہ +| rdfs:range = xsd:nonNegativeInteger +}}OntologyProperty:علاقے کا درجہ20214253590672022-06-21T18:37:54Z{{DatatypeProperty +| labels = +{{label|ur|علاقے کا درجہ}} +| rdfs:domain = جگہ +| rdfs:range = xsd:string +}}OntologyProperty:عمارتی دفتر20214257590752022-06-21T18:51:39Z +{{ObjectProperty +| rdfs:domain = تعمیراتی ڈھانچے +|labels={{label|ur|عمارتی دفتر}} +| rdfs:range = تِجارتی اِدارہ +| rdfs:subPropertyOf = dul:coparticipatesWith +}}OntologyProperty:عمر20214231590222022-06-21T16:56:18Z{{DatatypeProperty +| labels = +{{label|ur|عمر}} +| rdfs:domain = نمائندہ +| rdfs:range = xsd:integer +}}OntologyProperty:فعال سال20214219589982022-06-21T10:14:12Z{{DatatypeProperty +| labels = + {{label|ur|فعال سال}} +| rdfs:domain = شخص +| rdfs:range = xsd:string +| owl:equivalentProperty = gnd:periodOfActivity +}}OntologyProperty:فعال سال آخر سال20214220590002022-06-21T10:20:33Z{{DatatypeProperty +| labels = +{{label|ur|فعال سال آخر سال}} +| rdfs:domain = owl:Thing +| rdfs:range = xsd:gYear +}}OntologyProperty:فعال سال شروع سال Mgr20214168591292022-12-01T19:35:55Z{{DatatypeProperty +| labels = +{{label|en|active years start year manager}} +{{label|ur|فعال سال شروع سال }} +| rdfs:domain = شخص +| rdfs:range = xsd:gYear +}}OntologyProperty:فعال سال کی آخری تاریخ Mgr20214166588692022-06-20T13:52:38Z{{DatatypeProperty +| labels = +{{label|en|active years end date manager}} +{{label|ur|فعال سال کی آخری تاریخ Mgr}} +| rdfs:domain = شخص +| rdfs:range = xsd:string +}}OntologyProperty:فعال سال کی شروعات کی تاریخ20214167588712022-06-20T13:55:27Z{{DatatypeProperty +| labels = + +{{label|ur|فعال سال کی شروعات کی تاریخ}} +{{label|en|active years start date}} +| rdfs:range = xsd:date +}}OntologyProperty:فعال کیسز20214165588672022-06-20T13:49:36Z{{DatatypeProperty +| labels = +{{label|en|Active Cases}} +{{label|ur|فعال کیسز}} +{{comment|ur|ایک قرارداد میٹنگ یا کنونشن کے ذریعہ اختیار کردہ ایک رسمی بیان کی وضاحت کرتی ہے}} +| rdfs:comment@en = وبائی مرض میں فعال کیسوں کی تعداد +| rdfs:domain = ہنگامہ +| rdfs:range = xsd:integer +}}OntologyProperty:فن کاسرپرست20214240590402022-06-21T17:36:44Z +{{ObjectProperty +| labels = +{{label|ur|فن کاسرپرست}} +| rdfs:domain = نمائندہ +| rdfs:range = فنکار +| comments= +{{comment|ur|ایک بااثر، دولت مند شخص جس نے کسی فنکار، کاریگر، عالم یا بزرگ کی حمایت کی۔}} +| rdfs:subPropertyOf = dul:sameSettingAs +}} +<references/>OntologyProperty:فنکار20214241590422022-06-21T17:39:10Z +{{ObjectProperty +| labels = +{{label|ur|فنکار}} +| comments = +{{comment|ur|موسیقی کے کام کا اداکار یا تخلیق کار۔}} +| rdfs:domain =فنکار +| rdfs:range = نمائندہ +| owl:equivalentProperty = schema:byArtist, wikidata:P175 +| rdfs:subPropertyOf = dul:coparticipatesWith +}}OntologyProperty:فوج20214239590382022-06-21T17:31:01Z{{DatatypeProperty +| labels = +{{label|ur|فوج}} +| comments = +{{label|ur|فوج قوم کی زمینی قوت ہے۔}} +| rdfs:domain = فوجی شخص +| rdfs:range = xsd:string +}}OntologyProperty:مجموعی آبادی کا سال20214234590282022-06-21T17:05:45Z{{DatatypeProperty +| labels = +{{label|ur|مجموعی آبادی کا سال}} +| rdfs:domain = بستی +| rdfs:range = xsd:string +}}OntologyProperty:مجموعی آبادی کل20214191589302022-06-20T17:00:49Z{{DatatypeProperty +| labels = +{{label|en|agglomeration population total}} +{{label|ur|مجموعی آبادی کل}} +| rdfs:range = xsd:nonNegativeInteger +}}OntologyProperty:مخفف20214158588462022-06-20T12:56:54Z{{DatatypeProperty +| labels = +{{label|en|abbreviation}} +{{label|ur|مخفف}} +| rdfs:domain = owl:Thing +| rdfs:range = xsd:string +| owl:equivalentProperty = wikidata:P743 +}}OntologyProperty:مردہ لڑائی کی جگہ20214179589022022-06-20T15:32:07Z{{DatatypeProperty +| labels = + +{{label|ur|مردہ لڑائی کی جگہ}} +| rdfs:domain =شخص +| rdfs:range = xsd:string +}}OntologyProperty:مصنف20214236590322022-06-21T17:15:24Z{{ObjectProperty +| labels = +{{label|ur|مصنف}} +| rdfs:domain = کام +| rdfs:range = شخص +| owl:equivalentProperty = schema:author, wikidata:P50, bibschema:author, dblp2:authoredBy +| rdfs:subPropertyOf = dul:coparticipatesWith +}}OntologyProperty:معاملہ20214186589162022-06-20T16:11:11Z{{DatatypeProperty +| labels = +{{label|en|affair}} +{{label|ur|معاملہ}} +| rdfs:domain = شخص +| rdfs:range = xsd:string +}}OntologyProperty:مقامی حکومت کی انجمن20214251590632022-06-21T18:34:45Z +{{ObjectProperty +| labels = +{{label|ur|مقامی حکومت کی انجمن}} +| rdfs:domain = بستی +| rdfs:range = آبادی والی جگہ +| rdfs:subPropertyOf = dul:coparticipatesWith +}}OntologyProperty:ملحقہ بستی20214227590142022-06-21T16:49:17Z{{ObjectProperty +| labels = + {{label|ur|ملحقہ بستی}} +| rdfs:domain = بستی +| rdfs:range = بستی +| rdfs:subPropertyOf = dul:nearTo +}}OntologyProperty:منتظم20214229590182022-06-21T16:53:30Z{{ObjectProperty +| labels = +{{label|ur|منتظم}} + {{label|el|διαχειριστής}} +| rdfs:domain = تنظیم +| rdfs:range = شخص +}}OntologyProperty:منسلک سازینه20214250590612022-06-21T18:33:03Z +{{ObjectProperty +| labels = + {{label|ur|منسلک سازینه}} +| rdfs:range = گانے والوں کا گروہ +| rdfs:subPropertyOf = dul:isMemberOf +}}OntologyProperty:موت کی جگہ20214181589052022-06-20T15:36:46Z{{ObjectProperty +| labels = + +{{label|ur|موت کی جگہ}} +| rdfs:domain =جانور +| comments = + +{{comment|ur|وہ جگہ جہاں شخص کی موت ہوئی۔}} +| rdfs:range =جگہ +| owl:equivalentProperty = schema:deathPlace, wikidata:P20 +| rdfs:subPropertyOf = dul:hasLocation +}}OntologyProperty:موت کی عمر20214180589032022-06-20T15:33:40Z{{DatatypeProperty +| labels = + +{{label|ur|موت کی عمر}} + +| rdfs:domain =شخص +| rdfs:range = xsd:nonNegativeInteger +}}OntologyProperty:ناکارہ20214192589332022-06-20T17:02:33Z{{DatatypeProperty +| labels = + +{{label|ur|ناکارہ }} + +| rdfs:domain = تجارتی ادارہ, +| rdfs:range = xsd:boolean +| comments = + +{{comment|ur|اگر کمپنی ناکارہ ہے یا نہیں۔ اگر تاریخ دی گئی ہو تو اختتامی_تاریخ استعمال کریں۔}} +}}OntologyProperty:نشان نجوم20214246590522022-06-21T17:57:51ZAstrologicalSign + +{{ObjectProperty +| labels = +{{label|ur|نشان نجوم}} +| rdfs:domain = شخص +| rdfs:subPropertyOf = dul:isDescribedBy +}}OntologyProperty:نقصان20214148588202022-06-20T11:21:03Z{{ObjectProperty +| labels = + +{{label|ur|نقصان کی رقم}} +| rdfs:domain = تقریب +| rdfs:range = سکہ رائج الوقت +}}OntologyProperty:نقطہ نظر20214226590122022-06-21T16:41:47Z{{ObjectProperty +| labels = + {{label|en|approach}} + {{label|ur|نقطہ نظر}} + {{label|fr|approche}} +| rdfs:domain = شخص +}}OntologyProperty:پرہیز20214160588522022-06-20T13:09:30Z{{DatatypeProperty +| rdfs:label@en = abstentions +| labels = +{{label|ur|پرہیز}} +| rdfs:comment@ga= an líon daoine a staon ó vótáil +| comments = +{{comment|ur|ووٹ سے پرہیز کرنے والوں کی تعداد}} +| rdfs:domain = ریاستی قرارداد +| rdfs:range = xsd:nonNegativeInteger +}}OntologyProperty:پہلو کا تناسب20214247590542022-06-21T18:03:13Z +{{ObjectProperty +| rdfs:domain = تحریری پروگراموں کا مجموعہ +|labels={{label|ur|پہلو کا تناسب}} +|comments={{comment|ur|(ٹیلی وژن) تناسب نظر / عکس کی چوڑائی کا بلندی سے تناسب}} +| rdfs:subPropertyOf = dul:hasQuality +}}OntologyProperty:پیسنے کے قابل20214199589482022-06-20T17:44:59Z{{DatatypeProperty +| labels = +{{label|en|able to grind}} +{{label|ur|پیسنے کے قابل}} +{{label|de|mahlenfähig}} +{{label|nl|maalvaardig}} +| rdfs:domain = چکی +| rdfs:range = xsd:string +}}OntologyProperty:ڈیجیٹل لائبریری کوڈ20214156588392022-06-20T12:10:28Z{{DatatypeProperty +| labels = + +{{{label|ur| ڈیجیٹل لائبریری کوڈ NL}} + +| rdfs:domain = مصنف +| rdfs:range = xsd:string +| comments = + + {{comment|ur|ڈچ ڈیجیٹل لائبریری (dbnl) میں شناخت کنندہ}} + +}}OntologyProperty:ڈینس سکور20214149588222022-06-20T11:39:52Z{{DatatypeProperty +| labels = +{{label|ur|ڈینس سکور}} +| rdfs:domain = شخص +| rdfs:range = xsd:string +}}OntologyProperty:کل علاقے کی درجہ بندی20214252590652022-06-21T18:36:22Z{{ DatatypeProperty +|labels={{label|ur|کل علاقے کی درجہ بندی}} + + | rdfs:domain = آبادی والی جگہ + | rdfs:range = xsd:positiveInteger + +}}OntologyProperty:کپ سالانہ بین الاقوامی ٹیم ٹینس مقابلہ کے لئے نوازا20214155588372022-06-20T12:04:28Z{{DatatypeProperty +| labels = +{{label|en|davis cup}} +{{{label|ur| کپ سالانہ بین الاقوامی ٹیم ٹینس مقابلہ کے لئے نوازا}} + + +| rdfs:domain = ٹینس کا کھلاڑی +| rdfs:range = xsd:string +}}OntologyProperty:یونانی لفظ سے ماخُوذ20214183589092022-06-20T16:00:55Z{{DatatypeProperty +| labels = + +{{label|ur|یونانی لفظ سے ماخُوذ }} + +| rdfs:domain = کھلی بھیڑ +| rdfs:range = xsd:string +| comments = + + +}} \ No newline at end of file From cb1526d3df67f8ced2de9acbd0ac967d9a1c303e Mon Sep 17 00:00:00 2001 From: celian_ringwald Date: Tue, 6 Dec 2022 15:28:11 +0100 Subject: [PATCH 31/54] clean2 --- mappings/Mapping_el.xml | 4 +- mappings/Mapping_en.xml | 322 ++++++++++++++++++++-- mappings/Mapping_fr.xml | 590 ++++++++++++++++++++++++++++++++++++++-- mappings/Mapping_hu.xml | 9 +- pom.xml | 1 + 5 files changed, 868 insertions(+), 58 deletions(-) diff --git a/mappings/Mapping_el.xml b/mappings/Mapping_el.xml index 4a8fb2b587..e007a07a8d 100644 --- a/mappings/Mapping_el.xml +++ b/mappings/Mapping_el.xml @@ -3390,11 +3390,13 @@ {{PropertyMapping | templateProperty = μηχανικός | ontologyProperty = engineer }} -}}Mapping el:Κωμόπολη3049258323052014-03-07T15:17:23Z{{TemplateMapping +}}Mapping el:Κωμόπολη3049258590772022-09-02T09:18:56Z{{TemplateMapping | mapToClass = Village | mappings = {{PropertyMapping | templateProperty = όνομα | ontologyProperty = foaf:name }} {{PropertyMapping | templateProperty = Χώρα | ontologyProperty = country }} + {{PropertyMapping | templateProperty = Πληθυσμός | ontologyProperty = population }} + }}Mapping el:Κωμόπολη χωριό3044238210312012-12-26T09:52:15Z{{TemplateMapping | mapToClass = Village diff --git a/mappings/Mapping_en.xml b/mappings/Mapping_en.xml index 01288857db..4ccb420bca 100644 --- a/mappings/Mapping_en.xml +++ b/mappings/Mapping_en.xml @@ -1716,24 +1716,6 @@ http://en.wikipedia.org/w/index.php?title=Template:Beltasteroid-stub&action= {{PropertyMapping | templateProperty = minority_floor_leader7 | ontologyProperty = minorityFloorLeader }} {{PropertyMapping | templateProperty = minority_floor_leader8 | ontologyProperty = minorityFloorLeader }} {{PropertyMapping | templateProperty = minority_floor_leader9 | ontologyProperty = minorityFloorLeader }} -}}Mapping en:Infobox American football team2042290522372017-10-08T06:33:09Z{{TemplateMapping -| mapToClass = CanadianFootballTeam -| mappings = - {{PropertyMapping | templateProperty = name | ontologyProperty = foaf:name}} - {{PropertyMapping | templateProperty = founded | ontologyProperty = foundingYear}} - {{PropertyMapping | templateProperty = location | ontologyProperty = location}} - {{PropertyMapping | templateProperty = field | ontologyProperty = homeStadium}} - {{PropertyMapping | templateProperty = division | ontologyProperty = league}} - - {{PropertyMapping | templateProperty = general manager | ontologyProperty = generalManager }} - {{PropertyMapping | templateProperty = coach | ontologyProperty = coach }} - {{PropertyMapping | templateProperty = owner | ontologyProperty = owner }} - - {{PropertyMapping | templateProperty = chairman | ontologyProperty = chairman }} - {{PropertyMapping | templateProperty = president | ontologyProperty = president }} - {{PropertyMapping | templateProperty = team_owners | ontologyProperty = owner }} - {{PropertyMapping | templateProperty = team_ presidents | ontologyProperty = president }} - {{PropertyMapping | templateProperty = nicknames | ontologyProperty = foaf:name }} }}Mapping en:Infobox Australia state or territory2043487742015-08-13T12:59:09Z{{TemplateMapping | mapToClass = AdministrativeRegion | mappings = @@ -7458,7 +7440,15 @@ http://dbpedia.org/sparql?default-graph-uri=http%3A%2F%2Fdbpedia.org&query=s <!-- {{PropertyMapping | templateProperty = bus | ontologyProperty = ??? }} --> <!-- {{PropertyMapping | templateProperty = airport | ontologyProperty = ??? }} --> <!-- {{PropertyMapping | templateProperty = port | ontologyProperty = ??? }} --> -}}Mapping en:Infobox Japanese film20411932524332017-10-15T16:06:00Z#REDIRECT [[Mapping en:Infobox film]]Mapping en:Infobox Judge204128526292017-10-31T17:37:42Z#REDIRECT [[Mapping en:Infobox officeholder]]Mapping en:Infobox Kibbutz20411943524652017-10-15T21:39:30Z#REDIRECT [[Mapping en:Infobox Israel village]]Mapping en:Infobox Korean film2046334220832013-01-09T22:00:49Z{{ TemplateMapping | mapToClass = Film | mappings = +}}Mapping en:Infobox Japanese film20411932524332017-10-15T16:06:00Z#REDIRECT [[Mapping en:Infobox film]]Mapping en:Infobox Jewish leader20413562560552021-09-26T07:45:39Z{{TemplateMapping +| mapToClass = JewishLeader +| mappings = + {{ PropertyMapping | templateProperty = name | ontologyProperty = foaf:name }} + {{ PropertyMapping | templateProperty = website | ontologyProperty = foaf:homepage }} + {{ PropertyMapping | templateProperty = birth_date | ontologyProperty = birthDate }} + {{ PropertyMapping | templateProperty = nationality | ontologyProperty = nationality }} + {{ PropertyMapping | templateProperty = spouse| ontologyProperty = spouse}} +}}Mapping en:Infobox Judge204128526292017-10-31T17:37:42Z#REDIRECT [[Mapping en:Infobox officeholder]]Mapping en:Infobox Kibbutz20411943524652017-10-15T21:39:30Z#REDIRECT [[Mapping en:Infobox Israel village]]Mapping en:Infobox Korean film2046334220832013-01-09T22:00:49Z{{ TemplateMapping | mapToClass = Film | mappings = {{ PropertyMapping | templateProperty = director | ontologyProperty = director }} {{ PropertyMapping | templateProperty = producer | ontologyProperty = producer }} {{ PropertyMapping | templateProperty = writer | ontologyProperty = writer }} @@ -7585,7 +7575,23 @@ http://dbpedia.org/sparql?default-graph-uri=http%3A%2F%2Fdbpedia.org&query=s {{PropertyMapping | templateProperty = area_km2 | ontologyProperty = areaTotal | unit = squareKilometre }} {{PropertyMapping | templateProperty = density_km2 | ontologyProperty = populationDensity | unit = inhabitantsPerSquareKilometre }} {{GeocoordinatesMapping | latitudeDegrees = latd | latitudeMinutes = latm | latitudeSeconds = lats | latitudeDirection = latNS | longitudeDegrees = longd | longitudeMinutes = longm | longitudeSeconds = longs | longitudeDirection = longEW }} -}}Mapping en:Infobox Lake20411295525642017-10-26T14:22:48Z#REDIRECT [[Mapping en:Infobox body of water]]Mapping en:Infobox London station2043444525252017-10-18T12:36:21Z{{ConditionalMapping +}}Mapping en:Infobox LDS biography20413574560682021-10-02T09:00:46Z{{TemplateMapping +| mapToClass = LatterDaySaint +| mappings = + {{ PropertyMapping | templateProperty = name | ontologyProperty = foaf:name }} + {{ PropertyMapping | templateProperty = website | ontologyProperty = foaf:homepage }} + {{ PropertyMapping | templateProperty = birth_date | ontologyProperty = birthDate }} + {{ PropertyMapping | templateProperty = nationality | ontologyProperty = nationality }} + {{ PropertyMapping | templateProperty = spouse| ontologyProperty = spouse}} +}}Mapping en:Infobox Lake20411295525642017-10-26T14:22:48Z#REDIRECT [[Mapping en:Infobox body of water]]Mapping en:Infobox Latter Day Saint biography20413573560672021-10-02T08:59:01Z{{TemplateMapping +| mapToClass = LatterDaySaint +| mappings = + {{ PropertyMapping | templateProperty = name | ontologyProperty = foaf:name }} + {{ PropertyMapping | templateProperty = website | ontologyProperty = foaf:homepage }} + {{ PropertyMapping | templateProperty = birth_date | ontologyProperty = birthDate }} + {{ PropertyMapping | templateProperty = nationality | ontologyProperty = nationality }} + {{ PropertyMapping | templateProperty = spouse| ontologyProperty = spouse}} +}}Mapping en:Infobox London station2043444525252017-10-18T12:36:21Z{{ConditionalMapping | cases = {{Condition @@ -8488,7 +8494,7 @@ http://dbpedia.org/sparql?default-graph-uri=http%3A%2F%2Fdbpedia.org&query=s {{PropertyMapping | templateProperty = founded | ontologyProperty = formationYear }} {{PropertyMapping | templateProperty = general_manager | ontologyProperty = generalManager }} {{PropertyMapping | templateProperty = head_coach | ontologyProperty = manager }} -}}Mapping en:Infobox NRHP204169528102018-02-08T19:21:57Z{{ConditionalMapping +}}Mapping en:Infobox NRHP204169549222021-09-06T14:33:27Z{{ConditionalMapping | cases = {{Condition | templateProperty = built @@ -8539,6 +8545,9 @@ http://dbpedia.org/sparql?default-graph-uri=http%3A%2F%2Fdbpedia.org&query=s {{GeocoordinatesMapping | latitudeDegrees = lat_degrees | latitudeMinutes = lat_minutes | latitudeSeconds = lat_seconds | latitudeDirection = lat_direction | longitudeDegrees = long_degrees | longitudeMinutes = long_minutes | longitudeSeconds = long_seconds | longitudeDirection = long_direction }} {{GeocoordinatesMapping | coordinates = coordinates }} + +{{ PropertyMapping | templateProperty = website | ontologyProperty = foaf:homepage }} + }}Mapping en:Infobox NS-station2043445513902016-08-01T14:35:57Z{{TemplateMapping | mapToClass = Station | mappings = @@ -8562,6 +8571,14 @@ http://dbpedia.org/sparql?default-graph-uri=http%3A%2F%2Fdbpedia.org&query=s | longitudeMinutes = lonmin | longitudeSeconds = lonsec }} +}}Mapping en:Infobox Native American leader20413579560732021-10-02T10:26:26Z{{TemplateMapping +| mapToClass = AmericanLeader +| mappings = + {{ PropertyMapping | templateProperty = name | ontologyProperty = foaf:name }} + {{ PropertyMapping | templateProperty = website | ontologyProperty = foaf:homepage }} + {{ PropertyMapping | templateProperty = birth_date | ontologyProperty = birthDate }} + {{ PropertyMapping | templateProperty = nationality | ontologyProperty = nationality }} + {{ PropertyMapping | templateProperty = spouse| ontologyProperty = spouse}} }}Mapping en:Infobox Neighborhood Portland OR204161485562015-08-05T15:20:16Z{{TemplateMapping | mapToClass = AdministrativeRegion | mappings = @@ -13777,6 +13794,21 @@ http://dbpedia.org/sparql?default-graph-uri=http%3A%2F%2Fdbpedia.org&query=s {{PropertyMapping | templateProperty = city | ontologyProperty = location }} {{PropertyMapping | templateProperty = lastevent | ontologyProperty = previousEvent }} {{PropertyMapping | templateProperty = nextevent | ontologyProperty = followingEvent }} +}}Mapping en:Infobox YouTube personality20412513540992021-06-24T04:19:56Z{{TemplateMapping +| mapToClass = Youtuber +| mappings = + {{ PropertyMapping | templateProperty = name | ontologyProperty = foaf:name }} + {{ PropertyMapping | templateProperty = website | ontologyProperty = foaf:homepage }} + {{ PropertyMapping | templateProperty = birth_date | ontologyProperty = birthDate }} + {{ PropertyMapping | templateProperty = nationality | ontologyProperty = nationality }} +}}Mapping en:Infobox academic20413557560772021-10-02T10:34:52Z{{TemplateMapping +| mapToClass = Academic +| mappings = + {{ PropertyMapping | templateProperty = name | ontologyProperty = foaf:name }} + {{ PropertyMapping | templateProperty = website | ontologyProperty = foaf:homepage }} + {{ PropertyMapping | templateProperty = birth_date | ontologyProperty = birthDate }} + {{ PropertyMapping | templateProperty = nationality | ontologyProperty = nationality }} + {{ PropertyMapping | templateProperty = spouse| ontologyProperty = spouse}} }}Mapping en:Infobox academic conference20411552503652016-02-29T20:16:03Z{{TemplateMapping | mapToClass = AcademicConference | mappings = @@ -14590,6 +14622,13 @@ http://dbpedia.org/sparql?default-graph-uri=http%3A%2F%2Fdbpedia.org&query=s +}}Mapping en:Infobox aviator20413564560572021-10-02T07:02:36Z{{TemplateMapping | mapToClass = Pilot +| mappings = + {{ PropertyMapping | templateProperty = name | ontologyProperty = foaf:name }} + {{ PropertyMapping | templateProperty = website | ontologyProperty = foaf:homepage }} + {{ PropertyMapping | templateProperty = birth_date | ontologyProperty = birthDate }} + {{ PropertyMapping | templateProperty = nationality | ontologyProperty = nationality }} + {{ PropertyMapping | templateProperty = spouse| ontologyProperty = spouse}} }}Mapping en:Infobox award20440503102016-01-26T13:38:38Z{{TemplateMapping | mapToClass = Award | mappings = @@ -15138,7 +15177,7 @@ http://dbpedia.org/sparql?default-graph-uri=http%3A%2F%2Fdbpedia.org&query=s {{PropertyMapping | templateProperty = MeshNumber | ontologyProperty = meshNumber }} {{PropertyMapping | templateProperty = DorlandsPre | ontologyProperty = dorlandsPrefix }} {{PropertyMapping | templateProperty = DorlandsSuf | ontologyProperty = dorlandsSuffix }} -}}Mapping en:Infobox book2041696516412016-11-14T18:07:38Z{{TemplateMapping +}}Mapping en:Infobox book2041696549212021-09-06T14:32:42Z{{TemplateMapping | mapToClass = Book | mappings = {{PropertyMapping | templateProperty = name | ontologyProperty = foaf:name }} @@ -15166,6 +15205,7 @@ http://dbpedia.org/sparql?default-graph-uri=http%3A%2F%2Fdbpedia.org&query=s {{PropertyMapping | templateProperty = congress | ontologyProperty = lcc}} {{PropertyMapping | templateProperty = preceded_by | ontologyProperty = previousWork }} {{PropertyMapping | templateProperty = followed_by | ontologyProperty = subsequentWork }} + {{ PropertyMapping | templateProperty = website | ontologyProperty = foaf:homepage }} }}Mapping en:Infobox boxer2044972562010-05-12T14:24:12Z{{TemplateMapping | mapToClass = Boxer | mappings = @@ -15833,7 +15873,7 @@ http://dbpedia.org/sparql?default-graph-uri=http%3A%2F%2Fdbpedia.org&query=s <!-- {{ PropertyMapping | templateProperty = relations | ontologyProperty = }} --> <!-- {{ PropertyMapping | templateProperty = signature_alt | ontologyProperty = }} --> <!-- {{ PropertyMapping | templateProperty = subject_name | ontologyProperty = }} --> -}}Mapping en:Infobox college coach2041661235792013-01-26T11:29:56Z{{TemplateMapping +}}Mapping en:Infobox college coach2041661538992021-06-01T18:05:55Z{{TemplateMapping | mapToClass = CollegeCoach | mappings = {{PropertyMapping | templateProperty = coach_teams | ontologyProperty = coachedTeam }} @@ -15846,7 +15886,7 @@ http://dbpedia.org/sparql?default-graph-uri=http%3A%2F%2Fdbpedia.org&query=s {{PropertyMapping | templateProperty = birth_date | ontologyProperty = birthDate }} {{PropertyMapping | templateProperty = birth_place | ontologyProperty = birthPlace }} {{PropertyMapping | templateProperty = death_date | ontologyProperty = deathDate }} - {{PropertyMapping | templateProperty = date_place | ontologyProperty = deathPlace }} + {{PropertyMapping | templateProperty = death_place | ontologyProperty = deathPlace }} {{DateIntervalMapping | templateProperty = coach_years | startDateOntologyProperty = activeYearsStartDate | endDateOntologyProperty = activeYearsEndDate }} }}Mapping en:Infobox college football player2047986280872013-08-28T07:55:16Z{{TemplateMapping | mapToClass = AmericanFootballPlayer | mappings = @@ -15992,7 +16032,7 @@ http://dbpedia.org/sparql?default-graph-uri=http%3A%2F%2Fdbpedia.org&query=s {{PropertyMapping | templateProperty = alias | ontologyProperty = foaf:nick }} {{PropertyMapping | templateProperty = awards | ontologyProperty = award }} {{PropertyMapping | templateProperty = website | ontologyProperty = foaf:homepage }} -}}Mapping en:Infobox company20475536562020-07-27T08:49:46Z{{ ConditionalMapping +}}Mapping en:Infobox company20475540132021-06-07T16:18:14Z{{ ConditionalMapping | cases = {{Condition | templateProperty = industry @@ -16051,7 +16091,9 @@ http://dbpedia.org/sparql?default-graph-uri=http%3A%2F%2Fdbpedia.org&query=s {{ PropertyMapping | templateProperty = hq_location | ontologyProperty = headquarter }} {{ PropertyMapping | templateProperty = hq_city | ontologyProperty = locationCity }} + {{ PropertyMapping | templateProperty = hq_location_city | ontologyProperty = locationCity }} {{ PropertyMapping | templateProperty = hq_country | ontologyProperty = locationCountry }} + {{ PropertyMapping | templateProperty = hq_location_country | ontologyProperty = locationCountry }} {{ PropertyMapping | templateProperty = location | ontologyProperty = location }} {{ PropertyMapping | templateProperty = industry | ontologyProperty = industry }} @@ -16942,6 +16984,15 @@ http://dbpedia.org/sparql?default-graph-uri=http%3A%2F%2Fdbpedia.org&query=s }} {{GeocoordinatesMapping | latitudeDegrees = lat_d | latitudeMinutes = lat_m | latitudeSeconds = lat_s | latitudeDirection = lat_NS | longitudeDegrees = long_d | longitudeMinutes = long_m | longitudeSeconds = long_s | longitudeDirection = long_EW }} {{PropertyMapping | templateProperty = website | ontologyProperty = foaf:homepage }} +}}Mapping en:Infobox dancer20413558560512021-09-26T07:27:20Z{{TemplateMapping +| mapToClass = Dancer +| mappings = + {{ PropertyMapping | templateProperty = name | ontologyProperty = foaf:name }} + {{ PropertyMapping | templateProperty = birth_name | ontologyProperty = foaf:name }} + {{ PropertyMapping | templateProperty = website | ontologyProperty = foaf:homepage }} + {{ PropertyMapping | templateProperty = birth_date | ontologyProperty = birthDate }} + {{ PropertyMapping | templateProperty = nationality | ontologyProperty = nationality }} + {{ PropertyMapping | templateProperty = spouse| ontologyProperty = spouse}} }}Mapping en:Infobox darts player2046212208302012-12-23T17:21:18Z{{TemplateMapping | mapToClass = DartsPlayer | mappings = @@ -16952,6 +17003,14 @@ http://dbpedia.org/sparql?default-graph-uri=http%3A%2F%2Fdbpedia.org&query=s {{PropertyMapping | templateProperty = death_place | ontologyProperty = deathPlace }} {{PropertyMapping | templateProperty = homecountry | ontologyProperty = country }} {{PropertyMapping | templateProperty = hometown | ontologyProperty = hometown }} +}}Mapping en:Infobox deity20413577560712021-10-02T10:19:10Z{{TemplateMapping +| mapToClass = Deity +| mappings = + {{ PropertyMapping | templateProperty = name | ontologyProperty = foaf:name }} + {{ PropertyMapping | templateProperty = website | ontologyProperty = foaf:homepage }} + {{ PropertyMapping | templateProperty = birth_date | ontologyProperty = birthDate }} + {{ PropertyMapping | templateProperty = nationality | ontologyProperty = nationality }} + {{ PropertyMapping | templateProperty = spouse| ontologyProperty = spouse}} }}Mapping en:Infobox diocese2046247211252012-12-27T12:07:38Z{{TemplateMapping | mapToClass = Diocese | mappings = @@ -19266,7 +19325,7 @@ Template Properties not mapped yet: {{PropertyMapping | templateProperty = demolished | ontologyProperty = demolitionDate }} {{PropertyMapping | templateProperty = code | ontologyProperty = code }} {{GeocoordinatesMapping | coordinates = coordinates | ontologyProperty = location }} -}}Mapping en:Infobox military person2041672389652014-12-23T12:53:02Z{{TemplateMapping +}}Mapping en:Infobox military person2041672549232021-09-06T14:34:08Z{{TemplateMapping | mapToClass = MilitaryPerson | mappings = {{PropertyMapping | templateProperty = name | ontologyProperty = foaf:name }} @@ -19289,7 +19348,9 @@ Template Properties not mapped yet: {{PropertyMapping | templateProperty = battles | ontologyProperty = battle }} {{PropertyMapping | templateProperty = awards | ontologyProperty = award }} {{PropertyMapping | templateProperty = relations | ontologyProperty = relation }} - {{PropertyMapping | templateProperty = laterwork | ontologyProperty = occupation }} + {{PropertyMapping | templateProperty = laterwork | ontologyProperty = occupation }} + {{ PropertyMapping | templateProperty = website | ontologyProperty = foaf:homepage }} + }}Mapping en:Infobox military unit204145131322011-05-23T11:07:21Z{{TemplateMapping | mapToClass = MilitaryUnit | mappings = @@ -21426,6 +21487,16 @@ Template Properties not mapped yet: {{PropertyMapping | templateProperty = homepage | ontologyProperty = foaf:homepage }} {{PropertyMapping | templateProperty = hometown | ontologyProperty = hometown }} {{PropertyMapping | templateProperty = residence | ontologyProperty = residence }} +}}Mapping en:Infobox pandemic20413103548852021-07-22T14:10:21Z{{TemplateMapping +| mapToClass = Pandemic +| mappings = + {{ PropertyMapping | templateProperty = name | ontologyProperty = foaf:name }} + {{ PropertyMapping | templateProperty = date | ontologyProperty = date }} + {{ PropertyMapping | templateProperty = disease | ontologyProperty = disease }} + {{ PropertyMapping | templateProperty = virus_strain | ontologyProperty = virus_strain }} + {{ PropertyMapping | templateProperty = location | ontologyProperty = Location }} + {{ PropertyMapping | templateProperty = deaths | ontologyProperty = Deaths }} + {{ PropertyMapping | templateProperty = symptom | ontologyProperty = Symptom }} }}Mapping en:Infobox park20419273932010-05-12T14:41:20Z{{TemplateMapping | mapToClass = Park | mappings = @@ -21509,6 +21580,90 @@ Template Properties not mapped yet: {{PropertyMapping | templateProperty = website | ontologyProperty = foaf:homepage }} {{PropertyMapping | templateProperty = homepage | ontologyProperty = foaf:homepage }} +}}Mapping en:Infobox person/Wikidata20413580560742021-10-02T10:29:18Z{{TemplateMapping +| mapToClass = Person +| mappings = +<!-- basic parameter --> + {{PropertyMapping | templateProperty = name | ontologyProperty = foaf:name }} + {{PropertyMapping | templateProperty = birthdate | ontologyProperty = birthDate }} + {{PropertyMapping | templateProperty = birth_date | ontologyProperty = birthDate }} + {{PropertyMapping | templateProperty = birth_date | ontologyProperty = birthYear }} + {{PropertyMapping | templateProperty = birthplace | ontologyProperty = birthPlace }} + {{PropertyMapping | templateProperty = birth_place | ontologyProperty = birthPlace }} + {{PropertyMapping | templateProperty = deathdate | ontologyProperty = deathDate }} + {{PropertyMapping | templateProperty = death_date | ontologyProperty = deathDate }} + {{PropertyMapping | templateProperty = death_date | ontologyProperty = deathYear }} + {{PropertyMapping | templateProperty = deathplace | ontologyProperty = deathPlace }} + {{PropertyMapping | templateProperty = death_place | ontologyProperty = deathPlace }} + {{PropertyMapping | templateProperty = nationality | ontologyProperty = nationality }} + {{PropertyMapping | templateProperty = nationality | ontologyProperty = stateOfOrigin}} + {{PropertyMapping | templateProperty = other_names | ontologyProperty = alias }} + {{PropertyMapping | templateProperty = othername | ontologyProperty = alias }} + {{PropertyMapping | templateProperty = known_for | ontologyProperty = knownFor }} + {{PropertyMapping | templateProperty = occupation | ontologyProperty = occupation }} + {{IntermediateNodeMapping | nodeClass = PersonFunction | correspondingProperty = occupation + | mappings = + {{PropertyMapping | templateProperty = occupation | ontologyProperty = title }} + {{DateIntervalMapping | templateProperty = years_active | startDateOntologyProperty = functionStartDate | endDateOntologyProperty = functionEndDate}} + {{DateIntervalMapping | templateProperty = years_active | startDateOntologyProperty = functionStartYear | endDateOntologyProperty = functionEndYear}} + {{DateIntervalMapping | templateProperty = yearsactive | startDateOntologyProperty = functionStartDate | endDateOntologyProperty = functionEndDate}} + {{DateIntervalMapping | templateProperty = yearsactive | startDateOntologyProperty = functionStartYear | endDateOntologyProperty = functionEndYear}} + }} +<!-- end of basic parameters --> + {{GeocoordinatesMapping | ontologyProperty = restingPlacePosition | coordinates = resting_place_coordinates }} + {{DateIntervalMapping | templateProperty = years_active | startDateOntologyProperty = activeYearsStartYear| endDateOntologyProperty = activeYearsEndYear }} + {{DateIntervalMapping | templateProperty = yearsactive | startDateOntologyProperty = activeYearsStartYear| endDateOntologyProperty = activeYearsEndYear }} + {{IntermediateNodeMapping | nodeClass = PersonFunction | correspondingProperty = personFunction + | mappings = + {{PropertyMapping | templateProperty = title | ontologyProperty = title }} + {{DateIntervalMapping | templateProperty = term | startDateOntologyProperty = functionStartDate | endDateOntologyProperty = functionEndDate}} + {{DateIntervalMapping | templateProperty = term | startDateOntologyProperty = functionStartYear | endDateOntologyProperty = functionEndYear}} + }} + {{PropertyMapping | templateProperty = birth_name | ontologyProperty = birthName }} + {{PropertyMapping | templateProperty = birthname | ontologyProperty = birthName }} + {{PropertyMapping | templateProperty = body_discovered | ontologyProperty = bodyDiscovered }} + {{PropertyMapping | templateProperty = death_cause | ontologyProperty = deathCause }} + {{PropertyMapping | templateProperty = resting_place | ontologyProperty = restingPlace }} + {{PropertyMapping | templateProperty = residence | ontologyProperty = residence }} + {{PropertyMapping | templateProperty = ethnicity | ontologyProperty = ethnicity }} + {{PropertyMapping | templateProperty = citizenship | ontologyProperty = citizenship }} + {{PropertyMapping | templateProperty = education | ontologyProperty = education }} + {{PropertyMapping | templateProperty = alma_mater | ontologyProperty = almaMater }} + {{PropertyMapping | templateProperty = employer | ontologyProperty = employer }} + {{PropertyMapping | templateProperty = home_town | ontologyProperty = hometown }} + {{PropertyMapping | templateProperty = salary | ontologyProperty = salary | unit = Currency }} + {{PropertyMapping | templateProperty = networth | ontologyProperty = networth | unit = Currency }} + {{PropertyMapping | templateProperty = net_worth | ontologyProperty = networth | unit = Currency }} + {{PropertyMapping | templateProperty = net worth | ontologyProperty = networth | unit = Currency }} + {{PropertyMapping | templateProperty = height | ontologyProperty = height | unit = Length }} + {{PropertyMapping | templateProperty = weight | ontologyProperty = weight | unit = Mass }} + {{PropertyMapping | templateProperty = title | ontologyProperty = title }} + {{PropertyMapping | templateProperty = predecessor | ontologyProperty = predecessor }} + {{PropertyMapping | templateProperty = successor | ontologyProperty = successor }} + {{PropertyMapping | templateProperty = party | ontologyProperty = party }} + {{PropertyMapping | templateProperty = opponents | ontologyProperty = opponent }} + {{PropertyMapping | templateProperty = boards | ontologyProperty = board }} + {{PropertyMapping | templateProperty = religion | ontologyProperty = religion }} + {{PropertyMapping | templateProperty = spouse | ontologyProperty = spouse }} + {{PropertyMapping | templateProperty = partner | ontologyProperty = partner }} + {{PropertyMapping | templateProperty = children | ontologyProperty = child }} + {{PropertyMapping | templateProperty = relations | ontologyProperty = relation }} + {{PropertyMapping | templateProperty = callsign | ontologyProperty = callSign }} + {{PropertyMapping | templateProperty = relatives | ontologyProperty = relative }} + {{PropertyMapping | templateProperty = awards | ontologyProperty = award }} + {{PropertyMapping | templateProperty = pseudonym | ontologyProperty = pseudonym }} + {{PropertyMapping | templateProperty = parents | ontologyProperty = parent }} + {{PropertyMapping | templateProperty = website | ontologyProperty = foaf:homepage }} + {{PropertyMapping | templateProperty = homepage | ontologyProperty = foaf:homepage }} + +}}Mapping en:Infobox pharaoh20413576560702021-10-02T09:04:36Z{{TemplateMapping +| mapToClass = Pharaoh +| mappings = + {{ PropertyMapping | templateProperty = name | ontologyProperty = foaf:name }} + {{ PropertyMapping | templateProperty = website | ontologyProperty = foaf:homepage }} + {{ PropertyMapping | templateProperty = birth_date | ontologyProperty = birthDate }} + {{ PropertyMapping | templateProperty = nationality | ontologyProperty = nationality }} + {{ PropertyMapping | templateProperty = spouse| ontologyProperty = spouse}} }}Mapping en:Infobox philosopher204196247242013-04-04T20:19:24Z {{ TemplateMapping | mapToClass = Philosopher | mappings = {{ PropertyMapping | templateProperty = name | ontologyProperty = foaf:name }} @@ -21604,6 +21759,14 @@ Template Properties not mapped yet: {{PropertyMapping | templateProperty = firstname | ontologyProperty = foaf:givenName}} {{PropertyMapping | templateProperty = lastname | ontologyProperty = foaf:familyName}} {{PropertyMapping | templateProperty = nickname | ontologyProperty = foaf:nick }} +}}Mapping en:Infobox police officer20413582560782021-10-02T10:35:24Z{{TemplateMapping +| mapToClass = PoliceOfficer +| mappings = + {{ PropertyMapping | templateProperty = name | ontologyProperty = foaf:name }} + {{ PropertyMapping | templateProperty = website | ontologyProperty = foaf:homepage }} + {{ PropertyMapping | templateProperty = birth_date | ontologyProperty = birthDate }} + {{ PropertyMapping | templateProperty = nationality | ontologyProperty = nationality }} + {{ PropertyMapping | templateProperty = spouse| ontologyProperty = spouse}} }}Mapping en:Infobox political party2043722525042017-10-17T22:51:42Z{{TemplateMapping | mapToClass = PoliticalParty | mappings = @@ -22535,6 +22698,14 @@ Template Properties not mapped yet: {{PropertyMapping | templateProperty = minority_floor_leader7 | ontologyProperty = minorityFloorLeader }} {{PropertyMapping | templateProperty = minority_floor_leader8 | ontologyProperty = minorityFloorLeader }} {{PropertyMapping | templateProperty = minority_floor_leader9 | ontologyProperty = minorityFloorLeader }} +}}Mapping en:Infobox pretender20413570560642021-10-02T07:20:52Z{{TemplateMapping +| mapToClass = Pretender +| mappings = + {{ PropertyMapping | templateProperty = name | ontologyProperty = foaf:name }} + {{ PropertyMapping | templateProperty = website | ontologyProperty = foaf:homepage }} + {{ PropertyMapping | templateProperty = birth_date | ontologyProperty = birthDate }} + {{ PropertyMapping | templateProperty = nationality | ontologyProperty = nationality }} + {{ PropertyMapping | templateProperty = spouse| ontologyProperty = spouse}} }}Mapping en:Infobox prison2046359225162013-01-13T13:27:00Z{{TemplateMapping | mapToClass = Prison | mappings = @@ -22917,6 +23088,14 @@ Template Properties not mapped yet: {{ PropertyMapping | templateProperty = elevation | ontologyProperty = elevation }} {{ PropertyMapping | templateProperty = website | ontologyProperty = foaf:homepage }} {{ PropertyMapping | templateProperty = map | ontologyProperty = map }} +}}Mapping en:Infobox rebbe20413568560622021-10-02T07:16:09Z{{TemplateMapping +| mapToClass = Rebbe +| mappings = + {{ PropertyMapping | templateProperty = name | ontologyProperty = foaf:name }} + {{ PropertyMapping | templateProperty = website | ontologyProperty = foaf:homepage }} + {{ PropertyMapping | templateProperty = birth_date | ontologyProperty = birthDate }} + {{ PropertyMapping | templateProperty = nationality | ontologyProperty = nationality }} + {{ PropertyMapping | templateProperty = spouse| ontologyProperty = spouse}} }}Mapping en:Infobox recent cricketer20421874182010-05-12T14:44:41Z{{TemplateMapping | mapToClass = Cricketer | mappings = @@ -23675,6 +23854,14 @@ Template Properties not mapped yet: {{PropertyMapping | templateProperty = occupation | ontologyProperty = occupation }} {{PropertyMapping | templateProperty = relatives | ontologyProperty = relative }} {{DateIntervalMapping | templateProperty = years | startDateOntologyProperty = activeYearsStartYear | endDateOntologyProperty = activeYearsEndYear }} +}}Mapping en:Infobox sailor20413560560532021-09-26T07:36:57Z{{TemplateMapping +| mapToClass = Sailor +| mappings = + {{ PropertyMapping | templateProperty = name | ontologyProperty = foaf:name }} + {{ PropertyMapping | templateProperty = website | ontologyProperty = foaf:homepage }} + {{ PropertyMapping | templateProperty = birth_date | ontologyProperty = birthDate }} + {{ PropertyMapping | templateProperty = nationality | ontologyProperty = nationality }} + {{ PropertyMapping | templateProperty = spouse| ontologyProperty = spouse}} }}Mapping en:Infobox saint204227310992014-01-28T14:57:53Z{{TemplateMapping | mapToClass = Saint | mappings = @@ -23800,6 +23987,14 @@ Template Properties not mapped yet: {{PropertyMapping | templateProperty = area_km2 | ontologyProperty = areaTotal | unit = squareKilometre }} {{PropertyMapping | templateProperty = density_km2 | ontologyProperty = populationDensity | unit = inhabitantsPerSquareKilometre }} {{GeocoordinatesMapping | latitudeDegrees = latd | latitudeMinutes = latm | latitudeSeconds = lats | latitudeDirection = latNS | longitudeDegrees = longd | longitudeMinutes = longm | longitudeSeconds = longs | longitudeDirection = longEW }} +}}Mapping en:Infobox scholar20413571560652021-10-02T08:48:22Z{{TemplateMapping +| mapToClass = Academic +| mappings = + {{ PropertyMapping | templateProperty = name | ontologyProperty = foaf:name }} + {{ PropertyMapping | templateProperty = website | ontologyProperty = foaf:homepage }} + {{ PropertyMapping | templateProperty = birth_date | ontologyProperty = birthDate }} + {{ PropertyMapping | templateProperty = nationality | ontologyProperty = nationality }} + {{ PropertyMapping | templateProperty = spouse| ontologyProperty = spouse}} }}Mapping en:Infobox school204229529362018-03-05T12:57:44Z{{TemplateMapping | mapToClass = School | mappings = @@ -25339,7 +25534,7 @@ Template Properties not mapped yet: <!-- {{PropertyMapping | templateProperty = branches | ontologyProperty = }} --> <!-- {{PropertyMapping | templateProperty = members | ontologyProperty = }} --> {{PropertyMapping | templateProperty = website | ontologyProperty = foaf:homepage }} -}}Mapping en:Infobox sportsperson2044144168352012-03-13T10:59:40Z{{TemplateMapping +}}Mapping en:Infobox sportsperson2044144574122022-04-13T11:42:11Z{{TemplateMapping | mapToClass = Athlete | mappings = {{PropertyMapping | templateProperty = name | ontologyProperty = foaf:name }} @@ -25362,6 +25557,15 @@ Template Properties not mapped yet: {{PropertyMapping | templateProperty = currentteam | ontologyProperty = team }} {{PropertyMapping | templateProperty = residence | ontologyProperty = residence }} {{PropertyMapping | templateProperty = website | ontologyProperty = foaf:homepage }} + {{PropertyMapping | templateProperty = club | ontologyProperty = club }} +}}Mapping en:Infobox spy20413566560602021-10-02T07:07:24Z{{TemplateMapping +| mapToClass = Spy +| mappings = + {{ PropertyMapping | templateProperty = name | ontologyProperty = foaf:name }} + {{ PropertyMapping | templateProperty = website | ontologyProperty = foaf:homepage }} + {{ PropertyMapping | templateProperty = birth_date | ontologyProperty = birthDate }} + {{ PropertyMapping | templateProperty = nationality | ontologyProperty = nationality }} + {{ PropertyMapping | templateProperty = spouse| ontologyProperty = spouse}} }}Mapping en:Infobox squash player2047322260882013-06-14T18:04:18Z{{TemplateMapping | mapToClass = SquashPlayer | mappings = @@ -25377,7 +25581,7 @@ Template Properties not mapped yet: {{PropertyMapping | templateProperty = country | ontologyProperty = country }} {{PropertyMapping | templateProperty = residence | ontologyProperty = residence }} {{PropertyMapping | templateProperty = coach | ontologyProperty = coach }} -}}Mapping en:Infobox stadium204254526232017-10-31T17:12:12Z#REDIRECT [[Mapping en:Infobox venue]]Mapping en:Infobox standard2048014524442017-10-15T17:07:36Z#REDIRECT [[Mapping en:Infobox song]]Mapping en:Infobox station204255166502012-02-14T12:11:25Z +}}Mapping en:Infobox stadium204254526232017-10-31T17:12:12Z#REDIRECT [[Mapping en:Infobox venue]]Mapping en:Infobox standard2048014524442017-10-15T17:07:36Z#REDIRECT [[Mapping en:Infobox song]]Mapping en:Infobox station204255549202021-09-06T14:31:33Z {{ TemplateMapping | mapToClass = Station | mappings = {{ PropertyMapping | templateProperty = name | ontologyProperty = foaf:name }} {{ PropertyMapping | templateProperty = type | ontologyProperty = type }} @@ -25416,6 +25620,7 @@ Template Properties not mapped yet: {{ PropertyMapping | templateProperty = pass_year | ontologyProperty = visitorStatisticsAsOf }} {{ PropertyMapping | templateProperty = pass_percent | ontologyProperty = visitorsPercentageChange }} {{ PropertyMapping | templateProperty = pass_system | ontologyProperty = passengersUsedSystem }} + {{ PropertyMapping | templateProperty = website | ontologyProperty = foaf:homepage }} <!-- needs mapping language extension {{ PropertyMapping | templateProperty = services | ontologyProperty = ??? }} --> }}Mapping en:Infobox street2043336486632015-08-06T16:39:04Z{{TemplateMapping | mapToClass = Road @@ -26559,7 +26764,60 @@ Template Properties not mapped yet: | mappings = {{ConstantMapping | ontologyProperty = country | value = Ireland}} {{ConstantMapping | ontologyProperty = nationality | value = Ireland}} -}}Mapping en:Ireland-politician-stub2048276289542013-12-17T15:25:01Z{{TemplateMapping | mapToClass = Politician}}Mapping en:Ireland-railstation-stub2048309289892013-12-17T17:29:58Z{{TemplateMapping | mapToClass = RailwayStation}}Mapping en:Ireland-writer-stub2048240288412013-11-26T14:01:19Z{{TemplateMapping | mapToClass = Writer +}}Mapping en:Ireland-politician-stub2048276546152021-06-30T11:41:23Z{{TemplateMapping | mapToClass = Politician}} +{{PropertyMapping | templateProperty = ایوارڈ| ontologyProperty = award }} + {{PropertyMapping | templateProperty = نام| ontologyProperty = foaf:name }} + {{PropertyMapping | templateProperty = سرکاری نام| ontologyProperty = foaf:name }} + {{PropertyMapping | templateProperty = اصل نام| ontologyProperty = foaf:name }} + {{PropertyMapping | templateProperty = صنف| ontologyProperty = genre }} + {{PropertyMapping | templateProperty = جگہ| ontologyProperty = location }} + {{PropertyMapping | templateProperty = پیشہ| ontologyProperty = occupation }} + {{PropertyMapping | templateProperty = شخص| ontologyProperty = person }} + {{PropertyMapping | templateProperty = تاریخ پیدائش| ontologyProperty = birthDate }} + {{PropertyMapping | templateProperty = تاریخ پیدائش| ontologyProperty = birthDate }} + {{PropertyMapping | templateProperty = تاریخ پیدائش| ontologyProperty = birthYear }} + {{PropertyMapping | templateProperty = جائے پیدائش| ontologyProperty = birthPlace }} + {{PropertyMapping | templateProperty = جائے پیدائش | ontologyProperty = birthPlace }} + {{PropertyMapping | templateProperty = تاریخ وفات | ontologyProperty = deathDate }} + {{PropertyMapping | templateProperty = تاریخ وفات | ontologyProperty = deathDate }} + {{PropertyMapping | templateProperty = تاریخ وفات | ontologyProperty = deathYear }} + {{PropertyMapping | templateProperty = جائے وفات | ontologyProperty = deathPlace }} + {{PropertyMapping | templateProperty = جائے وفات | ontologyProperty = deathPlace }} + {{PropertyMapping | templateProperty = قومیت | ontologyProperty = nationality }} + {{PropertyMapping | templateProperty = قومیت| ontologyProperty = stateOfOrigin}} + {{PropertyMapping | templateProperty = other names | ontologyProperty = alias }} + {{PropertyMapping | templateProperty = othername | ontologyProperty = alias }} + {{PropertyMapping | templateProperty = known for | ontologyProperty = knownFor }} + {{PropertyMapping | templateProperty = کاروبار | ontologyProperty = occupation }} + {{PropertyMapping | templateProperty = پیدائشی نام | ontologyProperty = birthName }} + {{PropertyMapping | templateProperty = پیدائشی نام | ontologyProperty = birthName }} + {{PropertyMapping | templateProperty = رہائش | ontologyProperty = residence }} + {{PropertyMapping | templateProperty = نسل | ontologyProperty = ethnicity }} + {{PropertyMapping | templateProperty = شہریت | ontologyProperty = citizenship }} + {{PropertyMapping | templateProperty = تعلیم | ontologyProperty = education }} + {{PropertyMapping | templateProperty = سلسلہ آمدن | ontologyProperty = employer }} + {{PropertyMapping | templateProperty = آبائی شہر | ontologyProperty = hometown }} + {{PropertyMapping | templateProperty = تنخواہ | ontologyProperty = salary | unit = Currency }} + {{PropertyMapping | templateProperty = کل مالیت | ontologyProperty = networth | unit = Currency }} + {{PropertyMapping | templateProperty = کل مالیت | ontologyProperty = networth | unit = Currency }} + {{PropertyMapping | templateProperty = کل مالیت | ontologyProperty = networth | unit = Currency }} + {{PropertyMapping | templateProperty = اونچائی | ontologyProperty = height | unit = Length }} + {{PropertyMapping | templateProperty = وزن | ontologyProperty = weight | unit = Mass }} + {{PropertyMapping | templateProperty = گروہ | ontologyProperty = party }} + {{PropertyMapping | templateProperty = مخالفین | ontologyProperty = opponent }} + {{PropertyMapping | templateProperty = کمیٹی | ontologyProperty = board }} + {{PropertyMapping | templateProperty = مذہب | ontologyProperty = religion }} + {{PropertyMapping | templateProperty = شریک حیات | ontologyProperty = spouse }} + {{PropertyMapping | templateProperty = ساتهی | ontologyProperty = partner }} + {{PropertyMapping | templateProperty = بچے | ontologyProperty = child }} + {{PropertyMapping | templateProperty = تعلقات | ontologyProperty = relation }} + {{PropertyMapping | templateProperty = کال علامت | ontologyProperty = callSign }} + {{PropertyMapping | templateProperty = رشتہ دار | ontologyProperty = relative }} + {{PropertyMapping | templateProperty = خطاب| ontologyProperty = award }} + {{PropertyMapping | templateProperty = تخلص | ontologyProperty = pseudonym }} + {{PropertyMapping | templateProperty = بنانےوالا| ontologyProperty = creator}} + {{PropertyMapping | templateProperty = ملک| ontologyProperty = country }} + {{PropertyMapping | templateProperty = والدین | ontologyProperty = parent }}Mapping en:Ireland-railstation-stub2048309289892013-12-17T17:29:58Z{{TemplateMapping | mapToClass = RailwayStation}}Mapping en:Ireland-writer-stub2048240288412013-11-26T14:01:19Z{{TemplateMapping | mapToClass = Writer | mappings = {{ConstantMapping | ontologyProperty = country | value = Ireland }} }}Mapping en:Italy-bio-stub2048661295732014-01-10T11:01:02Z{{TemplateMapping | mapToClass = Person | mappings = @@ -27670,6 +27928,10 @@ Template Properties not mapped yet: }}Mapping en:USSR-Olympic-medalist-stub2048673295932014-01-13T10:26:20Z{{TemplateMapping | mapToClass = Athlete | mappings = {{ConstantMapping | ontologyProperty = nationality | value = Soviet Union}} +}}Mapping en:Virusbox20413101548632021-07-16T15:04:29Z{{TemplateMapping +| mapToClass = Disease +| mappings = + {{ PropertyMapping | templateProperty = virus | ontologyProperty = dbo:virus }} }}Mapping en:Wales-writer-stub2048241288422013-11-26T14:02:15Z{{TemplateMapping | mapToClass = Writer | mappings = {{ConstantMapping | ontologyProperty = country | value = United Kingdom }} diff --git a/mappings/Mapping_fr.xml b/mappings/Mapping_fr.xml index 5b6ff1cffd..36c4f88bfb 100644 --- a/mappings/Mapping_fr.xml +++ b/mappings/Mapping_fr.xml @@ -41,6 +41,16 @@ {{PropertyMapping | templateProperty = ebullition | ontologyProperty = boilingPoint | unit = temperature}} {{PropertyMapping | templateProperty = PubChem | ontologyProperty = pubchem }} {{PropertyMapping | templateProperty = DCI | ontologyProperty = inn}} +}}Mapping fr:Cycling race/infobox21014265590942022-10-11T07:58:11Z{{TemplateMapping +| mapToClass = CyclingRace +| mappings = + {{PropertyMapping | templateProperty = nom | ontologyProperty = foaf:name }} + {{PropertyMapping | templateProperty = Image | ontologyProperty = thumbnail }} + {{PropertyMapping | templateProperty = légende | ontologyProperty = thumbnailCaption }} + {{PropertyMapping | templateProperty = Distance | ontologyProperty = length }} + {{PropertyMapping | templateProperty = Vitesse moyenne | ontologyProperty = averageSpeed }} + {{PropertyMapping | templateProperty = Pays | ontologyProperty = country }} + {{PropertyMapping | templateProperty = Année | ontologyProperty = year }} }}Mapping fr:Desserte gare21011074455702015-03-08T13:02:42Z{{TemplateMapping | mapToClass = Station | mappings = @@ -1107,11 +1117,12 @@ }} {{GeocoordinatesMapping | latitude = latitude | longitude = longitude }} {{PropertyMapping | templateProperty = url | ontologyProperty = foaf:homepage }} -}}Mapping fr:Infobox Biographie2104401272012013-07-09T11:34:40Z{{TemplateMapping +}}Mapping fr:Infobox Biographie2104401587852022-05-31T14:45:20Z{{TemplateMapping | mapToClass = Person | mappings = {{PropertyMapping | templateProperty = nom | ontologyProperty = foaf:name }} {{PropertyMapping | templateProperty = légende | ontologyProperty = thumbnailCaption }} + {{PropertyMapping | templateProperty = image | ontologyProperty = picture }} {{PropertyMapping | templateProperty = nom de naissance | ontologyProperty = birthName }} {{PropertyMapping | templateProperty = surnom | ontologyProperty = foaf:nick }} {{PropertyMapping | templateProperty = date de naissance | ontologyProperty = birthDate }} @@ -1130,7 +1141,71 @@ {{PropertyMapping | templateProperty = conjoint | ontologyProperty = spouse }} {{PropertyMapping | templateProperty = descendant | ontologyProperty = child }} {{PropertyMapping | templateProperty = famille | ontologyProperty = family }} -}}Mapping fr:Infobox Boxeur2107478474142015-04-01T07:18:04Z{{TemplateMapping + {{PropertyMapping | templateProperty = signature | ontologyProperty = signature }} + {{PropertyMapping | templateProperty = hommage | ontologyProperty = award }} + +}}Mapping fr:Infobox Biographie221014143588012022-06-14T09:13:25Z{{TemplateMapping +| mapToClass = Person +| mappings = + {{PropertyMapping | templateProperty = nom | ontologyProperty = foaf:name }} + {{PropertyMapping | templateProperty = légende | ontologyProperty = thumbnailCaption }} + {{PropertyMapping | templateProperty = nom de naissance | ontologyProperty = birthName }} + {{PropertyMapping | templateProperty = surnom | ontologyProperty = foaf:nick }} + {{PropertyMapping | templateProperty = date de naissance | ontologyProperty = birthDate }} + {{PropertyMapping | templateProperty = lieu de naissance | ontologyProperty = birthPlace }} + {{PropertyMapping | templateProperty = date de décès | ontologyProperty = deathDate }} + {{PropertyMapping | templateProperty = lieu de décès | ontologyProperty = deathPlace }} + {{PropertyMapping | templateProperty = nationalité | ontologyProperty = nationality }} + {{PropertyMapping | templateProperty = domicile | ontologyProperty = residence }} + {{PropertyMapping | templateProperty = activité | ontologyProperty = activity }} + {{PropertyMapping | templateProperty = formation | ontologyProperty = education}} + {{PropertyMapping | templateProperty = conjoint | ontologyProperty = spouse }} + {{PropertyMapping | templateProperty = enfant | ontologyProperty = child }} + {{PropertyMapping | templateProperty = famille | ontologyProperty = family }} + {{PropertyMapping | templateProperty = cheveux | ontologyProperty = hairColor }} + {{PropertyMapping | templateProperty = yeux | ontologyProperty = eyeColor }} + {{PropertyMapping | templateProperty = image | ontologyProperty = picture }} + {{PropertyMapping | templateProperty = sépulture | ontologyProperty = placeOfBurial }} + {{PropertyMapping | templateProperty = époque | ontologyProperty = era }} + {{PropertyMapping | templateProperty = disparition | ontologyProperty = disappearanceDate }} + {{PropertyMapping | templateProperty = mouvement | ontologyProperty = movement }} + {{PropertyMapping | templateProperty = propriétaire de | ontologyProperty = owningOrganisation }} + {{PropertyMapping | templateProperty = maître | ontologyProperty = influencedBy }} + {{PropertyMapping | templateProperty = élève | ontologyProperty = influenced }} + {{PropertyMapping | templateProperty = directeur de thèse | ontologyProperty = influencedBy }} + {{PropertyMapping | templateProperty = étudiant de thèse | ontologyProperty = influenced }} + {{PropertyMapping | templateProperty = partenaire | ontologyProperty = partner}} + {{PropertyMapping | templateProperty = copilote | ontologyProperty = copilote }} + {{PropertyMapping | templateProperty = instrument | ontologyProperty = instrument }} + {{PropertyMapping | templateProperty = employeur | ontologyProperty = employer }} + {{PropertyMapping | templateProperty = religion | ontologyProperty = religion }} + {{PropertyMapping | templateProperty = parti politique | ontologyProperty = party }} + {{PropertyMapping | templateProperty = idéologie | ontologyProperty =ideology}} + {{PropertyMapping | templateProperty = membre | ontologyProperty = member }} + {{PropertyMapping | templateProperty = unité | ontologyProperty = militaryBranch }} + {{PropertyMapping | templateProperty = conflit | ontologyProperty = conflict}} + {{PropertyMapping | templateProperty = père | ontologyProperty = father }} + {{PropertyMapping | templateProperty = mère | ontologyProperty = mother }} + {{PropertyMapping | templateProperty = fratrie | ontologyProperty = sibling }} + {{PropertyMapping | templateProperty = parentèle | ontologyProperty = parent }} + {{PropertyMapping | templateProperty = œuvres principales | ontologyProperty = notableWork }} + {{PropertyMapping | templateProperty = distinctions | ontologyProperty = decoration }} + {{PropertyMapping | templateProperty = grade militaire | ontologyProperty = militaryRank}} + {{PropertyMapping | templateProperty = équipe | ontologyProperty = team }} + {{PropertyMapping | templateProperty = mécène | ontologyProperty = artPatron }} + {{PropertyMapping | templateProperty = site web | ontologyProperty = foaf:homepage }} + {{PropertyMapping | templateProperty = voix | ontologyProperty = voice }} + {{PropertyMapping | templateProperty = prononciation | ontologyProperty = pronunciation }} + {{PropertyMapping | templateProperty = blason | ontologyProperty = coatOfArms }} + {{PropertyMapping | templateProperty = fête | ontologyProperty = feastDay }} + {{PropertyMapping | templateProperty = adjectifsDérivés | ontologyProperty = derivedWord }} + {{DateIntervalMapping + | templateProperty = période d'activité + | startDateOntologyProperty = activeYearsStartYear + | endDateOntologyProperty = activeYearsEndYear + }} + +}}Mapping fr:Infobox Boxeur2107478590862022-10-09T20:15:53Z{{TemplateMapping | mapToClass = Boxer | mappings = {{PropertyMapping | templateProperty = légende | ontologyProperty = thumbnailCaption }} @@ -1140,7 +1215,6 @@ {{PropertyMapping | templateProperty = date de naissance | ontologyProperty = birthDate }} {{PropertyMapping | templateProperty = lieu de naissance | ontologyProperty = birthPlace }} {{PropertyMapping | templateProperty = nom de naissance | ontologyProperty = birthName }} - {{PropertyMapping | templateProperty = catégorie | ontologyProperty = boxerCategory }} {{PropertyMapping | templateProperty = style | ontologyProperty = boxerStyle }} {{PropertyMapping | templateProperty = date de décès | ontologyProperty = deathDate }} {{PropertyMapping | templateProperty = lieu de décès | ontologyProperty = deathPlace }} @@ -1413,15 +1487,18 @@ {{PropertyMapping | templateProperty = durée | ontologyProperty = filmRuntime | unit = Time}} {{PropertyMapping | templateProperty = année sortie | ontologyProperty = releaseDate}} {{PropertyMapping | templateProperty = première diffusion | ontologyProperty = firstBroadcast}} -}}Mapping fr:Infobox Cinéma (film)2104416455382015-03-08T10:24:54Z{{TemplateMapping +}}Mapping fr:Infobox Cinéma (film)2104416572282022-03-24T21:08:40Z{{TemplateMapping | mapToClass = Film | mappings = {{PropertyMapping | templateProperty = titre | ontologyProperty = foaf:name}} {{PropertyMapping | templateProperty = titre | ontologyProperty = dc:title}} {{PropertyMapping | templateProperty = langue du titre | ontologyProperty = titleLanguage}} + {{PropertyMapping | templateProperty = image | ontologyProperty = picture }} {{PropertyMapping | templateProperty = légende | ontologyProperty = thumbnailCaption}} + {{PropertyMapping | templateProperty = alternative | ontologyProperty = alternativeText}} {{PropertyMapping | templateProperty = titre québécois | ontologyProperty = quebecerTitle}} {{PropertyMapping | templateProperty = titre original | ontologyProperty = originalTitle}} + {{PropertyMapping | templateProperty = titre original non latin | ontologyProperty = originalNotLatinTitle}} {{PropertyMapping | templateProperty = réalisation | ontologyProperty = director}} {{PropertyMapping | templateProperty = scénario | ontologyProperty = writer}} {{PropertyMapping | templateProperty = acteur | ontologyProperty = starring}} @@ -1430,8 +1507,10 @@ {{PropertyMapping | templateProperty = genre | ontologyProperty = genre}} {{PropertyMapping | templateProperty = durée | ontologyProperty = filmRuntime | unit = Time}} {{PropertyMapping | templateProperty = année de sortie | ontologyProperty = releaseDate}} - {{ PropertyMapping | templateProperty = sortie | ontologyProperty = releaseDate }} + {{PropertyMapping | templateProperty = sortie | ontologyProperty = releaseDate }} {{PropertyMapping | templateProperty = première diffusion | ontologyProperty = firstBroadcast}} + {{PropertyMapping | templateProperty = upright | ontologyProperty = scaleFactor}} + {{PropertyMapping | templateProperty = titre article en italique| ontologyProperty = italicTitle }} }}Mapping fr:Infobox Cinéma (personnalité)2102919354022014-06-22T09:35:52Z{{TemplateMapping | mapToClass = Actor | mappings = @@ -2240,7 +2319,7 @@ }} {{PropertyMapping | templateProperty = telcode| ontologyProperty = areaCode }} {{PropertyMapping | templateProperty = divers| ontologyProperty = language }} -}}Mapping fr:Infobox Commune de France2106911511252016-05-26T12:38:05Z{{TemplateMapping +}}Mapping fr:Infobox Commune de France2106911590882022-10-09T20:17:21Z{{TemplateMapping | mapToClass = Settlement | mappings = {{ConstantMapping | ontologyProperty = country | value = France }} @@ -2303,7 +2382,12 @@ {{PropertyMapping | templateProperty = siteweb | ontologyProperty = foaf:homepage }} {{PropertyMapping | templateProperty = géoloc-département | ontologyProperty = geolocDepartment }} {{PropertyMapping | templateProperty = position | ontologyProperty = position }} - {{PropertyMapping | templateProperty = position-département | ontologyProperty = departmentPosition }} + {{PropertyMapping | templateProperty = position-département | ontologyProperty = departmentPosition }} + {{PropertyMapping | templateProperty = taille drapeau | ontologyProperty = imageSize }} + {{PropertyMapping | templateProperty = population | ontologyProperty = population }} + {{PropertyMapping | templateProperty = année_pop | ontologyProperty = year }} + {{PropertyMapping | templateProperty = province | ontologyProperty = province }} + }}Mapping fr:Infobox Commune de Hongrie2106898452262015-02-12T19:58:38Z{{TemplateMapping | mapToClass = Settlement | mappings = @@ -3606,7 +3690,7 @@ {{PropertyMapping | templateProperty = genre | ontologyProperty = genre }} {{PropertyMapping | templateProperty = distinctions | ontologyProperty = decoration }} {{PropertyMapping | templateProperty = œuvres | ontologyProperty = created }} -}}Mapping fr:Infobox Empereur romain2107633474162015-04-01T07:27:14Z{{TemplateMapping +}}Mapping fr:Infobox Empereur romain2107633587932022-05-31T15:15:47Z{{TemplateMapping | mapToClass = RomanEmperor | mappings = {{PropertyMapping | templateProperty = nom | ontologyProperty = foaf:name }} @@ -3626,8 +3710,8 @@ {{PropertyMapping | templateProperty = date de naissance | ontologyProperty = birthDate }} {{PropertyMapping | templateProperty = date de décès | ontologyProperty = deathDate }} {{PropertyMapping | templateProperty = inhumation | ontologyProperty = deathPlace }} - {{PropertyMapping | templateProperty = père | ontologyProperty = parent }} - {{PropertyMapping | templateProperty = mère | ontologyProperty = parent }} + {{PropertyMapping | templateProperty = père | ontologyProperty = father }} + {{PropertyMapping | templateProperty = mère | ontologyProperty = mother }} {{PropertyMapping | templateProperty = femme | ontologyProperty = spouse}} {{PropertyMapping | templateProperty = enfant | ontologyProperty = child }} }}Mapping fr:Infobox Escrimeur2107639273062013-07-10T11:01:45Z{{TemplateMapping @@ -3720,6 +3804,12 @@ {{PropertyMapping | templateProperty = position | ontologyProperty = position }} {{PropertyMapping | templateProperty = pied | ontologyProperty = foot }} {{PropertyMapping | templateProperty = date de mise à jour | ontologyProperty = updated }} +}}Mapping fr:Infobox Fromage21014271591012022-10-14T07:45:03Z{{TemplateMapping | mapToClass = Cheese +| mappings = + {{PropertyMapping | templateProperty = image | ontologyProperty = thumbnail }} + {{PropertyMapping | templateProperty = légende | ontologyProperty = thumbnailCaption }} + {{PropertyMapping | templateProperty = pays | ontologyProperty = country }} + {{PropertyMapping | templateProperty = fabricant | ontologyProperty = manufacturer }} }}Mapping fr:Infobox Gare2105865354152014-06-23T21:49:22Z{{TemplateMapping | mapToClass = RailwayStation | mappings = @@ -3816,6 +3906,13 @@ {{PropertyMapping | templateProperty = superficie | ontologyProperty = floorArea | unit = Area }} {{PropertyMapping | templateProperty = site officiel | ontologyProperty = foaf:homepage }} {{PropertyMapping | templateProperty = coût | ontologyProperty = cost | unit = Currency }} +}}Mapping fr:Infobox Grotte21014270591002022-10-13T12:41:22Z{{TemplateMapping +| mapToClass = Cave +| mappings = + {{PropertyMapping | templateProperty = image | ontologyProperty = thumbnail}} + {{PropertyMapping | templateProperty = légende | ontologyProperty = thumbnailCaption}} + {{PropertyMapping | templateProperty = name | ontologyProperty = foaf:name }} + {{PropertyMapping | templateProperty = pays | ontologyProperty = country }} }}Mapping fr:Infobox Guitare2107469266372013-06-28T15:02:12Z{{TemplateMapping | mapToClass = Guitar | mappings = @@ -3898,13 +3995,12 @@ {{PropertyMapping | templateProperty = argent CN | ontologyProperty = numberOfSilverMedalsWon }} {{PropertyMapping | templateProperty = bronze CN | ontologyProperty = numberOfBronzeMedalsWon }} }} -}}Mapping fr:Infobox Géographie nationale2107045474022015-04-01T00:09:04Z{{TemplateMapping -| mapToClass = Country +}}Mapping fr:Infobox Géographie nationale2107045590852022-10-09T20:05:05Z{{TemplateMapping +| mapToClass = Area | mappings = {{PropertyMapping | templateProperty = carte | ontologyProperty = map }} {{PropertyMapping | templateProperty = continent | ontologyProperty = continent }} {{PropertyMapping | templateProperty = région | ontologyProperty = region }} - {{PropertyMapping | templateProperty = coordonnées | ontologyProperty = coordinates }} {{PropertyMapping | templateProperty = rang | ontologyProperty = rank }} {{IntermediateNodeMapping | nodeClass = Area @@ -3957,6 +4053,27 @@ {{PropertyMapping | templateProperty = diplôme | ontologyProperty = diploma }} {{PropertyMapping | templateProperty = entourage | ontologyProperty = family }} {{PropertyMapping | templateProperty = site internet | ontologyProperty = foaf:homepage }} +}}Mapping fr:Infobox Hôtel21014268590982022-10-13T11:48:51Z{{TemplateMapping +| mapToClass = Hotel +| mappings = + {{PropertyMapping | templateProperty = nom | ontologyProperty = foaf:name }} + {{PropertyMapping | templateProperty = image | ontologyProperty = thumbnail }} + {{PropertyMapping | templateProperty = légende | ontologyProperty = thumbnailCaption }} + {{PropertyMapping | templateProperty = légende | ontologyProperty = rdfs:label}} + {{PropertyMapping | templateProperty = superficie | ontologyProperty = surfaceArea}} + {{PropertyMapping | templateProperty = commune | ontologyProperty = municipality}} + {{PropertyMapping | templateProperty = date d'ouverture | ontologyProperty = openingDate}} + {{PropertyMapping | templateProperty = date de fermeture | ontologyProperty = closingDate}} + {{PropertyMapping | templateProperty = pays | ontologyProperty = country}} + {{PropertyMapping | templateProperty = latitude | ontologyProperty = geo:lat}} + {{PropertyMapping | templateProperty = longitude | ontologyProperty = geo:long}} + {{PropertyMapping | templateProperty = date de démolition | ontologyProperty = demolitionYear}} + {{PropertyMapping | templateProperty = étoiles | ontologyProperty = NumberOfEtoilesMichelin }} + {{PropertyMapping | templateProperty = étages | ontologyProperty = topFloorHeight }} + {{PropertyMapping | templateProperty = chambre | ontologyProperty = numberOfRooms }} + {{PropertyMapping | templateProperty = architecte | ontologyProperty = architect }} + {{PropertyMapping | templateProperty = propriétaire | ontologyProperty = owner }} + {{PropertyMapping | templateProperty = style | ontologyProperty = architecturalStyle }} }}Mapping fr:Infobox Identité2107654273232013-07-10T11:44:16Z{{TemplateMapping | mapToClass = Person | mappings = @@ -4606,6 +4723,37 @@ {{PropertyMapping | templateProperty = datethéatre_fr | ontologyProperty = premiereDate }} {{PropertyMapping | templateProperty = datethéatre_fr | ontologyProperty = premiereYear }} {{PropertyMapping | templateProperty = théatre_fr | ontologyProperty = premierePlace }} +}}Mapping fr:Infobox Localité21014144588052022-06-17T15:18:53Z{{TemplateMapping +| mapToClass = Locality +| mappings = + {{PropertyMapping | templateProperty = nom | ontologyProperty = foaf:name }} + {{PropertyMapping | templateProperty = légende image | ontologyProperty = thumbnailCaption }} + {{PropertyMapping | templateProperty = pays | ontologyProperty = country }} + {{PropertyMapping | templateProperty = partie de | ontologyProperty = isPartOf }} + {{PropertyMapping | templateProperty = chef-lieu | ontologyProperty = capital }} + {{PropertyMapping | templateProperty = altitude | ontologyProperty = altitude }} + {{IntermediateNodeMapping | nodeClass = Area | correspondingProperty = wholeArea | mappings = + {{PropertyMapping | templateProperty = superficie | ontologyProperty = value }} + }} + {{IntermediateNodeMapping | nodeClass = Altitude | correspondingProperty = altitude | mappings = + {{PropertyMapping | templateProperty = point le plus haut | ontologyProperty = maximumElevation }} + {{PropertyMapping | templateProperty = point le plus bas | ontologyProperty = minimumElevation }} + {{PropertyMapping | templateProperty = altitude | ontologyProperty = value }} + }} + {{IntermediateNodeMapping | nodeClass = Demographics| correspondingProperty = demographics | mappings = + {{PropertyMapping | templateProperty = population | ontologyProperty = populationTotal }} + {{PropertyMapping | templateProperty = année_pop | ontologyProperty = year }} + }} + {{PropertyMapping | templateProperty = code postal | ontologyProperty = postalCode }} + {{GeocoordinatesMapping | latitude = latitude| longitude = longitude}} + {{PropertyMapping | templateProperty = siteweb | ontologyProperty = foaf:homepage }} + {{PropertyMapping | templateProperty = monnaie | ontologyProperty = currency }} + {{PropertyMapping | templateProperty = langue officielle | ontologyProperty = officialLanguage }} + {{PropertyMapping | templateProperty = prononciation | ontologyProperty = pronunciation }} + {{PropertyMapping | templateProperty = devise | ontologyProperty = motto }} + {{PropertyMapping | templateProperty = blason | ontologyProperty = blazon }} + {{PropertyMapping | templateProperty = carte | ontologyProperty = map }} + {{PropertyMapping | templateProperty = gentilé | ontologyProperty = peopleName }} }}Mapping fr:Infobox Localité de France2107104280832013-08-27T09:23:49Z{{TemplateMapping | mapToClass = Locality | mappings = @@ -4905,7 +5053,85 @@ {{PropertyMapping | templateProperty = site | ontologyProperty = foaf:homepage }} {{PropertyMapping | templateProperty = légende | ontologyProperty = thumbnailCaption }} {{GeocoordinatesMapping | latitude = latitude | longitude = longitude }} -}}Mapping fr:Infobox Musique (artiste)2104386355092014-06-28T12:17:47Z{{ConditionalMapping +}}Mapping fr:Infobox Municipalité du Canada21014261590842022-10-09T19:54:28Z{{TemplateMapping +| mapToClass = Settlement +| mappings = + {{ConstantMapping | ontologyProperty = country | value = Canada }} + {{PropertyMapping | templateProperty = nom | ontologyProperty = foaf:name | language = fr }} + {{PropertyMapping | templateProperty = image | ontologyProperty = thumbnail }} + {{PropertyMapping | templateProperty = légende | ontologyProperty = thumbnailCaption }} + {{PropertyMapping | templateProperty = blason | ontologyProperty = blazon }} + {{PropertyMapping | templateProperty = légende blason | ontologyProperty = blazonCaption }} + {{PropertyMapping | templateProperty = drapeau | ontologyProperty = flag }} + {{PropertyMapping | templateProperty = légende drapeau | ontologyProperty = flagCaption }} + {{PropertyMapping | templateProperty = prov | ontologyProperty = province }} + {{PropertyMapping | templateProperty = terr | ontologyProperty = territory }} + {{IntermediateNodeMapping + | nodeClass = Politician + | correspondingProperty = politicalLeader + | mappings = + {{PropertyMapping | templateProperty = maire | ontologyProperty = mayor }} + {{DateIntervalMapping + | templateProperty = mandat maire + | startDateOntologyProperty = activeYearsStartYear + | endDateOntologyProperty = activeYearsEndYear + }} + }} + {{IntermediateNodeMapping + | nodeClass = Politician + | correspondingProperty = politicalLeader + | mappings = + {{PropertyMapping | templateProperty = mairesse | ontologyProperty = mayor }} + {{DateIntervalMapping + | templateProperty = mandat maire + | startDateOntologyProperty = activeYearsStartYear + | endDateOntologyProperty = activeYearsEndYear + }} + }} + {{IntermediateNodeMapping + | nodeClass = Politician + | correspondingProperty = politicalLeader + | mappings = + {{PropertyMapping | templateProperty = chef | ontologyProperty = mayor }} + {{DateIntervalMapping + | templateProperty = mandat + | startDateOntologyProperty = activeYearsStartYear + | endDateOntologyProperty = activeYearsEndYear + }} + }} + {{IntermediateNodeMapping + | nodeClass = Politician + | correspondingProperty = politicalLeader + | mappings = + {{PropertyMapping | templateProperty = cheffe | ontologyProperty = mayor }} + {{DateIntervalMapping + | templateProperty = mandat + | startDateOntologyProperty = activeYearsStartYear + | endDateOntologyProperty = activeYearsEndYear + }} + }} + {{PropertyMapping | templateProperty = web | ontologyProperty = foaf:homepage }} + {{PropertyMapping | templateProperty = région | ontologyProperty = region }} + {{PropertyMapping | templateProperty = dr | ontologyProperty = administrativeDistrict }} + {{GeocoordinatesMapping | latitude = latitude | longitude = longitude }} + {{IntermediateNodeMapping + | nodeClass = Altitude + | correspondingProperty = altitude + | mappings = + {{PropertyMapping | templateProperty = altitude | ontologyProperty = value }} + {{PropertyMapping | templateProperty = alt mini | ontologyProperty = min }} + {{PropertyMapping | templateProperty = alt maxi | ontologyProperty = max }} + }} + {{IntermediateNodeMapping + | nodeClass = Area + | correspondingProperty = wholeArea + | mappings = + {{PropertyMapping | templateProperty = superficie | ontologyProperty = value }} + }} + {{PropertyMapping | templateProperty = fond | ontologyProperty = foundedBy}} + {{PropertyMapping | templateProperty = datefond | ontologyProperty = foundingDate }} + {{PropertyMapping | templateProperty = const | ontologyProperty = foundingDate }} +}}Mapping fr:Infobox Musique (artiste)2104386571092022-03-12T20:26:17Z{{ConditionalMapping | cases = {{Condition | templateProperty = charte @@ -4963,6 +5189,7 @@ | defaultMappings = + {{PropertyMapping | templateProperty = charte | ontologyProperty = artistFunction }} {{PropertyMapping | templateProperty = nom | ontologyProperty = foaf:name }} {{PropertyMapping | templateProperty = nom de naissance | ontologyProperty = birthName }} {{PropertyMapping | templateProperty = nom alias | ontologyProperty = foaf:nick }} @@ -4988,12 +5215,16 @@ {{PropertyMapping | templateProperty = ex membres | ontologyProperty = formerBandMember }} {{PropertyMapping | templateProperty = site web | ontologyProperty = foaf:homepage }} {{PropertyMapping | templateProperty = logo | ontologyProperty = foaf:logo }} + {{PropertyMapping | templateProperty = upright | ontologyProperty = scaleFactor}} + {{PropertyMapping | templateProperty = image | ontologyProperty = picture }} }}Mapping fr:Infobox Musique (festival)2106549241462013-03-01T14:46:52Z{{TemplateMapping | mapToClass = MusicFestival | mappings =    {{PropertyMapping | templateProperty = période | ontologyProperty = duration }} {{PropertyMapping | templateProperty = capacité | ontologyProperty = numberOfPeopleAttending }} -}}Mapping fr:Infobox Musique (œuvre)2104387354832014-06-27T21:42:33Z{{ConditionalMapping +}}Mapping fr:Infobox Musique (œuvre)2104387573882022-04-01T17:41:29Z{{ConditionalMapping +<!-- Recognized charte = album, live, ep, compilation, remix, vidéo, bande originale, single, single promotionnel, Chanson --> +<!-- --> | cases = {{Condition | templateProperty = charte @@ -5004,6 +5235,7 @@ | header = 0 | mappings = {{PropertyMapping | templateProperty = durée | ontologyProperty = albumRuntime | unit = minute }} + {{PropertyMapping | templateProperty = single | ontologyProperty = singleList}} }} }} {{Condition @@ -5103,7 +5335,8 @@ {{Condition | operator = otherwise | mapping = - {{TemplateMapping |mapToClass = MusicalWork }} + {{TemplateMapping + |mapToClass = MusicalWork }} }} | defaultMappings = @@ -5132,6 +5365,51 @@ {{PropertyMapping | templateProperty = auteur-compositeur | ontologyProperty = composer }} {{PropertyMapping | templateProperty = édition | ontologyProperty = publisher }} {{PropertyMapping | templateProperty = classement | ontologyProperty = rank }} + + {{PropertyMapping | templateProperty = date album suiv | ontologyProperty = subsequentWorkDate }} + {{PropertyMapping | templateProperty = date album préc | ontologyProperty = previousWorkDate }} + {{PropertyMapping | templateProperty = date single suiv | ontologyProperty = subsequentWorkDate }} + {{PropertyMapping | templateProperty = date single préc | ontologyProperty = previousWorkDate }} + + {{PropertyMapping | templateProperty = numéro piste préc | ontologyProperty = nextTrackNumber}} + {{PropertyMapping | templateProperty = numéro piste suiv | ontologyProperty = previousTrackNumber}} + {{PropertyMapping | templateProperty = réalisateur | ontologyProperty = director}} + {{PropertyMapping | templateProperty = featuring | ontologyProperty = featuring}} + {{PropertyMapping | templateProperty = légende | ontologyProperty = thumbnailCaption }} + {{PropertyMapping | templateProperty = image | ontologyProperty = picture }} + {{PropertyMapping | templateProperty = upright | ontologyProperty = scaleFactor}} + {{PropertyMapping | templateProperty = artiste principal | ontologyProperty = mainArtist}} + {{PropertyMapping | templateProperty = titre article en italique| ontologyProperty = italicTitle }} + {{PropertyMapping | templateProperty = historique | ontologyProperty = outputHistory }} + +<!-- template {{Succession musicale : développement linéaire : ca ne mappe pas divers +Mapping_fr:Infobox_Musique_(œuvre): Couldn't load property mapping on page Mapping fr:Infobox Musique (œuvre). Details: Unknown property type TemplateMapping on page title=Infobox Musique (œuvre);ns=210/Mapping fr/Mapping fr;language:wiki=fr,locale=fr + + {{TemplateMapping + | mapToClass = WorkSequence + | correspondingClass = MusicalWork + | correspondingProperty = otherWorks + | mappings = + {{PropertyMapping | templateProperty = divers | ontologyProperty = otherWorks }} + {{PropertyMapping | templateProperty = précédent | ontologyProperty = previousWork }} + {{PropertyMapping | templateProperty = date préc | ontologyProperty = year }} + {{PropertyMapping | templateProperty = suivant | ontologyProperty = subsequentWork }} + {{PropertyMapping | templateProperty = date suiv | ontologyProperty = year }} + }} +--> + + {{IntermediateNodeMapping + | nodeClass = WorkSequence + | correspondingProperty = otherWorks + | mappings = + {{PropertyMapping | templateProperty = divers | ontologyProperty = otherWorks }} + {{PropertyMapping | templateProperty = précédent | ontologyProperty = previousWork }} + {{PropertyMapping | templateProperty = date préc | ontologyProperty = year }} + {{PropertyMapping | templateProperty = suivant | ontologyProperty = subsequentWork }} + {{PropertyMapping | templateProperty = date suiv | ontologyProperty = year }} + }} + + }}Mapping fr:Infobox Musique classique (personnalité)2105925281322013-08-31T18:27:08Z<!-- For an overview over all known types see: http://fr.wikipedia.org/wiki/Mod%C3%A8le:Infobox_Musique_classique_(personnalit%C3%A9)#Charte_graphique --> {{ConditionalMapping @@ -5237,6 +5515,12 @@ {{PropertyMapping | templateProperty = type | ontologyProperty = type }} {{PropertyMapping | templateProperty = network | ontologyProperty = network }} --> +}}Mapping fr:Infobox Métier21014269590992022-10-13T12:34:06Z{{TemplateMapping +| mapToClass = Profession +| mappings = + {{PropertyMapping | templateProperty = nom | ontologyProperty = foaf:name}} + {{PropertyMapping | templateProperty = image | ontologyProperty = thumbnail}} + {{PropertyMapping | templateProperty = légende | ontologyProperty = thumbnailCaption}} }}Mapping fr:Infobox Nageur2105864273662013-07-10T14:15:24Z{{ TemplateMapping | mapToClass = Swimmer | mappings = @@ -5393,6 +5677,92 @@ {{ PropertyMapping | templateProperty = site web | ontologyProperty = foaf:homepage }} {{ PropertyMapping | templateProperty = devise | ontologyProperty = motto }} {{GeocoordinatesMapping | latitude = latitude | longitude = longitude }} +}}Mapping fr:Infobox Organisation221014145590872022-10-09T20:16:33Z{{ TemplateMapping | mapToClass = Organisation +| mappings = + {{ PropertyMapping | templateProperty = nom | ontologyProperty = foaf:name }} + {{IntermediateNodeMapping + | nodeClass = Image + | correspondingProperty = logo + | mappings = + {{PropertyMapping | templateProperty = logo | ontologyProperty = logo }} + {{PropertyMapping | templateProperty = légende logo | ontologyProperty = thumbnailCaption }} + {{PropertyMapping | templateProperty = taille logo | ontologyProperty = sizeLogo }} + + }} + {{ PropertyMapping | templateProperty = pays | ontologyProperty = country }} + {{ PropertyMapping | templateProperty = création | ontologyProperty = formationDate }} + {{ PropertyMapping | templateProperty = création | ontologyProperty = formationYear }} + {{ PropertyMapping | templateProperty = fondation | ontologyProperty = formationDate }} + {{ PropertyMapping | templateProperty = fondation | ontologyProperty = formationYear }} + {{ PropertyMapping | templateProperty = date_de_fondation | ontologyProperty = formationDate }} + {{ PropertyMapping | templateProperty = date_de_fondation | ontologyProperty = formationYear }} + {{ PropertyMapping | templateProperty = dissolution | ontologyProperty = extinctionDate }} + {{ PropertyMapping | templateProperty = dissolution | ontologyProperty = extinctionYear }} + {{ PropertyMapping | templateProperty = siège | ontologyProperty = headquarter }} + {{ PropertyMapping | templateProperty = siège social | ontologyProperty = headquarter }} + {{ PropertyMapping | templateProperty = siege | ontologyProperty = headquarter }} + {{ PropertyMapping | templateProperty = région | ontologyProperty = region }} + {{ PropertyMapping | templateProperty = langue | ontologyProperty = language }} + {{IntermediateNodeMapping + | nodeClass = PersonFunction + | correspondingProperty = leaderFunction + | mappings = + {{ PropertyMapping | templateProperty = dirigeant | ontologyProperty = person }} + {{ PropertyMapping | templateProperty = dirigeant | ontologyProperty = personName }} + {{ PropertyMapping | templateProperty = titre dirigeant | ontologyProperty = title }} + }} + {{IntermediateNodeMapping + | nodeClass = PersonFunction + | correspondingProperty = leaderFunction + | mappings = + {{ PropertyMapping | templateProperty = dirigeant1 | ontologyProperty = person }} + {{ PropertyMapping | templateProperty = dirigeant1 | ontologyProperty = personName }} + {{ PropertyMapping | templateProperty = titre dirigeant1 | ontologyProperty = title }} + }} + {{IntermediateNodeMapping + | nodeClass = PersonFunction + | correspondingProperty = leaderFunction + | mappings = + {{ PropertyMapping | templateProperty = dirigeant2 | ontologyProperty = person }} + {{ PropertyMapping | templateProperty = dirigeant2 | ontologyProperty = personName }} + {{ PropertyMapping | templateProperty = titre dirigeant2 | ontologyProperty = title }} + }} + {{IntermediateNodeMapping + | nodeClass = PersonFunction + | correspondingProperty = leaderFunction + | mappings = + {{ PropertyMapping | templateProperty = dirigeant3 | ontologyProperty = person }} + {{ PropertyMapping | templateProperty = dirigeant3 | ontologyProperty = personName }} + {{ PropertyMapping | templateProperty = titre dirigeant3 | ontologyProperty = title }} + }} + {{ PropertyMapping | templateProperty = personne clé | ontologyProperty = keyPerson }} + {{ PropertyMapping | templateProperty = budget | ontologyProperty = endowment }} + {{ PropertyMapping | templateProperty = effectifs | ontologyProperty = numberOfStaff }} + {{ PropertyMapping | templateProperty = membre | ontologyProperty = numberOfMembers }} + {{ PropertyMapping | templateProperty = affiliation | ontologyProperty = affiliation }} + {{ PropertyMapping | templateProperty = type | ontologyProperty = type }} + {{ PropertyMapping | templateProperty = site web | ontologyProperty = foaf:homepage }} + {{ PropertyMapping | templateProperty = devise | ontologyProperty = motto }} + {{ PropertyMapping | templateProperty = slogan | ontologyProperty = motto }} + {{ PropertyMapping | templateProperty = association_slogan | ontologyProperty = motto }} + {{GeocoordinatesMapping | latitude = latitude | longitude = longitude }} +}}Mapping fr:Infobox Ouvrage21014263590902022-10-09T20:38:19Z{{TemplateMapping +| mapToClass = WrittenWork +| mappings = + {{PropertyMapping | templateProperty = nom | ontologyProperty = foaf:name }} + {{PropertyMapping | templateProperty = titre | ontologyProperty = foaf:name }} + {{PropertyMapping | templateProperty = titre original | ontologyProperty = originalTitle }} + {{PropertyMapping | templateProperty = auteur | ontologyProperty = author }} + {{PropertyMapping | templateProperty = langue | ontologyProperty = language }} + {{PropertyMapping | templateProperty = pays | ontologyProperty = country }} + {{PropertyMapping | templateProperty = précédé par | ontologyProperty = previousWork }} + {{PropertyMapping | templateProperty = suivi par | ontologyProperty = subsequentWork }} + {{PropertyMapping | templateProperty = genre | ontologyProperty = literaryGenre }} + {{PropertyMapping | templateProperty = date de parution | ontologyProperty = firstPublicationDate }} + {{PropertyMapping | templateProperty = date de parution | ontologyProperty = firstPublicationYear }} + {{PropertyMapping | templateProperty = partie de | ontologyProperty = isPartOf }} + {{PropertyMapping | templateProperty = personnage | ontologyProperty = mainCharacter }} + {{PropertyMapping | templateProperty = traduction | ontologyProperty = translator }} }}Mapping fr:Infobox Parti politique2107472282682013-09-05T15:34:13Z{{TemplateMapping | mapToClass = PoliticalParty | mappings = @@ -5633,6 +6003,27 @@ {{PropertyMapping | templateProperty = équipe_actuelle | ontologyProperty = currentTeam }} {{PropertyMapping | templateProperty = équipe_précédente | ontologyProperty = team }} {{PropertyMapping | templateProperty = jutsu | ontologyProperty = jutsu }} +}}Mapping fr:Infobox Personnalité des sciences humaines et sociales21014264590932022-10-11T07:58:07Z{{TemplateMapping +| mapToClass = Person +| mappings = + {{PropertyMapping | templateProperty = nom | ontologyProperty = foaf:name }} + {{PropertyMapping | templateProperty = image | ontologyProperty = thumbnail }} + {{PropertyMapping | templateProperty = légende | ontologyProperty = thumbnailCaption }} + {{PropertyMapping | templateProperty = date de naissance | ontologyProperty = birthDate }} + {{PropertyMapping | templateProperty = lieu de naissance | ontologyProperty = birthPlace }} + {{PropertyMapping | templateProperty = pays_naissance | ontologyProperty = nationality }} + {{PropertyMapping | templateProperty = date de décès | ontologyProperty = deathDate }} + {{PropertyMapping | templateProperty = lieu de décès | ontologyProperty = deathPlace }} + {{PropertyMapping | templateProperty = nationalité | ontologyProperty = nationality }} + {{PropertyMapping | templateProperty = profession | ontologyProperty = occupation}} + {{PropertyMapping | templateProperty = études | ontologyProperty = education}} + {{PropertyMapping | templateProperty = formation | ontologyProperty = education}} + {{PropertyMapping | templateProperty = influencé par | ontologyProperty = influencedBy }} + {{PropertyMapping | templateProperty = partisan | ontologyProperty = influenced }} + {{PropertyMapping | templateProperty = œuvres principales | ontologyProperty = notableWork }} + {{PropertyMapping | templateProperty = approche | ontologyProperty = movement }} + {{PropertyMapping | templateProperty = principaux intérêts | ontologyProperty = interest }} + {{PropertyMapping | templateProperty = travaux | ontologyProperty = notableWork }} }}Mapping fr:Infobox Personnalité des sciences sociales2107778273692013-07-10T14:25:23Z{{TemplateMapping | mapToClass = Person | mappings = @@ -5736,7 +6127,7 @@ {{PropertyMapping | templateProperty = famille | ontologyProperty = family}} {{PropertyMapping | templateProperty = emblème | ontologyProperty = foaf:logo}} {{PropertyMapping | templateProperty = liste | ontologyProperty = relative}} -}}Mapping fr:Infobox Personnalité politique2103448491552015-10-13T12:52:54Z{{ConditionalMapping +}}Mapping fr:Infobox Personnalité politique2103448587922022-05-31T15:14:22Z{{ConditionalMapping | cases = {{Condition | templateProperty = fonction1 @@ -6082,8 +6473,8 @@ {{ PropertyMapping | templateProperty = université | ontologyProperty = university }} {{ PropertyMapping | templateProperty = conjoint | ontologyProperty = spouse }} {{ PropertyMapping | templateProperty = enfants | ontologyProperty = child }} - {{ PropertyMapping | templateProperty = père | ontologyProperty = parent }} - {{ PropertyMapping | templateProperty = mère | ontologyProperty = parent }} + {{ PropertyMapping | templateProperty = père | ontologyProperty = father }} + {{ PropertyMapping | templateProperty = mère | ontologyProperty = mother }} {{ PropertyMapping | templateProperty = dynastie | ontologyProperty = dynasty }} {{ PropertyMapping | templateProperty = profession | ontologyProperty = profession }} {{ PropertyMapping | templateProperty = religion | ontologyProperty = religion }} @@ -6108,6 +6499,21 @@ {{PropertyMapping | templateProperty = fonction_diverse | ontologyProperty = otherFunction}} {{PropertyMapping | templateProperty = distinction | ontologyProperty = decoration }} {{PropertyMapping | templateProperty = hommage | ontologyProperty = homage }} +}}Mapping fr:Infobox Phare21014262590952022-10-13T09:19:35Z{{TemplateMapping +| mapToClass = Lighthouse +| mappings = + {{PropertyMapping | templateProperty = image | ontologyProperty = thumbnail }} + {{PropertyMapping | templateProperty = légende | ontologyProperty = thumbnailCaption }} + {{PropertyMapping | templateProperty = pays | ontologyProperty = country }} + + {{GeocoordinatesMapping | latitude = latitude | longitude = longitude }} + {{DateIntervalMapping + | templateProperty = construction + | startDateOntologyProperty = buildingStartDate + | endDateOntologyProperty = buildingEndDate + }} + + {{PropertyMapping | templateProperty = hauteur | ontologyProperty = height }} }}Mapping fr:Infobox Philosophe2106415273892013-07-10T15:09:49Z{{TemplateMapping | mapToClass = Philosopher | mappings = @@ -10000,6 +10406,10 @@ Temperature }} {{PropertyMapping | templateProperty = découvertes | ontologyProperty = knownFor }} {{PropertyMapping | templateProperty = expéditions | ontologyProperty = expedition }} {{PropertyMapping | templateProperty = activités autres | ontologyProperty = occupation }} +}}Mapping fr:Infobox Élection21014258590792022-10-09T19:07:37Z{{TemplateMapping +| mapToClass = Election +| mappings = + {{PropertyMapping | templateProperty = pays | ontologyProperty = country }} }}Mapping fr:Infobox Émission de télévision2105059166392012-01-25T09:50:05Z{{ TemplateMapping | mapToClass = TelevisionShow }}Mapping fr:Infobox Épisode de série télévisée2105060166402012-01-25T09:51:22Z{{ @@ -10199,7 +10609,7 @@ Temperature }} {{PropertyMapping | templateProperty = caractère | ontologyProperty = mood }} {{PropertyMapping | templateProperty = alias | ontologyProperty = foaf:nick }} {{PropertyMapping | templateProperty = alias original | ontologyProperty = foaf:nick }} -}}Mapping fr:Pistes2109574354942014-06-27T22:20:13Z{{TemplateMapping +}}Mapping fr:Pistes2109574571502022-03-14T23:17:43Z{{TemplateMapping | mapToClass = TrackList | correspondingClass = Album | correspondingProperty = album @@ -10460,8 +10870,75 @@ Temperature }} {{PropertyMapping | templateProperty = length15 | ontologyProperty = runtime | unit = minute }} {{PropertyMapping | templateProperty = note15 | ontologyProperty = comment }} }} + {{IntermediateNodeMapping + | nodeClass = Song + | correspondingProperty = division + | mappings = + {{PropertyMapping | templateProperty = piste16 | ontologyProperty = foaf:name }} + {{PropertyMapping | templateProperty = title16 | ontologyProperty = foaf:name }} + {{PropertyMapping | templateProperty = numero16 | ontologyProperty = trackNumber }} + {{PropertyMapping | templateProperty = auteur16 | ontologyProperty = writer }} + {{PropertyMapping | templateProperty = tout_ecriture | ontologyProperty = writer }} + {{PropertyMapping | templateProperty = paroles16 | ontologyProperty = lyrics }} + {{PropertyMapping | templateProperty = tout_paroles | ontologyProperty = lyrics }} + {{PropertyMapping | templateProperty = musique16 | ontologyProperty = composer }} + {{PropertyMapping | templateProperty = tout_musique | ontologyProperty = composer }} + {{PropertyMapping | templateProperty = temps16 | ontologyProperty = runtime | unit = minute }} + {{PropertyMapping | templateProperty = length16 | ontologyProperty = runtime | unit = minute }} + {{PropertyMapping | templateProperty = note16 | ontologyProperty = comment }} + }} {{PropertyMapping | templateProperty = total_temps | ontologyProperty = runtime | unit = minute }} -}}Mapping fr:Succession/Ligne2104450459512015-03-15T19:22:50Z{{TemplateMapping +}}Mapping fr:Single21013830571852022-03-17T09:08:58Z<!-- dummy file: to be deleted -->Mapping fr:Singles21013827571952022-03-18T14:29:29Z{{TemplateMapping +| mapToClass = SingleList +| mappings = + {{PropertyMapping | templateProperty = single 1 | ontologyProperty = singleOf }} + {{PropertyMapping | templateProperty = single 1 date | ontologyProperty = foaf:name }} + {{PropertyMapping | templateProperty = date 1 | ontologyProperty = date }} + + {{PropertyMapping | templateProperty = single 2 | ontologyProperty = singleOf }} + {{PropertyMapping | templateProperty = single 2 date | ontologyProperty = foaf:name }} + {{PropertyMapping | templateProperty = date 2 | ontologyProperty = date }} + + {{PropertyMapping | templateProperty = single 3 | ontologyProperty = singleOf }} + {{PropertyMapping | templateProperty = single 3 date | ontologyProperty = foaf:name }} + {{PropertyMapping | templateProperty = date 3 | ontologyProperty = date }} + + {{PropertyMapping | templateProperty = single 4 | ontologyProperty = singleOf }} + {{PropertyMapping | templateProperty = single 4 date | ontologyProperty = foaf:name }} + {{PropertyMapping | templateProperty = date 4 | ontologyProperty = date }} + + {{PropertyMapping | templateProperty = single 5 | ontologyProperty = singleOf }} + {{PropertyMapping | templateProperty = single 5 date | ontologyProperty = foaf:name }} + {{PropertyMapping | templateProperty = date 5 | ontologyProperty = date }} + + {{PropertyMapping | templateProperty = single 6 | ontologyProperty = singleOf }} + {{PropertyMapping | templateProperty = single 6 date | ontologyProperty = foaf:name }} + {{PropertyMapping | templateProperty = date 6 | ontologyProperty = date }} + + {{PropertyMapping | templateProperty = single 7 | ontologyProperty = singleOf }} + {{PropertyMapping | templateProperty = single 7 date | ontologyProperty = foaf:name }} + {{PropertyMapping | templateProperty = date 7 | ontologyProperty = date }} + + {{PropertyMapping | templateProperty = single 8 | ontologyProperty = singleOf }} + {{PropertyMapping | templateProperty = single 8 date | ontologyProperty = foaf:name }} + {{PropertyMapping | templateProperty = date 8 | ontologyProperty = date }} + + {{PropertyMapping | templateProperty = single 9 | ontologyProperty = singleOf }} + {{PropertyMapping | templateProperty = single 9 date | ontologyProperty = foaf:name }} + {{PropertyMapping | templateProperty = date 9 | ontologyProperty = date }} + + {{PropertyMapping | templateProperty = single 10 | ontologyProperty = singleOf }} + {{PropertyMapping | templateProperty = single 10 date | ontologyProperty = foaf:name }} + {{PropertyMapping | templateProperty = date 10 | ontologyProperty = date }} + + {{PropertyMapping | templateProperty = single 11 | ontologyProperty = singleOf }} + {{PropertyMapping | templateProperty = single 11 date | ontologyProperty = foaf:name }} + {{PropertyMapping | templateProperty = date 11 | ontologyProperty = date }} + + {{PropertyMapping | templateProperty = single 12 | ontologyProperty = singleOf }} + {{PropertyMapping | templateProperty = single 12 date | ontologyProperty = foaf:name }} + {{PropertyMapping | templateProperty = date 12 | ontologyProperty = date }} +}}Mapping fr:Succession/Ligne2104450574132022-04-14T17:14:04Z{{TemplateMapping | mapToClass = owl:Thing <!-- Should be corresponding to Person but that doesn't seem to work | mapToClass = PersonFunction @@ -10473,6 +10950,28 @@ Temperature }} | nodeClass = PersonFunction | correspondingProperty = occupation | mappings = +<!-- +couleur hexa case de gauche + {{PropertyMapping | templateProperty = couleur1 | ontologyProperty = title }} +couleur hexa case centrale + {{PropertyMapping | templateProperty = couleur2 | ontologyProperty = title }} +couleur hexa case de droite + {{PropertyMapping | templateProperty = couleur3 | ontologyProperty = title }} +image icone au dessus du nom + {{PropertyMapping | templateProperty = icone | ontologyProperty = title }} +image icone a gauche du nom + {{PropertyMapping | templateProperty = iconeG | ontologyProperty = title }} +nbre de fois successives ou le successeur est utilise; fusion col droite + {{PropertyMapping | templateProperty = nbap | ontologyProperty = title }} +nbre de fois successives ou le predecesseur est utilise; fusion col gauche + {{PropertyMapping | templateProperty = nbav | ontologyProperty = title }} +image icone a droite du nom + {{PropertyMapping | templateProperty = iconeD | ontologyProperty = title }} +??taille + {{PropertyMapping | templateProperty = taille | ontologyProperty = title }} +nbre de fois successives ou le nom sera utilise /fusion colonne centrale + {{PropertyMapping | templateProperty = nbno | ontologyProperty = title }} +--> {{PropertyMapping | templateProperty = nom | ontologyProperty = title }} {{PropertyMapping | templateProperty = nom | ontologyProperty = category }} {{DateIntervalMapping @@ -10488,6 +10987,55 @@ Temperature }} {{PropertyMapping | templateProperty = avant | ontologyProperty = predecessor }} {{PropertyMapping | templateProperty = après | ontologyProperty = successor }} }} +}}Mapping fr:Succession musicale21013831572312022-03-25T09:53:49Z<!-- en travaux + https://fr.wikipedia.org/wiki/Mod%C3%A8le:Succession_musicale + + +TemplateMapping +| mapToClass = SingleList +| mappings = + +.-------single +| .-------syntaxe générale +| | .------ bande originale +| | | .------ entete libre +| | | | +| X {{PropertyMapping | templateProperty = charte | ontologyProperty = singleOf }} +X X {{PropertyMapping | templateProperty = artiste | ontologyProperty = foaf:name }} + X {{PropertyMapping | templateProperty = film | ontologyProperty = related }} + X {{PropertyMapping | templateProperty = entête | ontologyProperty = foaf:name }} + +X X X X {{PropertyMapping | templateProperty = précédent | ontologyProperty = previousWork }} +X X X X {{PropertyMapping | templateProperty = date préc | ontologyProperty = year }} +X X X X {{PropertyMapping | templateProperty = suivant | ontologyProperty = subsequentWork }} +X X X X {{PropertyMapping | templateProperty = date suiv | ontologyProperty = year }} + +TemplateMapping | mapToClass = Automobile | mappings = {{IntermediateNodeMapping | nodeClass = AutomobileEngine | correspondingProperty = engine | mappings = {{PropertyMapping | ontologyProperty = number | templateProperty = engine }} {{PropertyMapping | ontologyProperty = power | templateProperty = engine | unit = Power }} {{PropertyMapping | ontologyProperty = torque | templateProperty = engine | unit = newtonMeter }} }} + + --> + + +{{TemplateMapping +| mapToClass = WorkSequence +| mappings = + {{PropertyMapping | templateProperty = charte | ontologyProperty = singleOf }} + {{PropertyMapping | templateProperty = artiste | ontologyProperty = foaf:name }} + {{PropertyMapping | templateProperty = film | ontologyProperty = related }} + {{PropertyMapping | templateProperty = entête | ontologyProperty = foaf:name }} + + {{PropertyMapping | templateProperty = précédent | ontologyProperty = previousWork }} + {{PropertyMapping | templateProperty = date préc | ontologyProperty = year }} + {{PropertyMapping | templateProperty = suivant | ontologyProperty = subsequentWork }} + {{PropertyMapping | templateProperty = date suiv | ontologyProperty = year }} + +<!-- + {{IntermediateNodeMapping | nodeClass = WorkSequence | mappings = + {{PropertyMapping | templateProperty = précédent | ontologyProperty = previousWork }} + {{PropertyMapping | templateProperty = date préc | ontologyProperty = year }} + {{PropertyMapping | templateProperty = suivant | ontologyProperty = subsequentWork }} + {{PropertyMapping | templateProperty = date suiv | ontologyProperty = year }} + }} + --> }}Mapping fr:Taxobox21011834520302017-04-14T13:13:35Z{{TemplateMapping | mapToClass = owl:Thing | mappings = diff --git a/mappings/Mapping_hu.xml b/mappings/Mapping_hu.xml index e49995b544..3116a7c1d8 100644 --- a/mappings/Mapping_hu.xml +++ b/mappings/Mapping_hu.xml @@ -248,7 +248,7 @@ {{PropertyMapping | templateProperty = terület | ontologyProperty = area }} {{PropertyMapping | templateProperty = szöveg_pozíciója | ontologyProperty = sourcePosition }} {{PropertyMapping | templateProperty = weboldal | ontologyProperty = foaf:homepage }} -}}Mapping hu:Egyház infobox2382696100402010-10-27T16:20:07Z{{TemplateMapping +}}Mapping hu:Egyház infobox2382696548662021-07-19T14:14:05Z{{TemplateMapping | mapToClass = Cleric | mappings = {{PropertyMapping | templateProperty = név | ontologyProperty = foaf:name }} @@ -270,7 +270,6 @@ {{PropertyMapping | templateProperty = székhely | ontologyProperty = headquarter }} {{PropertyMapping | templateProperty = terület | ontologyProperty = area }} {{PropertyMapping | templateProperty = technikai_szám | ontologyProperty = number }} -}} {{PropertyMapping | templateProperty = honlap | ontologyProperty = foaf:homepage }} }}Mapping hu:Egyházi személy infobox2382706100772010-10-27T17:25:15Z{{TemplateMapping | mapToClass = Cleric @@ -720,7 +719,7 @@ {{PropertyMapping | templateProperty = kitüntetései | ontologyProperty = award }} {{PropertyMapping | templateProperty = rokonai | ontologyProperty = related }} {{PropertyMapping | templateProperty = polgári_foglalkozása | ontologyProperty = occupation }} -}}Mapping hu:Katonai konfliktus infobox2382644104902010-11-19T11:51:40Z{{TemplateMapping +}}Mapping hu:Katonai konfliktus infobox2382644548652021-07-19T14:01:50Z{{TemplateMapping | mapToClass = MilitaryConflict | mappings = {{PropertyMapping | templateProperty = konfliktus | ontologyProperty = foaf:name }} @@ -729,7 +728,6 @@ {{PropertyMapping | templateProperty = eredmény | ontologyProperty = result }} {{PropertyMapping | templateProperty = ok | ontologyProperty = causalties }} {{PropertyMapping | templateProperty = területváltozások | ontologyProperty = territory }} - {{PropertyMapping | templateProperty = {{PropertyMapping | templateProperty = parancsnok1 | ontologyProperty = commander }} {{PropertyMapping | templateProperty = parancsnok2 | ontologyProperty = commander }} {{PropertyMapping | templateProperty = haderők1 | ontologyProperty = strength }} @@ -2610,7 +2608,7 @@ {{PropertyMapping | templateProperty = szélesség | ontologyProperty = width }} {{PropertyMapping | templateProperty = hosszúság | ontologyProperty = length }} {{PropertyMapping | templateProperty = szöveg_pozíciója | ontologyProperty = sourcePosition }} -}}Mapping hu:Író infobox2382620100712010-10-27T17:20:39Z{{TemplateMapping +}}Mapping hu:Író infobox2382620548672021-07-19T14:15:19Z{{TemplateMapping | mapToClass = Writer | mappings = {{PropertyMapping | templateProperty = név | ontologyProperty = foaf:name }} @@ -2628,7 +2626,6 @@ {{PropertyMapping | templateProperty = műfaj | ontologyProperty = genre }} {{PropertyMapping | templateProperty = irányzat | ontologyProperty = movement }} {{PropertyMapping | templateProperty = periódus | ontologyProperty = era }} -}} {{PropertyMapping | templateProperty = első_mű | ontologyProperty = notableWork }} {{PropertyMapping | templateProperty = fő_mű | ontologyProperty = notableWork }} {{PropertyMapping | templateProperty = kiadó | ontologyProperty = rdfs:label }} diff --git a/pom.xml b/pom.xml index d260087fbe..18d1eab0a4 100644 --- a/pom.xml +++ b/pom.xml @@ -61,6 +61,7 @@ scripts dump server + From 0f859851839ae80aa7795929d0d14d1a313ec954 Mon Sep 17 00:00:00 2001 From: c_ringwald <42188996+datalogism@users.noreply.github.com> Date: Wed, 7 Dec 2022 11:37:29 +0100 Subject: [PATCH 32/54] Update history/ReadMe.md Co-authored-by: Ted Thibodeau Jr --- history/ReadMe.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/history/ReadMe.md b/history/ReadMe.md index 78b9907e73..045c89fe06 100644 --- a/history/ReadMe.md +++ b/history/ReadMe.md @@ -1,6 +1,6 @@ # DBPEDIA HISTORY -DBpedia History allows to extract into a RDF format the history of Wikipedia chapter +DBpedia History enables the history of a Wikipedia chapter to be extracted into an RDF format ## Previous work From bbf64f46091b2ab3b4c4a72f7192b1e53d974b7a Mon Sep 17 00:00:00 2001 From: c_ringwald <42188996+datalogism@users.noreply.github.com> Date: Wed, 7 Dec 2022 11:37:44 +0100 Subject: [PATCH 33/54] Update history/ReadMe.md Co-authored-by: Ted Thibodeau Jr --- history/ReadMe.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/history/ReadMe.md b/history/ReadMe.md index 045c89fe06..351558616b 100644 --- a/history/ReadMe.md +++ b/history/ReadMe.md @@ -7,7 +7,7 @@ DBpedia History enables the history of a Wikipedia chapter to be extracted into This DBpedia App is a scala/java version of the first work conducted by the French Chapter : https://github.com/dbpedia/Historic/ -Fabien Gandon, Raphael Boyer, Olivier Corby, Alexandre Monnin. Wikipedia editing history in DBpedia : extracting and publishing the encyclopedia editing activity as linked data. IEEE/WIC/ACM International Joint Conference on Web Intelligence (WI' 16), Oct 2016, Omaha, United States. +Fabien Gandon, Raphael Boyer, Olivier Corby, Alexandre Monnin. Wikipedia editing history in DBpedia: extracting and publishing the encyclopedia editing activity as linked data. IEEE/WIC/ACM International Joint Conference on Web Intelligence (WI' 16), Oct 2016, Omaha, United States. https://hal.inria.fr/hal-01359575 Fabien Gandon, Raphael Boyer, Olivier Corby, Alexandre Monnin. Materializing the editing history of Wikipedia as linked data in DBpedia. ISWC 2016 - 15th International Semantic Web Conference, Oct 2016, Kobe, Japan. . From 37376c1375e2656a7ebb05210a46467c4223df9d Mon Sep 17 00:00:00 2001 From: c_ringwald <42188996+datalogism@users.noreply.github.com> Date: Wed, 7 Dec 2022 11:38:05 +0100 Subject: [PATCH 34/54] Update history/src/main/scala/org/dbpedia/extraction/dump/extract/SerializableUtils2.scala Co-authored-by: Ted Thibodeau Jr --- .../dbpedia/extraction/dump/extract/SerializableUtils2.scala | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/history/src/main/scala/org/dbpedia/extraction/dump/extract/SerializableUtils2.scala b/history/src/main/scala/org/dbpedia/extraction/dump/extract/SerializableUtils2.scala index b58cb07b44..7f55be316f 100644 --- a/history/src/main/scala/org/dbpedia/extraction/dump/extract/SerializableUtils2.scala +++ b/history/src/main/scala/org/dbpedia/extraction/dump/extract/SerializableUtils2.scala @@ -35,7 +35,7 @@ object SerializableUtils2 extends Serializable { } /** - * Parses a xml string to a wikipage. + * Parses an XML string to a wikipage. * based on org.dbpedia.extraction.sources.XMLSource * @param xmlString xml wiki page * @return Option[WikiPage] From 9ff3818db2fc1a761e1f46f5c73408ba9f2cf100 Mon Sep 17 00:00:00 2001 From: c_ringwald <42188996+datalogism@users.noreply.github.com> Date: Thu, 8 Dec 2022 09:40:12 +0100 Subject: [PATCH 35/54] Update dump/src/test/scala/org/dbpedia/extraction/dump/ExtractionTestAbstract.md Co-authored-by: Ted Thibodeau Jr --- .../extraction/dump/ExtractionTestAbstract.md | 22 ++++++++++++++----- 1 file changed, 17 insertions(+), 5 deletions(-) diff --git a/dump/src/test/scala/org/dbpedia/extraction/dump/ExtractionTestAbstract.md b/dump/src/test/scala/org/dbpedia/extraction/dump/ExtractionTestAbstract.md index e7b555da2a..cd9b861f06 100755 --- a/dump/src/test/scala/org/dbpedia/extraction/dump/ExtractionTestAbstract.md +++ b/dump/src/test/scala/org/dbpedia/extraction/dump/ExtractionTestAbstract.md @@ -6,11 +6,23 @@ designed for testing abstracts extractors * Delete tag @DoNotDiscover of ExtractionTestAbstract * add the tag @DoNotDiscover to other test class -## Procedure : +## Procedure 1. Clean your target directory with `mvn clean` in the root directory of DIEF -1. Go to bash scripts via `cd /dump/src/test/bash` -1. OPTIONAL: Create a new Wikipedia minidump sample with `bash create_custom_sample.sh -n $numberOfPage -l $lang -d $optionalDate` -1. Process sample of Wikipedia pages `bash Minidump_custom_sample.sh -f $filename/lst` +1. Go to bash scripts via + ```shell + cd /dump/src/test/bash + ``` +1. OPTIONAL: Create a new Wikipedia minidump sample with + ```shell + bash create_custom_sample.sh -n $numberOfPage -l $lang -d $optionalDate + ``` +1. Process sample of Wikipedia pages + ```shell + bash Minidump_custom_sample.sh -f $filename/lst + ``` 1. Update the extraction language parameter for your minidump sample in [`extraction.nif.abstracts.properties`](https://github.com/datalogism/extraction-framework/blob/gsoc-celian/dump/src/test/resources/extraction-configs/extraction.nif.abstracts.properties) and in [`extraction.plain.abstracts.properties`](https://github.com/datalogism/extraction-framework/blob/gsoc-celian/dump/src/test/resources/extraction-configs/extraction.plain.abstracts.properties) 1. Change the name of your log in the [`ExtractionTestAbstract.scala`](https://github.com/datalogism/extraction-framework/blob/gsoc-celian/dump/src/test/scala/org/dbpedia/extraction/dump/ExtractionTestAbstract.scala) file -1. Rebuild the app with `mvn install`, or just test it with `mvn test -Dtest="ExtractionTestAbstract2"` +1. Rebuild the app with `mvn install`, or just test it with + ```shell + mvn test -Dtest="ExtractionTestAbstract2" + ``` From 8932d9723ab38343f57aa027cfdfbf0a7e94cbc9 Mon Sep 17 00:00:00 2001 From: c_ringwald <42188996+datalogism@users.noreply.github.com> Date: Thu, 8 Dec 2022 09:40:25 +0100 Subject: [PATCH 36/54] Update dump/src/test/scala/org/dbpedia/extraction/dump/ExtractionTestAbstract.md Co-authored-by: Ted Thibodeau Jr --- .../org/dbpedia/extraction/dump/ExtractionTestAbstract.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dump/src/test/scala/org/dbpedia/extraction/dump/ExtractionTestAbstract.md b/dump/src/test/scala/org/dbpedia/extraction/dump/ExtractionTestAbstract.md index cd9b861f06..c7ec48230c 100755 --- a/dump/src/test/scala/org/dbpedia/extraction/dump/ExtractionTestAbstract.md +++ b/dump/src/test/scala/org/dbpedia/extraction/dump/ExtractionTestAbstract.md @@ -3,8 +3,8 @@ designed for testing abstracts extractors ## Before all -* Delete tag @DoNotDiscover of ExtractionTestAbstract -* add the tag @DoNotDiscover to other test class +* Delete tag `@DoNotDiscover` of `ExtractionTestAbstract` +* add tag `@DoNotDiscover` to other test class ## Procedure 1. Clean your target directory with `mvn clean` in the root directory of DIEF From 367dfe9e015fc563c4582b3336d35e128bda0852 Mon Sep 17 00:00:00 2001 From: c_ringwald <42188996+datalogism@users.noreply.github.com> Date: Thu, 8 Dec 2022 09:40:37 +0100 Subject: [PATCH 37/54] Update history/ReadMe.md Co-authored-by: Ted Thibodeau Jr --- history/ReadMe.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/history/ReadMe.md b/history/ReadMe.md index 351558616b..00d070ae8c 100644 --- a/history/ReadMe.md +++ b/history/ReadMe.md @@ -5,7 +5,7 @@ DBpedia History enables the history of a Wikipedia chapter to be extracted into ## Previous work -This DBpedia App is a scala/java version of the first work conducted by the French Chapter : https://github.com/dbpedia/Historic/ +This DBpedia App is a Scala/Java version of the first work conducted by the French Chapter, . Fabien Gandon, Raphael Boyer, Olivier Corby, Alexandre Monnin. Wikipedia editing history in DBpedia: extracting and publishing the encyclopedia editing activity as linked data. IEEE/WIC/ACM International Joint Conference on Web Intelligence (WI' 16), Oct 2016, Omaha, United States. https://hal.inria.fr/hal-01359575 From a8c773614a9a8edaaa3ebb81011b6069a211ca90 Mon Sep 17 00:00:00 2001 From: c_ringwald <42188996+datalogism@users.noreply.github.com> Date: Thu, 8 Dec 2022 09:40:45 +0100 Subject: [PATCH 38/54] Update history/ReadMe.md Co-authored-by: Ted Thibodeau Jr --- history/ReadMe.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/history/ReadMe.md b/history/ReadMe.md index 00d070ae8c..b86efca3b6 100644 --- a/history/ReadMe.md +++ b/history/ReadMe.md @@ -15,9 +15,9 @@ https://hal.inria.fr/hal-01359583 ## A first working prototype -This prototype is not optimized, during its development of it we were faced with the WikiPage type checking constraints that are checked in almost every module of the DBpedia pipeline. -We hardly copy/paste and renamed all the classes and objects we needed for running the extractors. -This conception could be easily improved by making WikiPage and WikiPageWithRevision objects inherit from the same abstract object. +This prototype is not optimized. During its development, we were faced with the WikiPage type-checking constraints that are checked in almost every module of the DBpedia pipeline. +We basically copy/pasted and renamed all the classes and objects we needed for running the extractors. +This conception could be easily improved by making `WikiPage` and `WikiPageWithRevision` objects inherit from the same abstract object. But as a first step, we wanted to touch the less possible DBpedia core module. Some other improvements that could be conducted: From 716a780054c6ed145692c286cb4b3f5608d1c42d Mon Sep 17 00:00:00 2001 From: c_ringwald <42188996+datalogism@users.noreply.github.com> Date: Thu, 8 Dec 2022 09:41:14 +0100 Subject: [PATCH 39/54] Update history/ReadMe.md Co-authored-by: Ted Thibodeau Jr --- history/ReadMe.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/history/ReadMe.md b/history/ReadMe.md index b86efca3b6..926d3a134a 100644 --- a/history/ReadMe.md +++ b/history/ReadMe.md @@ -20,7 +20,7 @@ We basically copy/pasted and renamed all the classes and objects we needed for r This conception could be easily improved by making `WikiPage` and `WikiPageWithRevision` objects inherit from the same abstract object. But as a first step, we wanted to touch the less possible DBpedia core module. -Some other improvements that could be conducted: +Some other improvements that could be made: * Scala version * Being able to use a historic namespace taking into account the DBpedia chapter language * Being able to follow if a revision impacts an infobox content From fb879242eb98a8288763a27372f821fb420a7f1a Mon Sep 17 00:00:00 2001 From: c_ringwald <42188996+datalogism@users.noreply.github.com> Date: Thu, 8 Dec 2022 09:41:25 +0100 Subject: [PATCH 40/54] Update history/src/main/scala/org/dbpedia/extraction/dump/extract/ExtractionJob2.scala Co-authored-by: Ted Thibodeau Jr --- .../org/dbpedia/extraction/dump/extract/ExtractionJob2.scala | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/history/src/main/scala/org/dbpedia/extraction/dump/extract/ExtractionJob2.scala b/history/src/main/scala/org/dbpedia/extraction/dump/extract/ExtractionJob2.scala index 3b14ec747d..1ea0926428 100644 --- a/history/src/main/scala/org/dbpedia/extraction/dump/extract/ExtractionJob2.scala +++ b/history/src/main/scala/org/dbpedia/extraction/dump/extract/ExtractionJob2.scala @@ -44,7 +44,7 @@ class ExtractionJob2( println(graph.toString()) destination.write(graph) } - //if the internal extraction process of this extractor yielded extraction records (e.g. non critical errors etc.), those will be forwarded to the ExtractionRecorder, else a new record is produced + //if the internal extraction process of this extractor yielded extraction records (e.g., non-critical errors, etc.), those will be forwarded to the ExtractionRecorder; else, a new record is produced val records = page.getExtractionRecords() match{ case seq :Seq[RecordEntry2[WikiPageWithRevisions]] if seq.nonEmpty => seq case _ => Seq(new RecordEntry2[WikiPageWithRevisions](page, page.uri, RecordSeverity.Info, page.title.language)) From a3a8063d7d48a454111eb0f0aa637546403942ca Mon Sep 17 00:00:00 2001 From: c_ringwald <42188996+datalogism@users.noreply.github.com> Date: Thu, 8 Dec 2022 09:41:39 +0100 Subject: [PATCH 41/54] Update history/src/main/scala/org/dbpedia/extraction/dump/extract/ExtractionJob2.scala Co-authored-by: Ted Thibodeau Jr --- .../org/dbpedia/extraction/dump/extract/ExtractionJob2.scala | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/history/src/main/scala/org/dbpedia/extraction/dump/extract/ExtractionJob2.scala b/history/src/main/scala/org/dbpedia/extraction/dump/extract/ExtractionJob2.scala index 1ea0926428..d8503d6713 100644 --- a/history/src/main/scala/org/dbpedia/extraction/dump/extract/ExtractionJob2.scala +++ b/history/src/main/scala/org/dbpedia/extraction/dump/extract/ExtractionJob2.scala @@ -14,7 +14,7 @@ import org.dbpedia.extraction.wikiparser.{Namespace, WikiPage, WikiPageWithRevis * @param source The extraction source * @param namespaces Only extract pages in these namespaces * @param destination The extraction destination. Will be closed after the extraction has been finished. - * @param language the language of this extraction. + * @param language The language of this extraction. */ class ExtractionJob2( extractor: WikiPageWithRevisionsExtractor, From 376d1ccb49c56561869ed2d4b5b655bfd659cd03 Mon Sep 17 00:00:00 2001 From: c_ringwald <42188996+datalogism@users.noreply.github.com> Date: Thu, 8 Dec 2022 09:41:49 +0100 Subject: [PATCH 42/54] Update history/ReadMe.md Co-authored-by: Ted Thibodeau Jr --- history/ReadMe.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/history/ReadMe.md b/history/ReadMe.md index 926d3a134a..5b9ec360c2 100644 --- a/history/ReadMe.md +++ b/history/ReadMe.md @@ -22,8 +22,8 @@ But as a first step, we wanted to touch the less possible DBpedia core module. Some other improvements that could be made: * Scala version -* Being able to use a historic namespace taking into account the DBpedia chapter language -* Being able to follow if a revision impacts an infobox content +* Enabling use of a historic namespace, taking into account the DBpedia chapter language +* Enabling following when a revision impacts content of an `infobox` ## Main Class From b247260f6e11879817bbd9324d0d785e642b8cc3 Mon Sep 17 00:00:00 2001 From: c_ringwald <42188996+datalogism@users.noreply.github.com> Date: Thu, 8 Dec 2022 09:42:06 +0100 Subject: [PATCH 43/54] Update history/ReadMe.md Co-authored-by: Ted Thibodeau Jr --- history/ReadMe.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/history/ReadMe.md b/history/ReadMe.md index 5b9ec360c2..d19c8c6a92 100644 --- a/history/ReadMe.md +++ b/history/ReadMe.md @@ -27,9 +27,9 @@ Some other improvements that could be made: ## Main Class -* [WikipediaDumpParserHistory.java](src/main/java/org/dbpedia/extraction/sources/WikipediaDumpParserHistory.java) : for parsing of the history dumps -* [RevisionNode.scala](src/main/scala/org/dbpedia/extraction/wikiparser/RevisionNode.scala) : define revision node object -* [WikiPageWithRevision](src/main/scala/org/dbpedia/extraction/wikiparser/WikiPageWithRevisions.scala) : define wikipage with revision list object +* [WikipediaDumpParserHistory.java](src/main/java/org/dbpedia/extraction/sources/WikipediaDumpParserHistory.java) — for parsing the history dumps +* [RevisionNode.scala](src/main/scala/org/dbpedia/extraction/wikiparser/RevisionNode.scala) — define revision of node object +* [WikiPageWithRevision](src/main/scala/org/dbpedia/extraction/wikiparser/WikiPageWithRevisions.scala) — define `wikipage` with revision list object ## Extractors From d9c12f7312076a418c4f71e3331f8aab750b7728 Mon Sep 17 00:00:00 2001 From: c_ringwald <42188996+datalogism@users.noreply.github.com> Date: Thu, 8 Dec 2022 09:42:14 +0100 Subject: [PATCH 44/54] Update history/src/main/scala/org/dbpedia/extraction/dump/extract/ConfigLoader2.scala Co-authored-by: Ted Thibodeau Jr --- .../org/dbpedia/extraction/dump/extract/ConfigLoader2.scala | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/history/src/main/scala/org/dbpedia/extraction/dump/extract/ConfigLoader2.scala b/history/src/main/scala/org/dbpedia/extraction/dump/extract/ConfigLoader2.scala index bf3ed027c3..fe30b2f510 100644 --- a/history/src/main/scala/org/dbpedia/extraction/dump/extract/ConfigLoader2.scala +++ b/history/src/main/scala/org/dbpedia/extraction/dump/extract/ConfigLoader2.scala @@ -280,7 +280,7 @@ class ConfigLoader2(config: Config2) /** * Loads the configuration and creates extraction jobs for all configured languages. * - * @return Non-strict Traversable over all configured extraction jobs i.e. an extractions job will not be created until it is explicitly requested. + * @return Non-strict Traversable over all configured extraction jobs, i.e., an extraction job will not be created until it is explicitly requested. */ def getExtractionJobs: Traversable[ExtractionJob2] = { From 4221c0faf2ded06478eb68671fc2f2e7a4fd9a9b Mon Sep 17 00:00:00 2001 From: c_ringwald <42188996+datalogism@users.noreply.github.com> Date: Thu, 8 Dec 2022 09:42:26 +0100 Subject: [PATCH 45/54] Update history/ReadMe.md Co-authored-by: Ted Thibodeau Jr --- history/ReadMe.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/history/ReadMe.md b/history/ReadMe.md index d19c8c6a92..055369c857 100644 --- a/history/ReadMe.md +++ b/history/ReadMe.md @@ -48,4 +48,4 @@ Some other improvements that could be made: * configure the [extraction.properties](extraction.properties) file * and run ```../run run extraction.properties``` -* Test it with : mvn test (need to have a containing file frwiki-[YYYYMMDD]-download-complete empty flag file into the base-dir defined into the extraction-properties file ) \ No newline at end of file +* Test it with `mvn test` (need to have a containing file, `frwiki-[YYYYMMDD]-download-complete` empty flag file into the `base-dir` defined into the `extraction-properties` file) \ No newline at end of file From a7550077b54ee083e2e5bf8622044b3fd9f43fe7 Mon Sep 17 00:00:00 2001 From: c_ringwald <42188996+datalogism@users.noreply.github.com> Date: Thu, 8 Dec 2022 09:42:37 +0100 Subject: [PATCH 46/54] Update history/ReadMe.md Co-authored-by: Ted Thibodeau Jr --- history/ReadMe.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/history/ReadMe.md b/history/ReadMe.md index 055369c857..0570f6c16f 100644 --- a/history/ReadMe.md +++ b/history/ReadMe.md @@ -33,8 +33,8 @@ Some other improvements that could be made: ## Extractors -* [HistoryPageExtractor.scala](src/main/scala/org/dbpedia/extraction/mappings/HistoryPageExtractor.scala): Extract all the revision of every wikipedia pages -* [HistoryStatsExtractor.scala](src/main/scala/org/dbpedia/extraction/mappings/HistoryStatsExtractor.scala) : Extract statistics about the revision activity for every page of Wikipedia +* [HistoryPageExtractor.scala](src/main/scala/org/dbpedia/extraction/mappings/HistoryPageExtractor.scala) — Extract all revisions of every Wikipedia page +* [HistoryStatsExtractor.scala](src/main/scala/org/dbpedia/extraction/mappings/HistoryStatsExtractor.scala) — Extract statistics about revision activity for every page of Wikipedia ## How to run it ? From 67312b181717593d98562a6f427fcda4ac153c64 Mon Sep 17 00:00:00 2001 From: c_ringwald <42188996+datalogism@users.noreply.github.com> Date: Thu, 8 Dec 2022 09:49:53 +0100 Subject: [PATCH 47/54] Update ReadMe.md --- history/ReadMe.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/history/ReadMe.md b/history/ReadMe.md index 0570f6c16f..e93f1b7374 100644 --- a/history/ReadMe.md +++ b/history/ReadMe.md @@ -18,7 +18,7 @@ https://hal.inria.fr/hal-01359583 This prototype is not optimized. During its development, we were faced with the WikiPage type-checking constraints that are checked in almost every module of the DBpedia pipeline. We basically copy/pasted and renamed all the classes and objects we needed for running the extractors. This conception could be easily improved by making `WikiPage` and `WikiPageWithRevision` objects inherit from the same abstract object. -But as a first step, we wanted to touch the less possible DBpedia core module. +But as a first step, we didn't want to impact the core module. Some other improvements that could be made: * Scala version @@ -48,4 +48,4 @@ Some other improvements that could be made: * configure the [extraction.properties](extraction.properties) file * and run ```../run run extraction.properties``` -* Test it with `mvn test` (need to have a containing file, `frwiki-[YYYYMMDD]-download-complete` empty flag file into the `base-dir` defined into the `extraction-properties` file) \ No newline at end of file +* Test it with `mvn test` (need to have a containing file, `frwiki-[YYYYMMDD]-download-complete` empty flag file into the `base-dir` defined into the `extraction-properties` file) From b08442d3b73597f94399d77bb6870d2dd4f1622d Mon Sep 17 00:00:00 2001 From: c_ringwald <42188996+datalogism@users.noreply.github.com> Date: Fri, 9 Dec 2022 09:32:38 +0100 Subject: [PATCH 48/54] Update ReadMe.md --- history/ReadMe.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/history/ReadMe.md b/history/ReadMe.md index e93f1b7374..b2f392f5a6 100644 --- a/history/ReadMe.md +++ b/history/ReadMe.md @@ -48,4 +48,4 @@ Some other improvements that could be made: * configure the [extraction.properties](extraction.properties) file * and run ```../run run extraction.properties``` -* Test it with `mvn test` (need to have a containing file, `frwiki-[YYYYMMDD]-download-complete` empty flag file into the `base-dir` defined into the `extraction-properties` file) +* Test it with `mvn test`, if you cold start you may have to artificially create a `frwiki-[YYYYMMDD]-download-complete` empty file into the `base-dir` defined into the `extraction-properties` file From 4286753a9484c5aa6b3b4bc16f8a184129a756a3 Mon Sep 17 00:00:00 2001 From: c_ringwald <42188996+datalogism@users.noreply.github.com> Date: Thu, 5 Jan 2023 16:15:25 +0100 Subject: [PATCH 49/54] Update ReadMe.md --- history/ReadMe.md | 117 ++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 117 insertions(+) diff --git a/history/ReadMe.md b/history/ReadMe.md index b2f392f5a6..25ff9f5d8e 100644 --- a/history/ReadMe.md +++ b/history/ReadMe.md @@ -49,3 +49,120 @@ Some other improvements that could be made: * and run ```../run run extraction.properties``` * Test it with `mvn test`, if you cold start you may have to artificially create a `frwiki-[YYYYMMDD]-download-complete` empty file into the `base-dir` defined into the `extraction-properties` file + +### Triple extracted + +Given this little wikipedia page : [Hôtes_de_passage](https://fr.wikipedia.org/wiki/H%C3%B4tes_de_passage) + +-> The HistoryPageExtractor.scala extractor will produce : +``` + . + . + . + "36815850"^^ . + "2009-01-06T16:56:57Z"^^ . + . + . + "82.244.44.195" . + "Nouvelle page : ''Hôtes de passage'' appartient est une partie de ''La Corde et les souris'' consignée dans ''Le Miroir des limbes''.Malraux y mène des entretiens avec entre autre Senghor et un p..." . + "214"^^ . + "214"^^ . + "false"^^ . +..... +``` + +-> HistoryStatsExtractor.scala extractor will produce : +``` + . + "9"^^ . + "http://fr.dbpedia.org/resource/Hôtes_de_passage__nbRevPerYear__2014"^^ . + "2014"^^ . + "2"^^ . + "http://fr.dbpedia.org/resource/Hôtes_de_passage__nbRevPerYear__2013"^^ . + "2013"^^ . + "1"^^ . + "http://fr.dbpedia.org/resource/Hôtes_de_passage__nbRevPerYear__2015"^^ . + "2015"^^ . + "2"^^ . + "http://fr.dbpedia.org/resource/Hôtes_de_passage__nbRevPerYear__2011"^^ . + "2011"^^ . + "1"^^ . + "http://fr.dbpedia.org/resource/Hôtes_de_passage__nbRevPerYear__2021"^^ . + "2021"^^ . + "2"^^ . + "http://fr.dbpedia.org/resource/Hôtes_de_passage__nbRevPerYear__2009"^^ . + "2009"^^ . + "3"^^ . + "http://fr.dbpedia.org/resource/Hôtes_de_passage__nbRevPerMonth__10/2015"^^ . + "10/2015"^^ . + "1"^^ . + "http://fr.dbpedia.org/resource/Hôtes_de_passage__nbRevPerMonth__9/2013"^^ . + "9/2013"^^ . + "1"^^ . + "http://fr.dbpedia.org/resource/Hôtes_de_passage__nbRevPerMonth__1/2009"^^ . + "1/2009"^^ . + "2"^^ . + "http://fr.dbpedia.org/resource/Hôtes_de_passage__nbRevPerMonth__12/2014"^^ . + "12/2014"^^ . + "1"^^ . + "http://fr.dbpedia.org/resource/Hôtes_de_passage__nbRevPerMonth__10/2014"^^ . + "10/2014"^^ . + "1"^^ . + "http://fr.dbpedia.org/resource/Hôtes_de_passage__nbRevPerMonth__3/2015"^^ . + "3/2015"^^ . + "1"^^ . + "http://fr.dbpedia.org/resource/Hôtes_de_passage__nbRevPerMonth__7/2009"^^ . + "7/2009"^^ . + "1"^^ . + "http://fr.dbpedia.org/resource/Hôtes_de_passage__nbRevPerMonth__10/2011"^^ . + "10/2011"^^ . + "1"^^ . + "http://fr.dbpedia.org/resource/Hôtes_de_passage__nbRevPerMonth__11/2021"^^ . + "11/2021"^^ . + "2"^^ . + "http://fr.dbpedia.org/resource/Hôtes_de_passage__revPerYearAvgSize__2014"^^ . + "2014"^^ . + "591"^^ . + "http://fr.dbpedia.org/resource/Hôtes_de_passage__revPerYearAvgSize__2013"^^ . + "2013"^^ . + "467"^^ . + "http://fr.dbpedia.org/resource/Hôtes_de_passage__revPerYearAvgSize__2015"^^ . + "2015"^^ . + "645"^^ . + "http://fr.dbpedia.org/resource/Hôtes_de_passage__revPerYearAvgSize__2011"^^ . + "2011"^^ . + "434"^^ . + "http://fr.dbpedia.org/resource/Hôtes_de_passage__revPerYearAvgSize__2021"^^ . + "2021"^^ . + "723"^^ . + "http://fr.dbpedia.org/resource/Hôtes_de_passage__revPerYearAvgSize__2009"^^ . + "2009"^^ . + "338"^^ . + "http://fr.dbpedia.org/resource/Hôtes_de_passage__revPerMonthAvgSize__10/2015"^^ . + "10/2015"^^ . + "669"^^ . + "http://fr.dbpedia.org/resource/Hôtes_de_passage__revPerMonthAvgSize__9/2013"^^ . + "9/2013"^^ . + "467"^^ . + "http://fr.dbpedia.org/resource/Hôtes_de_passage__revPerMonthAvgSize__1/2009"^^ . + "1/2009"^^ . + "305"^^ . + "http://fr.dbpedia.org/resource/Hôtes_de_passage__revPerMonthAvgSize__12/2014"^^ . + "12/2014"^^ . + "602"^^ . + "http://fr.dbpedia.org/resource/Hôtes_de_passage__revPerMonthAvgSize__10/2014"^^ . + "10/2014"^^ . + "581"^^ . + "http://fr.dbpedia.org/resource/Hôtes_de_passage__revPerMonthAvgSize__3/2015"^^ . + "3/2015"^^ . + "621"^^ . + "http://fr.dbpedia.org/resource/Hôtes_de_passage__revPerMonthAvgSize__7/2009"^^ . + "7/2009"^^ . + "404"^^ . + "http://fr.dbpedia.org/resource/Hôtes_de_passage__revPerMonthAvgSize__10/2011"^^ . + "10/2011"^^ . + "434"^^ . + "http://fr.dbpedia.org/resource/Hôtes_de_passage__revPerMonthAvgSize__11/2021"^^ . + "11/2021"^^ . + "723"^^ . +``` From a6ebbc550917d614add45de06b368c3e20290432 Mon Sep 17 00:00:00 2001 From: c_ringwald <42188996+datalogism@users.noreply.github.com> Date: Thu, 5 Jan 2023 16:23:59 +0100 Subject: [PATCH 50/54] Update ReadMe.md --- history/ReadMe.md | 15 +++++++++++++-- 1 file changed, 13 insertions(+), 2 deletions(-) diff --git a/history/ReadMe.md b/history/ReadMe.md index 25ff9f5d8e..6374df9fa9 100644 --- a/history/ReadMe.md +++ b/history/ReadMe.md @@ -33,8 +33,19 @@ Some other improvements that could be made: ## Extractors -* [HistoryPageExtractor.scala](src/main/scala/org/dbpedia/extraction/mappings/HistoryPageExtractor.scala) — Extract all revisions of every Wikipedia page -* [HistoryStatsExtractor.scala](src/main/scala/org/dbpedia/extraction/mappings/HistoryStatsExtractor.scala) — Extract statistics about revision activity for every page of Wikipedia +### [HistoryPageExtractor.scala](src/main/scala/org/dbpedia/extraction/mappings/HistoryPageExtractor.scala) + + * Extract all revisions of every Wikipedia page + * Use the foaf, xsd, rdf, prov, dc, sioc ontologies + * Describre each revisions of each page, the content / date / size / importance of that revision, the author of this one and the delta with the last version of the page updated by this one + * the id of the user are based depending on what is available : ip / nickname or the wikipedia id + +### [HistoryStatsExtractor.scala](src/main/scala/org/dbpedia/extraction/mappings/HistoryStatsExtractor.scala) + * Extract statistics about revision activity for every page of Wikipedia. + * This exctraction add some computation and could be not necessary + * Use dc, rdf, rdfs ontologies + * Get number of revision per year / months and avg size of revision per year / month + ## How to run it ? From f87066b4f56b24eae7de6ca61a59e8fe947ed16d Mon Sep 17 00:00:00 2001 From: c_ringwald <42188996+datalogism@users.noreply.github.com> Date: Thu, 5 Jan 2023 16:25:13 +0100 Subject: [PATCH 51/54] Update ReadMe.md --- history/ReadMe.md | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/history/ReadMe.md b/history/ReadMe.md index 6374df9fa9..94ed0ac26b 100644 --- a/history/ReadMe.md +++ b/history/ReadMe.md @@ -41,10 +41,13 @@ Some other improvements that could be made: * the id of the user are based depending on what is available : ip / nickname or the wikipedia id ### [HistoryStatsExtractor.scala](src/main/scala/org/dbpedia/extraction/mappings/HistoryStatsExtractor.scala) - * Extract statistics about revision activity for every page of Wikipedia. + * Extract statistics about revision activity for every page of Wikipedia : + * number of revision per year / months + * avg size of revision per year / month + * number of unique contribution * This exctraction add some computation and could be not necessary * Use dc, rdf, rdfs ontologies - * Get number of revision per year / months and avg size of revision per year / month + ## How to run it ? From 447bc7a24e6ebb6c0e0a26bfa5e448e79c2dfba8 Mon Sep 17 00:00:00 2001 From: c_ringwald <42188996+datalogism@users.noreply.github.com> Date: Fri, 6 Jan 2023 13:07:18 +0100 Subject: [PATCH 52/54] Update history/ReadMe.md Co-authored-by: Ted Thibodeau Jr --- history/ReadMe.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/history/ReadMe.md b/history/ReadMe.md index 94ed0ac26b..0150c450b2 100644 --- a/history/ReadMe.md +++ b/history/ReadMe.md @@ -62,7 +62,7 @@ Some other improvements that could be made: * configure the [extraction.properties](extraction.properties) file * and run ```../run run extraction.properties``` -* Test it with `mvn test`, if you cold start you may have to artificially create a `frwiki-[YYYYMMDD]-download-complete` empty file into the `base-dir` defined into the `extraction-properties` file +* Test it with `mvn test`. If you're starting cold, you may have to manually create an empty file named in the form of `frwiki-[YYYYMMDD]-download-complete` (for instance, `frwiki-20221209-download-complete`) in the `base-dir` as defined in the `extraction-properties` file. ### Triple extracted From e119c8bd648a247f34d2f6df23a3e5b7256c6a61 Mon Sep 17 00:00:00 2001 From: c_ringwald <42188996+datalogism@users.noreply.github.com> Date: Fri, 6 Jan 2023 13:07:27 +0100 Subject: [PATCH 53/54] Update history/ReadMe.md Co-authored-by: Ted Thibodeau Jr --- history/ReadMe.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/history/ReadMe.md b/history/ReadMe.md index 0150c450b2..fae144e143 100644 --- a/history/ReadMe.md +++ b/history/ReadMe.md @@ -82,10 +82,10 @@ Given this little wikipedia page : [Hôtes_de_passage](https://fr.wikipedia.org/ "214"^^ . "214"^^ . "false"^^ . -..... +... ``` --> HistoryStatsExtractor.scala extractor will produce : +→ `HistoryStatsExtractor.scala` extractor will produce: ``` . "9"^^ . From f97dafa4ec56f15857230284c402daa51aa3ecdb Mon Sep 17 00:00:00 2001 From: c_ringwald <42188996+datalogism@users.noreply.github.com> Date: Fri, 6 Jan 2023 13:07:34 +0100 Subject: [PATCH 54/54] Update history/ReadMe.md Co-authored-by: Ted Thibodeau Jr --- history/ReadMe.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/history/ReadMe.md b/history/ReadMe.md index fae144e143..dc781d25cc 100644 --- a/history/ReadMe.md +++ b/history/ReadMe.md @@ -66,9 +66,9 @@ Some other improvements that could be made: ### Triple extracted -Given this little wikipedia page : [Hôtes_de_passage](https://fr.wikipedia.org/wiki/H%C3%B4tes_de_passage) +Given this little Wikipedia page: [Hôtes_de_passage](https://fr.wikipedia.org/wiki/H%C3%B4tes_de_passage) --> The HistoryPageExtractor.scala extractor will produce : +→ The `HistoryPageExtractor.scala` extractor will produce: ``` . .