You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
sitc/lod/tutorial/sparql-intro.ipynb

4113 lines
311 KiB
Plaintext

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

{
"cells": [
{
"cell_type": "markdown",
"metadata": {},
"source": [
"# Introduction to SPARQL, RDF, and LOD\n",
"\n",
"While many databases, services, or museums might expose their data via a web API, there can be limitations. Matthew Lincoln has an excellent tutorial at [The Programming Historian](https://programminghistorian.org/en/lessons/graph-databases-and-SPARQL) that walks us through some of these differences, but the key one is in the way the data is represented. When data is described using a 'Resource Description Framework', RDF, the resource - the 'thing'- is described via a series of relationships, rather than as rows in a table or keys having values. \n",
"\n",
"Information is in the relationships. It's a network. It's a _graph_. Thus, every 'thing' in this graph can have its own _uniform resource identifier_ (URI) that lives as a location on the internet. Information can then be created by making _statements_ that use these URIs, similarly to how English grammar creates meaning: subject verb object. Or, in RDF-speak, 'subject predicate object', also known as a _triple_. In this way, data in _different_ places can be linked together by referencing the elements they have in common. This is Linked Open Data (LOD). The access point for interrogating LOD is called an 'endpoint'. \n",
"\n",
"Finally, _SPARQL_ is an acronymn for SPARQL Protocol and RDF Query Language (yes, it's one of _those_ kinds of acronyms).\n",
"\n",
"In this notebook, we're not using Python or R directly. Instead, we've set up a 'kernel' (think of that as the 'engine' for the notebook) that already includes everything necessary to set up and run SPARQL queries. (For reference, the kernel code is [here](https://github.com/paulovn/sparql-kernel)). Both R and Python can interact with and query endpoints, and manipulate linked open data, but for the sake of learning a bit of what one can do with SPARQL, this notebook keeps all of that ancillary code tucked away. The [followup notebook](Using R to Retrieve and Visualize Data from SPARQL.ipynb) to this one shows you how to use R to do some basic manipulations of the query results."
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"---\n",
"\n",
"## Simple RDF example\n",
"\n",
"Here, we are following [Matthew Lincoln's tutorial](https://programminghistorian.org/en/lessons/graph-databases-and-SPARQL). \n",
"\n",
"Let's look at his example, which concerns the painting, 'The Nightwatch'. \n",
"\n",
"`<The Nightwatch> <was created by> <Rembrandt van Rijn> .`\n",
"\n",
"This _statement_ has three elements: \n",
"\n",
"+ the subject: `<The Nightwatch>`\n",
"+ the predicate: `<was created by>`\n",
"+ the object: `<Rembrandt van Rijn>`\n",
"\n",
"Lincoln combines these, and other such statements, into a (pseudo-)RDF database like so:\n",
"\n",
"```\n",
"<The Nightwatch> <was created by> <Rembrandt van Rijn> .\n",
"<The Nightwatch> <was created in> <1642> .\n",
"<The Nightwatch> <has medium> <oil on canvas> .\n",
"<Rembrandt van Rijn> <was born in> <1606> .\n",
"<Rembrandt van Rijn> <has nationality> <Dutch> .\n",
"<Johannes Vermeer> <has nationality> <Dutch> .\n",
"<Woman with a Balance> <was created by> <Johannes Vermeer> .\n",
"<Woman with a Balance> <has medium> <oil on canvas> .\n",
"```\n",
"\n",
"Such RDF databases are describing nodes and links, and so we can visualize as a graph like so:\n",
"\n",
"![A network visualization of the pseudo-RDF shown above. Arrows indicate the direction of the predicate. For example, that Woman with a Balance was created by Vermeer, and not the other way around.](https://programminghistorian.org/images/graph-databases-and-SPARQL/sparql01.svg)\n",
"\n",
"But there is a difference between the pseudo-RDF that Lincoln shows us, and what _actual_ RDF might look like:\n",
"\n",
"```\n",
"<http://data.rijksmuseum.nl/item/8909812347> <http://purl.org/dc/terms/creator> <http://dbpedia.org/resource/Rembrandt>\n",
"```\n",
"\n",
"The human-readable version requires _more_ statements:\n",
"\n",
"```\n",
"<http://data.rijksmuseum.nl/item/8909812347> <http://purl.org/dc/terms/title> \"The Nightwatch\" .\n",
"\n",
"<http://purl.org/dc/terms/creator> <http://www.w3.org/1999/02/22-rdf-syntax-ns#label> \"was created by\" .\n",
"\n",
"<http://dbpedia.org/resource/Rembrandt> <http://xmlns.com/foaf/0.1/name> \"Rembrandt van Rijn\" .\n",
"```\n",
"\n",
"This is just a quick introduction; please do examine [Lincoln's tutorial](https://programminghistorian.org/en/lessons/graph-databases-and-SPARQL) for more details. But now, let's explore how this notebook can be used to write some queries.\n",
"\n"
]
},
{
"cell_type": "code",
"execution_count": 2,
"metadata": {},
"outputs": [
{
"data": {
"text/html": [
"<div class=\"krn-spql\"><div class=\"magic-help\">Available magics:<br/>%auth %display %endpoint %format %graph %lang %log %lsmagics %outfile %prefix %qparam %show<br/><br/>%auth (basic|digest|none) &lt;username&gt; &lt;passwd&gt; : send HTTP authentication<br/>%display raw | table [withtypes] | diagram [svg|png] [withliterals] : set display format<br/>%endpoint &lt;url&gt; : set SPARQL endpoint. **REQUIRED**<br/>%format JSON | N3 | XML | any | default : set requested result format<br/>%graph &lt;uri&gt; : set default graph for the queries<br/>%lang &lt;lang&gt; [...] | default | all : language(s) preferred for labels<br/>%log critical | error | warning | info | debug : set logging level<br/>%lsmagics : list all magics<br/>%outfile &lt;filename&gt; | NONE : save raw output to a file (use &quot;%d&quot; in name to add cell number, &quot;NONE&quot; to cancel saving)<br/>%prefix &lt;name&gt; [&lt;uri&gt;] : set (or delete) a persistent URI prefix for all queries<br/>%qparam &lt;name&gt; [&lt;value&gt;] : add (or delete) a persistent custom parameter to the endpoint query<br/>%show &lt;n&gt; | all : maximum number of shown results</div></div>"
],
"text/plain": [
"Available magics:\n",
"%auth %display %endpoint %format %graph %lang %log %lsmagics %outfile %prefix %qparam %show\n",
"\n",
"%auth (basic|digest|none) <username> <passwd> : send HTTP authentication\n",
"%display raw | table [withtypes] | diagram [svg|png] [withliterals] : set display format\n",
"%endpoint <url> : set SPARQL endpoint. **REQUIRED**\n",
"%format JSON | N3 | XML | any | default : set requested result format\n",
"%graph <uri> : set default graph for the queries\n",
"%lang <lang> [...] | default | all : language(s) preferred for labels\n",
"%log critical | error | warning | info | debug : set logging level\n",
"%lsmagics : list all magics\n",
"%outfile <filename> | NONE : save raw output to a file (use \"%d\" in name to add cell number, \"NONE\" to cancel saving)\n",
"%prefix <name> [<uri>] : set (or delete) a persistent URI prefix for all queries\n",
"%qparam <name> [<value>] : add (or delete) a persistent custom parameter to the endpoint query\n",
"%show <n> | all : maximum number of shown results\n"
]
},
"metadata": {},
"output_type": "display_data"
}
],
"source": [
"# Jupyter notebooks have various built-in commands called 'magics' that are accessed with the '%' character; these depend on the kernel. \n",
"# Let's see what the SPARQL kernel has\n",
"%lsmagics"
]
},
{
"cell_type": "code",
"execution_count": 10,
"metadata": {},
"outputs": [
{
"data": {
"text/html": [
"<div class=\"krn-spql\"><div class=\"magic\">Endpoint set to: http://collection.britishmuseum.org/sparql</div></div>"
],
"text/plain": [
"Endpoint set to: http://collection.britishmuseum.org/sparql\n"
]
},
"metadata": {},
"output_type": "display_data"
}
],
"source": [
"# when using this notebook, the first thing we have to do - or rather, the first time we run _any_ query,\n",
"# is to tell it what endpoint we're going to use. Let's use the British Museum's:\n",
"\n",
"%endpoint http://collection.britishmuseum.org/sparql"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"Lincoln suggests that when we first encountered a new RDF graph, that we explore the network of relationships from an example object to understand what is going on in the database, to see what is available for querying. Since we're querying the British Museum, let's take [the Rosetta Stone](http://collection.britishmuseum.org/id/object/YCA62958) as our example.\n",
"\n",
"In the query below, `p` and `o` stand for 'predicate' and 'object'. Thus, we're building up a query that asks, 'show me every statment structured `<The Rosetta Stone> <predicate> <object>`. When the results load up, you can right-click on each statement (which is a URI, remember) to see what we've discovered. This could give you the necessary information to construct more complicated queries.\n",
"\n",
"*Nb* The British Museum sparql endpoint and the underlying infrastructure does not appear to be well supported. Results are sometimes flaky or not reachable."
]
},
{
"cell_type": "code",
"execution_count": 11,
"metadata": {
"scrolled": true
},
"outputs": [
{
"data": {
"text/html": [
"<div class=\"krn-spql\"><table><tr class=hdr><th>p</th><th>type</th>\n",
"<th>o</th><th>type</th></tr><tr class=odd><td class=val><a href=\"http://www.cidoc-crm.org/cidoc-crm/P138i_has_representation\" target=\"_other\">http://www.cidoc-crm.org/cidoc-crm/P138i_has_representation</a></td><td class=typ>uri</td>\n",
"<td class=val><a href=\"https://images.researchspace.org/collectionimages/AN00020/AN00020516_001_l.jpg\" target=\"_other\">https://images.researchspace.org/collectionimages/AN00020/AN00020516_001_l.jpg</a></td><td class=typ>uri</td></tr><tr class=even><td class=val><a href=\"http://www.cidoc-crm.org/cidoc-crm/P138i_has_representation\" target=\"_other\">http://www.cidoc-crm.org/cidoc-crm/P138i_has_representation</a></td><td class=typ>uri</td>\n",
"<td class=val><a href=\"https://images.researchspace.org/collectionimages/AN00773/AN00773236_001_l.jpg\" target=\"_other\">https://images.researchspace.org/collectionimages/AN00773/AN00773236_001_l.jpg</a></td><td class=typ>uri</td></tr><tr class=odd><td class=val><a href=\"http://www.cidoc-crm.org/cidoc-crm/P138i_has_representation\" target=\"_other\">http://www.cidoc-crm.org/cidoc-crm/P138i_has_representation</a></td><td class=typ>uri</td>\n",
"<td class=val><a href=\"https://images.researchspace.org/collectionimages/AN00773/AN00773255_001_l.jpg\" target=\"_other\">https://images.researchspace.org/collectionimages/AN00773/AN00773255_001_l.jpg</a></td><td class=typ>uri</td></tr><tr class=even><td class=val><a href=\"http://www.cidoc-crm.org/cidoc-crm/P138i_has_representation\" target=\"_other\">http://www.cidoc-crm.org/cidoc-crm/P138i_has_representation</a></td><td class=typ>uri</td>\n",
"<td class=val><a href=\"https://images.researchspace.org/collectionimages/AN00871/AN00871967_001_l.jpg\" target=\"_other\">https://images.researchspace.org/collectionimages/AN00871/AN00871967_001_l.jpg</a></td><td class=typ>uri</td></tr><tr class=odd><td class=val><a href=\"http://www.cidoc-crm.org/cidoc-crm/P138i_has_representation\" target=\"_other\">http://www.cidoc-crm.org/cidoc-crm/P138i_has_representation</a></td><td class=typ>uri</td>\n",
"<td class=val><a href=\"https://images.researchspace.org/collectionimages/AN00928/AN00928245_001_l.jpg\" target=\"_other\">https://images.researchspace.org/collectionimages/AN00928/AN00928245_001_l.jpg</a></td><td class=typ>uri</td></tr><tr class=even><td class=val><a href=\"http://www.researchspace.org/ontology/PX_has_main_representation\" target=\"_other\">http://www.researchspace.org/ontology/PX_has_main_representation</a></td><td class=typ>uri</td>\n",
"<td class=val><a href=\"https://images.researchspace.org/collectionimages/AN00016/AN00016456_004_l.jpg\" target=\"_other\">https://images.researchspace.org/collectionimages/AN00016/AN00016456_004_l.jpg</a></td><td class=typ>uri</td></tr><tr class=odd><td class=val><a href=\"http://www.researchspace.org/ontology/Thing_created_on_Time\" target=\"_other\">http://www.researchspace.org/ontology/Thing_created_on_Time</a></td><td class=typ>uri</td>\n",
"<td class=val><a href=\"http://collection.britishmuseum.org/id/object/YCA62958/production/1/date\" target=\"_other\">http://collection.britishmuseum.org/id/object/YCA62958/production/1/date</a></td><td class=typ>uri</td></tr><tr class=even><td class=val><a href=\"http://www.researchspace.org/ontology/Thing_has_material_type_Concept\" target=\"_other\">http://www.researchspace.org/ontology/Thing_has_material_type_Concept</a></td><td class=typ>uri</td>\n",
"<td class=val><a href=\"http://collection.britishmuseum.org/id/thesauri/x10901\" target=\"_other\">http://collection.britishmuseum.org/id/thesauri/x10901</a></td><td class=typ>uri</td></tr><tr class=odd><td class=val><a href=\"http://www.researchspace.org/ontology/Thing_has_material_type_Concept\" target=\"_other\">http://www.researchspace.org/ontology/Thing_has_material_type_Concept</a></td><td class=typ>uri</td>\n",
"<td class=val><a href=\"http://collection.britishmuseum.org/id/thesauri/x11794\" target=\"_other\">http://collection.britishmuseum.org/id/thesauri/x11794</a></td><td class=typ>uri</td></tr><tr class=even><td class=val><a href=\"http://www.researchspace.org/ontology/Thing_has_material_type_Concept\" target=\"_other\">http://www.researchspace.org/ontology/Thing_has_material_type_Concept</a></td><td class=typ>uri</td>\n",
"<td class=val><a href=\"http://collection.britishmuseum.org/id/thesauri/x11014\" target=\"_other\">http://collection.britishmuseum.org/id/thesauri/x11014</a></td><td class=typ>uri</td></tr><tr class=odd><td class=val><a href=\"http://www.researchspace.org/ontology/Thing_instance_of_Class\" target=\"_other\">http://www.researchspace.org/ontology/Thing_instance_of_Class</a></td><td class=typ>uri</td>\n",
"<td class=val><a href=\"http://www.cidoc-crm.org/cidoc-crm/E1_CRM_Entity\" target=\"_other\">http://www.cidoc-crm.org/cidoc-crm/E1_CRM_Entity</a></td><td class=typ>uri</td></tr><tr class=even><td class=val><a href=\"http://www.researchspace.org/ontology/Thing_instance_of_Class\" target=\"_other\">http://www.researchspace.org/ontology/Thing_instance_of_Class</a></td><td class=typ>uri</td>\n",
"<td class=val><a href=\"http://www.cidoc-crm.org/cidoc-crm/E18_Physical_Thing\" target=\"_other\">http://www.cidoc-crm.org/cidoc-crm/E18_Physical_Thing</a></td><td class=typ>uri</td></tr><tr class=odd><td class=val><a href=\"http://www.researchspace.org/ontology/Thing_instance_of_Class\" target=\"_other\">http://www.researchspace.org/ontology/Thing_instance_of_Class</a></td><td class=typ>uri</td>\n",
"<td class=val><a href=\"http://www.cidoc-crm.org/cidoc-crm/E19_Physical_Object\" target=\"_other\">http://www.cidoc-crm.org/cidoc-crm/E19_Physical_Object</a></td><td class=typ>uri</td></tr><tr class=even><td class=val><a href=\"http://www.researchspace.org/ontology/Thing_instance_of_Class\" target=\"_other\">http://www.researchspace.org/ontology/Thing_instance_of_Class</a></td><td class=typ>uri</td>\n",
"<td class=val><a href=\"http://www.cidoc-crm.org/cidoc-crm/E24_Physical_Man-Made_Thing\" target=\"_other\">http://www.cidoc-crm.org/cidoc-crm/E24_Physical_Man-Made_Thing</a></td><td class=typ>uri</td></tr><tr class=odd><td class=val><a href=\"http://www.researchspace.org/ontology/Thing_instance_of_Class\" target=\"_other\">http://www.researchspace.org/ontology/Thing_instance_of_Class</a></td><td class=typ>uri</td>\n",
"<td class=val><a href=\"http://www.cidoc-crm.org/cidoc-crm/E70_Thing\" target=\"_other\">http://www.cidoc-crm.org/cidoc-crm/E70_Thing</a></td><td class=typ>uri</td></tr><tr class=even><td class=val><a href=\"http://www.researchspace.org/ontology/Thing_instance_of_Class\" target=\"_other\">http://www.researchspace.org/ontology/Thing_instance_of_Class</a></td><td class=typ>uri</td>\n",
"<td class=val><a href=\"http://www.cidoc-crm.org/cidoc-crm/E71_Man-Made_Thing\" target=\"_other\">http://www.cidoc-crm.org/cidoc-crm/E71_Man-Made_Thing</a></td><td class=typ>uri</td></tr><tr class=odd><td class=val><a href=\"http://www.researchspace.org/ontology/Thing_instance_of_Class\" target=\"_other\">http://www.researchspace.org/ontology/Thing_instance_of_Class</a></td><td class=typ>uri</td>\n",
"<td class=val><a href=\"http://www.cidoc-crm.org/cidoc-crm/E72_Legal_Object\" target=\"_other\">http://www.cidoc-crm.org/cidoc-crm/E72_Legal_Object</a></td><td class=typ>uri</td></tr><tr class=even><td class=val><a href=\"http://www.researchspace.org/ontology/Thing_instance_of_Class\" target=\"_other\">http://www.researchspace.org/ontology/Thing_instance_of_Class</a></td><td class=typ>uri</td>\n",
"<td class=val><a href=\"http://www.cidoc-crm.org/cidoc-crm/E77_Persistent_Item\" target=\"_other\">http://www.cidoc-crm.org/cidoc-crm/E77_Persistent_Item</a></td><td class=typ>uri</td></tr><tr class=odd><td class=val><a href=\"http://www.researchspace.org/ontology/Thing_instance_of_Class\" target=\"_other\">http://www.researchspace.org/ontology/Thing_instance_of_Class</a></td><td class=typ>uri</td>\n",
"<td class=val><a href=\"http://www.cidoc-crm.org/cidoc-crm/E22_Man-Made_Object\" target=\"_other\">http://www.cidoc-crm.org/cidoc-crm/E22_Man-Made_Object</a></td><td class=typ>uri</td></tr><tr class=even><td class=val><a href=\"http://www.researchspace.org/ontology/Thing_refers_to_Thing\" target=\"_other\">http://www.researchspace.org/ontology/Thing_refers_to_Thing</a></td><td class=typ>uri</td>\n",
"<td class=val><a href=\"http://collection.britishmuseum.org/id/object/YCA62958/inscription/1\" target=\"_other\">http://collection.britishmuseum.org/id/object/YCA62958/inscription/1</a></td><td class=typ>uri</td></tr></table><div class=\"tinfo\">Total: 234, Shown: 20</div></div>"
]
},
"metadata": {},
"output_type": "display_data"
}
],
"source": [
"SELECT ?p ?o\n",
"WHERE {\n",
" <http://collection.britishmuseum.org/id/object/YCA62958> ?p ?o .\n",
"}\n"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"In this next query, we look for objects in the collection that have the label 'fibula'."
]
},
{
"cell_type": "code",
"execution_count": 91,
"metadata": {
"scrolled": true
},
"outputs": [
{
"data": {
"text/html": [
"<div class=\"krn-spql\"><div class=\"magic\">Endpoint set to: http://collection.britishmuseum.org/sparql</div><div class=\"magic\">Display: table</div></div>"
],
"text/plain": [
"Endpoint set to: http://collection.britishmuseum.org/sparql\n",
"Display: table\n"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"<div class=\"krn-spql\"><table><tr class=hdr><th>object</th></tr><tr class=odd><td class=val><a href=\"http://collection.britishmuseum.org/id/object/GAA14214\" target=\"_other\">http://collection.britishmuseum.org/id/object/GAA14214</a></td></tr><tr class=even><td class=val><a href=\"http://collection.britishmuseum.org/id/object/BCB9773\" target=\"_other\">http://collection.britishmuseum.org/id/object/BCB9773</a></td></tr><tr class=odd><td class=val><a href=\"http://collection.britishmuseum.org/id/object/WCO94843\" target=\"_other\">http://collection.britishmuseum.org/id/object/WCO94843</a></td></tr><tr class=even><td class=val><a href=\"http://collection.britishmuseum.org/id/object/WCO94920\" target=\"_other\">http://collection.britishmuseum.org/id/object/WCO94920</a></td></tr><tr class=odd><td class=val><a href=\"http://collection.britishmuseum.org/id/object/WCO94923\" target=\"_other\">http://collection.britishmuseum.org/id/object/WCO94923</a></td></tr><tr class=even><td class=val><a href=\"http://collection.britishmuseum.org/id/object/WCO95021\" target=\"_other\">http://collection.britishmuseum.org/id/object/WCO95021</a></td></tr><tr class=odd><td class=val><a href=\"http://collection.britishmuseum.org/id/object/WCO95062\" target=\"_other\">http://collection.britishmuseum.org/id/object/WCO95062</a></td></tr><tr class=even><td class=val><a href=\"http://collection.britishmuseum.org/id/object/WCO95065\" target=\"_other\">http://collection.britishmuseum.org/id/object/WCO95065</a></td></tr><tr class=odd><td class=val><a href=\"http://collection.britishmuseum.org/id/object/WCO96567\" target=\"_other\">http://collection.britishmuseum.org/id/object/WCO96567</a></td></tr><tr class=even><td class=val><a href=\"http://collection.britishmuseum.org/id/object/WCO152654\" target=\"_other\">http://collection.britishmuseum.org/id/object/WCO152654</a></td></tr></table><div class=\"tinfo\">Total: 10, Shown: 10</div></div>"
]
},
"metadata": {},
"output_type": "display_data"
}
],
"source": [
"%endpoint http://collection.britishmuseum.org/sparql\n",
"%display table\n",
"PREFIX bmo: <http://www.researchspace.org/ontology/>\n",
"PREFIX skos: <http://www.w3.org/2004/02/skos/core#>\n",
"\n",
"SELECT ?object\n",
"WHERE {\n",
"\n",
" # Search for all values of ?object that have a given \"object type\"\n",
" ?object bmo:PX_object_type ?object_type .\n",
"\n",
" # That object type should have the label \"fibula\"\n",
" ?object_type skos:prefLabel \"fibula\" .\n",
"}\n",
"LIMIT 10"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"## Wikidata\n",
"\n",
"Wikidata is another endpoint we can query. Below we have a query by Sebastian Heath that extracts some of the genealogical data on Roman emperors contained in that database. The `wd:Q842606` can be expanded to refer to [https://www.wikidata.org/wiki/Q842606](https://www.wikidata.org/wiki/Q842606), which describes the concept 'Roman Emperor'. `wdt:P39` is a predicate meaning 'Position held' [https://www.wikidata.org/wiki/Property:P39](https://www.wikidata.org/wiki/Property:P39). "
]
},
{
"cell_type": "code",
"execution_count": 75,
"metadata": {
"scrolled": true
},
"outputs": [
{
"data": {
"text/html": [
"<div class=\"krn-spql\"><div class=\"magic\">Endpoint set to: http://query.wikidata.org/sparql</div><div class=\"magic\">Display: table</div></div>"
],
"text/plain": [
"Endpoint set to: http://query.wikidata.org/sparql\n",
"Display: table\n"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"<div class=\"krn-spql\"><table><tr class=hdr><th>emperorLabel</th>\n",
"<th>emperor_dob</th>\n",
"<th>childLabel</th>\n",
"<th>motherLabel</th>\n",
"<th>maternalGrandfatherLabel</th>\n",
"<th>maternalGrandmotherLabel</th>\n",
"<th>emperor</th>\n",
"<th>child</th>\n",
"<th>mother</th>\n",
"<th>maternalGrandfather</th>\n",
"<th>maternalGrandmother</th></tr><tr class=odd><td class=val>Augustus</td>\n",
"<td class=val>-062-01-01T00:00:00Z</td>\n",
"<td class=val>Julia the Elder</td>\n",
"<td class=val>Scribonia</td>\n",
"<td class=val>Lucius Scribonius Libo</td>\n",
"<td class=val></td>\n",
"<td class=val><a href=\"http://www.wikidata.org/entity/Q1405\" target=\"_other\">http://www.wikidata.org/entity/Q1405</a></td>\n",
"<td class=val><a href=\"http://www.wikidata.org/entity/Q2259\" target=\"_other\">http://www.wikidata.org/entity/Q2259</a></td>\n",
"<td class=val><a href=\"http://www.wikidata.org/entity/Q233444\" target=\"_other\">http://www.wikidata.org/entity/Q233444</a></td>\n",
"<td class=val><a href=\"http://www.wikidata.org/entity/Q1159617\" target=\"_other\">http://www.wikidata.org/entity/Q1159617</a></td>\n",
"<td class=val></td></tr><tr class=even><td class=val>Tiberius</td>\n",
"<td class=val>-041-11-14T00:00:00Z</td>\n",
"<td class=val>Tiberius Julius Caesar</td>\n",
"<td class=val>Julia the Elder</td>\n",
"<td class=val>Augustus</td>\n",
"<td class=val>Scribonia</td>\n",
"<td class=val><a href=\"http://www.wikidata.org/entity/Q1407\" target=\"_other\">http://www.wikidata.org/entity/Q1407</a></td>\n",
"<td class=val><a href=\"http://www.wikidata.org/entity/Q4222774\" target=\"_other\">http://www.wikidata.org/entity/Q4222774</a></td>\n",
"<td class=val><a href=\"http://www.wikidata.org/entity/Q2259\" target=\"_other\">http://www.wikidata.org/entity/Q2259</a></td>\n",
"<td class=val><a href=\"http://www.wikidata.org/entity/Q1405\" target=\"_other\">http://www.wikidata.org/entity/Q1405</a></td>\n",
"<td class=val><a href=\"http://www.wikidata.org/entity/Q233444\" target=\"_other\">http://www.wikidata.org/entity/Q233444</a></td></tr><tr class=odd><td class=val>Tiberius</td>\n",
"<td class=val>-041-11-14T00:00:00Z</td>\n",
"<td class=val>Drusus Julius Caesar</td>\n",
"<td class=val>Vipsania Agrippina</td>\n",
"<td class=val>Marcus Vipsanius Agrippa</td>\n",
"<td class=val>Pomponia Caecilia Attica</td>\n",
"<td class=val><a href=\"http://www.wikidata.org/entity/Q1407\" target=\"_other\">http://www.wikidata.org/entity/Q1407</a></td>\n",
"<td class=val><a href=\"http://www.wikidata.org/entity/Q313737\" target=\"_other\">http://www.wikidata.org/entity/Q313737</a></td>\n",
"<td class=val><a href=\"http://www.wikidata.org/entity/Q232090\" target=\"_other\">http://www.wikidata.org/entity/Q232090</a></td>\n",
"<td class=val><a href=\"http://www.wikidata.org/entity/Q48174\" target=\"_other\">http://www.wikidata.org/entity/Q48174</a></td>\n",
"<td class=val><a href=\"http://www.wikidata.org/entity/Q152626\" target=\"_other\">http://www.wikidata.org/entity/Q152626</a></td></tr><tr class=even><td class=val>Claudius</td>\n",
"<td class=val>-009-07-30T00:00:00Z</td>\n",
"<td class=val>Claudia Octavia</td>\n",
"<td class=val>Messalina</td>\n",
"<td class=val>Marcus Valerius Messalla Barbatus</td>\n",
"<td class=val>Domitia Lepida the Younger</td>\n",
"<td class=val><a href=\"http://www.wikidata.org/entity/Q1411\" target=\"_other\">http://www.wikidata.org/entity/Q1411</a></td>\n",
"<td class=val><a href=\"http://www.wikidata.org/entity/Q231262\" target=\"_other\">http://www.wikidata.org/entity/Q231262</a></td>\n",
"<td class=val><a href=\"http://www.wikidata.org/entity/Q229871\" target=\"_other\">http://www.wikidata.org/entity/Q229871</a></td>\n",
"<td class=val><a href=\"http://www.wikidata.org/entity/Q1246807\" target=\"_other\">http://www.wikidata.org/entity/Q1246807</a></td>\n",
"<td class=val><a href=\"http://www.wikidata.org/entity/Q268964\" target=\"_other\">http://www.wikidata.org/entity/Q268964</a></td></tr><tr class=odd><td class=val>Claudius</td>\n",
"<td class=val>-009-07-30T00:00:00Z</td>\n",
"<td class=val>Britannicus</td>\n",
"<td class=val>Messalina</td>\n",
"<td class=val>Marcus Valerius Messalla Barbatus</td>\n",
"<td class=val>Domitia Lepida the Younger</td>\n",
"<td class=val><a href=\"http://www.wikidata.org/entity/Q1411\" target=\"_other\">http://www.wikidata.org/entity/Q1411</a></td>\n",
"<td class=val><a href=\"http://www.wikidata.org/entity/Q313115\" target=\"_other\">http://www.wikidata.org/entity/Q313115</a></td>\n",
"<td class=val><a href=\"http://www.wikidata.org/entity/Q229871\" target=\"_other\">http://www.wikidata.org/entity/Q229871</a></td>\n",
"<td class=val><a href=\"http://www.wikidata.org/entity/Q1246807\" target=\"_other\">http://www.wikidata.org/entity/Q1246807</a></td>\n",
"<td class=val><a href=\"http://www.wikidata.org/entity/Q268964\" target=\"_other\">http://www.wikidata.org/entity/Q268964</a></td></tr><tr class=even><td class=val>Claudius</td>\n",
"<td class=val>-009-07-30T00:00:00Z</td>\n",
"<td class=val>Claudius Drusus</td>\n",
"<td class=val>Plautia Urgulanilla</td>\n",
"<td class=val>Marcus Plautius Silvanus</td>\n",
"<td class=val></td>\n",
"<td class=val><a href=\"http://www.wikidata.org/entity/Q1411\" target=\"_other\">http://www.wikidata.org/entity/Q1411</a></td>\n",
"<td class=val><a href=\"http://www.wikidata.org/entity/Q2975271\" target=\"_other\">http://www.wikidata.org/entity/Q2975271</a></td>\n",
"<td class=val><a href=\"http://www.wikidata.org/entity/Q236259\" target=\"_other\">http://www.wikidata.org/entity/Q236259</a></td>\n",
"<td class=val><a href=\"http://www.wikidata.org/entity/Q1232026\" target=\"_other\">http://www.wikidata.org/entity/Q1232026</a></td>\n",
"<td class=val></td></tr><tr class=odd><td class=val>Claudius</td>\n",
"<td class=val>-009-07-30T00:00:00Z</td>\n",
"<td class=val>Claudia Antonia</td>\n",
"<td class=val>Aelia Paetina</td>\n",
"<td class=val>Sextus Aelius Catus</td>\n",
"<td class=val></td>\n",
"<td class=val><a href=\"http://www.wikidata.org/entity/Q1411\" target=\"_other\">http://www.wikidata.org/entity/Q1411</a></td>\n",
"<td class=val><a href=\"http://www.wikidata.org/entity/Q255410\" target=\"_other\">http://www.wikidata.org/entity/Q255410</a></td>\n",
"<td class=val><a href=\"http://www.wikidata.org/entity/Q238448\" target=\"_other\">http://www.wikidata.org/entity/Q238448</a></td>\n",
"<td class=val><a href=\"http://www.wikidata.org/entity/Q778051\" target=\"_other\">http://www.wikidata.org/entity/Q778051</a></td>\n",
"<td class=val></td></tr><tr class=even><td class=val>Vespasian</td>\n",
"<td class=val>0009-11-15T00:00:00Z</td>\n",
"<td class=val>Titus</td>\n",
"<td class=val>Domitilla the Elder</td>\n",
"<td class=val>Flavius Liberalis</td>\n",
"<td class=val></td>\n",
"<td class=val><a href=\"http://www.wikidata.org/entity/Q1419\" target=\"_other\">http://www.wikidata.org/entity/Q1419</a></td>\n",
"<td class=val><a href=\"http://www.wikidata.org/entity/Q1421\" target=\"_other\">http://www.wikidata.org/entity/Q1421</a></td>\n",
"<td class=val><a href=\"http://www.wikidata.org/entity/Q241102\" target=\"_other\">http://www.wikidata.org/entity/Q241102</a></td>\n",
"<td class=val><a href=\"http://www.wikidata.org/entity/Q1114524\" target=\"_other\">http://www.wikidata.org/entity/Q1114524</a></td>\n",
"<td class=val></td></tr><tr class=odd><td class=val>Vespasian</td>\n",
"<td class=val>0009-11-15T00:00:00Z</td>\n",
"<td class=val>Domitian</td>\n",
"<td class=val>Domitilla the Elder</td>\n",
"<td class=val>Flavius Liberalis</td>\n",
"<td class=val></td>\n",
"<td class=val><a href=\"http://www.wikidata.org/entity/Q1419\" target=\"_other\">http://www.wikidata.org/entity/Q1419</a></td>\n",
"<td class=val><a href=\"http://www.wikidata.org/entity/Q1423\" target=\"_other\">http://www.wikidata.org/entity/Q1423</a></td>\n",
"<td class=val><a href=\"http://www.wikidata.org/entity/Q241102\" target=\"_other\">http://www.wikidata.org/entity/Q241102</a></td>\n",
"<td class=val><a href=\"http://www.wikidata.org/entity/Q1114524\" target=\"_other\">http://www.wikidata.org/entity/Q1114524</a></td>\n",
"<td class=val></td></tr><tr class=even><td class=val>Vespasian</td>\n",
"<td class=val>0009-11-15T00:00:00Z</td>\n",
"<td class=val>Domitilla the Younger</td>\n",
"<td class=val>Domitilla the Elder</td>\n",
"<td class=val>Flavius Liberalis</td>\n",
"<td class=val></td>\n",
"<td class=val><a href=\"http://www.wikidata.org/entity/Q1419\" target=\"_other\">http://www.wikidata.org/entity/Q1419</a></td>\n",
"<td class=val><a href=\"http://www.wikidata.org/entity/Q260156\" target=\"_other\">http://www.wikidata.org/entity/Q260156</a></td>\n",
"<td class=val><a href=\"http://www.wikidata.org/entity/Q241102\" target=\"_other\">http://www.wikidata.org/entity/Q241102</a></td>\n",
"<td class=val><a href=\"http://www.wikidata.org/entity/Q1114524\" target=\"_other\">http://www.wikidata.org/entity/Q1114524</a></td>\n",
"<td class=val></td></tr><tr class=odd><td class=val>Caligula</td>\n",
"<td class=val>0012-08-29T00:00:00Z</td>\n",
"<td class=val>Julia Drusilla</td>\n",
"<td class=val>Milonia Caesonia</td>\n",
"<td class=val></td>\n",
"<td class=val>Vistilia</td>\n",
"<td class=val><a href=\"http://www.wikidata.org/entity/Q1409\" target=\"_other\">http://www.wikidata.org/entity/Q1409</a></td>\n",
"<td class=val><a href=\"http://www.wikidata.org/entity/Q235586\" target=\"_other\">http://www.wikidata.org/entity/Q235586</a></td>\n",
"<td class=val><a href=\"http://www.wikidata.org/entity/Q240928\" target=\"_other\">http://www.wikidata.org/entity/Q240928</a></td>\n",
"<td class=val></td>\n",
"<td class=val><a href=\"http://www.wikidata.org/entity/Q3658103\" target=\"_other\">http://www.wikidata.org/entity/Q3658103</a></td></tr><tr class=even><td class=val>Vitellius</td>\n",
"<td class=val>0015-09-22T00:00:00Z</td>\n",
"<td class=val>Vitellius Germanicus</td>\n",
"<td class=val>Galeria Fundana</td>\n",
"<td class=val></td>\n",
"<td class=val></td>\n",
"<td class=val><a href=\"http://www.wikidata.org/entity/Q1417\" target=\"_other\">http://www.wikidata.org/entity/Q1417</a></td>\n",
"<td class=val><a href=\"http://www.wikidata.org/entity/Q662631\" target=\"_other\">http://www.wikidata.org/entity/Q662631</a></td>\n",
"<td class=val><a href=\"http://www.wikidata.org/entity/Q260039\" target=\"_other\">http://www.wikidata.org/entity/Q260039</a></td>\n",
"<td class=val></td>\n",
"<td class=val></td></tr><tr class=odd><td class=val>Nero</td>\n",
"<td class=val>0037-12-13T00:00:00Z</td>\n",
"<td class=val>Claudia Augusta</td>\n",
"<td class=val>Poppaea Sabina</td>\n",
"<td class=val>Titus Ollius</td>\n",
"<td class=val></td>\n",
"<td class=val><a href=\"http://www.wikidata.org/entity/Q1413\" target=\"_other\">http://www.wikidata.org/entity/Q1413</a></td>\n",
"<td class=val><a href=\"http://www.wikidata.org/entity/Q1275952\" target=\"_other\">http://www.wikidata.org/entity/Q1275952</a></td>\n",
"<td class=val><a href=\"http://www.wikidata.org/entity/Q230716\" target=\"_other\">http://www.wikidata.org/entity/Q230716</a></td>\n",
"<td class=val><a href=\"http://www.wikidata.org/entity/Q7810322\" target=\"_other\">http://www.wikidata.org/entity/Q7810322</a></td>\n",
"<td class=val></td></tr><tr class=even><td class=val>Titus</td>\n",
"<td class=val>0039-12-28T00:00:00Z</td>\n",
"<td class=val>Julia Flavia</td>\n",
"<td class=val>Marcia Furnilla</td>\n",
"<td class=val>Quintus Marcius Barea Sura</td>\n",
"<td class=val></td>\n",
"<td class=val><a href=\"http://www.wikidata.org/entity/Q1421\" target=\"_other\">http://www.wikidata.org/entity/Q1421</a></td>\n",
"<td class=val><a href=\"http://www.wikidata.org/entity/Q239314\" target=\"_other\">http://www.wikidata.org/entity/Q239314</a></td>\n",
"<td class=val><a href=\"http://www.wikidata.org/entity/Q731059\" target=\"_other\">http://www.wikidata.org/entity/Q731059</a></td>\n",
"<td class=val><a href=\"http://www.wikidata.org/entity/Q16203434\" target=\"_other\">http://www.wikidata.org/entity/Q16203434</a></td>\n",
"<td class=val></td></tr><tr class=odd><td class=val>Titus</td>\n",
"<td class=val>0039-12-28T00:00:00Z</td>\n",
"<td class=val>Julia Flavia</td>\n",
"<td class=val>Arrecina Tertulla</td>\n",
"<td class=val></td>\n",
"<td class=val></td>\n",
"<td class=val><a href=\"http://www.wikidata.org/entity/Q1421\" target=\"_other\">http://www.wikidata.org/entity/Q1421</a></td>\n",
"<td class=val><a href=\"http://www.wikidata.org/entity/Q239314\" target=\"_other\">http://www.wikidata.org/entity/Q239314</a></td>\n",
"<td class=val><a href=\"http://www.wikidata.org/entity/Q1528430\" target=\"_other\">http://www.wikidata.org/entity/Q1528430</a></td>\n",
"<td class=val></td>\n",
"<td class=val></td></tr><tr class=even><td class=val>Antoninus Pius</td>\n",
"<td class=val>0086-09-17T00:00:00Z</td>\n",
"<td class=val>Faustina the Younger</td>\n",
"<td class=val>Faustina the Elder</td>\n",
"<td class=val>Marcus Annius Verus</td>\n",
"<td class=val>Rupilia</td>\n",
"<td class=val><a href=\"http://www.wikidata.org/entity/Q1429\" target=\"_other\">http://www.wikidata.org/entity/Q1429</a></td>\n",
"<td class=val><a href=\"http://www.wikidata.org/entity/Q236936\" target=\"_other\">http://www.wikidata.org/entity/Q236936</a></td>\n",
"<td class=val><a href=\"http://www.wikidata.org/entity/Q234734\" target=\"_other\">http://www.wikidata.org/entity/Q234734</a></td>\n",
"<td class=val><a href=\"http://www.wikidata.org/entity/Q745241\" target=\"_other\">http://www.wikidata.org/entity/Q745241</a></td>\n",
"<td class=val><a href=\"http://www.wikidata.org/entity/Q2068391\" target=\"_other\">http://www.wikidata.org/entity/Q2068391</a></td></tr><tr class=odd><td class=val>Marcus Aurelius Antoninus</td>\n",
"<td class=val>0121-04-25T00:00:00Z</td>\n",
"<td class=val>Commodus</td>\n",
"<td class=val>Faustina the Younger</td>\n",
"<td class=val>Antoninus Pius</td>\n",
"<td class=val>Faustina the Elder</td>\n",
"<td class=val><a href=\"http://www.wikidata.org/entity/Q1430\" target=\"_other\">http://www.wikidata.org/entity/Q1430</a></td>\n",
"<td class=val><a href=\"http://www.wikidata.org/entity/Q1434\" target=\"_other\">http://www.wikidata.org/entity/Q1434</a></td>\n",
"<td class=val><a href=\"http://www.wikidata.org/entity/Q236936\" target=\"_other\">http://www.wikidata.org/entity/Q236936</a></td>\n",
"<td class=val><a href=\"http://www.wikidata.org/entity/Q1429\" target=\"_other\">http://www.wikidata.org/entity/Q1429</a></td>\n",
"<td class=val><a href=\"http://www.wikidata.org/entity/Q234734\" target=\"_other\">http://www.wikidata.org/entity/Q234734</a></td></tr><tr class=even><td class=val>Marcus Aurelius Antoninus</td>\n",
"<td class=val>0121-04-25T00:00:00Z</td>\n",
"<td class=val>Lucilla</td>\n",
"<td class=val>Faustina the Younger</td>\n",
"<td class=val>Antoninus Pius</td>\n",
"<td class=val>Faustina the Elder</td>\n",
"<td class=val><a href=\"http://www.wikidata.org/entity/Q1430\" target=\"_other\">http://www.wikidata.org/entity/Q1430</a></td>\n",
"<td class=val><a href=\"http://www.wikidata.org/entity/Q242466\" target=\"_other\">http://www.wikidata.org/entity/Q242466</a></td>\n",
"<td class=val><a href=\"http://www.wikidata.org/entity/Q236936\" target=\"_other\">http://www.wikidata.org/entity/Q236936</a></td>\n",
"<td class=val><a href=\"http://www.wikidata.org/entity/Q1429\" target=\"_other\">http://www.wikidata.org/entity/Q1429</a></td>\n",
"<td class=val><a href=\"http://www.wikidata.org/entity/Q234734\" target=\"_other\">http://www.wikidata.org/entity/Q234734</a></td></tr><tr class=odd><td class=val>Marcus Aurelius Antoninus</td>\n",
"<td class=val>0121-04-25T00:00:00Z</td>\n",
"<td class=val>Annia Cornificia Faustina Minor</td>\n",
"<td class=val>Faustina the Younger</td>\n",
"<td class=val>Antoninus Pius</td>\n",
"<td class=val>Faustina the Elder</td>\n",
"<td class=val><a href=\"http://www.wikidata.org/entity/Q1430\" target=\"_other\">http://www.wikidata.org/entity/Q1430</a></td>\n",
"<td class=val><a href=\"http://www.wikidata.org/entity/Q441706\" target=\"_other\">http://www.wikidata.org/entity/Q441706</a></td>\n",
"<td class=val><a href=\"http://www.wikidata.org/entity/Q236936\" target=\"_other\">http://www.wikidata.org/entity/Q236936</a></td>\n",
"<td class=val><a href=\"http://www.wikidata.org/entity/Q1429\" target=\"_other\">http://www.wikidata.org/entity/Q1429</a></td>\n",
"<td class=val><a href=\"http://www.wikidata.org/entity/Q234734\" target=\"_other\">http://www.wikidata.org/entity/Q234734</a></td></tr><tr class=even><td class=val>Marcus Aurelius Antoninus</td>\n",
"<td class=val>0121-04-25T00:00:00Z</td>\n",
"<td class=val>Marcus Annius Verus Caesar</td>\n",
"<td class=val>Faustina the Younger</td>\n",
"<td class=val>Antoninus Pius</td>\n",
"<td class=val>Faustina the Elder</td>\n",
"<td class=val><a href=\"http://www.wikidata.org/entity/Q1430\" target=\"_other\">http://www.wikidata.org/entity/Q1430</a></td>\n",
"<td class=val><a href=\"http://www.wikidata.org/entity/Q567222\" target=\"_other\">http://www.wikidata.org/entity/Q567222</a></td>\n",
"<td class=val><a href=\"http://www.wikidata.org/entity/Q236936\" target=\"_other\">http://www.wikidata.org/entity/Q236936</a></td>\n",
"<td class=val><a href=\"http://www.wikidata.org/entity/Q1429\" target=\"_other\">http://www.wikidata.org/entity/Q1429</a></td>\n",
"<td class=val><a href=\"http://www.wikidata.org/entity/Q234734\" target=\"_other\">http://www.wikidata.org/entity/Q234734</a></td></tr></table><div class=\"tinfo\">Total: 82, Shown: 20</div></div>"
]
},
"metadata": {},
"output_type": "display_data"
}
],
"source": [
"%endpoint http://query.wikidata.org/sparql\n",
"%display table\n",
"\n",
"SELECT ?emperorLabel ?emperor_dob\n",
" ?childLabel\n",
" ?motherLabel ?maternalGrandfatherLabel ?maternalGrandmotherLabel\n",
" ?emperor ?child ?mother ?maternalGrandfather ?maternalGrandmother WHERE {\n",
" \n",
" ?emperor wdt:P39 wd:Q842606 . #p39: position held. Q842606: Roman Emperor\n",
" ?emperor wdt:P569 ?emperor_dob . # p569: date of birth\n",
" ?child wdt:P22 ?emperor . #p22: father\n",
" ?child wdt:P25 ?mother . #p25: mother\n",
" OPTIONAL { ?mother wdt:P22 ?maternalGrandfather }\n",
" OPTIONAL { ?mother wdt:P25 ?maternalGrandmother }\n",
" \n",
" # automatic label expander\n",
" SERVICE wikibase:label { bd:serviceParam wikibase:language \"en\". }\n",
" \n",
"} ORDER BY ?emperor_dob\n"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"Let's visualize these relationships. We're running the same query, but we use CONSTRUCT to create the nodes and edges that represent these familial relationships. We want to show 'emperor x is the father of person y' and 'person a is the mother of person y'. That gives us the structure. To get the content, we run the SELECT command where we first tell it to retrieve those individuals who were emperor, and then retrieve the children data. \n",
"\n",
"Once you've run the query, use ctrl+f to find someone familiar, like Augustus (Q1405). In the resulting graph, an edge labeled 'p22' eg Q1405 ->P22 -> Q2259 can be read, 'Q1405 is the father of Q2259', or rather, 'Augustus is the father of Julia the Elder'.\n",
"\n",
"Roman geneaology.... it's complicated! "
]
},
{
"cell_type": "code",
"execution_count": 122,
"metadata": {},
"outputs": [
{
"data": {
"text/html": [
"<div class=\"krn-spql\"><div class=\"magic\">Endpoint set to: http://query.wikidata.org/sparql</div><div class=\"magic\">Display: svg</div></div>"
],
"text/plain": [
"Endpoint set to: http://query.wikidata.org/sparql\n",
"Display: svg\n"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"image/svg+xml": [
"<?xml version=\"1.0\" encoding=\"UTF-8\" standalone=\"no\"?>\n",
"<!DOCTYPE svg PUBLIC \"-//W3C//DTD SVG 1.1//EN\"\n",
" \"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd\">\n",
"<!-- Generated by graphviz version 2.40.1 (20161225.0304)\n",
" -->\n",
"<!-- Title: %3 Pages: 1 -->\n",
"<svg class=\"unconfined\" width=\"5879pt\" height=\"449pt\"\n",
" viewBox=\"0.00 0.00 5879.15 449.00\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\">\n",
"<g id=\"graph0\" class=\"graph\" transform=\"scale(1 1) rotate(0) translate(4 445)\">\n",
"<title>%3</title>\n",
"<polygon fill=\"#ffffff\" stroke=\"transparent\" points=\"-4,4 -4,-445 5875.1475,-445 5875.1475,4 -4,4\"/>\n",
"<!-- node0 -->\n",
"<g id=\"node1\" class=\"node\">\n",
"<title>node0</title>\n",
"<g id=\"a_node1\"><a xlink:href=\"http://www.wikidata.org/entity/Q1407\" xlink:title=\"Q1407\" target=\"_other\">\n",
"<text text-anchor=\"middle\" x=\"109.5737\" y=\"-339\" font-family=\"DejaVu Sans,Tahoma,Geneva,sans-serif\" font-size=\"10.00\" fill=\"#0000ff\">Q1407</text>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- node1 -->\n",
"<g id=\"node2\" class=\"node\">\n",
"<title>node1</title>\n",
"<g id=\"a_node2\"><a xlink:href=\"http://www.wikidata.org/entity/Q313737\" xlink:title=\"Q313737\" target=\"_other\">\n",
"<text text-anchor=\"middle\" x=\"54.5737\" y=\"-258\" font-family=\"DejaVu Sans,Tahoma,Geneva,sans-serif\" font-size=\"10.00\" fill=\"#0000ff\">Q313737</text>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- node0&#45;&gt;node1 -->\n",
"<g id=\"edge1\" class=\"edge\">\n",
"<title>node0&#45;&gt;node1</title>\n",
"<g id=\"a_edge1\"><a xlink:href=\"http://www.wikidata.org/prop/direct/P22\" xlink:title=\"wdt:P22\" target=\"_other\">\n",
"<path fill=\"none\" stroke=\"#9fc9e5\" stroke-opacity=\"0.376471\" d=\"M97.0934,-323.6198C89.8701,-312.982 80.6526,-299.407 72.6474,-287.6176\"/>\n",
"<polygon fill=\"#9fc9e5\" fill-opacity=\"0.376471\" stroke=\"#9fc9e5\" stroke-opacity=\"0.376471\" points=\"66.8152,-279.0284 76.1557,-284.7736 69.624,-283.1649 72.4328,-287.3015 72.4328,-287.3015 72.4328,-287.3015 69.624,-283.1649 68.7099,-289.8294 66.8152,-279.0284 66.8152,-279.0284\"/>\n",
"</a>\n",
"</g>\n",
"<g id=\"a_edge1&#45;label\"><a xlink:href=\"http://www.wikidata.org/prop/direct/P22\" xlink:title=\"wdt:P22\" target=\"_other\">\n",
"<text text-anchor=\"middle\" x=\"99.5767\" y=\"-298.8\" font-family=\"Times,serif\" font-size=\"9.00\" fill=\"#204080\">wdt:P22</text>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- node41 -->\n",
"<g id=\"node42\" class=\"node\">\n",
"<title>node41</title>\n",
"<g id=\"a_node42\"><a xlink:href=\"http://www.wikidata.org/entity/Q4222774\" xlink:title=\"Q4222774\" target=\"_other\">\n",
"<text text-anchor=\"middle\" x=\"146.5737\" y=\"-258\" font-family=\"DejaVu Sans,Tahoma,Geneva,sans-serif\" font-size=\"10.00\" fill=\"#0000ff\">Q4222774</text>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- node0&#45;&gt;node41 -->\n",
"<g id=\"edge22\" class=\"edge\">\n",
"<title>node0&#45;&gt;node41</title>\n",
"<g id=\"a_edge22\"><a xlink:href=\"http://www.wikidata.org/prop/direct/P22\" xlink:title=\"wdt:P22\" target=\"_other\">\n",
"<path fill=\"none\" stroke=\"#9fc9e5\" stroke-opacity=\"0.376471\" d=\"M117.9696,-323.6198C122.7336,-313.1906 128.7871,-299.9383 134.0974,-288.3131\"/>\n",
"<polygon fill=\"#9fc9e5\" fill-opacity=\"0.376471\" stroke=\"#9fc9e5\" stroke-opacity=\"0.376471\" points=\"138.3385,-279.0284 138.2767,-289.9941 136.261,-283.5764 134.1835,-288.1244 134.1835,-288.1244 134.1835,-288.1244 136.261,-283.5764 130.0904,-286.2546 138.3385,-279.0284 138.3385,-279.0284\"/>\n",
"</a>\n",
"</g>\n",
"<g id=\"a_edge22&#45;label\"><a xlink:href=\"http://www.wikidata.org/prop/direct/P22\" xlink:title=\"wdt:P22\" target=\"_other\">\n",
"<text text-anchor=\"middle\" x=\"144.5767\" y=\"-298.8\" font-family=\"Times,serif\" font-size=\"9.00\" fill=\"#204080\">wdt:P22</text>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- node2 -->\n",
"<g id=\"node3\" class=\"node\">\n",
"<title>node2</title>\n",
"<g id=\"a_node3\"><a xlink:href=\"http://www.wikidata.org/entity/Q1430\" xlink:title=\"Q1430\" target=\"_other\">\n",
"<text text-anchor=\"middle\" x=\"505.5737\" y=\"-339\" font-family=\"DejaVu Sans,Tahoma,Geneva,sans-serif\" font-size=\"10.00\" fill=\"#0000ff\">Q1430</text>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- node3 -->\n",
"<g id=\"node4\" class=\"node\">\n",
"<title>node3</title>\n",
"<g id=\"a_node4\"><a xlink:href=\"http://www.wikidata.org/entity/Q2055853\" xlink:title=\"Q2055853\" target=\"_other\">\n",
"<text text-anchor=\"middle\" x=\"731.5737\" y=\"-258\" font-family=\"DejaVu Sans,Tahoma,Geneva,sans-serif\" font-size=\"10.00\" fill=\"#0000ff\">Q2055853</text>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- node2&#45;&gt;node3 -->\n",
"<g id=\"edge2\" class=\"edge\">\n",
"<title>node2&#45;&gt;node3</title>\n",
"<g id=\"a_edge2\"><a xlink:href=\"http://www.wikidata.org/prop/direct/P22\" xlink:title=\"wdt:P22\" target=\"_other\">\n",
"<path fill=\"none\" stroke=\"#9fc9e5\" stroke-opacity=\"0.376471\" d=\"M532.8928,-338.4083C576.2329,-332.3951 658.5101,-319.6043 684.5737,-306 693.6933,-301.2399 702.2719,-294.1723 709.5406,-287.0412\"/>\n",
"<polygon fill=\"#9fc9e5\" fill-opacity=\"0.376471\" stroke=\"#9fc9e5\" stroke-opacity=\"0.376471\" points=\"716.8773,-279.3844 713.2079,-289.7182 713.418,-282.9946 709.9587,-286.6048 709.9587,-286.6048 709.9587,-286.6048 713.418,-282.9946 706.7095,-283.4915 716.8773,-279.3844 716.8773,-279.3844\"/>\n",
"</a>\n",
"</g>\n",
"<g id=\"a_edge2&#45;label\"><a xlink:href=\"http://www.wikidata.org/prop/direct/P22\" xlink:title=\"wdt:P22\" target=\"_other\">\n",
"<text text-anchor=\"middle\" x=\"713.5767\" y=\"-298.8\" font-family=\"Times,serif\" font-size=\"9.00\" fill=\"#204080\">wdt:P22</text>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- node44 -->\n",
"<g id=\"node45\" class=\"node\">\n",
"<title>node44</title>\n",
"<g id=\"a_node45\"><a xlink:href=\"http://www.wikidata.org/entity/Q3656003\" xlink:title=\"Q3656003\" target=\"_other\">\n",
"<text text-anchor=\"middle\" x=\"540.5737\" y=\"-258\" font-family=\"DejaVu Sans,Tahoma,Geneva,sans-serif\" font-size=\"10.00\" fill=\"#0000ff\">Q3656003</text>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- node2&#45;&gt;node44 -->\n",
"<g id=\"edge102\" class=\"edge\">\n",
"<title>node2&#45;&gt;node44</title>\n",
"<g id=\"a_edge102\"><a xlink:href=\"http://www.wikidata.org/prop/direct/P22\" xlink:title=\"wdt:P22\" target=\"_other\">\n",
"<path fill=\"none\" stroke=\"#9fc9e5\" stroke-opacity=\"0.376471\" d=\"M503.0521,-323.869C502.5989,-315.4114 503.1257,-305.3857 506.5679,-297 507.9901,-293.5352 509.9129,-290.2072 512.1249,-287.0697\"/>\n",
"<polygon fill=\"#9fc9e5\" fill-opacity=\"0.376471\" stroke=\"#9fc9e5\" stroke-opacity=\"0.376471\" points=\"518.51,-279.2465 515.6731,-289.8391 515.3484,-283.1201 512.1869,-286.9937 512.1869,-286.9937 512.1869,-286.9937 515.3484,-283.1201 508.7006,-284.1484 518.51,-279.2465 518.51,-279.2465\"/>\n",
"</a>\n",
"</g>\n",
"<g id=\"a_edge102&#45;label\"><a xlink:href=\"http://www.wikidata.org/prop/direct/P22\" xlink:title=\"wdt:P22\" target=\"_other\">\n",
"<text text-anchor=\"middle\" x=\"521.5767\" y=\"-298.8\" font-family=\"Times,serif\" font-size=\"9.00\" fill=\"#204080\">wdt:P22</text>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- node79 -->\n",
"<g id=\"node80\" class=\"node\">\n",
"<title>node79</title>\n",
"<g id=\"a_node80\"><a xlink:href=\"http://www.wikidata.org/entity/Q3655950\" xlink:title=\"Q3655950\" target=\"_other\">\n",
"<text text-anchor=\"middle\" x=\"242.5737\" y=\"-258\" font-family=\"DejaVu Sans,Tahoma,Geneva,sans-serif\" font-size=\"10.00\" fill=\"#0000ff\">Q3655950</text>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- node2&#45;&gt;node79 -->\n",
"<g id=\"edge50\" class=\"edge\">\n",
"<title>node2&#45;&gt;node79</title>\n",
"<g id=\"a_edge50\"><a xlink:href=\"http://www.wikidata.org/prop/direct/P22\" xlink:title=\"wdt:P22\" target=\"_other\">\n",
"<path fill=\"none\" stroke=\"#9fc9e5\" stroke-opacity=\"0.376471\" d=\"M478.2386,-341.5496C420.896,-340.0588 290.6043,-333.6379 257.5679,-306 252.4282,-301.7002 249.041,-295.5871 246.8115,-289.2479\"/>\n",
"<polygon fill=\"#9fc9e5\" fill-opacity=\"0.376471\" stroke=\"#9fc9e5\" stroke-opacity=\"0.376471\" points=\"244.1754,-279.3284 251.0929,-287.8371 245.4596,-284.1607 246.7438,-288.9929 246.7438,-288.9929 246.7438,-288.9929 245.4596,-284.1607 242.3948,-290.1487 244.1754,-279.3284 244.1754,-279.3284\"/>\n",
"</a>\n",
"</g>\n",
"<g id=\"a_edge50&#45;label\"><a xlink:href=\"http://www.wikidata.org/prop/direct/P22\" xlink:title=\"wdt:P22\" target=\"_other\">\n",
"<text text-anchor=\"middle\" x=\"272.5767\" y=\"-298.8\" font-family=\"Times,serif\" font-size=\"9.00\" fill=\"#204080\">wdt:P22</text>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- node81 -->\n",
"<g id=\"node82\" class=\"node\">\n",
"<title>node81</title>\n",
"<g id=\"a_node82\"><a xlink:href=\"http://www.wikidata.org/entity/Q567222\" xlink:title=\"Q567222\" target=\"_other\">\n",
"<text text-anchor=\"middle\" x=\"323.5737\" y=\"-258\" font-family=\"DejaVu Sans,Tahoma,Geneva,sans-serif\" font-size=\"10.00\" fill=\"#0000ff\">Q567222</text>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- node2&#45;&gt;node81 -->\n",
"<g id=\"edge130\" class=\"edge\">\n",
"<title>node2&#45;&gt;node81</title>\n",
"<g id=\"a_edge130\"><a xlink:href=\"http://www.wikidata.org/prop/direct/P22\" xlink:title=\"wdt:P22\" target=\"_other\">\n",
"<path fill=\"none\" stroke=\"#9fc9e5\" stroke-opacity=\"0.376471\" d=\"M478.1695,-339.2878C423.7604,-333.626 306.3114,-319.9168 294.5679,-306 289.7874,-300.3348 290.8003,-293.8322 294.461,-287.5637\"/>\n",
"<polygon fill=\"#9fc9e5\" fill-opacity=\"0.376471\" stroke=\"#9fc9e5\" stroke-opacity=\"0.376471\" points=\"300.7986,-279.2615 298.3077,-289.9408 297.7647,-283.2359 294.7308,-287.2103 294.7308,-287.2103 294.7308,-287.2103 297.7647,-283.2359 291.1538,-284.4798 300.7986,-279.2615 300.7986,-279.2615\"/>\n",
"</a>\n",
"</g>\n",
"<g id=\"a_edge130&#45;label\"><a xlink:href=\"http://www.wikidata.org/prop/direct/P22\" xlink:title=\"wdt:P22\" target=\"_other\">\n",
"<text text-anchor=\"middle\" x=\"309.5767\" y=\"-298.8\" font-family=\"Times,serif\" font-size=\"9.00\" fill=\"#204080\">wdt:P22</text>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- node97 -->\n",
"<g id=\"node98\" class=\"node\">\n",
"<title>node97</title>\n",
"<g id=\"a_node98\"><a xlink:href=\"http://www.wikidata.org/entity/Q242466\" xlink:title=\"Q242466\" target=\"_other\">\n",
"<text text-anchor=\"middle\" x=\"636.5737\" y=\"-258\" font-family=\"DejaVu Sans,Tahoma,Geneva,sans-serif\" font-size=\"10.00\" fill=\"#0000ff\">Q242466</text>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- node2&#45;&gt;node97 -->\n",
"<g id=\"edge75\" class=\"edge\">\n",
"<title>node2&#45;&gt;node97</title>\n",
"<g id=\"a_edge75\"><a xlink:href=\"http://www.wikidata.org/prop/direct/P22\" xlink:title=\"wdt:P22\" target=\"_other\">\n",
"<path fill=\"none\" stroke=\"#9fc9e5\" stroke-opacity=\"0.376471\" d=\"M532.9242,-333.1153C549.9872,-326.902 571.9723,-317.6398 589.5737,-306 597.8775,-300.5087 606.0338,-293.4656 613.1602,-286.5897\"/>\n",
"<polygon fill=\"#9fc9e5\" fill-opacity=\"0.376471\" stroke=\"#9fc9e5\" stroke-opacity=\"0.376471\" points=\"620.4471,-279.2756 616.5771,-289.5359 616.9182,-282.8177 613.3892,-286.3598 613.3892,-286.3598 613.3892,-286.3598 616.9182,-282.8177 610.2013,-283.1838 620.4471,-279.2756 620.4471,-279.2756\"/>\n",
"</a>\n",
"</g>\n",
"<g id=\"a_edge75&#45;label\"><a xlink:href=\"http://www.wikidata.org/prop/direct/P22\" xlink:title=\"wdt:P22\" target=\"_other\">\n",
"<text text-anchor=\"middle\" x=\"616.5767\" y=\"-298.8\" font-family=\"Times,serif\" font-size=\"9.00\" fill=\"#204080\">wdt:P22</text>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- node106 -->\n",
"<g id=\"node107\" class=\"node\">\n",
"<title>node106</title>\n",
"<g id=\"a_node107\"><a xlink:href=\"http://www.wikidata.org/entity/Q1434\" xlink:title=\"Q1434\" target=\"_other\">\n",
"<text text-anchor=\"middle\" x=\"431.5737\" y=\"-258\" font-family=\"DejaVu Sans,Tahoma,Geneva,sans-serif\" font-size=\"10.00\" fill=\"#0000ff\">Q1434</text>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- node2&#45;&gt;node106 -->\n",
"<g id=\"edge150\" class=\"edge\">\n",
"<title>node2&#45;&gt;node106</title>\n",
"<g id=\"a_edge150\"><a xlink:href=\"http://www.wikidata.org/prop/direct/P22\" xlink:title=\"wdt:P22\" target=\"_other\">\n",
"<path fill=\"none\" stroke=\"#9fc9e5\" stroke-opacity=\"0.376471\" d=\"M478.4504,-336.4339C450.5116,-330.085 409.7812,-318.8985 400.5679,-306 396.2459,-299.9493 397.4764,-293.3856 401.2647,-287.1903\"/>\n",
"<polygon fill=\"#9fc9e5\" fill-opacity=\"0.376471\" stroke=\"#9fc9e5\" stroke-opacity=\"0.376471\" points=\"407.7348,-279.053 405.0334,-289.681 404.623,-282.9667 401.5111,-286.8803 401.5111,-286.8803 401.5111,-286.8803 404.623,-282.9667 397.9888,-284.0797 407.7348,-279.053 407.7348,-279.053\"/>\n",
"</a>\n",
"</g>\n",
"<g id=\"a_edge150&#45;label\"><a xlink:href=\"http://www.wikidata.org/prop/direct/P22\" xlink:title=\"wdt:P22\" target=\"_other\">\n",
"<text text-anchor=\"middle\" x=\"415.5767\" y=\"-298.8\" font-family=\"Times,serif\" font-size=\"9.00\" fill=\"#204080\">wdt:P22</text>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- node115 -->\n",
"<g id=\"node116\" class=\"node\">\n",
"<title>node115</title>\n",
"<g id=\"a_node116\"><a xlink:href=\"http://www.wikidata.org/entity/Q441706\" xlink:title=\"Q441706\" target=\"_other\">\n",
"<text text-anchor=\"middle\" x=\"871.5737\" y=\"-258\" font-family=\"DejaVu Sans,Tahoma,Geneva,sans-serif\" font-size=\"10.00\" fill=\"#0000ff\">Q441706</text>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- node2&#45;&gt;node115 -->\n",
"<g id=\"edge100\" class=\"edge\">\n",
"<title>node2&#45;&gt;node115</title>\n",
"<g id=\"a_edge100\"><a xlink:href=\"http://www.wikidata.org/prop/direct/P22\" xlink:title=\"wdt:P22\" target=\"_other\">\n",
"<path fill=\"none\" stroke=\"#9fc9e5\" stroke-opacity=\"0.376471\" d=\"M532.9268,-337.6466C557.4258,-333.8153 594.353,-328.2076 626.5737,-324 697.531,-314.7338 718.1988,-327.1107 786.5737,-306 803.221,-300.8602 820.4189,-292.4343 834.9528,-284.2551\"/>\n",
"<polygon fill=\"#9fc9e5\" fill-opacity=\"0.376471\" stroke=\"#9fc9e5\" stroke-opacity=\"0.376471\" points=\"843.6293,-279.2258 837.2344,-288.1339 839.3035,-281.7332 834.9777,-284.2407 834.9777,-284.2407 834.9777,-284.2407 839.3035,-281.7332 832.7209,-280.3475 843.6293,-279.2258 843.6293,-279.2258\"/>\n",
"</a>\n",
"</g>\n",
"<g id=\"a_edge100&#45;label\"><a xlink:href=\"http://www.wikidata.org/prop/direct/P22\" xlink:title=\"wdt:P22\" target=\"_other\">\n",
"<text text-anchor=\"middle\" x=\"824.5767\" y=\"-298.8\" font-family=\"Times,serif\" font-size=\"9.00\" fill=\"#204080\">wdt:P22</text>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- node4 -->\n",
"<g id=\"node5\" class=\"node\">\n",
"<title>node4</title>\n",
"<g id=\"a_node5\"><a xlink:href=\"http://www.wikidata.org/entity/Q46720\" xlink:title=\"Q46720\" target=\"_other\">\n",
"<text text-anchor=\"middle\" x=\"919.5737\" y=\"-420\" font-family=\"DejaVu Sans,Tahoma,Geneva,sans-serif\" font-size=\"10.00\" fill=\"#0000ff\">Q46720</text>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- node5 -->\n",
"<g id=\"node6\" class=\"node\">\n",
"<title>node5</title>\n",
"<g id=\"a_node6\"><a xlink:href=\"http://www.wikidata.org/entity/Q46846\" xlink:title=\"Q46846\" target=\"_other\">\n",
"<text text-anchor=\"middle\" x=\"803.5737\" y=\"-339\" font-family=\"DejaVu Sans,Tahoma,Geneva,sans-serif\" font-size=\"10.00\" fill=\"#0000ff\">Q46846</text>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- node4&#45;&gt;node5 -->\n",
"<g id=\"edge3\" class=\"edge\">\n",
"<title>node4&#45;&gt;node5</title>\n",
"<g id=\"a_edge3\"><a xlink:href=\"http://www.wikidata.org/prop/direct/P22\" xlink:title=\"wdt:P22\" target=\"_other\">\n",
"<path fill=\"none\" stroke=\"#9fc9e5\" stroke-opacity=\"0.376471\" d=\"M893.5411,-404.822C877.1233,-393.3579 855.7359,-378.4236 837.9334,-365.9926\"/>\n",
"<polygon fill=\"#9fc9e5\" fill-opacity=\"0.376471\" stroke=\"#9fc9e5\" stroke-opacity=\"0.376471\" points=\"829.5195,-360.1173 840.2948,-362.1529 833.619,-362.9799 837.7185,-365.8425 837.7185,-365.8425 837.7185,-365.8425 833.619,-362.9799 835.1422,-369.532 829.5195,-360.1173 829.5195,-360.1173\"/>\n",
"</a>\n",
"</g>\n",
"<g id=\"a_edge3&#45;label\"><a xlink:href=\"http://www.wikidata.org/prop/direct/P22\" xlink:title=\"wdt:P22\" target=\"_other\">\n",
"<text text-anchor=\"middle\" x=\"880.5767\" y=\"-379.8\" font-family=\"Times,serif\" font-size=\"9.00\" fill=\"#204080\">wdt:P22</text>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- node42 -->\n",
"<g id=\"node43\" class=\"node\">\n",
"<title>node42</title>\n",
"<g id=\"a_node43\"><a xlink:href=\"http://www.wikidata.org/entity/Q189108\" xlink:title=\"Q189108\" target=\"_other\">\n",
"<text text-anchor=\"middle\" x=\"1000.5737\" y=\"-339\" font-family=\"DejaVu Sans,Tahoma,Geneva,sans-serif\" font-size=\"10.00\" fill=\"#0000ff\">Q189108</text>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- node4&#45;&gt;node42 -->\n",
"<g id=\"edge23\" class=\"edge\">\n",
"<title>node4&#45;&gt;node42</title>\n",
"<g id=\"a_edge23\"><a xlink:href=\"http://www.wikidata.org/prop/direct/P22\" xlink:title=\"wdt:P22\" target=\"_other\">\n",
"<path fill=\"none\" stroke=\"#9fc9e5\" stroke-opacity=\"0.376471\" d=\"M937.9539,-404.6198C949.0089,-393.5648 963.2359,-379.3378 975.3346,-367.2391\"/>\n",
"<polygon fill=\"#9fc9e5\" fill-opacity=\"0.376471\" stroke=\"#9fc9e5\" stroke-opacity=\"0.376471\" points=\"982.5453,-360.0284 978.6562,-370.2815 979.0098,-363.5639 975.4742,-367.0995 975.4742,-367.0995 975.4742,-367.0995 979.0098,-363.5639 972.2922,-363.9175 982.5453,-360.0284 982.5453,-360.0284\"/>\n",
"</a>\n",
"</g>\n",
"<g id=\"a_edge23&#45;label\"><a xlink:href=\"http://www.wikidata.org/prop/direct/P22\" xlink:title=\"wdt:P22\" target=\"_other\">\n",
"<text text-anchor=\"middle\" x=\"977.5767\" y=\"-379.8\" font-family=\"Times,serif\" font-size=\"9.00\" fill=\"#204080\">wdt:P22</text>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- node102 -->\n",
"<g id=\"node103\" class=\"node\">\n",
"<title>node102</title>\n",
"<g id=\"a_node103\"><a xlink:href=\"http://www.wikidata.org/entity/Q236999\" xlink:title=\"Q236999\" target=\"_other\">\n",
"<text text-anchor=\"middle\" x=\"919.5737\" y=\"-339\" font-family=\"DejaVu Sans,Tahoma,Geneva,sans-serif\" font-size=\"10.00\" fill=\"#0000ff\">Q236999</text>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- node4&#45;&gt;node102 -->\n",
"<g id=\"edge85\" class=\"edge\">\n",
"<title>node4&#45;&gt;node102</title>\n",
"<g id=\"a_edge85\"><a xlink:href=\"http://www.wikidata.org/prop/direct/P22\" xlink:title=\"wdt:P22\" target=\"_other\">\n",
"<path fill=\"none\" stroke=\"#9fc9e5\" stroke-opacity=\"0.376471\" d=\"M919.5737,-404.6198C919.5737,-394.5034 919.5737,-381.7309 919.5737,-370.3637\"/>\n",
"<polygon fill=\"#9fc9e5\" fill-opacity=\"0.376471\" stroke=\"#9fc9e5\" stroke-opacity=\"0.376471\" points=\"919.5737,-360.0284 924.0738,-370.0284 919.5738,-365.0284 919.5738,-370.0284 919.5738,-370.0284 919.5738,-370.0284 919.5738,-365.0284 915.0738,-370.0284 919.5737,-360.0284 919.5737,-360.0284\"/>\n",
"</a>\n",
"</g>\n",
"<g id=\"a_edge85&#45;label\"><a xlink:href=\"http://www.wikidata.org/prop/direct/P22\" xlink:title=\"wdt:P22\" target=\"_other\">\n",
"<text text-anchor=\"middle\" x=\"934.5767\" y=\"-379.8\" font-family=\"Times,serif\" font-size=\"9.00\" fill=\"#204080\">wdt:P22</text>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- node6 -->\n",
"<g id=\"node7\" class=\"node\">\n",
"<title>node6</title>\n",
"<g id=\"a_node7\"><a xlink:href=\"http://www.wikidata.org/entity/Q164210\" xlink:title=\"Q164210\" target=\"_other\">\n",
"<text text-anchor=\"middle\" x=\"1447.5737\" y=\"-420\" font-family=\"DejaVu Sans,Tahoma,Geneva,sans-serif\" font-size=\"10.00\" fill=\"#0000ff\">Q164210</text>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- node7 -->\n",
"<g id=\"node8\" class=\"node\">\n",
"<title>node7</title>\n",
"<g id=\"a_node8\"><a xlink:href=\"http://www.wikidata.org/entity/Q234562\" xlink:title=\"Q234562\" target=\"_other\">\n",
"<text text-anchor=\"middle\" x=\"1491.5737\" y=\"-339\" font-family=\"DejaVu Sans,Tahoma,Geneva,sans-serif\" font-size=\"10.00\" fill=\"#0000ff\">Q234562</text>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- node6&#45;&gt;node7 -->\n",
"<g id=\"edge4\" class=\"edge\">\n",
"<title>node6&#45;&gt;node7</title>\n",
"<g id=\"a_edge4\"><a xlink:href=\"http://www.wikidata.org/prop/direct/P25\" xlink:title=\"wdt:P25\" target=\"_other\">\n",
"<path fill=\"none\" stroke=\"#9fc9e5\" stroke-opacity=\"0.376471\" d=\"M1457.558,-404.6198C1463.28,-394.0863 1470.5662,-380.6729 1476.9262,-368.9649\"/>\n",
"<polygon fill=\"#9fc9e5\" fill-opacity=\"0.376471\" stroke=\"#9fc9e5\" stroke-opacity=\"0.376471\" points=\"1481.7805,-360.0284 1480.9614,-370.9637 1479.3938,-364.422 1477.0072,-368.8156 1477.0072,-368.8156 1477.0072,-368.8156 1479.3938,-364.422 1473.0529,-366.6676 1481.7805,-360.0284 1481.7805,-360.0284\"/>\n",
"</a>\n",
"</g>\n",
"<g id=\"a_edge4&#45;label\"><a xlink:href=\"http://www.wikidata.org/prop/direct/P25\" xlink:title=\"wdt:P25\" target=\"_other\">\n",
"<text text-anchor=\"middle\" x=\"1486.5767\" y=\"-379.8\" font-family=\"Times,serif\" font-size=\"9.00\" fill=\"#204080\">wdt:P25</text>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- node8 -->\n",
"<g id=\"node9\" class=\"node\">\n",
"<title>node8</title>\n",
"<g id=\"a_node9\"><a xlink:href=\"http://www.wikidata.org/entity/Q1327859\" xlink:title=\"Q1327859\" target=\"_other\">\n",
"<text text-anchor=\"middle\" x=\"1712.5737\" y=\"-420\" font-family=\"DejaVu Sans,Tahoma,Geneva,sans-serif\" font-size=\"10.00\" fill=\"#0000ff\">Q1327859</text>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- node9 -->\n",
"<g id=\"node10\" class=\"node\">\n",
"<title>node9</title>\n",
"<g id=\"a_node10\"><a xlink:href=\"http://www.wikidata.org/entity/Q13130598\" xlink:title=\"Q13130598\" target=\"_other\">\n",
"<text text-anchor=\"middle\" x=\"1767.5737\" y=\"-339\" font-family=\"DejaVu Sans,Tahoma,Geneva,sans-serif\" font-size=\"10.00\" fill=\"#0000ff\">Q13130598</text>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- node8&#45;&gt;node9 -->\n",
"<g id=\"edge5\" class=\"edge\">\n",
"<title>node8&#45;&gt;node9</title>\n",
"<g id=\"a_edge5\"><a xlink:href=\"http://www.wikidata.org/prop/direct/P25\" xlink:title=\"wdt:P25\" target=\"_other\">\n",
"<path fill=\"none\" stroke=\"#9fc9e5\" stroke-opacity=\"0.376471\" d=\"M1725.0541,-404.6198C1732.2773,-393.982 1741.4949,-380.407 1749.5,-368.6176\"/>\n",
"<polygon fill=\"#9fc9e5\" fill-opacity=\"0.376471\" stroke=\"#9fc9e5\" stroke-opacity=\"0.376471\" points=\"1755.3322,-360.0284 1753.4376,-370.8294 1752.5235,-364.1649 1749.7147,-368.3015 1749.7147,-368.3015 1749.7147,-368.3015 1752.5235,-364.1649 1745.9918,-365.7736 1755.3322,-360.0284 1755.3322,-360.0284\"/>\n",
"</a>\n",
"</g>\n",
"<g id=\"a_edge5&#45;label\"><a xlink:href=\"http://www.wikidata.org/prop/direct/P25\" xlink:title=\"wdt:P25\" target=\"_other\">\n",
"<text text-anchor=\"middle\" x=\"1757.5767\" y=\"-379.8\" font-family=\"Times,serif\" font-size=\"9.00\" fill=\"#204080\">wdt:P25</text>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- node33 -->\n",
"<g id=\"node34\" class=\"node\">\n",
"<title>node33</title>\n",
"<g id=\"a_node34\"><a xlink:href=\"http://www.wikidata.org/entity/Q3887731\" xlink:title=\"Q3887731\" target=\"_other\">\n",
"<text text-anchor=\"middle\" x=\"1679.5737\" y=\"-339\" font-family=\"DejaVu Sans,Tahoma,Geneva,sans-serif\" font-size=\"10.00\" fill=\"#0000ff\">Q3887731</text>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- node8&#45;&gt;node33 -->\n",
"<g id=\"edge123\" class=\"edge\">\n",
"<title>node8&#45;&gt;node33</title>\n",
"<g id=\"a_edge123\"><a xlink:href=\"http://www.wikidata.org/prop/direct/P25\" xlink:title=\"wdt:P25\" target=\"_other\">\n",
"<path fill=\"none\" stroke=\"#9fc9e5\" stroke-opacity=\"0.376471\" d=\"M1681.038,-415.5264C1666.0316,-410.2148 1649.4589,-401.3855 1640.5679,-387 1636.4402,-380.3215 1638.1934,-373.6456 1642.7018,-367.5583\"/>\n",
"<polygon fill=\"#9fc9e5\" fill-opacity=\"0.376471\" stroke=\"#9fc9e5\" stroke-opacity=\"0.376471\" points=\"1649.6508,-360.2067 1646.0518,-370.5652 1646.2161,-363.8404 1642.7815,-367.474 1642.7815,-367.474 1642.7815,-367.474 1646.2161,-363.8404 1639.5112,-364.3829 1649.6508,-360.2067 1649.6508,-360.2067\"/>\n",
"</a>\n",
"</g>\n",
"<g id=\"a_edge123&#45;label\"><a xlink:href=\"http://www.wikidata.org/prop/direct/P25\" xlink:title=\"wdt:P25\" target=\"_other\">\n",
"<text text-anchor=\"middle\" x=\"1655.5767\" y=\"-379.8\" font-family=\"Times,serif\" font-size=\"9.00\" fill=\"#204080\">wdt:P25</text>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- node51 -->\n",
"<g id=\"node52\" class=\"node\">\n",
"<title>node51</title>\n",
"<g id=\"a_node52\"><a xlink:href=\"http://www.wikidata.org/entity/Q4067684\" xlink:title=\"Q4067684\" target=\"_other\">\n",
"<text text-anchor=\"middle\" x=\"1588.5737\" y=\"-339\" font-family=\"DejaVu Sans,Tahoma,Geneva,sans-serif\" font-size=\"10.00\" fill=\"#0000ff\">Q4067684</text>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- node8&#45;&gt;node51 -->\n",
"<g id=\"edge29\" class=\"edge\">\n",
"<title>node8&#45;&gt;node51</title>\n",
"<g id=\"a_edge29\"><a xlink:href=\"http://www.wikidata.org/prop/direct/P25\" xlink:title=\"wdt:P25\" target=\"_other\">\n",
"<path fill=\"none\" stroke=\"#9fc9e5\" stroke-opacity=\"0.376471\" d=\"M1681.3004,-419.9619C1657.4056,-416.0707 1625.1736,-407.2025 1604.5679,-387 1599.8278,-382.3527 1596.4882,-376.2108 1594.1367,-369.9638\"/>\n",
"<polygon fill=\"#9fc9e5\" fill-opacity=\"0.376471\" stroke=\"#9fc9e5\" stroke-opacity=\"0.376471\" points=\"1591.1957,-360.2601 1598.4029,-368.5249 1592.646,-365.0451 1594.0963,-369.8302 1594.0963,-369.8302 1594.0963,-369.8302 1592.646,-365.0451 1589.7898,-371.1355 1591.1957,-360.2601 1591.1957,-360.2601\"/>\n",
"</a>\n",
"</g>\n",
"<g id=\"a_edge29&#45;label\"><a xlink:href=\"http://www.wikidata.org/prop/direct/P25\" xlink:title=\"wdt:P25\" target=\"_other\">\n",
"<text text-anchor=\"middle\" x=\"1619.5767\" y=\"-379.8\" font-family=\"Times,serif\" font-size=\"9.00\" fill=\"#204080\">wdt:P25</text>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- node107 -->\n",
"<g id=\"node108\" class=\"node\">\n",
"<title>node107</title>\n",
"<g id=\"a_node108\"><a xlink:href=\"http://www.wikidata.org/entity/Q507675\" xlink:title=\"Q507675\" target=\"_other\">\n",
"<text text-anchor=\"middle\" x=\"1893.5737\" y=\"-339\" font-family=\"DejaVu Sans,Tahoma,Geneva,sans-serif\" font-size=\"10.00\" fill=\"#0000ff\">Q507675</text>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- node8&#45;&gt;node107 -->\n",
"<g id=\"edge134\" class=\"edge\">\n",
"<title>node8&#45;&gt;node107</title>\n",
"<g id=\"a_edge134\"><a xlink:href=\"http://www.wikidata.org/prop/direct/P25\" xlink:title=\"wdt:P25\" target=\"_other\">\n",
"<path fill=\"none\" stroke=\"#9fc9e5\" stroke-opacity=\"0.376471\" d=\"M1744.02,-415.1374C1766.7083,-408.9098 1797.7596,-399.2311 1823.5737,-387 1836.1625,-381.0353 1849.1987,-373.1799 1860.5593,-365.7042\"/>\n",
"<polygon fill=\"#9fc9e5\" fill-opacity=\"0.376471\" stroke=\"#9fc9e5\" stroke-opacity=\"0.376471\" points=\"1868.8851,-360.0992 1863.1028,-369.4167 1864.7374,-362.8915 1860.5897,-365.6838 1860.5897,-365.6838 1860.5897,-365.6838 1864.7374,-362.8915 1858.0767,-361.9509 1868.8851,-360.0992 1868.8851,-360.0992\"/>\n",
"</a>\n",
"</g>\n",
"<g id=\"a_edge134&#45;label\"><a xlink:href=\"http://www.wikidata.org/prop/direct/P25\" xlink:title=\"wdt:P25\" target=\"_other\">\n",
"<text text-anchor=\"middle\" x=\"1855.5767\" y=\"-379.8\" font-family=\"Times,serif\" font-size=\"9.00\" fill=\"#204080\">wdt:P25</text>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- node10 -->\n",
"<g id=\"node11\" class=\"node\">\n",
"<title>node10</title>\n",
"<g id=\"a_node11\"><a xlink:href=\"http://www.wikidata.org/entity/Q159369\" xlink:title=\"Q159369\" target=\"_other\">\n",
"<text text-anchor=\"middle\" x=\"1394.5737\" y=\"-339\" font-family=\"DejaVu Sans,Tahoma,Geneva,sans-serif\" font-size=\"10.00\" fill=\"#0000ff\">Q159369</text>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- node11 -->\n",
"<g id=\"node12\" class=\"node\">\n",
"<title>node11</title>\n",
"<g id=\"a_node12\"><a xlink:href=\"http://www.wikidata.org/entity/Q160353\" xlink:title=\"Q160353\" target=\"_other\">\n",
"<text text-anchor=\"middle\" x=\"1456.5737\" y=\"-258\" font-family=\"DejaVu Sans,Tahoma,Geneva,sans-serif\" font-size=\"10.00\" fill=\"#0000ff\">Q160353</text>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- node10&#45;&gt;node11 -->\n",
"<g id=\"edge6\" class=\"edge\">\n",
"<title>node10&#45;&gt;node11</title>\n",
"<g id=\"a_edge6\"><a xlink:href=\"http://www.wikidata.org/prop/direct/P22\" xlink:title=\"wdt:P22\" target=\"_other\">\n",
"<path fill=\"none\" stroke=\"#9fc9e5\" stroke-opacity=\"0.376471\" d=\"M1423.3629,-333.3559C1436.5474,-327.7949 1450.915,-319.0953 1458.5737,-306 1461.4854,-301.0215 1462.5534,-295.1768 1462.5985,-289.3781\"/>\n",
"<polygon fill=\"#9fc9e5\" fill-opacity=\"0.376471\" stroke=\"#9fc9e5\" stroke-opacity=\"0.376471\" points=\"1461.7519,-279.1872 1467.0644,-288.7804 1462.1659,-284.1701 1462.5799,-289.1529 1462.5799,-289.1529 1462.5799,-289.1529 1462.1659,-284.1701 1458.0953,-289.5255 1461.7519,-279.1872 1461.7519,-279.1872\"/>\n",
"</a>\n",
"</g>\n",
"<g id=\"a_edge6&#45;label\"><a xlink:href=\"http://www.wikidata.org/prop/direct/P22\" xlink:title=\"wdt:P22\" target=\"_other\">\n",
"<text text-anchor=\"middle\" x=\"1477.5767\" y=\"-298.8\" font-family=\"Times,serif\" font-size=\"9.00\" fill=\"#204080\">wdt:P22</text>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- node69 -->\n",
"<g id=\"node70\" class=\"node\">\n",
"<title>node69</title>\n",
"<g id=\"a_node70\"><a xlink:href=\"http://www.wikidata.org/entity/Q231919\" xlink:title=\"Q231919\" target=\"_other\">\n",
"<text text-anchor=\"middle\" x=\"1381.5737\" y=\"-258\" font-family=\"DejaVu Sans,Tahoma,Geneva,sans-serif\" font-size=\"10.00\" fill=\"#0000ff\">Q231919</text>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- node10&#45;&gt;node69 -->\n",
"<g id=\"edge73\" class=\"edge\">\n",
"<title>node10&#45;&gt;node69</title>\n",
"<g id=\"a_edge73\"><a xlink:href=\"http://www.wikidata.org/prop/direct/P22\" xlink:title=\"wdt:P22\" target=\"_other\">\n",
"<path fill=\"none\" stroke=\"#9fc9e5\" stroke-opacity=\"0.376471\" d=\"M1415.5807,-323.7824C1422.1655,-315.8257 1426.7482,-306.2206 1422.5737,-297 1420.9072,-293.319 1418.6578,-289.8652 1416.0659,-286.6651\"/>\n",
"<polygon fill=\"#9fc9e5\" fill-opacity=\"0.376471\" stroke=\"#9fc9e5\" stroke-opacity=\"0.376471\" points=\"1409.0548,-279.248 1419.1944,-283.424 1412.4895,-282.8816 1415.9242,-286.5152 1415.9242,-286.5152 1415.9242,-286.5152 1412.4895,-282.8816 1412.654,-289.6065 1409.0548,-279.248 1409.0548,-279.248\"/>\n",
"</a>\n",
"</g>\n",
"<g id=\"a_edge73&#45;label\"><a xlink:href=\"http://www.wikidata.org/prop/direct/P22\" xlink:title=\"wdt:P22\" target=\"_other\">\n",
"<text text-anchor=\"middle\" x=\"1439.5767\" y=\"-298.8\" font-family=\"Times,serif\" font-size=\"9.00\" fill=\"#204080\">wdt:P22</text>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- node108 -->\n",
"<g id=\"node109\" class=\"node\">\n",
"<title>node108</title>\n",
"<g id=\"a_node109\"><a xlink:href=\"http://www.wikidata.org/entity/Q2696588\" xlink:title=\"Q2696588\" target=\"_other\">\n",
"<text text-anchor=\"middle\" x=\"1303.5737\" y=\"-258\" font-family=\"DejaVu Sans,Tahoma,Geneva,sans-serif\" font-size=\"10.00\" fill=\"#0000ff\">Q2696588</text>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- node10&#45;&gt;node108 -->\n",
"<g id=\"edge124\" class=\"edge\">\n",
"<title>node10&#45;&gt;node108</title>\n",
"<g id=\"a_edge124\"><a xlink:href=\"http://www.wikidata.org/prop/direct/P22\" xlink:title=\"wdt:P22\" target=\"_other\">\n",
"<path fill=\"none\" stroke=\"#9fc9e5\" stroke-opacity=\"0.376471\" d=\"M1387.349,-323.7892C1383.1555,-314.9138 1377.1865,-304.554 1369.5737,-297 1365.1874,-292.6475 1355.0166,-286.5898 1343.9405,-280.6836\"/>\n",
"<polygon fill=\"#9fc9e5\" fill-opacity=\"0.376471\" stroke=\"#9fc9e5\" stroke-opacity=\"0.376471\" points=\"1334.9568,-276.015 1345.9053,-276.6333 1339.3935,-278.3207 1343.8302,-280.6263 1343.8302,-280.6263 1343.8302,-280.6263 1339.3935,-278.3207 1341.7551,-284.6193 1334.9568,-276.015 1334.9568,-276.015\"/>\n",
"</a>\n",
"</g>\n",
"<g id=\"a_edge124&#45;label\"><a xlink:href=\"http://www.wikidata.org/prop/direct/P22\" xlink:title=\"wdt:P22\" target=\"_other\">\n",
"<text text-anchor=\"middle\" x=\"1392.5767\" y=\"-298.8\" font-family=\"Times,serif\" font-size=\"9.00\" fill=\"#204080\">wdt:P22</text>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- node55 -->\n",
"<g id=\"node56\" class=\"node\">\n",
"<title>node55</title>\n",
"<g id=\"a_node56\"><a xlink:href=\"http://www.wikidata.org/entity/Q232329\" xlink:title=\"Q232329\" target=\"_other\">\n",
"<text text-anchor=\"middle\" x=\"1230.5737\" y=\"-177\" font-family=\"DejaVu Sans,Tahoma,Geneva,sans-serif\" font-size=\"10.00\" fill=\"#0000ff\">Q232329</text>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- node11&#45;&gt;node55 -->\n",
"<g id=\"edge33\" class=\"edge\">\n",
"<title>node11&#45;&gt;node55</title>\n",
"<g id=\"a_edge33\"><a xlink:href=\"http://www.wikidata.org/prop/direct/P22\" xlink:title=\"wdt:P22\" target=\"_other\">\n",
"<path fill=\"none\" stroke=\"#9fc9e5\" stroke-opacity=\"0.376471\" d=\"M1427.6521,-246.4857C1424.9418,-245.2604 1422.2195,-244.0791 1419.5737,-243 1368.4196,-222.1362 1307.5229,-202.7823 1268.9548,-191.1762\"/>\n",
"<polygon fill=\"#9fc9e5\" fill-opacity=\"0.376471\" stroke=\"#9fc9e5\" stroke-opacity=\"0.376471\" points=\"1259.1731,-188.2548 1270.0427,-186.8047 1263.964,-189.6857 1268.7549,-191.1165 1268.7549,-191.1165 1268.7549,-191.1165 1263.964,-189.6857 1267.4671,-195.4283 1259.1731,-188.2548 1259.1731,-188.2548\"/>\n",
"</a>\n",
"</g>\n",
"<g id=\"a_edge33&#45;label\"><a xlink:href=\"http://www.wikidata.org/prop/direct/P22\" xlink:title=\"wdt:P22\" target=\"_other\">\n",
"<text text-anchor=\"middle\" x=\"1383.5767\" y=\"-217.8\" font-family=\"Times,serif\" font-size=\"9.00\" fill=\"#204080\">wdt:P22</text>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- node12 -->\n",
"<g id=\"node13\" class=\"node\">\n",
"<title>node12</title>\n",
"<g id=\"a_node13\"><a xlink:href=\"http://www.wikidata.org/entity/Q2479052\" xlink:title=\"Q2479052\" target=\"_other\">\n",
"<text text-anchor=\"middle\" x=\"2010.5737\" y=\"-420\" font-family=\"DejaVu Sans,Tahoma,Geneva,sans-serif\" font-size=\"10.00\" fill=\"#0000ff\">Q2479052</text>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- node13 -->\n",
"<g id=\"node14\" class=\"node\">\n",
"<title>node13</title>\n",
"<g id=\"a_node14\"><a xlink:href=\"http://www.wikidata.org/entity/Q453551\" xlink:title=\"Q453551\" target=\"_other\">\n",
"<text text-anchor=\"middle\" x=\"2046.5737\" y=\"-339\" font-family=\"DejaVu Sans,Tahoma,Geneva,sans-serif\" font-size=\"10.00\" fill=\"#0000ff\">Q453551</text>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- node12&#45;&gt;node13 -->\n",
"<g id=\"edge7\" class=\"edge\">\n",
"<title>node12&#45;&gt;node13</title>\n",
"<g id=\"a_edge7\"><a xlink:href=\"http://www.wikidata.org/prop/direct/P25\" xlink:title=\"wdt:P25\" target=\"_other\">\n",
"<path fill=\"none\" stroke=\"#9fc9e5\" stroke-opacity=\"0.376471\" d=\"M2018.7427,-404.6198C2023.3779,-394.1906 2029.2678,-380.9383 2034.4346,-369.3131\"/>\n",
"<polygon fill=\"#9fc9e5\" fill-opacity=\"0.376471\" stroke=\"#9fc9e5\" stroke-opacity=\"0.376471\" points=\"2038.5611,-360.0284 2038.6118,-370.9942 2036.5304,-364.5975 2034.4997,-369.1665 2034.4997,-369.1665 2034.4997,-369.1665 2036.5304,-364.5975 2030.3875,-367.3389 2038.5611,-360.0284 2038.5611,-360.0284\"/>\n",
"</a>\n",
"</g>\n",
"<g id=\"a_edge7&#45;label\"><a xlink:href=\"http://www.wikidata.org/prop/direct/P25\" xlink:title=\"wdt:P25\" target=\"_other\">\n",
"<text text-anchor=\"middle\" x=\"2045.5767\" y=\"-379.8\" font-family=\"Times,serif\" font-size=\"9.00\" fill=\"#204080\">wdt:P25</text>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- node14 -->\n",
"<g id=\"node15\" class=\"node\">\n",
"<title>node14</title>\n",
"<g id=\"a_node15\"><a xlink:href=\"http://www.wikidata.org/entity/Q1411\" xlink:title=\"Q1411\" target=\"_other\">\n",
"<text text-anchor=\"middle\" x=\"2342.5737\" y=\"-420\" font-family=\"DejaVu Sans,Tahoma,Geneva,sans-serif\" font-size=\"10.00\" fill=\"#0000ff\">Q1411</text>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- node15 -->\n",
"<g id=\"node16\" class=\"node\">\n",
"<title>node15</title>\n",
"<g id=\"a_node16\"><a xlink:href=\"http://www.wikidata.org/entity/Q313115\" xlink:title=\"Q313115\" target=\"_other\">\n",
"<text text-anchor=\"middle\" x=\"2172.5737\" y=\"-339\" font-family=\"DejaVu Sans,Tahoma,Geneva,sans-serif\" font-size=\"10.00\" fill=\"#0000ff\">Q313115</text>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- node14&#45;&gt;node15 -->\n",
"<g id=\"edge8\" class=\"edge\">\n",
"<title>node14&#45;&gt;node15</title>\n",
"<g id=\"a_edge8\"><a xlink:href=\"http://www.wikidata.org/prop/direct/P22\" xlink:title=\"wdt:P22\" target=\"_other\">\n",
"<path fill=\"none\" stroke=\"#9fc9e5\" stroke-opacity=\"0.376471\" d=\"M2315.2603,-409.9859C2286.8508,-396.4497 2242.1627,-375.1571 2210.3726,-360.0101\"/>\n",
"<polygon fill=\"#9fc9e5\" fill-opacity=\"0.376471\" stroke=\"#9fc9e5\" stroke-opacity=\"0.376471\" points=\"2200.9531,-355.5219 2211.9164,-355.761 2205.4669,-357.6727 2209.9808,-359.8234 2209.9808,-359.8234 2209.9808,-359.8234 2205.4669,-357.6727 2208.0451,-363.8858 2200.9531,-355.5219 2200.9531,-355.5219\"/>\n",
"</a>\n",
"</g>\n",
"<g id=\"a_edge8&#45;label\"><a xlink:href=\"http://www.wikidata.org/prop/direct/P22\" xlink:title=\"wdt:P22\" target=\"_other\">\n",
"<text text-anchor=\"middle\" x=\"2278.5767\" y=\"-379.8\" font-family=\"Times,serif\" font-size=\"9.00\" fill=\"#204080\">wdt:P22</text>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- node27 -->\n",
"<g id=\"node28\" class=\"node\">\n",
"<title>node27</title>\n",
"<g id=\"a_node28\"><a xlink:href=\"http://www.wikidata.org/entity/Q255410\" xlink:title=\"Q255410\" target=\"_other\">\n",
"<text text-anchor=\"middle\" x=\"2395.5737\" y=\"-339\" font-family=\"DejaVu Sans,Tahoma,Geneva,sans-serif\" font-size=\"10.00\" fill=\"#0000ff\">Q255410</text>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- node14&#45;&gt;node27 -->\n",
"<g id=\"edge78\" class=\"edge\">\n",
"<title>node14&#45;&gt;node27</title>\n",
"<g id=\"a_edge78\"><a xlink:href=\"http://www.wikidata.org/prop/direct/P22\" xlink:title=\"wdt:P22\" target=\"_other\">\n",
"<path fill=\"none\" stroke=\"#9fc9e5\" stroke-opacity=\"0.376471\" d=\"M2353.5377,-404.9121C2358.6221,-396.6454 2364.8039,-386.7633 2370.5679,-378 2372.6117,-374.8926 2374.7866,-371.6596 2376.968,-368.4621\"/>\n",
"<polygon fill=\"#9fc9e5\" fill-opacity=\"0.376471\" stroke=\"#9fc9e5\" stroke-opacity=\"0.376471\" points=\"2382.672,-360.192 2380.6987,-370.9789 2379.8331,-364.308 2376.9943,-368.4239 2376.9943,-368.4239 2376.9943,-368.4239 2379.8331,-364.308 2373.2899,-365.869 2382.672,-360.192 2382.672,-360.192\"/>\n",
"</a>\n",
"</g>\n",
"<g id=\"a_edge78&#45;label\"><a xlink:href=\"http://www.wikidata.org/prop/direct/P22\" xlink:title=\"wdt:P22\" target=\"_other\">\n",
"<text text-anchor=\"middle\" x=\"2385.5767\" y=\"-379.8\" font-family=\"Times,serif\" font-size=\"9.00\" fill=\"#204080\">wdt:P22</text>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- node124 -->\n",
"<g id=\"node125\" class=\"node\">\n",
"<title>node124</title>\n",
"<g id=\"a_node125\"><a xlink:href=\"http://www.wikidata.org/entity/Q231262\" xlink:title=\"Q231262\" target=\"_other\">\n",
"<text text-anchor=\"middle\" x=\"2278.5737\" y=\"-339\" font-family=\"DejaVu Sans,Tahoma,Geneva,sans-serif\" font-size=\"10.00\" fill=\"#0000ff\">Q231262</text>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- node14&#45;&gt;node124 -->\n",
"<g id=\"edge114\" class=\"edge\">\n",
"<title>node14&#45;&gt;node124</title>\n",
"<g id=\"a_edge114\"><a xlink:href=\"http://www.wikidata.org/prop/direct/P22\" xlink:title=\"wdt:P22\" target=\"_other\">\n",
"<path fill=\"none\" stroke=\"#9fc9e5\" stroke-opacity=\"0.376471\" d=\"M2328.0511,-404.6198C2319.4811,-393.7734 2308.4985,-379.8736 2299.0586,-367.9262\"/>\n",
"<polygon fill=\"#9fc9e5\" fill-opacity=\"0.376471\" stroke=\"#9fc9e5\" stroke-opacity=\"0.376471\" points=\"2292.8184,-360.0284 2302.5489,-365.0849 2295.9182,-363.9516 2299.018,-367.8748 2299.018,-367.8748 2299.018,-367.8748 2295.9182,-363.9516 2295.4871,-370.6646 2292.8184,-360.0284 2292.8184,-360.0284\"/>\n",
"</a>\n",
"</g>\n",
"<g id=\"a_edge114&#45;label\"><a xlink:href=\"http://www.wikidata.org/prop/direct/P22\" xlink:title=\"wdt:P22\" target=\"_other\">\n",
"<text text-anchor=\"middle\" x=\"2327.5767\" y=\"-379.8\" font-family=\"Times,serif\" font-size=\"9.00\" fill=\"#204080\">wdt:P22</text>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- node132 -->\n",
"<g id=\"node133\" class=\"node\">\n",
"<title>node132</title>\n",
"<g id=\"a_node133\"><a xlink:href=\"http://www.wikidata.org/entity/Q2975271\" xlink:title=\"Q2975271\" target=\"_other\">\n",
"<text text-anchor=\"middle\" x=\"2524.5737\" y=\"-339\" font-family=\"DejaVu Sans,Tahoma,Geneva,sans-serif\" font-size=\"10.00\" fill=\"#0000ff\">Q2975271</text>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- node14&#45;&gt;node132 -->\n",
"<g id=\"edge159\" class=\"edge\">\n",
"<title>node14&#45;&gt;node132</title>\n",
"<g id=\"a_edge159\"><a xlink:href=\"http://www.wikidata.org/prop/direct/P22\" xlink:title=\"wdt:P22\" target=\"_other\">\n",
"<path fill=\"none\" stroke=\"#9fc9e5\" stroke-opacity=\"0.376471\" d=\"M2369.6605,-405.3857C2384.1041,-396.4561 2402.3954,-385.8673 2419.5679,-378 2440.1019,-368.5927 2463.8427,-360.2536 2483.5504,-353.9764\"/>\n",
"<polygon fill=\"#9fc9e5\" fill-opacity=\"0.376471\" stroke=\"#9fc9e5\" stroke-opacity=\"0.376471\" points=\"2493.159,-350.9762 2484.9547,-358.2523 2488.3862,-352.4665 2483.6135,-353.9568 2483.6135,-353.9568 2483.6135,-353.9568 2488.3862,-352.4665 2482.2722,-349.6613 2493.159,-350.9762 2493.159,-350.9762\"/>\n",
"</a>\n",
"</g>\n",
"<g id=\"a_edge159&#45;label\"><a xlink:href=\"http://www.wikidata.org/prop/direct/P22\" xlink:title=\"wdt:P22\" target=\"_other\">\n",
"<text text-anchor=\"middle\" x=\"2434.5767\" y=\"-379.8\" font-family=\"Times,serif\" font-size=\"9.00\" fill=\"#204080\">wdt:P22</text>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- node16 -->\n",
"<g id=\"node17\" class=\"node\">\n",
"<title>node16</title>\n",
"<g id=\"a_node17\"><a xlink:href=\"http://www.wikidata.org/entity/Q46418\" xlink:title=\"Q46418\" target=\"_other\">\n",
"<text text-anchor=\"middle\" x=\"3214.5737\" y=\"-177\" font-family=\"DejaVu Sans,Tahoma,Geneva,sans-serif\" font-size=\"10.00\" fill=\"#0000ff\">Q46418</text>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- node17 -->\n",
"<g id=\"node18\" class=\"node\">\n",
"<title>node17</title>\n",
"<g id=\"a_node18\"><a xlink:href=\"http://www.wikidata.org/entity/Q437472\" xlink:title=\"Q437472\" target=\"_other\">\n",
"<text text-anchor=\"middle\" x=\"2881.5737\" y=\"-96\" font-family=\"DejaVu Sans,Tahoma,Geneva,sans-serif\" font-size=\"10.00\" fill=\"#0000ff\">Q437472</text>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- node16&#45;&gt;node17 -->\n",
"<g id=\"edge9\" class=\"edge\">\n",
"<title>node16&#45;&gt;node17</title>\n",
"<g id=\"a_edge9\"><a xlink:href=\"http://www.wikidata.org/prop/direct/P22\" xlink:title=\"wdt:P22\" target=\"_other\">\n",
"<path fill=\"none\" stroke=\"#9fc9e5\" stroke-opacity=\"0.376471\" d=\"M3187.512,-170.1922C3179.2435,-167.3628 3170.086,-164.3958 3161.5737,-162 3076.4125,-138.031 2974.6885,-117.0044 2920.3441,-106.3691\"/>\n",
"<polygon fill=\"#9fc9e5\" fill-opacity=\"0.376471\" stroke=\"#9fc9e5\" stroke-opacity=\"0.376471\" points=\"2910.4443,-104.4443 2921.1193,-101.9356 2915.3524,-105.3986 2920.2605,-106.3529 2920.2605,-106.3529 2920.2605,-106.3529 2915.3524,-105.3986 2919.4016,-110.7702 2910.4443,-104.4443 2910.4443,-104.4443\"/>\n",
"</a>\n",
"</g>\n",
"<g id=\"a_edge9&#45;label\"><a xlink:href=\"http://www.wikidata.org/prop/direct/P22\" xlink:title=\"wdt:P22\" target=\"_other\">\n",
"<text text-anchor=\"middle\" x=\"3100.5767\" y=\"-136.8\" font-family=\"Times,serif\" font-size=\"9.00\" fill=\"#204080\">wdt:P22</text>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- node18 -->\n",
"<g id=\"node19\" class=\"node\">\n",
"<title>node18</title>\n",
"<g id=\"a_node19\"><a xlink:href=\"http://www.wikidata.org/entity/Q232094\" xlink:title=\"Q232094\" target=\"_other\">\n",
"<text text-anchor=\"middle\" x=\"2602.5737\" y=\"-339\" font-family=\"DejaVu Sans,Tahoma,Geneva,sans-serif\" font-size=\"10.00\" fill=\"#0000ff\">Q232094</text>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- node19 -->\n",
"<g id=\"node20\" class=\"node\">\n",
"<title>node19</title>\n",
"<g id=\"a_node20\"><a xlink:href=\"http://www.wikidata.org/entity/Q504556\" xlink:title=\"Q504556\" target=\"_other\">\n",
"<text text-anchor=\"middle\" x=\"2776.5737\" y=\"-258\" font-family=\"DejaVu Sans,Tahoma,Geneva,sans-serif\" font-size=\"10.00\" fill=\"#0000ff\">Q504556</text>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- node18&#45;&gt;node19 -->\n",
"<g id=\"edge10\" class=\"edge\">\n",
"<title>node18&#45;&gt;node19</title>\n",
"<g id=\"a_edge10\"><a xlink:href=\"http://www.wikidata.org/prop/direct/P25\" xlink:title=\"wdt:P25\" target=\"_other\">\n",
"<path fill=\"none\" stroke=\"#9fc9e5\" stroke-opacity=\"0.376471\" d=\"M2609.0394,-323.96C2613.3824,-314.4487 2620.0701,-303.4467 2629.5679,-297 2668.0769,-270.8615 2689.6458,-291.1821 2738.1021,-278.7956\"/>\n",
"<polygon fill=\"#9fc9e5\" fill-opacity=\"0.376471\" stroke=\"#9fc9e5\" stroke-opacity=\"0.376471\" points=\"2747.8178,-275.9719 2739.471,-283.084 2743.0164,-277.3674 2738.2151,-278.7628 2738.2151,-278.7628 2738.2151,-278.7628 2743.0164,-277.3674 2736.9592,-274.4416 2747.8178,-275.9719 2747.8178,-275.9719\"/>\n",
"</a>\n",
"</g>\n",
"<g id=\"a_edge10&#45;label\"><a xlink:href=\"http://www.wikidata.org/prop/direct/P25\" xlink:title=\"wdt:P25\" target=\"_other\">\n",
"<text text-anchor=\"middle\" x=\"2644.5767\" y=\"-298.8\" font-family=\"Times,serif\" font-size=\"9.00\" fill=\"#204080\">wdt:P25</text>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- node24 -->\n",
"<g id=\"node25\" class=\"node\">\n",
"<title>node24</title>\n",
"<g id=\"a_node25\"><a xlink:href=\"http://www.wikidata.org/entity/Q238023\" xlink:title=\"Q238023\" target=\"_other\">\n",
"<text text-anchor=\"middle\" x=\"2918.5737\" y=\"-258\" font-family=\"DejaVu Sans,Tahoma,Geneva,sans-serif\" font-size=\"10.00\" fill=\"#0000ff\">Q238023</text>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- node18&#45;&gt;node24 -->\n",
"<g id=\"edge106\" class=\"edge\">\n",
"<title>node18&#45;&gt;node24</title>\n",
"<g id=\"a_edge106\"><a xlink:href=\"http://www.wikidata.org/prop/direct/P25\" xlink:title=\"wdt:P25\" target=\"_other\">\n",
"<path fill=\"none\" stroke=\"#9fc9e5\" stroke-opacity=\"0.376471\" d=\"M2631.4753,-339.4413C2673.086,-335.2431 2751.9726,-325.3537 2816.5737,-306 2838.4622,-299.4425 2861.8542,-289.3633 2880.7083,-280.405\"/>\n",
"<polygon fill=\"#9fc9e5\" fill-opacity=\"0.376471\" stroke=\"#9fc9e5\" stroke-opacity=\"0.376471\" points=\"2889.8467,-275.9828 2882.8054,-284.3894 2885.346,-278.1608 2880.8452,-280.3387 2880.8452,-280.3387 2880.8452,-280.3387 2885.346,-278.1608 2878.8851,-276.2881 2889.8467,-275.9828 2889.8467,-275.9828\"/>\n",
"</a>\n",
"</g>\n",
"<g id=\"a_edge106&#45;label\"><a xlink:href=\"http://www.wikidata.org/prop/direct/P25\" xlink:title=\"wdt:P25\" target=\"_other\">\n",
"<text text-anchor=\"middle\" x=\"2855.5767\" y=\"-298.8\" font-family=\"Times,serif\" font-size=\"9.00\" fill=\"#204080\">wdt:P25</text>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- node39 -->\n",
"<g id=\"node40\" class=\"node\">\n",
"<title>node39</title>\n",
"<g id=\"a_node40\"><a xlink:href=\"http://www.wikidata.org/entity/Q486630\" xlink:title=\"Q486630\" target=\"_other\">\n",
"<text text-anchor=\"middle\" x=\"2701.5737\" y=\"-258\" font-family=\"DejaVu Sans,Tahoma,Geneva,sans-serif\" font-size=\"10.00\" fill=\"#0000ff\">Q486630</text>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- node18&#45;&gt;node39 -->\n",
"<g id=\"edge63\" class=\"edge\">\n",
"<title>node18&#45;&gt;node39</title>\n",
"<g id=\"a_edge63\"><a xlink:href=\"http://www.wikidata.org/prop/direct/P25\" xlink:title=\"wdt:P25\" target=\"_other\">\n",
"<path fill=\"none\" stroke=\"#9fc9e5\" stroke-opacity=\"0.376471\" d=\"M2581.9223,-323.7113C2574.8061,-315.2191 2570.0752,-305.2099 2576.5679,-297 2598.1015,-269.771 2619.3314,-289.003 2652.5737,-279 2656.0776,-277.9456 2659.6951,-276.7761 2663.3032,-275.554\"/>\n",
"<polygon fill=\"#9fc9e5\" fill-opacity=\"0.376471\" stroke=\"#9fc9e5\" stroke-opacity=\"0.376471\" points=\"2672.7476,-272.2391 2664.8023,-279.7971 2668.0298,-273.895 2663.312,-275.551 2663.312,-275.551 2663.312,-275.551 2668.0298,-273.895 2661.8216,-271.305 2672.7476,-272.2391 2672.7476,-272.2391\"/>\n",
"</a>\n",
"</g>\n",
"<g id=\"a_edge63&#45;label\"><a xlink:href=\"http://www.wikidata.org/prop/direct/P25\" xlink:title=\"wdt:P25\" target=\"_other\">\n",
"<text text-anchor=\"middle\" x=\"2591.5767\" y=\"-298.8\" font-family=\"Times,serif\" font-size=\"9.00\" fill=\"#204080\">wdt:P25</text>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- node75 -->\n",
"<g id=\"node76\" class=\"node\">\n",
"<title>node75</title>\n",
"<g id=\"a_node76\"><a xlink:href=\"http://www.wikidata.org/entity/Q291738\" xlink:title=\"Q291738\" target=\"_other\">\n",
"<text text-anchor=\"middle\" x=\"2801.5737\" y=\"-177\" font-family=\"DejaVu Sans,Tahoma,Geneva,sans-serif\" font-size=\"10.00\" fill=\"#0000ff\">Q291738</text>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- node18&#45;&gt;node75 -->\n",
"<g id=\"edge47\" class=\"edge\">\n",
"<title>node18&#45;&gt;node75</title>\n",
"<g id=\"a_edge47\"><a xlink:href=\"http://www.wikidata.org/prop/direct/P25\" xlink:title=\"wdt:P25\" target=\"_other\">\n",
"<path fill=\"none\" stroke=\"#9fc9e5\" stroke-opacity=\"0.376471\" d=\"M2573.8961,-327.274C2570.8007,-326.0304 2567.6556,-324.9048 2564.5737,-324 2534.6884,-315.2256 2446.9882,-328.6174 2425.5737,-306 2420.4712,-300.6108 2421.9155,-244.8854 2423.5679,-243 2471.9366,-187.8078 2674.6229,-217.1835 2763.1787,-197.2492\"/>\n",
"<polygon fill=\"#9fc9e5\" fill-opacity=\"0.376471\" stroke=\"#9fc9e5\" stroke-opacity=\"0.376471\" points=\"2772.8935,-194.7171 2764.3518,-201.5939 2768.0551,-195.9782 2763.2168,-197.2394 2763.2168,-197.2394 2763.2168,-197.2394 2768.0551,-195.9782 2762.0818,-192.8849 2772.8935,-194.7171 2772.8935,-194.7171\"/>\n",
"</a>\n",
"</g>\n",
"<g id=\"a_edge47&#45;label\"><a xlink:href=\"http://www.wikidata.org/prop/direct/P25\" xlink:title=\"wdt:P25\" target=\"_other\">\n",
"<text text-anchor=\"middle\" x=\"2438.5767\" y=\"-258.3\" font-family=\"Times,serif\" font-size=\"9.00\" fill=\"#204080\">wdt:P25</text>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- node87 -->\n",
"<g id=\"node88\" class=\"node\">\n",
"<title>node87</title>\n",
"<g id=\"a_node88\"><a xlink:href=\"http://www.wikidata.org/entity/Q450702\" xlink:title=\"Q450702\" target=\"_other\">\n",
"<text text-anchor=\"middle\" x=\"2491.5737\" y=\"-258\" font-family=\"DejaVu Sans,Tahoma,Geneva,sans-serif\" font-size=\"10.00\" fill=\"#0000ff\">Q450702</text>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- node18&#45;&gt;node87 -->\n",
"<g id=\"edge70\" class=\"edge\">\n",
"<title>node18&#45;&gt;node87</title>\n",
"<g id=\"a_edge70\"><a xlink:href=\"http://www.wikidata.org/prop/direct/P25\" xlink:title=\"wdt:P25\" target=\"_other\">\n",
"<path fill=\"none\" stroke=\"#9fc9e5\" stroke-opacity=\"0.376471\" d=\"M2573.8898,-327.2954C2570.7956,-326.0476 2567.6525,-324.9152 2564.5737,-324 2536.195,-315.5639 2452.037,-328.3041 2432.5679,-306 2421.9169,-293.7981 2435.9574,-282.7281 2453.0067,-274.6209\"/>\n",
"<polygon fill=\"#9fc9e5\" fill-opacity=\"0.376471\" stroke=\"#9fc9e5\" stroke-opacity=\"0.376471\" points=\"2462.6503,-270.4334 2455.2701,-278.5441 2458.064,-272.4249 2453.4777,-274.4164 2453.4777,-274.4164 2453.4777,-274.4164 2458.064,-272.4249 2451.6854,-270.2888 2462.6503,-270.4334 2462.6503,-270.4334\"/>\n",
"</a>\n",
"</g>\n",
"<g id=\"a_edge70&#45;label\"><a xlink:href=\"http://www.wikidata.org/prop/direct/P25\" xlink:title=\"wdt:P25\" target=\"_other\">\n",
"<text text-anchor=\"middle\" x=\"2447.5767\" y=\"-298.8\" font-family=\"Times,serif\" font-size=\"9.00\" fill=\"#204080\">wdt:P25</text>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- node105 -->\n",
"<g id=\"node106\" class=\"node\">\n",
"<title>node105</title>\n",
"<g id=\"a_node106\"><a xlink:href=\"http://www.wikidata.org/entity/Q1427539\" xlink:title=\"Q1427539\" target=\"_other\">\n",
"<text text-anchor=\"middle\" x=\"2612.5737\" y=\"-258\" font-family=\"DejaVu Sans,Tahoma,Geneva,sans-serif\" font-size=\"10.00\" fill=\"#0000ff\">Q1427539</text>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- node18&#45;&gt;node105 -->\n",
"<g id=\"edge89\" class=\"edge\">\n",
"<title>node18&#45;&gt;node105</title>\n",
"<g id=\"a_edge89\"><a xlink:href=\"http://www.wikidata.org/prop/direct/P25\" xlink:title=\"wdt:P25\" target=\"_other\">\n",
"<path fill=\"none\" stroke=\"#9fc9e5\" stroke-opacity=\"0.376471\" d=\"M2573.837,-327.4647C2570.7531,-326.1839 2567.6269,-324.9975 2564.5737,-324 2523.2536,-310.5002 2443.8728,-331.307 2470.5679,-297 2473.7536,-292.9059 2530.5704,-279.4053 2571.3562,-270.1527\"/>\n",
"<polygon fill=\"#9fc9e5\" fill-opacity=\"0.376471\" stroke=\"#9fc9e5\" stroke-opacity=\"0.376471\" points=\"2581.3377,-267.9002 2572.5736,-274.4912 2576.4603,-269.0009 2571.583,-270.1016 2571.583,-270.1016 2571.583,-270.1016 2576.4603,-269.0009 2570.5923,-265.712 2581.3377,-267.9002 2581.3377,-267.9002\"/>\n",
"</a>\n",
"</g>\n",
"<g id=\"a_edge89&#45;label\"><a xlink:href=\"http://www.wikidata.org/prop/direct/P25\" xlink:title=\"wdt:P25\" target=\"_other\">\n",
"<text text-anchor=\"middle\" x=\"2485.5767\" y=\"-298.8\" font-family=\"Times,serif\" font-size=\"9.00\" fill=\"#204080\">wdt:P25</text>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- node20 -->\n",
"<g id=\"node21\" class=\"node\">\n",
"<title>node20</title>\n",
"<g id=\"a_node21\"><a xlink:href=\"http://www.wikidata.org/entity/Q211772\" xlink:title=\"Q211772\" target=\"_other\">\n",
"<text text-anchor=\"middle\" x=\"3437.5737\" y=\"-420\" font-family=\"DejaVu Sans,Tahoma,Geneva,sans-serif\" font-size=\"10.00\" fill=\"#0000ff\">Q211772</text>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- node21 -->\n",
"<g id=\"node22\" class=\"node\">\n",
"<title>node21</title>\n",
"<g id=\"a_node22\"><a xlink:href=\"http://www.wikidata.org/entity/Q882941\" xlink:title=\"Q882941\" target=\"_other\">\n",
"<text text-anchor=\"middle\" x=\"3430.5737\" y=\"-339\" font-family=\"DejaVu Sans,Tahoma,Geneva,sans-serif\" font-size=\"10.00\" fill=\"#0000ff\">Q882941</text>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- node20&#45;&gt;node21 -->\n",
"<g id=\"edge11\" class=\"edge\">\n",
"<title>node20&#45;&gt;node21</title>\n",
"<g id=\"a_edge11\"><a xlink:href=\"http://www.wikidata.org/prop/direct/P22\" xlink:title=\"wdt:P22\" target=\"_other\">\n",
"<path fill=\"none\" stroke=\"#9fc9e5\" stroke-opacity=\"0.376471\" d=\"M3409.1679,-417.1411C3381.2809,-410.7446 3341.6412,-399.7024 3332.5679,-387 3330.2429,-383.7451 3330.2382,-381.2515 3332.5679,-378 3347.0584,-357.776 3362.2364,-368.623 3385.5737,-360 3387.7714,-359.188 3390.0233,-358.3397 3392.2917,-357.4726\"/>\n",
"<polygon fill=\"#9fc9e5\" fill-opacity=\"0.376471\" stroke=\"#9fc9e5\" stroke-opacity=\"0.376471\" points=\"3401.6129,-353.8469 3393.9245,-361.666 3396.953,-355.6595 3392.2931,-357.4721 3392.2931,-357.4721 3392.2931,-357.4721 3396.953,-355.6595 3390.6618,-353.2781 3401.6129,-353.8469 3401.6129,-353.8469\"/>\n",
"</a>\n",
"</g>\n",
"<g id=\"a_edge11&#45;label\"><a xlink:href=\"http://www.wikidata.org/prop/direct/P22\" xlink:title=\"wdt:P22\" target=\"_other\">\n",
"<text text-anchor=\"middle\" x=\"3347.5767\" y=\"-379.8\" font-family=\"Times,serif\" font-size=\"9.00\" fill=\"#204080\">wdt:P22</text>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- node23 -->\n",
"<g id=\"node24\" class=\"node\">\n",
"<title>node23</title>\n",
"<g id=\"a_node24\"><a xlink:href=\"http://www.wikidata.org/entity/Q2528282\" xlink:title=\"Q2528282\" target=\"_other\">\n",
"<text text-anchor=\"middle\" x=\"3345.5737\" y=\"-339\" font-family=\"DejaVu Sans,Tahoma,Geneva,sans-serif\" font-size=\"10.00\" fill=\"#0000ff\">Q2528282</text>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- node20&#45;&gt;node23 -->\n",
"<g id=\"edge92\" class=\"edge\">\n",
"<title>node20&#45;&gt;node23</title>\n",
"<g id=\"a_edge92\"><a xlink:href=\"http://www.wikidata.org/prop/direct/P22\" xlink:title=\"wdt:P22\" target=\"_other\">\n",
"<path fill=\"none\" stroke=\"#9fc9e5\" stroke-opacity=\"0.376471\" d=\"M3409.0665,-419.7637C3372.2008,-414.924 3311.1012,-404.4534 3297.5679,-387 3290.6084,-378.0246 3296.2952,-369.2334 3305.8553,-361.8371\"/>\n",
"<polygon fill=\"#9fc9e5\" fill-opacity=\"0.376471\" stroke=\"#9fc9e5\" stroke-opacity=\"0.376471\" points=\"3314.185,-356.2276 3308.4041,-365.5459 3310.0377,-359.0205 3305.8905,-361.8134 3305.8905,-361.8134 3305.8905,-361.8134 3310.0377,-359.0205 3303.3768,-358.0809 3314.185,-356.2276 3314.185,-356.2276\"/>\n",
"</a>\n",
"</g>\n",
"<g id=\"a_edge92&#45;label\"><a xlink:href=\"http://www.wikidata.org/prop/direct/P22\" xlink:title=\"wdt:P22\" target=\"_other\">\n",
"<text text-anchor=\"middle\" x=\"3312.5767\" y=\"-379.8\" font-family=\"Times,serif\" font-size=\"9.00\" fill=\"#204080\">wdt:P22</text>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- node62 -->\n",
"<g id=\"node63\" class=\"node\">\n",
"<title>node62</title>\n",
"<g id=\"a_node63\"><a xlink:href=\"http://www.wikidata.org/entity/Q2269678\" xlink:title=\"Q2269678\" target=\"_other\">\n",
"<text text-anchor=\"middle\" x=\"3594.5737\" y=\"-339\" font-family=\"DejaVu Sans,Tahoma,Geneva,sans-serif\" font-size=\"10.00\" fill=\"#0000ff\">Q2269678</text>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- node20&#45;&gt;node62 -->\n",
"<g id=\"edge59\" class=\"edge\">\n",
"<title>node20&#45;&gt;node62</title>\n",
"<g id=\"a_edge59\"><a xlink:href=\"http://www.wikidata.org/prop/direct/P22\" xlink:title=\"wdt:P22\" target=\"_other\">\n",
"<path fill=\"none\" stroke=\"#9fc9e5\" stroke-opacity=\"0.376471\" d=\"M3466.054,-412.0154C3482.5474,-405.3539 3503.5474,-396.3539 3521.5737,-387 3533.9999,-380.552 3547.1464,-372.7696 3558.8077,-365.503\"/>\n",
"<polygon fill=\"#9fc9e5\" fill-opacity=\"0.376471\" stroke=\"#9fc9e5\" stroke-opacity=\"0.376471\" points=\"3567.399,-360.0774 3561.3467,-369.2218 3563.1715,-362.7472 3558.9439,-365.417 3558.9439,-365.417 3558.9439,-365.417 3563.1715,-362.7472 3556.5411,-361.6122 3567.399,-360.0774 3567.399,-360.0774\"/>\n",
"</a>\n",
"</g>\n",
"<g id=\"a_edge59&#45;label\"><a xlink:href=\"http://www.wikidata.org/prop/direct/P22\" xlink:title=\"wdt:P22\" target=\"_other\">\n",
"<text text-anchor=\"middle\" x=\"3551.5767\" y=\"-379.8\" font-family=\"Times,serif\" font-size=\"9.00\" fill=\"#204080\">wdt:P22</text>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- node96 -->\n",
"<g id=\"node97\" class=\"node\">\n",
"<title>node96</title>\n",
"<g id=\"a_node97\"><a xlink:href=\"http://www.wikidata.org/entity/Q2271845\" xlink:title=\"Q2271845\" target=\"_other\">\n",
"<text text-anchor=\"middle\" x=\"3511.5737\" y=\"-339\" font-family=\"DejaVu Sans,Tahoma,Geneva,sans-serif\" font-size=\"10.00\" fill=\"#0000ff\">Q2271845</text>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- node20&#45;&gt;node96 -->\n",
"<g id=\"edge156\" class=\"edge\">\n",
"<title>node20&#45;&gt;node96</title>\n",
"<g id=\"a_edge156\"><a xlink:href=\"http://www.wikidata.org/prop/direct/P22\" xlink:title=\"wdt:P22\" target=\"_other\">\n",
"<path fill=\"none\" stroke=\"#9fc9e5\" stroke-opacity=\"0.376471\" d=\"M3433.8088,-404.6476C3433.0139,-395.9445 3433.6123,-385.7762 3438.5679,-378 3440.7265,-374.6128 3455.3659,-367.1342 3470.9751,-359.8662\"/>\n",
"<polygon fill=\"#9fc9e5\" fill-opacity=\"0.376471\" stroke=\"#9fc9e5\" stroke-opacity=\"0.376471\" points=\"3480.1907,-355.6437 3472.974,-363.9003 3475.6451,-357.7265 3471.0995,-359.8093 3471.0995,-359.8093 3471.0995,-359.8093 3475.6451,-357.7265 3469.225,-355.7182 3480.1907,-355.6437 3480.1907,-355.6437\"/>\n",
"</a>\n",
"</g>\n",
"<g id=\"a_edge156&#45;label\"><a xlink:href=\"http://www.wikidata.org/prop/direct/P22\" xlink:title=\"wdt:P22\" target=\"_other\">\n",
"<text text-anchor=\"middle\" x=\"3453.5767\" y=\"-379.8\" font-family=\"Times,serif\" font-size=\"9.00\" fill=\"#204080\">wdt:P22</text>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- node127 -->\n",
"<g id=\"node128\" class=\"node\">\n",
"<title>node127</title>\n",
"<g id=\"a_node128\"><a xlink:href=\"http://www.wikidata.org/entity/Q2322166\" xlink:title=\"Q2322166\" target=\"_other\">\n",
"<text text-anchor=\"middle\" x=\"3689.5737\" y=\"-339\" font-family=\"DejaVu Sans,Tahoma,Geneva,sans-serif\" font-size=\"10.00\" fill=\"#0000ff\">Q2322166</text>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- node20&#45;&gt;node127 -->\n",
"<g id=\"edge125\" class=\"edge\">\n",
"<title>node20&#45;&gt;node127</title>\n",
"<g id=\"a_edge125\"><a xlink:href=\"http://www.wikidata.org/prop/direct/P22\" xlink:title=\"wdt:P22\" target=\"_other\">\n",
"<path fill=\"none\" stroke=\"#9fc9e5\" stroke-opacity=\"0.376471\" d=\"M3465.8665,-420.3334C3501.7141,-416.273 3564.926,-406.8169 3615.5737,-387 3629.5456,-381.5332 3643.868,-373.4916 3656.145,-365.7128\"/>\n",
"<polygon fill=\"#9fc9e5\" fill-opacity=\"0.376471\" stroke=\"#9fc9e5\" stroke-opacity=\"0.376471\" points=\"3664.6888,-360.1357 3658.7748,-369.3701 3660.5019,-362.8688 3656.315,-365.6019 3656.315,-365.6019 3656.315,-365.6019 3660.5019,-362.8688 3653.8552,-361.8336 3664.6888,-360.1357 3664.6888,-360.1357\"/>\n",
"</a>\n",
"</g>\n",
"<g id=\"a_edge125&#45;label\"><a xlink:href=\"http://www.wikidata.org/prop/direct/P22\" xlink:title=\"wdt:P22\" target=\"_other\">\n",
"<text text-anchor=\"middle\" x=\"3650.5767\" y=\"-379.8\" font-family=\"Times,serif\" font-size=\"9.00\" fill=\"#204080\">wdt:P22</text>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- node22 -->\n",
"<g id=\"node23\" class=\"node\">\n",
"<title>node22</title>\n",
"<g id=\"a_node23\"><a xlink:href=\"http://www.wikidata.org/entity/Q380773\" xlink:title=\"Q380773\" target=\"_other\">\n",
"<text text-anchor=\"middle\" x=\"3596.5737\" y=\"-420\" font-family=\"DejaVu Sans,Tahoma,Geneva,sans-serif\" font-size=\"10.00\" fill=\"#0000ff\">Q380773</text>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- node22&#45;&gt;node21 -->\n",
"<g id=\"edge30\" class=\"edge\">\n",
"<title>node22&#45;&gt;node21</title>\n",
"<g id=\"a_edge30\"><a xlink:href=\"http://www.wikidata.org/prop/direct/P25\" xlink:title=\"wdt:P25\" target=\"_other\">\n",
"<path fill=\"none\" stroke=\"#9fc9e5\" stroke-opacity=\"0.376471\" d=\"M3567.6845,-416.409C3545.043,-410.5583 3513.1915,-400.788 3487.5679,-387 3477.1979,-381.4199 3466.8077,-373.9211 3457.7926,-366.6465\"/>\n",
"<polygon fill=\"#9fc9e5\" fill-opacity=\"0.376471\" stroke=\"#9fc9e5\" stroke-opacity=\"0.376471\" points=\"3449.94,-360.0902 3460.5004,-363.045 3453.7782,-363.2948 3457.6163,-366.4993 3457.6163,-366.4993 3457.6163,-366.4993 3453.7782,-363.2948 3454.7322,-369.9536 3449.94,-360.0902 3449.94,-360.0902\"/>\n",
"</a>\n",
"</g>\n",
"<g id=\"a_edge30&#45;label\"><a xlink:href=\"http://www.wikidata.org/prop/direct/P25\" xlink:title=\"wdt:P25\" target=\"_other\">\n",
"<text text-anchor=\"middle\" x=\"3502.5767\" y=\"-379.8\" font-family=\"Times,serif\" font-size=\"9.00\" fill=\"#204080\">wdt:P25</text>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- node22&#45;&gt;node23 -->\n",
"<g id=\"edge12\" class=\"edge\">\n",
"<title>node22&#45;&gt;node23</title>\n",
"<g id=\"a_edge12\"><a xlink:href=\"http://www.wikidata.org/prop/direct/P25\" xlink:title=\"wdt:P25\" target=\"_other\">\n",
"<path fill=\"none\" stroke=\"#9fc9e5\" stroke-opacity=\"0.376471\" d=\"M3567.7359,-418.4775C3517.1786,-410.4306 3416.4729,-393.8314 3401.5679,-387 3390.8045,-382.0668 3380.3234,-374.6037 3371.3956,-367.1656\"/>\n",
"<polygon fill=\"#9fc9e5\" fill-opacity=\"0.376471\" stroke=\"#9fc9e5\" stroke-opacity=\"0.376471\" points=\"3363.6697,-360.4151 3374.161,-363.6062 3367.4349,-363.705 3371.2001,-366.9949 3371.2001,-366.9949 3371.2001,-366.9949 3367.4349,-363.705 3368.2392,-370.3835 3363.6697,-360.4151 3363.6697,-360.4151\"/>\n",
"</a>\n",
"</g>\n",
"<g id=\"a_edge12&#45;label\"><a xlink:href=\"http://www.wikidata.org/prop/direct/P25\" xlink:title=\"wdt:P25\" target=\"_other\">\n",
"<text text-anchor=\"middle\" x=\"3416.5767\" y=\"-379.8\" font-family=\"Times,serif\" font-size=\"9.00\" fill=\"#204080\">wdt:P25</text>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- node22&#45;&gt;node62 -->\n",
"<g id=\"edge37\" class=\"edge\">\n",
"<title>node22&#45;&gt;node62</title>\n",
"<g id=\"a_edge37\"><a xlink:href=\"http://www.wikidata.org/prop/direct/P25\" xlink:title=\"wdt:P25\" target=\"_other\">\n",
"<path fill=\"none\" stroke=\"#9fc9e5\" stroke-opacity=\"0.376471\" d=\"M3625.2538,-418.8558C3655.2278,-413.2154 3695.9262,-401.07 3680.5737,-378 3677.6965,-373.6765 3656.0886,-364.6397 3635.2542,-356.7022\"/>\n",
"<polygon fill=\"#9fc9e5\" fill-opacity=\"0.376471\" stroke=\"#9fc9e5\" stroke-opacity=\"0.376471\" points=\"3625.8061,-353.1535 3636.7498,-352.4571 3630.4868,-354.9116 3635.1675,-356.6697 3635.1675,-356.6697 3635.1675,-356.6697 3630.4868,-354.9116 3633.5852,-360.8824 3625.8061,-353.1535 3625.8061,-353.1535\"/>\n",
"</a>\n",
"</g>\n",
"<g id=\"a_edge37&#45;label\"><a xlink:href=\"http://www.wikidata.org/prop/direct/P25\" xlink:title=\"wdt:P25\" target=\"_other\">\n",
"<text text-anchor=\"middle\" x=\"3699.5767\" y=\"-379.8\" font-family=\"Times,serif\" font-size=\"9.00\" fill=\"#204080\">wdt:P25</text>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- node22&#45;&gt;node96 -->\n",
"<g id=\"edge72\" class=\"edge\">\n",
"<title>node22&#45;&gt;node96</title>\n",
"<g id=\"a_edge72\"><a xlink:href=\"http://www.wikidata.org/prop/direct/P25\" xlink:title=\"wdt:P25\" target=\"_other\">\n",
"<path fill=\"none\" stroke=\"#9fc9e5\" stroke-opacity=\"0.376471\" d=\"M3590.587,-404.839C3586.9913,-395.9763 3581.7112,-385.6128 3574.5737,-378 3568.1197,-371.1162 3560.0488,-365.1786 3551.8598,-360.223\"/>\n",
"<polygon fill=\"#9fc9e5\" fill-opacity=\"0.376471\" stroke=\"#9fc9e5\" stroke-opacity=\"0.376471\" points=\"3542.9984,-355.2326 3553.9199,-356.2186 3547.355,-357.6861 3551.7117,-360.1396 3551.7117,-360.1396 3551.7117,-360.1396 3547.355,-357.6861 3549.5035,-364.0606 3542.9984,-355.2326 3542.9984,-355.2326\"/>\n",
"</a>\n",
"</g>\n",
"<g id=\"a_edge72&#45;label\"><a xlink:href=\"http://www.wikidata.org/prop/direct/P25\" xlink:title=\"wdt:P25\" target=\"_other\">\n",
"<text text-anchor=\"middle\" x=\"3596.5767\" y=\"-379.8\" font-family=\"Times,serif\" font-size=\"9.00\" fill=\"#204080\">wdt:P25</text>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- node22&#45;&gt;node127 -->\n",
"<g id=\"edge144\" class=\"edge\">\n",
"<title>node22&#45;&gt;node127</title>\n",
"<g id=\"a_edge144\"><a xlink:href=\"http://www.wikidata.org/prop/direct/P25\" xlink:title=\"wdt:P25\" target=\"_other\">\n",
"<path fill=\"none\" stroke=\"#9fc9e5\" stroke-opacity=\"0.376471\" d=\"M3625.3963,-418.5312C3657.8113,-412.8476 3707.4009,-401.946 3718.5737,-387 3722.9352,-381.1656 3721.908,-374.6858 3718.3828,-368.5027\"/>\n",
"<polygon fill=\"#9fc9e5\" fill-opacity=\"0.376471\" stroke=\"#9fc9e5\" stroke-opacity=\"0.376471\" points=\"3712.2988,-360.3435 3721.8841,-365.6702 3715.2877,-364.3518 3718.2765,-368.3602 3718.2765,-368.3602 3718.2765,-368.3602 3715.2877,-364.3518 3714.669,-371.0502 3712.2988,-360.3435 3712.2988,-360.3435\"/>\n",
"</a>\n",
"</g>\n",
"<g id=\"a_edge144&#45;label\"><a xlink:href=\"http://www.wikidata.org/prop/direct/P25\" xlink:title=\"wdt:P25\" target=\"_other\">\n",
"<text text-anchor=\"middle\" x=\"3736.5767\" y=\"-379.8\" font-family=\"Times,serif\" font-size=\"9.00\" fill=\"#204080\">wdt:P25</text>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- node25 -->\n",
"<g id=\"node26\" class=\"node\">\n",
"<title>node25</title>\n",
"<g id=\"a_node26\"><a xlink:href=\"http://www.wikidata.org/entity/Q166731\" xlink:title=\"Q166731\" target=\"_other\">\n",
"<text text-anchor=\"middle\" x=\"2919.5737\" y=\"-177\" font-family=\"DejaVu Sans,Tahoma,Geneva,sans-serif\" font-size=\"10.00\" fill=\"#0000ff\">Q166731</text>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- node24&#45;&gt;node25 -->\n",
"<g id=\"edge13\" class=\"edge\">\n",
"<title>node24&#45;&gt;node25</title>\n",
"<g id=\"a_edge13\"><a xlink:href=\"http://www.wikidata.org/prop/direct/P25\" xlink:title=\"wdt:P25\" target=\"_other\">\n",
"<path fill=\"none\" stroke=\"#9fc9e5\" stroke-opacity=\"0.376471\" d=\"M2903.3629,-242.6933C2898.5157,-234.7215 2894.9986,-225.1293 2897.5679,-216 2898.4137,-212.9944 2899.588,-209.9916 2900.9579,-207.0741\"/>\n",
"<polygon fill=\"#9fc9e5\" fill-opacity=\"0.376471\" stroke=\"#9fc9e5\" stroke-opacity=\"0.376471\" points=\"2905.8373,-198.1459 2904.9903,-209.079 2903.4394,-202.5334 2901.0415,-206.9209 2901.0415,-206.9209 2901.0415,-206.9209 2903.4394,-202.5334 2897.0928,-204.7628 2905.8373,-198.1459 2905.8373,-198.1459\"/>\n",
"</a>\n",
"</g>\n",
"<g id=\"a_edge13&#45;label\"><a xlink:href=\"http://www.wikidata.org/prop/direct/P25\" xlink:title=\"wdt:P25\" target=\"_other\">\n",
"<text text-anchor=\"middle\" x=\"2912.5767\" y=\"-217.8\" font-family=\"Times,serif\" font-size=\"9.00\" fill=\"#204080\">wdt:P25</text>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- node26 -->\n",
"<g id=\"node27\" class=\"node\">\n",
"<title>node26</title>\n",
"<g id=\"a_node27\"><a xlink:href=\"http://www.wikidata.org/entity/Q238448\" xlink:title=\"Q238448\" target=\"_other\">\n",
"<text text-anchor=\"middle\" x=\"2475.5737\" y=\"-420\" font-family=\"DejaVu Sans,Tahoma,Geneva,sans-serif\" font-size=\"10.00\" fill=\"#0000ff\">Q238448</text>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- node26&#45;&gt;node27 -->\n",
"<g id=\"edge14\" class=\"edge\">\n",
"<title>node26&#45;&gt;node27</title>\n",
"<g id=\"a_edge14\"><a xlink:href=\"http://www.wikidata.org/prop/direct/P25\" xlink:title=\"wdt:P25\" target=\"_other\">\n",
"<path fill=\"none\" stroke=\"#9fc9e5\" stroke-opacity=\"0.376471\" d=\"M2469.4688,-404.9477C2465.843,-396.1127 2460.5717,-385.7412 2453.5737,-378 2447.6901,-371.4914 2440.359,-365.7366 2432.9096,-360.8439\"/>\n",
"<polygon fill=\"#9fc9e5\" fill-opacity=\"0.376471\" stroke=\"#9fc9e5\" stroke-opacity=\"0.376471\" points=\"2424.1899,-355.5028 2435.0679,-356.8889 2428.4536,-358.1145 2432.7173,-360.7262 2432.7173,-360.7262 2432.7173,-360.7262 2428.4536,-358.1145 2430.3668,-364.5635 2424.1899,-355.5028 2424.1899,-355.5028\"/>\n",
"</a>\n",
"</g>\n",
"<g id=\"a_edge14&#45;label\"><a xlink:href=\"http://www.wikidata.org/prop/direct/P25\" xlink:title=\"wdt:P25\" target=\"_other\">\n",
"<text text-anchor=\"middle\" x=\"2475.5767\" y=\"-379.8\" font-family=\"Times,serif\" font-size=\"9.00\" fill=\"#204080\">wdt:P25</text>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- node28 -->\n",
"<g id=\"node29\" class=\"node\">\n",
"<title>node28</title>\n",
"<g id=\"a_node29\"><a xlink:href=\"http://www.wikidata.org/entity/Q236466\" xlink:title=\"Q236466\" target=\"_other\">\n",
"<text text-anchor=\"middle\" x=\"3835.5737\" y=\"-420\" font-family=\"DejaVu Sans,Tahoma,Geneva,sans-serif\" font-size=\"10.00\" fill=\"#0000ff\">Q236466</text>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- node29 -->\n",
"<g id=\"node30\" class=\"node\">\n",
"<title>node29</title>\n",
"<g id=\"a_node30\"><a xlink:href=\"http://www.wikidata.org/entity/Q273253\" xlink:title=\"Q273253\" target=\"_other\">\n",
"<text text-anchor=\"middle\" x=\"3827.5737\" y=\"-339\" font-family=\"DejaVu Sans,Tahoma,Geneva,sans-serif\" font-size=\"10.00\" fill=\"#0000ff\">Q273253</text>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- node28&#45;&gt;node29 -->\n",
"<g id=\"edge15\" class=\"edge\">\n",
"<title>node28&#45;&gt;node29</title>\n",
"<g id=\"a_edge15\"><a xlink:href=\"http://www.wikidata.org/prop/direct/P25\" xlink:title=\"wdt:P25\" target=\"_other\">\n",
"<path fill=\"none\" stroke=\"#9fc9e5\" stroke-opacity=\"0.376471\" d=\"M3819.0999,-404.805C3815.2127,-399.4419 3811.6083,-393.309 3809.5679,-387 3807.71,-381.2554 3808.308,-375.196 3810.1311,-369.4496\"/>\n",
"<polygon fill=\"#9fc9e5\" fill-opacity=\"0.376471\" stroke=\"#9fc9e5\" stroke-opacity=\"0.376471\" points=\"3814.1387,-360.185 3814.2986,-371.1497 3812.1536,-364.774 3810.1685,-369.3631 3810.1685,-369.3631 3810.1685,-369.3631 3812.1536,-364.774 3806.0383,-367.5765 3814.1387,-360.185 3814.1387,-360.185\"/>\n",
"</a>\n",
"</g>\n",
"<g id=\"a_edge15&#45;label\"><a xlink:href=\"http://www.wikidata.org/prop/direct/P25\" xlink:title=\"wdt:P25\" target=\"_other\">\n",
"<text text-anchor=\"middle\" x=\"3824.5767\" y=\"-379.8\" font-family=\"Times,serif\" font-size=\"9.00\" fill=\"#204080\">wdt:P25</text>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- node129 -->\n",
"<g id=\"node130\" class=\"node\">\n",
"<title>node129</title>\n",
"<g id=\"a_node130\"><a xlink:href=\"http://www.wikidata.org/entity/Q46837\" xlink:title=\"Q46837\" target=\"_other\">\n",
"<text text-anchor=\"middle\" x=\"3939.5737\" y=\"-339\" font-family=\"DejaVu Sans,Tahoma,Geneva,sans-serif\" font-size=\"10.00\" fill=\"#0000ff\">Q46837</text>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- node28&#45;&gt;node129 -->\n",
"<g id=\"edge137\" class=\"edge\">\n",
"<title>node28&#45;&gt;node129</title>\n",
"<g id=\"a_edge137\"><a xlink:href=\"http://www.wikidata.org/prop/direct/P25\" xlink:title=\"wdt:P25\" target=\"_other\">\n",
"<path fill=\"none\" stroke=\"#9fc9e5\" stroke-opacity=\"0.376471\" d=\"M3843.4611,-404.5929C3848.011,-395.6675 3854.4497,-385.3221 3862.5679,-378 3874.0318,-367.6601 3888.9851,-359.7594 3902.6617,-354.0309\"/>\n",
"<polygon fill=\"#9fc9e5\" fill-opacity=\"0.376471\" stroke=\"#9fc9e5\" stroke-opacity=\"0.376471\" points=\"3912.3267,-350.2398 3904.6605,-358.0808 3907.672,-352.0656 3903.0173,-353.8915 3903.0173,-353.8915 3903.0173,-353.8915 3907.672,-352.0656 3901.374,-349.7023 3912.3267,-350.2398 3912.3267,-350.2398\"/>\n",
"</a>\n",
"</g>\n",
"<g id=\"a_edge137&#45;label\"><a xlink:href=\"http://www.wikidata.org/prop/direct/P25\" xlink:title=\"wdt:P25\" target=\"_other\">\n",
"<text text-anchor=\"middle\" x=\"3877.5767\" y=\"-379.8\" font-family=\"Times,serif\" font-size=\"9.00\" fill=\"#204080\">wdt:P25</text>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- node30 -->\n",
"<g id=\"node31\" class=\"node\">\n",
"<title>node30</title>\n",
"<g id=\"a_node31\"><a xlink:href=\"http://www.wikidata.org/entity/Q1405\" xlink:title=\"Q1405\" target=\"_other\">\n",
"<text text-anchor=\"middle\" x=\"150.5737\" y=\"-420\" font-family=\"DejaVu Sans,Tahoma,Geneva,sans-serif\" font-size=\"10.00\" fill=\"#0000ff\">Q1405</text>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- node31 -->\n",
"<g id=\"node32\" class=\"node\">\n",
"<title>node31</title>\n",
"<g id=\"a_node32\"><a xlink:href=\"http://www.wikidata.org/entity/Q2259\" xlink:title=\"Q2259\" target=\"_other\">\n",
"<text text-anchor=\"middle\" x=\"187.5737\" y=\"-339\" font-family=\"DejaVu Sans,Tahoma,Geneva,sans-serif\" font-size=\"10.00\" fill=\"#0000ff\">Q2259</text>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- node30&#45;&gt;node31 -->\n",
"<g id=\"edge16\" class=\"edge\">\n",
"<title>node30&#45;&gt;node31</title>\n",
"<g id=\"a_edge16\"><a xlink:href=\"http://www.wikidata.org/prop/direct/P22\" xlink:title=\"wdt:P22\" target=\"_other\">\n",
"<path fill=\"none\" stroke=\"#9fc9e5\" stroke-opacity=\"0.376471\" d=\"M158.9696,-404.6198C163.7336,-394.1906 169.7871,-380.9383 175.0974,-369.3131\"/>\n",
"<polygon fill=\"#9fc9e5\" fill-opacity=\"0.376471\" stroke=\"#9fc9e5\" stroke-opacity=\"0.376471\" points=\"179.3385,-360.0284 179.2767,-370.9941 177.261,-364.5764 175.1835,-369.1244 175.1835,-369.1244 175.1835,-369.1244 177.261,-364.5764 171.0904,-367.2546 179.3385,-360.0284 179.3385,-360.0284\"/>\n",
"</a>\n",
"</g>\n",
"<g id=\"a_edge16&#45;label\"><a xlink:href=\"http://www.wikidata.org/prop/direct/P22\" xlink:title=\"wdt:P22\" target=\"_other\">\n",
"<text text-anchor=\"middle\" x=\"185.5767\" y=\"-379.8\" font-family=\"Times,serif\" font-size=\"9.00\" fill=\"#204080\">wdt:P22</text>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- node31&#45;&gt;node41 -->\n",
"<g id=\"edge54\" class=\"edge\">\n",
"<title>node31&#45;&gt;node41</title>\n",
"<g id=\"a_edge54\"><a xlink:href=\"http://www.wikidata.org/prop/direct/P25\" xlink:title=\"wdt:P25\" target=\"_other\">\n",
"<path fill=\"none\" stroke=\"#9fc9e5\" stroke-opacity=\"0.376471\" d=\"M178.2702,-323.6198C172.9384,-313.0863 166.1489,-299.6729 160.2226,-287.9649\"/>\n",
"<polygon fill=\"#9fc9e5\" fill-opacity=\"0.376471\" stroke=\"#9fc9e5\" stroke-opacity=\"0.376471\" points=\"155.6992,-279.0284 164.2304,-285.9182 157.9573,-283.4895 160.2154,-287.9505 160.2154,-287.9505 160.2154,-287.9505 157.9573,-283.4895 156.2004,-289.9828 155.6992,-279.0284 155.6992,-279.0284\"/>\n",
"</a>\n",
"</g>\n",
"<g id=\"a_edge54&#45;label\"><a xlink:href=\"http://www.wikidata.org/prop/direct/P25\" xlink:title=\"wdt:P25\" target=\"_other\">\n",
"<text text-anchor=\"middle\" x=\"183.5767\" y=\"-298.8\" font-family=\"Times,serif\" font-size=\"9.00\" fill=\"#204080\">wdt:P25</text>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- node32 -->\n",
"<g id=\"node33\" class=\"node\">\n",
"<title>node32</title>\n",
"<g id=\"a_node33\"><a xlink:href=\"http://www.wikidata.org/entity/Q211396\" xlink:title=\"Q211396\" target=\"_other\">\n",
"<text text-anchor=\"middle\" x=\"1830.5737\" y=\"-420\" font-family=\"DejaVu Sans,Tahoma,Geneva,sans-serif\" font-size=\"10.00\" fill=\"#0000ff\">Q211396</text>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- node32&#45;&gt;node9 -->\n",
"<g id=\"edge160\" class=\"edge\">\n",
"<title>node32&#45;&gt;node9</title>\n",
"<g id=\"a_edge160\"><a xlink:href=\"http://www.wikidata.org/prop/direct/P22\" xlink:title=\"wdt:P22\" target=\"_other\">\n",
"<path fill=\"none\" stroke=\"#9fc9e5\" stroke-opacity=\"0.376471\" d=\"M1859.0245,-411.9513C1875.9913,-403.6646 1892.4709,-391.4691 1882.5737,-378 1873.9026,-366.1994 1840.3247,-356.5395 1811.6737,-350.2079\"/>\n",
"<polygon fill=\"#9fc9e5\" fill-opacity=\"0.376471\" stroke=\"#9fc9e5\" stroke-opacity=\"0.376471\" points=\"1801.7939,-348.1091 1812.5107,-345.7854 1806.6848,-349.1481 1811.5756,-350.1871 1811.5756,-350.1871 1811.5756,-350.1871 1806.6848,-349.1481 1810.6405,-354.5889 1801.7939,-348.1091 1801.7939,-348.1091\"/>\n",
"</a>\n",
"</g>\n",
"<g id=\"a_edge160&#45;label\"><a xlink:href=\"http://www.wikidata.org/prop/direct/P22\" xlink:title=\"wdt:P22\" target=\"_other\">\n",
"<text text-anchor=\"middle\" x=\"1900.5767\" y=\"-379.8\" font-family=\"Times,serif\" font-size=\"9.00\" fill=\"#204080\">wdt:P22</text>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- node32&#45;&gt;node33 -->\n",
"<g id=\"edge17\" class=\"edge\">\n",
"<title>node32&#45;&gt;node33</title>\n",
"<g id=\"a_edge17\"><a xlink:href=\"http://www.wikidata.org/prop/direct/P22\" xlink:title=\"wdt:P22\" target=\"_other\">\n",
"<path fill=\"none\" stroke=\"#9fc9e5\" stroke-opacity=\"0.376471\" d=\"M1812.333,-404.9358C1802.41,-395.8831 1789.5383,-385.3199 1776.5737,-378 1755.2772,-365.9758 1747.4894,-368.5439 1724.5737,-360 1723.194,-359.4856 1721.7926,-358.9574 1720.379,-358.4197\"/>\n",
"<polygon fill=\"#9fc9e5\" fill-opacity=\"0.376471\" stroke=\"#9fc9e5\" stroke-opacity=\"0.376471\" points=\"1710.9715,-354.7787 1721.9217,-354.1915 1715.6345,-356.5834 1720.2974,-358.3882 1720.2974,-358.3882 1720.2974,-358.3882 1715.6345,-356.5834 1718.6731,-362.5848 1710.9715,-354.7787 1710.9715,-354.7787\"/>\n",
"</a>\n",
"</g>\n",
"<g id=\"a_edge17&#45;label\"><a xlink:href=\"http://www.wikidata.org/prop/direct/P22\" xlink:title=\"wdt:P22\" target=\"_other\">\n",
"<text text-anchor=\"middle\" x=\"1804.5767\" y=\"-379.8\" font-family=\"Times,serif\" font-size=\"9.00\" fill=\"#204080\">wdt:P22</text>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- node32&#45;&gt;node51 -->\n",
"<g id=\"edge76\" class=\"edge\">\n",
"<title>node32&#45;&gt;node51</title>\n",
"<g id=\"a_edge76\"><a xlink:href=\"http://www.wikidata.org/prop/direct/P22\" xlink:title=\"wdt:P22\" target=\"_other\">\n",
"<path fill=\"none\" stroke=\"#9fc9e5\" stroke-opacity=\"0.376471\" d=\"M1802.3205,-415.7242C1776.6324,-408.9211 1737.7799,-398.1605 1704.5679,-387 1679.2411,-378.4893 1651.3085,-367.697 1629.2012,-358.815\"/>\n",
"<polygon fill=\"#9fc9e5\" fill-opacity=\"0.376471\" stroke=\"#9fc9e5\" stroke-opacity=\"0.376471\" points=\"1619.7968,-355.011 1630.7546,-354.5892 1624.432,-356.8859 1629.0672,-358.7608 1629.0672,-358.7608 1629.0672,-358.7608 1624.432,-356.8859 1627.3797,-362.9325 1619.7968,-355.011 1619.7968,-355.011\"/>\n",
"</a>\n",
"</g>\n",
"<g id=\"a_edge76&#45;label\"><a xlink:href=\"http://www.wikidata.org/prop/direct/P22\" xlink:title=\"wdt:P22\" target=\"_other\">\n",
"<text text-anchor=\"middle\" x=\"1719.5767\" y=\"-379.8\" font-family=\"Times,serif\" font-size=\"9.00\" fill=\"#204080\">wdt:P22</text>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- node32&#45;&gt;node107 -->\n",
"<g id=\"edge91\" class=\"edge\">\n",
"<title>node32&#45;&gt;node107</title>\n",
"<g id=\"a_edge91\"><a xlink:href=\"http://www.wikidata.org/prop/direct/P22\" xlink:title=\"wdt:P22\" target=\"_other\">\n",
"<path fill=\"none\" stroke=\"#9fc9e5\" stroke-opacity=\"0.376471\" d=\"M1858.978,-417.1409C1886.8635,-410.7442 1926.501,-399.7019 1935.5737,-387 1941.2572,-379.0431 1937.5124,-371.0254 1930.3529,-364.0068\"/>\n",
"<polygon fill=\"#9fc9e5\" fill-opacity=\"0.376471\" stroke=\"#9fc9e5\" stroke-opacity=\"0.376471\" points=\"1922.278,-357.3605 1932.8588,-360.2411 1926.1385,-360.5381 1929.9991,-363.7156 1929.9991,-363.7156 1929.9991,-363.7156 1926.1385,-360.5381 1927.1393,-367.19 1922.278,-357.3605 1922.278,-357.3605\"/>\n",
"</a>\n",
"</g>\n",
"<g id=\"a_edge91&#45;label\"><a xlink:href=\"http://www.wikidata.org/prop/direct/P22\" xlink:title=\"wdt:P22\" target=\"_other\">\n",
"<text text-anchor=\"middle\" x=\"1953.5767\" y=\"-379.8\" font-family=\"Times,serif\" font-size=\"9.00\" fill=\"#204080\">wdt:P22</text>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- node34 -->\n",
"<g id=\"node35\" class=\"node\">\n",
"<title>node34</title>\n",
"<g id=\"a_node35\"><a xlink:href=\"http://www.wikidata.org/entity/Q229246\" xlink:title=\"Q229246\" target=\"_other\">\n",
"<text text-anchor=\"middle\" x=\"4039.5737\" y=\"-420\" font-family=\"DejaVu Sans,Tahoma,Geneva,sans-serif\" font-size=\"10.00\" fill=\"#0000ff\">Q229246</text>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- node35 -->\n",
"<g id=\"node36\" class=\"node\">\n",
"<title>node35</title>\n",
"<g id=\"a_node36\"><a xlink:href=\"http://www.wikidata.org/entity/Q183089\" xlink:title=\"Q183089\" target=\"_other\">\n",
"<text text-anchor=\"middle\" x=\"4051.5737\" y=\"-339\" font-family=\"DejaVu Sans,Tahoma,Geneva,sans-serif\" font-size=\"10.00\" fill=\"#0000ff\">Q183089</text>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- node34&#45;&gt;node35 -->\n",
"<g id=\"edge18\" class=\"edge\">\n",
"<title>node34&#45;&gt;node35</title>\n",
"<g id=\"a_edge18\"><a xlink:href=\"http://www.wikidata.org/prop/direct/P25\" xlink:title=\"wdt:P25\" target=\"_other\">\n",
"<path fill=\"none\" stroke=\"#9fc9e5\" stroke-opacity=\"0.376471\" d=\"M4034.8514,-404.8942C4033.3847,-396.6239 4032.6065,-386.7439 4034.5679,-378 4035.2061,-375.1546 4036.0958,-372.2693 4037.1368,-369.4347\"/>\n",
"<polygon fill=\"#9fc9e5\" fill-opacity=\"0.376471\" stroke=\"#9fc9e5\" stroke-opacity=\"0.376471\" points=\"4041.1131,-360.1231 4041.3243,-371.087 4039.1495,-364.7214 4037.1859,-369.3197 4037.1859,-369.3197 4037.1859,-369.3197 4039.1495,-364.7214 4033.0474,-367.5524 4041.1131,-360.1231 4041.1131,-360.1231\"/>\n",
"</a>\n",
"</g>\n",
"<g id=\"a_edge18&#45;label\"><a xlink:href=\"http://www.wikidata.org/prop/direct/P25\" xlink:title=\"wdt:P25\" target=\"_other\">\n",
"<text text-anchor=\"middle\" x=\"4049.5767\" y=\"-379.8\" font-family=\"Times,serif\" font-size=\"9.00\" fill=\"#204080\">wdt:P25</text>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- node103 -->\n",
"<g id=\"node104\" class=\"node\">\n",
"<title>node103</title>\n",
"<g id=\"a_node104\"><a xlink:href=\"http://www.wikidata.org/entity/Q1446\" xlink:title=\"Q1446\" target=\"_other\">\n",
"<text text-anchor=\"middle\" x=\"4168.5737\" y=\"-339\" font-family=\"DejaVu Sans,Tahoma,Geneva,sans-serif\" font-size=\"10.00\" fill=\"#0000ff\">Q1446</text>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- node34&#45;&gt;node103 -->\n",
"<g id=\"edge87\" class=\"edge\">\n",
"<title>node34&#45;&gt;node103</title>\n",
"<g id=\"a_edge87\"><a xlink:href=\"http://www.wikidata.org/prop/direct/P25\" xlink:title=\"wdt:P25\" target=\"_other\">\n",
"<path fill=\"none\" stroke=\"#9fc9e5\" stroke-opacity=\"0.376471\" d=\"M4054.46,-404.6489C4062.3934,-395.7378 4072.737,-385.3884 4083.5679,-378 4098.3695,-367.903 4116.4549,-359.7592 4132.1331,-353.7883\"/>\n",
"<polygon fill=\"#9fc9e5\" fill-opacity=\"0.376471\" stroke=\"#9fc9e5\" stroke-opacity=\"0.376471\" points=\"4141.533,-350.3533 4133.685,-358.0122 4136.8368,-352.0694 4132.1405,-353.7856 4132.1405,-353.7856 4132.1405,-353.7856 4136.8368,-352.0694 4130.5959,-349.559 4141.533,-350.3533 4141.533,-350.3533\"/>\n",
"</a>\n",
"</g>\n",
"<g id=\"a_edge87&#45;label\"><a xlink:href=\"http://www.wikidata.org/prop/direct/P25\" xlink:title=\"wdt:P25\" target=\"_other\">\n",
"<text text-anchor=\"middle\" x=\"4098.5767\" y=\"-379.8\" font-family=\"Times,serif\" font-size=\"9.00\" fill=\"#204080\">wdt:P25</text>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- node36 -->\n",
"<g id=\"node37\" class=\"node\">\n",
"<title>node36</title>\n",
"<g id=\"a_node37\"><a xlink:href=\"http://www.wikidata.org/entity/Q241474\" xlink:title=\"Q241474\" target=\"_other\">\n",
"<text text-anchor=\"middle\" x=\"4255.5737\" y=\"-420\" font-family=\"DejaVu Sans,Tahoma,Geneva,sans-serif\" font-size=\"10.00\" fill=\"#0000ff\">Q241474</text>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- node37 -->\n",
"<g id=\"node38\" class=\"node\">\n",
"<title>node37</title>\n",
"<g id=\"a_node38\"><a xlink:href=\"http://www.wikidata.org/entity/Q318865\" xlink:title=\"Q318865\" target=\"_other\">\n",
"<text text-anchor=\"middle\" x=\"4279.5737\" y=\"-339\" font-family=\"DejaVu Sans,Tahoma,Geneva,sans-serif\" font-size=\"10.00\" fill=\"#0000ff\">Q318865</text>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- node36&#45;&gt;node37 -->\n",
"<g id=\"edge19\" class=\"edge\">\n",
"<title>node36&#45;&gt;node37</title>\n",
"<g id=\"a_edge19\"><a xlink:href=\"http://www.wikidata.org/prop/direct/P25\" xlink:title=\"wdt:P25\" target=\"_other\">\n",
"<path fill=\"none\" stroke=\"#9fc9e5\" stroke-opacity=\"0.376471\" d=\"M4261.0197,-404.6198C4264.079,-394.2948 4267.958,-381.203 4271.3775,-369.6624\"/>\n",
"<polygon fill=\"#9fc9e5\" fill-opacity=\"0.376471\" stroke=\"#9fc9e5\" stroke-opacity=\"0.376471\" points=\"4274.232,-360.0284 4275.7056,-370.8948 4272.8115,-364.8224 4271.391,-369.6164 4271.391,-369.6164 4271.391,-369.6164 4272.8115,-364.8224 4267.0764,-368.3379 4274.232,-360.0284 4274.232,-360.0284\"/>\n",
"</a>\n",
"</g>\n",
"<g id=\"a_edge19&#45;label\"><a xlink:href=\"http://www.wikidata.org/prop/direct/P25\" xlink:title=\"wdt:P25\" target=\"_other\">\n",
"<text text-anchor=\"middle\" x=\"4283.5767\" y=\"-379.8\" font-family=\"Times,serif\" font-size=\"9.00\" fill=\"#204080\">wdt:P25</text>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- node38 -->\n",
"<g id=\"node39\" class=\"node\">\n",
"<title>node38</title>\n",
"<g id=\"a_node39\"><a xlink:href=\"http://www.wikidata.org/entity/Q131195\" xlink:title=\"Q131195\" target=\"_other\">\n",
"<text text-anchor=\"middle\" x=\"2787.5737\" y=\"-339\" font-family=\"DejaVu Sans,Tahoma,Geneva,sans-serif\" font-size=\"10.00\" fill=\"#0000ff\">Q131195</text>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- node38&#45;&gt;node19 -->\n",
"<g id=\"edge80\" class=\"edge\">\n",
"<title>node38&#45;&gt;node19</title>\n",
"<g id=\"a_edge80\"><a xlink:href=\"http://www.wikidata.org/prop/direct/P22\" xlink:title=\"wdt:P22\" target=\"_other\">\n",
"<path fill=\"none\" stroke=\"#9fc9e5\" stroke-opacity=\"0.376471\" d=\"M2785.0777,-323.6198C2783.6897,-313.3991 2781.9335,-300.4672 2780.3779,-289.0125\"/>\n",
"<polygon fill=\"#9fc9e5\" fill-opacity=\"0.376471\" stroke=\"#9fc9e5\" stroke-opacity=\"0.376471\" points=\"2779.022,-279.0284 2784.8269,-288.3318 2779.6949,-283.9829 2780.3678,-288.9374 2780.3678,-288.9374 2780.3678,-288.9374 2779.6949,-283.9829 2775.9087,-289.543 2779.022,-279.0284 2779.022,-279.0284\"/>\n",
"</a>\n",
"</g>\n",
"<g id=\"a_edge80&#45;label\"><a xlink:href=\"http://www.wikidata.org/prop/direct/P22\" xlink:title=\"wdt:P22\" target=\"_other\">\n",
"<text text-anchor=\"middle\" x=\"2797.5767\" y=\"-298.8\" font-family=\"Times,serif\" font-size=\"9.00\" fill=\"#204080\">wdt:P22</text>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- node38&#45;&gt;node24 -->\n",
"<g id=\"edge132\" class=\"edge\">\n",
"<title>node38&#45;&gt;node24</title>\n",
"<g id=\"a_edge132\"><a xlink:href=\"http://www.wikidata.org/prop/direct/P22\" xlink:title=\"wdt:P22\" target=\"_other\">\n",
"<path fill=\"none\" stroke=\"#9fc9e5\" stroke-opacity=\"0.376471\" d=\"M2816.0998,-338.7855C2840.0522,-334.7564 2873.901,-325.7869 2896.5737,-306 2901.9443,-301.313 2906.1311,-295.014 2909.3416,-288.6158\"/>\n",
"<polygon fill=\"#9fc9e5\" fill-opacity=\"0.376471\" stroke=\"#9fc9e5\" stroke-opacity=\"0.376471\" points=\"2913.3711,-279.3469 2913.5111,-290.3119 2911.3776,-283.9324 2909.3842,-288.5178 2909.3842,-288.5178 2909.3842,-288.5178 2911.3776,-283.9324 2905.2573,-286.7237 2913.3711,-279.3469 2913.3711,-279.3469\"/>\n",
"</a>\n",
"</g>\n",
"<g id=\"a_edge132&#45;label\"><a xlink:href=\"http://www.wikidata.org/prop/direct/P22\" xlink:title=\"wdt:P22\" target=\"_other\">\n",
"<text text-anchor=\"middle\" x=\"2919.5767\" y=\"-298.8\" font-family=\"Times,serif\" font-size=\"9.00\" fill=\"#204080\">wdt:P22</text>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- node38&#45;&gt;node39 -->\n",
"<g id=\"edge20\" class=\"edge\">\n",
"<title>node38&#45;&gt;node39</title>\n",
"<g id=\"a_edge20\"><a xlink:href=\"http://www.wikidata.org/prop/direct/P22\" xlink:title=\"wdt:P22\" target=\"_other\">\n",
"<path fill=\"none\" stroke=\"#9fc9e5\" stroke-opacity=\"0.376471\" d=\"M2767.6651,-323.7561C2761.5198,-318.0896 2754.7449,-311.807 2748.5679,-306 2741.8243,-299.6603 2734.5833,-292.769 2727.8541,-286.3285\"/>\n",
"<polygon fill=\"#9fc9e5\" fill-opacity=\"0.376471\" stroke=\"#9fc9e5\" stroke-opacity=\"0.376471\" points=\"2720.2502,-279.0352 2730.5821,-282.7097 2723.8586,-282.4962 2727.4671,-285.9573 2727.4671,-285.9573 2727.4671,-285.9573 2723.8586,-282.4962 2724.3521,-289.205 2720.2502,-279.0352 2720.2502,-279.0352\"/>\n",
"</a>\n",
"</g>\n",
"<g id=\"a_edge20&#45;label\"><a xlink:href=\"http://www.wikidata.org/prop/direct/P22\" xlink:title=\"wdt:P22\" target=\"_other\">\n",
"<text text-anchor=\"middle\" x=\"2763.5767\" y=\"-298.8\" font-family=\"Times,serif\" font-size=\"9.00\" fill=\"#204080\">wdt:P22</text>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- node53 -->\n",
"<g id=\"node54\" class=\"node\">\n",
"<title>node53</title>\n",
"<g id=\"a_node54\"><a xlink:href=\"http://www.wikidata.org/entity/Q8413\" xlink:title=\"Q8413\" target=\"_other\">\n",
"<text text-anchor=\"middle\" x=\"3267.5737\" y=\"-258\" font-family=\"DejaVu Sans,Tahoma,Geneva,sans-serif\" font-size=\"10.00\" fill=\"#0000ff\">Q8413</text>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- node38&#45;&gt;node53 -->\n",
"<g id=\"edge74\" class=\"edge\">\n",
"<title>node38&#45;&gt;node53</title>\n",
"<g id=\"a_edge74\"><a xlink:href=\"http://www.wikidata.org/prop/direct/P22\" xlink:title=\"wdt:P22\" target=\"_other\">\n",
"<path fill=\"none\" stroke=\"#9fc9e5\" stroke-opacity=\"0.376471\" d=\"M2816.1472,-338.0686C2881.6748,-328.9238 3047.7422,-305.0131 3185.5737,-279 3200.3256,-276.2159 3216.481,-272.7582 3230.5226,-269.6198\"/>\n",
"<polygon fill=\"#9fc9e5\" fill-opacity=\"0.376471\" stroke=\"#9fc9e5\" stroke-opacity=\"0.376471\" points=\"3240.3231,-267.4051 3231.5609,-273.9987 3235.446,-268.5072 3230.569,-269.6093 3230.569,-269.6093 3230.569,-269.6093 3235.446,-268.5072 3229.5771,-265.22 3240.3231,-267.4051 3240.3231,-267.4051\"/>\n",
"</a>\n",
"</g>\n",
"<g id=\"a_edge74&#45;label\"><a xlink:href=\"http://www.wikidata.org/prop/direct/P22\" xlink:title=\"wdt:P22\" target=\"_other\">\n",
"<text text-anchor=\"middle\" x=\"3092.5767\" y=\"-298.8\" font-family=\"Times,serif\" font-size=\"9.00\" fill=\"#204080\">wdt:P22</text>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- node38&#45;&gt;node75 -->\n",
"<g id=\"edge108\" class=\"edge\">\n",
"<title>node38&#45;&gt;node75</title>\n",
"<g id=\"a_edge108\"><a xlink:href=\"http://www.wikidata.org/prop/direct/P22\" xlink:title=\"wdt:P22\" target=\"_other\">\n",
"<path fill=\"none\" stroke=\"#9fc9e5\" stroke-opacity=\"0.376471\" d=\"M2816.1528,-337.9464C2835.3701,-333.5721 2859.3459,-324.5441 2871.5737,-306 2881.789,-290.5081 2850.9211,-279.4543 2850.5679,-279 2833.5722,-257.1433 2820.1636,-228.4519 2811.7016,-207.5864\"/>\n",
"<polygon fill=\"#9fc9e5\" fill-opacity=\"0.376471\" stroke=\"#9fc9e5\" stroke-opacity=\"0.376471\" points=\"2807.9509,-198.0363 2815.7951,-205.6992 2809.7787,-202.6903 2811.6065,-207.3442 2811.6065,-207.3442 2811.6065,-207.3442 2809.7787,-202.6903 2807.418,-208.9892 2807.9509,-198.0363 2807.9509,-198.0363\"/>\n",
"</a>\n",
"</g>\n",
"<g id=\"a_edge108&#45;label\"><a xlink:href=\"http://www.wikidata.org/prop/direct/P22\" xlink:title=\"wdt:P22\" target=\"_other\">\n",
"<text text-anchor=\"middle\" x=\"2865.5767\" y=\"-258.3\" font-family=\"Times,serif\" font-size=\"9.00\" fill=\"#204080\">wdt:P22</text>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- node38&#45;&gt;node87 -->\n",
"<g id=\"edge60\" class=\"edge\">\n",
"<title>node38&#45;&gt;node87</title>\n",
"<g id=\"a_edge60\"><a xlink:href=\"http://www.wikidata.org/prop/direct/P22\" xlink:title=\"wdt:P22\" target=\"_other\">\n",
"<path fill=\"none\" stroke=\"#9fc9e5\" stroke-opacity=\"0.376471\" d=\"M2759.0438,-338.3245C2695.9564,-330.1335 2549.3927,-310.73 2539.5679,-306 2529.8424,-301.3179 2520.7572,-293.9606 2513.1647,-286.5411\"/>\n",
"<polygon fill=\"#9fc9e5\" fill-opacity=\"0.376471\" stroke=\"#9fc9e5\" stroke-opacity=\"0.376471\" points=\"2506.1015,-279.1977 2516.277,-283.2854 2509.5676,-282.8013 2513.0338,-286.4049 2513.0338,-286.4049 2513.0338,-286.4049 2509.5676,-282.8013 2509.7905,-289.5245 2506.1015,-279.1977 2506.1015,-279.1977\"/>\n",
"</a>\n",
"</g>\n",
"<g id=\"a_edge60&#45;label\"><a xlink:href=\"http://www.wikidata.org/prop/direct/P22\" xlink:title=\"wdt:P22\" target=\"_other\">\n",
"<text text-anchor=\"middle\" x=\"2554.5767\" y=\"-298.8\" font-family=\"Times,serif\" font-size=\"9.00\" fill=\"#204080\">wdt:P22</text>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- node38&#45;&gt;node105 -->\n",
"<g id=\"edge115\" class=\"edge\">\n",
"<title>node38&#45;&gt;node105</title>\n",
"<g id=\"a_edge115\"><a xlink:href=\"http://www.wikidata.org/prop/direct/P22\" xlink:title=\"wdt:P22\" target=\"_other\">\n",
"<path fill=\"none\" stroke=\"#9fc9e5\" stroke-opacity=\"0.376471\" d=\"M2758.9939,-329.7623C2743.182,-322.9144 2723.2166,-314.1406 2705.5679,-306 2688.2773,-298.0246 2669.3346,-288.925 2653.0837,-281.0052\"/>\n",
"<polygon fill=\"#9fc9e5\" fill-opacity=\"0.376471\" stroke=\"#9fc9e5\" stroke-opacity=\"0.376471\" points=\"2643.8593,-276.4959 2654.8196,-276.845 2648.3513,-278.6919 2652.8433,-280.8878 2652.8433,-280.8878 2652.8433,-280.8878 2648.3513,-278.6919 2650.867,-284.9306 2643.8593,-276.4959 2643.8593,-276.4959\"/>\n",
"</a>\n",
"</g>\n",
"<g id=\"a_edge115&#45;label\"><a xlink:href=\"http://www.wikidata.org/prop/direct/P22\" xlink:title=\"wdt:P22\" target=\"_other\">\n",
"<text text-anchor=\"middle\" x=\"2720.5767\" y=\"-298.8\" font-family=\"Times,serif\" font-size=\"9.00\" fill=\"#204080\">wdt:P22</text>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- node39&#45;&gt;node75 -->\n",
"<g id=\"edge79\" class=\"edge\">\n",
"<title>node39&#45;&gt;node75</title>\n",
"<g id=\"a_edge79\"><a xlink:href=\"http://www.wikidata.org/prop/direct/P25\" xlink:title=\"wdt:P25\" target=\"_other\">\n",
"<path fill=\"none\" stroke=\"#9fc9e5\" stroke-opacity=\"0.376471\" d=\"M2724.2653,-242.6198C2738.171,-231.3562 2756.1418,-216.7998 2771.2569,-204.5566\"/>\n",
"<polygon fill=\"#9fc9e5\" fill-opacity=\"0.376471\" stroke=\"#9fc9e5\" stroke-opacity=\"0.376471\" points=\"2779.3165,-198.0284 2774.3782,-207.8194 2775.4311,-201.1755 2771.5458,-204.3226 2771.5458,-204.3226 2771.5458,-204.3226 2775.4311,-201.1755 2768.7134,-200.8259 2779.3165,-198.0284 2779.3165,-198.0284\"/>\n",
"</a>\n",
"</g>\n",
"<g id=\"a_edge79&#45;label\"><a xlink:href=\"http://www.wikidata.org/prop/direct/P25\" xlink:title=\"wdt:P25\" target=\"_other\">\n",
"<text text-anchor=\"middle\" x=\"2769.5767\" y=\"-217.8\" font-family=\"Times,serif\" font-size=\"9.00\" fill=\"#204080\">wdt:P25</text>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- node40 -->\n",
"<g id=\"node41\" class=\"node\">\n",
"<title>node40</title>\n",
"<g id=\"a_node41\"><a xlink:href=\"http://www.wikidata.org/entity/Q1442\" xlink:title=\"Q1442\" target=\"_other\">\n",
"<text text-anchor=\"middle\" x=\"4160.5737\" y=\"-420\" font-family=\"DejaVu Sans,Tahoma,Geneva,sans-serif\" font-size=\"10.00\" fill=\"#0000ff\">Q1442</text>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- node40&#45;&gt;node35 -->\n",
"<g id=\"edge21\" class=\"edge\">\n",
"<title>node40&#45;&gt;node35</title>\n",
"<g id=\"a_edge21\"><a xlink:href=\"http://www.wikidata.org/prop/direct/P22\" xlink:title=\"wdt:P22\" target=\"_other\">\n",
"<path fill=\"none\" stroke=\"#9fc9e5\" stroke-opacity=\"0.376471\" d=\"M4145.3832,-404.6287C4137.6223,-395.9212 4127.6956,-385.7545 4117.5737,-378 4108.9369,-371.3832 4098.9268,-365.2585 4089.3535,-360.007\"/>\n",
"<polygon fill=\"#9fc9e5\" fill-opacity=\"0.376471\" stroke=\"#9fc9e5\" stroke-opacity=\"0.376471\" points=\"4080.3679,-355.252 4091.3114,-355.9519 4084.7873,-357.5906 4089.2066,-359.9293 4089.2066,-359.9293 4089.2066,-359.9293 4084.7873,-357.5906 4087.1018,-363.9067 4080.3679,-355.252 4080.3679,-355.252\"/>\n",
"</a>\n",
"</g>\n",
"<g id=\"a_edge21&#45;label\"><a xlink:href=\"http://www.wikidata.org/prop/direct/P22\" xlink:title=\"wdt:P22\" target=\"_other\">\n",
"<text text-anchor=\"middle\" x=\"4143.5767\" y=\"-379.8\" font-family=\"Times,serif\" font-size=\"9.00\" fill=\"#204080\">wdt:P22</text>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- node40&#45;&gt;node103 -->\n",
"<g id=\"edge127\" class=\"edge\">\n",
"<title>node40&#45;&gt;node103</title>\n",
"<g id=\"a_edge127\"><a xlink:href=\"http://www.wikidata.org/prop/direct/P22\" xlink:title=\"wdt:P22\" target=\"_other\">\n",
"<path fill=\"none\" stroke=\"#9fc9e5\" stroke-opacity=\"0.376471\" d=\"M4166.6351,-404.8866C4168.2495,-399.2255 4169.7677,-392.913 4170.5737,-387 4171.3075,-381.6172 4171.4957,-375.8421 4171.3805,-370.2839\"/>\n",
"<polygon fill=\"#9fc9e5\" fill-opacity=\"0.376471\" stroke=\"#9fc9e5\" stroke-opacity=\"0.376471\" points=\"4170.8485,-360.0232 4175.8603,-369.7768 4171.1074,-365.0165 4171.3663,-370.0098 4171.3663,-370.0098 4171.3663,-370.0098 4171.1074,-365.0165 4166.8724,-370.2428 4170.8485,-360.0232 4170.8485,-360.0232\"/>\n",
"</a>\n",
"</g>\n",
"<g id=\"a_edge127&#45;label\"><a xlink:href=\"http://www.wikidata.org/prop/direct/P22\" xlink:title=\"wdt:P22\" target=\"_other\">\n",
"<text text-anchor=\"middle\" x=\"4186.5767\" y=\"-379.8\" font-family=\"Times,serif\" font-size=\"9.00\" fill=\"#204080\">wdt:P22</text>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- node43 -->\n",
"<g id=\"node44\" class=\"node\">\n",
"<title>node43</title>\n",
"<g id=\"a_node44\"><a xlink:href=\"http://www.wikidata.org/entity/Q236936\" xlink:title=\"Q236936\" target=\"_other\">\n",
"<text text-anchor=\"middle\" x=\"664.5737\" y=\"-339\" font-family=\"DejaVu Sans,Tahoma,Geneva,sans-serif\" font-size=\"10.00\" fill=\"#0000ff\">Q236936</text>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- node43&#45;&gt;node3 -->\n",
"<g id=\"edge81\" class=\"edge\">\n",
"<title>node43&#45;&gt;node3</title>\n",
"<g id=\"a_edge81\"><a xlink:href=\"http://www.wikidata.org/prop/direct/P25\" xlink:title=\"wdt:P25\" target=\"_other\">\n",
"<path fill=\"none\" stroke=\"#9fc9e5\" stroke-opacity=\"0.376471\" d=\"M693.3692,-337.0281C745.8631,-327.8988 851.9971,-309.1107 854.5737,-306 857.1253,-302.9195 856.9722,-300.2011 854.5737,-297 844.6417,-283.7444 804.6582,-273.7306 772.9379,-267.6714\"/>\n",
"<polygon fill=\"#9fc9e5\" fill-opacity=\"0.376471\" stroke=\"#9fc9e5\" stroke-opacity=\"0.376471\" points=\"762.978,-265.844 773.6259,-263.2226 767.8959,-266.7464 772.8138,-267.6487 772.8138,-267.6487 772.8138,-267.6487 767.8959,-266.7464 772.0017,-272.0749 762.978,-265.844 762.978,-265.844\"/>\n",
"</a>\n",
"</g>\n",
"<g id=\"a_edge81&#45;label\"><a xlink:href=\"http://www.wikidata.org/prop/direct/P25\" xlink:title=\"wdt:P25\" target=\"_other\">\n",
"<text text-anchor=\"middle\" x=\"871.5767\" y=\"-298.8\" font-family=\"Times,serif\" font-size=\"9.00\" fill=\"#204080\">wdt:P25</text>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- node43&#45;&gt;node44 -->\n",
"<g id=\"edge24\" class=\"edge\">\n",
"<title>node43&#45;&gt;node44</title>\n",
"<g id=\"a_edge24\"><a xlink:href=\"http://www.wikidata.org/prop/direct/P25\" xlink:title=\"wdt:P25\" target=\"_other\">\n",
"<path fill=\"none\" stroke=\"#9fc9e5\" stroke-opacity=\"0.376471\" d=\"M659.3126,-323.7195C655.8637,-314.6075 650.4959,-304.0567 642.5737,-297 637.6778,-292.6389 607.7671,-282.3221 581.5919,-273.8455\"/>\n",
"<polygon fill=\"#9fc9e5\" fill-opacity=\"0.376471\" stroke=\"#9fc9e5\" stroke-opacity=\"0.376471\" points=\"571.8028,-270.7032 582.6997,-269.475 576.5635,-272.2314 581.3243,-273.7597 581.3243,-273.7597 581.3243,-273.7597 576.5635,-272.2314 579.9488,-278.0443 571.8028,-270.7032 571.8028,-270.7032\"/>\n",
"</a>\n",
"</g>\n",
"<g id=\"a_edge24&#45;label\"><a xlink:href=\"http://www.wikidata.org/prop/direct/P25\" xlink:title=\"wdt:P25\" target=\"_other\">\n",
"<text text-anchor=\"middle\" x=\"665.5767\" y=\"-298.8\" font-family=\"Times,serif\" font-size=\"9.00\" fill=\"#204080\">wdt:P25</text>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- node43&#45;&gt;node79 -->\n",
"<g id=\"edge69\" class=\"edge\">\n",
"<title>node43&#45;&gt;node79</title>\n",
"<g id=\"a_edge69\"><a xlink:href=\"http://www.wikidata.org/prop/direct/P25\" xlink:title=\"wdt:P25\" target=\"_other\">\n",
"<path fill=\"none\" stroke=\"#9fc9e5\" stroke-opacity=\"0.376471\" d=\"M635.7934,-337.4229C610.8969,-333.551 573.9145,-328.0088 541.5737,-324 463.0993,-314.2727 441.8164,-322.8972 364.5679,-306 336.6569,-299.8948 306.5261,-288.8275 283.1923,-279.1967\"/>\n",
"<polygon fill=\"#9fc9e5\" fill-opacity=\"0.376471\" stroke=\"#9fc9e5\" stroke-opacity=\"0.376471\" points=\"273.9583,-275.3145 284.9208,-275.0419 278.5675,-277.2524 283.1767,-279.1902 283.1767,-279.1902 283.1767,-279.1902 278.5675,-277.2524 281.4326,-283.3385 273.9583,-275.3145 273.9583,-275.3145\"/>\n",
"</a>\n",
"</g>\n",
"<g id=\"a_edge69&#45;label\"><a xlink:href=\"http://www.wikidata.org/prop/direct/P25\" xlink:title=\"wdt:P25\" target=\"_other\">\n",
"<text text-anchor=\"middle\" x=\"379.5767\" y=\"-298.8\" font-family=\"Times,serif\" font-size=\"9.00\" fill=\"#204080\">wdt:P25</text>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- node43&#45;&gt;node81 -->\n",
"<g id=\"edge52\" class=\"edge\">\n",
"<title>node43&#45;&gt;node81</title>\n",
"<g id=\"a_edge52\"><a xlink:href=\"http://www.wikidata.org/prop/direct/P25\" xlink:title=\"wdt:P25\" target=\"_other\">\n",
"<path fill=\"none\" stroke=\"#9fc9e5\" stroke-opacity=\"0.376471\" d=\"M635.7582,-337.7024C597.6777,-331.7843 528.6283,-320.2253 470.5679,-306 433.1883,-296.8417 391.2803,-283.723 361.8052,-274.0113\"/>\n",
"<polygon fill=\"#9fc9e5\" fill-opacity=\"0.376471\" stroke=\"#9fc9e5\" stroke-opacity=\"0.376471\" points=\"352.3105,-270.8591 363.2191,-269.7393 357.0558,-272.4346 361.8011,-274.01 361.8011,-274.01 361.8011,-274.01 357.0558,-272.4346 360.3832,-278.2808 352.3105,-270.8591 352.3105,-270.8591\"/>\n",
"</a>\n",
"</g>\n",
"<g id=\"a_edge52&#45;label\"><a xlink:href=\"http://www.wikidata.org/prop/direct/P25\" xlink:title=\"wdt:P25\" target=\"_other\">\n",
"<text text-anchor=\"middle\" x=\"485.5767\" y=\"-298.8\" font-family=\"Times,serif\" font-size=\"9.00\" fill=\"#204080\">wdt:P25</text>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- node43&#45;&gt;node97 -->\n",
"<g id=\"edge120\" class=\"edge\">\n",
"<title>node43&#45;&gt;node97</title>\n",
"<g id=\"a_edge120\"><a xlink:href=\"http://www.wikidata.org/prop/direct/P25\" xlink:title=\"wdt:P25\" target=\"_other\">\n",
"<path fill=\"none\" stroke=\"#9fc9e5\" stroke-opacity=\"0.376471\" d=\"M693.3514,-337.6506C723.6935,-331.7923 765.0037,-319.4181 748.5737,-297 732.8695,-275.5721 716.8651,-287.1317 691.5737,-279 686.2533,-277.2894 680.6483,-275.4723 675.1336,-273.6758\"/>\n",
"<polygon fill=\"#9fc9e5\" fill-opacity=\"0.376471\" stroke=\"#9fc9e5\" stroke-opacity=\"0.376471\" points=\"665.3855,-270.4918 676.2885,-269.3191 670.1384,-272.0443 674.8912,-273.5967 674.8912,-273.5967 674.8912,-273.5967 670.1384,-272.0443 673.494,-277.8743 665.3855,-270.4918 665.3855,-270.4918\"/>\n",
"</a>\n",
"</g>\n",
"<g id=\"a_edge120&#45;label\"><a xlink:href=\"http://www.wikidata.org/prop/direct/P25\" xlink:title=\"wdt:P25\" target=\"_other\">\n",
"<text text-anchor=\"middle\" x=\"767.5767\" y=\"-298.8\" font-family=\"Times,serif\" font-size=\"9.00\" fill=\"#204080\">wdt:P25</text>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- node43&#45;&gt;node106 -->\n",
"<g id=\"edge90\" class=\"edge\">\n",
"<title>node43&#45;&gt;node106</title>\n",
"<g id=\"a_edge90\"><a xlink:href=\"http://www.wikidata.org/prop/direct/P25\" xlink:title=\"wdt:P25\" target=\"_other\">\n",
"<path fill=\"none\" stroke=\"#9fc9e5\" stroke-opacity=\"0.376471\" d=\"M635.9969,-333.6217C613.8045,-326.8619 582.397,-316.7388 555.5679,-306 546.8953,-302.5286 545.2266,-300.5204 536.5737,-297 514.1775,-287.8881 488.5125,-279.0604 468.1627,-272.427\"/>\n",
"<polygon fill=\"#9fc9e5\" fill-opacity=\"0.376471\" stroke=\"#9fc9e5\" stroke-opacity=\"0.376471\" points=\"458.6374,-269.3553 469.536,-268.1417 463.3961,-270.8899 468.1548,-272.4245 468.1548,-272.4245 468.1548,-272.4245 463.3961,-270.8899 466.7736,-276.7073 458.6374,-269.3553 458.6374,-269.3553\"/>\n",
"</a>\n",
"</g>\n",
"<g id=\"a_edge90&#45;label\"><a xlink:href=\"http://www.wikidata.org/prop/direct/P25\" xlink:title=\"wdt:P25\" target=\"_other\">\n",
"<text text-anchor=\"middle\" x=\"570.5767\" y=\"-298.8\" font-family=\"Times,serif\" font-size=\"9.00\" fill=\"#204080\">wdt:P25</text>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- node43&#45;&gt;node115 -->\n",
"<g id=\"edge101\" class=\"edge\">\n",
"<title>node43&#45;&gt;node115</title>\n",
"<g id=\"a_edge101\"><a xlink:href=\"http://www.wikidata.org/prop/direct/P25\" xlink:title=\"wdt:P25\" target=\"_other\">\n",
"<path fill=\"none\" stroke=\"#9fc9e5\" stroke-opacity=\"0.376471\" d=\"M693.3964,-336.7429C714.0288,-333.0335 742.4808,-328.0279 767.5737,-324 794.849,-319.6218 872.5098,-326.8999 890.5737,-306 895.0447,-300.8271 894.8149,-294.4491 892.4018,-288.1381\"/>\n",
"<polygon fill=\"#9fc9e5\" fill-opacity=\"0.376471\" stroke=\"#9fc9e5\" stroke-opacity=\"0.376471\" points=\"887.5974,-279.0879 896.261,-285.8105 889.9419,-283.5042 892.2863,-287.9205 892.2863,-287.9205 892.2863,-287.9205 889.9419,-283.5042 888.3117,-290.0305 887.5974,-279.0879 887.5974,-279.0879\"/>\n",
"</a>\n",
"</g>\n",
"<g id=\"a_edge101&#45;label\"><a xlink:href=\"http://www.wikidata.org/prop/direct/P25\" xlink:title=\"wdt:P25\" target=\"_other\">\n",
"<text text-anchor=\"middle\" x=\"909.5767\" y=\"-298.8\" font-family=\"Times,serif\" font-size=\"9.00\" fill=\"#204080\">wdt:P25</text>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- node45 -->\n",
"<g id=\"node46\" class=\"node\">\n",
"<title>node45</title>\n",
"<g id=\"a_node46\"><a xlink:href=\"http://www.wikidata.org/entity/Q174323\" xlink:title=\"Q174323\" target=\"_other\">\n",
"<text text-anchor=\"middle\" x=\"1230.5737\" y=\"-96\" font-family=\"DejaVu Sans,Tahoma,Geneva,sans-serif\" font-size=\"10.00\" fill=\"#0000ff\">Q174323</text>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- node46 -->\n",
"<g id=\"node47\" class=\"node\">\n",
"<title>node46</title>\n",
"<g id=\"a_node47\"><a xlink:href=\"http://www.wikidata.org/entity/Q260033\" xlink:title=\"Q260033\" target=\"_other\">\n",
"<text text-anchor=\"middle\" x=\"1181.5737\" y=\"-15\" font-family=\"DejaVu Sans,Tahoma,Geneva,sans-serif\" font-size=\"10.00\" fill=\"#0000ff\">Q260033</text>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- node45&#45;&gt;node46 -->\n",
"<g id=\"edge25\" class=\"edge\">\n",
"<title>node45&#45;&gt;node46</title>\n",
"<g id=\"a_edge25\"><a xlink:href=\"http://www.wikidata.org/prop/direct/P25\" xlink:title=\"wdt:P25\" target=\"_other\">\n",
"<path fill=\"none\" stroke=\"#9fc9e5\" stroke-opacity=\"0.376471\" d=\"M1219.4549,-80.6198C1213.0196,-69.982 1204.8076,-56.407 1197.6757,-44.6176\"/>\n",
"<polygon fill=\"#9fc9e5\" fill-opacity=\"0.376471\" stroke=\"#9fc9e5\" stroke-opacity=\"0.376471\" points=\"1192.4798,-36.0284 1201.5061,-42.2554 1195.0678,-40.3065 1197.6558,-44.5846 1197.6558,-44.5846 1197.6558,-44.5846 1195.0678,-40.3065 1193.8055,-46.9139 1192.4798,-36.0284 1192.4798,-36.0284\"/>\n",
"</a>\n",
"</g>\n",
"<g id=\"a_edge25&#45;label\"><a xlink:href=\"http://www.wikidata.org/prop/direct/P25\" xlink:title=\"wdt:P25\" target=\"_other\">\n",
"<text text-anchor=\"middle\" x=\"1222.5767\" y=\"-55.8\" font-family=\"Times,serif\" font-size=\"9.00\" fill=\"#204080\">wdt:P25</text>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- node47 -->\n",
"<g id=\"node48\" class=\"node\">\n",
"<title>node47</title>\n",
"<g id=\"a_node48\"><a xlink:href=\"http://www.wikidata.org/entity/Q184549\" xlink:title=\"Q184549\" target=\"_other\">\n",
"<text text-anchor=\"middle\" x=\"2993.5737\" y=\"-258\" font-family=\"DejaVu Sans,Tahoma,Geneva,sans-serif\" font-size=\"10.00\" fill=\"#0000ff\">Q184549</text>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- node47&#45;&gt;node25 -->\n",
"<g id=\"edge26\" class=\"edge\">\n",
"<title>node47&#45;&gt;node25</title>\n",
"<g id=\"a_edge26\"><a xlink:href=\"http://www.wikidata.org/prop/direct/P22\" xlink:title=\"wdt:P22\" target=\"_other\">\n",
"<path fill=\"none\" stroke=\"#9fc9e5\" stroke-opacity=\"0.376471\" d=\"M2969.3245,-242.6506C2962.9079,-237.2869 2956.2049,-231.1923 2950.5679,-225 2945.4751,-219.4056 2940.5475,-212.9296 2936.1764,-206.6643\"/>\n",
"<polygon fill=\"#9fc9e5\" fill-opacity=\"0.376471\" stroke=\"#9fc9e5\" stroke-opacity=\"0.376471\" points=\"2930.5974,-198.3538 2939.9073,-204.1483 2933.3843,-202.5052 2936.1711,-206.6565 2936.1711,-206.6565 2936.1711,-206.6565 2933.3843,-202.5052 2932.4349,-209.1647 2930.5974,-198.3538 2930.5974,-198.3538\"/>\n",
"</a>\n",
"</g>\n",
"<g id=\"a_edge26&#45;label\"><a xlink:href=\"http://www.wikidata.org/prop/direct/P22\" xlink:title=\"wdt:P22\" target=\"_other\">\n",
"<text text-anchor=\"middle\" x=\"2965.5767\" y=\"-217.8\" font-family=\"Times,serif\" font-size=\"9.00\" fill=\"#204080\">wdt:P22</text>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- node48 -->\n",
"<g id=\"node49\" class=\"node\">\n",
"<title>node48</title>\n",
"<g id=\"a_node49\"><a xlink:href=\"http://www.wikidata.org/entity/Q1413\" xlink:title=\"Q1413\" target=\"_other\">\n",
"<text text-anchor=\"middle\" x=\"4401.5737\" y=\"-420\" font-family=\"DejaVu Sans,Tahoma,Geneva,sans-serif\" font-size=\"10.00\" fill=\"#0000ff\">Q1413</text>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- node49 -->\n",
"<g id=\"node50\" class=\"node\">\n",
"<title>node49</title>\n",
"<g id=\"a_node50\"><a xlink:href=\"http://www.wikidata.org/entity/Q1275952\" xlink:title=\"Q1275952\" target=\"_other\">\n",
"<text text-anchor=\"middle\" x=\"4421.5737\" y=\"-339\" font-family=\"DejaVu Sans,Tahoma,Geneva,sans-serif\" font-size=\"10.00\" fill=\"#0000ff\">Q1275952</text>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- node48&#45;&gt;node49 -->\n",
"<g id=\"edge27\" class=\"edge\">\n",
"<title>node48&#45;&gt;node49</title>\n",
"<g id=\"a_edge27\"><a xlink:href=\"http://www.wikidata.org/prop/direct/P22\" xlink:title=\"wdt:P22\" target=\"_other\">\n",
"<path fill=\"none\" stroke=\"#9fc9e5\" stroke-opacity=\"0.376471\" d=\"M4406.112,-404.6198C4408.6357,-394.3991 4411.8287,-381.4672 4414.6571,-370.0125\"/>\n",
"<polygon fill=\"#9fc9e5\" fill-opacity=\"0.376471\" stroke=\"#9fc9e5\" stroke-opacity=\"0.376471\" points=\"4417.1223,-360.0284 4419.0939,-370.8156 4415.9237,-364.8826 4414.7251,-369.7368 4414.7251,-369.7368 4414.7251,-369.7368 4415.9237,-364.8826 4410.3563,-368.6581 4417.1223,-360.0284 4417.1223,-360.0284\"/>\n",
"</a>\n",
"</g>\n",
"<g id=\"a_edge27&#45;label\"><a xlink:href=\"http://www.wikidata.org/prop/direct/P22\" xlink:title=\"wdt:P22\" target=\"_other\">\n",
"<text text-anchor=\"middle\" x=\"4427.5767\" y=\"-379.8\" font-family=\"Times,serif\" font-size=\"9.00\" fill=\"#204080\">wdt:P22</text>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- node50 -->\n",
"<g id=\"node51\" class=\"node\">\n",
"<title>node50</title>\n",
"<g id=\"a_node51\"><a xlink:href=\"http://www.wikidata.org/entity/Q230716\" xlink:title=\"Q230716\" target=\"_other\">\n",
"<text text-anchor=\"middle\" x=\"4475.5737\" y=\"-420\" font-family=\"DejaVu Sans,Tahoma,Geneva,sans-serif\" font-size=\"10.00\" fill=\"#0000ff\">Q230716</text>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- node50&#45;&gt;node49 -->\n",
"<g id=\"edge28\" class=\"edge\">\n",
"<title>node50&#45;&gt;node49</title>\n",
"<g id=\"a_edge28\"><a xlink:href=\"http://www.wikidata.org/prop/direct/P25\" xlink:title=\"wdt:P25\" target=\"_other\">\n",
"<path fill=\"none\" stroke=\"#9fc9e5\" stroke-opacity=\"0.376471\" d=\"M4464.1433,-404.9514C4458.8615,-396.6926 4452.4662,-386.8058 4446.5737,-378 4444.5055,-374.9091 4442.3157,-371.6863 4440.1262,-368.4945\"/>\n",
"<polygon fill=\"#9fc9e5\" fill-opacity=\"0.376471\" stroke=\"#9fc9e5\" stroke-opacity=\"0.376471\" points=\"4434.4148,-360.2303 4443.8022,-365.8985 4437.2575,-364.3436 4440.1002,-368.4569 4440.1002,-368.4569 4440.1002,-368.4569 4437.2575,-364.3436 4436.3983,-371.0153 4434.4148,-360.2303 4434.4148,-360.2303\"/>\n",
"</a>\n",
"</g>\n",
"<g id=\"a_edge28&#45;label\"><a xlink:href=\"http://www.wikidata.org/prop/direct/P25\" xlink:title=\"wdt:P25\" target=\"_other\">\n",
"<text text-anchor=\"middle\" x=\"4467.5767\" y=\"-379.8\" font-family=\"Times,serif\" font-size=\"9.00\" fill=\"#204080\">wdt:P25</text>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- node52 -->\n",
"<g id=\"node53\" class=\"node\">\n",
"<title>node52</title>\n",
"<g id=\"a_node53\"><a xlink:href=\"http://www.wikidata.org/entity/Q233444\" xlink:title=\"Q233444\" target=\"_other\">\n",
"<text text-anchor=\"middle\" x=\"224.5737\" y=\"-420\" font-family=\"DejaVu Sans,Tahoma,Geneva,sans-serif\" font-size=\"10.00\" fill=\"#0000ff\">Q233444</text>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- node52&#45;&gt;node31 -->\n",
"<g id=\"edge31\" class=\"edge\">\n",
"<title>node52&#45;&gt;node31</title>\n",
"<g id=\"a_edge31\"><a xlink:href=\"http://www.wikidata.org/prop/direct/P25\" xlink:title=\"wdt:P25\" target=\"_other\">\n",
"<path fill=\"none\" stroke=\"#9fc9e5\" stroke-opacity=\"0.376471\" d=\"M216.1779,-404.6198C211.4139,-394.1906 205.3603,-380.9383 200.0501,-369.3131\"/>\n",
"<polygon fill=\"#9fc9e5\" fill-opacity=\"0.376471\" stroke=\"#9fc9e5\" stroke-opacity=\"0.376471\" points=\"195.8089,-360.0284 204.0571,-367.2546 197.8864,-364.5764 199.9639,-369.1244 199.9639,-369.1244 199.9639,-369.1244 197.8864,-364.5764 195.8707,-370.9941 195.8089,-360.0284 195.8089,-360.0284\"/>\n",
"</a>\n",
"</g>\n",
"<g id=\"a_edge31&#45;label\"><a xlink:href=\"http://www.wikidata.org/prop/direct/P25\" xlink:title=\"wdt:P25\" target=\"_other\">\n",
"<text text-anchor=\"middle\" x=\"222.5767\" y=\"-379.8\" font-family=\"Times,serif\" font-size=\"9.00\" fill=\"#204080\">wdt:P25</text>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- node53&#45;&gt;node16 -->\n",
"<g id=\"edge129\" class=\"edge\">\n",
"<title>node53&#45;&gt;node16</title>\n",
"<g id=\"a_edge129\"><a xlink:href=\"http://www.wikidata.org/prop/direct/P22\" xlink:title=\"wdt:P22\" target=\"_other\">\n",
"<path fill=\"none\" stroke=\"#9fc9e5\" stroke-opacity=\"0.376471\" d=\"M3260.0127,-242.9018C3256.1633,-234.4514 3251.1257,-224.4223 3245.5737,-216 3243.3891,-212.686 3240.9303,-209.3457 3238.3777,-206.1062\"/>\n",
"<polygon fill=\"#9fc9e5\" fill-opacity=\"0.376471\" stroke=\"#9fc9e5\" stroke-opacity=\"0.376471\" points=\"3231.9417,-198.3334 3241.7854,-203.1658 3235.1306,-202.1846 3238.3194,-206.0358 3238.3194,-206.0358 3238.3194,-206.0358 3235.1306,-202.1846 3234.8533,-208.9057 3231.9417,-198.3334 3231.9417,-198.3334\"/>\n",
"</a>\n",
"</g>\n",
"<g id=\"a_edge129&#45;label\"><a xlink:href=\"http://www.wikidata.org/prop/direct/P22\" xlink:title=\"wdt:P22\" target=\"_other\">\n",
"<text text-anchor=\"middle\" x=\"3265.5767\" y=\"-217.8\" font-family=\"Times,serif\" font-size=\"9.00\" fill=\"#204080\">wdt:P22</text>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- node54 -->\n",
"<g id=\"node55\" class=\"node\">\n",
"<title>node54</title>\n",
"<g id=\"a_node55\"><a xlink:href=\"http://www.wikidata.org/entity/Q464452\" xlink:title=\"Q464452\" target=\"_other\">\n",
"<text text-anchor=\"middle\" x=\"3018.5737\" y=\"-177\" font-family=\"DejaVu Sans,Tahoma,Geneva,sans-serif\" font-size=\"10.00\" fill=\"#0000ff\">Q464452</text>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- node53&#45;&gt;node54 -->\n",
"<g id=\"edge32\" class=\"edge\">\n",
"<title>node53&#45;&gt;node54</title>\n",
"<g id=\"a_edge32\"><a xlink:href=\"http://www.wikidata.org/prop/direct/P22\" xlink:title=\"wdt:P22\" target=\"_other\">\n",
"<path fill=\"none\" stroke=\"#9fc9e5\" stroke-opacity=\"0.376471\" d=\"M3240.3182,-254.6208C3224.3996,-250.9944 3203.8996,-246.4944 3185.5737,-243 3136.478,-233.6383 3120.2276,-245.328 3074.5679,-225 3063.4647,-220.0568 3052.7006,-212.356 3043.6264,-204.7134\"/>\n",
"<polygon fill=\"#9fc9e5\" fill-opacity=\"0.376471\" stroke=\"#9fc9e5\" stroke-opacity=\"0.376471\" points=\"3036.1211,-198.0829 3046.5949,-201.3313 3039.8683,-201.3933 3043.6155,-204.7037 3043.6155,-204.7037 3043.6155,-204.7037 3039.8683,-201.3933 3040.6362,-208.0762 3036.1211,-198.0829 3036.1211,-198.0829\"/>\n",
"</a>\n",
"</g>\n",
"<g id=\"a_edge32&#45;label\"><a xlink:href=\"http://www.wikidata.org/prop/direct/P22\" xlink:title=\"wdt:P22\" target=\"_other\">\n",
"<text text-anchor=\"middle\" x=\"3089.5767\" y=\"-217.8\" font-family=\"Times,serif\" font-size=\"9.00\" fill=\"#204080\">wdt:P22</text>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- node66 -->\n",
"<g id=\"node67\" class=\"node\">\n",
"<title>node66</title>\n",
"<g id=\"a_node67\"><a xlink:href=\"http://www.wikidata.org/entity/Q46734\" xlink:title=\"Q46734\" target=\"_other\">\n",
"<text text-anchor=\"middle\" x=\"3125.5737\" y=\"-177\" font-family=\"DejaVu Sans,Tahoma,Geneva,sans-serif\" font-size=\"10.00\" fill=\"#0000ff\">Q46734</text>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- node53&#45;&gt;node66 -->\n",
"<g id=\"edge86\" class=\"edge\">\n",
"<title>node53&#45;&gt;node66</title>\n",
"<g id=\"a_edge86\"><a xlink:href=\"http://www.wikidata.org/prop/direct/P22\" xlink:title=\"wdt:P22\" target=\"_other\">\n",
"<path fill=\"none\" stroke=\"#9fc9e5\" stroke-opacity=\"0.376471\" d=\"M3240.3524,-256.8222C3216.906,-252.1636 3183.0717,-242.8119 3158.5679,-225 3151.8461,-220.1139 3145.9244,-213.4497 3141.0214,-206.7476\"/>\n",
"<polygon fill=\"#9fc9e5\" fill-opacity=\"0.376471\" stroke=\"#9fc9e5\" stroke-opacity=\"0.376471\" points=\"3135.3721,-198.369 3144.6937,-204.1446 3138.1673,-202.5147 3140.9626,-206.6603 3140.9626,-206.6603 3140.9626,-206.6603 3138.1673,-202.5147 3137.2315,-209.1761 3135.3721,-198.369 3135.3721,-198.369\"/>\n",
"</a>\n",
"</g>\n",
"<g id=\"a_edge86&#45;label\"><a xlink:href=\"http://www.wikidata.org/prop/direct/P22\" xlink:title=\"wdt:P22\" target=\"_other\">\n",
"<text text-anchor=\"middle\" x=\"3173.5767\" y=\"-217.8\" font-family=\"Times,serif\" font-size=\"9.00\" fill=\"#204080\">wdt:P22</text>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- node89 -->\n",
"<g id=\"node90\" class=\"node\">\n",
"<title>node89</title>\n",
"<g id=\"a_node90\"><a xlink:href=\"http://www.wikidata.org/entity/Q311646\" xlink:title=\"Q311646\" target=\"_other\">\n",
"<text text-anchor=\"middle\" x=\"3558.5737\" y=\"-177\" font-family=\"DejaVu Sans,Tahoma,Geneva,sans-serif\" font-size=\"10.00\" fill=\"#0000ff\">Q311646</text>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- node53&#45;&gt;node89 -->\n",
"<g id=\"edge62\" class=\"edge\">\n",
"<title>node53&#45;&gt;node89</title>\n",
"<g id=\"a_edge62\"><a xlink:href=\"http://www.wikidata.org/prop/direct/P22\" xlink:title=\"wdt:P22\" target=\"_other\">\n",
"<path fill=\"none\" stroke=\"#9fc9e5\" stroke-opacity=\"0.376471\" d=\"M3294.8855,-258.2786C3347.2121,-252.805 3459.5979,-239.7219 3495.5737,-225 3507.9417,-219.9388 3520.2052,-212.0216 3530.58,-204.23\"/>\n",
"<polygon fill=\"#9fc9e5\" fill-opacity=\"0.376471\" stroke=\"#9fc9e5\" stroke-opacity=\"0.376471\" points=\"3538.4614,-198.0652 3533.3573,-207.7708 3534.5231,-201.1457 3530.5848,-204.2263 3530.5848,-204.2263 3530.5848,-204.2263 3534.5231,-201.1457 3527.8123,-200.6818 3538.4614,-198.0652 3538.4614,-198.0652\"/>\n",
"</a>\n",
"</g>\n",
"<g id=\"a_edge62&#45;label\"><a xlink:href=\"http://www.wikidata.org/prop/direct/P22\" xlink:title=\"wdt:P22\" target=\"_other\">\n",
"<text text-anchor=\"middle\" x=\"3527.5767\" y=\"-217.8\" font-family=\"Times,serif\" font-size=\"9.00\" fill=\"#204080\">wdt:P22</text>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- node91 -->\n",
"<g id=\"node92\" class=\"node\">\n",
"<title>node91</title>\n",
"<g id=\"a_node92\"><a xlink:href=\"http://www.wikidata.org/entity/Q1001933\" xlink:title=\"Q1001933\" target=\"_other\">\n",
"<text text-anchor=\"middle\" x=\"3334.5737\" y=\"-177\" font-family=\"DejaVu Sans,Tahoma,Geneva,sans-serif\" font-size=\"10.00\" fill=\"#0000ff\">Q1001933</text>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- node53&#45;&gt;node91 -->\n",
"<g id=\"edge136\" class=\"edge\">\n",
"<title>node53&#45;&gt;node91</title>\n",
"<g id=\"a_edge136\"><a xlink:href=\"http://www.wikidata.org/prop/direct/P22\" xlink:title=\"wdt:P22\" target=\"_other\">\n",
"<path fill=\"none\" stroke=\"#9fc9e5\" stroke-opacity=\"0.376471\" d=\"M3294.9241,-257.2212C3314.3372,-252.9547 3339.0838,-243.9414 3351.5737,-225 3355.0735,-219.6925 3354.9886,-213.5624 3353.1415,-207.5682\"/>\n",
"<polygon fill=\"#9fc9e5\" fill-opacity=\"0.376471\" stroke=\"#9fc9e5\" stroke-opacity=\"0.376471\" points=\"3349.0504,-198.3984 3357.2344,-205.6972 3351.0876,-202.9646 3353.1249,-207.5307 3353.1249,-207.5307 3353.1249,-207.5307 3351.0876,-202.9646 3349.0153,-209.3643 3349.0504,-198.3984 3349.0504,-198.3984\"/>\n",
"</a>\n",
"</g>\n",
"<g id=\"a_edge136&#45;label\"><a xlink:href=\"http://www.wikidata.org/prop/direct/P22\" xlink:title=\"wdt:P22\" target=\"_other\">\n",
"<text text-anchor=\"middle\" x=\"3369.5767\" y=\"-217.8\" font-family=\"Times,serif\" font-size=\"9.00\" fill=\"#204080\">wdt:P22</text>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- node111 -->\n",
"<g id=\"node112\" class=\"node\">\n",
"<title>node111</title>\n",
"<g id=\"a_node112\"><a xlink:href=\"http://www.wikidata.org/entity/Q185538\" xlink:title=\"Q185538\" target=\"_other\">\n",
"<text text-anchor=\"middle\" x=\"3441.5737\" y=\"-177\" font-family=\"DejaVu Sans,Tahoma,Geneva,sans-serif\" font-size=\"10.00\" fill=\"#0000ff\">Q185538</text>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- node53&#45;&gt;node111 -->\n",
"<g id=\"edge155\" class=\"edge\">\n",
"<title>node53&#45;&gt;node111</title>\n",
"<g id=\"a_edge155\"><a xlink:href=\"http://www.wikidata.org/prop/direct/P22\" xlink:title=\"wdt:P22\" target=\"_other\">\n",
"<path fill=\"none\" stroke=\"#9fc9e5\" stroke-opacity=\"0.376471\" d=\"M3294.8914,-259.9531C3342.4231,-257.4953 3437.2283,-249.5624 3457.5737,-225 3461.739,-219.9714 3461.8276,-213.7783 3459.9535,-207.613\"/>\n",
"<polygon fill=\"#9fc9e5\" fill-opacity=\"0.376471\" stroke=\"#9fc9e5\" stroke-opacity=\"0.376471\" points=\"3455.6967,-198.1188 3463.8941,-205.4026 3457.7423,-202.6812 3459.788,-207.2436 3459.788,-207.2436 3459.788,-207.2436 3457.7423,-202.6812 3455.6818,-209.0847 3455.6967,-198.1188 3455.6967,-198.1188\"/>\n",
"</a>\n",
"</g>\n",
"<g id=\"a_edge155&#45;label\"><a xlink:href=\"http://www.wikidata.org/prop/direct/P22\" xlink:title=\"wdt:P22\" target=\"_other\">\n",
"<text text-anchor=\"middle\" x=\"3476.5767\" y=\"-217.8\" font-family=\"Times,serif\" font-size=\"9.00\" fill=\"#204080\">wdt:P22</text>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- node55&#45;&gt;node45 -->\n",
"<g id=\"edge43\" class=\"edge\">\n",
"<title>node55&#45;&gt;node45</title>\n",
"<g id=\"a_edge43\"><a xlink:href=\"http://www.wikidata.org/prop/direct/P25\" xlink:title=\"wdt:P25\" target=\"_other\">\n",
"<path fill=\"none\" stroke=\"#9fc9e5\" stroke-opacity=\"0.376471\" d=\"M1230.5737,-161.6198C1230.5737,-151.5034 1230.5737,-138.7309 1230.5737,-127.3637\"/>\n",
"<polygon fill=\"#9fc9e5\" fill-opacity=\"0.376471\" stroke=\"#9fc9e5\" stroke-opacity=\"0.376471\" points=\"1230.5737,-117.0284 1235.0738,-127.0284 1230.5738,-122.0284 1230.5738,-127.0284 1230.5738,-127.0284 1230.5738,-127.0284 1230.5738,-122.0284 1226.0738,-127.0284 1230.5737,-117.0284 1230.5737,-117.0284\"/>\n",
"</a>\n",
"</g>\n",
"<g id=\"a_edge43&#45;label\"><a xlink:href=\"http://www.wikidata.org/prop/direct/P25\" xlink:title=\"wdt:P25\" target=\"_other\">\n",
"<text text-anchor=\"middle\" x=\"1245.5767\" y=\"-136.8\" font-family=\"Times,serif\" font-size=\"9.00\" fill=\"#204080\">wdt:P25</text>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- node59 -->\n",
"<g id=\"node60\" class=\"node\">\n",
"<title>node59</title>\n",
"<g id=\"a_node60\"><a xlink:href=\"http://www.wikidata.org/entity/Q462395\" xlink:title=\"Q462395\" target=\"_other\">\n",
"<text text-anchor=\"middle\" x=\"1076.5737\" y=\"-96\" font-family=\"DejaVu Sans,Tahoma,Geneva,sans-serif\" font-size=\"10.00\" fill=\"#0000ff\">Q462395</text>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- node55&#45;&gt;node59 -->\n",
"<g id=\"edge113\" class=\"edge\">\n",
"<title>node55&#45;&gt;node59</title>\n",
"<g id=\"a_edge113\"><a xlink:href=\"http://www.wikidata.org/prop/direct/P25\" xlink:title=\"wdt:P25\" target=\"_other\">\n",
"<path fill=\"none\" stroke=\"#9fc9e5\" stroke-opacity=\"0.376471\" d=\"M1203.0074,-161.7936C1189.5535,-153.2237 1172.9813,-143.1259 1157.5737,-135 1155.3705,-133.838 1134.6712,-124.6405 1114.7514,-115.834\"/>\n",
"<polygon fill=\"#9fc9e5\" fill-opacity=\"0.376471\" stroke=\"#9fc9e5\" stroke-opacity=\"0.376471\" points=\"1105.4224,-111.7128 1116.3881,-111.6375 1109.996,-113.7332 1114.5696,-115.7537 1114.5696,-115.7537 1114.5696,-115.7537 1109.996,-113.7332 1112.7512,-119.87 1105.4224,-111.7128 1105.4224,-111.7128\"/>\n",
"</a>\n",
"</g>\n",
"<g id=\"a_edge113&#45;label\"><a xlink:href=\"http://www.wikidata.org/prop/direct/P25\" xlink:title=\"wdt:P25\" target=\"_other\">\n",
"<text text-anchor=\"middle\" x=\"1187.5767\" y=\"-136.8\" font-family=\"Times,serif\" font-size=\"9.00\" fill=\"#204080\">wdt:P25</text>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- node56 -->\n",
"<g id=\"node57\" class=\"node\">\n",
"<title>node56</title>\n",
"<g id=\"a_node57\"><a xlink:href=\"http://www.wikidata.org/entity/Q1419\" xlink:title=\"Q1419\" target=\"_other\">\n",
"<text text-anchor=\"middle\" x=\"4589.5737\" y=\"-420\" font-family=\"DejaVu Sans,Tahoma,Geneva,sans-serif\" font-size=\"10.00\" fill=\"#0000ff\">Q1419</text>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- node57 -->\n",
"<g id=\"node58\" class=\"node\">\n",
"<title>node57</title>\n",
"<g id=\"a_node58\"><a xlink:href=\"http://www.wikidata.org/entity/Q1421\" xlink:title=\"Q1421\" target=\"_other\">\n",
"<text text-anchor=\"middle\" x=\"4815.5737\" y=\"-339\" font-family=\"DejaVu Sans,Tahoma,Geneva,sans-serif\" font-size=\"10.00\" fill=\"#0000ff\">Q1421</text>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- node56&#45;&gt;node57 -->\n",
"<g id=\"edge34\" class=\"edge\">\n",
"<title>node56&#45;&gt;node57</title>\n",
"<g id=\"a_edge34\"><a xlink:href=\"http://www.wikidata.org/prop/direct/P22\" xlink:title=\"wdt:P22\" target=\"_other\">\n",
"<path fill=\"none\" stroke=\"#9fc9e5\" stroke-opacity=\"0.376471\" d=\"M4616.6923,-412.2943C4641.4571,-402.7059 4679.185,-388.5681 4712.5679,-378 4739.3249,-369.5295 4749.0031,-370.6383 4778.8483,-359.8911\"/>\n",
"<polygon fill=\"#9fc9e5\" fill-opacity=\"0.376471\" stroke=\"#9fc9e5\" stroke-opacity=\"0.376471\" points=\"4788.3119,-356.3412 4780.5294,-364.0667 4783.6304,-358.0973 4778.9489,-359.8534 4778.9489,-359.8534 4778.9489,-359.8534 4783.6304,-358.0973 4777.3684,-355.6401 4788.3119,-356.3412 4788.3119,-356.3412\"/>\n",
"</a>\n",
"</g>\n",
"<g id=\"a_edge34&#45;label\"><a xlink:href=\"http://www.wikidata.org/prop/direct/P22\" xlink:title=\"wdt:P22\" target=\"_other\">\n",
"<text text-anchor=\"middle\" x=\"4727.5767\" y=\"-379.8\" font-family=\"Times,serif\" font-size=\"9.00\" fill=\"#204080\">wdt:P22</text>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- node70 -->\n",
"<g id=\"node71\" class=\"node\">\n",
"<title>node70</title>\n",
"<g id=\"a_node71\"><a xlink:href=\"http://www.wikidata.org/entity/Q1423\" xlink:title=\"Q1423\" target=\"_other\">\n",
"<text text-anchor=\"middle\" x=\"4743.5737\" y=\"-339\" font-family=\"DejaVu Sans,Tahoma,Geneva,sans-serif\" font-size=\"10.00\" fill=\"#0000ff\">Q1423</text>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- node56&#45;&gt;node70 -->\n",
"<g id=\"edge42\" class=\"edge\">\n",
"<title>node56&#45;&gt;node70</title>\n",
"<g id=\"a_edge42\"><a xlink:href=\"http://www.wikidata.org/prop/direct/P22\" xlink:title=\"wdt:P22\" target=\"_other\">\n",
"<path fill=\"none\" stroke=\"#9fc9e5\" stroke-opacity=\"0.376471\" d=\"M4584.9379,-404.8098C4583.7602,-395.7226 4584.2807,-385.1666 4590.5679,-378 4606.3581,-360.0009 4669.565,-366.4643 4706.3698,-359.244\"/>\n",
"<polygon fill=\"#9fc9e5\" fill-opacity=\"0.376471\" stroke=\"#9fc9e5\" stroke-opacity=\"0.376471\" points=\"4716.4262,-356.6691 4707.855,-363.509 4711.5825,-357.9093 4706.7387,-359.1496 4706.7387,-359.1496 4706.7387,-359.1496 4711.5825,-357.9093 4705.6225,-354.7902 4716.4262,-356.6691 4716.4262,-356.6691\"/>\n",
"</a>\n",
"</g>\n",
"<g id=\"a_edge42&#45;label\"><a xlink:href=\"http://www.wikidata.org/prop/direct/P22\" xlink:title=\"wdt:P22\" target=\"_other\">\n",
"<text text-anchor=\"middle\" x=\"4605.5767\" y=\"-379.8\" font-family=\"Times,serif\" font-size=\"9.00\" fill=\"#204080\">wdt:P22</text>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- node125 -->\n",
"<g id=\"node126\" class=\"node\">\n",
"<title>node125</title>\n",
"<g id=\"a_node126\"><a xlink:href=\"http://www.wikidata.org/entity/Q260156\" xlink:title=\"Q260156\" target=\"_other\">\n",
"<text text-anchor=\"middle\" x=\"4514.5737\" y=\"-339\" font-family=\"DejaVu Sans,Tahoma,Geneva,sans-serif\" font-size=\"10.00\" fill=\"#0000ff\">Q260156</text>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- node56&#45;&gt;node125 -->\n",
"<g id=\"edge145\" class=\"edge\">\n",
"<title>node56&#45;&gt;node125</title>\n",
"<g id=\"a_edge145\"><a xlink:href=\"http://www.wikidata.org/prop/direct/P22\" xlink:title=\"wdt:P22\" target=\"_other\">\n",
"<path fill=\"none\" stroke=\"#9fc9e5\" stroke-opacity=\"0.376471\" d=\"M4562.4265,-407.8654C4553.7474,-402.1259 4544.5821,-395.016 4537.5679,-387 4533.094,-381.8872 4529.2227,-375.75 4525.9989,-369.676\"/>\n",
"<polygon fill=\"#9fc9e5\" fill-opacity=\"0.376471\" stroke=\"#9fc9e5\" stroke-opacity=\"0.376471\" points=\"4521.4722,-360.3395 4529.8841,-367.3745 4523.6536,-364.8386 4525.8349,-369.3377 4525.8349,-369.3377 4525.8349,-369.3377 4523.6536,-364.8386 4521.7857,-371.3009 4521.4722,-360.3395 4521.4722,-360.3395\"/>\n",
"</a>\n",
"</g>\n",
"<g id=\"a_edge145&#45;label\"><a xlink:href=\"http://www.wikidata.org/prop/direct/P22\" xlink:title=\"wdt:P22\" target=\"_other\">\n",
"<text text-anchor=\"middle\" x=\"4552.5767\" y=\"-379.8\" font-family=\"Times,serif\" font-size=\"9.00\" fill=\"#204080\">wdt:P22</text>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- node74 -->\n",
"<g id=\"node75\" class=\"node\">\n",
"<title>node74</title>\n",
"<g id=\"a_node75\"><a xlink:href=\"http://www.wikidata.org/entity/Q239314\" xlink:title=\"Q239314\" target=\"_other\">\n",
"<text text-anchor=\"middle\" x=\"4667.5737\" y=\"-258\" font-family=\"DejaVu Sans,Tahoma,Geneva,sans-serif\" font-size=\"10.00\" fill=\"#0000ff\">Q239314</text>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- node57&#45;&gt;node74 -->\n",
"<g id=\"edge142\" class=\"edge\">\n",
"<title>node57&#45;&gt;node74</title>\n",
"<g id=\"a_edge142\"><a xlink:href=\"http://www.wikidata.org/prop/direct/P22\" xlink:title=\"wdt:P22\" target=\"_other\">\n",
"<path fill=\"none\" stroke=\"#9fc9e5\" stroke-opacity=\"0.376471\" d=\"M4788.4282,-327.1434C4765.0633,-314.3558 4731.1114,-295.774 4705.1389,-281.5593\"/>\n",
"<polygon fill=\"#9fc9e5\" fill-opacity=\"0.376471\" stroke=\"#9fc9e5\" stroke-opacity=\"0.376471\" points=\"4696.3153,-276.7302 4707.2479,-277.5837 4700.7014,-279.1307 4705.0875,-281.5312 4705.0875,-281.5312 4705.0875,-281.5312 4700.7014,-279.1307 4702.927,-285.4787 4696.3153,-276.7302 4696.3153,-276.7302\"/>\n",
"</a>\n",
"</g>\n",
"<g id=\"a_edge142&#45;label\"><a xlink:href=\"http://www.wikidata.org/prop/direct/P22\" xlink:title=\"wdt:P22\" target=\"_other\">\n",
"<text text-anchor=\"middle\" x=\"4761.5767\" y=\"-298.8\" font-family=\"Times,serif\" font-size=\"9.00\" fill=\"#204080\">wdt:P22</text>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- node58 -->\n",
"<g id=\"node59\" class=\"node\">\n",
"<title>node58</title>\n",
"<g id=\"a_node59\"><a xlink:href=\"http://www.wikidata.org/entity/Q170026\" xlink:title=\"Q170026\" target=\"_other\">\n",
"<text text-anchor=\"middle\" x=\"1077.5737\" y=\"-177\" font-family=\"DejaVu Sans,Tahoma,Geneva,sans-serif\" font-size=\"10.00\" fill=\"#0000ff\">Q170026</text>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- node58&#45;&gt;node45 -->\n",
"<g id=\"edge119\" class=\"edge\">\n",
"<title>node58&#45;&gt;node45</title>\n",
"<g id=\"a_edge119\"><a xlink:href=\"http://www.wikidata.org/prop/direct/P22\" xlink:title=\"wdt:P22\" target=\"_other\">\n",
"<path fill=\"none\" stroke=\"#9fc9e5\" stroke-opacity=\"0.376471\" d=\"M1093.6039,-161.9783C1102.7302,-152.7112 1114.857,-141.9366 1127.5679,-135 1151.7569,-121.7996 1162.9366,-126.5275 1192.0639,-117.0909\"/>\n",
"<polygon fill=\"#9fc9e5\" fill-opacity=\"0.376471\" stroke=\"#9fc9e5\" stroke-opacity=\"0.376471\" points=\"1201.7139,-113.672 1193.7908,-121.2532 1197.0009,-115.3418 1192.288,-117.0116 1192.288,-117.0116 1192.288,-117.0116 1197.0009,-115.3418 1190.7852,-112.7699 1201.7139,-113.672 1201.7139,-113.672\"/>\n",
"</a>\n",
"</g>\n",
"<g id=\"a_edge119&#45;label\"><a xlink:href=\"http://www.wikidata.org/prop/direct/P22\" xlink:title=\"wdt:P22\" target=\"_other\">\n",
"<text text-anchor=\"middle\" x=\"1142.5767\" y=\"-136.8\" font-family=\"Times,serif\" font-size=\"9.00\" fill=\"#204080\">wdt:P22</text>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- node58&#45;&gt;node59 -->\n",
"<g id=\"edge35\" class=\"edge\">\n",
"<title>node58&#45;&gt;node59</title>\n",
"<g id=\"a_edge35\"><a xlink:href=\"http://www.wikidata.org/prop/direct/P22\" xlink:title=\"wdt:P22\" target=\"_other\">\n",
"<path fill=\"none\" stroke=\"#9fc9e5\" stroke-opacity=\"0.376471\" d=\"M1075.7493,-161.7044C1075.2639,-156.0358 1074.8081,-149.765 1074.5679,-144 1074.3456,-138.6673 1074.3845,-132.9796 1074.5609,-127.5052\"/>\n",
"<polygon fill=\"#9fc9e5\" fill-opacity=\"0.376471\" stroke=\"#9fc9e5\" stroke-opacity=\"0.376471\" points=\"1075.0375,-117.3901 1079.0618,-127.5908 1074.8022,-122.3845 1074.5668,-127.379 1074.5668,-127.379 1074.5668,-127.379 1074.8022,-122.3845 1070.0718,-127.1672 1075.0375,-117.3901 1075.0375,-117.3901\"/>\n",
"</a>\n",
"</g>\n",
"<g id=\"a_edge35&#45;label\"><a xlink:href=\"http://www.wikidata.org/prop/direct/P22\" xlink:title=\"wdt:P22\" target=\"_other\">\n",
"<text text-anchor=\"middle\" x=\"1089.5767\" y=\"-136.8\" font-family=\"Times,serif\" font-size=\"9.00\" fill=\"#204080\">wdt:P22</text>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- node60 -->\n",
"<g id=\"node61\" class=\"node\">\n",
"<title>node60</title>\n",
"<g id=\"a_node61\"><a xlink:href=\"http://www.wikidata.org/entity/Q1417\" xlink:title=\"Q1417\" target=\"_other\">\n",
"<text text-anchor=\"middle\" x=\"4863.5737\" y=\"-420\" font-family=\"DejaVu Sans,Tahoma,Geneva,sans-serif\" font-size=\"10.00\" fill=\"#0000ff\">Q1417</text>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- node61 -->\n",
"<g id=\"node62\" class=\"node\">\n",
"<title>node61</title>\n",
"<g id=\"a_node62\"><a xlink:href=\"http://www.wikidata.org/entity/Q662631\" xlink:title=\"Q662631\" target=\"_other\">\n",
"<text text-anchor=\"middle\" x=\"4916.5737\" y=\"-339\" font-family=\"DejaVu Sans,Tahoma,Geneva,sans-serif\" font-size=\"10.00\" fill=\"#0000ff\">Q662631</text>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- node60&#45;&gt;node61 -->\n",
"<g id=\"edge36\" class=\"edge\">\n",
"<title>node60&#45;&gt;node61</title>\n",
"<g id=\"a_edge36\"><a xlink:href=\"http://www.wikidata.org/prop/direct/P22\" xlink:title=\"wdt:P22\" target=\"_other\">\n",
"<path fill=\"none\" stroke=\"#9fc9e5\" stroke-opacity=\"0.376471\" d=\"M4875.3582,-404.5665C4880.5984,-396.4068 4886.8614,-386.7053 4892.5679,-378 4894.5215,-375.0197 4896.5754,-371.9077 4898.6253,-368.8153\"/>\n",
"<polygon fill=\"#9fc9e5\" fill-opacity=\"0.376471\" stroke=\"#9fc9e5\" stroke-opacity=\"0.376471\" points=\"4904.3055,-360.2772 4902.5132,-371.0956 4901.536,-364.4401 4898.7665,-368.6031 4898.7665,-368.6031 4898.7665,-368.6031 4901.536,-364.4401 4895.0198,-366.1105 4904.3055,-360.2772 4904.3055,-360.2772\"/>\n",
"</a>\n",
"</g>\n",
"<g id=\"a_edge36&#45;label\"><a xlink:href=\"http://www.wikidata.org/prop/direct/P22\" xlink:title=\"wdt:P22\" target=\"_other\">\n",
"<text text-anchor=\"middle\" x=\"4907.5767\" y=\"-379.8\" font-family=\"Times,serif\" font-size=\"9.00\" fill=\"#204080\">wdt:P22</text>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- node63 -->\n",
"<g id=\"node64\" class=\"node\">\n",
"<title>node63</title>\n",
"<g id=\"a_node64\"><a xlink:href=\"http://www.wikidata.org/entity/Q1248608\" xlink:title=\"Q1248608\" target=\"_other\">\n",
"<text text-anchor=\"middle\" x=\"5015.5737\" y=\"-420\" font-family=\"DejaVu Sans,Tahoma,Geneva,sans-serif\" font-size=\"10.00\" fill=\"#0000ff\">Q1248608</text>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- node64 -->\n",
"<g id=\"node65\" class=\"node\">\n",
"<title>node64</title>\n",
"<g id=\"a_node65\"><a xlink:href=\"http://www.wikidata.org/entity/Q104475\" xlink:title=\"Q104475\" target=\"_other\">\n",
"<text text-anchor=\"middle\" x=\"5025.5737\" y=\"-339\" font-family=\"DejaVu Sans,Tahoma,Geneva,sans-serif\" font-size=\"10.00\" fill=\"#0000ff\">Q104475</text>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- node63&#45;&gt;node64 -->\n",
"<g id=\"edge38\" class=\"edge\">\n",
"<title>node63&#45;&gt;node64</title>\n",
"<g id=\"a_edge38\"><a xlink:href=\"http://www.wikidata.org/prop/direct/P25\" xlink:title=\"wdt:P25\" target=\"_other\">\n",
"<path fill=\"none\" stroke=\"#9fc9e5\" stroke-opacity=\"0.376471\" d=\"M5017.8429,-404.6198C5019.1047,-394.3991 5020.7012,-381.4672 5022.1154,-370.0125\"/>\n",
"<polygon fill=\"#9fc9e5\" fill-opacity=\"0.376471\" stroke=\"#9fc9e5\" stroke-opacity=\"0.376471\" points=\"5023.348,-360.0284 5026.5887,-370.5045 5022.7353,-364.9907 5022.1226,-369.953 5022.1226,-369.953 5022.1226,-369.953 5022.7353,-364.9907 5017.6566,-369.4016 5023.348,-360.0284 5023.348,-360.0284\"/>\n",
"</a>\n",
"</g>\n",
"<g id=\"a_edge38&#45;label\"><a xlink:href=\"http://www.wikidata.org/prop/direct/P25\" xlink:title=\"wdt:P25\" target=\"_other\">\n",
"<text text-anchor=\"middle\" x=\"5036.5767\" y=\"-379.8\" font-family=\"Times,serif\" font-size=\"9.00\" fill=\"#204080\">wdt:P25</text>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- node90 -->\n",
"<g id=\"node91\" class=\"node\">\n",
"<title>node90</title>\n",
"<g id=\"a_node91\"><a xlink:href=\"http://www.wikidata.org/entity/Q552224\" xlink:title=\"Q552224\" target=\"_other\">\n",
"<text text-anchor=\"middle\" x=\"5011.5737\" y=\"-258\" font-family=\"DejaVu Sans,Tahoma,Geneva,sans-serif\" font-size=\"10.00\" fill=\"#0000ff\">Q552224</text>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- node64&#45;&gt;node90 -->\n",
"<g id=\"edge64\" class=\"edge\">\n",
"<title>node64&#45;&gt;node90</title>\n",
"<g id=\"a_edge64\"><a xlink:href=\"http://www.wikidata.org/prop/direct/P22\" xlink:title=\"wdt:P22\" target=\"_other\">\n",
"<path fill=\"none\" stroke=\"#9fc9e5\" stroke-opacity=\"0.376471\" d=\"M5003.4099,-323.7939C4998.5979,-318.599 4994.1728,-312.5511 4991.5679,-306 4989.3012,-300.2996 4989.8767,-294.2597 4991.8792,-288.5183\"/>\n",
"<polygon fill=\"#9fc9e5\" fill-opacity=\"0.376471\" stroke=\"#9fc9e5\" stroke-opacity=\"0.376471\" points=\"4996.3465,-279.2505 4996.0579,-290.2126 4994.1754,-283.7546 4992.0043,-288.2586 4992.0043,-288.2586 4992.0043,-288.2586 4994.1754,-283.7546 4987.9507,-286.3046 4996.3465,-279.2505 4996.3465,-279.2505\"/>\n",
"</a>\n",
"</g>\n",
"<g id=\"a_edge64&#45;label\"><a xlink:href=\"http://www.wikidata.org/prop/direct/P22\" xlink:title=\"wdt:P22\" target=\"_other\">\n",
"<text text-anchor=\"middle\" x=\"5006.5767\" y=\"-298.8\" font-family=\"Times,serif\" font-size=\"9.00\" fill=\"#204080\">wdt:P22</text>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- node99 -->\n",
"<g id=\"node100\" class=\"node\">\n",
"<title>node99</title>\n",
"<g id=\"a_node100\"><a xlink:href=\"http://www.wikidata.org/entity/Q297494\" xlink:title=\"Q297494\" target=\"_other\">\n",
"<text text-anchor=\"middle\" x=\"5128.5737\" y=\"-258\" font-family=\"DejaVu Sans,Tahoma,Geneva,sans-serif\" font-size=\"10.00\" fill=\"#0000ff\">Q297494</text>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- node64&#45;&gt;node99 -->\n",
"<g id=\"edge82\" class=\"edge\">\n",
"<title>node64&#45;&gt;node99</title>\n",
"<g id=\"a_edge82\"><a xlink:href=\"http://www.wikidata.org/prop/direct/P22\" xlink:title=\"wdt:P22\" target=\"_other\">\n",
"<path fill=\"none\" stroke=\"#9fc9e5\" stroke-opacity=\"0.376471\" d=\"M5029.7416,-323.9485C5032.6167,-314.8992 5037.2725,-304.3353 5044.5679,-297 5056.9842,-284.5156 5074.4208,-276.0902 5090.1924,-270.5506\"/>\n",
"<polygon fill=\"#9fc9e5\" fill-opacity=\"0.376471\" stroke=\"#9fc9e5\" stroke-opacity=\"0.376471\" points=\"5099.7375,-267.4638 5091.6073,-274.8226 5094.98,-269.0024 5090.2226,-270.5409 5090.2226,-270.5409 5090.2226,-270.5409 5094.98,-269.0024 5088.838,-266.2592 5099.7375,-267.4638 5099.7375,-267.4638\"/>\n",
"</a>\n",
"</g>\n",
"<g id=\"a_edge82&#45;label\"><a xlink:href=\"http://www.wikidata.org/prop/direct/P22\" xlink:title=\"wdt:P22\" target=\"_other\">\n",
"<text text-anchor=\"middle\" x=\"5059.5767\" y=\"-298.8\" font-family=\"Times,serif\" font-size=\"9.00\" fill=\"#204080\">wdt:P22</text>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- node65 -->\n",
"<g id=\"node66\" class=\"node\">\n",
"<title>node65</title>\n",
"<g id=\"a_node66\"><a xlink:href=\"http://www.wikidata.org/entity/Q231063\" xlink:title=\"Q231063\" target=\"_other\">\n",
"<text text-anchor=\"middle\" x=\"3147.5737\" y=\"-258\" font-family=\"DejaVu Sans,Tahoma,Geneva,sans-serif\" font-size=\"10.00\" fill=\"#0000ff\">Q231063</text>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- node65&#45;&gt;node16 -->\n",
"<g id=\"edge46\" class=\"edge\">\n",
"<title>node65&#45;&gt;node16</title>\n",
"<g id=\"a_edge46\"><a xlink:href=\"http://www.wikidata.org/prop/direct/P25\" xlink:title=\"wdt:P25\" target=\"_other\">\n",
"<path fill=\"none\" stroke=\"#9fc9e5\" stroke-opacity=\"0.376471\" d=\"M3174.1028,-242.967C3180.6684,-237.6898 3187.3195,-231.5591 3192.5737,-225 3196.7839,-219.7443 3200.46,-213.5506 3203.5399,-207.4674\"/>\n",
"<polygon fill=\"#9fc9e5\" fill-opacity=\"0.376471\" stroke=\"#9fc9e5\" stroke-opacity=\"0.376471\" points=\"3207.8801,-198.1496 3207.7368,-209.1146 3205.7689,-202.6821 3203.6577,-207.2145 3203.6577,-207.2145 3203.6577,-207.2145 3205.7689,-202.6821 3199.5785,-205.3144 3207.8801,-198.1496 3207.8801,-198.1496\"/>\n",
"</a>\n",
"</g>\n",
"<g id=\"a_edge46&#45;label\"><a xlink:href=\"http://www.wikidata.org/prop/direct/P25\" xlink:title=\"wdt:P25\" target=\"_other\">\n",
"<text text-anchor=\"middle\" x=\"3214.5767\" y=\"-217.8\" font-family=\"Times,serif\" font-size=\"9.00\" fill=\"#204080\">wdt:P25</text>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- node65&#45;&gt;node54 -->\n",
"<g id=\"edge56\" class=\"edge\">\n",
"<title>node65&#45;&gt;node54</title>\n",
"<g id=\"a_edge56\"><a xlink:href=\"http://www.wikidata.org/prop/direct/P25\" xlink:title=\"wdt:P25\" target=\"_other\">\n",
"<path fill=\"none\" stroke=\"#9fc9e5\" stroke-opacity=\"0.376471\" d=\"M3118.9064,-257.9667C3081.0714,-253.3043 3017.6035,-242.9764 3003.5679,-225 2999.5767,-219.8882 2999.461,-213.6631 3001.2141,-207.4933\"/>\n",
"<polygon fill=\"#9fc9e5\" fill-opacity=\"0.376471\" stroke=\"#9fc9e5\" stroke-opacity=\"0.376471\" points=\"3005.2189,-198.0115 3005.4734,-208.9744 3003.2735,-202.6175 3001.328,-207.2235 3001.328,-207.2235 3001.328,-207.2235 3003.2735,-202.6175 2997.1826,-205.4726 3005.2189,-198.0115 3005.2189,-198.0115\"/>\n",
"</a>\n",
"</g>\n",
"<g id=\"a_edge56&#45;label\"><a xlink:href=\"http://www.wikidata.org/prop/direct/P25\" xlink:title=\"wdt:P25\" target=\"_other\">\n",
"<text text-anchor=\"middle\" x=\"3018.5767\" y=\"-217.8\" font-family=\"Times,serif\" font-size=\"9.00\" fill=\"#204080\">wdt:P25</text>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- node65&#45;&gt;node66 -->\n",
"<g id=\"edge39\" class=\"edge\">\n",
"<title>node65&#45;&gt;node66</title>\n",
"<g id=\"a_edge39\"><a xlink:href=\"http://www.wikidata.org/prop/direct/P25\" xlink:title=\"wdt:P25\" target=\"_other\">\n",
"<path fill=\"none\" stroke=\"#9fc9e5\" stroke-opacity=\"0.376471\" d=\"M3122.4567,-242.8202C3117.2299,-237.6992 3112.441,-231.679 3109.5679,-225 3107.1749,-219.4371 3107.4498,-213.3859 3109.0653,-207.5778\"/>\n",
"<polygon fill=\"#9fc9e5\" fill-opacity=\"0.376471\" stroke=\"#9fc9e5\" stroke-opacity=\"0.376471\" points=\"3112.8151,-198.1615 3113.296,-209.1169 3110.9652,-202.8067 3109.1153,-207.4519 3109.1153,-207.4519 3109.1153,-207.4519 3110.9652,-202.8067 3104.9346,-205.787 3112.8151,-198.1615 3112.8151,-198.1615\"/>\n",
"</a>\n",
"</g>\n",
"<g id=\"a_edge39&#45;label\"><a xlink:href=\"http://www.wikidata.org/prop/direct/P25\" xlink:title=\"wdt:P25\" target=\"_other\">\n",
"<text text-anchor=\"middle\" x=\"3124.5767\" y=\"-217.8\" font-family=\"Times,serif\" font-size=\"9.00\" fill=\"#204080\">wdt:P25</text>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- node65&#45;&gt;node91 -->\n",
"<g id=\"edge65\" class=\"edge\">\n",
"<title>node65&#45;&gt;node91</title>\n",
"<g id=\"a_edge65\"><a xlink:href=\"http://www.wikidata.org/prop/direct/P25\" xlink:title=\"wdt:P25\" target=\"_other\">\n",
"<path fill=\"none\" stroke=\"#9fc9e5\" stroke-opacity=\"0.376471\" d=\"M3176.4334,-255.0961C3210.8378,-247.7683 3266.016,-235.0153 3284.5737,-225 3294.1316,-219.8417 3303.3438,-212.4925 3311.2,-205.2249\"/>\n",
"<polygon fill=\"#9fc9e5\" fill-opacity=\"0.376471\" stroke=\"#9fc9e5\" stroke-opacity=\"0.376471\" points=\"3318.5668,-198.0687 3314.5295,-208.2643 3314.9804,-201.5526 3311.394,-205.0365 3311.394,-205.0365 3311.394,-205.0365 3314.9804,-201.5526 3308.2584,-201.8087 3318.5668,-198.0687 3318.5668,-198.0687\"/>\n",
"</a>\n",
"</g>\n",
"<g id=\"a_edge65&#45;label\"><a xlink:href=\"http://www.wikidata.org/prop/direct/P25\" xlink:title=\"wdt:P25\" target=\"_other\">\n",
"<text text-anchor=\"middle\" x=\"3312.5767\" y=\"-217.8\" font-family=\"Times,serif\" font-size=\"9.00\" fill=\"#204080\">wdt:P25</text>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- node65&#45;&gt;node111 -->\n",
"<g id=\"edge97\" class=\"edge\">\n",
"<title>node65&#45;&gt;node111</title>\n",
"<g id=\"a_edge97\"><a xlink:href=\"http://www.wikidata.org/prop/direct/P25\" xlink:title=\"wdt:P25\" target=\"_other\">\n",
"<path fill=\"none\" stroke=\"#9fc9e5\" stroke-opacity=\"0.376471\" d=\"M3176.2119,-254.1429C3192.3909,-250.4506 3213.0295,-246.0426 3231.5737,-243 3300.8819,-231.6285 3324.1333,-252.935 3388.5737,-225 3399.2575,-220.3686 3409.4154,-212.8376 3417.9266,-205.2501\"/>\n",
"<polygon fill=\"#9fc9e5\" fill-opacity=\"0.376471\" stroke=\"#9fc9e5\" stroke-opacity=\"0.376471\" points=\"3425.248,-198.3475 3421.0588,-208.4817 3421.6099,-201.7775 3417.9718,-205.2074 3417.9718,-205.2074 3417.9718,-205.2074 3421.6099,-201.7775 3414.8849,-201.9332 3425.248,-198.3475 3425.248,-198.3475\"/>\n",
"</a>\n",
"</g>\n",
"<g id=\"a_edge97&#45;label\"><a xlink:href=\"http://www.wikidata.org/prop/direct/P25\" xlink:title=\"wdt:P25\" target=\"_other\">\n",
"<text text-anchor=\"middle\" x=\"3418.5767\" y=\"-217.8\" font-family=\"Times,serif\" font-size=\"9.00\" fill=\"#204080\">wdt:P25</text>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- node67 -->\n",
"<g id=\"node68\" class=\"node\">\n",
"<title>node67</title>\n",
"<g id=\"a_node68\"><a xlink:href=\"http://www.wikidata.org/entity/Q201905\" xlink:title=\"Q201905\" target=\"_other\">\n",
"<text text-anchor=\"middle\" x=\"1122.5737\" y=\"-258\" font-family=\"DejaVu Sans,Tahoma,Geneva,sans-serif\" font-size=\"10.00\" fill=\"#0000ff\">Q201905</text>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- node67&#45;&gt;node58 -->\n",
"<g id=\"edge40\" class=\"edge\">\n",
"<title>node67&#45;&gt;node58</title>\n",
"<g id=\"a_edge40\"><a xlink:href=\"http://www.wikidata.org/prop/direct/P22\" xlink:title=\"wdt:P22\" target=\"_other\">\n",
"<path fill=\"none\" stroke=\"#9fc9e5\" stroke-opacity=\"0.376471\" d=\"M1112.3625,-242.6198C1106.5105,-232.0863 1099.0587,-218.6729 1092.5542,-206.9649\"/>\n",
"<polygon fill=\"#9fc9e5\" fill-opacity=\"0.376471\" stroke=\"#9fc9e5\" stroke-opacity=\"0.376471\" points=\"1087.5895,-198.0284 1096.3797,-204.5846 1090.0177,-202.3992 1092.446,-206.77 1092.446,-206.77 1092.446,-206.77 1090.0177,-202.3992 1088.5123,-208.9554 1087.5895,-198.0284 1087.5895,-198.0284\"/>\n",
"</a>\n",
"</g>\n",
"<g id=\"a_edge40&#45;label\"><a xlink:href=\"http://www.wikidata.org/prop/direct/P22\" xlink:title=\"wdt:P22\" target=\"_other\">\n",
"<text text-anchor=\"middle\" x=\"1116.5767\" y=\"-217.8\" font-family=\"Times,serif\" font-size=\"9.00\" fill=\"#204080\">wdt:P22</text>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- node88 -->\n",
"<g id=\"node89\" class=\"node\">\n",
"<title>node88</title>\n",
"<g id=\"a_node89\"><a xlink:href=\"http://www.wikidata.org/entity/Q232271\" xlink:title=\"Q232271\" target=\"_other\">\n",
"<text text-anchor=\"middle\" x=\"1153.5737\" y=\"-177\" font-family=\"DejaVu Sans,Tahoma,Geneva,sans-serif\" font-size=\"10.00\" fill=\"#0000ff\">Q232271</text>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- node67&#45;&gt;node88 -->\n",
"<g id=\"edge133\" class=\"edge\">\n",
"<title>node67&#45;&gt;node88</title>\n",
"<g id=\"a_edge133\"><a xlink:href=\"http://www.wikidata.org/prop/direct/P22\" xlink:title=\"wdt:P22\" target=\"_other\">\n",
"<path fill=\"none\" stroke=\"#9fc9e5\" stroke-opacity=\"0.376471\" d=\"M1129.6081,-242.6198C1133.5597,-232.2948 1138.5701,-219.203 1142.9869,-207.6624\"/>\n",
"<polygon fill=\"#9fc9e5\" fill-opacity=\"0.376471\" stroke=\"#9fc9e5\" stroke-opacity=\"0.376471\" points=\"1146.674,-198.0284 1147.3023,-208.9763 1144.8868,-202.6981 1143.0996,-207.3678 1143.0996,-207.3678 1143.0996,-207.3678 1144.8868,-202.6981 1138.8969,-205.7593 1146.674,-198.0284 1146.674,-198.0284\"/>\n",
"</a>\n",
"</g>\n",
"<g id=\"a_edge133&#45;label\"><a xlink:href=\"http://www.wikidata.org/prop/direct/P22\" xlink:title=\"wdt:P22\" target=\"_other\">\n",
"<text text-anchor=\"middle\" x=\"1154.5767\" y=\"-217.8\" font-family=\"Times,serif\" font-size=\"9.00\" fill=\"#204080\">wdt:P22</text>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- node68 -->\n",
"<g id=\"node69\" class=\"node\">\n",
"<title>node68</title>\n",
"<g id=\"a_node69\"><a xlink:href=\"http://www.wikidata.org/entity/Q232981\" xlink:title=\"Q232981\" target=\"_other\">\n",
"<text text-anchor=\"middle\" x=\"1302.5737\" y=\"-339\" font-family=\"DejaVu Sans,Tahoma,Geneva,sans-serif\" font-size=\"10.00\" fill=\"#0000ff\">Q232981</text>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- node68&#45;&gt;node11 -->\n",
"<g id=\"edge135\" class=\"edge\">\n",
"<title>node68&#45;&gt;node11</title>\n",
"<g id=\"a_edge135\"><a xlink:href=\"http://www.wikidata.org/prop/direct/P25\" xlink:title=\"wdt:P25\" target=\"_other\">\n",
"<path fill=\"none\" stroke=\"#9fc9e5\" stroke-opacity=\"0.376471\" d=\"M1311.8013,-323.6531C1317.4284,-314.2907 1325.4845,-303.5288 1335.5679,-297 1365.1153,-277.8685 1380.8983,-289.2878 1417.8884,-278.9572\"/>\n",
"<polygon fill=\"#9fc9e5\" fill-opacity=\"0.376471\" stroke=\"#9fc9e5\" stroke-opacity=\"0.376471\" points=\"1427.7709,-275.8303 1419.5943,-283.1374 1423.0038,-277.3387 1418.2368,-278.8471 1418.2368,-278.8471 1418.2368,-278.8471 1423.0038,-277.3387 1416.8792,-274.5567 1427.7709,-275.8303 1427.7709,-275.8303\"/>\n",
"</a>\n",
"</g>\n",
"<g id=\"a_edge135&#45;label\"><a xlink:href=\"http://www.wikidata.org/prop/direct/P25\" xlink:title=\"wdt:P25\" target=\"_other\">\n",
"<text text-anchor=\"middle\" x=\"1350.5767\" y=\"-298.8\" font-family=\"Times,serif\" font-size=\"9.00\" fill=\"#204080\">wdt:P25</text>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- node68&#45;&gt;node69 -->\n",
"<g id=\"edge41\" class=\"edge\">\n",
"<title>node68&#45;&gt;node69</title>\n",
"<g id=\"a_edge41\"><a xlink:href=\"http://www.wikidata.org/prop/direct/P25\" xlink:title=\"wdt:P25\" target=\"_other\">\n",
"<path fill=\"none\" stroke=\"#9fc9e5\" stroke-opacity=\"0.376471\" d=\"M1288.5925,-323.7485C1283.7326,-315.0693 1280.7838,-304.8919 1286.5679,-297 1300.6787,-277.7468 1315.4859,-286.3972 1342.9067,-278.5358\"/>\n",
"<polygon fill=\"#9fc9e5\" fill-opacity=\"0.376471\" stroke=\"#9fc9e5\" stroke-opacity=\"0.376471\" points=\"1352.7067,-275.1726 1344.7089,-282.675 1347.9774,-276.7957 1343.2482,-278.4187 1343.2482,-278.4187 1343.2482,-278.4187 1347.9774,-276.7957 1341.7874,-274.1624 1352.7067,-275.1726 1352.7067,-275.1726\"/>\n",
"</a>\n",
"</g>\n",
"<g id=\"a_edge41&#45;label\"><a xlink:href=\"http://www.wikidata.org/prop/direct/P25\" xlink:title=\"wdt:P25\" target=\"_other\">\n",
"<text text-anchor=\"middle\" x=\"1301.5767\" y=\"-298.8\" font-family=\"Times,serif\" font-size=\"9.00\" fill=\"#204080\">wdt:P25</text>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- node68&#45;&gt;node108 -->\n",
"<g id=\"edge93\" class=\"edge\">\n",
"<title>node68&#45;&gt;node108</title>\n",
"<g id=\"a_edge93\"><a xlink:href=\"http://www.wikidata.org/prop/direct/P25\" xlink:title=\"wdt:P25\" target=\"_other\">\n",
"<path fill=\"none\" stroke=\"#9fc9e5\" stroke-opacity=\"0.376471\" d=\"M1273.6636,-327.7694C1255.3165,-318.5992 1234.7937,-308.0221 1233.5679,-306 1231.4943,-302.5794 1231.4843,-300.4145 1233.5679,-297 1235.5281,-293.7877 1248.76,-286.6758 1263.2016,-279.6144\"/>\n",
"<polygon fill=\"#9fc9e5\" fill-opacity=\"0.376471\" stroke=\"#9fc9e5\" stroke-opacity=\"0.376471\" points=\"1272.26,-275.2595 1265.1973,-283.6481 1267.7537,-277.4259 1263.2475,-279.5924 1263.2475,-279.5924 1263.2475,-279.5924 1267.7537,-277.4259 1261.2976,-275.5367 1272.26,-275.2595 1272.26,-275.2595\"/>\n",
"</a>\n",
"</g>\n",
"<g id=\"a_edge93&#45;label\"><a xlink:href=\"http://www.wikidata.org/prop/direct/P25\" xlink:title=\"wdt:P25\" target=\"_other\">\n",
"<text text-anchor=\"middle\" x=\"1248.5767\" y=\"-298.8\" font-family=\"Times,serif\" font-size=\"9.00\" fill=\"#204080\">wdt:P25</text>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- node71 -->\n",
"<g id=\"node72\" class=\"node\">\n",
"<title>node71</title>\n",
"<g id=\"a_node72\"><a xlink:href=\"http://www.wikidata.org/entity/Q46696\" xlink:title=\"Q46696\" target=\"_other\">\n",
"<text text-anchor=\"middle\" x=\"1155.5737\" y=\"-420\" font-family=\"DejaVu Sans,Tahoma,Geneva,sans-serif\" font-size=\"10.00\" fill=\"#0000ff\">Q46696</text>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- node71&#45;&gt;node10 -->\n",
"<g id=\"edge157\" class=\"edge\">\n",
"<title>node71&#45;&gt;node10</title>\n",
"<g id=\"a_edge157\"><a xlink:href=\"http://www.wikidata.org/prop/direct/P22\" xlink:title=\"wdt:P22\" target=\"_other\">\n",
"<path fill=\"none\" stroke=\"#9fc9e5\" stroke-opacity=\"0.376471\" d=\"M1182.7796,-405.6865C1200.6194,-394.6118 1222.4489,-381.6597 1232.5679,-378 1278.3315,-361.449 1293.344,-371.7305 1340.5737,-360 1345.6583,-358.7371 1350.9529,-357.2254 1356.1523,-355.6219\"/>\n",
"<polygon fill=\"#9fc9e5\" fill-opacity=\"0.376471\" stroke=\"#9fc9e5\" stroke-opacity=\"0.376471\" points=\"1365.9538,-352.4668 1357.8137,-359.8146 1361.1943,-353.999 1356.4348,-355.5311 1356.4348,-355.5311 1356.4348,-355.5311 1361.1943,-353.999 1355.0559,-351.2475 1365.9538,-352.4668 1365.9538,-352.4668\"/>\n",
"</a>\n",
"</g>\n",
"<g id=\"a_edge157&#45;label\"><a xlink:href=\"http://www.wikidata.org/prop/direct/P22\" xlink:title=\"wdt:P22\" target=\"_other\">\n",
"<text text-anchor=\"middle\" x=\"1247.5767\" y=\"-379.8\" font-family=\"Times,serif\" font-size=\"9.00\" fill=\"#204080\">wdt:P22</text>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- node72 -->\n",
"<g id=\"node73\" class=\"node\">\n",
"<title>node72</title>\n",
"<g id=\"a_node73\"><a xlink:href=\"http://www.wikidata.org/entity/Q237907\" xlink:title=\"Q237907\" target=\"_other\">\n",
"<text text-anchor=\"middle\" x=\"1032.5737\" y=\"-258\" font-family=\"DejaVu Sans,Tahoma,Geneva,sans-serif\" font-size=\"10.00\" fill=\"#0000ff\">Q237907</text>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- node71&#45;&gt;node72 -->\n",
"<g id=\"edge44\" class=\"edge\">\n",
"<title>node71&#45;&gt;node72</title>\n",
"<g id=\"a_edge44\"><a xlink:href=\"http://www.wikidata.org/prop/direct/P22\" xlink:title=\"wdt:P22\" target=\"_other\">\n",
"<path fill=\"none\" stroke=\"#9fc9e5\" stroke-opacity=\"0.376471\" d=\"M1128.4014,-405.0208C1112.6314,-393.56 1093.2452,-377.5888 1079.5679,-360 1062.7062,-338.3162 1049.9165,-309.6026 1041.9689,-288.685\"/>\n",
"<polygon fill=\"#9fc9e5\" fill-opacity=\"0.376471\" stroke=\"#9fc9e5\" stroke-opacity=\"0.376471\" points=\"1038.4596,-279.1076 1046.1254,-286.949 1040.1799,-283.8024 1041.9001,-288.4972 1041.9001,-288.4972 1041.9001,-288.4972 1040.1799,-283.8024 1037.6748,-290.0454 1038.4596,-279.1076 1038.4596,-279.1076\"/>\n",
"</a>\n",
"</g>\n",
"<g id=\"a_edge44&#45;label\"><a xlink:href=\"http://www.wikidata.org/prop/direct/P22\" xlink:title=\"wdt:P22\" target=\"_other\">\n",
"<text text-anchor=\"middle\" x=\"1094.5767\" y=\"-339.3\" font-family=\"Times,serif\" font-size=\"9.00\" fill=\"#204080\">wdt:P22</text>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- node77 -->\n",
"<g id=\"node78\" class=\"node\">\n",
"<title>node77</title>\n",
"<g id=\"a_node78\"><a xlink:href=\"http://www.wikidata.org/entity/Q159798\" xlink:title=\"Q159798\" target=\"_other\">\n",
"<text text-anchor=\"middle\" x=\"1227.5737\" y=\"-339\" font-family=\"DejaVu Sans,Tahoma,Geneva,sans-serif\" font-size=\"10.00\" fill=\"#0000ff\">Q159798</text>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- node71&#45;&gt;node77 -->\n",
"<g id=\"edge121\" class=\"edge\">\n",
"<title>node71&#45;&gt;node77</title>\n",
"<g id=\"a_edge121\"><a xlink:href=\"http://www.wikidata.org/prop/direct/P22\" xlink:title=\"wdt:P22\" target=\"_other\">\n",
"<path fill=\"none\" stroke=\"#9fc9e5\" stroke-opacity=\"0.376471\" d=\"M1164.961,-404.9792C1169.8947,-396.3546 1176.4022,-386.1565 1183.5679,-378 1186.982,-374.1138 1190.8424,-370.3101 1194.8233,-366.7179\"/>\n",
"<polygon fill=\"#9fc9e5\" fill-opacity=\"0.376471\" stroke=\"#9fc9e5\" stroke-opacity=\"0.376471\" points=\"1202.5418,-360.1046 1197.8759,-370.0283 1198.7449,-363.3579 1194.948,-366.6111 1194.948,-366.6111 1194.948,-366.6111 1198.7449,-363.3579 1192.02,-363.1939 1202.5418,-360.1046 1202.5418,-360.1046\"/>\n",
"</a>\n",
"</g>\n",
"<g id=\"a_edge121&#45;label\"><a xlink:href=\"http://www.wikidata.org/prop/direct/P22\" xlink:title=\"wdt:P22\" target=\"_other\">\n",
"<text text-anchor=\"middle\" x=\"1198.5767\" y=\"-379.8\" font-family=\"Times,serif\" font-size=\"9.00\" fill=\"#204080\">wdt:P22</text>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- node83 -->\n",
"<g id=\"node84\" class=\"node\">\n",
"<title>node83</title>\n",
"<g id=\"a_node84\"><a xlink:href=\"http://www.wikidata.org/entity/Q1282616\" xlink:title=\"Q1282616\" target=\"_other\">\n",
"<text text-anchor=\"middle\" x=\"1149.5737\" y=\"-339\" font-family=\"DejaVu Sans,Tahoma,Geneva,sans-serif\" font-size=\"10.00\" fill=\"#0000ff\">Q1282616</text>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- node71&#45;&gt;node83 -->\n",
"<g id=\"edge55\" class=\"edge\">\n",
"<title>node71&#45;&gt;node83</title>\n",
"<g id=\"a_edge55\"><a xlink:href=\"http://www.wikidata.org/prop/direct/P22\" xlink:title=\"wdt:P22\" target=\"_other\">\n",
"<path fill=\"none\" stroke=\"#9fc9e5\" stroke-opacity=\"0.376471\" d=\"M1139.7258,-404.7206C1135.9879,-399.3572 1132.5241,-393.2452 1130.5679,-387 1128.749,-381.1933 1129.4427,-375.1066 1131.3834,-369.353\"/>\n",
"<polygon fill=\"#9fc9e5\" fill-opacity=\"0.376471\" stroke=\"#9fc9e5\" stroke-opacity=\"0.376471\" points=\"1135.6033,-360.0929 1135.5513,-371.0587 1133.5299,-364.6427 1131.4565,-369.1926 1131.4565,-369.1926 1131.4565,-369.1926 1133.5299,-364.6427 1127.3616,-367.3265 1135.6033,-360.0929 1135.6033,-360.0929\"/>\n",
"</a>\n",
"</g>\n",
"<g id=\"a_edge55&#45;label\"><a xlink:href=\"http://www.wikidata.org/prop/direct/P22\" xlink:title=\"wdt:P22\" target=\"_other\">\n",
"<text text-anchor=\"middle\" x=\"1145.5767\" y=\"-379.8\" font-family=\"Times,serif\" font-size=\"9.00\" fill=\"#204080\">wdt:P22</text>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- node72&#45;&gt;node58 -->\n",
"<g id=\"edge66\" class=\"edge\">\n",
"<title>node72&#45;&gt;node58</title>\n",
"<g id=\"a_edge66\"><a xlink:href=\"http://www.wikidata.org/prop/direct/P25\" xlink:title=\"wdt:P25\" target=\"_other\">\n",
"<path fill=\"none\" stroke=\"#9fc9e5\" stroke-opacity=\"0.376471\" d=\"M1007.4411,-242.9794C999.3059,-234.8962 993.7194,-225.1404 999.5679,-216 1008.4043,-202.1899 1024.0342,-193.6021 1038.9944,-188.2981\"/>\n",
"<polygon fill=\"#9fc9e5\" fill-opacity=\"0.376471\" stroke=\"#9fc9e5\" stroke-opacity=\"0.376471\" points=\"1048.6506,-185.2649 1040.4588,-192.555 1043.8804,-186.7633 1039.1102,-188.2618 1039.1102,-188.2618 1039.1102,-188.2618 1043.8804,-186.7633 1037.7616,-183.9686 1048.6506,-185.2649 1048.6506,-185.2649\"/>\n",
"</a>\n",
"</g>\n",
"<g id=\"a_edge66&#45;label\"><a xlink:href=\"http://www.wikidata.org/prop/direct/P25\" xlink:title=\"wdt:P25\" target=\"_other\">\n",
"<text text-anchor=\"middle\" x=\"1014.5767\" y=\"-217.8\" font-family=\"Times,serif\" font-size=\"9.00\" fill=\"#204080\">wdt:P25</text>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- node72&#45;&gt;node88 -->\n",
"<g id=\"edge61\" class=\"edge\">\n",
"<title>node72&#45;&gt;node88</title>\n",
"<g id=\"a_edge61\"><a xlink:href=\"http://www.wikidata.org/prop/direct/P25\" xlink:title=\"wdt:P25\" target=\"_other\">\n",
"<path fill=\"none\" stroke=\"#9fc9e5\" stroke-opacity=\"0.376471\" d=\"M1042.4485,-242.7348C1048.1639,-233.6271 1056.101,-223.0754 1065.5679,-216 1082.4188,-203.4058 1091.6182,-206.1589 1115.2551,-197.717\"/>\n",
"<polygon fill=\"#9fc9e5\" fill-opacity=\"0.376471\" stroke=\"#9fc9e5\" stroke-opacity=\"0.376471\" points=\"1124.6576,-194.0511 1116.9753,-201.8763 1119.9991,-195.8674 1115.3406,-197.6837 1115.3406,-197.6837 1115.3406,-197.6837 1119.9991,-195.8674 1113.706,-193.491 1124.6576,-194.0511 1124.6576,-194.0511\"/>\n",
"</a>\n",
"</g>\n",
"<g id=\"a_edge61&#45;label\"><a xlink:href=\"http://www.wikidata.org/prop/direct/P25\" xlink:title=\"wdt:P25\" target=\"_other\">\n",
"<text text-anchor=\"middle\" x=\"1080.5767\" y=\"-217.8\" font-family=\"Times,serif\" font-size=\"9.00\" fill=\"#204080\">wdt:P25</text>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- node73 -->\n",
"<g id=\"node74\" class=\"node\">\n",
"<title>node73</title>\n",
"<g id=\"a_node74\"><a xlink:href=\"http://www.wikidata.org/entity/Q731059\" xlink:title=\"Q731059\" target=\"_other\">\n",
"<text text-anchor=\"middle\" x=\"4589.5737\" y=\"-339\" font-family=\"DejaVu Sans,Tahoma,Geneva,sans-serif\" font-size=\"10.00\" fill=\"#0000ff\">Q731059</text>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- node73&#45;&gt;node74 -->\n",
"<g id=\"edge45\" class=\"edge\">\n",
"<title>node73&#45;&gt;node74</title>\n",
"<g id=\"a_edge45\"><a xlink:href=\"http://www.wikidata.org/prop/direct/P25\" xlink:title=\"wdt:P25\" target=\"_other\">\n",
"<path fill=\"none\" stroke=\"#9fc9e5\" stroke-opacity=\"0.376471\" d=\"M4607.2731,-323.6198C4617.9187,-312.5648 4631.6188,-298.3378 4643.2694,-286.2391\"/>\n",
"<polygon fill=\"#9fc9e5\" fill-opacity=\"0.376471\" stroke=\"#9fc9e5\" stroke-opacity=\"0.376471\" points=\"4650.2131,-279.0284 4646.5181,-289.353 4646.7448,-282.63 4643.2766,-286.2316 4643.2766,-286.2316 4643.2766,-286.2316 4646.7448,-282.63 4640.0352,-283.1102 4650.2131,-279.0284 4650.2131,-279.0284\"/>\n",
"</a>\n",
"</g>\n",
"<g id=\"a_edge45&#45;label\"><a xlink:href=\"http://www.wikidata.org/prop/direct/P25\" xlink:title=\"wdt:P25\" target=\"_other\">\n",
"<text text-anchor=\"middle\" x=\"4646.5767\" y=\"-298.8\" font-family=\"Times,serif\" font-size=\"9.00\" fill=\"#204080\">wdt:P25</text>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- node76 -->\n",
"<g id=\"node77\" class=\"node\">\n",
"<title>node76</title>\n",
"<g id=\"a_node77\"><a xlink:href=\"http://www.wikidata.org/entity/Q235603\" xlink:title=\"Q235603\" target=\"_other\">\n",
"<text text-anchor=\"middle\" x=\"1341.5737\" y=\"-420\" font-family=\"DejaVu Sans,Tahoma,Geneva,sans-serif\" font-size=\"10.00\" fill=\"#0000ff\">Q235603</text>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- node76&#45;&gt;node10 -->\n",
"<g id=\"edge147\" class=\"edge\">\n",
"<title>node76&#45;&gt;node10</title>\n",
"<g id=\"a_edge147\"><a xlink:href=\"http://www.wikidata.org/prop/direct/P25\" xlink:title=\"wdt:P25\" target=\"_other\">\n",
"<path fill=\"none\" stroke=\"#9fc9e5\" stroke-opacity=\"0.376471\" d=\"M1358.9417,-404.6666C1363.6676,-399.2076 1368.579,-393.06 1372.5737,-387 1376.2172,-381.4729 1379.6391,-375.2538 1382.6491,-369.2429\"/>\n",
"<polygon fill=\"#9fc9e5\" fill-opacity=\"0.376471\" stroke=\"#9fc9e5\" stroke-opacity=\"0.376471\" points=\"1387.0127,-360.0982 1386.7675,-371.0613 1384.8594,-364.6108 1382.7061,-369.1234 1382.7061,-369.1234 1382.7061,-369.1234 1384.8594,-364.6108 1378.6448,-367.1854 1387.0127,-360.0982 1387.0127,-360.0982\"/>\n",
"</a>\n",
"</g>\n",
"<g id=\"a_edge147&#45;label\"><a xlink:href=\"http://www.wikidata.org/prop/direct/P25\" xlink:title=\"wdt:P25\" target=\"_other\">\n",
"<text text-anchor=\"middle\" x=\"1392.5767\" y=\"-379.8\" font-family=\"Times,serif\" font-size=\"9.00\" fill=\"#204080\">wdt:P25</text>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- node76&#45;&gt;node77 -->\n",
"<g id=\"edge48\" class=\"edge\">\n",
"<title>node76&#45;&gt;node77</title>\n",
"<g id=\"a_edge48\"><a xlink:href=\"http://www.wikidata.org/prop/direct/P25\" xlink:title=\"wdt:P25\" target=\"_other\">\n",
"<path fill=\"none\" stroke=\"#9fc9e5\" stroke-opacity=\"0.376471\" d=\"M1336.3788,-404.6442C1332.9481,-395.5116 1327.5765,-384.9651 1319.5737,-378 1302.2187,-362.8953 1290.9807,-368.131 1265.9504,-360.0132\"/>\n",
"<polygon fill=\"#9fc9e5\" fill-opacity=\"0.376471\" stroke=\"#9fc9e5\" stroke-opacity=\"0.376471\" points=\"1256.4891,-356.5297 1267.4281,-355.762 1261.1812,-358.2573 1265.8733,-359.9849 1265.8733,-359.9849 1265.8733,-359.9849 1261.1812,-358.2573 1264.3185,-364.2077 1256.4891,-356.5297 1256.4891,-356.5297\"/>\n",
"</a>\n",
"</g>\n",
"<g id=\"a_edge48&#45;label\"><a xlink:href=\"http://www.wikidata.org/prop/direct/P25\" xlink:title=\"wdt:P25\" target=\"_other\">\n",
"<text text-anchor=\"middle\" x=\"1342.5767\" y=\"-379.8\" font-family=\"Times,serif\" font-size=\"9.00\" fill=\"#204080\">wdt:P25</text>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- node76&#45;&gt;node83 -->\n",
"<g id=\"edge109\" class=\"edge\">\n",
"<title>node76&#45;&gt;node83</title>\n",
"<g id=\"a_edge109\"><a xlink:href=\"http://www.wikidata.org/prop/direct/P25\" xlink:title=\"wdt:P25\" target=\"_other\">\n",
"<path fill=\"none\" stroke=\"#9fc9e5\" stroke-opacity=\"0.376471\" d=\"M1313.5134,-404.924C1296.4104,-394.1533 1276.073,-381.8497 1266.5737,-378 1236.6739,-365.8828 1224.8362,-370.3355 1190.5462,-359.9083\"/>\n",
"<polygon fill=\"#9fc9e5\" fill-opacity=\"0.376471\" stroke=\"#9fc9e5\" stroke-opacity=\"0.376471\" points=\"1180.7868,-356.734 1191.6883,-355.5478 1185.5416,-358.2805 1190.2964,-359.8271 1190.2964,-359.8271 1190.2964,-359.8271 1185.5416,-358.2805 1188.9045,-364.1064 1180.7868,-356.734 1180.7868,-356.734\"/>\n",
"</a>\n",
"</g>\n",
"<g id=\"a_edge109&#45;label\"><a xlink:href=\"http://www.wikidata.org/prop/direct/P25\" xlink:title=\"wdt:P25\" target=\"_other\">\n",
"<text text-anchor=\"middle\" x=\"1298.5767\" y=\"-379.8\" font-family=\"Times,serif\" font-size=\"9.00\" fill=\"#204080\">wdt:P25</text>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- node78 -->\n",
"<g id=\"node79\" class=\"node\">\n",
"<title>node78</title>\n",
"<g id=\"a_node79\"><a xlink:href=\"http://www.wikidata.org/entity/Q193678\" xlink:title=\"Q193678\" target=\"_other\">\n",
"<text text-anchor=\"middle\" x=\"1155.5737\" y=\"-96\" font-family=\"DejaVu Sans,Tahoma,Geneva,sans-serif\" font-size=\"10.00\" fill=\"#0000ff\">Q193678</text>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- node78&#45;&gt;node46 -->\n",
"<g id=\"edge49\" class=\"edge\">\n",
"<title>node78&#45;&gt;node46</title>\n",
"<g id=\"a_edge49\"><a xlink:href=\"http://www.wikidata.org/prop/direct/P22\" xlink:title=\"wdt:P22\" target=\"_other\">\n",
"<path fill=\"none\" stroke=\"#9fc9e5\" stroke-opacity=\"0.376471\" d=\"M1159.9088,-80.9105C1162.0141,-72.6434 1164.7056,-62.7615 1167.5679,-54 1168.466,-51.2509 1169.459,-48.4064 1170.4893,-45.5766\"/>\n",
"<polygon fill=\"#9fc9e5\" fill-opacity=\"0.376471\" stroke=\"#9fc9e5\" stroke-opacity=\"0.376471\" points=\"1174.0533,-36.1728 1174.7173,-47.1185 1172.2813,-40.8483 1170.5093,-45.5238 1170.5093,-45.5238 1170.5093,-45.5238 1172.2813,-40.8483 1166.3014,-43.929 1174.0533,-36.1728 1174.0533,-36.1728\"/>\n",
"</a>\n",
"</g>\n",
"<g id=\"a_edge49&#45;label\"><a xlink:href=\"http://www.wikidata.org/prop/direct/P22\" xlink:title=\"wdt:P22\" target=\"_other\">\n",
"<text text-anchor=\"middle\" x=\"1182.5767\" y=\"-55.8\" font-family=\"Times,serif\" font-size=\"9.00\" fill=\"#204080\">wdt:P22</text>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- node80 -->\n",
"<g id=\"node81\" class=\"node\">\n",
"<title>node80</title>\n",
"<g id=\"a_node81\"><a xlink:href=\"http://www.wikidata.org/entity/Q1817\" xlink:title=\"Q1817\" target=\"_other\">\n",
"<text text-anchor=\"middle\" x=\"4329.5737\" y=\"-420\" font-family=\"DejaVu Sans,Tahoma,Geneva,sans-serif\" font-size=\"10.00\" fill=\"#0000ff\">Q1817</text>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- node80&#45;&gt;node37 -->\n",
"<g id=\"edge51\" class=\"edge\">\n",
"<title>node80&#45;&gt;node37</title>\n",
"<g id=\"a_edge51\"><a xlink:href=\"http://www.wikidata.org/prop/direct/P22\" xlink:title=\"wdt:P22\" target=\"_other\">\n",
"<path fill=\"none\" stroke=\"#9fc9e5\" stroke-opacity=\"0.376471\" d=\"M4318.9152,-404.974C4313.9944,-396.7197 4308.0421,-386.8303 4302.5737,-378 4300.7214,-375.0088 4298.7658,-371.8901 4296.8088,-368.7937\"/>\n",
"<polygon fill=\"#9fc9e5\" fill-opacity=\"0.376471\" stroke=\"#9fc9e5\" stroke-opacity=\"0.376471\" points=\"4291.3743,-360.2513 4300.5388,-366.2732 4294.0581,-364.47 4296.742,-368.6886 4296.742,-368.6886 4296.742,-368.6886 4294.0581,-364.47 4292.9451,-371.1041 4291.3743,-360.2513 4291.3743,-360.2513\"/>\n",
"</a>\n",
"</g>\n",
"<g id=\"a_edge51&#45;label\"><a xlink:href=\"http://www.wikidata.org/prop/direct/P22\" xlink:title=\"wdt:P22\" target=\"_other\">\n",
"<text text-anchor=\"middle\" x=\"4323.5767\" y=\"-379.8\" font-family=\"Times,serif\" font-size=\"9.00\" fill=\"#204080\">wdt:P22</text>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- node82 -->\n",
"<g id=\"node83\" class=\"node\">\n",
"<title>node82</title>\n",
"<g id=\"a_node83\"><a xlink:href=\"http://www.wikidata.org/entity/Q229871\" xlink:title=\"Q229871\" target=\"_other\">\n",
"<text text-anchor=\"middle\" x=\"2176.5737\" y=\"-420\" font-family=\"DejaVu Sans,Tahoma,Geneva,sans-serif\" font-size=\"10.00\" fill=\"#0000ff\">Q229871</text>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- node82&#45;&gt;node15 -->\n",
"<g id=\"edge53\" class=\"edge\">\n",
"<title>node82&#45;&gt;node15</title>\n",
"<g id=\"a_edge53\"><a xlink:href=\"http://www.wikidata.org/prop/direct/P25\" xlink:title=\"wdt:P25\" target=\"_other\">\n",
"<path fill=\"none\" stroke=\"#9fc9e5\" stroke-opacity=\"0.376471\" d=\"M2165.5027,-404.941C2162.6678,-399.3876 2160.0133,-393.121 2158.5679,-387 2157.2516,-381.4258 2157.7023,-375.5354 2159.0522,-369.9185\"/>\n",
"<polygon fill=\"#9fc9e5\" fill-opacity=\"0.376471\" stroke=\"#9fc9e5\" stroke-opacity=\"0.376471\" points=\"2162.2655,-360.2309 2163.3884,-371.1392 2160.6913,-364.9767 2159.1172,-369.7225 2159.1172,-369.7225 2159.1172,-369.7225 2160.6913,-364.9767 2154.846,-368.3057 2162.2655,-360.2309 2162.2655,-360.2309\"/>\n",
"</a>\n",
"</g>\n",
"<g id=\"a_edge53&#45;label\"><a xlink:href=\"http://www.wikidata.org/prop/direct/P25\" xlink:title=\"wdt:P25\" target=\"_other\">\n",
"<text text-anchor=\"middle\" x=\"2173.5767\" y=\"-379.8\" font-family=\"Times,serif\" font-size=\"9.00\" fill=\"#204080\">wdt:P25</text>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- node82&#45;&gt;node124 -->\n",
"<g id=\"edge131\" class=\"edge\">\n",
"<title>node82&#45;&gt;node124</title>\n",
"<g id=\"a_edge131\"><a xlink:href=\"http://www.wikidata.org/prop/direct/P25\" xlink:title=\"wdt:P25\" target=\"_other\">\n",
"<path fill=\"none\" stroke=\"#9fc9e5\" stroke-opacity=\"0.376471\" d=\"M2188.0276,-404.8821C2194.2393,-396.0304 2202.4955,-385.6637 2211.5679,-378 2220.2956,-370.6274 2230.7771,-364.1264 2240.8301,-358.7498\"/>\n",
"<polygon fill=\"#9fc9e5\" fill-opacity=\"0.376471\" stroke=\"#9fc9e5\" stroke-opacity=\"0.376471\" points=\"2249.8795,-354.1356 2243.0149,-362.6871 2245.4251,-356.4069 2240.9707,-358.6782 2240.9707,-358.6782 2240.9707,-358.6782 2245.4251,-356.4069 2238.9266,-354.6693 2249.8795,-354.1356 2249.8795,-354.1356\"/>\n",
"</a>\n",
"</g>\n",
"<g id=\"a_edge131&#45;label\"><a xlink:href=\"http://www.wikidata.org/prop/direct/P25\" xlink:title=\"wdt:P25\" target=\"_other\">\n",
"<text text-anchor=\"middle\" x=\"2226.5767\" y=\"-379.8\" font-family=\"Times,serif\" font-size=\"9.00\" fill=\"#204080\">wdt:P25</text>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- node84 -->\n",
"<g id=\"node85\" class=\"node\">\n",
"<title>node84</title>\n",
"<g id=\"a_node85\"><a xlink:href=\"http://www.wikidata.org/entity/Q1429\" xlink:title=\"Q1429\" target=\"_other\">\n",
"<text text-anchor=\"middle\" x=\"615.5737\" y=\"-420\" font-family=\"DejaVu Sans,Tahoma,Geneva,sans-serif\" font-size=\"10.00\" fill=\"#0000ff\">Q1429</text>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- node84&#45;&gt;node43 -->\n",
"<g id=\"edge57\" class=\"edge\">\n",
"<title>node84&#45;&gt;node43</title>\n",
"<g id=\"a_edge57\"><a xlink:href=\"http://www.wikidata.org/prop/direct/P22\" xlink:title=\"wdt:P22\" target=\"_other\">\n",
"<path fill=\"none\" stroke=\"#9fc9e5\" stroke-opacity=\"0.376471\" d=\"M626.5714,-404.588C631.455,-396.4323 637.2826,-386.728 642.5679,-378 644.3133,-375.1177 646.1419,-372.1089 647.9676,-369.112\"/>\n",
"<polygon fill=\"#9fc9e5\" fill-opacity=\"0.376471\" stroke=\"#9fc9e5\" stroke-opacity=\"0.376471\" points=\"653.3492,-360.2961 651.9797,-371.1762 650.744,-364.5638 648.1388,-368.8315 648.1388,-368.8315 648.1388,-368.8315 650.744,-364.5638 644.2979,-366.4868 653.3492,-360.2961 653.3492,-360.2961\"/>\n",
"</a>\n",
"</g>\n",
"<g id=\"a_edge57&#45;label\"><a xlink:href=\"http://www.wikidata.org/prop/direct/P22\" xlink:title=\"wdt:P22\" target=\"_other\">\n",
"<text text-anchor=\"middle\" x=\"657.5767\" y=\"-379.8\" font-family=\"Times,serif\" font-size=\"9.00\" fill=\"#204080\">wdt:P22</text>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- node85 -->\n",
"<g id=\"node86\" class=\"node\">\n",
"<title>node85</title>\n",
"<g id=\"a_node86\"><a xlink:href=\"http://www.wikidata.org/entity/Q1409\" xlink:title=\"Q1409\" target=\"_other\">\n",
"<text text-anchor=\"middle\" x=\"5163.5737\" y=\"-420\" font-family=\"DejaVu Sans,Tahoma,Geneva,sans-serif\" font-size=\"10.00\" fill=\"#0000ff\">Q1409</text>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- node86 -->\n",
"<g id=\"node87\" class=\"node\">\n",
"<title>node86</title>\n",
"<g id=\"a_node87\"><a xlink:href=\"http://www.wikidata.org/entity/Q235586\" xlink:title=\"Q235586\" target=\"_other\">\n",
"<text text-anchor=\"middle\" x=\"5201.5737\" y=\"-339\" font-family=\"DejaVu Sans,Tahoma,Geneva,sans-serif\" font-size=\"10.00\" fill=\"#0000ff\">Q235586</text>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- node85&#45;&gt;node86 -->\n",
"<g id=\"edge58\" class=\"edge\">\n",
"<title>node85&#45;&gt;node86</title>\n",
"<g id=\"a_edge58\"><a xlink:href=\"http://www.wikidata.org/prop/direct/P22\" xlink:title=\"wdt:P22\" target=\"_other\">\n",
"<path fill=\"none\" stroke=\"#9fc9e5\" stroke-opacity=\"0.376471\" d=\"M5172.134,-404.5996C5175.9334,-396.446 5180.4647,-386.7402 5184.5679,-378 5185.8769,-375.2117 5187.2454,-372.3033 5188.6132,-369.4011\"/>\n",
"<polygon fill=\"#9fc9e5\" fill-opacity=\"0.376471\" stroke=\"#9fc9e5\" stroke-opacity=\"0.376471\" points=\"5192.9054,-360.3061 5192.707,-371.2702 5190.7714,-364.8279 5188.6374,-369.3496 5188.6374,-369.3496 5188.6374,-369.3496 5190.7714,-364.8279 5184.5678,-367.429 5192.9054,-360.3061 5192.9054,-360.3061\"/>\n",
"</a>\n",
"</g>\n",
"<g id=\"a_edge58&#45;label\"><a xlink:href=\"http://www.wikidata.org/prop/direct/P22\" xlink:title=\"wdt:P22\" target=\"_other\">\n",
"<text text-anchor=\"middle\" x=\"5199.5767\" y=\"-379.8\" font-family=\"Times,serif\" font-size=\"9.00\" fill=\"#204080\">wdt:P22</text>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- node92 -->\n",
"<g id=\"node93\" class=\"node\">\n",
"<title>node92</title>\n",
"<g id=\"a_node93\"><a xlink:href=\"http://www.wikidata.org/entity/Q240928\" xlink:title=\"Q240928\" target=\"_other\">\n",
"<text text-anchor=\"middle\" x=\"5237.5737\" y=\"-420\" font-family=\"DejaVu Sans,Tahoma,Geneva,sans-serif\" font-size=\"10.00\" fill=\"#0000ff\">Q240928</text>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- node92&#45;&gt;node86 -->\n",
"<g id=\"edge67\" class=\"edge\">\n",
"<title>node92&#45;&gt;node86</title>\n",
"<g id=\"a_edge67\"><a xlink:href=\"http://www.wikidata.org/prop/direct/P25\" xlink:title=\"wdt:P25\" target=\"_other\">\n",
"<path fill=\"none\" stroke=\"#9fc9e5\" stroke-opacity=\"0.376471\" d=\"M5229.4048,-404.6198C5224.7695,-394.1906 5218.8796,-380.9383 5213.7129,-369.3131\"/>\n",
"<polygon fill=\"#9fc9e5\" fill-opacity=\"0.376471\" stroke=\"#9fc9e5\" stroke-opacity=\"0.376471\" points=\"5209.5864,-360.0284 5217.7599,-367.3389 5211.6171,-364.5975 5213.6478,-369.1665 5213.6478,-369.1665 5213.6478,-369.1665 5211.6171,-364.5975 5209.5356,-370.9942 5209.5864,-360.0284 5209.5864,-360.0284\"/>\n",
"</a>\n",
"</g>\n",
"<g id=\"a_edge67&#45;label\"><a xlink:href=\"http://www.wikidata.org/prop/direct/P25\" xlink:title=\"wdt:P25\" target=\"_other\">\n",
"<text text-anchor=\"middle\" x=\"5236.5767\" y=\"-379.8\" font-family=\"Times,serif\" font-size=\"9.00\" fill=\"#204080\">wdt:P25</text>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- node93 -->\n",
"<g id=\"node94\" class=\"node\">\n",
"<title>node93</title>\n",
"<g id=\"a_node94\"><a xlink:href=\"http://www.wikidata.org/entity/Q1528430\" xlink:title=\"Q1528430\" target=\"_other\">\n",
"<text text-anchor=\"middle\" x=\"4667.5737\" y=\"-339\" font-family=\"DejaVu Sans,Tahoma,Geneva,sans-serif\" font-size=\"10.00\" fill=\"#0000ff\">Q1528430</text>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- node93&#45;&gt;node74 -->\n",
"<g id=\"edge68\" class=\"edge\">\n",
"<title>node93&#45;&gt;node74</title>\n",
"<g id=\"a_edge68\"><a xlink:href=\"http://www.wikidata.org/prop/direct/P25\" xlink:title=\"wdt:P25\" target=\"_other\">\n",
"<path fill=\"none\" stroke=\"#9fc9e5\" stroke-opacity=\"0.376471\" d=\"M4667.5737,-323.6198C4667.5737,-313.5034 4667.5737,-300.7309 4667.5737,-289.3637\"/>\n",
"<polygon fill=\"#9fc9e5\" fill-opacity=\"0.376471\" stroke=\"#9fc9e5\" stroke-opacity=\"0.376471\" points=\"4667.5737,-279.0284 4672.0738,-289.0284 4667.5738,-284.0284 4667.5738,-289.0284 4667.5738,-289.0284 4667.5738,-289.0284 4667.5738,-284.0284 4663.0738,-289.0284 4667.5737,-279.0284 4667.5737,-279.0284\"/>\n",
"</a>\n",
"</g>\n",
"<g id=\"a_edge68&#45;label\"><a xlink:href=\"http://www.wikidata.org/prop/direct/P25\" xlink:title=\"wdt:P25\" target=\"_other\">\n",
"<text text-anchor=\"middle\" x=\"4682.5767\" y=\"-298.8\" font-family=\"Times,serif\" font-size=\"9.00\" fill=\"#204080\">wdt:P25</text>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- node94 -->\n",
"<g id=\"node95\" class=\"node\">\n",
"<title>node94</title>\n",
"<g id=\"a_node95\"><a xlink:href=\"http://www.wikidata.org/entity/Q2724125\" xlink:title=\"Q2724125\" target=\"_other\">\n",
"<text text-anchor=\"middle\" x=\"5315.5737\" y=\"-420\" font-family=\"DejaVu Sans,Tahoma,Geneva,sans-serif\" font-size=\"10.00\" fill=\"#0000ff\">Q2724125</text>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- node95 -->\n",
"<g id=\"node96\" class=\"node\">\n",
"<title>node95</title>\n",
"<g id=\"a_node96\"><a xlink:href=\"http://www.wikidata.org/entity/Q46840\" xlink:title=\"Q46840\" target=\"_other\">\n",
"<text text-anchor=\"middle\" x=\"5353.5737\" y=\"-339\" font-family=\"DejaVu Sans,Tahoma,Geneva,sans-serif\" font-size=\"10.00\" fill=\"#0000ff\">Q46840</text>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- node94&#45;&gt;node95 -->\n",
"<g id=\"edge71\" class=\"edge\">\n",
"<title>node94&#45;&gt;node95</title>\n",
"<g id=\"a_edge71\"><a xlink:href=\"http://www.wikidata.org/prop/direct/P25\" xlink:title=\"wdt:P25\" target=\"_other\">\n",
"<path fill=\"none\" stroke=\"#9fc9e5\" stroke-opacity=\"0.376471\" d=\"M5324.1965,-404.6198C5329.0893,-394.1906 5335.3064,-380.9383 5340.7602,-369.3131\"/>\n",
"<polygon fill=\"#9fc9e5\" fill-opacity=\"0.376471\" stroke=\"#9fc9e5\" stroke-opacity=\"0.376471\" points=\"5345.116,-360.0284 5344.9427,-370.9929 5342.9923,-364.555 5340.8687,-369.0816 5340.8687,-369.0816 5340.8687,-369.0816 5342.9923,-364.555 5336.7947,-367.1704 5345.116,-360.0284 5345.116,-360.0284\"/>\n",
"</a>\n",
"</g>\n",
"<g id=\"a_edge71&#45;label\"><a xlink:href=\"http://www.wikidata.org/prop/direct/P25\" xlink:title=\"wdt:P25\" target=\"_other\">\n",
"<text text-anchor=\"middle\" x=\"5351.5767\" y=\"-379.8\" font-family=\"Times,serif\" font-size=\"9.00\" fill=\"#204080\">wdt:P25</text>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- node98 -->\n",
"<g id=\"node99\" class=\"node\">\n",
"<title>node98</title>\n",
"<g id=\"a_node99\"><a xlink:href=\"http://www.wikidata.org/entity/Q43107\" xlink:title=\"Q43107\" target=\"_other\">\n",
"<text text-anchor=\"middle\" x=\"1521.5737\" y=\"-420\" font-family=\"DejaVu Sans,Tahoma,Geneva,sans-serif\" font-size=\"10.00\" fill=\"#0000ff\">Q43107</text>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- node98&#45;&gt;node7 -->\n",
"<g id=\"edge77\" class=\"edge\">\n",
"<title>node98&#45;&gt;node7</title>\n",
"<g id=\"a_edge77\"><a xlink:href=\"http://www.wikidata.org/prop/direct/P22\" xlink:title=\"wdt:P22\" target=\"_other\">\n",
"<path fill=\"none\" stroke=\"#9fc9e5\" stroke-opacity=\"0.376471\" d=\"M1514.7663,-404.6198C1510.9422,-394.2948 1506.0934,-381.203 1501.819,-369.6624\"/>\n",
"<polygon fill=\"#9fc9e5\" fill-opacity=\"0.376471\" stroke=\"#9fc9e5\" stroke-opacity=\"0.376471\" points=\"1498.2509,-360.0284 1505.944,-367.8429 1499.9875,-364.7171 1501.7241,-369.4059 1501.7241,-369.4059 1501.7241,-369.4059 1499.9875,-364.7171 1497.5042,-370.9688 1498.2509,-360.0284 1498.2509,-360.0284\"/>\n",
"</a>\n",
"</g>\n",
"<g id=\"a_edge77&#45;label\"><a xlink:href=\"http://www.wikidata.org/prop/direct/P22\" xlink:title=\"wdt:P22\" target=\"_other\">\n",
"<text text-anchor=\"middle\" x=\"1522.5767\" y=\"-379.8\" font-family=\"Times,serif\" font-size=\"9.00\" fill=\"#204080\">wdt:P22</text>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- node100 -->\n",
"<g id=\"node101\" class=\"node\">\n",
"<title>node100</title>\n",
"<g id=\"a_node101\"><a xlink:href=\"http://www.wikidata.org/entity/Q234734\" xlink:title=\"Q234734\" target=\"_other\">\n",
"<text text-anchor=\"middle\" x=\"689.5737\" y=\"-420\" font-family=\"DejaVu Sans,Tahoma,Geneva,sans-serif\" font-size=\"10.00\" fill=\"#0000ff\">Q234734</text>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- node100&#45;&gt;node43 -->\n",
"<g id=\"edge83\" class=\"edge\">\n",
"<title>node100&#45;&gt;node43</title>\n",
"<g id=\"a_edge83\"><a xlink:href=\"http://www.wikidata.org/prop/direct/P25\" xlink:title=\"wdt:P25\" target=\"_other\">\n",
"<path fill=\"none\" stroke=\"#9fc9e5\" stroke-opacity=\"0.376471\" d=\"M683.9008,-404.6198C680.7141,-394.2948 676.6734,-381.203 673.1115,-369.6624\"/>\n",
"<polygon fill=\"#9fc9e5\" fill-opacity=\"0.376471\" stroke=\"#9fc9e5\" stroke-opacity=\"0.376471\" points=\"670.138,-360.0284 677.3871,-368.2565 671.6127,-364.806 673.0873,-369.5836 673.0873,-369.5836 673.0873,-369.5836 671.6127,-364.806 668.7874,-370.9108 670.138,-360.0284 670.138,-360.0284\"/>\n",
"</a>\n",
"</g>\n",
"<g id=\"a_edge83&#45;label\"><a xlink:href=\"http://www.wikidata.org/prop/direct/P25\" xlink:title=\"wdt:P25\" target=\"_other\">\n",
"<text text-anchor=\"middle\" x=\"693.5767\" y=\"-379.8\" font-family=\"Times,serif\" font-size=\"9.00\" fill=\"#204080\">wdt:P25</text>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- node101 -->\n",
"<g id=\"node102\" class=\"node\">\n",
"<title>node101</title>\n",
"<g id=\"a_node102\"><a xlink:href=\"http://www.wikidata.org/entity/Q1233341\" xlink:title=\"Q1233341\" target=\"_other\">\n",
"<text text-anchor=\"middle\" x=\"1025.5737\" y=\"-420\" font-family=\"DejaVu Sans,Tahoma,Geneva,sans-serif\" font-size=\"10.00\" fill=\"#0000ff\">Q1233341</text>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- node101&#45;&gt;node42 -->\n",
"<g id=\"edge84\" class=\"edge\">\n",
"<title>node101&#45;&gt;node42</title>\n",
"<g id=\"a_edge84\"><a xlink:href=\"http://www.wikidata.org/prop/direct/P25\" xlink:title=\"wdt:P25\" target=\"_other\">\n",
"<path fill=\"none\" stroke=\"#9fc9e5\" stroke-opacity=\"0.376471\" d=\"M1019.9008,-404.6198C1016.7141,-394.2948 1012.6734,-381.203 1009.1115,-369.6624\"/>\n",
"<polygon fill=\"#9fc9e5\" fill-opacity=\"0.376471\" stroke=\"#9fc9e5\" stroke-opacity=\"0.376471\" points=\"1006.138,-360.0284 1013.3871,-368.2565 1007.6127,-364.806 1009.0873,-369.5836 1009.0873,-369.5836 1009.0873,-369.5836 1007.6127,-364.806 1004.7874,-370.9108 1006.138,-360.0284 1006.138,-360.0284\"/>\n",
"</a>\n",
"</g>\n",
"<g id=\"a_edge84&#45;label\"><a xlink:href=\"http://www.wikidata.org/prop/direct/P25\" xlink:title=\"wdt:P25\" target=\"_other\">\n",
"<text text-anchor=\"middle\" x=\"1029.5767\" y=\"-379.8\" font-family=\"Times,serif\" font-size=\"9.00\" fill=\"#204080\">wdt:P25</text>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- node102&#45;&gt;node72 -->\n",
"<g id=\"edge95\" class=\"edge\">\n",
"<title>node102&#45;&gt;node72</title>\n",
"<g id=\"a_edge95\"><a xlink:href=\"http://www.wikidata.org/prop/direct/P25\" xlink:title=\"wdt:P25\" target=\"_other\">\n",
"<path fill=\"none\" stroke=\"#9fc9e5\" stroke-opacity=\"0.376471\" d=\"M944.9331,-323.822C960.9263,-312.3579 981.7606,-297.4236 999.1026,-284.9926\"/>\n",
"<polygon fill=\"#9fc9e5\" fill-opacity=\"0.376471\" stroke=\"#9fc9e5\" stroke-opacity=\"0.376471\" points=\"1007.299,-279.1173 1001.7931,-288.6008 1003.2352,-282.0303 999.1713,-284.9433 999.1713,-284.9433 999.1713,-284.9433 1003.2352,-282.0303 996.5496,-281.2859 1007.299,-279.1173 1007.299,-279.1173\"/>\n",
"</a>\n",
"</g>\n",
"<g id=\"a_edge95&#45;label\"><a xlink:href=\"http://www.wikidata.org/prop/direct/P25\" xlink:title=\"wdt:P25\" target=\"_other\">\n",
"<text text-anchor=\"middle\" x=\"994.5767\" y=\"-298.8\" font-family=\"Times,serif\" font-size=\"9.00\" fill=\"#204080\">wdt:P25</text>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- node104 -->\n",
"<g id=\"node105\" class=\"node\">\n",
"<title>node104</title>\n",
"<g id=\"a_node105\"><a xlink:href=\"http://www.wikidata.org/entity/Q239015\" xlink:title=\"Q239015\" target=\"_other\">\n",
"<text text-anchor=\"middle\" x=\"5115.5737\" y=\"-339\" font-family=\"DejaVu Sans,Tahoma,Geneva,sans-serif\" font-size=\"10.00\" fill=\"#0000ff\">Q239015</text>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- node104&#45;&gt;node90 -->\n",
"<g id=\"edge88\" class=\"edge\">\n",
"<title>node104&#45;&gt;node90</title>\n",
"<g id=\"a_edge88\"><a xlink:href=\"http://www.wikidata.org/prop/direct/P25\" xlink:title=\"wdt:P25\" target=\"_other\">\n",
"<path fill=\"none\" stroke=\"#9fc9e5\" stroke-opacity=\"0.376471\" d=\"M5101.1607,-323.6669C5093.7775,-314.9684 5084.3062,-304.7983 5074.5737,-297 5066.8397,-290.803 5057.9094,-285.0149 5049.2485,-279.9698\"/>\n",
"<polygon fill=\"#9fc9e5\" fill-opacity=\"0.376471\" stroke=\"#9fc9e5\" stroke-opacity=\"0.376471\" points=\"5040.382,-274.9951 5051.305,-275.9637 5044.7425,-277.4416 5049.1031,-279.8882 5049.1031,-279.8882 5049.1031,-279.8882 5044.7425,-277.4416 5046.9012,-283.8127 5040.382,-274.9951 5040.382,-274.9951\"/>\n",
"</a>\n",
"</g>\n",
"<g id=\"a_edge88&#45;label\"><a xlink:href=\"http://www.wikidata.org/prop/direct/P25\" xlink:title=\"wdt:P25\" target=\"_other\">\n",
"<text text-anchor=\"middle\" x=\"5099.5767\" y=\"-298.8\" font-family=\"Times,serif\" font-size=\"9.00\" fill=\"#204080\">wdt:P25</text>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- node104&#45;&gt;node99 -->\n",
"<g id=\"edge107\" class=\"edge\">\n",
"<title>node104&#45;&gt;node99</title>\n",
"<g id=\"a_edge107\"><a xlink:href=\"http://www.wikidata.org/prop/direct/P25\" xlink:title=\"wdt:P25\" target=\"_other\">\n",
"<path fill=\"none\" stroke=\"#9fc9e5\" stroke-opacity=\"0.376471\" d=\"M5122.7611,-323.9587C5124.6949,-318.3005 5126.5365,-311.9716 5127.5737,-306 5128.5028,-300.6515 5129.0012,-294.8921 5129.2344,-289.3386\"/>\n",
"<polygon fill=\"#9fc9e5\" fill-opacity=\"0.376471\" stroke=\"#9fc9e5\" stroke-opacity=\"0.376471\" points=\"5129.3993,-279.0752 5133.738,-289.1462 5129.3189,-284.0745 5129.2385,-289.0739 5129.2385,-289.0739 5129.2385,-289.0739 5129.3189,-284.0745 5124.7391,-289.0016 5129.3993,-279.0752 5129.3993,-279.0752\"/>\n",
"</a>\n",
"</g>\n",
"<g id=\"a_edge107&#45;label\"><a xlink:href=\"http://www.wikidata.org/prop/direct/P25\" xlink:title=\"wdt:P25\" target=\"_other\">\n",
"<text text-anchor=\"middle\" x=\"5144.5767\" y=\"-298.8\" font-family=\"Times,serif\" font-size=\"9.00\" fill=\"#204080\">wdt:P25</text>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- node109 -->\n",
"<g id=\"node110\" class=\"node\">\n",
"<title>node109</title>\n",
"<g id=\"a_node110\"><a xlink:href=\"http://www.wikidata.org/entity/Q241102\" xlink:title=\"Q241102\" target=\"_other\">\n",
"<text text-anchor=\"middle\" x=\"4748.5737\" y=\"-420\" font-family=\"DejaVu Sans,Tahoma,Geneva,sans-serif\" font-size=\"10.00\" fill=\"#0000ff\">Q241102</text>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- node109&#45;&gt;node57 -->\n",
"<g id=\"edge118\" class=\"edge\">\n",
"<title>node109&#45;&gt;node57</title>\n",
"<g id=\"a_edge118\"><a xlink:href=\"http://www.wikidata.org/prop/direct/P25\" xlink:title=\"wdt:P25\" target=\"_other\">\n",
"<path fill=\"none\" stroke=\"#9fc9e5\" stroke-opacity=\"0.376471\" d=\"M4765.0885,-404.8884C4770.1374,-399.2274 4775.6539,-392.9145 4780.5737,-387 4785.5343,-381.0364 4790.7381,-374.5066 4795.5711,-368.3161\"/>\n",
"<polygon fill=\"#9fc9e5\" fill-opacity=\"0.376471\" stroke=\"#9fc9e5\" stroke-opacity=\"0.376471\" points=\"4801.8742,-360.17 4799.3136,-370.8328 4798.8144,-364.1245 4795.7546,-368.0789 4795.7546,-368.0789 4795.7546,-368.0789 4798.8144,-364.1245 4792.1956,-365.3251 4801.8742,-360.17 4801.8742,-360.17\"/>\n",
"</a>\n",
"</g>\n",
"<g id=\"a_edge118&#45;label\"><a xlink:href=\"http://www.wikidata.org/prop/direct/P25\" xlink:title=\"wdt:P25\" target=\"_other\">\n",
"<text text-anchor=\"middle\" x=\"4802.5767\" y=\"-379.8\" font-family=\"Times,serif\" font-size=\"9.00\" fill=\"#204080\">wdt:P25</text>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- node109&#45;&gt;node70 -->\n",
"<g id=\"edge94\" class=\"edge\">\n",
"<title>node109&#45;&gt;node70</title>\n",
"<g id=\"a_edge94\"><a xlink:href=\"http://www.wikidata.org/prop/direct/P25\" xlink:title=\"wdt:P25\" target=\"_other\">\n",
"<path fill=\"none\" stroke=\"#9fc9e5\" stroke-opacity=\"0.376471\" d=\"M4747.4392,-404.6198C4746.8082,-394.3991 4746.01,-381.4672 4745.3029,-370.0125\"/>\n",
"<polygon fill=\"#9fc9e5\" fill-opacity=\"0.376471\" stroke=\"#9fc9e5\" stroke-opacity=\"0.376471\" points=\"4744.6866,-360.0284 4749.7943,-369.7321 4744.9947,-365.0189 4745.3028,-370.0094 4745.3028,-370.0094 4745.3028,-370.0094 4744.9947,-365.0189 4740.8113,-370.2867 4744.6866,-360.0284 4744.6866,-360.0284\"/>\n",
"</a>\n",
"</g>\n",
"<g id=\"a_edge94&#45;label\"><a xlink:href=\"http://www.wikidata.org/prop/direct/P25\" xlink:title=\"wdt:P25\" target=\"_other\">\n",
"<text text-anchor=\"middle\" x=\"4761.5767\" y=\"-379.8\" font-family=\"Times,serif\" font-size=\"9.00\" fill=\"#204080\">wdt:P25</text>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- node109&#45;&gt;node125 -->\n",
"<g id=\"edge116\" class=\"edge\">\n",
"<title>node109&#45;&gt;node125</title>\n",
"<g id=\"a_edge116\"><a xlink:href=\"http://www.wikidata.org/prop/direct/P25\" xlink:title=\"wdt:P25\" target=\"_other\">\n",
"<path fill=\"none\" stroke=\"#9fc9e5\" stroke-opacity=\"0.376471\" d=\"M4720.3275,-412.311C4694.5387,-402.7338 4655.265,-388.6031 4620.5737,-378 4592.9879,-369.5686 4583.0846,-370.6746 4552.9679,-360.1731\"/>\n",
"<polygon fill=\"#9fc9e5\" fill-opacity=\"0.376471\" stroke=\"#9fc9e5\" stroke-opacity=\"0.376471\" points=\"4543.4218,-356.7036 4554.3575,-355.8902 4548.1211,-358.4116 4552.8203,-360.1196 4552.8203,-360.1196 4552.8203,-360.1196 4548.1211,-358.4116 4551.2831,-364.3489 4543.4218,-356.7036 4543.4218,-356.7036\"/>\n",
"</a>\n",
"</g>\n",
"<g id=\"a_edge116&#45;label\"><a xlink:href=\"http://www.wikidata.org/prop/direct/P25\" xlink:title=\"wdt:P25\" target=\"_other\">\n",
"<text text-anchor=\"middle\" x=\"4660.5767\" y=\"-379.8\" font-family=\"Times,serif\" font-size=\"9.00\" fill=\"#204080\">wdt:P25</text>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- node110 -->\n",
"<g id=\"node111\" class=\"node\">\n",
"<title>node110</title>\n",
"<g id=\"a_node111\"><a xlink:href=\"http://www.wikidata.org/entity/Q260039\" xlink:title=\"Q260039\" target=\"_other\">\n",
"<text text-anchor=\"middle\" x=\"4937.5737\" y=\"-420\" font-family=\"DejaVu Sans,Tahoma,Geneva,sans-serif\" font-size=\"10.00\" fill=\"#0000ff\">Q260039</text>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- node110&#45;&gt;node61 -->\n",
"<g id=\"edge96\" class=\"edge\">\n",
"<title>node110&#45;&gt;node61</title>\n",
"<g id=\"a_edge96\"><a xlink:href=\"http://www.wikidata.org/prop/direct/P25\" xlink:title=\"wdt:P25\" target=\"_other\">\n",
"<path fill=\"none\" stroke=\"#9fc9e5\" stroke-opacity=\"0.376471\" d=\"M4932.8085,-404.6198C4930.1587,-394.3991 4926.806,-381.4672 4923.8362,-370.0125\"/>\n",
"<polygon fill=\"#9fc9e5\" fill-opacity=\"0.376471\" stroke=\"#9fc9e5\" stroke-opacity=\"0.376471\" points=\"4921.2478,-360.0284 4928.1134,-368.579 4922.5026,-364.8684 4923.7575,-369.7084 4923.7575,-369.7084 4923.7575,-369.7084 4922.5026,-364.8684 4919.4015,-370.8377 4921.2478,-360.0284 4921.2478,-360.0284\"/>\n",
"</a>\n",
"</g>\n",
"<g id=\"a_edge96&#45;label\"><a xlink:href=\"http://www.wikidata.org/prop/direct/P25\" xlink:title=\"wdt:P25\" target=\"_other\">\n",
"<text text-anchor=\"middle\" x=\"4943.5767\" y=\"-379.8\" font-family=\"Times,serif\" font-size=\"9.00\" fill=\"#204080\">wdt:P25</text>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- node112 -->\n",
"<g id=\"node113\" class=\"node\">\n",
"<title>node112</title>\n",
"<g id=\"a_node113\"><a xlink:href=\"http://www.wikidata.org/entity/Q63533\" xlink:title=\"Q63533\" target=\"_other\">\n",
"<text text-anchor=\"middle\" x=\"2727.5737\" y=\"-177\" font-family=\"DejaVu Sans,Tahoma,Geneva,sans-serif\" font-size=\"10.00\" fill=\"#0000ff\">Q63533</text>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- node112&#45;&gt;node17 -->\n",
"<g id=\"edge98\" class=\"edge\">\n",
"<title>node112&#45;&gt;node17</title>\n",
"<g id=\"a_edge98\"><a xlink:href=\"http://www.wikidata.org/prop/direct/P25\" xlink:title=\"wdt:P25\" target=\"_other\">\n",
"<path fill=\"none\" stroke=\"#9fc9e5\" stroke-opacity=\"0.376471\" d=\"M2754.7513,-165.7053C2779.4989,-152.6887 2816.2793,-133.3432 2843.8669,-118.8328\"/>\n",
"<polygon fill=\"#9fc9e5\" fill-opacity=\"0.376471\" stroke=\"#9fc9e5\" stroke-opacity=\"0.376471\" points=\"2852.8396,-114.1134 2846.084,-122.7512 2848.4144,-116.441 2843.9892,-118.7686 2843.9892,-118.7686 2843.9892,-118.7686 2848.4144,-116.441 2841.8943,-114.7859 2852.8396,-114.1134 2852.8396,-114.1134\"/>\n",
"</a>\n",
"</g>\n",
"<g id=\"a_edge98&#45;label\"><a xlink:href=\"http://www.wikidata.org/prop/direct/P25\" xlink:title=\"wdt:P25\" target=\"_other\">\n",
"<text text-anchor=\"middle\" x=\"2824.5767\" y=\"-136.8\" font-family=\"Times,serif\" font-size=\"9.00\" fill=\"#204080\">wdt:P25</text>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- node113 -->\n",
"<g id=\"node114\" class=\"node\">\n",
"<title>node113</title>\n",
"<g id=\"a_node114\"><a xlink:href=\"http://www.wikidata.org/entity/Q46768\" xlink:title=\"Q46768\" target=\"_other\">\n",
"<text text-anchor=\"middle\" x=\"3102.5737\" y=\"-420\" font-family=\"DejaVu Sans,Tahoma,Geneva,sans-serif\" font-size=\"10.00\" fill=\"#0000ff\">Q46768</text>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- node113&#45;&gt;node18 -->\n",
"<g id=\"edge126\" class=\"edge\">\n",
"<title>node113&#45;&gt;node18</title>\n",
"<g id=\"a_edge126\"><a xlink:href=\"http://www.wikidata.org/prop/direct/P22\" xlink:title=\"wdt:P22\" target=\"_other\">\n",
"<path fill=\"none\" stroke=\"#9fc9e5\" stroke-opacity=\"0.376471\" d=\"M3075.4585,-404.8788C3058.2838,-393.7699 3037.5025,-381.1002 3027.5737,-378 2968.692,-359.6143 2811.9928,-365.726 2750.5737,-360 2713.3417,-356.5289 2670.9993,-351.2432 2641.1712,-347.2963\"/>\n",
"<polygon fill=\"#9fc9e5\" fill-opacity=\"0.376471\" stroke=\"#9fc9e5\" stroke-opacity=\"0.376471\" points=\"2631.1715,-345.9612 2641.6791,-342.8242 2636.1275,-346.6229 2641.0835,-347.2847 2641.0835,-347.2847 2641.0835,-347.2847 2636.1275,-346.6229 2640.488,-351.7451 2631.1715,-345.9612 2631.1715,-345.9612\"/>\n",
"</a>\n",
"</g>\n",
"<g id=\"a_edge126&#45;label\"><a xlink:href=\"http://www.wikidata.org/prop/direct/P22\" xlink:title=\"wdt:P22\" target=\"_other\">\n",
"<text text-anchor=\"middle\" x=\"3061.5767\" y=\"-379.8\" font-family=\"Times,serif\" font-size=\"9.00\" fill=\"#204080\">wdt:P22</text>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- node113&#45;&gt;node65 -->\n",
"<g id=\"edge151\" class=\"edge\">\n",
"<title>node113&#45;&gt;node65</title>\n",
"<g id=\"a_edge151\"><a xlink:href=\"http://www.wikidata.org/prop/direct/P22\" xlink:title=\"wdt:P22\" target=\"_other\">\n",
"<path fill=\"none\" stroke=\"#9fc9e5\" stroke-opacity=\"0.376471\" d=\"M3112.2055,-404.6435C3114.859,-399.0817 3117.5584,-392.8851 3119.5737,-387 3130.8037,-354.2062 3138.6855,-315.039 3143.1652,-289.1741\"/>\n",
"<polygon fill=\"#9fc9e5\" fill-opacity=\"0.376471\" stroke=\"#9fc9e5\" stroke-opacity=\"0.376471\" points=\"3144.8229,-279.2924 3147.6064,-289.8991 3143.9956,-284.2235 3143.1684,-289.1546 3143.1684,-289.1546 3143.1684,-289.1546 3143.9956,-284.2235 3138.7304,-288.41 3144.8229,-279.2924 3144.8229,-279.2924\"/>\n",
"</a>\n",
"</g>\n",
"<g id=\"a_edge151&#45;label\"><a xlink:href=\"http://www.wikidata.org/prop/direct/P22\" xlink:title=\"wdt:P22\" target=\"_other\">\n",
"<text text-anchor=\"middle\" x=\"3151.5767\" y=\"-339.3\" font-family=\"Times,serif\" font-size=\"9.00\" fill=\"#204080\">wdt:P22</text>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- node114 -->\n",
"<g id=\"node115\" class=\"node\">\n",
"<title>node114</title>\n",
"<g id=\"a_node115\"><a xlink:href=\"http://www.wikidata.org/entity/Q182070\" xlink:title=\"Q182070\" target=\"_other\">\n",
"<text text-anchor=\"middle\" x=\"3061.5737\" y=\"-339\" font-family=\"DejaVu Sans,Tahoma,Geneva,sans-serif\" font-size=\"10.00\" fill=\"#0000ff\">Q182070</text>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- node113&#45;&gt;node114 -->\n",
"<g id=\"edge99\" class=\"edge\">\n",
"<title>node113&#45;&gt;node114</title>\n",
"<g id=\"a_edge99\"><a xlink:href=\"http://www.wikidata.org/prop/direct/P22\" xlink:title=\"wdt:P22\" target=\"_other\">\n",
"<path fill=\"none\" stroke=\"#9fc9e5\" stroke-opacity=\"0.376471\" d=\"M3093.9218,-404.981C3089.9189,-396.7282 3085.065,-386.8379 3080.5737,-378 3079.147,-375.1925 3077.6412,-372.2715 3076.1272,-369.3617\"/>\n",
"<polygon fill=\"#9fc9e5\" fill-opacity=\"0.376471\" stroke=\"#9fc9e5\" stroke-opacity=\"0.376471\" points=\"3071.3493,-360.2572 3079.9809,-367.0209 3073.6728,-364.6846 3075.9962,-369.112 3075.9962,-369.112 3075.9962,-369.112 3073.6728,-364.6846 3072.0116,-371.2031 3071.3493,-360.2572 3071.3493,-360.2572\"/>\n",
"</a>\n",
"</g>\n",
"<g id=\"a_edge99&#45;label\"><a xlink:href=\"http://www.wikidata.org/prop/direct/P22\" xlink:title=\"wdt:P22\" target=\"_other\">\n",
"<text text-anchor=\"middle\" x=\"3100.5767\" y=\"-379.8\" font-family=\"Times,serif\" font-size=\"9.00\" fill=\"#204080\">wdt:P22</text>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- node116 -->\n",
"<g id=\"node117\" class=\"node\">\n",
"<title>node116</title>\n",
"<g id=\"a_node117\"><a xlink:href=\"http://www.wikidata.org/entity/Q170164\" xlink:title=\"Q170164\" target=\"_other\">\n",
"<text text-anchor=\"middle\" x=\"3267.5737\" y=\"-339\" font-family=\"DejaVu Sans,Tahoma,Geneva,sans-serif\" font-size=\"10.00\" fill=\"#0000ff\">Q170164</text>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- node116&#45;&gt;node53 -->\n",
"<g id=\"edge103\" class=\"edge\">\n",
"<title>node116&#45;&gt;node53</title>\n",
"<g id=\"a_edge103\"><a xlink:href=\"http://www.wikidata.org/prop/direct/P25\" xlink:title=\"wdt:P25\" target=\"_other\">\n",
"<path fill=\"none\" stroke=\"#9fc9e5\" stroke-opacity=\"0.376471\" d=\"M3267.5737,-323.6198C3267.5737,-313.5034 3267.5737,-300.7309 3267.5737,-289.3637\"/>\n",
"<polygon fill=\"#9fc9e5\" fill-opacity=\"0.376471\" stroke=\"#9fc9e5\" stroke-opacity=\"0.376471\" points=\"3267.5737,-279.0284 3272.0738,-289.0284 3267.5738,-284.0284 3267.5738,-289.0284 3267.5738,-289.0284 3267.5738,-289.0284 3267.5738,-284.0284 3263.0738,-289.0284 3267.5737,-279.0284 3267.5737,-279.0284\"/>\n",
"</a>\n",
"</g>\n",
"<g id=\"a_edge103&#45;label\"><a xlink:href=\"http://www.wikidata.org/prop/direct/P25\" xlink:title=\"wdt:P25\" target=\"_other\">\n",
"<text text-anchor=\"middle\" x=\"3282.5767\" y=\"-298.8\" font-family=\"Times,serif\" font-size=\"9.00\" fill=\"#204080\">wdt:P25</text>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- node117 -->\n",
"<g id=\"node118\" class=\"node\">\n",
"<title>node117</title>\n",
"<g id=\"a_node118\"><a xlink:href=\"http://www.wikidata.org/entity/Q254471\" xlink:title=\"Q254471\" target=\"_other\">\n",
"<text text-anchor=\"middle\" x=\"779.5737\" y=\"-420\" font-family=\"DejaVu Sans,Tahoma,Geneva,sans-serif\" font-size=\"10.00\" fill=\"#0000ff\">Q254471</text>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- node117&#45;&gt;node5 -->\n",
"<g id=\"edge104\" class=\"edge\">\n",
"<title>node117&#45;&gt;node5</title>\n",
"<g id=\"a_edge104\"><a xlink:href=\"http://www.wikidata.org/prop/direct/P25\" xlink:title=\"wdt:P25\" target=\"_other\">\n",
"<path fill=\"none\" stroke=\"#9fc9e5\" stroke-opacity=\"0.376471\" d=\"M765.3995,-404.8676C760.6913,-396.5919 757.5592,-386.715 761.5679,-378 763.4706,-373.8635 766.109,-370.0245 769.1455,-366.5146\"/>\n",
"<polygon fill=\"#9fc9e5\" fill-opacity=\"0.376471\" stroke=\"#9fc9e5\" stroke-opacity=\"0.376471\" points=\"776.2976,-359.3691 772.4038,-369.6204 772.7604,-362.903 769.2233,-366.437 769.2233,-366.437 769.2233,-366.437 772.7604,-362.903 766.0427,-363.2535 776.2976,-359.3691 776.2976,-359.3691\"/>\n",
"</a>\n",
"</g>\n",
"<g id=\"a_edge104&#45;label\"><a xlink:href=\"http://www.wikidata.org/prop/direct/P25\" xlink:title=\"wdt:P25\" target=\"_other\">\n",
"<text text-anchor=\"middle\" x=\"776.5767\" y=\"-379.8\" font-family=\"Times,serif\" font-size=\"9.00\" fill=\"#204080\">wdt:P25</text>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- node117&#45;&gt;node102 -->\n",
"<g id=\"edge143\" class=\"edge\">\n",
"<title>node117&#45;&gt;node102</title>\n",
"<g id=\"a_edge143\"><a xlink:href=\"http://www.wikidata.org/prop/direct/P25\" xlink:title=\"wdt:P25\" target=\"_other\">\n",
"<path fill=\"none\" stroke=\"#9fc9e5\" stroke-opacity=\"0.376471\" d=\"M794.3473,-404.9333C802.4991,-395.8798 813.2484,-385.3168 824.5679,-378 841.8161,-366.8509 863.0284,-358.3963 881.0306,-352.4916\"/>\n",
"<polygon fill=\"#9fc9e5\" fill-opacity=\"0.376471\" stroke=\"#9fc9e5\" stroke-opacity=\"0.376471\" points=\"890.6559,-349.4726 882.461,-356.7592 885.8851,-350.969 881.1143,-352.4654 881.1143,-352.4654 881.1143,-352.4654 885.8851,-350.969 879.7675,-348.1716 890.6559,-349.4726 890.6559,-349.4726\"/>\n",
"</a>\n",
"</g>\n",
"<g id=\"a_edge143&#45;label\"><a xlink:href=\"http://www.wikidata.org/prop/direct/P25\" xlink:title=\"wdt:P25\" target=\"_other\">\n",
"<text text-anchor=\"middle\" x=\"839.5767\" y=\"-379.8\" font-family=\"Times,serif\" font-size=\"9.00\" fill=\"#204080\">wdt:P25</text>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- node118 -->\n",
"<g id=\"node119\" class=\"node\">\n",
"<title>node118</title>\n",
"<g id=\"a_node119\"><a xlink:href=\"http://www.wikidata.org/entity/Q1777\" xlink:title=\"Q1777\" target=\"_other\">\n",
"<text text-anchor=\"middle\" x=\"5463.5737\" y=\"-420\" font-family=\"DejaVu Sans,Tahoma,Geneva,sans-serif\" font-size=\"10.00\" fill=\"#0000ff\">Q1777</text>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- node119 -->\n",
"<g id=\"node120\" class=\"node\">\n",
"<title>node119</title>\n",
"<g id=\"a_node120\"><a xlink:href=\"http://www.wikidata.org/entity/Q518890\" xlink:title=\"Q518890\" target=\"_other\">\n",
"<text text-anchor=\"middle\" x=\"5501.5737\" y=\"-339\" font-family=\"DejaVu Sans,Tahoma,Geneva,sans-serif\" font-size=\"10.00\" fill=\"#0000ff\">Q518890</text>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- node118&#45;&gt;node119 -->\n",
"<g id=\"edge105\" class=\"edge\">\n",
"<title>node118&#45;&gt;node119</title>\n",
"<g id=\"a_edge105\"><a xlink:href=\"http://www.wikidata.org/prop/direct/P22\" xlink:title=\"wdt:P22\" target=\"_other\">\n",
"<path fill=\"none\" stroke=\"#9fc9e5\" stroke-opacity=\"0.376471\" d=\"M5472.1965,-404.6198C5477.0893,-394.1906 5483.3064,-380.9383 5488.7602,-369.3131\"/>\n",
"<polygon fill=\"#9fc9e5\" fill-opacity=\"0.376471\" stroke=\"#9fc9e5\" stroke-opacity=\"0.376471\" points=\"5493.116,-360.0284 5492.9427,-370.9929 5490.9923,-364.555 5488.8687,-369.0816 5488.8687,-369.0816 5488.8687,-369.0816 5490.9923,-364.555 5484.7947,-367.1704 5493.116,-360.0284 5493.116,-360.0284\"/>\n",
"</a>\n",
"</g>\n",
"<g id=\"a_edge105&#45;label\"><a xlink:href=\"http://www.wikidata.org/prop/direct/P22\" xlink:title=\"wdt:P22\" target=\"_other\">\n",
"<text text-anchor=\"middle\" x=\"5499.5767\" y=\"-379.8\" font-family=\"Times,serif\" font-size=\"9.00\" fill=\"#204080\">wdt:P22</text>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- node120 -->\n",
"<g id=\"node121\" class=\"node\">\n",
"<title>node120</title>\n",
"<g id=\"a_node121\"><a xlink:href=\"http://www.wikidata.org/entity/Q171023\" xlink:title=\"Q171023\" target=\"_other\">\n",
"<text text-anchor=\"middle\" x=\"5617.5737\" y=\"-420\" font-family=\"DejaVu Sans,Tahoma,Geneva,sans-serif\" font-size=\"10.00\" fill=\"#0000ff\">Q171023</text>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- node121 -->\n",
"<g id=\"node122\" class=\"node\">\n",
"<title>node121</title>\n",
"<g id=\"a_node122\"><a xlink:href=\"http://www.wikidata.org/entity/Q202222\" xlink:title=\"Q202222\" target=\"_other\">\n",
"<text text-anchor=\"middle\" x=\"5654.5737\" y=\"-339\" font-family=\"DejaVu Sans,Tahoma,Geneva,sans-serif\" font-size=\"10.00\" fill=\"#0000ff\">Q202222</text>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- node120&#45;&gt;node121 -->\n",
"<g id=\"edge110\" class=\"edge\">\n",
"<title>node120&#45;&gt;node121</title>\n",
"<g id=\"a_edge110\"><a xlink:href=\"http://www.wikidata.org/prop/direct/P22\" xlink:title=\"wdt:P22\" target=\"_other\">\n",
"<path fill=\"none\" stroke=\"#9fc9e5\" stroke-opacity=\"0.376471\" d=\"M5625.9696,-404.6198C5630.7336,-394.1906 5636.7871,-380.9383 5642.0974,-369.3131\"/>\n",
"<polygon fill=\"#9fc9e5\" fill-opacity=\"0.376471\" stroke=\"#9fc9e5\" stroke-opacity=\"0.376471\" points=\"5646.3385,-360.0284 5646.2767,-370.9941 5644.261,-364.5764 5642.1835,-369.1244 5642.1835,-369.1244 5642.1835,-369.1244 5644.261,-364.5764 5638.0904,-367.2546 5646.3385,-360.0284 5646.3385,-360.0284\"/>\n",
"</a>\n",
"</g>\n",
"<g id=\"a_edge110&#45;label\"><a xlink:href=\"http://www.wikidata.org/prop/direct/P22\" xlink:title=\"wdt:P22\" target=\"_other\">\n",
"<text text-anchor=\"middle\" x=\"5652.5767\" y=\"-379.8\" font-family=\"Times,serif\" font-size=\"9.00\" fill=\"#204080\">wdt:P22</text>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- node122 -->\n",
"<g id=\"node123\" class=\"node\">\n",
"<title>node122</title>\n",
"<g id=\"a_node123\"><a xlink:href=\"http://www.wikidata.org/entity/Q232090\" xlink:title=\"Q232090\" target=\"_other\">\n",
"<text text-anchor=\"middle\" x=\"28.5737\" y=\"-339\" font-family=\"DejaVu Sans,Tahoma,Geneva,sans-serif\" font-size=\"10.00\" fill=\"#0000ff\">Q232090</text>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- node122&#45;&gt;node1 -->\n",
"<g id=\"edge111\" class=\"edge\">\n",
"<title>node122&#45;&gt;node1</title>\n",
"<g id=\"a_edge111\"><a xlink:href=\"http://www.wikidata.org/prop/direct/P25\" xlink:title=\"wdt:P25\" target=\"_other\">\n",
"<path fill=\"none\" stroke=\"#9fc9e5\" stroke-opacity=\"0.376471\" d=\"M26.6077,-323.6425C26.3127,-315.3214 26.8113,-305.4712 29.5679,-297 30.5804,-293.8884 31.9583,-290.8064 33.5502,-287.8318\"/>\n",
"<polygon fill=\"#9fc9e5\" fill-opacity=\"0.376471\" stroke=\"#9fc9e5\" stroke-opacity=\"0.376471\" points=\"38.8169,-279.3084 37.3884,-290.1809 36.1886,-283.5619 33.5603,-287.8154 33.5603,-287.8154 33.5603,-287.8154 36.1886,-283.5619 29.7321,-285.45 38.8169,-279.3084 38.8169,-279.3084\"/>\n",
"</a>\n",
"</g>\n",
"<g id=\"a_edge111&#45;label\"><a xlink:href=\"http://www.wikidata.org/prop/direct/P25\" xlink:title=\"wdt:P25\" target=\"_other\">\n",
"<text text-anchor=\"middle\" x=\"44.5767\" y=\"-298.8\" font-family=\"Times,serif\" font-size=\"9.00\" fill=\"#204080\">wdt:P25</text>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- node123 -->\n",
"<g id=\"node124\" class=\"node\">\n",
"<title>node123</title>\n",
"<g id=\"a_node124\"><a xlink:href=\"http://www.wikidata.org/entity/Q45530\" xlink:title=\"Q45530\" target=\"_other\">\n",
"<text text-anchor=\"middle\" x=\"2963.5737\" y=\"-420\" font-family=\"DejaVu Sans,Tahoma,Geneva,sans-serif\" font-size=\"10.00\" fill=\"#0000ff\">Q45530</text>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- node123&#45;&gt;node18 -->\n",
"<g id=\"edge112\" class=\"edge\">\n",
"<title>node123&#45;&gt;node18</title>\n",
"<g id=\"a_edge112\"><a xlink:href=\"http://www.wikidata.org/prop/direct/P25\" xlink:title=\"wdt:P25\" target=\"_other\">\n",
"<path fill=\"none\" stroke=\"#9fc9e5\" stroke-opacity=\"0.376471\" d=\"M2936.4401,-416.9118C2872.9355,-402.6629 2714.4766,-367.1084 2641.048,-350.6327\"/>\n",
"<polygon fill=\"#9fc9e5\" fill-opacity=\"0.376471\" stroke=\"#9fc9e5\" stroke-opacity=\"0.376471\" points=\"2631.2699,-348.4388 2642.0125,-346.2373 2636.1486,-349.5335 2641.0273,-350.6282 2641.0273,-350.6282 2641.0273,-350.6282 2636.1486,-349.5335 2640.0421,-355.019 2631.2699,-348.4388 2631.2699,-348.4388\"/>\n",
"</a>\n",
"</g>\n",
"<g id=\"a_edge112&#45;label\"><a xlink:href=\"http://www.wikidata.org/prop/direct/P25\" xlink:title=\"wdt:P25\" target=\"_other\">\n",
"<text text-anchor=\"middle\" x=\"2809.5767\" y=\"-379.8\" font-family=\"Times,serif\" font-size=\"9.00\" fill=\"#204080\">wdt:P25</text>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- node123&#45;&gt;node65 -->\n",
"<g id=\"edge117\" class=\"edge\">\n",
"<title>node123&#45;&gt;node65</title>\n",
"<g id=\"a_edge117\"><a xlink:href=\"http://www.wikidata.org/prop/direct/P25\" xlink:title=\"wdt:P25\" target=\"_other\">\n",
"<path fill=\"none\" stroke=\"#9fc9e5\" stroke-opacity=\"0.376471\" d=\"M2965.6359,-404.7095C2968.7545,-383.6282 2976.2646,-348.7163 2993.5679,-324 3019.7296,-286.6302 3072.2146,-271.3918 3108.5938,-265.2006\"/>\n",
"<polygon fill=\"#9fc9e5\" fill-opacity=\"0.376471\" stroke=\"#9fc9e5\" stroke-opacity=\"0.376471\" points=\"3118.8554,-263.6191 3109.6575,-269.5899 3113.9137,-264.3807 3108.972,-265.1424 3108.972,-265.1424 3108.972,-265.1424 3113.9137,-264.3807 3108.2865,-260.6949 3118.8554,-263.6191 3118.8554,-263.6191\"/>\n",
"</a>\n",
"</g>\n",
"<g id=\"a_edge117&#45;label\"><a xlink:href=\"http://www.wikidata.org/prop/direct/P25\" xlink:title=\"wdt:P25\" target=\"_other\">\n",
"<text text-anchor=\"middle\" x=\"3008.5767\" y=\"-339.3\" font-family=\"Times,serif\" font-size=\"9.00\" fill=\"#204080\">wdt:P25</text>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- node123&#45;&gt;node114 -->\n",
"<g id=\"edge154\" class=\"edge\">\n",
"<title>node123&#45;&gt;node114</title>\n",
"<g id=\"a_edge154\"><a xlink:href=\"http://www.wikidata.org/prop/direct/P25\" xlink:title=\"wdt:P25\" target=\"_other\">\n",
"<path fill=\"none\" stroke=\"#9fc9e5\" stroke-opacity=\"0.376471\" d=\"M2974.6708,-404.9386C2980.6975,-396.1013 2988.7199,-385.7305 2997.5679,-378 3005.4166,-371.1426 3014.7797,-364.9937 3023.8894,-359.8001\"/>\n",
"<polygon fill=\"#9fc9e5\" fill-opacity=\"0.376471\" stroke=\"#9fc9e5\" stroke-opacity=\"0.376471\" points=\"3032.8493,-354.934 3026.2093,-363.661 3028.4555,-357.3203 3024.0616,-359.7066 3024.0616,-359.7066 3024.0616,-359.7066 3028.4555,-357.3203 3021.914,-355.7521 3032.8493,-354.934 3032.8493,-354.934\"/>\n",
"</a>\n",
"</g>\n",
"<g id=\"a_edge154&#45;label\"><a xlink:href=\"http://www.wikidata.org/prop/direct/P25\" xlink:title=\"wdt:P25\" target=\"_other\">\n",
"<text text-anchor=\"middle\" x=\"3012.5767\" y=\"-379.8\" font-family=\"Times,serif\" font-size=\"9.00\" fill=\"#204080\">wdt:P25</text>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- node126 -->\n",
"<g id=\"node127\" class=\"node\">\n",
"<title>node126</title>\n",
"<g id=\"a_node127\"><a xlink:href=\"http://www.wikidata.org/entity/Q45522\" xlink:title=\"Q45522\" target=\"_other\">\n",
"<text text-anchor=\"middle\" x=\"3585.5737\" y=\"-258\" font-family=\"DejaVu Sans,Tahoma,Geneva,sans-serif\" font-size=\"10.00\" fill=\"#0000ff\">Q45522</text>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- node126&#45;&gt;node89 -->\n",
"<g id=\"edge122\" class=\"edge\">\n",
"<title>node126&#45;&gt;node89</title>\n",
"<g id=\"a_edge122\"><a xlink:href=\"http://www.wikidata.org/prop/direct/P25\" xlink:title=\"wdt:P25\" target=\"_other\">\n",
"<path fill=\"none\" stroke=\"#9fc9e5\" stroke-opacity=\"0.376471\" d=\"M3579.447,-242.6198C3576.0053,-232.2948 3571.6414,-219.203 3567.7945,-207.6624\"/>\n",
"<polygon fill=\"#9fc9e5\" fill-opacity=\"0.376471\" stroke=\"#9fc9e5\" stroke-opacity=\"0.376471\" points=\"3564.5832,-198.0284 3572.0146,-206.0922 3566.1644,-202.7718 3567.7455,-207.5152 3567.7455,-207.5152 3567.7455,-207.5152 3566.1644,-202.7718 3563.4765,-208.9383 3564.5832,-198.0284 3564.5832,-198.0284\"/>\n",
"</a>\n",
"</g>\n",
"<g id=\"a_edge122&#45;label\"><a xlink:href=\"http://www.wikidata.org/prop/direct/P25\" xlink:title=\"wdt:P25\" target=\"_other\">\n",
"<text text-anchor=\"middle\" x=\"3588.5767\" y=\"-217.8\" font-family=\"Times,serif\" font-size=\"9.00\" fill=\"#204080\">wdt:P25</text>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- node128 -->\n",
"<g id=\"node129\" class=\"node\">\n",
"<title>node128</title>\n",
"<g id=\"a_node129\"><a xlink:href=\"http://www.wikidata.org/entity/Q1830\" xlink:title=\"Q1830\" target=\"_other\">\n",
"<text text-anchor=\"middle\" x=\"3960.5737\" y=\"-420\" font-family=\"DejaVu Sans,Tahoma,Geneva,sans-serif\" font-size=\"10.00\" fill=\"#0000ff\">Q1830</text>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- node128&#45;&gt;node29 -->\n",
"<g id=\"edge128\" class=\"edge\">\n",
"<title>node128&#45;&gt;node29</title>\n",
"<g id=\"a_edge128\"><a xlink:href=\"http://www.wikidata.org/prop/direct/P22\" xlink:title=\"wdt:P22\" target=\"_other\">\n",
"<path fill=\"none\" stroke=\"#9fc9e5\" stroke-opacity=\"0.376471\" d=\"M3934.4042,-404.9859C3921.8928,-396.5539 3906.6146,-386.516 3892.5737,-378 3883.8051,-372.6817 3874.214,-367.1947 3865.157,-362.1568\"/>\n",
"<polygon fill=\"#9fc9e5\" fill-opacity=\"0.376471\" stroke=\"#9fc9e5\" stroke-opacity=\"0.376471\" points=\"3856.3282,-357.2913 3867.2583,-358.1767 3860.7073,-359.7046 3865.0864,-362.1179 3865.0864,-362.1179 3865.0864,-362.1179 3860.7073,-359.7046 3862.9144,-366.059 3856.3282,-357.2913 3856.3282,-357.2913\"/>\n",
"</a>\n",
"</g>\n",
"<g id=\"a_edge128&#45;label\"><a xlink:href=\"http://www.wikidata.org/prop/direct/P22\" xlink:title=\"wdt:P22\" target=\"_other\">\n",
"<text text-anchor=\"middle\" x=\"3921.5767\" y=\"-379.8\" font-family=\"Times,serif\" font-size=\"9.00\" fill=\"#204080\">wdt:P22</text>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- node128&#45;&gt;node129 -->\n",
"<g id=\"edge152\" class=\"edge\">\n",
"<title>node128&#45;&gt;node129</title>\n",
"<g id=\"a_edge152\"><a xlink:href=\"http://www.wikidata.org/prop/direct/P22\" xlink:title=\"wdt:P22\" target=\"_other\">\n",
"<path fill=\"none\" stroke=\"#9fc9e5\" stroke-opacity=\"0.376471\" d=\"M3955.8085,-404.6198C3953.1587,-394.3991 3949.806,-381.4672 3946.8362,-370.0125\"/>\n",
"<polygon fill=\"#9fc9e5\" fill-opacity=\"0.376471\" stroke=\"#9fc9e5\" stroke-opacity=\"0.376471\" points=\"3944.2478,-360.0284 3951.1134,-368.579 3945.5026,-364.8684 3946.7575,-369.7084 3946.7575,-369.7084 3946.7575,-369.7084 3945.5026,-364.8684 3942.4015,-370.8377 3944.2478,-360.0284 3944.2478,-360.0284\"/>\n",
"</a>\n",
"</g>\n",
"<g id=\"a_edge152&#45;label\"><a xlink:href=\"http://www.wikidata.org/prop/direct/P22\" xlink:title=\"wdt:P22\" target=\"_other\">\n",
"<text text-anchor=\"middle\" x=\"3966.5767\" y=\"-379.8\" font-family=\"Times,serif\" font-size=\"9.00\" fill=\"#204080\">wdt:P22</text>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- node130 -->\n",
"<g id=\"node131\" class=\"node\">\n",
"<title>node130</title>\n",
"<g id=\"a_node131\"><a xlink:href=\"http://www.wikidata.org/entity/Q1440\" xlink:title=\"Q1440\" target=\"_other\">\n",
"<text text-anchor=\"middle\" x=\"2086.5737\" y=\"-420\" font-family=\"DejaVu Sans,Tahoma,Geneva,sans-serif\" font-size=\"10.00\" fill=\"#0000ff\">Q1440</text>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- node130&#45;&gt;node13 -->\n",
"<g id=\"edge138\" class=\"edge\">\n",
"<title>node130&#45;&gt;node13</title>\n",
"<g id=\"a_edge138\"><a xlink:href=\"http://www.wikidata.org/prop/direct/P22\" xlink:title=\"wdt:P22\" target=\"_other\">\n",
"<path fill=\"none\" stroke=\"#9fc9e5\" stroke-opacity=\"0.376471\" d=\"M2077.6196,-404.5907C2073.6411,-396.4354 2068.8905,-386.7308 2064.5737,-378 2063.1936,-375.2087 2061.7485,-372.2983 2060.303,-369.3948\"/>\n",
"<polygon fill=\"#9fc9e5\" fill-opacity=\"0.376471\" stroke=\"#9fc9e5\" stroke-opacity=\"0.376471\" points=\"2055.7624,-360.2984 2064.2548,-367.2359 2057.9955,-364.772 2060.2286,-369.2457 2060.2286,-369.2457 2060.2286,-369.2457 2057.9955,-364.772 2056.2023,-371.2555 2055.7624,-360.2984 2055.7624,-360.2984\"/>\n",
"</a>\n",
"</g>\n",
"<g id=\"a_edge138&#45;label\"><a xlink:href=\"http://www.wikidata.org/prop/direct/P22\" xlink:title=\"wdt:P22\" target=\"_other\">\n",
"<text text-anchor=\"middle\" x=\"2084.5767\" y=\"-379.8\" font-family=\"Times,serif\" font-size=\"9.00\" fill=\"#204080\">wdt:P22</text>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- node131 -->\n",
"<g id=\"node132\" class=\"node\">\n",
"<title>node131</title>\n",
"<g id=\"a_node132\"><a xlink:href=\"http://www.wikidata.org/entity/Q236259\" xlink:title=\"Q236259\" target=\"_other\">\n",
"<text text-anchor=\"middle\" x=\"2550.5737\" y=\"-420\" font-family=\"DejaVu Sans,Tahoma,Geneva,sans-serif\" font-size=\"10.00\" fill=\"#0000ff\">Q236259</text>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- node131&#45;&gt;node132 -->\n",
"<g id=\"edge139\" class=\"edge\">\n",
"<title>node131&#45;&gt;node132</title>\n",
"<g id=\"a_edge139\"><a xlink:href=\"http://www.wikidata.org/prop/direct/P25\" xlink:title=\"wdt:P25\" target=\"_other\">\n",
"<path fill=\"none\" stroke=\"#9fc9e5\" stroke-opacity=\"0.376471\" d=\"M2544.6739,-404.6198C2541.3597,-394.2948 2537.1574,-381.203 2533.453,-369.6624\"/>\n",
"<polygon fill=\"#9fc9e5\" fill-opacity=\"0.376471\" stroke=\"#9fc9e5\" stroke-opacity=\"0.376471\" points=\"2530.3606,-360.0284 2537.7017,-368.1745 2531.8888,-364.7892 2533.417,-369.5499 2533.417,-369.5499 2533.417,-369.5499 2531.8888,-364.7892 2529.1323,-370.9253 2530.3606,-360.0284 2530.3606,-360.0284\"/>\n",
"</a>\n",
"</g>\n",
"<g id=\"a_edge139&#45;label\"><a xlink:href=\"http://www.wikidata.org/prop/direct/P25\" xlink:title=\"wdt:P25\" target=\"_other\">\n",
"<text text-anchor=\"middle\" x=\"2553.5767\" y=\"-379.8\" font-family=\"Times,serif\" font-size=\"9.00\" fill=\"#204080\">wdt:P25</text>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- node133 -->\n",
"<g id=\"node134\" class=\"node\">\n",
"<title>node133</title>\n",
"<g id=\"a_node134\"><a xlink:href=\"http://www.wikidata.org/entity/Q172471\" xlink:title=\"Q172471\" target=\"_other\">\n",
"<text text-anchor=\"middle\" x=\"5767.5737\" y=\"-420\" font-family=\"DejaVu Sans,Tahoma,Geneva,sans-serif\" font-size=\"10.00\" fill=\"#0000ff\">Q172471</text>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- node134 -->\n",
"<g id=\"node135\" class=\"node\">\n",
"<title>node134</title>\n",
"<g id=\"a_node135\"><a xlink:href=\"http://www.wikidata.org/entity/Q749909\" xlink:title=\"Q749909\" target=\"_other\">\n",
"<text text-anchor=\"middle\" x=\"5804.5737\" y=\"-339\" font-family=\"DejaVu Sans,Tahoma,Geneva,sans-serif\" font-size=\"10.00\" fill=\"#0000ff\">Q749909</text>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- node133&#45;&gt;node134 -->\n",
"<g id=\"edge140\" class=\"edge\">\n",
"<title>node133&#45;&gt;node134</title>\n",
"<g id=\"a_edge140\"><a xlink:href=\"http://www.wikidata.org/prop/direct/P22\" xlink:title=\"wdt:P22\" target=\"_other\">\n",
"<path fill=\"none\" stroke=\"#9fc9e5\" stroke-opacity=\"0.376471\" d=\"M5775.9696,-404.6198C5780.7336,-394.1906 5786.7871,-380.9383 5792.0974,-369.3131\"/>\n",
"<polygon fill=\"#9fc9e5\" fill-opacity=\"0.376471\" stroke=\"#9fc9e5\" stroke-opacity=\"0.376471\" points=\"5796.3385,-360.0284 5796.2767,-370.9941 5794.261,-364.5764 5792.1835,-369.1244 5792.1835,-369.1244 5792.1835,-369.1244 5794.261,-364.5764 5788.0904,-367.2546 5796.3385,-360.0284 5796.3385,-360.0284\"/>\n",
"</a>\n",
"</g>\n",
"<g id=\"a_edge140&#45;label\"><a xlink:href=\"http://www.wikidata.org/prop/direct/P22\" xlink:title=\"wdt:P22\" target=\"_other\">\n",
"<text text-anchor=\"middle\" x=\"5802.5767\" y=\"-379.8\" font-family=\"Times,serif\" font-size=\"9.00\" fill=\"#204080\">wdt:P22</text>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- node135 -->\n",
"<g id=\"node136\" class=\"node\">\n",
"<title>node135</title>\n",
"<g id=\"a_node136\"><a xlink:href=\"http://www.wikidata.org/entity/Q229307\" xlink:title=\"Q229307\" target=\"_other\">\n",
"<text text-anchor=\"middle\" x=\"1225.5737\" y=\"-258\" font-family=\"DejaVu Sans,Tahoma,Geneva,sans-serif\" font-size=\"10.00\" fill=\"#0000ff\">Q229307</text>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- node135&#45;&gt;node55 -->\n",
"<g id=\"edge141\" class=\"edge\">\n",
"<title>node135&#45;&gt;node55</title>\n",
"<g id=\"a_edge141\"><a xlink:href=\"http://www.wikidata.org/prop/direct/P25\" xlink:title=\"wdt:P25\" target=\"_other\">\n",
"<path fill=\"none\" stroke=\"#9fc9e5\" stroke-opacity=\"0.376471\" d=\"M1226.7083,-242.6198C1227.3392,-232.3991 1228.1375,-219.4672 1228.8446,-208.0125\"/>\n",
"<polygon fill=\"#9fc9e5\" fill-opacity=\"0.376471\" stroke=\"#9fc9e5\" stroke-opacity=\"0.376471\" points=\"1229.4609,-198.0284 1233.3361,-208.2867 1229.1528,-203.0189 1228.8447,-208.0094 1228.8447,-208.0094 1228.8447,-208.0094 1229.1528,-203.0189 1224.3532,-207.7321 1229.4609,-198.0284 1229.4609,-198.0284\"/>\n",
"</a>\n",
"</g>\n",
"<g id=\"a_edge141&#45;label\"><a xlink:href=\"http://www.wikidata.org/prop/direct/P25\" xlink:title=\"wdt:P25\" target=\"_other\">\n",
"<text text-anchor=\"middle\" x=\"1243.5767\" y=\"-217.8\" font-family=\"Times,serif\" font-size=\"9.00\" fill=\"#204080\">wdt:P25</text>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- node136 -->\n",
"<g id=\"node137\" class=\"node\">\n",
"<title>node136</title>\n",
"<g id=\"a_node137\"><a xlink:href=\"http://www.wikidata.org/entity/Q272630\" xlink:title=\"Q272630\" target=\"_other\">\n",
"<text text-anchor=\"middle\" x=\"5842.5737\" y=\"-420\" font-family=\"DejaVu Sans,Tahoma,Geneva,sans-serif\" font-size=\"10.00\" fill=\"#0000ff\">Q272630</text>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- node136&#45;&gt;node134 -->\n",
"<g id=\"edge146\" class=\"edge\">\n",
"<title>node136&#45;&gt;node134</title>\n",
"<g id=\"a_edge146\"><a xlink:href=\"http://www.wikidata.org/prop/direct/P25\" xlink:title=\"wdt:P25\" target=\"_other\">\n",
"<path fill=\"none\" stroke=\"#9fc9e5\" stroke-opacity=\"0.376471\" d=\"M5833.9509,-404.6198C5829.0582,-394.1906 5822.8411,-380.9383 5817.3873,-369.3131\"/>\n",
"<polygon fill=\"#9fc9e5\" fill-opacity=\"0.376471\" stroke=\"#9fc9e5\" stroke-opacity=\"0.376471\" points=\"5813.0315,-360.0284 5821.3527,-367.1704 5815.1551,-364.555 5817.2788,-369.0816 5817.2788,-369.0816 5817.2788,-369.0816 5815.1551,-364.555 5813.2048,-370.9929 5813.0315,-360.0284 5813.0315,-360.0284\"/>\n",
"</a>\n",
"</g>\n",
"<g id=\"a_edge146&#45;label\"><a xlink:href=\"http://www.wikidata.org/prop/direct/P25\" xlink:title=\"wdt:P25\" target=\"_other\">\n",
"<text text-anchor=\"middle\" x=\"5840.5767\" y=\"-379.8\" font-family=\"Times,serif\" font-size=\"9.00\" fill=\"#204080\">wdt:P25</text>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- node137 -->\n",
"<g id=\"node138\" class=\"node\">\n",
"<title>node137</title>\n",
"<g id=\"a_node138\"><a xlink:href=\"http://www.wikidata.org/entity/Q3372698\" xlink:title=\"Q3372698\" target=\"_other\">\n",
"<text text-anchor=\"middle\" x=\"5539.5737\" y=\"-420\" font-family=\"DejaVu Sans,Tahoma,Geneva,sans-serif\" font-size=\"10.00\" fill=\"#0000ff\">Q3372698</text>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- node137&#45;&gt;node119 -->\n",
"<g id=\"edge148\" class=\"edge\">\n",
"<title>node137&#45;&gt;node119</title>\n",
"<g id=\"a_edge148\"><a xlink:href=\"http://www.wikidata.org/prop/direct/P25\" xlink:title=\"wdt:P25\" target=\"_other\">\n",
"<path fill=\"none\" stroke=\"#9fc9e5\" stroke-opacity=\"0.376471\" d=\"M5530.9509,-404.6198C5526.0582,-394.1906 5519.8411,-380.9383 5514.3873,-369.3131\"/>\n",
"<polygon fill=\"#9fc9e5\" fill-opacity=\"0.376471\" stroke=\"#9fc9e5\" stroke-opacity=\"0.376471\" points=\"5510.0315,-360.0284 5518.3527,-367.1704 5512.1551,-364.555 5514.2788,-369.0816 5514.2788,-369.0816 5514.2788,-369.0816 5512.1551,-364.555 5510.2048,-370.9929 5510.0315,-360.0284 5510.0315,-360.0284\"/>\n",
"</a>\n",
"</g>\n",
"<g id=\"a_edge148&#45;label\"><a xlink:href=\"http://www.wikidata.org/prop/direct/P25\" xlink:title=\"wdt:P25\" target=\"_other\">\n",
"<text text-anchor=\"middle\" x=\"5537.5767\" y=\"-379.8\" font-family=\"Times,serif\" font-size=\"9.00\" fill=\"#204080\">wdt:P25</text>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- node138 -->\n",
"<g id=\"node139\" class=\"node\">\n",
"<title>node138</title>\n",
"<g id=\"a_node139\"><a xlink:href=\"http://www.wikidata.org/entity/Q46750\" xlink:title=\"Q46750\" target=\"_other\">\n",
"<text text-anchor=\"middle\" x=\"5091.5737\" y=\"-420\" font-family=\"DejaVu Sans,Tahoma,Geneva,sans-serif\" font-size=\"10.00\" fill=\"#0000ff\">Q46750</text>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- node138&#45;&gt;node64 -->\n",
"<g id=\"edge149\" class=\"edge\">\n",
"<title>node138&#45;&gt;node64</title>\n",
"<g id=\"a_edge149\"><a xlink:href=\"http://www.wikidata.org/prop/direct/P22\" xlink:title=\"wdt:P22\" target=\"_other\">\n",
"<path fill=\"none\" stroke=\"#9fc9e5\" stroke-opacity=\"0.376471\" d=\"M5077.2909,-404.9779C5070.7153,-396.7245 5062.7874,-386.8346 5055.5737,-378 5052.9109,-374.7388 5050.0987,-371.325 5047.3064,-367.9536\"/>\n",
"<polygon fill=\"#9fc9e5\" fill-opacity=\"0.376471\" stroke=\"#9fc9e5\" stroke-opacity=\"0.376471\" points=\"5040.9066,-360.2555 5050.7598,-365.0684 5044.103,-364.1004 5047.2994,-367.9452 5047.2994,-367.9452 5047.2994,-367.9452 5044.103,-364.1004 5043.839,-370.822 5040.9066,-360.2555 5040.9066,-360.2555\"/>\n",
"</a>\n",
"</g>\n",
"<g id=\"a_edge149&#45;label\"><a xlink:href=\"http://www.wikidata.org/prop/direct/P22\" xlink:title=\"wdt:P22\" target=\"_other\">\n",
"<text text-anchor=\"middle\" x=\"5077.5767\" y=\"-379.8\" font-family=\"Times,serif\" font-size=\"9.00\" fill=\"#204080\">wdt:P22</text>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- node139 -->\n",
"<g id=\"node140\" class=\"node\">\n",
"<title>node139</title>\n",
"<g id=\"a_node140\"><a xlink:href=\"http://www.wikidata.org/entity/Q1752\" xlink:title=\"Q1752\" target=\"_other\">\n",
"<text text-anchor=\"middle\" x=\"5391.5737\" y=\"-420\" font-family=\"DejaVu Sans,Tahoma,Geneva,sans-serif\" font-size=\"10.00\" fill=\"#0000ff\">Q1752</text>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- node139&#45;&gt;node95 -->\n",
"<g id=\"edge153\" class=\"edge\">\n",
"<title>node139&#45;&gt;node95</title>\n",
"<g id=\"a_edge153\"><a xlink:href=\"http://www.wikidata.org/prop/direct/P22\" xlink:title=\"wdt:P22\" target=\"_other\">\n",
"<path fill=\"none\" stroke=\"#9fc9e5\" stroke-opacity=\"0.376471\" d=\"M5382.9509,-404.6198C5378.0582,-394.1906 5371.8411,-380.9383 5366.3873,-369.3131\"/>\n",
"<polygon fill=\"#9fc9e5\" fill-opacity=\"0.376471\" stroke=\"#9fc9e5\" stroke-opacity=\"0.376471\" points=\"5362.0315,-360.0284 5370.3527,-367.1704 5364.1551,-364.555 5366.2788,-369.0816 5366.2788,-369.0816 5366.2788,-369.0816 5364.1551,-364.555 5362.2048,-370.9929 5362.0315,-360.0284 5362.0315,-360.0284\"/>\n",
"</a>\n",
"</g>\n",
"<g id=\"a_edge153&#45;label\"><a xlink:href=\"http://www.wikidata.org/prop/direct/P22\" xlink:title=\"wdt:P22\" target=\"_other\">\n",
"<text text-anchor=\"middle\" x=\"5389.5767\" y=\"-379.8\" font-family=\"Times,serif\" font-size=\"9.00\" fill=\"#204080\">wdt:P22</text>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- node140 -->\n",
"<g id=\"node141\" class=\"node\">\n",
"<title>node140</title>\n",
"<g id=\"a_node141\"><a xlink:href=\"http://www.wikidata.org/entity/Q383304\" xlink:title=\"Q383304\" target=\"_other\">\n",
"<text text-anchor=\"middle\" x=\"5692.5737\" y=\"-420\" font-family=\"DejaVu Sans,Tahoma,Geneva,sans-serif\" font-size=\"10.00\" fill=\"#0000ff\">Q383304</text>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- node140&#45;&gt;node121 -->\n",
"<g id=\"edge158\" class=\"edge\">\n",
"<title>node140&#45;&gt;node121</title>\n",
"<g id=\"a_edge158\"><a xlink:href=\"http://www.wikidata.org/prop/direct/P25\" xlink:title=\"wdt:P25\" target=\"_other\">\n",
"<path fill=\"none\" stroke=\"#9fc9e5\" stroke-opacity=\"0.376471\" d=\"M5683.9509,-404.6198C5679.0582,-394.1906 5672.8411,-380.9383 5667.3873,-369.3131\"/>\n",
"<polygon fill=\"#9fc9e5\" fill-opacity=\"0.376471\" stroke=\"#9fc9e5\" stroke-opacity=\"0.376471\" points=\"5663.0315,-360.0284 5671.3527,-367.1704 5665.1551,-364.555 5667.2788,-369.0816 5667.2788,-369.0816 5667.2788,-369.0816 5665.1551,-364.555 5663.2048,-370.9929 5663.0315,-360.0284 5663.0315,-360.0284\"/>\n",
"</a>\n",
"</g>\n",
"<g id=\"a_edge158&#45;label\"><a xlink:href=\"http://www.wikidata.org/prop/direct/P25\" xlink:title=\"wdt:P25\" target=\"_other\">\n",
"<text text-anchor=\"middle\" x=\"5690.5767\" y=\"-379.8\" font-family=\"Times,serif\" font-size=\"9.00\" fill=\"#204080\">wdt:P25</text>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"</g>\n",
"</svg>\n"
]
},
"metadata": {
"unconfined": true
},
"output_type": "display_data"
}
],
"source": [
"%endpoint http://query.wikidata.org/sparql\n",
"%display diagram \n",
"\n",
"CONSTRUCT {\n",
" ?emperor wdt:P22 ?child . #p22: father\n",
" ?mother wdt:P25 ?child . #p25: mother \n",
" }\n",
"\n",
"WHERE {\n",
" \n",
" ?emperor wdt:P39 wd:Q842606 .\n",
" ?child wdt:P22 ?emperor . #p22: father\n",
" ?child wdt:P25 ?mother . #p25: mother\n",
" OPTIONAL { ?mother wdt:P22 ?maternalGrandfather }\n",
" OPTIONAL { ?mother wdt:P25 ?maternalGrandmother }\n",
"} "
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"## Nomisma\n",
"\n",
"Another excellent SPARQL endpoint is the Nomisma portal for numismatic materials. \n",
"\n",
"http://nomisma.org/sparql"
]
},
{
"cell_type": "code",
"execution_count": 131,
"metadata": {},
"outputs": [
{
"data": {
"text/html": [
"<div class=\"krn-spql\"><div class=\"magic\">Endpoint set to: http://nomisma.org/query</div></div>"
],
"text/plain": [
"Endpoint set to: http://nomisma.org/query\n"
]
},
"metadata": {},
"output_type": "display_data"
}
],
"source": [
"%endpoint http://nomisma.org/query"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"Now, if you actually go to [http://query.wikidata.org/sparql](http://query.wikidata.org/sparql) you'll find a query builder with the following information already preloaded:\n",
"\n",
"```\n",
"PREFIX rdf:\t<http://www.w3.org/1999/02/22-rdf-syntax-ns#>\n",
"PREFIX bio:\t<http://purl.org/vocab/bio/0.1/>\n",
"PREFIX crm:\t<http://www.cidoc-crm.org/cidoc-crm/>\n",
"PREFIX dcmitype:\t<http://purl.org/dc/dcmitype/>\n",
"PREFIX dcterms:\t<http://purl.org/dc/terms/>\n",
"PREFIX foaf:\t<http://xmlns.com/foaf/0.1/>\n",
"PREFIX geo:\t<http://www.w3.org/2003/01/geo/wgs84_pos#>\n",
"PREFIX nm:\t<http://nomisma.org/id/>\n",
"PREFIX nmo:\t<http://nomisma.org/ontology#>\n",
"PREFIX org:\t<http://www.w3.org/ns/org#>\n",
"PREFIX osgeo:\t<http://data.ordnancesurvey.co.uk/ontology/geometry/>\n",
"PREFIX rdac:\t<http://www.rdaregistry.info/Elements/c/>\n",
"PREFIX skos:\t<http://www.w3.org/2004/02/skos/core#>\n",
"PREFIX spatial: <http://jena.apache.org/spatial#>\n",
"PREFIX void:\t<http://rdfs.org/ns/void#>\n",
"PREFIX xsd:\t<http://www.w3.org/2001/XMLSchema#>\n",
"\n",
"SELECT * WHERE {\n",
" ?s ?p ?o\n",
"} LIMIT 100\n",
"```\n",
"\n",
"All those prefixes are the ontologies being used to describe the materials. The `?s ?p ?o` are the subject, predicate, objects that we're going to search for. Let's run some of the [example queries](http://nomisma.org/documentation/sparql) that Nomisma can handle. Since Roman Emperors are often depicted on coins, let's see which emperors are present in Nomisma."
]
},
{
"cell_type": "code",
"execution_count": 132,
"metadata": {},
"outputs": [
{
"data": {
"text/html": [
"<div class=\"krn-spql\"><div class=\"magic\">Display: table</div></div>"
],
"text/plain": [
"Display: table\n"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"<div class=\"krn-spql\"><table><tr class=hdr><th>uri</th>\n",
"<th>label</th></tr><tr class=odd><td class=val><a href=\"http://nomisma.org/id/vabalathus\" target=\"_other\">http://nomisma.org/id/vabalathus</a></td>\n",
"<td class=val>Vabalathus</td></tr><tr class=even><td class=val><a href=\"http://nomisma.org/id/valerius_valens\" target=\"_other\">http://nomisma.org/id/valerius_valens</a></td>\n",
"<td class=val>Valerius Valens</td></tr><tr class=odd><td class=val><a href=\"http://nomisma.org/id/arcadius\" target=\"_other\">http://nomisma.org/id/arcadius</a></td>\n",
"<td class=val>Arcadius</td></tr><tr class=even><td class=val><a href=\"http://nomisma.org/id/carausius\" target=\"_other\">http://nomisma.org/id/carausius</a></td>\n",
"<td class=val>Carausius</td></tr><tr class=odd><td class=val><a href=\"http://nomisma.org/id/valerian\" target=\"_other\">http://nomisma.org/id/valerian</a></td>\n",
"<td class=val>Valerian</td></tr><tr class=even><td class=val><a href=\"http://nomisma.org/id/commodus\" target=\"_other\">http://nomisma.org/id/commodus</a></td>\n",
"<td class=val>Commodus</td></tr><tr class=odd><td class=val><a href=\"http://nomisma.org/id/justinian_i\" target=\"_other\">http://nomisma.org/id/justinian_i</a></td>\n",
"<td class=val>Justinian I</td></tr><tr class=even><td class=val><a href=\"http://nomisma.org/id/tetricus_ii\" target=\"_other\">http://nomisma.org/id/tetricus_ii</a></td>\n",
"<td class=val>Tetricus II</td></tr><tr class=odd><td class=val><a href=\"http://nomisma.org/id/nerva\" target=\"_other\">http://nomisma.org/id/nerva</a></td>\n",
"<td class=val>Nerva</td></tr><tr class=even><td class=val><a href=\"http://nomisma.org/id/olybrius\" target=\"_other\">http://nomisma.org/id/olybrius</a></td>\n",
"<td class=val>Olybrius</td></tr><tr class=odd><td class=val><a href=\"http://nomisma.org/id/volusian\" target=\"_other\">http://nomisma.org/id/volusian</a></td>\n",
"<td class=val>Volusian</td></tr><tr class=even><td class=val><a href=\"http://nomisma.org/id/sextus_martinianus\" target=\"_other\">http://nomisma.org/id/sextus_martinianus</a></td>\n",
"<td class=val>Martinianus</td></tr><tr class=odd><td class=val><a href=\"http://nomisma.org/id/leo_ii\" target=\"_other\">http://nomisma.org/id/leo_ii</a></td>\n",
"<td class=val>Leo II</td></tr><tr class=even><td class=val><a href=\"http://nomisma.org/id/elagabalus\" target=\"_other\">http://nomisma.org/id/elagabalus</a></td>\n",
"<td class=val>Elagabalus</td></tr><tr class=odd><td class=val><a href=\"http://nomisma.org/id/tiberius\" target=\"_other\">http://nomisma.org/id/tiberius</a></td>\n",
"<td class=val>Tiberius</td></tr><tr class=even><td class=val><a href=\"http://nomisma.org/id/sebastianus\" target=\"_other\">http://nomisma.org/id/sebastianus</a></td>\n",
"<td class=val>Sebastianus</td></tr><tr class=odd><td class=val><a href=\"http://nomisma.org/id/julius_nepos\" target=\"_other\">http://nomisma.org/id/julius_nepos</a></td>\n",
"<td class=val>Julius Nepos</td></tr><tr class=even><td class=val><a href=\"http://nomisma.org/id/numerian\" target=\"_other\">http://nomisma.org/id/numerian</a></td>\n",
"<td class=val>Numerian</td></tr><tr class=odd><td class=val><a href=\"http://nomisma.org/id/constantius_ii\" target=\"_other\">http://nomisma.org/id/constantius_ii</a></td>\n",
"<td class=val>Constantius II</td></tr><tr class=even><td class=val><a href=\"http://nomisma.org/id/maximus_barcelona\" target=\"_other\">http://nomisma.org/id/maximus_barcelona</a></td>\n",
"<td class=val>Maximus of Barcelona</td></tr></table><div class=\"tinfo\">Total: 128, Shown: 20</div></div>"
]
},
"metadata": {},
"output_type": "display_data"
}
],
"source": [
"%display table \n",
"PREFIX rdf:\t<http://www.w3.org/1999/02/22-rdf-syntax-ns#>\n",
"PREFIX bio:\t<http://purl.org/vocab/bio/0.1/>\n",
"PREFIX crm:\t<http://www.cidoc-crm.org/cidoc-crm/>\n",
"PREFIX dcmitype:\t<http://purl.org/dc/dcmitype/>\n",
"PREFIX dcterms:\t<http://purl.org/dc/terms/>\n",
"PREFIX foaf:\t<http://xmlns.com/foaf/0.1/>\n",
"PREFIX geo:\t<http://www.w3.org/2003/01/geo/wgs84_pos#>\n",
"PREFIX nm:\t<http://nomisma.org/id/>\n",
"PREFIX nmo:\t<http://nomisma.org/ontology#>\n",
"PREFIX org:\t<http://www.w3.org/ns/org#>\n",
"PREFIX osgeo:\t<http://data.ordnancesurvey.co.uk/ontology/geometry/>\n",
"PREFIX rdac:\t<http://www.rdaregistry.info/Elements/c/>\n",
"PREFIX skos:\t<http://www.w3.org/2004/02/skos/core#>\n",
"PREFIX spatial: <http://jena.apache.org/spatial#>\n",
"PREFIX void:\t<http://rdfs.org/ns/void#>\n",
"PREFIX xsd:\t<http://www.w3.org/2001/XMLSchema#>\n",
"\n",
"SELECT ?uri ?label WHERE {\n",
"?uri a foaf:Person ;\n",
" skos:prefLabel ?label ; \n",
" org:hasMembership ?membership .\n",
"?membership org:role nm:roman_emperor .\n",
"FILTER(langMatches(lang(?label), \"EN\"))\n",
"} "
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"We can also do spatial queries; this one looks coins from mints within 50 km of Athens.\n",
"\n",
"It also specifies the format in which we wants the results returned, and to write these results to a json file for further manipulation."
]
},
{
"cell_type": "code",
"execution_count": 137,
"metadata": {},
"outputs": [
{
"data": {
"text/html": [
"<div class=\"krn-spql\"><div class=\"magic\">Return format: JSON</div><div class=\"magic\">Display: table</div><div class=\"magic\">Output file: mints.json</div></div>"
],
"text/plain": [
"Return format: JSON\n",
"Display: table\n",
"Output file: mints.json\n"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"<div class=\"krn-spql\"><table><tr class=hdr><th>loc</th>\n",
"<th>lat</th>\n",
"<th>long</th>\n",
"<th>mint</th>\n",
"<th>label</th></tr><tr class=odd><td class=val><a href=\"http://nomisma.org/id/rome#this\" target=\"_other\">http://nomisma.org/id/rome#this</a></td>\n",
"<td class=val>41.9</td>\n",
"<td class=val>12.5</td>\n",
"<td class=val><a href=\"http://nomisma.org/id/rome\" target=\"_other\">http://nomisma.org/id/rome</a></td>\n",
"<td class=val>Rome</td></tr><tr class=even><td class=val><a href=\"http://nomisma.org/id/caesareia_cappadocia#this\" target=\"_other\">http://nomisma.org/id/caesareia_cappadocia#this</a></td>\n",
"<td class=val>38.733333</td>\n",
"<td class=val>35.483333</td>\n",
"<td class=val><a href=\"http://nomisma.org/id/caesareia_cappadocia\" target=\"_other\">http://nomisma.org/id/caesareia_cappadocia</a></td>\n",
"<td class=val>Caesarea in Cappadocia</td></tr><tr class=odd><td class=val><a href=\"http://nomisma.org/id/nicomedia#this\" target=\"_other\">http://nomisma.org/id/nicomedia#this</a></td>\n",
"<td class=val>40.766667</td>\n",
"<td class=val>29.916667</td>\n",
"<td class=val><a href=\"http://nomisma.org/id/nicomedia\" target=\"_other\">http://nomisma.org/id/nicomedia</a></td>\n",
"<td class=val>Nicomedia</td></tr><tr class=even><td class=val><a href=\"http://nomisma.org/id/siscia#this\" target=\"_other\">http://nomisma.org/id/siscia#this</a></td>\n",
"<td class=val>45.483168</td>\n",
"<td class=val>16.371388</td>\n",
"<td class=val><a href=\"http://nomisma.org/id/siscia\" target=\"_other\">http://nomisma.org/id/siscia</a></td>\n",
"<td class=val>Siscia</td></tr><tr class=odd><td class=val><a href=\"http://nomisma.org/id/emisa#this\" target=\"_other\">http://nomisma.org/id/emisa#this</a></td>\n",
"<td class=val>34.751899</td>\n",
"<td class=val>36.724237</td>\n",
"<td class=val><a href=\"http://nomisma.org/id/emisa\" target=\"_other\">http://nomisma.org/id/emisa</a></td>\n",
"<td class=val>Emisa</td></tr><tr class=even><td class=val><a href=\"http://nomisma.org/id/viminacium#this\" target=\"_other\">http://nomisma.org/id/viminacium#this</a></td>\n",
"<td class=val>44.716471</td>\n",
"<td class=val>21.166605</td>\n",
"<td class=val><a href=\"http://nomisma.org/id/viminacium\" target=\"_other\">http://nomisma.org/id/viminacium</a></td>\n",
"<td class=val>Viminacium</td></tr><tr class=odd><td class=val><a href=\"http://nomisma.org/id/panticapaeum#this\" target=\"_other\">http://nomisma.org/id/panticapaeum#this</a></td>\n",
"<td class=val>45.338611</td>\n",
"<td class=val>36.468056</td>\n",
"<td class=val><a href=\"http://nomisma.org/id/panticapaeum\" target=\"_other\">http://nomisma.org/id/panticapaeum</a></td>\n",
"<td class=val>Panticapaeum</td></tr><tr class=even><td class=val><a href=\"http://nomisma.org/id/phanagoria#this\" target=\"_other\">http://nomisma.org/id/phanagoria#this</a></td>\n",
"<td class=val>45.189</td>\n",
"<td class=val>36.825</td>\n",
"<td class=val><a href=\"http://nomisma.org/id/phanagoria\" target=\"_other\">http://nomisma.org/id/phanagoria</a></td>\n",
"<td class=val>Phangoria</td></tr><tr class=odd><td class=val><a href=\"http://nomisma.org/id/thasos#this\" target=\"_other\">http://nomisma.org/id/thasos#this</a></td>\n",
"<td class=val>40.777626</td>\n",
"<td class=val>24.703702</td>\n",
"<td class=val><a href=\"http://nomisma.org/id/thasos\" target=\"_other\">http://nomisma.org/id/thasos</a></td>\n",
"<td class=val>Thasos</td></tr><tr class=even><td class=val><a href=\"http://nomisma.org/id/thessalian_league#this\" target=\"_other\">http://nomisma.org/id/thessalian_league#this</a></td>\n",
"<td class=val>39.641667</td>\n",
"<td class=val>22.416667</td>\n",
"<td class=val><a href=\"http://nomisma.org/id/thessalian_league\" target=\"_other\">http://nomisma.org/id/thessalian_league</a></td>\n",
"<td class=val>Thessalian League</td></tr><tr class=odd><td class=val><a href=\"http://nomisma.org/id/agrigentum#this\" target=\"_other\">http://nomisma.org/id/agrigentum#this</a></td>\n",
"<td class=val>37.316667</td>\n",
"<td class=val>13.583333</td>\n",
"<td class=val><a href=\"http://nomisma.org/id/agrigentum\" target=\"_other\">http://nomisma.org/id/agrigentum</a></td>\n",
"<td class=val>Agrigentum</td></tr><tr class=even><td class=val><a href=\"http://nomisma.org/id/gela#this\" target=\"_other\">http://nomisma.org/id/gela#this</a></td>\n",
"<td class=val>37.063156</td>\n",
"<td class=val>14.258219</td>\n",
"<td class=val><a href=\"http://nomisma.org/id/gela\" target=\"_other\">http://nomisma.org/id/gela</a></td>\n",
"<td class=val>Gela</td></tr><tr class=odd><td class=val><a href=\"http://nomisma.org/id/leontini#this\" target=\"_other\">http://nomisma.org/id/leontini#this</a></td>\n",
"<td class=val>37.285478</td>\n",
"<td class=val>14.998115</td>\n",
"<td class=val><a href=\"http://nomisma.org/id/leontini\" target=\"_other\">http://nomisma.org/id/leontini</a></td>\n",
"<td class=val>Leontini</td></tr><tr class=even><td class=val><a href=\"http://nomisma.org/id/messana#this\" target=\"_other\">http://nomisma.org/id/messana#this</a></td>\n",
"<td class=val>38.192251</td>\n",
"<td class=val>15.556634</td>\n",
"<td class=val><a href=\"http://nomisma.org/id/messana\" target=\"_other\">http://nomisma.org/id/messana</a></td>\n",
"<td class=val>Messana</td></tr><tr class=odd><td class=val><a href=\"http://nomisma.org/id/syracuse#this\" target=\"_other\">http://nomisma.org/id/syracuse#this</a></td>\n",
"<td class=val>37.083333</td>\n",
"<td class=val>15.283333</td>\n",
"<td class=val><a href=\"http://nomisma.org/id/syracuse\" target=\"_other\">http://nomisma.org/id/syracuse</a></td>\n",
"<td class=val>Syracuse</td></tr><tr class=even><td class=val><a href=\"http://nomisma.org/id/parthia#this\" target=\"_other\">http://nomisma.org/id/parthia#this</a></td>\n",
"<td class=val>32.3242756</td>\n",
"<td class=val>53.1738281</td>\n",
"<td class=val><a href=\"http://nomisma.org/id/parthia\" target=\"_other\">http://nomisma.org/id/parthia</a></td>\n",
"<td class=val>Parthia</td></tr><tr class=odd><td class=val><a href=\"http://nomisma.org/id/seleuceia_ad_tigrim#this\" target=\"_other\">http://nomisma.org/id/seleuceia_ad_tigrim#this</a></td>\n",
"<td class=val>33.137222</td>\n",
"<td class=val>44.517222</td>\n",
"<td class=val><a href=\"http://nomisma.org/id/seleuceia_ad_tigrim\" target=\"_other\">http://nomisma.org/id/seleuceia_ad_tigrim</a></td>\n",
"<td class=val>Seleuceia ad Tigrim</td></tr><tr class=even><td class=val><a href=\"http://nomisma.org/id/antiocheia_syria#this\" target=\"_other\">http://nomisma.org/id/antiocheia_syria#this</a></td>\n",
"<td class=val>36.2</td>\n",
"<td class=val>36.15</td>\n",
"<td class=val><a href=\"http://nomisma.org/id/antiocheia_syria\" target=\"_other\">http://nomisma.org/id/antiocheia_syria</a></td>\n",
"<td class=val>Antioch</td></tr><tr class=odd><td class=val><a href=\"http://nomisma.org/id/tarsus#this\" target=\"_other\">http://nomisma.org/id/tarsus#this</a></td>\n",
"<td class=val>36.916667</td>\n",
"<td class=val>34.9</td>\n",
"<td class=val><a href=\"http://nomisma.org/id/tarsus\" target=\"_other\">http://nomisma.org/id/tarsus</a></td>\n",
"<td class=val>Tarsus</td></tr><tr class=even><td class=val><a href=\"http://nomisma.org/id/massalia#this\" target=\"_other\">http://nomisma.org/id/massalia#this</a></td>\n",
"<td class=val>43.296854</td>\n",
"<td class=val>5.382499</td>\n",
"<td class=val><a href=\"http://nomisma.org/id/massalia\" target=\"_other\">http://nomisma.org/id/massalia</a></td>\n",
"<td class=val>Massalia</td></tr></table><div class=\"tinfo\">Total: 1798, Shown: 20</div></div>"
]
},
"metadata": {},
"output_type": "display_data"
}
],
"source": [
"%format json \n",
"%display table \n",
"%outfile mints.json \n",
"PREFIX rdf:\t<http://www.w3.org/1999/02/22-rdf-syntax-ns#>\n",
"PREFIX dcterms:\t<http://purl.org/dc/terms/>\n",
"PREFIX geo:\t<http://www.w3.org/2003/01/geo/wgs84_pos#>\n",
"PREFIX nm:\t<http://nomisma.org/id/>\n",
"PREFIX nmo:\t<http://nomisma.org/ontology#>\n",
"PREFIX skos:\t<http://www.w3.org/2004/02/skos/core#>\n",
"PREFIX spatial: <http://jena.apache.org/spatial#>\n",
"PREFIX xsd:\t<http://www.w3.org/2001/XMLSchema#>\n",
"\n",
"SELECT * WHERE {\n",
" ?loc spatial:nearby (37.974722 23.7225 50 'km') ;\n",
" geo:lat ?lat ;\n",
" geo:long ?long .\n",
" ?mint geo:location ?loc ;\n",
" skos:prefLabel ?label ;\n",
" a nmo:Mint\n",
" FILTER langMatches (lang(?label), 'en')\n",
"}\n"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {},
"outputs": [],
"source": []
}
],
"metadata": {
"kernelspec": {
"display_name": "SPARQL",
"language": "sparql",
"name": "sparql"
},
"language_info": {
"codemirror_mode": {
"name": "sparql"
},
"mimetype": "application/sparql-query",
"name": "sparql",
"pygments_lexer": "sparql-nb"
}
},
"nbformat": 4,
"nbformat_minor": 2
}